:root {
    --color-1: #FF8515;
}

@font-face {
    font-family: 'Evolventa';
    src: url('/assets/fonts/evolventa.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Evolventa';
    src: url('/assets/fonts/evolventa-bold.ttf') format('truetype');
    font-weight: 600;
}

body {
    font-family: 'Evolventa', Arial, sans-serif;
    font-weight: 400;
}

header {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    z-index: 2;
    padding: 20px 0;
}

@media screen and (max-width: 760px) {
    header {
        padding: 15px 0;
    }
}

header .left, header .center, header .right {
    flex: 1;
}

@media screen and (max-width: 760px) {
    header .center {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/assets/logo.png') 15px 15px no-repeat, #2d2e33;
        background-size: 90px;
        z-index: 10;
        display: none;
        align-items: center;
        justify-content: center;

        &.active {
            display: flex;
        }
    }

    header .mobile-close {
        width: 30px;
        height: 30px;
        background: url(/assets/img/close.svg) center center no-repeat;
        background-size: 75%;
        position: absolute;
        top:27px;
        right:15px;
    }
}

header .right {
    display: flex;
    justify-content: end;
}

header .logo {
    width: 130px;
}

@media screen and (max-width: 760px) {
    header .logo {
        width: 90px;
    }
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:40px;
}

@media screen and (max-width: 760px) {
    header .menu {
        flex-direction: column;
    }
}

header .menu-item {
    color:#fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
}

@media screen and (max-width: 760px) {
    header .menu-item {
        font-size: 32px;
    }
}

.email {
    color:#fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap:10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;

    &:before {
        content:'';
        display: block;
        width: 20px;
        height: 20px;
        background: url('/assets/img/mail.svg') center center no-repeat;
        background-size: 100%;
    }
}

.container {
    padding: 0px 20px;
}

@media screen and (max-width: 760px) {
    .container {
        padding: 0 15px;
    }
}

.main-screen {
    height: 100vh;
    width: 100%;
    background: url('/assets/img/main-bg.png') center bottom no-repeat;
    background-size: cover;
    position: relative;
}

.main-screen .text-block {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;

}

.main-screen .text-block .title {
    color: #fff;
    font-weight: 600;
    font-size: 85px;
    line-height: 100px;
    text-align: center;
}

@media screen and (max-width: 760px) {
    .main-screen .text-block .title {
        font-size: 44px;
        line-height: 54px;
    }
}

.main-screen .text-block .title span {
    color: var(--color-1);
}

.main-screen .sub-text {
    color: #FFFFFFCC;
    text-align: center;
    max-width: 520px;
    line-height: 1.4;
    margin: 10px auto 0;
}

#particles-js {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes updown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.arrow-scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.arrow-scroll-down .arrow-item {
    display: block;
    width: 70px;
    height: 70px;
    background: url('/assets/img/arrow-down-w.svg') center center no-repeat;
    background-size: 100%;
    animation: updown 1s infinite;
}

@media screen and (max-width: 760px) {
    .arrow-scroll-down .arrow-item {
        width: 40px;
        height: 40px;
    }
}

.block-h2, h1 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

@media screen and (max-width: 760px) {
    .block-h2, h1 {
        font-size: 24px;
    }
}

.services {
    padding: 80px 0px;
}

@media screen and (max-width: 760px) {
    .services {
        padding: 50px 0px;
    }
}

.services .container, .seo-text .container {
    max-width: 1320px;
    margin: 0 auto;
}

.services .services-block {
    display: flex;
    gap:21px;
    flex-wrap: wrap;
    align-items: stretch;
}

.services .service-item {
    padding: 30px;
    display: flex;
    box-shadow: 0px 20px 40px 0px rgba(145, 139, 187, 0.05);
    background: url('/assets/img/service-box-bg.png') right top no-repeat, #f7f7f7;
    width: calc(33% - 70px);
}

@media screen and (max-width: 760px) {
    .services .service-item {
        width: 100%;
    }
}

.services .icon {
    min-width: 45px;
    height: 45px;
    margin-right: 30px;
    position: relative;
}

.services .icon:after {
    content:'';
    display: block;
    width: 70px;
    height: 70px;
    background: url('/assets/img/service-icon-bg.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    left:50%;
    margin-left: -35px;
    top:50%;
    margin-top: -35px;
    z-index: 1;
}

.services .service-item:nth-child(1) .icon {
    background: url('/assets/img/idea.svg') center center no-repeat;
    background-size: 100%;
}

.services .service-item:nth-child(2) .icon {
    background: url('/assets/img/brand.svg') center center no-repeat;
    background-size: 100%;
}

.services .service-item:nth-child(3) .icon {
    background: url('/assets/img/digital.svg') center center no-repeat;
    background-size: 100%;
}

.services .service-item:nth-child(4) .icon {
    background: url('/assets/img/adv.svg') center center no-repeat;
    background-size: 100%;
}

.services .service-item:nth-child(5) .icon {
    background: url('/assets/img/management.svg') center center no-repeat;
    background-size: 100%;
}

.services .service-item:nth-child(6) .icon {
    background: url('/assets/img/data.svg') center center no-repeat;
    background-size: 100%;
}

.services .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.services .text {
    line-height: 1.4;
    color:#6d6666;
}

footer {
    padding: 30px 0;
    background: #2d2e33;
    color:#fff;
}

.footer-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 760px) {
    .footer-block {
        flex-direction: column;
    }
}

footer .copy {
    font-size: 12px;
    line-height: 1.6;
}

@media screen and (max-width: 760px) {
    footer .copy {
        margin-bottom: 15px;
        text-align: center;
    }
}

.mobile-menu {
    display: none;
    width: 30px;
    height: 30px;
    background: url('/assets/img/mobile-menu.svg') center center no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 760px) {
    .mobile-menu {
        display: block;
    }
}

@media screen and (max-width: 760px) {
    header .right {
        display: none;
    }
}

.seo-text {
    padding: 80px 0;
    background: #f7f7f7;
}

@media screen and (max-width: 760px) {
    .seo-text {
        padding: 50px 0;
        background: #f7f7f7;
    }
}

.seo-text p {
    line-height: 1.4;
}

.seo-text .text {
    padding-right: 550px;
    background: url('/assets/img/digit.png') right top 100px no-repeat;
    background-size: 500px;
}

@media screen and (max-width: 760px) {
    .seo-text .text {
        padding-right: 0;
        background: none;
    }
}

.faq-block {
    margin-top: 20px;
}

.faq-block .faq-block__item {
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    cursor: pointer;
}

.faq-block summary {
    font-weight: 600;
    font-size: 18px;
}