* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
body,
html {
  height: 100%;
  font-family: "Lato", sans-serif;
}
main {
  overflow-x: hidden;
}

section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  height: 100vh;
}

.column {
  flex: 1; /* Each column takes 50% width */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.column1 {
  background-color: #f4f4f4;
}

.column2 {
  background-color: #ccc;
}

@media (max-width: 768px) {
  section {
    flex-direction: column; /* Stack columns on small screens */
  }
}

/* .button {
  margin-top: 2rem;
  width: 170px;
  padding: 12px 16px;
  background-color: #ccb16c;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  border-radius: 7px;
  transition: all 0.3s ease-out;
  display: inline-flex;
  gap: 0.5rem;
  text-decoration: none;
  align-items: flex-end;
  justify-content: center;
}

.button:hover {
  background-color: #ccb16c;
  color: #000;
}

.button:hover span {
  transform: translateX(-3px); 
}

.button:hover i {
  transform: translateX(3px); 
}
.button i {
  vertical-align: middle;
} */
/* Contact Link */
.button {
  position: relative;
  width: 222px;
  height: 49px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #ccb16c;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 15.6px;
  border: 1px solid #ccb16c;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: left 0.3s ease-in-out;
  z-index: 1;
}

.button:hover::before {
  left: 0;
}

.button span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.button:hover span {
  color: #ccb16c;
}

.contact-icon {
  position: relative;
  z-index: 2;
}

.contact-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease-in-out;
}

main {
  background: linear-gradient(
      90deg,
      rgba(211, 189, 136, 0) -6.25%,
      rgba(255, 255, 255, 0) 21.73%,
      rgba(255, 255, 255, 0.2) 48.58%,
      rgba(255, 255, 255, 0.2) 77.68%,
      rgba(211, 189, 136, 0.2) 105.65%
    ),
    linear-gradient(
      270deg,
      rgba(211, 189, 136, 0) -6.25%,
      rgba(255, 255, 255, 0) 21.73%,
      rgba(255, 255, 255, 0.2) 48.58%,
      rgba(255, 255, 255, 0.2) 77.68%,
      rgba(211, 189, 136, 0.2) 105.65%
    );
}
a.active {
  background-color: #ccb16c;
  color: #000;
}
.nav-menu .submenu.active::after {
  color: #000;
}
g > circle {
  cursor: pointer;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.footer-content > div {
  flex: 1;
  max-width: 500px;
}

.contact-info,
.logo-wrapper,
.quick-links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .quick-links {
    align-items: flex-start;
    transform: translateX(5vw);
  }
}
@media (max-width: 768px) {
  .quick-links {
    align-items: center;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* For WebKit-based browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #ccb16c; /* Set the color of the scrollbar thumb */
  border-radius: 5px; /* Optional: round the edges of the thumb */
}

::-webkit-scrollbar-track {
  background-color: #e6ded4; /* Set the color of the scrollbar track */
}
textarea {
  resize: none;
}
.text p {
  font-family: Lato;
  font-size: 24px;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.activex {
  color: #ccb16c !important;
}
/* For Firefox */
/* scrollbar-width: thin;
scrollbar-color: #ccb16c #e6ded4;  */
nav.nav.scrolled > .nav-logo {
  filter: brightness(0) saturate(100%) invert(76%) sepia(61%) saturate(286%)
    hue-rotate(2deg) brightness(85%) contrast(88%);
}
