/* media-icon-list start here */
.media-icons-wrapper {
  background-color: #273272;
  padding: 8px 0px 8px 0px;
}
.media-icon-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 25px;
}
.media-icon-link {
  color: #fff;
  transition: 0.5s;
  font-size: 18px;
  line-height: 28px;
  &:hover {
    color: #0077b5;
  }
}
/* media-icon-list end here */

/* banner start here */
.main-banner-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.main-banner-wrapper.image-banner-wrapper {
    height: auto;
  min-height: auto;
  
}
.about-us-banner{
    background-image: url("../images/About-us-page-image.jpg");
    background-size: cover;
    background-position: center;
}
.main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
  height: 100%;
  min-height: 500px;
}
.video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; /* Add this */
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
  z-index: 2; /* Increase this */
}
@media (max-width: 991px) {
  .main-banner-wrapper.image-banner-wrapper .banner-content-wrapper {
    height: 100%;
    min-height: 390px;
  }
}
/* banner end here */

/* nav bar start here */
.menu-wrapper {
  clear: both;
  background: #f5f5f585;
  position: absolute;
  top: 45px;
  width: 100%;
  z-index: 999; /* Make sure this is higher than other elements */
}
.menu-wrapper:has(.navbar-collapse.collapse.show){
  backdrop-filter: blur(10px);
}
.navbar-brand {
  padding: 0;
  img {
    max-width: 196px;
  }
}
.navbar-nav {
  width: 100%;
  justify-content: end;
  .nav-link {
    text-transform: uppercase;
    font-family: "Lato", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    padding: 15px 12px;
    text-decoration: none;
    &:hover {
      color: #1a3967;
      border-bottom: 1px solid #1a3967;
    }
  }
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #1a3967;
}
.navbar-toggler {
  background: #1a3967;
  padding: 0px 10px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .nav-link {
    text-align: center;
  }
}
/* nav bar end here */

/* banner-content-wrapper start here */
.banner-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  width: 100%;
  margin-inline: auto;
  height: 100%;
  min-height: 90vh;
  z-index: 3; /* Make sure this is higher than other elements */
  h1 {
    background-color: #f5f5f559;
    padding: 1% 3% 1% 3%;
    border-radius: 9px;
    display: inline-block;
    color: #1a3967;
    text-align: left;
    font-family: "Helvetica", Sans-serif;
    font-size: clamp(1.6875rem, 1.0511rem + 3.1818vw, 3.4375rem);
    font-weight: 600;
    .typeJsText {
      font-weight: 500;
      color: #000;
    }
  }
  h2 {
    margin-block: 25px 50px;
    padding-bottom: 80px;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #1a3967;
    width: 100%;
    font-family: "Montserrat", Sans-serif;
    font-size: clamp(1.5625rem, 0.8807rem + 3.4091vw, 3.4375rem);
    font-weight: 300;
    text-transform: lowercase;
    line-height: 1;
    color: #ffffff;
  }
}
.main-banner-wrapper.image-banner-wrapper .banner-content-wrapper h2 {
  font-weight: 500;
  color: #ffffff;
  margin: 45px 0; 
  padding-bottom: 0;
  border: none;
  text-transform: none;
}
/* banner-content-wrapper end here */
/* the-number-list start here */
.the-number-list {
  z-index: 3;
  background-color: #f5f5f559;
  width: 100%;
  margin-bottom: 20px;
  padding: 7px;
  display: flex;
  li {
    padding: 10px;
    border-right: 1px solid #fff;
    width: 25%;
    &:last-child {
      border: none;
    }
    h3 {
      font-size: 27px;
      font-weight: 800;
      color: #1a3967;
      margin-bottom: 0;
      display: inline-block;
      width: fit-content;
      position: relative;
      span {
        position: absolute;
        top: -7px;
        right: -22px;
        color: #fff;
        font-size: 18px;
      }
    }
    p {
      color: #000000;
      font-size: 22px;
      font-weight: 400;
      margin: 0px;
    }
  }
}
/* the-number-list end here */
@media (max-width: 767px) {
  .warp-up-wrapper iframe {
    width: 100%;
    height: auto;
  }
  .navbar-brand {
    img {
      max-width: 102px;
    }
  }
  .main-banner-wrapper {
    height: 90vh;
  }
  .banner-content-wrapper {
    min-height: 80vh;
  }
  .banner-content-wrapper {
    h2 {
      margin-block: 0px 30px;
      padding-bottom: 40px;
    }
  }
  .the-number-list {
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 10px 0;
    li {
      padding: 0px 10px;
      border-right: 1px solid #fff;
      width: 50%;
      margin-bottom: 10px;
      &:nth-child(even) {
        border-right: none;
        padding-left: 20px;
      }
    }
  }
}
