:root {
  --blue-color: rgb(44, 140, 216);
  --header-height: 80px;
  --header-height-mb: 96px;
}
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}
*,
*::before,
*::after {
  /* outline: 1px solid red; */
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.mb-show {
  display: block;
}
.main-nav {
  display: none;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
@media (min-width: 808px) {
  .mb-show {
    display: none;
  }
  .main-nav {
    display: flex;
  }
}
.main-nav > a h3,
.mobile-nav-bar > a h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
}
.fixed-header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#overlay-nav {
  position: fixed;
  top: var(--header-height-mb);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--header-height-mb));
  background: white;
  z-index: 1;
  transition: top 0.5s ease-in-out;
}
.mobile-nav-bar {
  position: fixed;
  top: 100px;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  gap: 80px;
  height: calc(100vh - 20px);
  width: 100%;
}

@media (min-width: 810px) {
  .mobile-nav-bar {
    display: none !important;
  }
  #overlay-nav {
    display: none !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
.contact-us-btn {
  background-color: var(--blue-color);
  border-radius: 8px;
  color: white;
  padding: 8px 32px;
  transition: translate;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  font-family: "Raleway", serif;
}
.contact-us-btn:hover,
.contact-us-btn:focus {
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.125) 0px 0.59714px 0.59714px -0.625px,
    rgba(0, 0, 0, 0.125) 0px 1.81088px 1.81088px -1.25px,
    rgba(0, 0, 0, 0.125) 0px 4.78699px 4.78699px -1.875px,
    rgba(0, 0, 0, 0.125) 0px 15px 15px -2.5px;
  outline: 0px;
}
@media (max-width: 850px) {
  .contact-us-btn {
    padding: 8px 16px;
  }
}
.other-container {
  max-width: 1800px;
  padding: 0 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 120px;
  margin-bottom: 120px;
  padding: 0 20px;
}
.relative {
  position: relative;
}
.bg-icon {
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
}
.bg-1 {
  left: 0;
  top: 45px;
}
.bg-2 {
  right: 0px;
  bottom: 300px;
}
@media (min-width: 810px) {
  .other-container {
    padding: 0 60px;
    gap: 150px;
    margin-bottom: 150px;
  }
}
.heading {
  text-align: center;
  margin-bottom: 20px;
  color: rgb(22, 46, 66);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5em;
}
.description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 64px;
  font-weight: 400;
}
.description span:not(:first-child) {
  margin-top: 16px;
}
.description span {
  display: block;
}
.undeline {
  color: var(--blue-color);
  text-decoration: underline;
  font-weight: 400;
}
