@import "reset.css";

/* 
    font-family: "Outfit", sans-serif;
*/

/* general */
html {
    min-height: 100vh;
    position: relative;
}

body {
    position: relative;
    min-height: 100vh;
    color: #0c0c0c;
    background-color: #f1f1f1;
    font-size: 16px;
    line-height: 1.25;
    font-family: "Outfit", sans-serif;
}

body::after {
    content: "";
    position: fixed;
    z-index: -100;
    visibility: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #0c0c0c;
    transition: all 0.2s linear;
}
.popup-thanks-show::after {
    z-index: 800;
    visibility: visible;
    opacity: 0.4;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1670px;
    margin: 0 auto;
    padding: 0 70px;
}

@media (max-width: 1440px) {
    body {
        font-size: 15px;
        line-height: 1.2;
    }

    .wrapper {
        padding: 0 30px;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        padding: 0 16px;
    }

    .open-menu {
        overflow: hidden;
    }
}

/* Typography */
.content {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: auto;
}

.title {
    font-weight: 700;
    font-size: 32px;
}

@media (max-width: 1440px) {
    .title {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 20px;
    }
}

/* BTN */
.btn {
    position: relative;
    font-family: inherit;
    padding: 5px 28px;
    height: 60px;
    padding-left: 100px;
    margin: 0;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 30px;
    border: 4px solid #0c0c0c;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    text-align: right;
    color: #000000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 221px;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    width: 100px;
    height: 16px;
    background: url(../images/icons/arrow-btn.svg) no-repeat center right/auto;
    transition: all 0.3s ease;
}

.btn:not(.btn--secondary):hover {
    padding-left: 50px;
    padding-right: 50px;
}

.btn:hover::after {
    transform: scale(1.5) translateX(-30px);
}

.btn--secondary {
    border-color: #fff;
    color: #fff;
    height: 50px;
    padding: 5px 10px;
    justify-content: center;
    text-align: center;
}

.btn--secondary::after {
    display: none;
}

.btn--secondary:hover {
    background: #fff;
    color: #0c0c0c;
}

.btn-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 -4px;
}

.btn-wrapper .btn {
    width: fit-content;
    margin: 0 4px;
    padding: 0 26px;
}

@media (max-width: 1440px) {
    .btn {
        max-width: 216px;
        padding-right: 25px;
    }
}

@media (max-width: 768px) {
    .btn {
        max-width: 343px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn br {
        display: none;
    }

    .btn:hover::after {
        transform: scale(1.5) translateX(16px);
    }
}

/* popup */
.popup {
    position: fixed;
    background: #0c0c0c;
    color: #ffffff;
    border-radius: 24px;
    padding: 19px 24px 24px;
    z-index: 10;
    display: none;
}

.popup__info {
    padding-bottom: 20px;
}

.popup a:not(.btn) {
    font-weight: 700;
    text-decoration: underline;
}

.popup__title {
    font-weight: bold;
    padding-bottom: 22px;
}

.popup--cookies {
    animation: showPopup 0.3s linear forwards;
    max-width: 570px;
    top: 58vh;
    right: 40px;
    transition: all 0.3s linear;
}

.popup--thanks {
    top: calc(50% + 170px / 2);
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 328px;
    z-index: 900;
    text-align: center;
}

.popup--thanks .btn {
    margin: 0 auto;
    padding: 0 5px;
    max-width: 108px;
}

@keyframes showPopup {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1440px) {
    .popup--cookies {
        right: 20px;
        max-width: 551px;
    }
}

@media (max-width: 768px) {
    .popup__info {
        padding-bottom: 14px;
    }

    .popup--cookies {
        right: 0;
        max-width: 100%;
        left: 0;
        top: inherit;
        bottom: 0;
        border-radius: 15px 15px 0 0;
        padding: 15px 16px 20px;
    }

    .popup--thanks {
        top: 50%;
    }
}

/* HEADER */
.header {
    padding: 24px 0;
    background: #f1f1f1;
    z-index: 10;
    transition: all 0.3s linear;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.header--fixed {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1527px;
}

.header__logo {
    max-width: 208px;
}

@media (max-width: 1440px) {
    .header__wrapper {
        max-width: 1055px;
    }
}

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

    .header__logo {
        max-width: 167px;
    }

    .header__wrapper {
        justify-content: center;
    }
}

/* menu */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__item {
    font-weight: 700;
    margin-left: 65px;
    position: relative;
    transition: all 0.2s linear;
}

.menu__item:hover,
.menu__item.active {
    color: #6b95ff;
}

.menu__item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 50%;
    height: 1px;
    background: #6b95ff;
    width: 0;
    transition: all 0.2s linear;
}

