/* HOME-INTRO */

.home-intro {
    position: relative;
    padding: 140px 0 92px;
    z-index: 1;
    overflow: hidden;
}

.home-intro::before {
    content: '';
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.96) 0%, rgba(248, 248, 248, 0.9) 23.96%, rgba(248, 248, 248, 0.63) 81.15%, rgba(248, 248, 248, 0) 100%);
    width: 79%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.home-intro::after {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    width: 100%;
    height: 149px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.home-intro h1 {
    color: #1A1A1A;
    font-weight: 700;
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.home-intro__content {
    max-width: 732px;
}

.home-intro__sub-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 33px;
    line-height: 40px;
    color: #1A1A1A;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.home-intro__sub-title::before {
    content: '';
    width: 92px;
    height: 5px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    background-color: var(--color-accent);
}

.home-intro__benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 18px;
    margin-bottom: 40px;
}

.home-intro__benefits-list {
    width: calc(100% / 2 - 70px);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    line-height: 17px;
}

.home-intro__benefits-icon {
    width: 42px;
    min-width: 42px;
    text-align: center;
}

.form-control__wrap > p {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-bottom: 22px;
}

.home-intro__phone {
    appearance: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    height: 60px;
    width: 280px;
    padding: 21px 21px 21px 66px;
    font-size: 13px;
    line-height: 16px;
    border: 2px solid transparent;
    transition: all .3s;
}

.home-intro__phone::placeholder {
    color: #000;
}

.home-intro__form .form-control__wrap label {
    position: relative;
}

.home-intro__form .form-control__wrap label svg {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.form-control > label {
    display: flex;
    align-items: center;
    gap: 19px;
    user-select: none;
}

@media (max-width: 992px) {
    .home-intro::before {
        width: 100%;
    }
}

@media (max-width: 875px) {
    .home-intro::before {
        background: linear-gradient(90deg, rgba(248, 248, 248, 0.96) 0%, rgba(248, 248, 248, 0.9) 23.96%, rgba(248, 248, 248, 0.63) 100%, rgba(248, 248, 248, 0) 100%);
    }
}

@media (max-width: 768px) {
    .home-intro__benefits-list {
        width: calc(100% / 2 - 15px);
    }

    .home-intro h1 {
        font-size: 38px;
        line-height: 50px;
    }

    .home-intro__sub-title {
        font-size: 28px;
        line-height: 32px;
    }

    .home-intro__sub-title::before {
        width: 60px;
    }
}

@media (max-width: 620px) {
    .form-control__wrap p {
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto 22px;
    }

    label[for="home-intro__chk"] {
        max-width: 450px;
        margin: 0 auto;
    }

    .home-intro__phone {
        width: 100%;
        max-width: initial;
    }

    .home-intro__form .form-control__wrap label {
        width: 100%;
    }

    .home-intro__form .form-control > label {
        max-width: 450px;
        margin: 0 auto;
    }

    .home-intro {
        padding: 65px 0;
    }
}

@media (max-width: 480px) {
    .home-intro h1 {
        font-size: 31px;
        line-height: 41px;
    }

    .home-intro__sub-title {
        font-size: 20px;
        line-height: 24px;
    }

    .home-intro__sub-title::before {
        width: 40px;
        height: 3px;
    }

    .home-intro__benefits-list {
        width: 100%;
    }
}

/* \HOME-INTRO */
