@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Ovo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ovo&display=swap");
.navbar-brand img {
  width: 160px;
  margin-left: 2vw;
}

.header-one div#navbarSupportedContent {
  background-color: #ffffff;
}

.header-one.sticked {
  background-color: white;
}

.banner-one {
  background: white;
}

.main-banners {
  margin-top: 15vh;
}
.main-banners .box {
  position: relative;
  overflow: hidden;
}
.main-banners .box .box-img img {
  width: 100%;
  height: auto;
  display: block;
}
.main-banners .box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.5411764706); /* Semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-banners .box .overlay .contentdiv {
  text-align: center;
  color: #fff;
}
.main-banners .box .overlay .contentdiv h1 {
  margin-bottom: 10px;
  color: white;
  font-family: "Ovo", serif;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 497px) {
  .main-banners .box .overlay .contentdiv h1 {
    font-size: 35px;
    margin-bottom: -20px;
  }
}
.main-banners .box .overlay .contentdiv p {
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  margin-bottom: 15px;
  color: white;
}
@media (max-width: 497px) {
  .main-banners .box .overlay .contentdiv p {
    font-size: 12px;
  }
}
.main-banners .box .overlay .contentdiv button {
  background-color: wheat;
  color: #000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.7s ease;
}
@media (max-width: 497px) {
  .main-banners .box .overlay .contentdiv button {
    padding: 1px 11px;
  }
}
.main-banners .box .overlay .contentdiv button:hover {
  background-color: #ffffff;
}