.vc-hero {
    position: relative;
    width: 100%;
    min-height: 840px;
    background-image: url('../assets/images/hero-l.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: end;
    padding: 60px 0;
}

.vc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vc-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-bottom: -190px;
}

.vc-hero-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
    gap: 30px;
    background: var(--primary-color);
    padding: 40px;
    border-radius: 60px;
}

.vc-hero-title {
    display: flex;
}

.vc-hero-title h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.8;
    color: var(--white-color);
    text-align: center;
}

.vc-hero-subtitle h2 {
    font-size: 50px;
    font-weight: 800;
}

.vc-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.vc-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    width: 200px;
    height: 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    opacity: 1;
}

.vc-buttons a.btn-d {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--white-color);
}

.vc-buttons a.btn-d:hover,
.vc-buttons a.btn-w:hover {
    opacity: 0.9;
}



@media (max-width: 1200px) {
    .vc-hero {
        min-height: 620px;
    }

    .vc-hero-items {
        width: 70%;
        padding: 24px;
    }

}

@media (max-width: 992px) {
    .vc-hero .container {
        margin-bottom: -150px;
    }

    .vc-hero {
        min-height: 430px;
    }

    .vc-hero-title h1 {
        font-size: 32px;
    }

    .vc-hero-items {
        border-radius: 40px;
        gap: 12px;
    }

    .vc-buttons a {
        width: 170px;
        height: 50px;
        font-size: 18px;
    }

}

@media (max-width: 768px) {
    .vc-hero .container {
        margin-bottom: -100px;
    }

    .vc-hero {
        background-image: url('../assets/images/hero-s.webp');
        padding: 0 10px 30px;
        min-height: 720px;
        align-items: end;
    }

    .vc-hero-items {
        width: 90%;
        gap: 24px;
    }

}

@media (max-width: 576px) {
    .vc-hero {
        min-height: 560px;
    }

    .vc-hero-items {
        width: 100%;
    }

    .vc-hero-title h1 {
        font-size: 24px;
    }

}

@media (max-width: 480px) {
    .vc-hero .container {
        margin-bottom: -80px;
        padding: 0 8px; 
    }

    .vc-hero-items {
        padding: 20px;
    }

    .vc-hero-title h1 {
        font-size: 22px;
    }

}

@media (max-width: 390px) {
    .vc-hero {
        min-height: 370px;
    }

    .vc-hero-items {
        padding: 20px;
        border-radius: 24px;
        gap: 12px;
    }

    .vc-hero-title h1 {
        font-size: 18px;
    }

    .vc-buttons a {
        width: 130px;
        height: 44px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .vc-hero-title h1 {
        font-size: 16px;
    }
}