﻿/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    overflow: hidden;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

.hero-swiper2 .swiper-slide .line {
    width: 128px;
    height: 1px;
    background-color: white;
}

.slide {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

.hero-swiper2 {
    position: relative;
}

    .hero-swiper2 .swiper-slide {
        position: relative;
    }

    .hero-swiper2 .hero-overlay {
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.20) 45%, rgba(0, 0, 0, 0.55) 100% );
        pointer-events: none;
    }