.menu__item.active::before {
    width: 24px;
}

@media (max-width: 1440px) {
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
}

@media (max-width: 768px) {
}

/* intro */
.intro {
    padding-top: 100px;
}

.intro__wrapper {
    background: url(../images/intro.jpg) no-repeat center/cover;
    padding: 102px 79px;
    min-height: 615px;
}

@media (max-width: 768px) {
    .intro {
        padding-top: 65px;
    }

    .intro__wrapper {
        margin: 0 -32px;
        background-image: url(../images/intro-mob.jpg);
        padding: 25px 32px;
        min-height: 362px;
    }
}

/* about-us */
.about-us {
    padding-top: 88px;
    overflow-x: hidden;
}

.about-us__wrapper {
    border-radius: 72px;
    background: #fff;
    min-height: 660px;
    padding: 110px 0 0 6.7vw;
    position: relative;
}

.about-us__main-title {
    font-weight: 600;
    font-size: 200px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    max-width: fit-content;
}

.about-us__main-title::after {
    content: "";
    position: absolute;
    right: -43px;
    top: 50px;
    width: 35px;
    height: 40px;
    background: url(../images/decor-we.svg) no-repeat left top/contain;
    pointer-events: none;
}

.about-us__decor {
    position: absolute;
    pointer-events: none;
    left: 8.6vw;
    top: 410px;
}

