/* spec */
:root {
    --header-blue: #0D43B2;
    --bg-blue-2: #3861B6;
    --bg-blue: #1C224A;
    --extra-blue: #2D4C8D;
    --extra-blue-2: #1C224A;
    --extra-blue-3: #2D3B90;
    --white: #fff;
    --light: #E0F7FF;
    --dark: #1A1A1A;
    --gray: #696969;
    --disabled: #93A2BF;
    --green: #00B390;
    --orange: #F3A600;
    --lavand: #605CFF;
    --lavand-bg: #ACA2F5;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    /* background-color: var(--bg-blue-2); */
    font-family: 'Fira Sans', sans-serif;
    color: var(--white);
    margin: 0;
}

/* Заголовки */
h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 500;
    text-transform: capitalize;
}

h2 {
    color: var(--dark);
    font-family: 'Roboto';
    font-size: 40px;
    font-weight: 700;
}

h3 {
    color: var(--dark);
}

/* Параграфы */
p {
    font-size: 20px;
    color: var(--gray);
    line-height: 32px;
}

/* Ссылки */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Кнопки */
button,
input[type="submit"],
input[type="reset"] {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Roboto';
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--header-blue);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 44px;
}

ul {
    list-style: none;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: #0056b3;
}

/* Формы */
form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 0.5em;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1em;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #F5F5F5;
    outline: 1px solid #C7C7C7;
    height: 44px;
    font-family: 'Roboto';
}

/* Секции и контейнеры */
section {
    padding: 0 0 120px 0;
}

.green {
    background: var(--green) !important;
}

.orange {
    background: var(--orange) !important;
}

.lavand {
    background: var(--lavand) !important;
}

/* Футер */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.container {
    /* position: relative; */
    width: 1440px;
    margin: 0 auto;
    /* outline: 1px solid red; */
}

.section__heading {
    text-align: center;
    margin-bottom: 80px;
}

/* navbar */

nav {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    padding: 20px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #1C2669;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 48px;
}

.nav__item {}

.nav__link {
    color: var(--light);
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    text-transform: uppercase;
}

.nav__descriptions {
    display: none;
}

.nav__toggler {
    display: none;
}

/* header */

header {
    position: relative;
    background-color: var(--lavand-bg);
    z-index: 1;
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

.header__text {
    padding-top: 50px;
    flex: 1 0 650px;
}

.header__title {
    margin-bottom: 20px;
}

.header__description {
    margin-bottom: 40px;
    color: var(--white);
}

.header__text button {
    width: 300px;
}

.header__image {
    flex: 1 0 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* width: 850px; */
    height: 600px;
}

.header__image img {
    /* width: 400px;
    height: 400px; */
    object-fit: cover;
    position: absolute;
}

.header__image_girls {
    z-index: -1;
}

.header__image_phone {}

.header__shape {
    position: absolute;
    z-index: -1;
}

.header__shape.left {
    bottom: 0;
    left: 0;
}

.header__shape.right {
    top: 0;
    right: 0;
}

.header__shape.white {
    top: auto;
    bottom: -65px;
    right: 0;
    /* left: 50%;
    transform: translate(-50%); */
}

.header__shape.yellow {
    top: auto;
    bottom: -25px;
    right: 0;
}

/* info */

.info {
    background-color: var(--white);
}

section.info {
    padding-top: 80px;
}

.info__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info__block:nth-child(even) {
    flex-direction: row-reverse;
}

.info__title {
    margin-bottom: 24px;
}

.info__text {
    flex: 1 0 50%;
    box-sizing: border-box;
    padding-left: 80px;
    padding-right: 3 0px;
}

.info__decription {
    color: var(--gray);
    margin-bottom: 24px;
}

.info__img {
    flex: 1 0 50%;
}

/* benefits */

.benefits .section__heading {
    margin-bottom: 120px;
}

.benefits__block {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    font-family: Arial, sans-serif;
}

.benefits__image {
    width: 30%;
    height: 400px;
    position: relative;
    border-radius: 5%;
}

.benefits__mockup {
    position: absolute;
}

.benefits__gif {
    position: absolute;
    border-radius:  10px;
    width: 198px;
    left: 10px;
    top: 10px;
}

.benefits__list {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    /* padding-top: 80px; */
}

.benefits__item {
    display: flex;
    flex-basis: 430px;
    flex-shrink: 1;
    flex-grow: 0;
    gap: 10px;
}

.benefits__icon {
    width: 72px;
    height: 72px;
    margin-right: 20px;
}

.benefits__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.benefits__description {
    /* font-size: 14px; */
}

/* баннер */

.banner {
    background-image: url('../main/img/banner_bg.png');
    padding: 20px 0
}

.banner__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-family: Arial, sans-serif;
}

