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

html {
    scroll-behavior: smooth;
}

/* Webkit Browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: grey;

    border-radius: 10px;
    border: 3px solid #e0e0e0;

}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c5b358, #b89e30);

}


html {
    scrollbar-width: thin;
    scrollbar-color: linear-gradient(45deg, #d4af37, #c5b358) #e0e0e0;

}


::-ms-scrollbar {
    width: 12px;
}

::-ms-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

::-ms-scrollbar-thumb {
    background: linear-gradient(45deg, #d4af37, #c5b358);
    border-radius: 10px;
    border: 3px solid #e0e0e0;
}

::-ms-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #c5b358, #b89e30);
}



body {
    max-width: 3000px;
    margin: 0 auto;
}



.primary_button {
    padding: var(--primary_button_padding);
    border-radius: var(--primary_button_border_radius);
    background: var(--primary_color);
    color: var(--Primary_button_text_color);
    font-family: var(--primary_button_font_family);
    font-size: var(--primary_button_font_size);
    font-weight: var(--primary_button_font-weight);
    line-height: var(--primary_button_line_height);
    letter-spacing: var(--primary_button_letter_spacing);
    text-align: var(--primary_button_text-align);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none !important;
    white-space: nowrap;
}

.primary_button a {
    text-decoration: none;
    color: #fff;
}

a {
    text-decoration: none !important;
    color: black;
}

a:hover {
    color: var(--primary_color)
}

.Primary_button_gradiant {
    background-image: linear-gradient(to right, var(--primary_button_gradiant_left), var(--primary_button_gradiant_right))
}

.light_heading {
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
}

.content_heading {
    color: #000000;
    font-size: 3rem;
    font-weight: 600;
    line-height: 62.65px;
}

.content_heading_small {
    color: #000000;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 3rem;
}

.content_heading span {
    color: #216389;
}


.content_para {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}


.fw_300 {
    font-weight: 300 !important;
}

.fw_400 {
    font-weight: 400 !important;
}

.fw_500 {
    font-weight: 500 !important;
}

.content_para_fade {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #666666;
}


.page_banner {
    width: 100%;
    /* max-width: 2100px; */
    margin: 0 auto;
}

.page_banner_container {
    position: relative;
}

.page_content {
    position: absolute;
}


.spacing_between_sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing_gap_between_sections);
}

.half_spacing_top {
    margin-top: calc(-0.5 * var(--spacing_gap_between_sections));
}

.no_spacing_top {
    margin-top: calc(-1 * var(--spacing_gap_between_sections));
}

.no_spacing_bottom {
    margin-bottom: calc(-1 * var(--spacing_gap_between_sections));
}

.no_spacing_horizontally {
    margin-top: calc(-1 * var(--spacing_gap_between_sections));
    margin-bottom: calc(-1 * var(--spacing_gap_between_sections));
}

.no_scrollbar_visible {
    scrollbar-width: none;
}

.no_scrollbar_visible::-webkit-scrollbar {
    width: 0px;
}


/* slider css */

.slider_container {
    overflow: visible;
}

#wrapper {
    width: 100%;
    margin: 0 auto;
}

.slick-slide {
    padding: 0 20px;
    /* Adjust this value to set the desired gap between slides */
}


img {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.carousel-item{
    padding:10px;
}

.carousel-control-prev{
    left: 5%;
}
.carousel-control-next{
    right: 5%;
}

@media (max-width: 767px) {
    #wrapper {
        width: 100%;
    }

}







@media (max-width:1096px) {

    .content_heading {
        color: #000000;
        font-size: 32px;
        font-weight: 600;
        line-height: 36.65px;
    }
}

@media (max-width:576px) {
    .content_heading {
        color: #000000;
        font-size: 28px;
        font-weight: 600;
        line-height: 36.65px;
    }

    .content_para {
        font-size: 16px;
        line-height: 24px;
    }

    .content_para_fade {
        font-size: 16px;
        line-height: 24px;
    }

    .modal-body {
        font-size: 14px;
    }


}





@media (min-width: 1200px) {

    .container,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1140px !important;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1200px !important;
    }
}