/* =========================================
   AAYUSH CAR RENTAL HERO SLIDER
========================================= */

.acr-hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* =========================================
   SLIDER IMAGE
========================================= */

.acr-slider-image {

    width: 100%;

    height: 600px;

    object-fit: cover;

    object-position: center;

    display: block;
}


/* =========================================
   DARK OVERLAY
========================================= */

.acr-slider-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.58) 38%,
            rgba(0,0,0,0.15) 75%,
            rgba(0,0,0,0.05) 100%
        );

    z-index: 1;
}


/* =========================================
   CAPTION
========================================= */

.acr-caption {

    position: absolute;

    top: 50%;

    left: 0;

    right: auto;

    bottom: auto;

    transform: translateY(-50%);

    width: 100%;

    text-align: left;

    padding: 0;

    z-index: 2;
}


.acr-caption-content {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 40px;
}


/* =========================================
   SMALL TITLE
========================================= */

.acr-small-title {

    display: inline-block;

    margin-bottom: 12px;

    padding-left: 12px;

    border-left: 4px solid #e00000;

    color: #ffffff;
    
    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   MAIN TITLE
========================================= */

.acr-caption h1 {

    margin: 0 0 18px 0;

    color: #ffffff;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 52px;

    line-height: 1.12;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.acr-caption h1::first-line {

    color: #ffffff;
}


/* =========================================
   DESCRIPTION
========================================= */

.acr-caption p {

    margin: 0 0 25px 0;

    color: #ffffff;
    
    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================
   BUTTONS
========================================= */

.acr-slider-buttons {

    display: flex;

    align-items: center;

    gap: 12px;
}


.acr-btn {

    display: inline-block;

    padding: 13px 25px;

    font-family: 'Montserrat',
                 Arial,
                 sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.3s ease;
}


/* Red Button */

.acr-btn-red {

    color: #ffffff;

    background: #e00000;

    border: 2px solid #e00000;
}


.acr-btn-red:hover {

    color: #ffffff;

    background: #151515;

    border-color: #151515;

    text-decoration: none;
}


/* Outline Button */

.acr-btn-outline {

    color: #ffffff;

    background: transparent;

    border: 2px solid #ffffff;
}


.acr-btn-outline:hover {

    color: #ffffff;

    background: #e00000;

    border-color: #e00000;

    text-decoration: none;
}


/* =========================================
   INDICATORS
========================================= */

.acr-hero-slider .carousel-indicators {

    bottom: 20px;

    z-index: 5;
}


.acr-hero-slider .carousel-indicators li {

    width: 10px;

    height: 10px;

    margin: 0 4px;

    border: 2px solid #ffffff;

    background: transparent;
}


.acr-hero-slider .carousel-indicators .active {

    width: 12px;

    height: 12px;

    margin: 0 4px;

    background: #e00000;

    border-color: #e00000;
}


/* =========================================
   ARROWS
========================================= */

.acr-hero-slider .carousel-control {

    width: 70px;

    background: transparent;

    opacity: 0.8;

    z-index: 5;
}


.acr-hero-slider .carousel-control:hover {

    opacity: 1;
}


.acr-hero-slider .carousel-control .glyphicon {

    color: #ffffff;

    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .acr-slider-image {

        height: 500px;

        object-position: center;
    }


    .acr-caption {

        top: 50%;

        text-align: center;
    }


    .acr-caption-content {

        padding: 0 25px;
    }


    .acr-small-title {

        font-size: 12px;

        letter-spacing: 1.5px;
    }


    .acr-caption h1 {

        font-size: 34px;

        line-height: 1.15;
    }


    .acr-caption p {

        font-size: 14px;

        line-height: 1.6;
    }


    .acr-slider-buttons {

        justify-content: center;

        flex-wrap: wrap;
    }


    .acr-btn {

        padding: 11px 18px;

        font-size: 11px;
    }


    .acr-hero-slider .carousel-control {

        width: 45px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .acr-slider-image {

        height: 450px;
    }


    .acr-caption-content {

        padding: 0 20px;
    }


    .acr-caption h1 {

        font-size: 27px;

        line-height: 1.15;

        margin-bottom: 12px;
    }


    .acr-caption p {

        font-size: 12px;

        margin-bottom: 18px;
    }


    .acr-small-title {

        font-size: 10px;

        padding-left: 8px;
    }


    .acr-btn {

        padding: 10px 15px;

        font-size: 10px;
    }


    .acr-hero-slider .carousel-indicators {

        bottom: 8px;
    }

}