body {
    padding-top: 86px !important;
}

.section .container {
    max-width: 1400px;
    /*padding: 0 40px;*/
    padding: 0;
}

.section {
    margin-bottom: 80px;
}


.hero-section {
    position: relative;
    overflow: hidden;
}

.floating-left,
.floating-right {
    position: absolute;
    top: 0;
    z-index: -1;
    pointer-events: none;
    animation: floatY 10s ease-in-out infinite;
}

.floating-left-mobile, .floating-right-mobile {
    display: none;
}

.floating-left {
    left: -30%;
    animation-delay: 0s;
}

.floating-right {
    right: -30%;
    animation-delay: 3s; /* половина періоду — створює протифазу */
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(-300px);
    }
    50% {
        transform: translateY(40%);
    }
}


.hero-section__inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 80px;
    border-radius: 24px;
    background: #ffffff;

    /* Shadow */
    box-shadow: 0 4px 38px 0 rgba(156, 25, 206, 0.10);
}

.hero-section__inner > div {
    width: 50%;
    flex-basis: 50%;
}

.hero-section__cnt {
    padding: 60px;
}

.hero-section__cnt > .title {
    max-width: 926px;
    margin: 0 auto 60px;
}

.hero-section__inner .items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-section__inner .items:last-of-type {
    margin-bottom: 0;
}

.hero-section__inner .item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.hero-section__inner .item .title {
    margin: 4px 0;
    min-width: 80px;
    color: #778FA4;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
}

.hero-section__inner .item .text {
    max-width: 400px;
    font-weight: 400;
}


.hero-section-form__inner {
    display: flex;
    gap: 40px;
}

.hero-section-form__inner > div {
    width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
}

.hero-section-form__cnt {
    padding: 60px;
    border-radius: 24px;
    background: #EEEFFF;
}

.hero-section-form__cnt .title {
    max-width: 450px;
    margin-bottom: 20px;
}

.hero-section-form__inner .feedback.form {
    width: calc(50% - 20px);
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
}

.hero-section-form__inner .feedback.form label {
    background: #ffffff;
}

.hero-section-form__inner .feedback.form .input,
.hero-section-form__inner .feedback.form .textarea {
    color: #778FA4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */

    border-radius: 6px;
    border: 1px solid #CEDAE6;
}


.hero-section-form__inner .feedback.form .input::-webkit-input-placeholder, /* Chrome/Opera/Safari */
.hero-section-form__inner .feedback.form .textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CEDAE6;
}

.hero-section-form__inner .feedback.form .input::-moz-placeholder, /* Firefox 19+ */
.hero-section-form__inner .feedback.form .textarea::-moz-placeholder { /* Firefox 19+ */
    color: #CEDAE6;
}

.hero-section-form__inner .feedback.form .input:-ms-input-placeholder, /* IE 10+ */
.hero-section-form__inner .feedback.form .textarea:-ms-input-placeholder { /* IE 10+ */
    color: #CEDAE6;
}

.hero-section-form__inner .feedback.form .input:-moz-placeholder, /* Firefox 18- */
.hero-section-form__inner .feedback.form .textarea:-moz-placeholder { /* Firefox 18- */
    color: #CEDAE6;
}


.hero-section-form__inner .feedback.form .checkbox + .span-checkbox {
    border: 1px solid #CEDAE6;
}

.hero-section-form__inner .feedback.form .checkbox:checked + span.span-checkbox {
    background-image: url(../images/icons/check.svg);
}


@media (max-width: 1365px) {
    .hero-section__inner {
        flex-direction: column-reverse;
    }
    .hero-section__inner > div {
        width: 100%;
        flex-basis: 100%;
    }
    .hero-section__img img {
        width: 100%;
    }

    .hero-section__inner .items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero-section__inner .item .text {
        max-width: 100%;
    }

    .hero-section-form__inner {
        flex-direction: column;
    }

    .hero-section-form__inner > div,
    .hero-section-form__inner .feedback.form {
        width: 100%;
        flex-basis: 100%;
    }
}


@media (max-width: 990px) {
    .hero-section__inner .item .title {
        margin: 0;
    }

    .hero-section__inner .item .text {
        font-size: 20px;
        line-height: 28px;
    }
}



@media (max-width: 767px) {
    .hero-section .container {
        padding: 0;
    }
    .hero-section__inner {
        margin-bottom: 40px;
        border-radius: 0;
    }
    .hero-section__inner .items {
        flex-direction: column;
        gap: 30px;
    }
    .hero-section__inner .items:last-of-type {
        margin-bottom: 0;
    }
    .hero-section__cnt {
        padding: 20px;
    }
    .hero-section__inner .item {
        flex-direction: column;
        gap: 8px;
    }
    .hero-section__cnt > .title {
        margin: 0 auto 30px;
    }

    .hero-section-form__cnt {
        padding: 20px;
        border-radius: 0;
    }
    .hero-section-form__inner .feedback.form {
        padding: 40px 20px;
        border-radius: 0;
    }
    .hero-section-form__inner .feedback.form .form__checkbox {
        margin: 32px 0 22px;
    }
    .hero-section-form__inner .feedback.form .form__button .btn {
        width: max-content;
    }
}
