@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth !important;
    scroll-padding-top: 130px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
    color: var(--black-color);
    background-color: var(--light-color);
}

:root {
    --primary-color: #FFCF53;
    --secondary-color: #3D6080;
    --black-color: #000000;
    --light-color: #FFFAFA;
    --section-space: 80px;
    --container-space: 8%;
}

@media(max-width:1599px) {
    :root {
        --container-space: 2%;
    }
}

@media(max-width:991px) {
    :root {
        --container-space: 1%;
    }
}

@media(max-width:767px) {
    :root {
        --section-space: 50px;
        --container-space: 8px;
    }
   
}



/* colors */

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-white {
    color: var(--light-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-grey {
    color: var(--text-grey);
}

.text-dark {
    color: var(--text-dark) !important;
}

.bg-light {
    background-color: rgba(1, 34, 105, .1) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}


/* font-family */
.fancy-font {
    font-family: "Bebas Neue", sans-serif;
}


/* Font-weight */
.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.font-24{
    font-size: 24px;
}

.font-22{
    font-size: 22px !important;
}

/* Spacing */
.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.mt-50 {
    margin-top: 50px;
}

/* Extra-css */

.z-99 {
    z-index: 99;
}

.form-control {
    padding: 8px 15px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #747474;
}

.form-control:focus {
    box-shadow: none;
    border: none;
}

.form-select {
    color: #747474;
}

.position-unset {
    position: unset !important;
}

.w-fit {
    width: fit-content;
}

/* Button-css */
.primary_btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    font-weight: 500;
    border: 0;
}

.primary_btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.primary_btn-transparent {
    background-color: transparent;
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    border: 2px solid var(--light-color);
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    font-weight: 500;
}

.primary_btn-transparent:hover {
    background-color: var(--secondary-color) !important;
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
}


.header_fixed .primary_btn:hover {
    background-color: var(--light-color) !important;
    color: var(--secondary-color);
}

/* Header-css */
.header .navbar-nav .nav-link {
    color: var(--light-color);
    padding: 0 0px;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.header .header_nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    background-color: transparent;
    padding: 25px 0px;
    z-index: 9;
}

.header_fixed .header_nav {
    position: fixed !important;
    top: 0px;
    left: 0;
    right: 0;
    transition: 0.3s;
    background-color: var(--secondary-color);
    animation: slideDown 0.3s ease forwards;
    z-index: 999;
    box-shadow: 0 0px 25px rgb(48 51 57 / 30%);
    min-height: 120px;
    padding: 15px 0;
    align-items: center;
}

.header_fixed .header_nav .logo img {
    width: 110px;
}

.header_fixed .navbar-nav,
.header_fixed .social_media_list {
    top: 1.7rem;
}

.logo img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    gap: 3rem;
    position: relative;
    top: 3em;
}

.social_media_list {
    display: flex;
    gap: 1rem;
    position: relative;
    top: 3rem;
}

.social_media_list li {
    display: flex;
    align-items: center;
}

.social_media_list li a svg {
    fill: var(--light-color);
}

.social_media_list li a:hover svg {
    fill: var(--primary-color);
}

.social_media_list .primary_btn {
    margin-left: 20px;
}

/* Banner-start */
.home_banner_slider img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 1;
    border-radius: 40px;
    min-height: 800px;
}

.section-hero img {
    min-height: 600px;
}

.home_banner_slider {
    position: relative;
    border-radius: 40px;
}
.home_banner_slider .slick-slide {
    position: relative;
    border-radius: 40px;
}

.home_baner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    width: 100%;
}

.home_baner_content h1 {
    font-size: 65px;
    line-height: 75px;
    font-weight: 100;
    letter-spacing: 10px;
    margin: 0;
}

.home_baner_content h6 {
    font-size: 26px;
    font-weight: 300;
    margin-top: 33px;
    margin-bottom: 0;
}


.banner_button {
    margin-top: 33px;
}


/* About-us-start */
.about_section {
    padding-top: var(--section-space);
}

