@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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: var(--scroll-margin, 100px);
}
.container {
  margin: 0 auto;
  padding: 1rem 5rem;
}
@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;
}
.header {
  width: 100%;
  max-width: 2560px;
  min-height: 800px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 48em) {
  .header {
    min-height: 600px;
  }
}
.header .header_overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #184a42cc;
}
.header .header_content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
  text-align: center;
}
@media (max-width: 37.5em) {
  .header .header_content {
    padding: 0 1rem;
  }
}
.header .header_content .header_text {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.header .header_content .header_text h1,
.header .header_content .header_text p {
  color: var(--off-white);
}
.header .header_content .header_text h1 {
  font-size: calc(3.5rem * var(--font-multiplier));
  font-weight: var(--fw-800);
  line-height: 1.2;
}
@media (max-width: 37.5em) {
  .header .header_content .header_text h1 {
    font-size: calc(1.5rem * var(--font-multiplier));
  }
}
.header .header_content .header_text p {
  font-size: var(--heading-3);
}
@media (max-width: 37.5em) {
  .header .header_content .header_text p {
    font-size: var(--mobile-body);
  }
}
@media (max-width: 64em) {
  .header .header_content .header_text {
    max-width: 100%;
  }
}
.header .header_content .header_cta {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 37.5em) {
  .header .header_content .header_cta {
    gap: 1rem;
  }
}
.header .header_content .header_cta .btn {
  background-color: var(--primary);
  color: var(--off-white);
  padding: 1rem 3rem;
  font-weight: var(--fw-400);
  border: 1px solid transparent;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 37.5em) {
  .header .header_content .header_cta .btn {
    padding: 0.6rem 1.5rem;
  }
}
.header .header_content .header_cta .btn:hover,
.header .header_content .header_cta .btn:active,
.header .header_content .header_cta .btn:focus {
  background-color: transparent;
  border: 1px solid var(--primary);
}
.header .header_content .header_cta .btn-outline {
  padding: 1rem 3rem;
  border: 1px solid var(--primary);
  color: var(--off-white);
  transition: all ease-in-out 0.35s;
}
@media (max-width: 37.5em) {
  .header .header_content .header_cta .btn-outline {
    padding: 0.6rem 1.5rem;
  }
}
.header .header_content .header_cta .btn-outline:hover,
.header .header_content .header_cta .btn-outline:active,
.header .header_content .header_cta .btn-outline:focus {
  background-color: var(--primary);
}
.services_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  margin-top: 7rem;
}
.services_wrapper .service_header_text {
  text-align: center;
}
.services_wrapper .service_header_text h1 {
  font-size: calc(1.5rem * var(--font-multiplier));
}
.services_wrapper .service_header_text hr {
  margin-top: 1rem;
}
.services_wrapper .service_wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 48em) {
  .services_wrapper .service_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.services_wrapper .service_wrapper .service {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid transparent;
  padding: 0 1rem;
  transition: all ease-in-out 0.4s;
  text-align: center;
}

@media (max-width: 48em) {
  .services_wrapper .service_wrapper .service {
    text-align: center;
    align-items: center;
    padding: 1rem;
  }
}
.services_wrapper .service_wrapper .service .icon_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  padding: 1.2rem;
  border-radius: 50%;
}
@media (max-width: 48em) {
  .services_wrapper .service_wrapper .service .icon_wrapper {
    width: 80px;
    height: 80px;
  }
}
.services_wrapper .service_wrapper .service .icon_wrapper svg {
  width: calc(5rem * var(--font-multiplier));
  color: var(--secondary);
}
.services_wrapper .service_wrapper .service h3 {
  font-size: 20px;
}
.services_wrapper .service_wrapper .service a {
  text-align: center;
  width: 50%;
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--primary);
  color: var(--secondary);
  font-size: var(--fw-800);
  transition: all ease-in-out 0.35s;
}