.about-us__list {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.about-us__item {
    position: absolute;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.about-us__item--1 {
    max-width: 235px;
    top: 196px;
    left: 520px;
}

.about-us__item--2 {
    max-width: 235px;
    top: 85px;
    left: calc(50% + 14px);
    animation-delay: 0.2s;
}

.about-us__item--3 {
    max-width: 350px;
    top: 226px;
    left: calc(50% + 145px);
    animation-delay: 0.4s;
}

.about-us__item--4 {
    max-width: 240px;
    top: 327px;
    left: calc(50% - 176px);
    animation-delay: 0.6s;
}

.about-us__item--5 {
    max-width: 350px;
    top: 446px;
    left: 260px;
    animation-delay: 0.8s;
}

.about-us__item--6 {
    max-width: 240px;
    top: 446px;
    left: calc(50% + 14px);
    animation-delay: 1s;
}

.about-us__item--7 {
    max-width: 225px;
    top: 326px;
    left: calc(50% + 275px);
    animation-delay: 1.2s;
}

.about-us__item--8 {
    max-width: 230px;
    top: 85px;
    left: calc(50% + 405px);
    animation-delay: 1.4s;
}

.about-us__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 51px 0 45px;
    max-width: 1275px;
    margin: 0 auto;
}

.about-us__title {
    font-weight: 600;
    font-size: 50px;
    line-height: 1.18;
    text-transform: uppercase;
}

.about-us__subtitle {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    margin-top: -8px;
}

.about-us__btn {
    min-width: 224px;
    margin-left: 80px;
    flex-grow: 1;
    margin-bottom: 10px;
}

.about-us__line {
    border-bottom: 1px solid #c9c9c9;
}

.about-us__graph {
    position: relative;
}

.about-us__graph--web {
    width: initial;
    max-width: initial;
    margin-top: -394px;
    margin-left: -16px;
}

.about-us__graph--mob {
    display: none;
    background: url(../images/graph-mob.svg) no-repeat center bottom;
    width: calc(100% + 32px);
    margin: -99px -16px 0;
    height: 185px;
}

@media (max-width: 1440px) {
    .about-us__wrapper {
        min-height: 590px;
        padding: 119px 0 0 7.4vw;
    }

    .about-us__main-title {
        font-size: 150px;
    }

    .about-us__main-title::after {
        right: -25px;
        top: 39px;
        width: 21px;
        height: 24px;
    }

    .about-us__decor {
        left: 9.3vw;
        top: 400px;
        max-width: 45px;
    }

    .about-us__item--1 {
        max-width: 185px;
        top: 186px;
        left: 388px;
    }

    .about-us__item--2 {
        max-width: 180px;
        top: 75px;
    }

    .about-us__item--3 {
        max-width: 255px;
        top: 216px;
        left: calc(50% + 112px);
    }

    .about-us__item--4 {
        max-width: 178px;
        top: 316px;
        left: calc(50% - 132px);
    }

    .about-us__item--5 {
        max-width: 275px;
        top: 436px;
        left: 194px;
    }

    .about-us__item--6 {
        max-width: 260px;
        top: 436px;
    }

    .about-us__item--7 {
        max-width: 165px;
        top: 316px;
        left: calc(50% + 209px);
    }

    .about-us__item--8 {
        max-width: 157px;
        top: 75px;
        left: calc(50% + 305px);
    }

    .about-us__row {
        padding: 75px 0 48px;
        max-width: 950px;
    }

    .about-us__title {
        font-size: 38px;
    }

    .about-us__subtitle {
        font-size: 23px;
        margin-top: 1px;
    }

    .about-us__btn {
        margin-left: 40px;
        margin-bottom: 7px;
    }

    .about-us__graph--web {
        max-width: 1291px;
        margin-top: -290px;
        margin-left: 0px;
    }
}

@media (max-width: 1140px) {
    .about-us__graph--web {
        max-width: calc(100% + 150px);
        margin-top: -222px;
    }
}

@media (max-width: 990px) {
    .about-us__wrapper {
        min-height: auto;
        padding: 18px 57px 81px;
    }

    .about-us__main-title {
        margin: 0 auto 17px;
        line-height: 1;
    }

    .about-us__list {
        position: relative;
    }

    .about-us__item {
        position: relative;
        top: inherit;
        left: inherit;
        max-width: 100%;
        padding-bottom: 14px;
    }

    .about-us__decor {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding-top: 40px;
    }

    .about-us__wrapper {
        padding: 5px 18px 81px;
        border-radius: 40px;
    }

    .about-us__main-title {
        margin-bottom: 0;
    }

    .about-us__main-title::after {
        right: -21px;
        top: 22px;
    }

    .about-us__item {
        padding-bottom: 8px;
    }

    .about-us__row {
        padding: 33px 0 0;
        display: block;
    }

    .about-us__title {
        font-size: 28px;
        line-height: 1.25;
    }

    .about-us__subtitle {
        font-size: 20px;
    }

    .about-us__btn {
        margin: 19px 0 0;
        min-width: 100%;
    }

    .about-us__graph--web {
        display: none;
    }

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

@media (max-width: 650px) {
    .about-us__graph--mob {
        margin-top: -122px;
    }
}

/* benefits */
.benefits {
    padding: 110px 0 1px;
}

.benefits__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 48px;
}

.benefits__item {
    width: 100%;
    max-width: calc(100% / 6 - 16px);
    border-radius: 24px;
    background: #fff;
    padding: 35px 30px 43px;
    border-top: 8px solid;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.benefits__title {
    padding-bottom: 7px;
    font-weight: 700;
}

.benefits__item--1 {
    border-color: #41ba74;
}

.benefits__item--2 {
    border-color: #6b95ff;
    animation-delay: 0.2s;
}

.benefits__item--3 {
    border-color: #ff703b;
    animation-delay: 0.4s;
}

.benefits__item--4 {
    border-color: #eac93f;
    animation-delay: 0.6s;
}

.benefits__item--5 {
    border-color: #b870c9;
    animation-delay: 0.8s;
}

.benefits__item--6 {
    border-color: #c9c9c9;
    animation-delay: 1s;
}

@media (max-width: 1440px) {
    .benefits {
        padding: 82px 0 1px;
    }

    .benefits__list {
        padding-top: 35px;
        flex-wrap: wrap;
    }

    .benefits__item {
        max-width: calc(100% / 3 - 11px);
        margin-bottom: 19px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 36px 0 1px;
    }

    .benefits__list {
        padding-top: 19px;
        display: block;
        margin: 0 -8px;
    }

    .benefits__item {
        margin: 0 8px;
    }
}

@media (max-width: 530px) {
    .benefits__list {
        margin: 0 -16px;
    }

    .benefits__item {
        margin: 0 16px;
    }
}

/* services */
.services {
    padding: 110px 0 120px;
}

.services .title {
    padding-bottom: 48px;
}

.services__row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.services__col-left {
    width: 34%;
    padding-right: 40px;
}

.services__col-right {
    padding-top: 55px;
    max-width: 885px;
}

.services__item {
    border-bottom: 1px solid #c9c9c9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 0;
}

.services__title {
    width: 50%;
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 40px;
    max-width: 420px;
}

.services__info {
    max-width: 41%;
}

.services__nowrap {
    white-space: nowrap;
}

.services__letter {
    display: inline !important;
    margin-right: -3px;
}

.services .slick-prev {
    left: 0;
}

.services .slick-next {
    right: 0;
}

@media (max-width: 1440px) {
    .services {
        padding: 65px 0 89px;
    }

    .services .title {
        padding-bottom: 32px;
    }

    .services__pic {
        max-width: 166px;
    }

    .services__col-right {
        padding-top: 27px;
        max-width: 655px;
    }

    .services__item {
        padding-bottom: 36px;
    }

    .services__title {
        font-size: 38px;
        line-height: 44px;
        max-width: 340px;
    }

    .services__letter {
        margin-right: -5px;
        width: 28px;
    }

    .services__info {
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 31px 0 38px;
    }

    .services .title {
        padding-bottom: 11px;
        font-size: 23px;
    }

    .services__pic {
        display: none;
    }

    .services__col-left {
        width: 100%;
        padding-right: 0;
    }

    .services__col-right {
        padding-top: 0;
        max-width: calc(100% + 32px);
        margin: 0 -16px;
    }

    .services__row {
        display: block;
    }

    .services__item {
        padding: 0 40px 17px;
    }

    .services__title {
        font-size: 28px;
        line-height: 31px;
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding-bottom: 5px;
    }

    .services__nowrap {
        display: block;
    }

    .services__letter {
        margin-right: -2px;
        width: 21px;
    }

    .services__info {
        max-width: 100%;
    }
}

/* contact */
.contact {
    background: #41ba74;
    padding: 102px 0 61px;
}

.contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
}

.contact__col--left {
    flex-basis: 26%;
    padding-top: 8px;
}

.contact__col--right {
    flex-basis: 63%;
}

.contact .title {
    padding-bottom: 10px;
}

@media (max-width: 1440px) {
    .contact {
        padding: 82px 0 69px;
    }

    .contact .title {
        padding-bottom: 29px;
    }

    .contact__wrapper {
        max-width: 1040px;
    }

    .contact__col--left {
        flex-basis: 25%;
        padding-top: 0;
    }

    .contact__col--right {
        padding-top: 22px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 35px 0 2px;
    }

    .contact__wrapper {
        display: block;
    }

    .contact .title {
        padding-bottom: 13px;
    }

    .contact__col--right {
        padding-top: 17px;
    }
}

/* form */
.form {
    position: relative;
}

.form__note {
}

.form__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.form__col {
    flex-basis: 48%;
}

.form__col .form__item {
    border: none;
}

.form__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    border-bottom: 2px solid #0c0c0c;
    padding: 30px 0 10px;
}

