@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;
}
.subscribe {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.subscribe .subscribe_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
.subscribe .subscribe_wrapper .social_header h3 {
  font-size: calc(1rem * var(--font-multiplier));
}
.subscribe .subscribe_wrapper .contact_socials {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 48em) {
  .subscribe .subscribe_wrapper .contact_socials {
    display: flex;
    flex-direction: column;
  }
}
.subscribe .subscribe_wrapper .contact_socials .social_card {
  width: 50%;
  padding: 2rem;
  border: 2px solid var(--secondary);
  transition: all ease-in-out 0.35s;
}
@media (max-width: 48em) {
  .subscribe .subscribe_wrapper .contact_socials .social_card {
    width: 100%;
  }
}
.subscribe .subscribe_wrapper .contact_socials .social_card:hover {
  transform: translateY(-5%);
  box-shadow: 2px 5px 10px 1px #0000001a;
}
.subscribe .subscribe_wrapper .contact_socials .social_card .c_title .email {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subscribe
  .subscribe_wrapper
  .contact_socials
  .social_card
  .c_title
  .email
  a:hover {
  color: var(--primary);
}
.subscribe
  .subscribe_wrapper
  .contact_socials
  .social_card
  .c_title
  .social_media,
.subscribe .subscribe_wrapper .contact_socials .social_card .c_title .phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subscribe
  .subscribe_wrapper
  .contact_socials
  .social_card
  .c_title
  .phone
  a:hover {
  color: var(--primary);
}
.pdf {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 7rem;
}
.pdf .pdf_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pdf .pdf_wrapper h3 {
  font-size: clamp(18px, 5vh, 1.12rem);
}
.pdf .pdf_wrapper a {
  max-width: 230px;
  padding: 1rem;
  background-color: var(--primary);
  font-size: 1rem;
  color: var(--off-white);
  border: 2px solid transparent;
}
.pdf .pdf_wrapper a:hover,
.pdf .pdf_wrapper a:active {
  background-color: var(--off-white);
  color: var(--secondary);
  border: 2px solid var(--primary);
}
.contact_section {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.contact_section .contact_wrapper {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 2rem;
}
@media (max-width: 48em) {
  .contact_section .contact_wrapper {
    display: flex;
    flex-direction: column;
  }
}
.contact_section .contact_wrapper .l_contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
.contact_section .contact_wrapper .l_contact .map_container {
  margin-top: 2rem;
  overflow: hidden;
}
@media (max-width: 48em) {
  .contact_section .contact_wrapper .l_contact {
    width: 100%;
  }
}
.contact_section .contact_wrapper .l_contact h2 {
  font-size: 32px;
}
.contact_section .contact_wrapper .l_contact p {
  width: 70%;
}
@media (max-width: 48em) {
  .contact_section .contact_wrapper .l_contact p {
    width: 100%;
  }
}
.contact_section .contact_wrapper .r_contact {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 48em) {
  .contact_section .contact_wrapper .r_contact {
    width: 100%;
  }
}
.contact_section .contact_wrapper .r_contact form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact_section .contact_wrapper .r_contact form .error {
  border: 2px solid var(--error);
}
.contact_section .contact_wrapper .r_contact form .outline:focus {
  outline: 1px solid var(--error);
  outline-offset: 1px;
}
.contact_section .contact_wrapper .r_contact form span {
  font-size: 12px;
  font-style: italic;
  color: var(--error);
  font-weight: 600;
}
.contact_section .contact_wrapper .r_contact form input {
  padding: 1.5rem 1rem;
  background-color: transparent;
  outline: none;
  border: 2px solid var(--secondary);
}
.contact_section .contact_wrapper .r_contact form input ::placeholder {
  color: var(--gray);
}
.contact_section .contact_wrapper .r_contact form input:focus,
.contact_section .contact_wrapper .r_contact form input:active {
  outline: 1px solid var(--secondary);
  outline-offset: 1px;
}
.contact_section .contact_wrapper .r_contact form textarea {
  font-family: Montserrat, sans-serif;
  color: var(--secondary);
  padding: 1.5rem 1rem;
  background-color: transparent;
  outline: none;
  border: 2px solid var(--secondary);
}
.contact_section .contact_wrapper .r_contact form textarea:focus,
.contact_section .contact_wrapper .r_contact form textarea:active {
  outline: 1px solid var(--secondary);
  outline-offset: 1px;
}
.contact_section .contact_wrapper .r_contact form button {
  display: block;
  text-align: center;
  font-size: 20px;
  background-color: var(--primary);
  padding: 1.7rem 3rem;
  border: 2px solid var(--primary);
  color: var(--off-white);
  transition: all ease-in-out 0.35s;
}
.contact_section .contact_wrapper .r_contact form button:hover {
  color: var(--primary);
  background-color: transparent;
}
.contact_section .contact_wrapper .r_contact form button:active,
.contact_section .contact_wrapper .r_contact form button:focus {
  outline: 1px solid var(--primary);
  outline-offset: 1px;
}
.contact_section .contact_socials {
  margin-top: 7rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 48em) {
  .contact_section .contact_socials {
    display: flex;
    flex-direction: column;
  }
}
.contact_section .contact_socials .social_card {
  width: 50%;
  padding: 2rem;
  border: 2px solid var(--secondary);
  transition: all ease-in-out 0.35s;
}
@media (max-width: 48em) {
  .contact_section .contact_socials .social_card {
    width: 100%;
  }
}
.contact_section .contact_socials .social_card:hover {
  transform: translateY(-5%);
  box-shadow: 2px 5px 10px 1px #0000001a;
}
#map {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
