/* Reset & Box Model Fix */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body.no-scroll {
  overflow: hidden;
}

/* Font-Face Setup */

@font-face {
  font-family: 'Roboto-Thin';
  src: url("../fonts/Roboto-Thin.ttf") format('truetype');
  font-display: swap;
}  
@font-face {
  font-family: 'Roboto-Light';
  src: url("../fonts/Roboto-Light.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url("../fonts/Roboto-Regular.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url("../fonts/Roboto-Medium.ttf") format('truetype');
  font-display: swap;
}  
@font-face {
  font-family: 'Roboto-Bold';
  src: url("../fonts/Roboto-Bold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-Regular';
  src: url("../fonts/Merriweather-Regular.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather-Bold';
  src: url("../fonts/Merriweather-Bold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family:'PlayfairDisplay-Regular';
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay-Bold';
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplaySC-Regular';
  src: url("../fonts/PlayfairDisplaySC-Regular.woff") format('woff');
  font-display: swap;
}


/* Base HTML */
html {
    font-size: clamp(14px, 1.5vw, 16px);
    /* scroll-behavior: smooth; */
    font-family: Roboto-Regular !important;
    color:#363636;
}
body{
    font-size: clamp(14px, 1.5vw, 16px) !important;
    /* scroll-behavior: smooth; */
    font-family: Roboto-Regular !important;
    color:#363636 !important;
}

header {
    width: 100%;
    background: #fff;
    color: #363636;
    padding:0px 0px;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 12px #00000014;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index:99999;
}
.inner_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0 13px 0;
    transition-duration: 0.5s;
}
.top_inner_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_inner_header ul li{
    list-style-type: none;
}
.top_header .logo a{
    color: #b0373b;
    font-family: Merriweather-Regular;
    font-size: 35px;
    line-height: normal;
    text-decoration:none;
}
.logo img{
    max-height: 55px;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 27px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 14px;
    right: 10px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #102846;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

/* Transform to "X" when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.logo {
    font-size: 20px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}
/* nav ul li {
    margin-left: 20px;
} */
nav {
    background-color: #102846;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
    color: #fff;
    font-family: Roboto-Medium;
    text-transform: capitalize;
    padding: 18px 10px;
    float: left;
    transition-duration: 0.5s;
}
.dropdown_menu{
    position: relative;
    float: left;
}
.dropdown_menu .btn-secondary {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}
.dropdown_menu .btn {
    color: #fff;
}
.dropdown_menu .btn:hover {
    color: #fff;
}
.dropdown_menu .btn-check:focus+.dropdown_menu .btn, .dropdown_menu .btn:focus {
    outline: 0;
    box-shadow:none;
}
.dropdown_menu .btn{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
    color: #fff;
    font-family: Roboto-Medium;
    text-transform: capitalize;
    padding: 18px 10px;
    float: left;
    transition-duration: 0.5s;
}
.dropdown_menu .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #102846;
}
.sticky nav ul li a{
    padding: 13px 10px;
}
.sticky nav ul .dropdown_menu .btn{
    padding: 13px 10px;
    width: 100%;
}
.sticky nav ul .dropdown_menu .dropdown-item{
    padding: 5px 10px;
    width: 100%;
}
.dropdown_menu:hover .dropdown-menu{
    display:block !important;
    top: 48px;
    right: 0;
    position: absolute;
}

.sticky .top_header{
    padding: 6px 0 6px 0;
}
nav ul li a:hover {
    color: #ff9800;
}
.register_btn{
    background-color:#b0373b;
    color:#fff;
    font-size: 18px;
    padding: 6px 24px;
    line-height: normal;
    text-decoration: none;
    transition-duration:0.7s;
}
.register_btn:hover{
    color: #FFD700;
}
/* Hero Section Start */
.hero_section{
    padding: 60px 0 40px 0;
}
.banner_heading{
    color: #b0373b;
    font-family: Merriweather-Regular;
    font-size:70px;
    line-height: normal;
}
.banner_subheading{
    color:#363636;
    font-size:35px;
    font-family: Merriweather-Regular;
    padding: 5px 0 5px 0;
}
.banner_text{
    color:#363636;
    font-size:16px;
    font-family: Roboto-Regular;
}
.banner_buttons{
    display:flex;
    gap:20px;
    margin:30px 0px 10px 0px;
}
.banner_buttons a{
    background-color:#b0373b;
    font-family: 'Roboto-Bold';
    font-size:16px;
    padding:10px 25px;
    text-decoration:none;
    color:#fff;
    text-transform: uppercase;
    line-height: normal;
    transition-duration:0.5s;
}
.banner_buttons a:hover{
    background-color:transparent;
    color:#b0373b;
    border:1px solid #b0373b;
}
.red_border_btn{
    border:1px solid #b0373b;
    font-family: 'Roboto-Bold';
    color:#b0373b !important;
    background-color: transparent !important;
    transition-duration:0.5s;
}
.red_border_btn:hover{
    background-color:#b0373b !important;
    color:#fff !important;
}
.dateandvenue p{
    font-family: 'Roboto-Bold';
    color:#b0373b;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 3px 0;
}
.dateandvenue span{
    font-family: 'Roboto-Regular';
    font-size:16px;
    color:#363636;
}

/* Notification Start */
/* .announcement_section {
    position: relative;
    padding: 0px 0 25px 0;
}
.announcement_inner {
    display: flex;
    background-color: #C4161C;
}
.announcement_icon {
    padding: 0 0 0 14%;
    position: relative;
    width: 190px;
    z-index: 9;
}
.announcement_section marquee {
    color: #fff;
    padding: 17px 0px;
    line-height: normal;
}
.announcement_section::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    background-image: url(../images/announcement_bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.announcement_icon img {
    position: absolute;
    right: 0;
    z-index: 9;
    top: -35px;
    padding: 0 15px 0 0;
    max-height: 120px;
} */
.international_training_center_sec{
    padding:40px 0px;
}
.training_center_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 17px;
}
.training_center_box{
    width: 23%;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 5px 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.training_center_box img{
    max-height: 80px;
    border-radius: 10px;
}
/* .accredited_logo{
    padding:5px 0 0 0px;
} */
/* About SYMSIM Start */
.About_SYMSIM{
    padding: 40px 0px;
}
.heading{
    color:#000000;
    text-align: center;
    font-size:35px;
    position: relative;
    margin: 0 auto 40px auto;
    width: fit-content;
    font-family: PlayfairDisplay-Bold;
    text-transform: uppercase;
}
.heading::before{
    content: "";
    height: 10px;
    width: 180px;
    background-image: url(../images/left-header-img.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left:-200px;
    top: 43%;
}
.heading::after{
    content: "";
    height: 10px;
    width: 180px;
    background-image: url('../images/right-header-img.svg');
    background-position:center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right:-200px;
    top: 43%;
}
.sub_heading{
    font-size:20px;
    line-height: normal;
    font-family:Roboto-Bold;
}
.sub_heading span{
    color:#FFD700;
}
.About_SYMSIM_inner{
    /* background-color:#FAF9F6; */
    padding: 40px;
    background-image: url(../images/about-banner.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.About_SYMSIM_inner::after{
    position: absolute;
    left: 0;
    right:0px;
    top:0;
    bottom: 0;
    background-color: #000000b8;
    z-index:9;
    content: "";
}
.About_SYMSIM_inner ul li{
    list-style: none;
    background-image:url('../images/white-right-arrow.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 5px 0 5px 30px;
    color: #fff;
}
.About_SYMSIM_inner .tab-content{
    position: relative;
    z-index: 999;
}
.About_SYMSIM_inner .nav-tabs .nav-item.show .nav-link, 
.About_SYMSIM_inner.nav-tabs .nav-link.active {
    color: #FFD700;
    font-family: 'Roboto-Bold';
    background-color: #b0373b;
    border-radius: 0px;
    border-color: #b0373b #b0373b #b0373b;
    font-family: Roboto-Bold;
}
.About_SYMSIM_inner.nav-tabs .nav-link:focus, 
.About_SYMSIM_inner .nav-tabs .nav-link:hover{
    color: #FFD700;
    background-color: #b0373b;
    border-color: #b0373b #b0373b #b0373b;
    font-family: Roboto-Bold;
}
.About_SYMSIM_inner .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
    border-radius: 0px;
    font-size: 20px;
    text-transform:uppercase;
}
.About_SYMSIM_inner .nav-tabs li{
    background-image: none;
    padding: 0px 0px 0px 0px;
    width: 32%;
}
.About_SYMSIM_inner .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: space-between;
    border: none !important;
    z-index: 900;
    position: relative;
}
.tab-content .tab-pane{
    padding: 30px 0 0 0;
}
.About_SYMSIM_inner .nav-tabs .nav-item.show .nav-link,
.About_SYMSIM_inner .nav-tabs .nav-link.active {
    color: #FFD700;
    background-color: #b0373b;
    border-color: #dee2e6 #dee2e6 #fff;
    font-family: Roboto-Bold;
}
/* About Us End */
/* Conference Section Start */

.Conference_section{
    padding:40px 0px;
}
.our_event_inner{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.our_event_inner .our_event_box{
    width: 49%;
    background: #b0373b;
    padding: 20px;
    color: #fff;
    min-height: 215px;
    position: relative;
}
.our_event_inner .our_event_box::after{
    content:"";
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-image:url('../images/event-wave-design.svg');
    background-position: bottom right;
    background-size:100px;
    width: 100px;
    height:100px;
    background-repeat: no-repeat;
}
.our_event_inner .our_event_box .sub_heading{
    color: #fff;
    font-family: Roboto-Medium;
    margin: 0 0 10px 0;
}

.Conference_section .Conferenceheading{
    color:#363636;
    font-family:PlayfairDisplaySC-Regular;
    text-align: left;
    font-size:35px;
    line-height: normal;
}

/* simulation courses Start */
.simulation_courses_section{
    padding:40px 0px;
}
.simulation_courses_section .heading2{
    font-family:PlayfairDisplay-Regular;
}
.heading2{
    color:#363636;
    font-family:PlayfairDisplaySC-Regular;
    text-align: left;
    font-size: 35px;
    line-height: normal;
    margin: 0 0 20px 0;
}
.heading2 span{
    font-size:20px;
    color:#363636;
}
.workshop_box{
    background-color: #003366;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom:20px;
    min-height: 200px;
}
.workshop_box .sub_heading span{
    color:#FFD700;
}
.dr_name{
    font-size:17px;
    font-family:Roboto-Bold;
    line-height: normal;
}
.workshop_box .sub_heading p{
    font-size:16px;
    color:#fff;
}
.dr_name p{
    font-size:14px;
    color:#fff;
    font-family:Roboto-Regular;
    margin: 0px;
}
.specialized_simulations_sec{
    padding:40px 0px;
}
.specialized_simulations_sec .heading2{
    font-family:PlayfairDisplay-Regular;
}
.specialized_simulations_sec ul li{
    list-style: none;
    background-image:url('../images/red-dot.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 8px 0 8px 30px;
}
.specialized_simulations_sec ul{
    margin: 0 0 30px 0;
    padding: 0;
}






.scientific_program_section{
    padding:40px 0px;
}
.scientific_program_section .nav-tabs .nav-link{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family:Roboto-Bold;
    text-transform: uppercase;
    border-radius: 0px;
    color: #b0373b;
    border: 1px solid transparent;
    width: 100%;
}
.scientific_program_section .scientific_program_inner .nav-tabs li{
    width:32%;
}
.scientific_program_section .nav-tabs {
    border-bottom: 3px solid #000;
    justify-content: space-between;
}
.scientific_program_section .nav-tabs .nav-link span{
    font-size: 14px;
    font-family: Roboto-Medium;
    width: 100%;
    color:#000;
}
.scientific_program_section .nav-tabs .nav-link:focus span,
.scientific_program_section .nav-tabs .nav-link:hover span,
.scientific_program_section .nav-tabs .nav-link:active span{
    color:#fff !important;
}
.scientific_program_section .nav-tabs .nav-link:focus, 
.scientific_program_section .nav-tabs .nav-link:hover,
.scientific_program_section .nav-tabs .nav-link:active{
    background-color:#000000;
    color:#fff;
    border: 1px solid #000;
}
.scientific_program_section .nav-tabs .nav-item .active{
    background-color:#000000;
    color:#fff;
    border: 1px solid #000;
}
.scientific_program_section .nav-tabs .nav-item .active span{
    color:#fff;
}





.scientific_program_inner .accordion-button::after {
  background-image: url('../images/plus-icon.svg');
  transition: all 0.5s;
}
.scientific_program_inner .accordion-button:not(.collapsed)::after {
  background-image: url('../images/minus-icon.svg');
}
.scientific_program_inner .accordion-button::after {
  transition: all 0.5s;
}
.scientific_program_inner .accordion-body {
    padding: 20px 0;
}
.scientific_program_inner .accordion-button{
    color:#b0373b;
    font-family:Roboto-Bold;
    background-image:url('../images/red-dot.svg');
    background-position:left center;
    background-repeat: no-repeat;
    background-size:14px;
    padding:18px 25px;
}
.scientific_program_inner .accordion-button:not(.collapsed) {
    color:#b0373b;
    background-color:transparent;
    box-shadow: none;
}
.scientific_program_inner .accordion-button:focus {
    z-index: 3;
    border:none;
    outline: 0;
    box-shadow:none;
}
.accordion-item{
    border: none !important;
    border-bottom: 1px solid #0000009c !important;
    border-radius: 0px !important;
}
.programer_workshop_box{
    margin-bottom:25px;
    border:1px solid #b0373b;
    padding:20px;
}
.programer_workshop{
    color:#b0373b;
    font-family:Roboto-Bold;
    font-size:16px;
    margin: 0 0 13px 0;
}
.programer_name{
    color:#363636;
    font-size:16px;
    font-family:Roboto-Bold;
    text-align: end;
}
.program_topic{
    color: #b0373b;
    font-size: 16px;
    font-family: Roboto-Medium;
}
.programer_designation{
    color:#363636;
    font-size:14px;
    text-align: end;
}

/* Speakers Section Start */
.speakers_section {
    background-color:#003366;
    padding:60px 0px;
    margin: 40px 0;
}
#speakers_section{
    scroll-margin-top:90px;
}
.cardContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.speakers_card {
    margin-bottom:30px;
    display: none; /* hidden by default */
    width: 100%;
}
.speakers_card  .speakers_img img{
    max-height: 250px;
    object-fit: cover;
    min-height: 250px;
    width: 100%;
}
.speakers_card.show {
    display: block; /* visible when .show is added by JS */
}

.view_all {
    background: #fff;
    text-align: center;
    padding: 10px 60px;
    text-decoration: none;
    margin: 0 auto;
    font-family: Roboto-Bold;
    font-size: 20px;
    color: #003366;
    transition-duration:0.7s;
    display: block;
    width: fit-content;
}

.view_all:hover {
    background: #FFD700;
    color: #003366;
}

.speakers_content {
    color: #fff;
    width: 100%;
    display: flex;
    padding: 10px 0 0 0;
    flex-wrap: wrap;
}

.speakers_content .speakers_content_left {
    color:hsl(51, 100%, 50%);
    width: 100%;
    font-family:Roboto-Bold;
}

.speakers_content_right {
    font-family:Roboto-Thin;
    width: 100%;
}

.speakers_content_right span {
    text-align:start;
    width: 100%;
    float: left;
    font-size: 14px;
}

.heading_white::before {
    content: "";
    height: 10px;
    width: 180px;
    background-image: url(../images/left-white_heading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    left: -200px;
    top: 43%;
}

.heading_white::after {
    content: "";
    height: 10px;
    width: 180px;
    background-image: url(../images/right-white_heading.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: -200px;
    top: 43%;
}

/* Loader (spinner) */
.loader {
    display: none;
    margin: 20px auto;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #003366;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Speakers Section End */
.call_for_abstracts_section{
    padding:40px 0px;
}
.call_for_abstracts_inner{
    background-color:#b0373b;
    padding:0px 0px;
}

.call_abstracts_left{
    color: #fff;
    padding: 40px 0 40px 30px;
    float: left;
}
.call_abstracts_left p{
    font-family: Roboto-Light;
}
.call_abstracts_left ul{
    padding: 0 0 0 16px;
}
.call_abstracts_left ul li{
    font-family: Roboto-Light;
    font-size:14px;
    padding: 0 0 0 16px;
}
.submit_abstracts_btn {
    background-color: #FFD700;
    font-family: Roboto-Bold;
    color: #000;
    padding: 17px 45px;
    float: left;
    font-size: 25px;
    text-decoration: none;
    align-items: center;
    display: flex;
    gap: 16px;
    line-height: normal;
    border-radius: 9px;
    border: 2px solid #000;
    box-shadow: 7px 7px 0px #000;
    margin: 25px 0 0 0;
    transition-duration:0.5s;
}
.submit_abstracts_btn:hover{
    color:#000;
    text-decoration:none;
    background-color:#fff;
}
.abstracts_contact_box a{
    color:#fff;
    text-decoration:none;
}
.abstracts_contact_box a:hover{
    color:#FFD700;
}
.call_abstracts_right img{
    width: 91%;
}
.contact_form textarea{
    position: relative;
    background: none !important;
    line-height: 24px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px 10px;
    font-size:16px;
}
.contact_form .btn-primary {
    color: #fff;
    background-color: #b0373b;
    border-color: #b0373b;
    font-family: Roboto-Bold;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 18px;
    width: 100%;
}
.contact_form .btn-primary:focus,
.contact_form .btn-primary:active,
.contact_form .btn-primary:hover{
    background-color: #b0373b;
    border-color: #b0373b;
}


/* Registration & Fees Start */
.registration_fees_section{
    padding: 40px 0;
}
.registration_fees_inner{
    background: #b0373b;
    color: #fff;
    padding:50px 40px;
}
.registration_fees_inner tbody, 
.registration_fees_inner td, 
.registration_fees_inner tfoot, 
.registration_fees_inner th, 
.registration_fees_inner thead, 
.registration_fees_inner tr{
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    color: #fff;
    font-size: 14px;
    padding: 18px 0 !important;
    font-family: Roboto-Light;
}
.registration_fees_inner thead{
    border-bottom: 2px solid #fff;
}
.registration_fees_inner th{
    font-family:Roboto-Light;
}
.registration_fees_inner th:last-child{
    border:none;
}
.registration_fees_inner tr:last-child td{
    border:none;
}
.registration_fees_inner tr:last-child th{
    border:none;
    padding-bottom: 18px 0 !important;
}
.registration_fees_inner thead th{
    font-size:16px;
    font-family:Roboto-Light;
}
.registration_fees_inner td{
    font-family:Roboto-Bold;
}
.national_delegate_table{
    border: 3px solid #fff;
    padding: 5px 20px;
    width: 90%;
}
.national_delegates_box .vertical_heading{
    writing-mode: sideways-lr;
    text-transform: uppercase;
    font-size: 18px;
    font-family: Roboto-Bold;
    text-align: center;
}
.national_delegates_box{
    display: flex;
    gap: 15px;
    padding: 0 20px;
}
.pay_online{
    color: #b0373b;
    background: #fff;
    padding: 10px 130px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Roboto-Bold;
    margin: 20px 0 20px 0;
    font-size:20px;
}
.pay_online:hover{
    background-color:#FFD700;
    color: #000;
}
.registration_fees_text .contact_fee a{
    text-decoration:none;
    color:#fff;
}
/* Registration & Fees End */

.learn_about_pune_section{
    padding:40px 0px;
}
.venue_and_accommodation_section{
    padding: 40px 0px;
}
.venue_and_accommodation_section .heading2{
    font-family:PlayfairDisplay-Regular;
}
.venue_box img{
    max-height: 30px;
}
.venue_box{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}
.venue_box b{
    color:#b0373b;
}
.venue_and_accommodation_section .accommodation_inner .heading2 {
    font-family: PlayfairDisplaySC-Regular;
}
.deluxe_box{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0 0;
}
.deluxe_box p{
    margin:0;
}
.deluxe_box img{
    max-height:40px;
}
.deluxe_box b{
    color:#b0373b;
}
.learn_about_pune_inner{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
}
/* .learn_about_pune_inner::after{
    position: absolute;
    content: "";
    background-color:#00000059;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:9;
} */
.learn_about_pune_inner .heading{
    position: absolute;
    font-family:Roboto-Bold;
}



/* organizing committee Start */
.organizing_committee_section{
    padding:40px 0px;
    background-image: url(../images/organizing-committee.webp);
}
.committee_box tbody,
.committee_box td,
.committee_box tfoot,
.committee_box th,
.committee_box thead, 
.committee_box tr{
    font-family: Roboto-Regular;
    font-size: 14px;
    padding: 7px 12px;
    vertical-align: middle;

}
.organizing_committee_section .nav-tabs .nav-link{
    font-size: 20px;
}
.review_committee ul{
    margin: 0;
    padding: 0 0 0 15px;
}
.review_committee ul li{
    padding: 5px 0px 5px 0px;
}
/* Our Sponsors Start */
.our_sponsors_section{
    padding:60px 0px 90px 0px;
}
.our-sponsors-logos{
    display:flex;
    align-items: center;
    justify-content: center;
    gap:40px;
    flex-wrap: wrap;
}
.sponsors-logo_box{
    width:16%;
    text-align: center;
}
.sponsors-logo_box img{
    max-height: 70px;
}
/* Our Sponsors End */





/* Contact Us Start */
.contact_us_section{
    padding: 60px 0px 60px 0px;
}
.contactus_data{
    color:#363636;
}
.contactus_data a{
    color: #363636;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration:none;
    font-size: 14px;
}
.contactus_data a:hover{
    color: #b0373b;
}
.contactus_data .location_box{
    color:#363636;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}
.contactus_data img {
    max-width: 20px;
    min-width: 20px;
}

.contact_form{
    margin: 40px 0px 0px 0px;
}
/* Contact Us End */




/* Footer Start */
footer{
    background-color:#b0373b;
    padding:60px 0px;
}
footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0px 0 30px 0;
    padding:0px;
}
footer ul li{
    color:#fff;
    list-style-type:none;
    font-family:Roboto-Regular;
}
footer ul li a{
    color:#fff;
    list-style-type:none;
    font-family:Roboto-Regular;
    text-decoration:none;
}
footer ul li .footer_menu:hover{
    color:#FFD700;
}
.copyrighttext{
    color: #fff;
    text-align: center;
    font-family: Roboto-Light;
    font-size: 14px;
}
footer .social_media_icons ul li a{
    width: 45px;
    height: 45px;
    background: #fff;
    padding: 3px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration:0.5s;
    padding: 10px;
}
footer .social_media_icons ul li a:hover{
    background: #FFD700;
}
.conference_workshop_collapse{
    width:80%;
}
/* Footer End */


.amounttext{
    padding: 6px 28px 0 0;
}

.scientific_inner_data .table-secondary{
    background-color:#f4f4f4 !important;
}
.scientific_inner_data .table-secondary td{
    background-color: #f6f6f6 !important;
}

.contactus_data .form-control{
    padding: 10px 10px;
    font-size:16px;
}
.contactus_data .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #b0373b;
    outline: 0;
    box-shadow: 0 0 0 .10rem rgba(253, 13, 13, 0.10);
}
.contact_form textarea:focus{
    border-color: #b0373b;
    outline: 0;
    box-shadow: 0 0 0 .10rem rgba(253, 13, 13, 0.10);
}
#Call_for_Abstracts{
    scroll-margin-top:150px;
}
.video_box{
    display: flex;
    gap: 20px;
}
.video_box a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
    border: 1px solid #fff;
    margin: 30px 0 0 0;
    text-transform: capitalize;
    line-height: normal;
}
.video_box a:hover{
    background-color:#fff;
    color:#212529;
    font-family:Roboto-Regular;
}


/* Inner Page Start */
.inner_page_herosec{
    padding: 0px 0px;
    text-align: center;
    font-size: 35px;
    font-family: Merriweather-Bold;
    text-transform: uppercase;
    position: relative;
    background-image:url(../images/about-banner.webp);
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
}
.inner_page_herosec::after{
    position: absolute;
    content:"";
    left:0;
    right:0;
    bottom:0;
    top:0;
    width:100%;
    z-index:99;
    background-color:#000000ac;
}
.inner_page_hero .page_name{
    position: relative;
    z-index:999;
    color:#fff;
    padding: 50px 10px;
}
.Opportunity_section{
    padding:60px 0px;
    position: relative;
}
.Opportunity_section .sub_heading{
    margin:40px 0px 5px 0px;
}

.Opportunity_section a{
    color:#b0373b;
}

.Opportunity_section ul li {
    list-style: none;
    background-image: url(../images/red-dot.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 11px;
    padding: 8px 0 8px 24px;
}
.title_of_abstract{
    background-image:none;
}
.title_of_abstract ul li{
    background-image:none;
    list-style-type:decimal;
    padding: 8px 0 8px 7px;
}
.Opportunity_section .committee_box td, .committee_box th{
    padding: 9px 7px 9px 16px !important;
}
.Opportunity_section b{
    font-weight: 500;
    font-family: Roboto-Bold;
}

.siu-logo{
    width:70%;
}

/* scrolling menus */
#about{
    scroll-margin-top:150px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#Submissions{
    scroll-margin-top:150px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#scientific_program{
    scroll-margin-top:190px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#agenda{
    scroll-margin-top: 180px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#registration{
    scroll-margin-top: 140px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#Partners{
    scroll-margin-top: 170px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#speakers_section{
    scroll-margin-top: 170px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#benefits_section{
    scroll-margin-top: 190px;
    scroll-behavior: smooth;
    scroll-snap-align: start;
}
#Gallery{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 100px; /* Leaves 100px gap from the top when snapping */
}
#Committee{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 260px; /* Leaves 100px gap from the top when snapping */
}
#committeetab1{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 300px; /* Leaves 100px gap from the top when snapping */
}
#committeetab2{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 300px; /* Leaves 100px gap from the top when snapping */
}
#committeetab3{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 300px; /* Leaves 100px gap from the top when snapping */
}



.fancybox__container{
    z-index:99999 !important;
}

.symsim_heading{
    max-height: 70px;
}
.symsim_subheading{
    max-height: 47px;
    margin: 20px 0 0 0;
}
.symsim_description{
    max-height: 80px;
    margin: 5px 0 5px 0;
}
.symsim_date{
    max-height: 27px;
    margin: 13px 0 6px 0;
}
.organized_img{
    margin: 18px 0px 0px 0px;
}





/* Responsive Start*/
@media (min-width: 1365.98px) {
    .heading{
        font-size: 40px;
    }
    .heading2{
        font-size: 40px;
    }
    .Conference_section .Conferenceheading{
        font-size: 40px;
    }
    .call_abstracts_right img{
        width: 85%;
    }
    .workshop_box{
        min-height: 175px;
    }
    .accredited_logo{
        padding:0px 0 0 40px;
    }
}


@media (max-width: 1365.98px) {
    .our_event_inner .our_event_box::after {
        background-size: 80px;
        width: 80px;
        height: 80px;
    }
    .training_center_box{
        padding: 5px 10px;
        min-height: 111px;
    }
}


@media (max-width: 1279.98px) {
    .heading{
        font-size: 30px;
    }
    .heading2{
        font-size: 30px;
    }
    .Conference_section .Conferenceheading{
        font-size: 30px;
    }
    .heading::before{
        left: -150px;
    }
    .heading::after{
        right: -150px;
    }
    .call_abstracts_right img{
        width:94%;
    }
    .heading::before{
        width: 140px;
    }
    .heading::after{
        width: 140px;
    }
    .logo img{
        max-height: 45px;
    }
    .training_center_box{
        width: 22%;
    }
    .training_center_box img {
        max-height: 64px;
        border-radius: 10px;
    }
    .scientific_program_section .scientific_program_inner .nav-tabs li {
        width: 33%;
    }
    .tab-content .tab-pane {
        padding: 20px 0 0 0;
    }
    .scientific_program_section .nav-tabs .nav-link{
        padding: 10px 5px;
    }
    .speakers_card .speakers_img img {
        max-height: 220px;
        min-height: 220px;
    }
    .About_SYMSIM_inner .nav-tabs .nav-link{
        font-size: 17px;
        padding:10px 0px;
    }
    nav ul li a{
        font-size:13px;
        padding: 13px 5px;
    }
    header .dropdown_menu .btn{
        padding: 13px 5px !important;
        font-size:13px;
    }
    .sticky nav ul li a {
        padding: 13px 5px;
    }
}
@media (max-width: 1099.98px) {
    nav ul li a {
        padding: 13px 5px;
    }
    .symsim_heading{
        max-height: 65px;
    }
    .symsim_subheading{
        max-height: 45px;
        margin: 15px 0 0 0;
    }
    .symsim_description{
        max-height: 66px;
        margin: 5px 0 5px 0;
    }
    .training_center_box {
        min-height: 92px;
    }

}

@media (max-width: 991.98px) {
    .banner_subheading{
        font-size: 25px;
    }
    .banner_heading {
        font-size: 45px;
    }
    .banner_buttons a{
        font-size: 14px;
        padding: 10px 12px;
    }
    .dateandvenue p{
        gap: 10px;
        font-size: 13px;
    }
    .dateandvenue span {
        font-size: 14px;
    }
    .heading2 {
        font-size: 25px;
    }
    .training_center_inner {
        gap: 7px;
    }
    .training_center_box img {
        max-height: 45px;
    }
    .About_SYMSIM_inner .nav-tabs .nav-link {
        font-size: 14px;
    }
    .Conference_section .Conferenceheading{
        text-align: center;
        margin-bottom:20px;
    }

    /* Sections padding Starts */
    .hero_section {
        padding: 40px 0 20px 0;
    }
    .international_training_center_sec {
        padding: 20px 0px;
    }
    .About_SYMSIM {
        padding: 20px 0px;
    }
    .Conference_section {
        padding: 20px 0px;
    }
    .simulation_courses_section {
        padding: 20px 0px;
    }
    .specialized_simulations_sec {
        padding: 20px 0px;
    }
    .scientific_program_section {
        padding: 20px 0px;
    }
    .speakers_section {
        padding: 30px 0px;
        margin: 20px 0;
    }
    .call_for_abstracts_section {
        padding: 20px 0px;
    }
    .venue_and_accommodation_section {
        padding: 20px 0px;
    }
    .learn_about_pune_section {
        padding: 20px 0px;
    }
    .organizing_committee_section {
        padding: 20px 0px;
    }
    .our_sponsors_section {
        padding: 20px 0px;
    }
    .contact_us_section {
        padding: 30px 0px 30px 0px;
    }
    footer {
        padding: 30px 0px;
    }
    .our_event_inner .our_event_box{
        width: 48%;
    }
    .our_event_inner{
        gap:20px;
    }


    .speakers_card {
        margin-bottom: 15px;
    }
    .heading{
        margin: 0 auto 25px auto;
        font-size: 25px;
    }
    .registration_fees_section {
        padding: 20px 0;
    }
    .registration_fees_inner {
        padding: 20px 20px;
    }
    .heading::after {
        width: 80px;
        right: -100px;
    }
    .heading::before {
        width: 80px;
        left: -100px;
    }
    .sub_heading {
        font-size: 16px;
    }
    .workshop_box{
        gap: 10px;
    }
    .dr_name p {
        font-size: 14px;
        margin: 10px 0 0 0;
    }
    .dr_name {
        font-size: 16px;
    }
    .workshop_box{
        padding: 20px 10px;
        min-height: inherit;
    }
    /* .workshop_box:last-child{
        margin-bottom:0px;
    } */
    .scientific_program_section .scientific_program_inner .nav-tabs li {
        width: 60%;
    }
    .scientific_program_section .nav-tabs {
        border-bottom: 1px solid #000;
        justify-content: space-between;
        white-space: nowrap;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 0 0px 0;
        border-bottom: 1px solid #fff !important;
    }
    .pay_online {
        padding: 10px 30px;
        margin: 20px 0 20px 0;
        font-size: 16px;
    }
    .national_delegate_table {
        width: 100%;
    }
    .design-img{
        max-height: 7px;
    }
    .Conference_section .Conferenceheading {
        font-size: 25px;
    }

    /* mobile navigation start */

    .inner_header {
        flex-direction: row;
        justify-content: space-between;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #102846;
        position: absolute;
        top:6%;
        left: 0;
    }
    .inner_header .active span{
        background: #fff;
    }
    nav ul li {
        margin: 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav.active ul {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
    .top_header .logo a{
        font-size: 25px;
    }
    .register_btn {
        margin: 0 45px 0 0;
    }

    .register_btn{
        font-size: 16px;
        padding: 6px 14px;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #102846;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        font-size: 14px;
        padding: 10px;
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 15px;
    }
    .sticky nav ul li a {
        padding: 9px 15px;
    }

    nav.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }
    .sticky .top_header{
        padding: 12px 0 12px 0;
    }
    .dropdown_menu {
        position: relative;
        float: left;
        padding: 0 0 150px 0;
        margin: 0 0 150px 0;
    }
    .dropdown_menu .dropdown-menu{
        Width: 250px;
        top: 0;
        bottom: inherit;
        position: absolute;
        top: 50px;
    }
    .Navigation .dropdown_menu {
        position: relative;
        float: left;
    }
    .dropdown_menu .btn{
        font-size: 14px;
        padding: 10px;
        display: block;
        width: 100%;
        text-align: left;
        padding: 9px 20px;
        position: relative;
        text-align: left;
    }
    nav ul li .dropdown-item{
        padding: 6px 15px !important;
        border-bottom: 1px solid #e3e3e3;
        text-align: left;
        font-size:14px;
    }
    .sticky nav ul .dropdown_menu .btn {
        padding: 9px 15px;
        width: 100%;
    }
    header .dropdown_menu .btn {
        padding: 10px 15px !important;
        font-size: 13px;
    }

/* navigation End */
.siu-logo {
    width: 50%;
}

/* scrolling menus */
#about{
    scroll-margin-top:100px;
    scroll-behavior: smooth;
}
#Submissions{
    scroll-margin-top:100px;
    scroll-behavior: smooth;
}
#scientific_program{
    scroll-margin-top:100px;
    scroll-behavior: smooth;
}
#agenda{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#registration{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#Partners{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#speakers_section{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#benefits_section{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#Gallery{
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
}
#Committee{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 120px; /* Leaves 100px gap from the top when snapping */
}
#committeetab1{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 100px; /* Leaves 100px gap from the top when snapping */
}
#committeetab2{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 100px; /* Leaves 100px gap from the top when snapping */
}
#committeetab3{
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-margin-top: 100px; /* Leaves 100px gap from the top when snapping */
}

