@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',
        sans-serif;
}

:root {
    --white: #FFFFFF;
    --off-white: #EBF5F9;
    --bg-black: #313437;
    --text-black: #333333;
    --text-gray: #818181;
    --border-gray: #c5c5c5;
    --border-blue: #70C6FF;
    --dark-blue: #1783c5;
    --light-blue: #6FD8E8;
    --slide-width: 640px;
}

html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    /* display: none; */
    width: 10px;
    background-color: #d6efff;
}

*::-webkit-scrollbar-thumb {
    width: 10px;
    background-color: #1783c5;
}

/* Hide scrollbar for IE, Edge and Firefox */
/* * { */
/* IE and Edge */
/* -ms-overflow-style: none; */
/* Firefox */
/* scrollbar-width: none; */
/* } */

/* ----------------------------------------- */

/* Custom Classes */
.flex_cc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_ccc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cnt_mx_w {
    max-width: 1300px;
    margin: 0 auto;
    display: block;
}

.img_st_1 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ----------------------------------------- */

/* image slider  */

.hero-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 100vh; */
    height: fit-content;
}


.slider_outside_div {
    width: 100%;
    /* max-width: 640px; */
    height: fit-content;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
}

.slider_inner_div {
    width: 100%;
    height: calc(75vh - 70px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;

    /* Hide the scroll bar in slider*/
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;

    scroll-behavior: smooth;

    touch-action: pan-y;
}


.slider_inner_div::-webkit-scrollbar {
    display: none;
}

.slide {
    transition: transform 0.5s;
    flex: 0 0 auto;
    /* height: fit-content; */
    height: 100%;
    width: 100%;
    position: relative;
    /* transform: translateX(-30px); */
}

.slide_image {
    height: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}




/* Slider Btns */
.slider_btn {
    display: none;
    position: absolute;
    top: calc(50% - 15px);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    cursor: pointer;
}

.slider_btn:hover {
    background-color: rgba(0, 0, 0, 1);
}

.slider_prev_btn {
    left: 0;
    margin-left: 8px;
}

.slider_next_btn {
    right: 0;
    margin-right: 8px;
}


/* Slider Frame Indicator Dots */

.dots_container {
    width: 100%;
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border-radius: 5px;
}

.dot {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 6px;
    border-radius: 3px;
    margin: 5px;
    transition: background-color 0.2s, width 0.2s;
}

.dot.active {
    background-color: #FFFFFF;
    width: 18px;
}



/* -------------------------------------------- */
/* Slider V-2  */
.slider_outside_div.v2 {
    /* border-radius: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider_inner_div.v2 {
    width: 100%;
    max-width: var(--slide-width);
    height: auto;
    overflow: visible;
}

.dots_container.v2 {
    bottom: 20px;
}

.slide.v2 {
    padding: 10px;
    height: fit-content;
}

.slide.v2.highlighted {
    background-color: rgb(4, 135, 241);
    border-radius: 10px;
}

.slide.v2.highlighted .testimonial {
    background-color: transparent;
    color: #FFFFFF;
    box-shadow: none;
}



/* -------------------------------------------- */

.hero_slide_div {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    justify-content: flex-start;
}

.hero_slider_content {
    max-width: 60vw;
}

.hero_slide_heading {
    color: #FFFFFF;
    font-size: 60px;
}

.hero_slider_content p {
    color: #ffffffda;
    font-size: 18px;
    margin-top: 10px;
}

.slider_cnt_btns_div {
    margin-top: 50px;
    justify-content: flex-start;
}

.slider_cnt_btns_div a {
    height: 40px;
    width: 30%;
    max-width: 200px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1783c5;
    color: #FFFFFF;
    background-color: #1783c5;
    text-decoration: none;
    border-radius: 5px;

}

.slider_cnt_btns_div a:hover {
    box-shadow: 0px 3px 10px 2px rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0px 3px 10px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 3px 10px 2px rgba(255, 255, 255, 0.5);
}

.slider_cnt_btns_div a.lite {
    background-color: transparent;
    margin-left: 10px;
}

.slider_cnt_btns_div a.lite:hover {
    background-color: #1783c5;
}

/* -------------------------------------------- */
/* -------------------------------------------- */

@media screen and (max-width:1000px) {
    .slider_inner_div {
        height: 70vh;
    }
}

@media screen and (max-width:800px) {
    .hero_slider_content {
        max-width: 80vw;
    }

    .hero_slide_heading {
        font-size: 40px;
    }
}

@media screen and (max-width:600px) {
    .hero_slider_content {
        max-width: 100vw;
    }

    .hero_slide_heading {
        font-size: 30px;
    }

    .hero_slider_content p {
        font-size: 16px;
    }

    .hero_slider_content a {
        width: 50%;
    }
}

@media screen and (max-width:400px) {
    .slider_inner_div {
        height: 80vh;
    }
}

/* ----------------------------------------- */