@media (max-width: 48em) {
  .services_wrapper .service_wrapper .service a {
    width: 60%;
  }
}
.services_wrapper .service_wrapper .service a:hover,
.services_wrapper .service_wrapper .service a:active,
.services_wrapper .service_wrapper .service a:focus {
  color: var(--off-white);
  background-color: var(--primary);
}
.services_wrapper .service_wrapper .service:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px #0000001a;
}
.listings {
  margin-top: 7rem;
}
.listings .listing_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.listings .listing_wrapper .special_offer p {
  margin-top: 5rem;
  margin-bottom: 5rem;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 37.5em) {
  .listings .listing_wrapper .special_offer p {
    font-size: 0.925rem;
  }
}
.listings .listing_wrapper .listing_header {
  text-align: center;
  margin-bottom: 3rem;
}
.listings .listing_wrapper .listing_header h3 {
  font-size: calc(1.5rem * var(--font-multiplier));
}
.listings .listing_wrapper .listings_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 48em) {
  .listings .listing_wrapper .listings_wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.listings .listing_wrapper .listings_wrapper .card {
  max-width: 400px;
  padding: 1.2rem;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  transition: all ease-in-out 0.4s;
}
@media (max-width: 37.5em) {
  .listings .listing_wrapper .listings_wrapper .card {
    max-width: 330px;
  }
}
@media (max-width: 48em) {
  .listings .listing_wrapper .listings_wrapper .card {
    max-width: 330px;
  }
}
@media (max-width: 64em) {
  .listings .listing_wrapper .listings_wrapper .card {
    max-width: 290px;
  }
}
.listings .listing_wrapper .listings_wrapper .card:hover {
  box-shadow: 0 5px 5px #0000001a;
}
.listings .listing_wrapper .listings_wrapper .card .card_img img {
  max-width: 350px;
  border-radius: 5px;
}
@media (max-width: 64em) {
  .listings .listing_wrapper .listings_wrapper .card .card_img img {
    max-width: 250px;
  }
}
.listings .listing_wrapper .listings_wrapper .card .card_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}
.listings .listing_wrapper .listings_wrapper .card .card_text span {
  font-size: 12px;
  color: var(--primary);
}
.listings .listing_wrapper .listings_wrapper .card .card_text h3 {
  font-size: calc(0.9rem * var(--font-multiplier));
  font-weight: 600;
}
.listings .listing_wrapper .listings_wrapper .card .card_text .card_details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.6rem;
}
.listings
  .listing_wrapper
  .listings_wrapper
  .card
  .card_text
  .card_details
  .price {
  font-weight: 800;
  font-size: calc(0.6rem * var(--font-multiplier));
}
.listings
  .listing_wrapper
  .listings_wrapper
  .card
  .card_text
  .card_details
  .price
  span {
  font-size: 10px;
  font-weight: var(--fw-400);
}
.listings
  .listing_wrapper
  .listings_wrapper
  .card
  .card_text
  .card_details
  .amernities {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.listings
  .listing_wrapper
  .listings_wrapper
  .card
  .card_text
  .card_details
  .amernities
  .bed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}
