@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");

body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 65px;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
}
.heading_container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dd1a1a; /* red color */
}
.heading_container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
}

.heading_container2 h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 65px;
  margin-bottom: 0px;
  font-family: 'Poppins', sans-serif;
}


.heading_container h2 span {
  color: #cb1414;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.heading_container2.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/

.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box .bg_img_box {
  min-width: 100%;
  min-height: 100%;

}

.hero_area .hero_bg_box img {
  min-width: 100%;
  min-height: 100%;

}

.sub_page .hero_area {
  min-height: auto;
  background: linear-gradient(130deg, #231a6f, #0f054c);
}

.sub_page .hero_area .hero_bg_box {
  display: none;
}

.header_section {
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.5);
  
}

.header_section .container-fluid {
  padding-right: 30px;
  padding-left: 225px;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  width: 20%;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 23px 23px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}


.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #dd1a1a;
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}



.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}


.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 45px 0 145px 0;
  font-family: 'Poppins', sans-serif;

}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #cc0b0b;
  margin: auto;
  text-align: center;

}

.slider_section .detail-box h1 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
  
    background-color: rgba(225, 16, 16, 0.5);

  
}
.slider_section .detail-box p {
  color: #ffffff;
  font-size: 20px;
  background-color: rgba(225, 16, 16, 0.5);
}


@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #dd1a1a;
}


.about_section {
  background-color: #ffffff;
  color: #000000;


}

.about_section .heading_container {
  margin-bottom: 45px;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .img-box img {
  max-width: 100%;
  float: right;

}

.about_section .detail-box h3 {
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
 
}
.about_section .detail-box p {
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;

}

.about_section .detail-box a {

  display: inline-block;
  padding: 10px 45px;
  background-color: #dd2828;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box h3 {

  color: #dd1a1a;
}

.about_section .detail-box a:hover {
  background-color: #d83a28;
}



.why_section .box {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.why_section .box .img-box {
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 100%;
  border: 5px solid #00204a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.why_section .box .img-box img {
  width: 55px;
  height: auto;
  fill: #00204a;
}

.why_section .box h5 {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.why_section .box p {
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}



/*team section */
.team_section {
  text-align: center;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;

}

.team_section .heading_container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team_section .team_container {
  padding: 0 180px ;
  margin-top: 35px;
justify-content: center;

}
.team_container .row {
  display: flex;
  justify-content: center;
}

.team_section .team_container .box {
  padding: 35px 0 0 0;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
  margin-top: 45px;
  background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64));
  background: linear-gradient(to bottom, #ffffff, #ffc403);
}

.team_section .team_container .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.team_section .team_container .box .img-box img {
  width: 150px;
  height: auto;
}

.team_section .team_container .box .detail-box {
  margin: 35px 0;
}

.team_section .team_container .box .detail-box h5 {
  color: #E00F17;
  font-weight: 600;
  position: relative;
}
/*team section end*/

.info_section {
  background-color: #E00F17;
  color: #ffffff;
  padding: 45px 0 15px 0;
  font-family: 'Poppins', sans-serif;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;

}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;

}

.info_section .info_contact .contact_link_box a:hover {
  color: #000000;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;

}

.info_section .info_social a:hover {
  color: #000000;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;

}

.info_section .info_links a:hover {
  color: #000000;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;

}


/* footer section*/
.footer_section {
  position: relative;
  background-color: #000000;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer_section p {
  color: #ffffff;
  padding: 25px 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.footer_section p a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
.top {
  display: flex;
  width: 90%;
  height: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;

}

.top ul {
  list-style: none;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.top ul li {
  position: relative;
  float: left;
  width: 19%;
  height: 19%;
  overflow: hidden;
  margin: 0.5px;
}

.top ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  content: '';
  color: white;
  opacity: 0.2;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.top ul li:hover::before {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.90);
}

.top ul li img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  top: -100%;
  /* Transition */
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lightbox:target {
  outline: none;
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  -webkit-transition: all 1.2s ease;
}

.lightbox:target img {
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.hidden {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  box-sizing: border-box;
  border-radius: 5px;
}



.sponsor-box {
  width: 100%;
  height: 10%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Add this line for a light gray background color */
  box-shadow: inset 4px 4px 12px #e1de23, inset -4px -4px 12px #e1de23;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  /* Add this line for a subtle box shadow */
  background: linear-gradient(to bottom, #FFD700, #ffffff);
  border-radius: 5%;

}

.sponsor-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}

.sponsor-box2 {
  width: 100%;
  height: 10%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Add this line for a light gray background color */
  box-shadow: inset 4px 4px 12px #e1de23, inset -4px -4px 12px #e1de23;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  /* Add this line for a subtle box shadow */
  background: linear-gradient(to bottom, #C0C0C0, #ffffff);
  border-radius: 5%;


}

.sponsor-box2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}

.sponsor-box3 {
  width: 100%;
  height: 10%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Add this line for a light gray background color */
  box-shadow: inset 4px 4px 12px #e1de23, inset -4px -4px 12px #e1de23;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  /* Add this line for a subtle box shadow */
  background: linear-gradient(to bottom, #d2a06f, #ffffff);
  border-radius: 5%;
  margin-top: 25px;
 

}

.sponsor-box3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}

.sponsor-box4 {
  width: 100%;
  height: 10%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  /* Add this line for a light gray background color */
  box-shadow: inset 4px 4px 12px #dfdfda, inset -4px -4px 12px #e1de23;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  /* Add this line for a subtle box shadow */
  background: linear-gradient(to bottom, #f6f1f1, #ffffff);
  border-radius: 5%;
  margin-top: 25px;

}
.sponsor-box4 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
}
.flag-icon{
  color: #ffffff;
  padding-left: 140px;
}
.flag-icon img{
  width: 20px;
  height: 15px;
  margin-right: 5px;
}
.flag-icon a{
  color: #ffffff;
}
.video-container {
  margin: 70px auto; /* adjust margin to your liking */
  max-width: 800px; /* adjust max-width to your liking */
  text-align: center;
}

.video-container iframe {
  width: 80%;
  height: 350px;
  object-fit: cover;
 
}
.custom_nav-container .navbar-nav .nav-item .dropdown-menu ul {
  list-style: none;
  padding-left: 0;
}
.custom_nav-container .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  background-color: transparent;
}
.custom_nav-container .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  color: #dd1a1a;
  background-color: transparent;
}
