.logo-img, .scroll-logo {
    width: 125px;
}

.sidebar-logo {
    width: 35px;
    display: none;
}


.section-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.header-image-container {
  width: 100%;
  height: 0;
  padding-top: 30.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
}

.header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .bg-cover {
    background-size: cover !important;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
} */

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#navbarToggler:focus {
  outline: none;
  box-shadow: none;
}


@media (max-width: 1199px) {
    .navbar {
        height: 93.0px; /* Adjust this value as needed */
    }
    .navbar-collapse {
        background-color: #919396;
        padding: 15px;
        margin: 0 -17px;
    }
}


.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.footer-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo {
  position: absolute;
  bottom: 3.5vw;
  right: 1.5vw;
  width: auto;
  height: auto;
  max-width: 9vw;
}

.footer-text-container {
  position: absolute;
  bottom: 0.15vw;
  right: 1vw;
  text-align: right;
}

.footer-text {
  font-size: clamp(8px, 1vw, 16px);
  color: white;
  padding: 5px;
  white-space: nowrap;
}



@media (min-width: 768px) and (max-width: 1024px){
  .footer-logo {
    max-width: 7.5vw;
    right: 2.1vw;
  }
  .footer-text {
    font-size: clamp(4px, 1vw, 8px);
    color: white;
    padding: 5px;
    white-space: nowrap;
  }
  .footer-text-container {
    bottom: -0.2vw;
    right: 1.5vw;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    max-width: 8vw;
    right: 2.5vw;
  }

  .footer-text-container {
    bottom: -1vw;
    right: 1.5vw;
  }
}


@media (min-width: 375px) and (max-width: 430px){
  .footer-text {
    font-size: clamp(5px, 1vw, 10px);
    color: white;
    padding: 5px;
    white-space: nowrap;
  }
  .footer-text-container {
    bottom: -1.8vw;
    right: 1.5vw;
  }
}