.form__captcha {
    width: 100%;
    max-width: 100%;
    padding: 24px 0 0;
    margin-bottom: 10px;
    position: relative;
}

.form__captcha .alert-msg {
    border-radius: 5px;
}

.form__btn {
    padding: 15px 0 10px;
}

.form__label {
    flex-basis: 40%;
    padding-right: 30px;
}

.form__control {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

textarea.form__control {
    height: 143px;
}

.form__row .btn {
    margin-left: auto;
    display: block;
    margin-top: 25px;
    text-transform: uppercase;
}

.alert-msg {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 12px;
    background: #e83f00;
    display: block;
    transition: all 0.3s linear;
    border-radius: 0px 0px 5px 5px;
    padding: 0 5px;
}

.form__item.has-error {
    border-color: #e83f00;
}

@media (max-width: 1440px) {
    .form__item {
        padding-top: 33px;
    }

    .form__label {
        flex-basis: 62%;
    }

    .form__control {
        font-size: 15px;
    }

    .form__row .btn {
        text-transform: none;
    }
}

@media (max-width: 910px) {
    .form__row {
        display: block;
    }

    .form__btn {
        padding: 12px 0 10px;
    }

    .form__row .btn {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .form__label {
        flex-basis: 64%;
        padding-right: 15px;
    }
}

/* legal */
.legal {
    padding: 88px 0 84px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.legal__wrapper {
    background: #fff;
    border-radius: 72px;
    padding: 70px 130px 60px;
}

.legal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 29px;
    margin-bottom: 52px;
}

.legal__header p {
    padding-bottom: 0 !important;
}

.legal h1 {
    font-weight: 700;
    font-size: 32px;
}

.legal h2 {
    font-weight: 600;
    font-size: 27px;
    padding: 10px 0 14px;
    text-transform: uppercase;
}

.legal p {
    padding-bottom: 16px;
}

.legal a {
    color: #6b95ff;
}

.legal i {
    font-style: italic;
}

.legal ol,
.legal ul {
    padding-bottom: 10px;
}

.legal li {
    padding-left: 14px;
    padding-bottom: 3px;
    list-style: none;
    position: relative;
}

.legal ul li::after {
    content: "";
    position: absolute;
    background: #b870c9;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    left: 0px;
    top: 7px;
}

.legal b {
    font-weight: 700;
}

.legal h2.number {
    position: relative;
    padding: 18px 0 20px 40px;
}

.legal h2.number .number__item {
    position: absolute;
    left: 0;
    top: 20px;
    width: 32px;
    height: 32px;
    background: #ff703b;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 32px;
    font-weight: 600;
}

.legal p.number {
    position: relative;
    padding-left: 40px;
    padding-bottom: 7px;
}

.legal p.number .number__item {
    position: absolute;
    left: 0;
    top: 4px;
    width: 32px;
    height: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 1440px) {
    .legal__wrapper {
        padding: 60px 94px 49px;
    }

    .legal h1 {
        font-size: 23px;
    }

    .legal h2 {
        font-size: 20px;
    }

    .legal h2.number {
        padding-left: 35px;
    }

    .legal h2.number .number__item {
        top: 16px;
        width: 26px;
        height: 26px;
        font-size: 23px;
    }

    .legal p.number {
        padding-left: 35px;
    }
}

/* page-404 */
.page-404 {
    text-align: center;
    padding: 10px 0 15px;
}

.page-404__pic {
    margin: 0 auto;
}

.legal .page-404__title {
    padding: 43px 0 38px;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.12;
    text-transform: uppercase;
}

.page-404__txt {
    font-weight: 600;
    font-size: 32px;
}

.page-404__link {
    padding-top: 28px;
    display: inline-block;
}

.page-404__link:hover,
.page-404__link:focus,
.page-404__link:active {
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .legal .page-404__title {
        padding: 39px 0 25px;
        font-size: 42px;
    }

    .page-404__txt {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .legal {
        padding: 50px 0 27px;
    }

    .legal__wrapper {
        padding: 26px 18px 17px;
        border-radius: 40px;
    }

    .legal__header {
        padding-bottom: 23px;
        margin-bottom: 27px;
    }

    .page-404__pic {
        max-width: 200px;
    }

    .legal .page-404__title {
        padding: 30px 0 13px;
        font-size: 30px;
    }

    .page-404__txt {
        font-size: 18px;
    }

    .page-404__link {
        padding-top: 16px;
    }
}

/* footer */
.footer {
    padding: 30px 0;
}

.footer--color {
    background: #41ba74;
}

.footer__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer__copy {
    margin-left: auto;
}

.footer__link {
    margin-right: 24px;
    transition: all 0.2s linear;
}

.footer__link.active,
.footer__link:hover,
.footer__link:active,
.footer__link:focus {
    color: #6b95ff;
}

.footer--color .footer__link:hover,
.footer--color .footer__link:active,
.footer--color .footer__link:focus {
    text-decoration: underline;
    color: inherit;
}

@media (max-width: 1440px) {
    .footer {
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    .footer__wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 400px;
    }

    .footer__copy {
        margin-left: 0;
        width: 100%;
    }

    .footer__link {
        margin: 0 0 14px;
    }
}

/* modal */
.modal-backdrop {
    z-index: 11 !important;
    background: rgba(0, 178, 255, 0.4);
    backdrop-filter: blur(4px);
}

.modal .modal-dialog {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

.modal .modal-content {
    padding: 42px 22px 53px;
    background-color: #fff;
    color: #2c1f28;
    border-radius: 0;
    border: none;
    text-align: center;
    max-width: 465px;
    width: 100%;
}

.modal .img {
    margin: 0 auto 7px;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #ffe713;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .modal-title {
    font-weight: 700;
    font-size: 32px;
    padding-bottom: 8px;
}

.modal .btn {
    width: 100%;
    max-width: 154px;
    margin-top: 30px;
}

/* slick */
.slick-prev,
.slick-next {
    position: absolute;
    top: 40%;
    width: 33px;
    height: 48px;
    background: url(../images/icons/slider-btn.svg) no-repeat center;
    border: none;
    padding: none;
    outline: none;
    font-size: 0px !important;
    line-height: 0 !important;
    opacity: 1;
    transition: opacity 0.2s linear;
}

.slick-prev {
    left: -8px;
}

.slick-next {
    right: -8px;
    transform: scale(-1, 1);
}

.slick-disabled {
    opacity: 0;
}

.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 9px;
}

.slick-dots button {
    width: 20px;
    height: 15px;
    border: none;
    outline: none;
    background: url(../images/icons/slider-dot.svg) no-repeat center;
    font-size: 0px !important;
    line-height: 0 !important;
    padding: 0;
    margin: 0 7px;
    opacity: 0.4;
    transition: opacity 0.2s linear;
}

.slick-dots .slick-active button {
    opacity: 1;
}

.slick-dots li:nth-child(2n-1) button {
    transform: scale(1, -1);
}

@media (max-width: 530px) {
    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }
}

/* anim */
/* about-us */
.about-us__item {
    opacity: 0;
}

.start-anim .about-us__item {
    animation-name: showTop;
}

@media (min-width: 769px) {
    /* benefits */
    .benefits__item {
        opacity: 0;
    }

    .start-anim .benefits__item {
        animation-name: showTop;
    }
}

@keyframes showTop {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
