/* 
* Section hero offer
*/

/* ! Section hero offer start */
.hero-offer {
    width: 100%;
    min-height: 806px;
    position: relative;
    padding: 80px 0;
}
.hero-offer__image,
.hero-offer__image::before {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.hero-offer__image {
    z-index: -1;
}
.hero-offer__image::before {
    content: '';
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}
.hero-offer__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-offer__info {
    width: 100%;
    max-width: 826px;
    padding: 55px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 10px;
    background: rgba(44, 44, 44, 0.2);
    backdrop-filter: blur(7.5px);
}
h1.hero-offer__title {
    width: 100%;
    margin: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);

    color: var(--white, #fff);
    font-family: var(--font-family-monserrat);
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.hero-offer__benefits {
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-offer__benefits-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1 0 0;
}
.hero-offer__benefits-item svg {
    width: 42px;
    min-width: 42px;
    height: 42px;
    aspect-ratio: 1/1;
}
.hero-offer__benefits-item p {
    margin: 0;

    color: var(--white, #fff);
    font-family: var(--font-family-monserrat);
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
}

.hero-offer__btns {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-offer__btns .hero-offer__btn {
    box-sizing: border-box;
    width: 100%;
    height: 59px;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn.hero-offer__btn.call {
    background: var(--yellow, #ffa300);
}
@media (hover: hover) {
    .btn.hero-offer__btn:hover {
        background: transparent;
        border: 1px solid #ffa300;
    }
}
.hero-offer__btn span {
    color: var(--white, #fff);
    text-align: center;
    font-family: var(--font-family-monserrat);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.1px;
    text-transform: uppercase;
}

@media screen and (width <= 991px) {
    .hero-offer {
        min-height: auto;
        padding: 60px 0;
    }
    .hero-offer__info {
        max-width: 440px;
        padding: 30px;
        gap: 20px;
    }
    h1.hero-offer__title {
        font-size: 30px;
        padding-bottom: 20px;
    }
    .hero-offer__benefits {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
        align-items: flex-start;
    }
    .hero-offer__benefits-item {
        flex-direction: row;
        align-items: center;
        flex: unset;
    }
    .hero-offer__btns {
        flex-direction: column;
    }
    .hero-offer__btns .hero-offer__btn {
        flex: unset;
    }
}
@media screen and (width <= 576px) {
    .hero-offer__info {
        padding: 20px;
    }
    h1.hero-offer__title {
        font-size: 24px;
    }
}
/* ! Section hero offer end */
