:root {
  --primary_color: #f8ede0;
  --secondary_color: #284f3f;
  --primary_color_dark: #bd8b44;
  --black: #020202;
  --offwhite: #fefaf6;
  --container_width: 100%;
  --container_left_space: calc((100% - var(--container_width)) / 2);
}
.primary_color_bg {
  background-color: var(--primary_color);
}
.primary_color_dark {
  color: var(--primary_color_dark);
}
.secondary_color {
  color: var(--secondary_color);
}
.secondary_color_bg {
  background-color: var(--secondary_color);
}
.black {
  color: var(--black);
}
.offwhite {
  color: var(--offwhite);
}
.offwhite_bg {
  background-color: var(--offwhite);
}
.Geologica {
  font-family: "Geologica", sans-serif;
}
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container_width: 750px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  :root {
    --container_width: 970px;
  }
}
@media (min-width: 1025px) {
  :root {
    --container_width: 1160px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container_width: 1160px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: "Raleway";
}

.container {
  width: 100% !important;
  max-width: var(--container_width);
  margin-inline: auto;
}

.header {
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 999;
  background-color: #f8ede0;
  box-shadow: 0 0 25px #0000001a;
}
.header .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: calc(var(--container_width) + 80px);
}
.header .navbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 38px;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
  padding-left: 3vw;
  padding-right: 3vw;
}
.header .logo {
  max-width: 150px;
  height: auto;
  width: 100%;
}
.header .navbar .burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 40px;
  border: 0;
  opacity: 1;
  visibility: visible;
  background-color: unset;
}
@media (min-width: 1025px) {
  .header .navbar .burger {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1024px) {
  .header .navbar .burger {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .header .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .header .logo {
    max-width: 80px;
  }
}
.header .navbar .burger .burger-line {
  display: block;
  cursor: pointer;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  background-color: #000;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.35s ease-in-out;
}
.header .overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.header .menu {
  position: fixed;
  top: 0;
  left: -19rem;
  width: 19rem;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  background-color: white;
}
@media (min-width: 1025px) {
  .header .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    opacity: 1;
    visibility: visible;
    background: 0;
    box-shadow: none;
  }
}
.header .menu.is-active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.header .menu-block {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}
@media (min-width: 1025px) {
  .header .menu-block {
    margin: 0 auto;
  }
}
.header .menu-block .menu-item {
  display: block;
  position: relative;
  margin: 0;
}
@media (min-width: 1025px) {
  .header .menu-block .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 0.625rem;
  }
}
@media (max-width: 1024px) {
  .header .menu-block .menu-item {
    width: fit-content;
  }
}
.header .menu-block .menu-link {
  display: block;
  font-family: inherit;
  font-size: 20px;
  color: var(--black);
  font-weight: 400;
  line-height: inherit;
  padding: 0px;
  margin-bottom: 18px;
  border: 0;
  text-transform: initial;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease;
  color: var(--color_text);
  text-decoration: none;
}
.header .menu-block .menu-link.active {
  border-bottom: 1px solid var(--black);
}
@media (min-width: 1025px) {
  .header .menu-block .menu-link {
    padding: 0px 0;
  }
}

/* Add this CSS for dropdown styling */
.menu-item.dropdown:hover .dropdown-menu {
  display: block;
}

@media (min-width: 1025px) {
  .menu-item.dropdown {
    padding-right: 20px;
  }
}

.menu-item.dropdown > .menu-link::after {
  content: "";
  background-image: url(https://sudip-bhowmick.github.io/images/img/dropdown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateX(10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  filter: invert(1);
}
@media (max-width: 1024px) {
  .menu-item.dropdown > .menu-link::after {
    top: 17px;
    bottom: auto;
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  padding-left: 0;
  top: 100%;
  left: 0;
  z-index: 999;
}
.dropdown-menu .menu-link {
  width: max-content;
}
@media (min-width: 1025px) {
  .dropdown-menu {
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 1024px) {
  .dropdown-menu {
    position: relative;
    padding-left: 10px;
  }
}

.dropdown-menu li {
  display: block;
}

.text_xl {
  font-size: 38px;
}
.text_md {
  font-size: 24px;
}
.text_l {
  font-size: 20px;
}
.image_pattern {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media (max-width: 767px) {
  .text_xl {
    font-size: 28px;
  }
}

.footer_logo {
  max-width: 90px;
  width: 100%;
}
footer a {
  color: var(--primary_color_dark);
}

.max-width-630 {
  max-width: 630px;
  margin: auto;
  text-align: left;
  width: 100%;
}

/* ul {
  padding-left: 0;
} */
.hidden-xs {
  display: block;
}
.visible-xs {
  display: none;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
  .visible-xs {
    display: block;
  }
}

.btn {
  background-color: #caa167;
  border: 2px solid #caa167;
  border-radius: 16px 0px;
  padding: 6px 40px;
  font-size: 20px;
  color: var(--offwhite);
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background-color: transparent;
  color: #caa167;
}

.banner {
  position: relative;
  text-align: center;
}
.banner_text {
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .banner img {
    height: 300px;
    object-fit: cover;
  }
  .banner_text {
    font-size: 36px;
  }
}