.training_center_box{
    min-height: 70px;
}
.banner_buttons {
    margin: 20px 0px 20px 0px;
}

}


@media (max-width: 767.98px) {
/* nav ul {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px 0;
}

nav ul.show {
    display: flex;
}

nav ul li {
    margin: 10px 0;
    text-align: center;
}

.menu-toggle {
    display: block;
} */

/* Hamburger button */






.banner_hero_img img{
    display:none;
}
.heading2 {
    font-size: 25px;
    text-align: center;
}
.training_center_box img {
    max-height: 60px;
    margin: 0 auto;
}
.scientific_program_section .nav-tabs .nav-link {
    padding: 10px 15px;
}
.committee_box tbody, .committee_box td, .committee_box tfoot, .committee_box th, .committee_box thead, .committee_box tr{
    font-size: 13px;
}
.committee_box .table{
    width:767px;
}
.scientific_program_section .nav-tabs .nav-link span{
    font-size: 13px;    
}
.speakers_content_right span {
    font-size: 12px;
}
.view_all{
    padding: 8px 40px;
    font-size: 16px;
}
.call_abstracts_left {
    padding: 20px 20px 20px 20px;
}
.call_abstracts_left ul li {
    padding: 0 0 0 0px;
}
.submit_abstracts_btn{
    padding: 10px 25px;
    font-size: 16px;
    margin: 10px 0 0 0;
}
.submit_abstracts_btn img{
    max-height: 14px;
}
.call_abstracts_right img{
    display:none;
}
.call_abstracts_left p{
    margin:0px;
}
.registration_fees_inner thead th{
    font-size: 14px;
}
.registration_fees_inner tbody, .registration_fees_inner td, .registration_fees_inner tfoot, .registration_fees_inner th, .registration_fees_inner thead, .registration_fees_inner tr{
    padding: 10px 0 !important;
}
.national_delegate_table{
    border: 1px solid #fff;
    padding: 5px 5px;
    margin:10px 0px 0px 0px;
}
.national_delegate_table .table{
    margin:0px;
}
.registration_fees_text{
    margin:0px;
}
.sponsors-logo_box {
    width: 25%;
}
.heading::after{
    display:none;
}
.heading::before{
    display:none;
}
.contactimg img{
    display:none;
}
.About_SYMSIM_inner{
    padding: 20px 10px 20px 10px;
}
.scientific_inner_data .table{
    width: 767px;
}
.national_delegates_box{
    padding: 0 0px;
    flex-wrap: wrap;
    gap: 0px;
}
.national_delegates_box .vertical_heading{
    writing-mode: lr-tb;
    margin-top: 10px;
}
.deluxe_box{
    margin: 10px 0 20px 0;
}


.banner_content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.banner_text {
    text-align: center;
}
.dateandvenue p {
    justify-content: center;
}
.amounttext{
    margin-bottom: 20px;
}

.registration_fees_inner tbody, .registration_fees_inner td, .registration_fees_inner tfoot, .registration_fees_inner th, .registration_fees_inner thead, .registration_fees_inner tr {
    font-size: 12.5px;
}
.registration_fees_inner thead th {
    font-size: 12.5px;
}
.registration_fees_inner {
    padding: 20px 10px;
}
.our_event_inner .our_event_box {
    width: 100%;
}
.our_event_inner .our_event_box{
    min-height: inherit;
}
.our_event_inner .our_event_box::after{
    display:none;
}
.accredited_logo{
    margin:0px 0 12px 0px;
}

}


