.sg-hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sg-swiper {
    width: 100%;
    height: 100%;
}

.sg-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.sg-slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.swiper-slide-active .sg-slide-bg {
    transform: scale(1);
}

.sg-slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.329);
}

.sg-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 1s ease;
}

.swiper-slide-active .sg-slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.sg-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sg-title-light {
    font-family: var(--quere-additional-font-family);
    font-weight: var(--quere-additional-font-weight);
    color: var(--quere-header-font-color);
    font-style: italic;
    color: #fff !important;
    margin: 0 0 20px;
}

.sg-title-bold {
    font-size: 70px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #fff;
}

.sg-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.sg-btn:hover {
    background: #fff;
    /* color: #000; */
}

/* Responsive */
@media(max-width: 768px) {

    .sg-title-light,
    .sg-title-bold {
        font-size: 40px;
    }
}