.banner__image {
    width: 75%;
    height: 400px;
    background-image: url('person.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    padding-top: 50px;
    padding-right: 150px;
}

.banner__text {
    font-size: 70px;
    font-style: italic;
}

.banner__form {
    background-color: #fff;
    width: 25%;
    padding: 40px;
    border-radius: 16px;
}

.banner__heading {
    font-size: 40px;
    margin-bottom: 10px;
}

.banner__subheading {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
}

.banner__input {
    width: 100%;
    padding: 10px;
    border: none;
    margin-bottom: 10px;
}

.banner__button {
    width: 100%;
    padding: 15px;
}

.banner__small {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

/* steps */

.steps {
    padding-top: 120px;
    padding-bottom: 0;
}

.steps__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    padding: 40px;
}

.steps__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.steps__item {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
    height: 280px;
    gap: 90px;
}

.steps__item:not(:last-child) {
    margin-bottom: 80px;
}

.steps__item:nth-child(even) {
    flex-direction: row-reverse;
}

.steps__number {
    position: relative;
    z-index: 1;
}

.steps__number span {
    display: block;
    font-size: 48px;
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background-color: var(--extra-blue-2);
    color: var(--white);
    text-align: center;
    line-height: 140px;
    position: relative;
    z-index: 1;

}

.steps__item:not(:last-of-type) .steps__number::before {
    content: url('../main/img/dots.svg ');
    position: absolute;
    object-fit: cover;
    z-index: -1;
    bottom: -55px;
    left: 50%;
    transform: translate(-50%);
    height: 200px;
}

.steps__image {
    width: 340px;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.steps__image img {
    border-radius: 20px;
}

.step__description {
    color: var(--gray);
    font-size: 20px;
    line-height: 32px;
    width: 240px;
    /* height: 132px; */
    background-color: #D8EFFD;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 18px 22px;
    position: relative;
    right: 20px;
    bottom: 20px
}

.steps__item:nth-child(odd) .step__description {
    right: 0;
    left: 100px;
}

.steps__content {
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h3.steps__text {
    font-size: 24px;
}

p.steps__text {
    font-size: 20px;
}

/* features */

.features {
    padding-top: 50px;
    padding-bottom: 0;
    position: relative;
    background: var(--lavand);
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: radial-gradient(#2C2661 -50%, rgba(255, 255, 255, 0) 95%);
    z-index: -1;
    /* opacity: 0.5; */
}

.features h2 {
    color: var(--white)
}

.features__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-family: Arial, sans-serif;
    padding: 0 40px 40px 40px;
}

.features__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.features__item {
    display: flex;
    align-items: center;
    flex-basis: 600px;
    gap: 10px;
    margin-bottom: 20px;
}

.features__icon {
    width: 72px;
    height: 72px;
    margin-right: 48px;
}

.features__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features__title {
    font-size: 24px;
    font-weight: 700;
}

.features__description {
    font-size: 20px;
    line-height: 32px;
}

/* slider */

.slider {
    padding-top: 250px;
    position: relative;
}

.slider .section__heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.slider__pencil_right,
.slider__pencil_left {
    position: absolute;
    top: 100px;
}

.slider__pencil_left {
    left: 0;
}

.slider__pencil_right {
    right: 0;
}

.slider__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    padding: 40px;
}

.slider__title {
    font-size: 36px;
    font-weight: bold;
}

.slider__container {
    width: 80%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.slider__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.slider__scroll {
    margin-bottom: 80px;
}

.slider__slide {
    border-radius: 16px;
    background: linear-gradient(0deg, #605CFF 0%, #605CFF 100%), #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.30);
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.slider__slide_head {
    display: flex;
}

.slider__img {
    height: 54px;
    width: 54px;
    margin-right: 20px;
}

.slider__quote {
    line-height: 22.4px;
}

.slider__name {
    font-size: 24px;
    margin-bottom: 4px;
}

.slider__status {
    font-size: 16px;
    font-weight: 400;
}

.slider__tail {
    position: absolute;
    bottom: -26px;
    left: 36px;
}

.green .slider__tail path {
    fill: var(--green) !important;
}

.orange .slider__tail path {
    fill: var(--orange) !important;
}

.lavand .slider__tail path {
    fill: var(--lavand) !important;
}

.slider__cta {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 32px;
}

.slider__button {
    font-size: 16px;
    color: var(--white);
    width: 300px;
}

.slider__button_prev {
    left: 10px;
}

.slider__button_next {
    right: 10px;
}


/* faq */

.footer {
    padding-top: 60px;
}

.faq__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px auto;
}

.faq__info {
    flex: 1;
    flex-basis: 580px;
}

.faq__image {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
    margin-bottom: 40px;
}

.faq__text {
    max-width: 400px;
}

.faq__title {
    margin-bottom: 10px;
}

.faq__description {
    font-size: 20px;
    color: #666;
}

.faq__answers {
    flex: 1;
    flex-basis: 770px;
}

.faq__question {
    margin-bottom: 30px;
    position: relative;
}

.faq__question-title {
    font-size: 18px;
    cursor: pointer;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.faq__question-title span {
    margin-right: 20px;
}

.faq__question-title span::after {
    content: '|';
    margin-left: 20px;
}

.faq__answer {
    display: none;
    margin-top: 10px;
}

.faq__answer p {
    font-size: 18px;
    line-height: 28.8px;
    color: var(--gray);
}

.faq__question.active .faq__answer {
    display: block;
}

.faq__cross,
.faq__minus {
    top: 26px;
    right: 20px;
    transform: translate(0, -50%);
    position: absolute;
}

.faq__minus {
    display: none;
}

.faq__question.active .faq__minus {
    display: block;
}

.faq__question.active .faq__cross {
    display: none;
}

/* footer */

.footer {
    background-color: #1C2669;
    color: white;
    /* align-items: center; */

}

.footer__block {
    display: flex;
    justify-content: flex-start;
}

.footer__column {
    margin-right: 160px;
}

.footer__column:last-child {
    margin-left: auto;
    margin-right: 0;
}

footer p,
.footer p {
    color: white;
}

.footer__column * {
    margin-bottom: 20px;
}

.footer__logo {
    max-width: 100%;
    height: auto;
}

.footer__title {
    margin-bottom: 10px;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__item {
    margin-bottom: 12px;
    line-height: 28.8px;
}

.footer__link {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.footer__social-icons img {
    width: 24px;
    height: 24px;
    margin: 5px;
}


.cookie__wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2000;
}

.cookie__content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    background-color: #605CFF;
    border-radius: 8px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    padding: 18px 24px;
}

.cookie__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cookie__head h2 {
    color: var(--white);
    font-size: 18px;
    line-height: 20px;
}

.cookie__body p {
    color: var(--white);
    font-size: 14px;
}

.cookie__btn {
    padding-top: 0px;
    padding-bottom: 0px;
    height: 30px;
}

.modal__wrapper.active {
    display: block;
}

.modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal__wrapper .banner__form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    padding: 18px 24px;
    width: 360px;
    height: 600px;
    box-sizing: border-box;
}

.banner__form textarea {
    resize: none;
    height: 80px;
    margin-bottom: 20px;
}

.modal__wrapper .banner__form button {
    /* margin-bottom: 20px; */
}

.modal__wrapper .banner__heading {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 34px;
}

.modal__wrapper .banner__subheading {
    margin-bottom: 20px;
}

.modal__btn {
    position: absolute;
    background: transparent !important;
    top: 16px;
    right: 24px;
}

.success__wrapper.active {
    display: block;
}

.success__wrapper {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.success__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(#563BFF 60%, #52A9FF);
    border-radius: 8px;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.2);
    padding: 40px 24px;
    width: 360px;
    height: 600px;
    box-sizing: border-box;
}

.success__content * {
    color: var(--white)
}

.success__heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.success__heading h2 {
    font-size: 24px;
}

.success__heading button {
    /* width: 20px; */
    padding: 10px;
    box-sizing: border-box;
    background: transparent !important;
}

.success__body {
    border-top: 1px dashed var(--white);
    border-bottom: 1px dashed var(--white);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.success__body p {
    font-size: 16px;
}

.success__social {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.success__social a {
    /* width: 96px; */
    flex-grow: 1;
}

.success__social button {
    width: 100%;
}

.success__copy {
    background-color: var(--white);
    height: 44px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 8px 16px;
}

.success__copy p {
    color: #0D43B2;
    font-size: 14px;
}

@media screen and (max-width:1450px) {
    .container {
        width: 1170px;
    }

    .header__text {
        flex-basis: 500px;
    }

    .header__image {
        flex-basis: 750px;
    }

    .benefits__list {
        gap: 15px;
    }

    .banner {
        background-size: cover;
    }

    .benefits__item {
        flex-basis: 400px;
    }

    .banner__form {
        width: 50%;
    }

    .features__item {
        flex-basis: 500px;
    }
}

@media screen and (max-width:1200px) {
    .container {
        width: 960px;
    }

    .header {
        flex-direction: column-reverse;
    }

    .header__image {
        flex-basis: 500px;
    }

    .header__image_phone {
        display: none;
    }

    .info__text {
        padding: 0;
    }

    .info__img img {
        width: 100%;
    }

    .benefits__item {
        flex-basis: 300px;
    }

    .benefits__icon,
    .benefits__icon img {
        width: 48px;
        height: 48px;
        margin: 0;
    }

    .banner__image {
        width: 50%;
    }

    .steps__item {
        gap: 50px;
    }

    .features__item {
        flex-basis: 400px;
    }

    .footer__column {
        margin-right: 100px;
    }
}

@media screen and (max-width:992px) {
    .container {
        width: 750px;
    }

    .nav__logo img {
        height: 28px;
    }

    .nav__toggler {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent !important;
    }

    .nav__icon {
        /* width: 40px;
            height: 40px; */
    }

    .nav__icon.active {
        display: none;
    }

    .nav__descriptions {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .nav__list,
    .nav__descriptions {
        display: none;
    }


    .nav {
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    nav.active {
        /* position: static; */
        height: 100vh;
    }

    nav.active .nav {
        position: absolute;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        box-sizing: border-box;
        padding: 20px;
        width: 100%;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1000;
        background-color: #1C2669;
        gap: 20px;
    }

    nav.active .nav .nav__list,
    nav.active .nav .nav__descriptions {
        display: flex;
    }

    nav.active .nav .nav__list {
        padding-top: 20px;
        gap: 15px;
        width: 100%;
        border-top: 1px solid var(--white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }


    nav.active .nav .nav__icon.active {
        display: block;
    }

    nav.active .nav .nav__icon {
        display: none;
    }

    .nav__descriptions .footer__social-icons {
        margin-bottom: 20px;
    }

    .nav__btn {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .benefits__image {
        display: none;
    }

    .benefits__list {
        width: 100%;
        justify-content: center;
    }

    .banner__image {
        padding-right: 0;
    }

    .banner__image {
        text-align: center;
    }

    .banner__image img {
        display: none;
    }

    .banner__text {
        margin-top: 100px;
    }

    .banner__form {
        width: 100%;
        padding: 24px;
    }

    .steps__item {
        flex-direction: row !important;
        gap: 48px;
        margin-bottom: 0 !important;
    }

    .steps__image {
        display: none;
    }

    .features__list {
        justify-content: center;
    }

    .slider__pencil_left {
        left: -350px;
    }

    .slider__pencil_right {
        right: -350px;
    }

    .slider__btns {
        display: none;
    }

}

@media screen and (max-width:768px) {
    .container {
        width: 550px;
    }

    .info__block {
        flex-direction: column-reverse !important;
    }

    .benefits__item {
        flex-basis: 250px;
    }

    .faq__block {
        flex-direction: column;
    }

    .faq__info {
        flex-basis: auto;
        margin-bottom: 20px;
    }

    .faq__image {
        display: none;
    }

    .faq__answers {
        flex-basis: auto;
        width: 100%;
    }

    .footer__block {
        flex-direction: column;
    }

    .footer__column {
        display: flex;
        flex-direction: column;
        width: auto;
        margin: 0;
    }

    .footer__logo {
        width: 130px;
        order: 0;
    }

    .footer__column button {
        order: 1;
        width: 100%;
    }

    .footer__column p {
        order: 2;
    }

    .footer__column:not(:first-child, :last-child) {
        border-top: 1px solid var(--white);
        padding-top: 20px;
    }

    .footer__column:last-child {
        position: absolute;
        right: 20px;
    }

    footer p {
        text-align: left;
        padding: 0 20px;
    }
}

@media screen and (max-width:567px) {
    h2 {
        font-size: 20px;
        text-transform: uppercase;
        line-height: 1.6;
    }

    p {
        font-size: 16px;
    }

    button {
        font-size: 14px;
    }

    .container {
        width: 100%;
        box-sizing: border-box;
        padding-right: 20px;
        padding-left: 20px;
    }

    header {
        text-align: center;
    }

    .header__shape {
        display: none;
    }

    .header {
        padding-top: 0;
        flex-direction: column-reverse;
    }

    .header__text {
        flex-basis: 100%;
        padding: 0;
    }

    h1.header__title {
        font-size: 24px;
    }

    .header__image {
        height: auto;
        width: 100%;
        flex-basis: auto;
        margin-bottom: 20px;
    }

    img.header__image_girls {
        position: static;
        width: 100%;
    }

    .header__image_phone {
        display: none;
    }

    .info {
        padding-bottom: 80px;
    }

    .info__block:not(:last-child) {
        margin-bottom: 40px;
    }

    .info__img {
        width: 100%;
    }

    .info__img img {
        width: 100%;
    }

    .info__text {
        padding: 0;
    }

    .benefits {
        padding-bottom: 40px;
    }

    .benefits .section__heading {
        margin-bottom: 40px;
        text-align: left;
    }

    .benefits__list {
        width: 100%;
    }

    .benefits__icon,
    .benefits__icon img {
        height: 48px;
        width: 48px;
    }

    .benefits__title {
        font-size: 18px;
    }

    .benefits__description {
        font-size: 16px;
    }

    .banner__image {
        display: none;
    }

    .banner__form {
        width: 100%;
        padding: 24px;
    }

    .banner__heading {
        font-size: 20px;
    }

    .steps {
        padding-top: 40px;
    }

    .steps .section__heading {
        text-align: left;
    }

    .section__heading {
        margin-bottom: 40px;
    }

    .steps__block {
        padding: 0;
    }

    .steps__number span {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 26px;
    }

    .steps__content {
        width: auto;
    }

    h3.steps__text {
        font-size: 18px;
    }

    p.steps__text {
        font-size: 16px;
    }

    .steps__item:not(:last-of-type) .steps__number::before {
        bottom: 35px;
    }

    .features {
        padding-bottom: 40px;
    }

    .features__block {
        padding: 0;
    }

    .features__item {
        align-items: flex-start;
        gap: 20px;
    }

    .features__icon {
        height: 48px;
        width: 48px;
        margin-right: 0;
    }

    .features__icon img {
        height: 48px;
        width: 48px;
    }

    .features__title {
        font-size: 18px;
    }

    .features__description {
        font-size: 16px;
    }

    .faq {
        padding-bottom: 0;
    }

    .faq__info {
        margin-bottom: 24px;
        flex-basis: auto;
    }

    .faq__description {
        font-size: 16px;
    }

    .faq__answers {
        flex-basis: auto;
    }

    .faq__question-title span {
        display: none;
    }

    .footer {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .slider {
        overflow: hidden;
        padding-bottom: 40px;
    }


    .slider .section__heading {
        text-align: left;
    }


    .slider__cta {
        font-size: 16px;
    }

    .cookie__content {
        left: 20px;
        right: 20px;
        transform: none;
    }
}