.hero {
    position: relative;
    background-image: url('../images/hero-l.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    width: 100%;
    height: 40vw;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    background: url('../shape/b-shape.svg') no-repeat center bottom / contain;
    position: absolute;
    bottom: 2px;
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    z-index: -1;
}

.main-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-contents {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-main-title {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.hero-contents h1 {
    font-size: clamp(32px, 5vw, 70px);
    font-weight: 900;
    color: var(--w-color);
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-contents h2 {
    color: var(--w-color);
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.hero-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: fit-content;
    background: rgba(1, 171, 235, 0.7);
    padding: 30px 30px 40px;
    border-radius: 32px;
    margin-bottom: 100px;
}


@media (max-width: 1400px) {
    .hero {
        height: 50vw;
    }

    .hero-items {
        margin-bottom: 70px;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .hero::before {
        bottom: 1px;
    }
}

@media (max-width: 768px) {
    .hero-items {
        margin-bottom: 70px;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        background-position: 30%;
        height: 78vw;
    }

    .hero-items {
        margin-bottom: 40px;
        gap: 16px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 30%;
        height: 80vw;
    }
}

@media (max-width: 390px) {
    .hero {
        height: 90vw;
    }
}

@media (max-width: 360px) {
    .hero {
        background-position: 66%;
        height: 100vw;
    }
}