.section_heading {
    font-size: 120px;
    font-weight: bold;
    background: var(--Main-Gradient, linear-gradient(180deg, #3D6080 -232.75%, rgba(61, 96, 128, 0.00) 85.29%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_subheading {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 600;
    position: relative;
    top: -75px;
    margin: 0;
}

.main_section::after {
    position: absolute;
    content: '';
    height: 77px;
    border-radius: 50px;
    background-color: var(--primary-color);
    top: 100px;
    left: 0;
    right: 0;
    margin-left: var(--container-space);
    margin-right: var(--container-space);
    z-index: -1;
}

.about_us_list li {
    display: flex;
    gap: 10px;
}

.about_us_list svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.about_section img {
    margin-top: -170px;
}


/* what-we-do-section */

.what_we_do_section {
    padding-top: var(--section-space);
}

.what_we_do_start {
    background-color: var(--secondary-color);
    margin-left: var(--container-space);
    margin-right: var(--container-space);
    padding: 30px 50px 50px 50px;
    border-radius: 40px;
}

.section_heading-lg {
    font-size: 155px;
}

.what_we_do_section .section_heading-lg {
    line-height: 120px;
}

.what-we-do-content {
    border: 1px solid white;
    padding: 25px 30px;
    border-radius: 10px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what_we_do_row {
    --bs-gutter-x: 100px;
}

.homepage-ad-banner .contact_button{
    display: none !important;
}

/* Events-section */
.events {
    padding-top: var(--section-space);
}

.events-slider {
    overflow: hidden;
    /* margin:20px 0 20px 15px; */
}

/* .events-slides {
    margin-left: calc((100% - 1240px) / 3);
} */



.event-card {
    position: relative;
    color: white;
    margin: 0 30px 0 0;
    min-height: 398px;
}

.event-image img {
    border-radius: 40px;
    min-height: 398px;
    object-fit: cover;
}

.event-image::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgb(0 0 0 / 40%);
    border-radius: 40px;
}

.event-content h4 {
    font-weight: 600;
    font-size: 20px;
}

.location_icon span {
    font-weight: 500;
}

.event-content p {
    font-weight: 400;
    margin: 0;
}

.event-date h3 {
    font-size: 48px;
    font-weight: 300;
    margin: 0;
    line-height: 50px;
}

.event-date h6 {
    font-size: 18px;
    font-weight: 400;
}

.event-main_content {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.see_all_button {
    margin-top: 60px;
}

@media screen and (max-width:1200px) {
    .events-slides {
        margin-left: 0;
    }
}


/* Upcoming-events */
.event_list .event-image {
    max-height: 400px;
}

.event_list .event-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.event_list .event-main_content {
    border-radius: 30px;
    top: 20px;
    height: 90%;
    background: rgba(0, 0, 0, 0.43);
    backdrop-filter: blur(4.400000095367432px);
    left: 20px;
}

.event_list .event-date h3,
.event_list .event-content p,
.event_list .event-location span,
.event_list .event-date h6 {
    color: var(--light-color);
}

.event_list .event-date h3{
    font-weight: 400;
}

.event_list .location_icon svg,
.event-date svg {
    fill: var(--primary-color);
}

.event_list .event-content {
    margin-top: 30px;
}

.event_list .event-content h4 {
    font-size: 24px;
}

.event_list .event-content h4 {
    color: var(--primary-color);
}



/* Faq-css */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  }
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

  .accordion-button:not(.collapsed) {
    color: var(--black-color) !important;
    background-color: var(--primary-color);
    box-shadow: none;
    font-weight: 600;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-body p{
    margin: 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body{
    background-color: var(--primary-color) !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.accordion-item{
    border:none !important;
}
.accordion-button{
    background-color: var(--primary-color) !important;
    color: var(--black-color) !important;
    font-weight: 600;
    border-radius: 5px;
}



/* Become-a-sponser-css */
.sponser_card{
    background-image: url('../../images/become-a-sponser.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 40px 30px;
}

.sponser-form{
    padding: 20px 30px;
    border-radius: 24px;
}

.sponser-form .loader-icon{
    border: 3px solid var(--primary-color);
}



/* Footer-css */
.footer {
    background-color: var(--secondary-color);
    padding: 70px 0 40px 0;
}

.footer-navigation li {
    text-decoration: none;
}

.footer-navigation li a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 15px;
}

.footer-navigation li a:hover {
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.instagram_images img {
    max-width: 100px;
    max-height: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-navigation_start {
    padding-left: 25%;
}

.footer-heading {
    padding-bottom: 30px;
}

.footer-heading {
    padding-bottom: 10px;
}

.copyright p {
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px 0;
    margin: 0;
}

/* Modal-css */
.loader-icon
{
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%; 
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-body {
    text-align: center;
}
.modal-body  h3
{
    color: var(--color-primary);
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 700;
}
div#success-modal img {
    width: 250px;
    margin: 0 auto;
    text-align: center;
}
button.btn-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.modal-content {
    border-radius: 30px;
}


/* Media-quiries */
@media (max-width: 2000px) {
.slide-container{
    margin-left: 15%;
}
}
@media (min-width:1400px) and (max-width:1600px) {
    .main_section::after {
        margin-left: 2%;
        margin-right: 2%;
    }

    .home_baner_content h1 {
        font-size: 58px;
    }
}

@media (min-width: 1201px) and (max-width: 1366px) {
        .slide-container {
        margin-left: 5%;
    }
    .hero_banner_content h1 {
        font-size: 50px;
    }

    .header .navbar-nav .nav-link {
        font-size: 14px;
    }

    .navbar_right {
        gap: 2rem;
    }

    .section_heading {
        font-size: 100px;
    }

    .main_section::after {
        height: 60px;
        top: 95px;
        margin-left: 4%;
        margin-right: 4%;
    }

    .about_section img {
        margin-top: -150px;
    }

    .section_subheading {
        top: -55px;
    }

    .what-we-do-content {
        min-height: 180px;
    }

    .events-slides {
        margin-left: calc((100% - 1140px) / 3);
    }
    .home_banner_slider img {
        min-height: 700px;
    }
    .home_baner_content {
        transform: translate(-50%, -40%);
    }

}

@media (min-width: 992px) and (max-width: 1200px) {
    .header .navbar-nav .nav-link {
        padding: 0px 10px;
        font-size: 13px;
    }

    .navbar{
        padding-right: 8px;
    }

    .hero_banner_content h1 {
        font-size: 48px;
    }

    .social_media_list {
        gap: .5rem;
    }

    .social_media_list li a.primary_btn {
        font-size: 12px;
        padding: 10px 24px;
    }

    .navbar-nav {
        gap: .5rem;
    }

    .social_media_list .primary_btn {
        margin-left: 0px;
    }

    .main_section::after {
        height: 67px;
        margin-left: 1%;
        margin-right: 1%;
        top: 65px;
    }

    .section_heading {
        font-size: 90px;
    }

    .about_section img {
        margin-top: -150px;
    }

    .board-content p {
        -webkit-line-clamp: 3 !important;

    }
    
    .what_we_do_start {
        margin-left: 1%;
        margin-right: 1%;
    }
    .what-we-do-content{
        min-height: 180px;
    }

    .home_banner_slider img {
        min-height: 650px;
    }
    .home_baner_content h1 {
        font-size: 48px;
        line-height: 65px;
        letter-spacing: 5px;
    }
    .home_baner_content {
        transform: translate(-50%, -40%);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mobile_fixed{
        position: fixed !important;
        top: 10px !important;
        z-index: 9999 !important;
        width: 94% !important;
        padding: 10px 10px !important;
        left: 0;
        right: 0;
        background-color: #3d6080;
        margin: 0 auto;
        border-radius: 20px;
    }
    .mobile-header {
        position: absolute;
        top: 30px;
        z-index: 9;
        width: 100%;
        padding: 0 5px;
    }

    .mobile-navigation li a {
        font-weight: 500;
        color: var(--light-color);
        font-size: 18px;
    }

    .mobile-navigation li a:hover, .mobile-navigation li a.active {
        color: var(--primary-color);
    }

    .btn-close {
        opacity: 1 !important;
        font-size: 10px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: relative;
        top: 5px;
        right: 5px;
    }


    .mobile-social-media li svg {
        fill: var(--light-color) !important;
    }

    .mobile-social-media {
        position: unset !important;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .social_media {
        margin-top: 10px !important;
    }

    .hero_banner {
        background-color: var(--primary-color);
        background-image: none;
        min-height: 680px;
    }

    .home_baner_content h1 {
        font-size: 48px;
        line-height: 60px;
        letter-spacing: 5px;
    }

    .hero_banner_content {
        padding-top: 25%;
        padding-right: 10%;
    }

    .header_fixed .header_nav {
        max-width: 95%;
        margin: 0 auto;
        top: 20px;
    }

    .offcanvas {
        background-color: var(--secondary-color) !important;
        z-index: 9999;
    }

    .main_section::after {
        height: 67px;
        margin-left: 1%;
        margin-right: 1%;
        top: 50px;
    }

    .section_subheading {
        font-size: 28px;
        top: -60px;
    }

    .home_baner_content h6 {
        font-size: 24px;
        margin-bottom: 0;
        line-height: 35px;
    }

    .what_we_do_start {
        margin-left: 1%;
        margin-right: 1%;
        padding: 30px 25px;
    }

    .section_heading-lg {
        font-size: 100px !important;
    }

    .what_we_do_section .section_heading-lg {
        line-height: 100px;
    }

    .about_section img {
        margin-top: -50px !important;
        max-height: 700px;
        width: 94%;
        object-fit: cover;
        border-radius: 40px;
        object-position: center;
    }

    .what_we_do_row {
        --bs-gutter-x: 50px;
    }

    .what-we-do-content {
        min-height: fit-content;
    }

    .footer-navigation_start {
        padding-left: 0%;
    }

    .section_heading {
        font-size: 70px;
    }

    .event-main_content {
        padding: 30px 15px;
    }

    .event-image img,
    .event-card {
        min-height: 360px;
    }

    .event-main_content {
        gap: .5rem;
    }
    .event_list .event-main_content{
        padding: 20px;
    }
    .about_right_image{
        text-align: center;
    }
    .home_banner_slider img {
        min-height: 700px;
    }
    button.btn-close {
        width: 10px !important;
        height: 10px !important;
        position: absolute;
        right: 30px !important;
        top: 30px !important;
        outline: 0 !important;
        box-shadow: none !important;
    }
    .mobile-navigation li a.primary_btn {
        border: 1px solid var(--primary-color);
    }

    .mobile-navigation li a.primary_btn:hover {
        background-color: transparent;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }
    .event-card {
        margin: 0px 30px 0 3px;
    }
    .instagram_images img {
        max-width: 150px;
    }
}

@media (min-width: 600px) and (max-width: 615px) {
    .hero_banner {
        background-color: var(--primary-color);
        background-image: none;
        min-height: fit-content;
        padding-bottom: 50px;
    }

    .hero_banner_content {
        padding-top: 0% !important;
    }
}

@media (max-width: 767px) {
    body{
        overflow-x: hidden;
    }
    .review-slider .slick-next, .review-slider .slick-prev, .board-slider .slick-next, .board-slider .slick-prev {
       display: none !important;
    }
    .mobile_fixed{
        position: fixed !important;
        top: 10px !important;
        z-index: 9999 !important;
        width: 94% !important;
        padding: 10px 10px !important;
        left: 0;
        right: 0;
        background-color: #3d6080;
        margin: 0 auto;
        border-radius: 20px;
    }
    .home_baner_content h1 {
        font-size: 32px;
        line-height: 50px;
        font-weight: 100;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

    .mobile-logo img {
        width: 60%;
    }

    .about_right_image{
        text-align: center;
    }

    .mobile-header svg {
        width: 30px;
    }

    .home_baner_content h6 {
        font-size: 18px;
        line-height: 30px;
        margin: 0;
    }

    .mobile-header {
        position: absolute;
        top: 40px;
        z-index: 9;
        width: 100%;
        padding: 0 10px;
    }

    .mobile-navigation li a {
        font-weight: 500;
        color: var(--light-color);
        font-size: 16px;
    }

    .mobile-navigation li a.primary_btn {
        border: 1px solid var(--primary-color);
    }

    .mobile-navigation li a.primary_btn:hover {
        background-color: transparent;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

    .home_banner_slider img {
        border-radius: 20px;
        min-height: 680px;
    }
    .home_baner_content {
        transform: translate(-50%, -50%);
    }
    .section-hero img {
        min-height: 500px;
    }
    .instagram_images img {
        max-width: 150px;
    }
    .see_all_button {
        margin-top: 50px;
    }
    .mobile-navigation li a:hover {
        color: var(--primary-color);
    }

    .mobile-navigation li a.active{
        color:var(--primary-color);
    }

    .btn-close {
        opacity: 1 !important;
        font-size: 10px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: relative;
        top: 5px;
        right: 5px;
    }

    .mobile-social-media li svg {
        fill: var(--light-color) !important;
    }

    .mobile-social-media {
        position: unset !important;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .logo img {
        height: 40px;
    }

    .hero_banner {
        background-color: var(--primary-color);
        background-image: none;
        min-height: fit-content;
        padding-bottom: 50px;
    }

    .hero_banner_content {
        padding-top: 45%;
        padding-right: 0%;
    }

    .primary_btn {
        display: inline-block;
    }

    .offcanvas {
        background-color: var(--secondary-color) !important;
        z-index: 9999;
    }

    .hero_banner_content h1 {
        font-size: 26px;
        font-weight: 600;
    }

    .home_baner_content {
        padding: 0 15px;
    }

    .hero_banner_content h6 {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-navigation_start {
        padding-left: 0%;
    }

    .section_heading {
        font-size: 35px;
    }

    .event-card {
        margin: 0 15px !important;
        margin-right: unset;
    }

    .main_section::after {
        height: 44px;
        top: 45px;
        left: 0;
        right: 0;
        margin-left: 0%;
        margin-right: 0%;
    }

    .section_subheading {
        font-size: 26px;
        top: -20px;
    }

    .about_section img {
        margin-top: -10px !important;
        max-height: 700px;
        width: 94%;
        object-fit: cover;
        border-radius: 40px;
        object-position: center;
    }

    .what_we_do_start {
        margin-left: 1%;
        margin-right: 1%;
        padding: 30px 10px;
    }

    .what_we_do_section .section_heading-lg {
        line-height: 40px;
        font-size: 48px;
    }

    .what_we_do_row {
        --bs-gutter-x: 0;
    }
    .event_list .event-main_content {
        top: 10px;
        left: 10px;
        right: 10px;
        height: fit-content;
    }
    .event_list .event-image img, .event_list .event-image {
        max-height: 600px;
        height: 600px;
    }
    .event_date_list{
        flex-direction: column;
        gap: 1rem;
    }
    .event_list .event-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .sponser_card {
        padding: 40px 10px;
    }
    .sponser-form {
        padding: 20px 20px;
    }
    button.btn-close {
        width: 10px !important;
        height: 10px !important;
        position: absolute;
        right: 30px !important;
        top: 30px !important;
        outline: 0 !important;
        box-shadow: none !important;
    }
}




/******* GDS********/


.section-divider {
    padding-top: var(--section-space);
}

.section-m-divider {
    margin-top: var(--section-space);
}

.row-space {
    margin-top: 30px;
}
.row-bottom-space
{
    margin-bottom:30px;
}



/** ADS Banner ***/
.com-banner {
    background: url('../../images/com-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    line-height: normal;
}

.com-banner-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px
}

.com-banner-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 40px
}

.com-banner-content p {
    font-size: 18px;
    margin: 0;
    margin-bottom: 30px
}

@media (max-width:991px) {
    .com-banner-content h3 {
        margin-bottom: 12px
    }

    .com-banner-content h4 {
        margin-bottom: 30px
    }

    .com-banner-content p {

        margin-bottom: 25px
    }


}

@media (max-width:767px) {
    .com-banner-content h3 {
        font-size: 22px;
    }

    .com-banner-content h4 {
        font-size: 18px;
    }

    .com-banner-content p {
        font-size: 14px;
    }

    .com-banner {
        padding: 80px 0;
    }
}


/** ADS Banner END ***/


/***** Become a member ******/
.member-bg-card {
    background: var(--primary-color);
    margin-left: var(--container-space);
    margin-right: var(--container-space);
    border-radius: 20px;
    padding: 40px 10px;
}

.member-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.member-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px
}

.member-content p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 400;
}

.ut-padding-right {
    padding-right: 70px;
}

.member-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.member-content ul li {
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
}

.member-content ul li:before {
    position: absolute;
    content: url('../../images/list-icon.svg');
    left: 0;
    top: 0;
    bottom: 0;
}


.section-member .form-control {
    padding: 0px 15px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #747474;
    height: 46px;
    
}

.form-textarea {
    height: 130px !important;
    padding: 10px 15px !important;
}

.secondary_btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: 0.5s ease-in-out;
    border:2px solid var(--secondary-color) !important;
    font-weight: 500;
}

.secondary_btn:hover{
    background-color: transparent;
    border:2px solid var(--secondary-color) !important;
    color:var(--secondary-color);
}

.text-semibold {
    font-weight: 600 !important;
}

/* .secondary_btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
} */

.member-content .contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-content .contact-info a:hover {
    color: var(--primary-color);
}

.section-member .member-content p {
    margin-bottom: 20px;
}

.contact-form input.form-control,
.contact-form .form-textarea {
    border: 1px solid rgba(0, 0, 0, 10%) !important;
}


.section-hero .home_baner_content
{
    margin-top: 30px;
}
.about_content
{
    padding-right: 50px;
}


@media(max-width:767px) {
    .ut-padding-right {
        padding-right: 0px;
    }

    .member-content h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .member-content h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .member-content h5 {
        font-size: 18px;
        margin-bottom: 15px
    }

    .member-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .member-content ul li {
        font-size: 14px;
    }

}




 /*****Become a member ******/


 .board-card {
    /* width: calc(100% - 30px); */
    width: 100%;
    position: relative;
    min-height: 280px;
    color: var(--secondary-color);
    /* background: rgba(255, 207, 83, 60%); */
    border-radius: 30px;
    padding: 30px 20px;
    border:10px solid white;
}

.board-card img {
    position: absolute;
    opacity: 1;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.img-bg-layer {
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 207, 83, 60%);
    z-index: 9; 
}
.board-content
{    
    position: relative;
    z-index: 10; 
    height: 100%;
   
}
.board-content h3 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

.board-content h4 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
}
.board-content p {
    margin-bottom: 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.divider-line
{
    background: var(--primary-color);
    height: 4px;
    width: 60%;
    margin: 0 auto;
}
.bottom-space
{
    margin-bottom: 30px;
}

.section-board   .board-card {
    width: 100% 
}

@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .logo-slider {
    height: fit-content;
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
  .logo-slider::before, .logo-slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .logo-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .logo-slider::before {
    left: 0;
    top: 0;
  }
  .logo-slider .logo-track{
    -webkit-animation: scroll 20s linear infinite;
            animation: scroll 20s linear infinite;
    display: flex;
    width: calc(250px * 24);
  }
  .logo-slider .logo-img {
    height: fit-content;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Slider-css */
@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    /* background: white; */
    height: fit-content;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .slider::before, .slider::after {
    /* background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%); */
    content: "";
    height: fit-content;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
            animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  .slider .slide {
    height: fit-content;
    width: 250px;
  }
/* end */



@media (max-width:767px) {
    .about_content {
        padding-right: 0px;
    }
    .board-content h3 {
        font-size: 22px;
    }
    .board-content h4 {
        font-size: 18px;
    }
    .board-content p {
        font-size: 14px;
    }
    .board-card {
        min-height: auto;
    }
    .board-hero img {
        object-position: 43%;
    }
}

@media(max-width:575px)
{
    .board-card
    {
        width: 100% !important;
        border:10px solid white;
    }
}


.custom-file-upload-hidden {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
  }
  
  .custom-file-upload {
    display: block;
    width: 100%;
  }
  .custom-file-upload label {
    display: block;
    margin-bottom: 5px;
  }
  
  .file-upload-wrapper {
    position: relative;
    margin-bottom: 5px;
    display: flex;
}
  
.file-upload-input {
    width: 100%;
    color: #747474;
    font-size: 16px;
    padding: 11px 17px;
    border: none;
    background-color: white;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    float: left;
    border: 1px solid rgba(0, 0, 0, 10%) !important;
    border-radius: 0.375rem 0  0 0.375rem;
}
  .file-upload-input:hover, .file-upload-input:focus {
    background-color: white;
    outline: none;
  }
  
  .file-upload-button {
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 11px 20px;
    border: none;
    margin-left: -1px;
    background-color: white;
    float: left;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border: 1px solid rgba(0, 0, 0, 10%) !important;
    border-left: 0 !important;
    border-radius: 0px 0.375rem 0.375rem 0;
}
  .file-upload-button:hover {
    background-color: white;
  }
  