* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 136px;
  z-index: 3;
  background-color: transparent;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
}
.nav.scrolled {
  background-color: white;
}

.nav.scrolled a {
  color: #595959;
}
.nav.scrolled a:hover {
  color: #111111;
}
.logo img {
  width: 176px;
}

.hero {
  position: relative;
  background-image: url("./Images/drew-coffman-1872.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.dark_layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}
.list_item {
  font-size: 18px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.list_item:hover {
  color: #e0c690;
}
.list_item_active {
  font-size: 18px;
  color: #e0dcd2;
  border-bottom: 3px solid #ae9768;
  padding-top: 70%;
}
.list_item_active.scrolled {
  color: #111111 !important;
}

.links {
  font-family: "Alegreya", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.content {
  font-family: "Alegreya", serif;
  width: 700px;
  text-align: center;
  color: white;
}
.welcomeText {
  font-size: 22px;
  margin-bottom: 5px;
  font-family: "Alegreya Sans", sans-serif;
}
.des {
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Alegreya Sans", sans-serif;
}
.content h1 {
  font-size: 76px;
  font-weight: 400;
  line-height: 91px;
  margin-bottom: 20px;
}
.hero_body {
  width: auto;
  position: absolute;
  margin-top: 50px;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: auto;
}
.Learn_CTA {
  background-color: #8e7754;
  padding: 15px 28px;
  border: 2px solid #8e7754;
  font-family: "Alegreya Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: white;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.Learn_CTA:hover {
  background-color: white;
  color: #000;
  border: 2px solid white;
}
.contact_CTA {
  background-color: transparent;
  padding: 15px 28px;
  border: 2px solid white;
  font-family: "Alegreya Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: white;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.contact_CTA:hover {
  background-color: white;
  color: #000;
  border: 2px solid white;
}

.menu-toggle {
  position: relative;
  width: 28px;
  height: 22px;
  top: 3px;
  right: 10px;
  cursor: pointer;
  z-index: 10001;
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:focus {
  outline: none;
}
.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 2.5px;
  background-color: black;
  transform: translateY(-50%);
  transition: 0.3s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: black;
  transition: 0.3s;
}

.menu-toggle.active span {
  background-color: transparent;
}
.menu-toggle.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.active span::after {
  transform: rotate(-45deg);
  top: 0;
}
.menu-toggle span::before {
  top: -8px;
}

.menu-toggle span::after {
  top: 8px;
}

.mobile-menu-list {
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  display: block;
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.mobile-menu-list.active {
  max-height: 500px;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo img {
  width: 140px;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  padding: 0;
}
.mobile-links li:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.mobile-links li {
  position: relative;
  font-family: "Alegreya Sans", sans-serif;
}

.mobile-links a {
  color: #333;
  display: block;
  padding: 13px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 31px;
  position: relative;
}
.mobile-links a:hover {
  color: #8e7754;
  transition: all 0.2s ease;
}
.mobile-logo {
  width: 176px;
}
.mobile-logo img {
  width: 100%;
}
.menu_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
  position: relative;
}
.Who_we_are {
  padding: 90px 136px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.left_image {
  width: 100%;
  max-width: 565px;
  margin-bottom: 30px;
}

.left_image img {
  width: 100%;
}
.info {
  margin-bottom: 25px;
}
.list {
  margin-bottom: 35px;
}
.right_content {
  max-width: 560px;
}
.right_content h1 {
  font-family: "Alegreya", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  color: #303030;
  margin-bottom: 25px;
}
.right_content p {
  font-family: "Alegreya Sans";
  font-size: 17px;
  font-weight: 400;
  line-height: 31px;
  color: #686868;
}
.info_list_info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  line-height: 44px;
  font-size: 20px;
}
.icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #8e7754;
}
.right_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.Our_Location {
  background-color: #f8f8f8;
  padding: 90px 136px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.p_location {
  margin-bottom: 20px;
}
#section4 {
  padding: 70px 0 50px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 15px;
}

.title {
  margin-top: 10px;
  margin-bottom: 60px;
  text-align: center;
}
.title h1 {
  font-family: "Alegreya", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 41px;
  color: #303030;
}

.title p {
  margin-top: 17px;
  max-width: 700px;
  margin-inline: auto;
  font-size: 17px;
  font-weight: 400;
  line-height: 31px;
  font-family: "Alegreya Sans";
  color: #888;
}
.backing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-space {
  padding-inline: 15px;
}
.card {
  text-align: center;
}

.Superior {
  width: 100%;
}

.Superior img {
  width: 100%;
  display: block;
}

.card h1 {
  font-family: "Alegreya", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  color: #303030;
  margin: 20px 0 15px;
}

.card p {
  font-family: "Alegreya Sans";
  font-size: 17px;
  font-weight: 400;
  line-height: 31px;
  color: #686868;
}

.map {
  width: 50%;
  height: 450px;
  padding-inline: 15px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.contact_info {
  margin-bottom: 30px;
}
.det {
  font-family: "Alegreya Sans";
  font-size: 17px;
  font-weight: 400;
  line-height: 31px;
  color: #686868;
  margin-bottom: 18px;
}
.contact_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.contact_list_item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #8e7754;
  color: white;
}
.map_icon i {
  line-height: 36px;
}
.footer-main {
  background: #403d38;
  padding: 40px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col {
  flex: 1;
}

.footer-col h3 {
  font-family: "Alegreya", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  margin-bottom: 25px;
}
.footer-col p {
  font-family: "Alegreya Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #969696;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
  color: #969696;
  padding: 0;
}

.footer-col li {
  font-family: "Alegreya Sans";
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 7px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}
.footer-col li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-col li i {
  margin-right: 5px;
  font-size: 12px;
}
.footer-col a {
  font-family: "Alegreya Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #969696;
  margin-bottom: 25px;
}
.footer-columns div:last-child {
  position: relative;
}
.footer-columns div:last-child ul::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(./Images/contact-details-map.png) no-repeat center center;
  opacity: 0.11;
}
.footer_img {
  margin-bottom: 25px;
}
.footer_img img {
  width: 100%;
}
.footer_icon {
  margin-right: 10px !important;
  font-size: 16px !important;
}
.footer-bottom {
  background-color: #353330;
  padding-block: 50px;
}
.Copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.Copyright p {
  margin-top: 5px;
  color: #777;
  font-family: "Alegreya Sans";
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
}
.social_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.social_icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #484540;
  transition: all 0.3s ease;
  color: #8c8a86;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
}
.facebook:hover {
  background-color: #3b5998;
  color: white;
}

.google:hover {
  background-color: #dd4b39;
  color: white;
}
.linkedin:hover {
  background-color: #007bb5;
  color: white;
}
.twitter:hover {
  background-color: #00aced;
  color: white;
}

.loader-wrapper {
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  opacity: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
.loader-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-circle {
  animation: preloader-outer 1.5s ease infinite;
}
.loader-circle::before {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  animation: spin 3s ease infinite;
  border: 2px solid #ccc;
  border-bottom: 2px solid;
  border-bottom-color: #ae9768;
  border-radius: 50%;
  background: none;
  transform-origin: center center;
}
@keyframes spin {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes preloader-outer {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