.listings .listing_wrapper .listings_wrapper .card .card_text a {
  display: block;
  text-align: center;
  font-size: 16px;
  background-color: var(--primary);
  padding: 1rem 3rem;
  border: 2px solid var(--primary);
  color: var(--off-white);
  font-weight: 400;
  transition: all ease-in-out 0.35s;
}
@media (max-width: 37.5em) {
  .listings .listing_wrapper .listings_wrapper .card .card_text a {
    padding: 1rem 1.5rem;
  }
}
.listings .listing_wrapper .listings_wrapper .card .card_text a:hover,
.listings .listing_wrapper .listings_wrapper .card .card_text a:active,
.listings .listing_wrapper .listings_wrapper .card .card_text a:focus {
  color: var(--primary);
  background-color: var(--off-white);
}
.contact {
  position: relative;
  background-image: url(../images/contactbg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .contact_overlay {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #184a42cc;
}
.contact .contact_content {
  position: relative;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--off-white);
  margin-top: 7rem;
}
.contact .contact_content .contact_header {
  margin-top: 7rem;
}
.contact .contact_content .contact_header h3 {
  font-size: 32px;
  text-align: center;
}
.contact .contact_content .contact_content_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}
@media (max-width: 48em) {
  .contact .contact_content .contact_content_wrapper {
    display: flex;
    flex-direction: column;
  }
}
.contact .contact_content .contact_content_wrapper .contact_details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact .contact_content .contact_content_wrapper .contact_details .location {
  margin-top: 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .location
  #map {
  height: 500px;
  max-width: 700px;
}
@media (max-width: 64em) {
  .contact
    .contact_content
    .contact_content_wrapper
    .contact_details
    .location
    #map {
    max-width: 400px;
    height: 500px;
  }
}
@media (max-width: 37.5em) {
  .contact
    .contact_content
    .contact_content_wrapper
    .contact_details
    .location
    #map {
    max-width: 300px;
    height: 300px;
  }
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .phone
  a {
  font-size: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .phone
  a:hover,
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .phone
  a.active {
  color: var(--primary);
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .email {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .email
  a {
  font-size: 1rem;
}
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .email
  a:hover,
.contact
  .contact_content
  .contact_content_wrapper
  .contact_details
  .contact_detail
  .email
  a.active {
  color: var(--primary);
}
.contact .contact_content .contact_content_wrapper form {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
@media (max-width: 48em) {
  .contact .contact_content .contact_content_wrapper form {
    width: 100%;
    margin-top: 3rem;
  }
}
.contact .contact_content .contact_content_wrapper form .input {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact .contact_content .contact_content_wrapper form .input .error {
  border: 2px solid var(--error);
}
.contact .contact_content .contact_content_wrapper form .input .outline:focus {
  outline: 1px solid var(--error);
  outline-offset: 1px;
}
.contact .contact_content .contact_content_wrapper form .input input {
  padding: 1rem;
  background-color: transparent;
  outline: none;
  border: 2px solid var(--off-white);
  color: var(--off-white);
}
.contact .contact_content .contact_content_wrapper form .input input:focus,
.contact .contact_content .contact_content_wrapper form .input input:active {
  outline: 1px solid var(--off-white);
  outline-offset: 1px;
}
.contact .contact_content .contact_content_wrapper form .input textarea {
  font-family: Montserrat, sans-serif;
  color: var(--gray);
  padding: 1.5rem 1rem;
  background-color: transparent;
  outline: none;
  border: 2px solid var(--off-white);
  color: var(--off-white);
}
.contact .contact_content .contact_content_wrapper form .input textarea:focus,
.contact .contact_content .contact_content_wrapper form .input textarea:active {
  outline: 1px solid var(--off-white);
  outline-offset: 1px;
}
.contact .contact_content .contact_content_wrapper form .input span {
  font-size: 12px;
  font-style: italic;
  color: var(--error);
  font-weight: 600;
}
.contact .contact_content .contact_content_wrapper form button {
  display: block;
  text-align: center;
  font-size: 40px;
  background-color: var(--primary);
  padding: 1.7rem 3rem;
  border: 2px solid var(--primary);
  color: var(--off-white);
  font-size: var(--fw-800);
}
@media (max-width: 37.5em) {
  .contact .contact_content .contact_content_wrapper form button {
    padding: 1rem 2.5rem;
  }
}
.contact .contact_content .contact_content_wrapper form button:hover,
.contact .contact_content .contact_content_wrapper form button:active,
.contact .contact_content .contact_content_wrapper form button:focus {
  color: var(--off-white);
  background-color: transparent;
}
.footer .footer_wrapper {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding-top: 3rem;
}
.footer .footer_wrapper .company {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer_links {
  width: 30%;
}
.footer .footer_links .footer_link_container {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}
.footer .footer_links .footer_link_container .footer_link {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}
.footer .footer_socials {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 5rem;
}
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;
}
.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);
}
.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;
}
.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);
}
