/*
    Theme Name: savevideosonline
    Description: savevideosonline wordpress theme
    Version: 1.0.0
*/

@font-face {
    font-family: 'lato';
    src: url('./fonts/Lato-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'lato';
    src: url('./fonts/Lato-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'lato';
    src: url('./fonts/Lato-Bold.ttf');
    font-weight: 500;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'lato';
    font-weight: 400;
    font-style: normal;
}

html,
body {
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
    padding: 14px;
}

.header {
    background: hsl(263.67deg 89.11% 60.39%);
    position: relative;
}

.header .container {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}

.mobile-menu {
    width: 24px;
    height: 24px;
}

.mobile-menu svg {
    width: 100%;
    height: 100%;
}

.header .logo {
    width: 210px;
    display: block;
}

.header .logo img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.header ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.header ul a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
}

.header .language {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.header .language img {
    width: 28px;
    filter: invert(1);
}

.hero-section {
    background: hsl(263.67deg 89.11% 60.39%);
    border-top: 1px solid #ffffff45;
    padding: 52px 0px;
}

.hero-section .container h1 {
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    color: #fff;
    margin-bottom: 28px;
}

#download-form {
    width: 100%;
    max-width: 600px;
    height: 56px;
    margin: 0px auto;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

#download-form input,
#download-form button {
    height: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
    border-radius: 0px;
    outline: unset;
    border: unset;
}

#download-form input {
    width: 100%;
    color: #7e7e7e;
    background: #fff;
    padding: 0px 80px 0px 15px;
    letter-spacing: 0.2px;
}

#download-form ::placeholder {
    color: #7e7e7e;
}

#download-form button {
    min-width: 160px;
    background: #464646;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#download-form #copyToClipboard {
    background: transparent;
    color: #7e7e7e;
    height: 100%;
    min-width: 80px;
    position: absolute;
    right: 160px;
}

#download-form span {
    width: 4px;
    height: 4px;
    display: block;
    background: #fff;
    margin: 0px 3px;
    animation: dot ease-in-out 1s infinite;
}

#download-form span:nth-of-type(2) {
    animation-delay: 0.2s;
}

#download-form span:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes dot {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

#download-form button[disabled="disabled"] {
    cursor: not-allowed;
}

.page-tags {
    padding: 36px 0px;
}

.page-tags h2 {
    font-size: 24px;
    font-weight: 400;
}

.page-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    margin-top: 20px;
}

.page-tags a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #8740f4;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
}

.page-tags img {
    width: 20px;
    height: 20px;
    display: block;
}

.page-steps {
    padding: 0px 0px 36px 0px;
}

.page-steps h2 {
    font-size: 24px;
    font-weight: 400;
}

.page-steps-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-steps-grid article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.page-steps-grid article img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.8 / 1;
    border-radius: 4px;
}

.page-steps-grid article h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 16px 0px 6px;
}

.page-steps-grid article p {
    font-size: 16px;
    line-height: 1.6;
    color: #7e7e7e;
}

.page-benefits {
    padding: 18px 0px;
    background: #8740f4;
}

.page-benefits h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

.page-benefits-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    color: #fff;
}

.page-benefits-list p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.page-faqs {
    padding: 36px 0px;
}

.page-faqs h1,
.page-articles h1,
.page-faqs h2 {
    font-size: 24px;
    font-weight: 400;
}

.page-faqs h4 {
    font-size: 20px;
    font-weight: 400;
}

.page-faqs-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-faqs-list .page-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-faqs-list .page-faq h3 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    cursor: pointer;
    background: #8740f4;
    color: #fff;
    padding: 16px 16px;
    border-radius: 4px;
}

.page-faqs-list .page-faq svg {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    filter: invert(1);
}

.page-faqs-list .page-faq p {
    font-size: 16px;
    line-height: 1.6;
    background: #ededed;
    color: #7e7e7e;
    padding: 12px 16px;
    border-radius: 4px;
    display: none;
}

.page-platform h2 {
    font-size: 24px;
    font-weight: 400;
}

.page-platform p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #7e7e7e;
}

