/*--------------------------------------------------------------
# Section 1
--------------------------------------------------------------*/

 

#section-1 .hero {
    height: 800px !important;
    background-size: cover !important;
    position: relative;
}

#section-1 .bg-hero-1 {
    background: url('../img/car-1.jpg') no-repeat center center;

}

#section-1 .bg-hero-2 {
    background: url('../img/car-4.jpg') no-repeat center center;

}

#section-1 .bg-hero-3 {
    background: url('../img/car-2.jpg') no-repeat center center;

}

#section-1 .black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 38%);
}

#section-1 .carousel-hero .swiper-pagination-bullet-active {
    background: var(--primary-color-rent-car) !important;
    border: none !important;
}

#section-1 .carousel-hero .swiper-pagination-bullet {
    background: transparent;
    opacity: 1 !important;
    border: 1px solid #fff;
    width: 14px;
    height: 14px;
}

#section-1 .details-hero {
    position: absolute;
    top: 36%;
    left: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#section-1 .title-slide {
    color: var(--white);
    font-family: Outfit;
    font-size: 90px;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
}

#section-1 .model-car {
    color: var(--primary-color-rent-car);
    font-family: Outfit;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    line-height: 10px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

#section-1 .name-car {
    color: var(--white);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
    text-transform: capitalize;

}

#section-1 .price-rent {
    display: flex;
    gap: 20px;
    align-items: center;
}

#section-1 .cost-rent {
    color: var(--white);
    font-family: Outfit;
    font-size: 18px;
    font-weight: 300;
    text-align: left;

}

#section-1 .cost-rent span {
    color: var(--primary-color-rent-car);
    font-size: 18px;
    font-weight: 700;
}

#section-1 .group-btn-explore {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#section-1 .group-btn-explore a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    width: 180px;
    height: 60px;
}

#section-1 .border-btn-hero-2 {
    border-radius: var(--border-radius);
    border: 1px solid var(--white)
}

#section-1 .border-btn-hero-1 {
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color-rent-car)
}

#section-1 .btn-hover-transparent:hover {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);

}

#section-1 .btn-hover-white:hover {
    background: var(--white);
    color: var(--secondary-color-rent-car);
    border: 1px solid var(--white);

}

#section-1 .btn-hover-white:hover img {
    filter: invert(100%) sepia(3%) saturate(1625%) hue-rotate(295deg) brightness(119%) contrast(100%);
}

#section-1 .btn-hover-transparent:hover img {
    filter: invert(100%) sepia(3%) saturate(1625%) hue-rotate(295deg) brightness(119%) contrast(100%);


}

@media(max-width : 1100px) {
    #section-1 .details-hero {
        width: 88%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media(max-width : 768px) {
    #section-1 .group-btn-explore {
        flex-direction: column;
    }

    #section-1 .group-btn-explore a {
        width: 100%;
    }

    #section-1 .title-slide {
        font-size: 60px;
    }
}

@media(max-width : 376px) {
    #section-1 .price-rent {
        align-items: flex-start;
        flex-direction: column;
    }

}