/*==============================================================
	Common Styles Initials
	==============================================================*/

html {
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto !important;
  scrollbar-color: #565656 #bfbfbf;
  scrollbar-width: thin;
}

input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Fustat", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  width: 100%;
  min-height: 100%;
  background: #fff;
  color: #000000;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

input,
textarea,
select {
  outline: none;
  resize: none;
}

a,
input,
button {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  font-family: "Fustat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: #646b6c;
  margin: 0;
}

/* p:last-of-type {
  margin: 0;
} */
.header-wrap {
  width: 100%;
  position: sticky;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 999;
}
header {
  padding: 16px 0;
  background-color: #fff;
}
.header-wrap.header-active {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.menu-listing li a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #33544e;
  padding: 10px 33px;
  align-items: center;
}
.menu-listing li a:hover {
  color: #000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-listing {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo a img {
  width: 132px;
  height: auto;
}
.mobile-btn .btn:hover svg path {
  fill: #fff;
}

@media (min-width: 1024px) {
  .humberger {
    display: none;
  }
  nav ul li.cta {
    display: none;
  }
}
@media (max-width: 1024px) {
  .humberger {
    display: block;
    font-weight: 800;
    font-size: 13px;
    line-height: 125%;
    letter-spacing: 3px;
    text-align: right;
    color: #4e5354;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-btn {
    display: none;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .header-logo {
    width: 100%;
  }

  .header-logo {
    background-color: #fff !important;
  }
  .menu-listing {
    display: none;
  }
  .menu-active {
    background-color: #29433e;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 4;
  }

  #mobileMenu.menu-active .menu-listing {
    display: block;
  }
  .menu-listing li a {
    color: #fff;
    padding: 10px 0;
  }
  .menu-listing li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .menu-active li.cta .btn {
    width: 100%;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
  }
  .menu-active li.cta .btn:hover {
    color: #33544e;
    background-color: #fff;
    border: 1px solid #fff;
  }
  .menu-listing li a:hover {
    color: #bfbfbf;
  }
  .cta.active {
    width: 100%;
    display: block;
  }
}

@media (max-width: 1200px) {
  .menu-listing {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .menu-active {
    background-color: #121d1b;
    padding: 0px;
  }
  .menu-listing li a {
    padding: 24px;
  }
  .menu-listing li a:hover {
    color: #fff;
    background-color: #29433e;
  }
  .menu-listing li.cta {
    padding: 24px;
  }
  .menu-listing li.cta .btn {
    box-sizing: border-box;
    width: 100%;
    padding: 16px;
    /* margin: 16px; */
    background-color: #29433e;
    border: 1px solid #29433e;
  }
  .menu-active li.cta .btn:hover {
    background-color: #121d1b;
    color: #fff;
    border: 1px solid #fff;
  }
}