.page-platform .page-platforms {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px auto 0px;
    max-width: 800px;
    width: 100%;
}

.page-platform .page-platforms img {
    width: 100%;
    display: block;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.page-articles {
    padding: 36px 0px;
}

.page-articles h2 {
    font-size: 24px;
    font-weight: 400;
}

.page-articles-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page-articles-grid article {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.page-articles-grid article img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.8 / 1;
    border-radius: 4px;
}

.page-articles-grid article h3 {
    margin: 16px 0px 6px;
}

.page-articles-grid article h3 a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    color: #000;
}

.page-articles-grid article p {
    font-size: 16px;
    line-height: 1.6;
    color: #7e7e7e;
}

.footer {
    background: #1b1d21;
    padding: 36px 0px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.footer ul a {
    font-size: 16px;
    line-height: 1.6;
    color: #c0c2d1;
    text-decoration: none;
    transition: 0.4s;
}

.footer ul a:hover {
    color: #fff;
}

.footer-info {
    min-width: 320px;
}

.footer-info img {
    width: 210px;
}

.footer-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #c0c2d1;
    display: block;
    margin-top: 16px;
}

.copy-right {
    border-top: 1px solid #ffffff1c;
    background: #1b1d21;
}

.copy-right .container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.copy-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #c0c2d1;
    display: block;
}

.copy-right ul {
    display: flex;
    gap: 12px;
    list-style: none;
    flex-wrap: wrap;
}

.copy-right ul a {
    font-size: 16px;
    line-height: 1.6;
    color: #c0c2d1;
    text-decoration: none;
    transition: 0.4s;
}

.copy-right ul a:hover {
    color: #fff;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.pagination a {
    font-size: 17px;
    color: #8740f4;
    text-decoration: none;
}

.pagination span {
    color: #000;
    font-size: 17px;
    text-decoration: none;
}

.page-404 {
    padding: 36px 0px;
}

.page-404 h1 {
    text-align: center;
    font-size: 34px;
    line-height: 1.4;
}

.page-404 p {
    margin-top: 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
}

.page-article {
    padding: 16px 0px 0px 0px;
}

.page-article .feature-image {
    width: 100%;
    max-width: 600px;
    display: block;
    border-radius: 4px;
    margin-bottom: 20px;
}

.page-article h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-article .article-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-article .article-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #7e7e7e;
}

.page-related-articles {
    padding-top: 0px;
}

.page-simple {
    padding: 36px 0px;
}

.page-simple h1 {
    font-size: 24px;
    font-weight: 400;
}

.page-simple .page-simple-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.page-simple .page-simple-content h3 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 4px;
    color: #7e7e7e;
    font-weight: 400;
}

.page-simple .page-simple-content strong {
    font-weight: 500;
}

.page-simple .page-simple-content ul {
    padding: 0px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.page-simple .page-simple-content li,
.page-simple .page-simple-content p {
    font-size: 16px;
    line-height: 1.4;
    color: #7e7e7e;
}

@media (max-width: 1000px) {
    .mobile-menu {
        display: block !important;
    }

    .header nav {
        position: absolute;
        left: 0px;
        top: calc(100% + 8px);
        background: #fff;
        width: 100%;
        padding: 10px 14px;
        opacity: 0;
        visibility: hidden;
        z-index: 10;
        transition: 0.5s;
    }

    .header.active nav {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .header ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .header ul a {
        color: #000000;
    }

    .hero-section .container h1 {
        font-size: 24px;
    }

    #download-form {
        height: 100px;
        flex-direction: column;
    }

    #download-form #copyToClipboard {
        height: 50px;
        right: 0px;
    }

    .page-tags h2,
    .page-steps h2,
    .page-faqs h2,
    .page-platform h2,
    .page-articles h2 {
        font-size: 20px;
    }

    .page-tags ul {
        gap: 10px;
    }

    .page-tags ul a {
        padding: 8px 10px;
    }

    .page-steps-grid,
    .page-articles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-info {
        min-width: 100%;
    }

    .footer .container {
        grid-template-columns: repeat(1, 1fr);
    }
}