.hero {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}
.hero > * {
    z-index: 2;
    position: relative;
}
.hero > .hero__gradient {
    z-index: 1;
}
.hero > .hero__img {
    z-index: 0;
}
.hero_margin {
    margin-top: 80px;
    padding-top: 0;
}
.hero_big {
    padding-top: clamp(40px, 23vw, 232px);
}
.hero_big .hero__title {
    margin-top: clamp(24px, 2.8vw, 28px);
    font-size: clamp(35px, 6.4vw, 64px);
}
@media screen and (max-width: 575.98px) {
    .hero_big {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 575.98px) {
    .hero_big .hero__img {
        bottom: 40%;
    }
}
@media screen and (min-width: 575.98px) {
    .hero_big .hero__gradient {
        background: linear-gradient(180deg, rgba(19, 47, 59, 0) 0%, rgba(19, 47, 59, 0.55) 42.31%, #132F3B 86.06%);
    }
}
@media screen and (max-width: 575.98px) {
    .hero_big .hero__gradient {
        bottom: 40%;
    }
}
.hero .back {
    margin-bottom: 80px;
}
.hero__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    object-position: center center;
}
.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero__gradient {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero__title {
    color: #FFFFFF;
    font-size: clamp(35px, 7vw, 64px);
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 77px */
    letter-spacing: 0.45px;
    text-transform: uppercase;
}
.hero__subtitle {
    margin-top: clamp(24px, 3vw, 30px);
    color: #FFFFFF;
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 25px */
    margin-top: 30px;
    max-width: 710px;
}
.hero__items {
    margin-top: clamp(16px, 3vw, 20px);
    color: #FFFFFF;
    font-size: clamp(18px, 3vw, 30px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.45px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2em;
}
@media screen and (max-width: 575.98px) {
    .hero__items {
        font-weight: 500;
    }
}
.hero__items span {
    color: #4FD298;
}

.hero-reviews {
    display: grid;
    grid-template-columns: min-content auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
}
@media screen and (max-width: 575.98px) {
    .hero-reviews {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
}
.hero-reviews__avatars {
    grid-row: span 2;
    display: flex;
}
.hero-reviews__avatar {
    margin-right: -5px;
    width: clamp(25px, 3vw, 30px);
    height: clamp(25px, 3vw, 30px);
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #FFFFFF;
}
.hero-reviews__avatar:last-child {
    margin-right: 0;
}
.hero-reviews__avatar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero-reviews__rate {
    color: #FFAE00;
    font-size: clamp(12px, 1.4vw, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.hero-reviews__stars {
    letter-spacing: 2px;
}
.hero-reviews__text {
    color: #EDEDED;
    font-size: clamp(15pxpx, 1.8pxvw, 18pxpx);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.hero-form {
    margin-top: clamp(36px, 5.4vw, 54px);
    border-radius: 12px;
    background: #FFFFFF;
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    justify-content: space-between;
    gap: clamp(16px, 6vw, 60px);
}
@media screen and (max-width: 991.98px) {
    .hero-form {
        flex-direction: column;
    }
}
.hero-form__left {
    flex: 0 1 437px;
}
@media screen and (max-width: 991.98px) {
    .hero-form__left {
        flex: unset;
    }
}
.hero-form__title {
    color: #132F3B;
    font-size: 28px;
    font-size: clamp(16px, 2.5vw, 25px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 33.6px */
    text-transform: uppercase;
}
.hero-form__subtitle {
    margin-top: 15px;
    color: #132F3B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 17.6px */
}
.hero-form__right {
    flex: 0 1 720px;
}
@media screen and (max-width: 991.98px) {
    .hero-form__right {
        flex: unset;
    }
}
.hero-form__fields {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.hero-form__fields > * {
    flex: 0 0 calc(50% - 10px);
}
@media screen and (max-width: 575.98px) {
    .hero-form__fields {
        row-gap: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-form__fields > * {
        flex: 0 0 calc(100% - 0px);
    }
}
.hero-form__fields input {
    max-width: 350px;
}
@media screen and (max-width: 575.98px) {
    .hero-form__fields input {
        max-width: 100%;
    }
}
.hero-form__submit {
    margin-top: 30px;
}
@media screen and (max-width: 575.98px) {
    .hero-form__submit {
        width: 100%;
    }
}
.hero-form__confirm .wpcf7-list-item > label {
    margin-top: clamp(10px, 2vw, 16px);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6E6E6E;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}
.hero-form__confirm p, .hero-form__confirm .wpcf7-list-item-label {
    margin-top: 3px;
    max-width: 328px;
}
.hero-form__confirm a {
    text-decoration: underline;
}
.hero-form__confirm .wpcf7-form-control-wrap,
.hero-form__confirm .wpcf7-form-control,
.hero-form__confirm .wpcf7-list-item {
    display: contents;
}
.hero-form__confirm input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.hero-form__confirm input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #132F3B;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
}
.hero-form__confirm input[type="checkbox"]::before {
    content: "";
    opacity: 0;
    position: absolute;
    inset: 4px;
    border-radius: 2px;
    background: #132F3B;
}
.hero-form__confirm input[type="checkbox"]:checked::before {
    opacity: 1;
}