@media (max-width: 575.98px) {
    nav{
        width:100%;
    }
    .training_center_box img {
        max-height: 43px;
        margin: 0 auto;
    }
    .banner_buttons {
        display: flex;
        gap: 20px;
        margin: 20px 0px 10px 0px;
    }
    .banner_heading {
        font-size: 40px;
    }
    .banner_subheading {
        font-size: 25px;
    }
    .hero_section {
        padding: 20px 0 20px 0;
    }
    .About_SYMSIM_inner .nav-tabs li {
        width: 90%;
        margin: 0 0 10px 0px;
    }
    .About_SYMSIM_inner .nav {
        white-space: nowrap;
        overflow-y: hidden;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 0 0px 0;
        /* border-bottom: 1px solid #fff !important; */
    }
    .About_SYMSIM_inner .nav-tabs .nav-link {
        font-size: 15px;
        padding: 10px 15px;
    }
    .our_event_inner .our_event_box {
        width: 100%;
        min-height: inherit;
    }
    .our_event_inner .our_event_box::after{
        display:none;
    }
    .scientific_program_section .scientific_program_inner .nav-tabs li {
        width: 100%;
    }
    .scientific_program_section .nav-tabs .nav-link {
        padding: 10px 15px;
        background: #f0f0f0;
    }
    footer ul{
        gap: 16px;
    }
    .menu-toggle{
        top: 16px;
    }
    .speakers_card{
        width: 100%;
    }
    .cardContainer {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(161px, 1fr));
        gap: 12px;
    }
    .speakers_card .speakers_img img {
        max-height: 190px;
        min-height: 190px;
    }
    .logo img {
        max-height: 27px;
    }
    .symsim_heading{
        max-height: 55px;
    }
    .symsim_subheading{
        max-height: 45px;
        margin: 15px 0 0 0;
    }
    .banner_subheading{
        padding: 0px 0 0px 0;
    }
    .symsim_description{
        max-height: 66px;
        margin:5px 0 5px 0;
    }
    .sponsors-logo_box {
        width: 48%;
    }
    .our-sponsors-logos{
        gap: 10px;
    }

}