@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700;800&display=swap";
:root {
  --primary: #9f744e;
  --secondary: #184a42;
  --off-white: #f5f5f5;
  --gray: rgba(24, 74, 66, 0.03);
  --error: #e74646;
  --body: 16px;
  --mobile-body: 14px;
  --heading-3: 20px;
  --heading-4: 18px;
  --subtitle: 12px;
  --title: 80px;
  --font-multiplier: 1.3;
  --fw-400: 400;
  --fw-light: 300;
  --fw-800: 800;
  --footer-color: hsl(24, 74, 66, 7%);
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all ease-in-out 0.2s;
  line-height: calc(1em + 0.5rem);
}
ul,
li,
a {
  list-style: none;
  text-decoration: none;
  color: inherit;
}
button {
  outline: none;
  border: none;
  background-color: inherit;
  cursor: pointer;
}
img,
svg,
video,
frame {
  max-width: 100%;
}
hr {
  border: none;
  border-top: 3px solid var(--secondary);
  width: 600px;
}
@media (max-width: 48em) {
  hr {
    width: 300px;
  }
}
body {
  font-family: Montserrat, sans-serif;
  min-height: 100vh;
  font-weight: 400;
  font-size: var(--mobile-body);
  color: var(--secondary);
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: var(--scroll-margin, 100px);
}
.container {
  margin: 0 auto;
  padding: 1rem 7rem;
}
@media (max-width: 48em) {
  .container {
    padding: 1rem;
  }
}
@media (max-width: 64em) {
  .container {
    padding: 1rem 1.3rem;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
}
::-webkit-input-placeholder {
  color: #91979e;
}
nav {
  position: sticky;
  top: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 5px 5px #0000001a;
  z-index: 900;
  overflow-x: hidden;
}
nav .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
nav .nav .brand_logo a img {
  width: 3rem;
}
nav .nav button {
  width: 2rem;
  transition: all ease-in-out 0.35s;
  display: none;
  z-index: 100;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
}
@media (max-width: 48em) {
  nav .nav button {
    display: flex;
    flex-direction: column;
  }
}
nav .nav button .second_line {
  opacity: 0;
}
nav .nav button .first_active {
  transform: rotate(45deg);
  position: absolute;
}
nav .nav button .third_active {
  position: absolute;
  transform: rotate(-45deg);
}
nav .nav button span {
  display: inline-flex;
  width: 1.6rem;
  height: 3px;
  background-color: var(--secondary);
}
nav .nav .nav_links[data-visible="true"] {
  transform: translate(0);
  display: block;
}
nav .nav .nav_links {
  overflow-x: hidden;
}
@media (max-width: 48em) {
  nav .nav .nav_links {
    height: 100%;
    position: fixed;
    display: none;
    background-color: var(--off-white);
    top: 0;
    right: 0;
    bottom: 0;
    left: 20%;
    box-shadow: 5px 3px 5px #0000001a;
    z-index: 99;
    transform: translate(100%);
  }
}
nav .nav .nav_links ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 48em) {
  nav .nav .nav_links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 7rem 2rem 2rem;
  }
}
nav .nav .nav_links ul li a {
  color: var(--secondary);
  transition: color ease-in-out 0.3s;
}
nav .nav .nav_links ul li a:hover,
nav .nav .nav_links ul li a:focus {
  color: var(--primary);
}
nav .nav .nav_links .social_links_inline {
  display: none;
}
@media (max-width: 48em) {
  nav .nav .nav_links .social_links_inline {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
}
nav .nav .nav_links .social_links_inline .social_media_inline {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
nav .nav .social_links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 64em) {
  nav .nav .social_links {
    display: none;
  }
}
nav .nav .social_links .social_media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  border-right: 2px solid var(--secondary);
}
nav .nav .social_links .social_media a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
nav .nav .social_links .social_media a > svg:hover,
nav .nav .social_links .social_media a > svg:active {
  fill: var(--primary);
}
nav .nav .social_links .phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.9rem;
}
nav .nav .social_links .phone:hover {
  background-color: var(--secondary);
  color: var(--off-white);
}
.overlay[aria-expanded="true"] {
  display: block;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #184a42cc;
}
.footer {
  background-color: var(--gray);
}
.footer .footer_wrapper {
  display: flex;
  flex-direction: row;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 3rem;
  padding-bottom: 7rem;
  gap: 1rem;
}
@media (max-width: 48em) {
  .footer .footer_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.footer .footer_wrapper .company {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 48em) {
  .footer .footer_wrapper .company {
    width: 100%;
  }
}
.footer .footer_wrapper .company h4 {
  font-size: calc(8px * var(--font-multiplier));
}
.footer .footer_links {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 20%;
}
@media (max-width: 64em) {
  .footer .footer_links {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .footer .footer_links {
    width: 100%;
  }
}
.footer .footer_links .links_header h4 {
  font-size: 16px;
}
.footer .footer_links .links_header hr {
  width: 220px;
}
.footer .footer_links .footer_link_container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer .footer_links .footer_link_container .footer_link {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  transition: all ease-in-out 0.35s;
}
.footer .footer_links .footer_link_container .footer_link a:hover,
.footer .footer_links .footer_link_container .footer_link a:active {
  color: var(--primary);
}
.footer .footer_socials {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 48em) {
  .footer .footer_socials {
    width: 100%;
  }
}
.footer .footer_socials .social_icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer .footer_socials .social_icons img {
  width: 1.6rem;
}
.policy {
  margin-top: 3rem;
  margin-bottom: 7rem;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.policy .link {
  padding: 1rem;
  max-width: 200px;
  background-color: var(--primary);
  border: 2px solid transparent;
  color: var(--off-white);
  margin-bottom: 3rem;
}
.policy .link:hover,
.policy .link:active {
  background-color: var(--off-white);
  border: 2px solid var(--primary);
  color: var(--secondary);
}
.policy .section ul li {
  padding: 5px 1rem;
  list-style: inside;
  margin-block: 10px;
}

.btn {
  padding: 1rem;
  max-width: 200px;
  background-color: var(--primary);
  border: 2px solid transparent;
  color: var(--off-white);
  margin-bottom: 3rem;
}

.btn:hover,
.btn:active {
  background-color: var(--off-white);
  border: 2px solid var(--primary);
  color: var(--secondary);
}

.policy h1 {
  margin: 1.3rem 0;
}

.policy h2 {
  margin: 1.3rem 0;
}

.policy h3 {
  margin: 1.3rem 0;
}
