/* RESET */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    outline: 0;
    -webkit-appearance: none;
    box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* font-family: "Syne", sans-serif; */
@font-face {
    font-family: "Syne";
    src: url(../fonts/Syne/Syne-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Syne";
    src: url(../fonts/Syne/Syne-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* general */
body,
html {
    min-height: 100%;
}

body {
    font-family: "Syne", sans-serif;
    background: #BDF5E2;
    transition: opacity 0.3s linear;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #262626;
}

.open-menu {
    overflow: hidden;
}

svg {
    display: block;
}

a {
    transition: all 0.3s ease;
    text-decoration: underline;
}

a:hover {
    /* color: #63ffba; */
    text-decoration: underline;
}

a:active {
    /* color: #009d57; */
}

strong,
b {
    font-weight: 700;
}

.loader {
    position: relative;
}

.loader .lds-roller {
    display: block;
}

.loader .layout {
    opacity: 0;
}

.layout {
    min-height: 100vh;
    position: relative;
    transition: opacity 0.3s linear;
    overflow: hidden;
}

.wrapper {
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 1420px;
    height: 100%;
    position: relative;
}

.wrapper--big {
    max-width: 1920px;
}

picture,
img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1440px) {
    .wrapper {
        padding: 0 50px;
    }
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    body {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.4;
        letter-spacing: -0.45px;
    }

    .wrapper {
        padding: 0 20px;
    }
}

/* typography */
.title {
    font-weight: 600;
    font-size: 70px;
    line-height: 1.085;
}

.subtitle {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    font-family: inherit;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    padding: 16px 45px 19px;
    line-height: 1;
    transition: all 0.3s ease;
    color: #262626;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: radial-gradient(82.9% 62.84% at 29.06% 37.01%, #FFFFFF 49.8%, #FD79D0 100%);
    box-shadow: 0px 8px 0px #262626, inset 0px -6px 4px #41DCFF;
    border-radius: 60px;
    overflow: hidden;
}
.btn span {
    z-index: 2;
}
.btn:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/bg-noise.png');
    z-index: 1;
    opacity: 0.5;
}

.btn:hover {
    background: radial-gradient(82.9% 62.84% at 29.06% 37.01%, #F4C3E8 49.8%, #DB2DA1 100%);
    color: #262626;
    text-decoration: none;
}

.btn:active {
    background: radial-gradient(82.9% 62.84% at 29.06% 37.01%, #FF65D8 49.8%, #B112BF 100%);
    color: #262626;
}

.btn--white {
    background: #ffffff;
}


@media screen and (max-height: 820px), (max-width: 1440px) {
    .title {
        font-size: 50px;
    }

    .subtitle {
        font-size: 25px;
    }
}

@media screen and (max-width: 992px) {
    .title {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .title {
        letter-spacing: 0px;
        font-size: 30px;
    }

    .subtitle {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .btn {
        width: 99%;
        max-width: 350px;
        font-size: 20px;
        height: 50px;
    }
}

@media screen and (max-width: 576px) {
}

/* header */
.header {
    z-index: 100;
    padding: 32px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.2s linear;
}

.header--scrolled {
    background: #fff;
}

.header__logo {
    display: block;
    position: relative;
    z-index: 100;
}

.header__pic {
    display: block;
    width: 100%;
    max-width: 140px;
    height: auto;
    transition: all 0.2s ease;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__item {
    list-style: none;
    font-size: 18px;
    font-weight: 700;
    margin-right: 98px;
    letter-spacing: 0;
}

.header__item:last-child {
    margin-right: 0;
}

.header__link {
    text-decoration: none !important;
    position: relative;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.2s linear;
    color: #262626;
    display: block;
}

.header__link::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    transition: all 0.2s linear;
    z-index: -1;
    height: 5px;
    width: 0;
    background: #EEC2E1;
    border-radius: 0;
}


.header__link.active {
    
}
.header__link:hover::before,
.header__link.active::before {
    width: 100%;
    right: initial;
    left: 0;
    color: #262626;
}

.header__btn {
    display: none;
    position: relative;
    width: 18px;
    height: 22px;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    outline: none;
    border: none;
    position: relative;
    z-index: 30;
}

.header__btn span {
    position: absolute;
    height: 2px;
    background-color: #222222;
    width: 100%;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.header__btn span:nth-child(1) {
    top: 2px;
}

.header__btn span:nth-child(2) {
    top: 10px;
}

.header__btn span:nth-child(3) {
    top: 18px;
}

.header__btn.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.header__btn.open span:nth-child(2) {
    transform: rotate(180deg);
    opacity: 0;
}

.header__btn.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .header__logo {
        max-width: 164px;
    }

    .header__link::before {
        height: 4px;
    }

    .header__nav {
    }
}

@media screen and (max-width: 992px) {
    .header__nav {
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 11px 0;
    }

    .header__nav {
        max-width: 100%;
        width: auto;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 100dvh;
        z-index: 25;
        transform: translateY(-200px);
        opacity: 0;
        transition: all 0.5s ease;
        padding: 114px 10px 20px;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        gap: 50px;
        z-index: -100;
        pointer-events: none;
    }

    .header__item {
        margin: 0
    }

    .header__link {
        font-size: 22px;
    }

    .header__link::before {
        display: none;
    }

    .header__nav.open {
        transform: none;
        opacity: 1;
        z-index: 10;
        pointer-events: all;
    }

    .header__btn {
        display: block;
    }
}

/* footer */
.footer {
    padding: 37px 0;
    position: relative;
    letter-spacing: 0px;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 550px;
}

.footer__link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s linear;
}

.footer__copyright br {
    display: none;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .footer__nav {
        max-width: 477px;
    }
}

@media screen and (max-width: 1070px) {
    .footer__nav {
        max-width: 410px;
    }
}

@media screen and (max-width: 940px) {
    .footer__wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
}

@media screen and (max-width: 500px) {
    .footer__nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer__copyright br {
        display: block;
    }
}

/* content */
.main {
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 82px;
}

.section {
    position: relative;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .main {
        padding-top: 71px;
    }
}

@media screen and (max-width: 768px) {
    .main {
        padding-top: 44px;
    }
}

/* section intro */
.intro {
    padding: 100px 0 142px;
}

.intro .wrapper {
    position: relative;
    z-index: 1;
}

.intro__content {
    max-width: 635px;
    margin-left: auto;
}

.intro__pic {
    pointer-events: none;
}

.intro__pic--web {
    position: absolute;
    top: -37px;
    left: calc(50% - 856px);
}

.intro__pic--mob {
    display: none;
    margin: -2px auto 20px;
    width: calc(100% - 40px);
    max-width: 590px;
}

.intro .title {margin-bottom: 50px;}

.intro__txt {
    margin-top: 26px;
    font-size: 25px;
    letter-spacing: 0.05px;
    line-height: 1.4;
}

.intro .btn {
    margin-top: 68px;
    width: 100%;
    max-width: 340px;
}

@media screen and (max-width: 1760px) {
    .intro__pic--web {
        top: 63px;
        right: calc(50% - 720px);
        max-width: 980px;
    }
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .intro {
        padding: 60px 0 145px;
    }

    .intro .title {
        margin-bottom: 34px;
    }

    .intro .title svg {
        max-width: 342px;
    }
    

    .intro__content {
        max-width: 550px;
    }

    .intro__txt {
        margin-top: 14px;
    }

    .intro .subtitle {
        max-width: 300px;
        padding: 20px 0 30px;
    }

    .intro .btn {
        margin-top: 28px;
    }

    .intro__pic--web {
        top: -9px;
        left: calc(50% - 712px);
        max-width: 800px;
    }
}

@media screen and (max-width: 1245px) {
    .intro__pic--web {
        left: 1%;
        max-width: 53%;
        top: 40px;
    }
}

@media screen and (max-width: 992px) {
    .intro__content {
        max-width: 100%;
    }

    .intro__pic--mob {
        display: block;
    }

    .intro__pic--web {
        display: none;
    }

    .intro .title {
        align-items: center;
        margin-bottom: 26px;
    }

    .intro .subtitle {
        text-align: center;
        max-width: 100%;
    }

    .intro .btn {
        margin: 24px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .intro {
        padding: 0px 0 50px;
    }

    .intro .title {
        line-height: 1;
    }

    .intro .title svg {
        max-width: 298px;
        margin-top: -3px;
    }

    .intro .subtitle {
        padding: 2px 23px 17px;
    }

    .intro__txt {
        font-size: 20px;
        margin-top: 10px;
    }
}

/* section services */
.services {
    padding: 60px 0 157px;
}

.services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}

.services__header p {
    max-width: 512px;
    padding-top: 16px;
}

.services__header .title {
    flex: 0 0 50%;
}

.services__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-rows: auto;
}

.services__item {
    padding: 37px 40px 38px;
    border-radius: 30px;
}

.services__item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
    background: radial-gradient(120.64% 91.75% at 29.06% 37.01%, #FFFFFF 49.8%, #FD79D0 100%);
}

.services__item:nth-child(2) {
    grid-area: 1 / 3 / 2 / 4;
    background: radial-gradient(118.21% 109.4% at 7.95% 10.14%, #FFFBF8 0%, #FFFBCC 32.69%, #FFED62 63.94%, #FF8341 100%);
}

.services__item:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
    background: radial-gradient(109.26% 104.14% at 19.46% 16.54%, #F9EFE6 0%, #FF76A8 53.98%, #AC42C7 78.85%, #41DCFF 100%);
}

.services__item:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
    background: radial-gradient(118.21% 109.4% at 7.95% 10.14%, #FFFBF8 0%, #FFFBCC 32.69%, #FFED62 63.94%, #FF8341 100%);
}

.services__item:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
    background: radial-gradient(120.64% 91.75% at 29.06% 37.01%, #FFFFFF 49.8%, #FD79D0 100%);
}

.services__title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.services__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    max-height: 20px;
    margin-right: 8px;
    margin-top: 7px;
}

.services__icon svg {
    width: 100%;
}

.services__desc-wrapper {
    display: flex;
    justify-content: space-between
}

.services__desc-wrapper .services__desc {
    max-width: 43%;
}
.services__desc-wrapper .services__info {
    max-width: 42%;
    margin-top: -25px;
}

.services__desc {
    margin: 12px 0 0;
    line-height: 1.4;
}

.services__info {width: 100%;}

.services__info ul {
    padding-left: 0;
    padding-top: 14px;
    padding-bottom: 7px;
    line-height: 1;
    list-style: none;
}

.services__info li {
    padding-left: 25px;
    position: relative;
}

.services__info li:before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 2px;
    background: url('../images/bullet.svg') 0 0 no-repeat;
    background-size: contain;
}

.services__info li + li {
    margin-top: 9px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .services {
        padding: 40px 0 93px;
    }

    .services__header {
        padding-bottom: 40px;
    }

    .services__item {
        padding: 30px 25px 30px;
    }
}

@media screen and (max-width: 1220px) {
    .services__wrapper {
        
grid-column-gap: 25px;
        
grid-row-gap: 25px;
    }
}

@media screen and (max-width: 992px) {
    .services__info {
        width: 45%;
    }
}

@media screen and (max-width: 855px) {
}

@media screen and (max-width: 768px) {
    .services {
        padding: 20px 0 30px;
    }

    .services__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-bottom: 19px;
    }

    .services__header p {
        max-width: 620px;
        padding-top: 8px;
    }

    .services__wrapper {
        display: block;
    }

    .services__item {
        border-radius: 15px;
        padding: 24px 20px 20px;
        margin-bottom: 16px
    }

    .services__item:last-child {
        margin-bottom: 0;
    }

    .services__title {
    }
    
    .services__icon {
        margin-top: 4px;
    }

    .services__info,
    .services__desc {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .services__item:nth-child(1) .services__desc-wrapper {
        display: block
    }
    .services__item:nth-child(1) .services__desc,
    .services__item:nth-child(1) .services__info {
        width: 100%;
        max-width: 100%;
    }
    .services__item:nth-child(1) .services__info {
        margin: 20px 0 0;
    }
}

/* section about-us */
.about-us {
    padding: 60px 0 176px;
}

.about-us__content {
    width: 51%;
}

.about-us .title {
    padding-bottom: 49px;
}

.about-us .subtitle {
    font-weight: 400;
    max-width: 565px;
    line-height: 1.4;
}

.about-us__list {
    margin-top: 32px;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 37px 24px;
}

.about-us__list li {
    flex: 0 1 47%;
    line-height: 23px;
}

.about-us__list h5 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 9px;
}

.about-us__pic {
    pointer-events: none;
}

.about-us__pic--web {
    position: absolute;
    top: -26px;
    right: calc(50% - 849px);
}

.about-us__pic--mob {
    display: none;
    margin: 12px auto 0;
    width: calc(100% - 36px);
    max-width: 598px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .about-us {
        padding: 40px 0 126px;
    }

    .about-us__pic--web {
        top: -24px;
        right: calc(50% - 621px);
        max-width: 590px;
    }
}

@media screen and (max-width: 1245px) {
    .about-us__pic--web {
        top: 43px;
        right: 1%;
        max-width: 496px;
    }
}

@media screen and (max-width: 992px) {
    .about-us__content {
        width: 100%;
    }

    .about-us__pic--mob {
        display: block;
    }

    .about-us__pic--web {
        position: relative;
        top: 0;
        left: auto;
        right: auto;
        max-width: 290px;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .about-us {
        padding: 20px 0 41px;
    }

    .about-us .title {
        padding-bottom: 9px;
    }

    .about-us__list h5 {
        font-size: 20px;   
    }    
}

@media screen and (max-width: 560px) {
   .about-us__list {
       flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    } 
    .about-us__list h5 {
        margin-bottom: 0;   
    } 
}

/* section contact us */
.contact-us {
    padding: 60px 0 65px;
}

.contact-us__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.contact-us__form {
    width: 100%;
    flex-basis: 50%;
    max-width: 580px;
    padding-top: 13px;
}

.contact-us__info {
    width: 100%;
    flex-basis: 45%;
    max-width: 470px;
}

.contact-us__mail {

}

.contact-us__mail-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 18px;
    font-size: 25px;
    color: #262626;
}

.contact-us .subtitle {
    padding: 55px 0 22px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .contact-us {
        padding: 40px 0 25px;
    }

    .contact-us .subtitle {
        padding: 26px 0 28px;
    }

    .contact-us__address {
        padding-top: 30px;
    }

    .contact-us__info {
        max-width: 400px;
    }
}

@media screen and (max-width: 960px) {
    .contact-us__row {
        flex-direction: column;
    }

    .contact-us__info {
        max-width: 100%;
    }

    .contact-us__form {
        padding-top: 0;
        margin: 0 auto;
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .contact-us {
        padding: 20px 0 17px;
    }

    .contact-us__row {
        gap: 21px;
    }

    .contact-us .subtitle {
        padding: 11px 0 11px;
    }

    .contact-us__mail {
        gap: 5px;
    }

    .contact-us__mail-link {
        font-size: 20px;
    }
}

/* form */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.form-item {
    position: relative;
    padding-bottom: 34px;
}

.form-control {
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: #222222;
    padding: 9px 35px 9px 28px;
    height: 50px;
    -webkit-appearance: none;
    border-radius: 30px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 22px 20px;
    border: 2px solid #222222;
    transition: all 0.3s ease;
    display: block;
}

.form-control-email {
}

textarea.form-control-message {
    resize: none;
    height: 142px;
}

.form-error {
    display: none;
    position: absolute;
    color: #ff1d1d;
    margin: -1px 0 -39px;
    padding-left: 20px;
    font-size: 20px;
}

.has-error .form-control {
    border-color: #ff1d1d;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .form-error {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
    .form-item {
        padding-bottom: 30px;
    }

    .form-control {
        padding: 10px 20px 11px 20px;
        height: 50px;
        background-position: 18px 16px;
        background-size: 15px;
    }

    .form-control-message {
        background-position: 18px 15px;
        background-size: 14px;
    }

    .form-error {
        margin: 1px 0 -10px;
        padding-left: 20px;
        font-size: 16px;
    }

    .form-row {
        display: block;
    }

    .form-row .form-item {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* section terms */
.terms {
    padding: 138px 0 129px;
    margin: 0 auto;
}

.terms .update {
    margin-top: 50px;
}

.terms h1 {
    margin: 0 0 29px;
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0px;
}

.terms h2 {
    margin: 40px 0 9px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.terms p {
    margin-bottom: 13px;
}

.terms a:not(.btn) {
    white-space: nowrap;
    color: #262626;
}

.terms ul {
    margin-bottom: 13px;
    margin-left: 24px;
}

.terms ul li {
    list-style-type: disc;
    margin-bottom: 4px;
}

.terms table {
    border-collapse: collapse;
}
.terms table td {
    border: 1px solid;
    padding: 5px 10px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .terms {
        padding: 34px 0 28px;
    }

    .terms h1 {
        font-size: 60px;
    }

    .terms h2 {
        font-size: 25px;
        margin: 33px 0 12px;
    }
}

@media screen and (max-width: 768px) {
    .terms {
        line-height: 1.5;
    }

    .terms h1 {
        margin-bottom: 11px;
        font-size: 35px;
    }

    .terms h2 {
        font-size: 22px;
        letter-spacing: -0.5px;
        gap: 14px;
    }

    .terms p {
        margin-bottom: 8px;
    }

    .terms .update {
        margin-top: 30px;
    }
}

/* page 404 */
.layout--404 {
    display: flex;
    flex-direction: column;
}

.main--404 {
    flex-grow: 1;
}

.section-404 {
    text-align: center;
    padding: 36px 0 132px;
}

.section-404__pic {
    margin: 0 auto -12px;
}

.section-404 .btn {
    margin: 32px auto 0;
    min-width: 290px;
}

.section-404 .title {
    padding-bottom: 10px;
}

.section-404__pic--mob {
    display: none;
    position: initial;
    width: calc(100% - 40px);
    max-width: 590px;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .section-404__pic {
        max-width: 570px;
        max-height: 50vh;
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .section-404 {
        padding: 74px 0 90px;
    }

    .section-404__pic--mob {
        display: block;
    }

    .section-404__pic--web {
        display: none;
    }
}

@media screen and (max-width: 576px) {
}

/* lds-roller */
.lds-roller {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 200;
}

.lds-roller div {
    -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c76f;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    -webkit-animation-delay: -0.036s;
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    -webkit-animation-delay: -0.072s;
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    -webkit-animation-delay: -0.108s;
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    -webkit-animation-delay: -0.144s;
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    -webkit-animation-delay: -0.18s;
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    -webkit-animation-delay: -0.216s;
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    -webkit-animation-delay: -0.252s;
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    -webkit-animation-delay: -0.288s;
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@-webkit-keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* popup */
.popup {
    position: fixed;
    z-index: 700;
    display: none;
}

.popup__content {
    width: 100%;
    max-width: 1077px;
    margin: 0 auto;
}

.popup__wrap-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
    margin-top: 31px;
}

.popup .subtitle {
    padding-bottom: 18px;
}

.popup a {
    color: #262626;
}

.popup .btn {
    letter-spacing: -1px;
}

.popup--cookies {
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 67px 45px 80px;
}

.popup--thanks {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 655px;
    width: calc(100% - 40px);
    border-radius: 30px;
    padding: 65px 99px 84px;
    background-color: #e7ecf3;
}

.popup--thanks .popup__wrap-btn {
    margin-top: 35px;
}

.popup--thanks .btn {
    min-width: 164px;
}

.popup-thanks-show {
    overflow: hidden;
}

.popup-thanks-show::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #000000;
    opacity: 0.8;
}

@media screen and (max-height: 820px), (max-width: 1440px) {
    .popup--cookies {
        padding: 49px 45px 58px;
    }

    .popup--thanks {
        max-width: 546px;
        padding: 45px 55px 50px;
    }
}

@media screen and (max-width: 768px) {
    .popup__wrap-btn {
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
    }

    .popup .subtitle {
        padding-bottom: 12px;
    }

    .popup--cookies {
        padding: 27px 20px 32px;
    }

    .popup--thanks {
        border-radius: 15px;
        padding: 37px 26px 40px;
    }

    .popup--thanks .subtitle {
        margin-right: -10px;
    }
}

@media screen and (max-width: 520px) {
}

/* animated */
/* animated animated-hidden */
.animated {
    transition: transform 0.25s linear, opacity 0.5s ease;
    opacity: 1;
    transition-delay: 0.2s;
    will-change: transform;
}

.animated.animated-hidden {
    opacity: 0;
}

.animated.not-in-view {
    opacity: 0;
    transform: translateY(50px);
    transition: none;
}

@media screen and (max-width: 768px) {
    .animated.not-in-view {
        transform: translateY(30px);
    }
}
