/*
==================================================================
==============================FOXFIELD============================
==================================================================
*/

/* 640px */  @media screen and (min-width: 40rem) {}
/* 768px */  @media screen and (min-width: 48rem) {}
/* 1024px */ @media screen and (min-width: 64rem) {}
/* 1280px */ @media screen and (min-width: 80rem) {}
/* 1536px */ @media screen and (min-width: 96rem) {}

/*
==================================================================
==============================GLOBALS=============================
==================================================================
*/

/*
    Global Fonts
*/
@font-face {
  font-family: "baskerville";
  src: url(public/fonts/baskerville_var.ttf) format("truetype");
}

@font-face {
  font-family: "inter";
  src: url(public/fonts/inter_var.ttf) format("truetype");
}

@font-face {
  font-family: "montserrat";
  src: url(public/fonts/montserrat_var.ttf) format("truetype");
}

@font-face {
  font-family: "libre_baskerville";
  src: url(public/fonts/libre_baskerville_var.ttf) format("truetype");
}

@font-face {
  font-family: "playfair_display";
  src: url(public/fonts/playfair_display_var.ttf) format("truetype");
}

/*
    Base Styling
*/
:root {
  /* Colours */
  --lavender: rgb(112 105 147);
  --dark-lavender: rgb(101 95 132);
  --almond:   rgb(248 235 222);
  --pumpkin:  rgb(247 148 29);
  --salmon:   rgb(237 105 115);
  --navy:     rgb(6 31 52);

  /* Sizes */
  --notibar-height: 36px;
  --navbar-height:  80px;

  /* Text */
  --text-xs:    0.75rem;  /* 12px  */
  --text-sm:    0.875rem; /* 14px  */
  --text-base:  1rem;     /* 16px  */
  --text-lg:    1.125rem; /* 18px  */
  --text-xl:    1.25rem;  /* 20px  */
  --text-2xl:   1.5rem;   /* 24px  */
  --text-3xl:   1.875rem; /* 30px  */
  --text-4xl:   2.25rem;  /* 36px  */
  --text-5xl:   3rem;     /* 48px  */
  --text-6xl:   3.75rem;  /* 60px  */
  --text-7xl:   4.5rem;   /* 72px  */
  --text-8xl:   6rem;     /* 96px  */
  --text-9xl:   8rem;     /* 128px */

  /* Line height */
  --text-xs--line-height:   calc(1 / var(--text-xs));
  --text-sm--line-height:   calc(1.25 / var(--text-sm));
  --text-base--line-height: calc(1.5 / var(--text-base));
  --text-lg--line-height:   calc(1.75 / var(--text-lg));
  --text-xl--line-height:   calc(1.75 / var(--text-xl));
  --text-2xl--line-height:  calc(2 / var(--text-2xl));
  --text-3xl--line-height:  calc(2.25 / var(--text-3xl));
  --text-4xl--line-height:  calc(2.5 / var(--text-4xl));
  --text-5xl--line-height:  1;
  --text-6xl--line-height:  1;
  --text-7xl--line-height:  1;
  --text-8xl--line-height:  1;
  --text-9xl--line-height:  1;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
    Text
*/
h1, h2, h3, h4 {
  font-family: "libre_baskerville", serif;
  font-weight: 500;
  color: white;
  margin: 0;
}

h1 {
  font-size: var(--text-3xl);
  line-height: var(--text-3xl--line-height);
}
/* 768px */ @media screen and (min-width: 48rem) {
  h1 {
    font-size: var(--text-5xl);
    line-height: var(--text-5xl--line-height);
  }
}
/* 1280px */ @media screen and (min-width: 80rem) {
  h1 {
    font-size: var(--text-6xl);
    line-height: var(--text-6xl--line-height);
  }
}

h2 {
  font-size: var(--text-2xl);
  line-height: var(--text-2xl--line-height);
}
/* 768px */ @media screen and (min-width: 48rem) {
  h2 {
    font-size: var(--text-3xl);
    line-height: var(--text-3xl--line-height);
  }
}
/* 1280px */ @media screen and (min-width: 80rem) {
  h2 {
    font-size: var(--text-4xl);
    line-height: var(--text-4xl--line-height);
  }
}

h3 {
  font-size: var(--text-lg);
  line-height: var(--text-lg--line-height);
}

h4 {
  font-size: var(--text-lg)
  line-height: var(--text-lg--line-height);
}

span {
  font-family: "libre_baskerville", serif;
}

a, p, li {
  font-family: "inter", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: -0.011em;
  font-weight: 400;
  color: white;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  font-size: var(--text-base);
}
/* 768px */ @media screen and (min-width: 48rem) {
  p{
    font-size: var(--text-lg);
  }
}



ul {
  list-style-type: none;
  padding: 0;
}

/*
    Base Container
*/
.base-container {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
/* 640px */   @media screen and (min-width: 40rem) { .base-container { max-width: 40rem; } }
/* 768px */   @media screen and (min-width: 48rem) { .base-container { max-width: 48rem; } }
/* 1024px */  @media screen and (min-width: 64rem) { .base-container { max-width: 64rem; } }
/* 1280px */  @media screen and (min-width: 80rem) { .base-container { max-width: 80rem; } }
/* 1536px */  @media screen and (min-width: 96rem) { .base-container { max-width: 96rem; } }

/*header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
*/
/*
    Global Notibar
*/
.global-notibar {
  display: flex;
  align-items: center;
  height: var(--notibar-height);
  font-size: var(--text-xs);
  line-height: calc(1.25/0.875); /* from tailwind */
  font-weight: 400;
  background-color: var(--dark-lavender); /* rgba(255, 255, 255, 0.15) */
/*  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);*/
  z-index: 4;
}

.global-notibar-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
/* 1024px */ @media screen and (min-width: 64rem) {
  .global-notibar-container {
    justify-content: space-between;
  }
}

.global-notibar-left {
  display: none;
}
/* 1024px */ @media screen and (min-width: 64rem) {
  .global-notibar-left {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
  }
}

.global-notibar-left a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: white;
}

.global-notibar-left a:hover {
  color: var(--pumpkin);
}

.global-notibar-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
}
/* 1024px */ @media screen and (min-width: 64rem) {
  .global-notibar-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 24rem;
  }
}

.global-notibar-right p {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--text-xs);
}

.global-notibar-location-active {
  transform: translateY(0);
  opacity: 100;
  transition-property: all;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.global-notibar-location-hidden {
  transform: translateY(-10px);
  opacity: 0;
}

/*
    Global Navbar
*/
.base-navbar {
  position: relative; /* NOTE(tom): default postion, will change with scroll */
  display: flex;
  align-items: center;
  height: var(--navbar-height);
  width: 100%;
  top: var(--navbar-height);
  margin-top: calc(var(--navbar-height) * -1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  z-index: 3;
}

.global-navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* NOTE(tom): a tag for foxfield's logo */
.global-navbar-container .global-navbar-logo {
  width: 145px;
  height: 44px;
}

.global-navbar-menu {
  display: none;
}
/* 1024px */  @media screen and (min-width: 64rem) {
  .global-navbar-menu {
    display: flex;
    gap: 2rem;
    font-size: var(--text-base);
    line-height: 1.75rem;
    font-weight: 400;
    margin: 0;
  }
  .global-navbar-menu a {
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0 1rem 0;
  }
  .global-navbar-menu a:hover {
    color: var(--pumpkin);
  }

  .global-navbar-single {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .global-navbar-submenu-hidden {
    display: none;
  }

  .global-navbar-submenu-active {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: var(--lavender);
    margin-top: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    margin: 0;
  }
  .global-navbar-submenu-active a {
    min-width: 150px;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  }
  .global-navbar-submenu-active li:first-child a {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
  }
  .global-navbar-submenu-active li:last-child a {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
  }
  .global-navbar-submenu-active a:hover {
    background-color: var(--dark-lavender);
  }
}

/*
    Global Sidebar
*/
#global-sidebar-open {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
/* LG */  @media screen and (min-width: 64rem) {
  #global-sidebar-open {
    display: none;
  }
}
#global-sidebar-open svg {
  color: white;
  width: 28px;
  height: 28px;
}

#global-sidebar-close {
  position: relative;
  align-self: flex-end;
  padding: 1rem 1.25rem 1rem 1.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
#global-sidebar-close svg {
  color: white;
  width: 28px;
  height: 28px;
}

.global-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100vw);
  z-index: 4;
}

#global-sidebar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.3;
  z-index: 4;
  cursor: pointer;
}

.global-sidebar-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 92vw;
  height: 100vh;
  background-color: var(--dark-lavender);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
/* CUSTOM */  @media screen and (min-width: 435px) {
  .global-sidebar-menu {
    width: 100%;
    max-width: 400px;
  }
}
/* 1024px */  @media screen and (min-width: 64rem) {
  .global-sidebar-menu {
    display: none;
  }
}

.global-sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem 1rem;
}

.global-sidebar-links a {
  padding: 1rem 0 1rem 0;
  color: white;
}
.global-sidebar-links a:not(:first-child) {
  border-top: 1px solid rgba(248, 235, 222, 0.25);
}

/*
    Global Footer
*/
footer {
  width: 100%;
  background-color: #706993;
}

.global-footer-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.global-footer-content-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
/* 1024px */ @media screen and (min-width: 64rem) {
  .global-footer-content-group {
    flex-direction: row;
  }
}

#global-sra a img {
  border-radius: 0.375rem;
}

.global-footer-information {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
/*  justify-content: space-between;*/
}
/* 768px */ @media screen and (min-width: 48rem) {
  .global-footer-information {
    flex-direction: row;
  }
}
/* 1280px */ @media screen and (min-width: 80rem) {
  .global-footer-information {
    gap: 8rem;
  }
}

.global-footer-information-text-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.global-footer-information-text-group p {
  font-size: var(--text-base);
}

.global-footer-hours,
.global-footer-contact,
.global-footer-resources {
  width: 100%;
}

.global-footer-hours li,
.global-footer-contact li,
.global-footer-resources li {
  font-size: var(--text-sm);
}

#global-footer-logo {
  width: 165px;
  height: 44px;
}

.global-footer-location-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.global-footer-location-link:hover {
  cursor: pointer;
}

#global-footer-linkedin {
  width: 0.9rem;
  height: 0.9rem;
}

.global-footer-informatin svg {
  color: white;
}

.global-footer-information a:nth-child(2) {
  width: 24px;
}

.global-footer-information a:hover {
  color: var(--pumpkin);
}

.global-footer-contact li a:hover {
  color: var(--pumpkin);
}

.global-footer-resources li a:hover {
  color: var(--pumpkin);
}

.global-footer-container ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  font-size: 1rem;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.global-footer-container li {
  margin-bottom: 0.5rem;
}

.global-footer-container h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
}

/*.global-footer-container hr {
  margin: 0;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.3);
  border-left: 0;
  border-right: 0;
}*/

.global-footer-container a {
  line-height: 1.5rem;
  color: white;
}

.global-footer-list-group {
  display:flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.3);
  padding-bottom: 2rem;
}
/* 1024px */ @media screen and (min-width: 64rem) {
  .global-footer-list-group {
    flex-direction: row;
  }
}

.global-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

#global-copyright {
  font-size: var(--text-sm);
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0;
}

/*
==================================================================
=============================HOME PAGE============================
==================================================================
*/

/*
    Home Navbar
*/
.home-navbar {
  background-color: transparent;
}

.home-navbar-add-shadow-blur {
  position: fixed; /* NOTE(tom): <-- on scroll */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.home-navbar-change-colour {
  background-color: var(--navy);
}

/*
    Home Hero
*/
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-text {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(90vh - var(--notibar-height));
  width: 100%;
  z-index: 2;
}

.home-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.home-hero-container h1 {
  text-align: center;
/*  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);*/
}
/* 768px */ @media screen and (min-width: 48rem) {
  .home-hero-container h1 {
    text-align: start;
  }
}

.home-hero-heading-second-line {
  padding-left: 0;
}
/* 768px */ @media screen and (min-width: 48rem) {
  .home-hero-heading-second-line {
    padding-left: 10rem;
  }
}

.home-hero-container p {
  text-align: center;
/*  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);*/
}

/* TODO(tom): Mobile? */
.home-hero-buttons {

}
/* 768px */ @media screen and (min-width: 48rem) {
  .home-hero-buttons {
    display: flex;
    gap: 2rem;
  }
}

.home-hero-button-left {
  padding: 0.75rem 1rem 0.75rem 1rem;
  border-style: solid;
  border-radius: 0.375rem;
  border-width: 1px;
  font-size: var(--text-base);
  line-height: 1.75rem;
  background: var(--almond);
  border-color: var(--almond);
  color: var(--navy);
}
.home-hero-button-left:hover {
  cursor: pointer;
  background-color: transparent;
  color: var(--salmon);
}

.home-hero-button-right {
  padding: 0.75rem 1rem 0.75rem 1rem;
  border-style: solid;
  border-radius: 0.375rem;
  border-width: 1px;
  font-size: var(--text-base);
  line-height: 1.75rem;
  background-color: transparent;
  border-color: white;
  color: white;
}
.home-hero-button-right:hover {
  cursor: pointer;
  background-color: transparent;
  border-color: var(--salmon);
  color: var(--salmon);
}

.home-hero-overlay {
  position: absolute;
/*  background-color: black;
  opacity: 0.45;*/
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 34, 0.40) 0%,
    rgba(5, 20, 34, 0.65) 60%,
    rgba(5, 20, 34, 0.85) 100%
  );
  height: calc(90vh - var(--notibar-height));
  width: 100%;
  z-index: 1;
}



.home-hero img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: calc(90vh - var(--notibar-height));
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/*
    Home Expertise
*/
.home-expertise {
  background-color: var(--navy);
  color: white;
}

.home-expertise-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.home-expertise-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.home-expertise span {
  color: var(--almond);
  font-size: var(--text-xs);
  line-height: var(--text-sm--line-height);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-expertise p {
  max-width: 760px;
  text-align: center;
  color: white; /* rgba(248, 235, 222, 1) */
  opacity: 0.65;
  border-width: 1px;
}

.home-expertise-table {
  display: grid;
  width: 100%;
  text-align: center;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-style: solid;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: rgba(248, 235, 222, 0.4);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
/* MD */
@media screen and (min-width: 48rem) {
  .home-expertise-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* XL */
@media screen and (min-width: 80rem) {
  .home-expertise-table {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-expertise-table .cell-1,
.home-expertise-table .cell-2,
.home-expertise-table .cell-3 {
  display: flex;
  justify-content: center;
  border-style: solid;
  border-bottom-width: 1px;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-color: rgba(248, 235, 222, 0.4);
}
.home-expertise-table .cell-4 {
  display: flex;
  justify-content: center;
}
/* MD */
@media screen and (min-width: 48rem) {
  .home-expertise-table .cell-1 {
    border-right-width: 1px;
  }

  .home-expertise-table .cell-3 {
    border-right-width: 1px;
    border-bottom-width: 0;
  }
}
/* XL */
@media screen and (min-width: 80rem) {
  .home-expertise-table .cell-1 {
    border-bottom-width: 0;
  }

  .home-expertise-table .cell-2 {
    border-right-width: 1px;
    border-bottom-width: 0;
  }
}

.home-expertise-table a {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.home-expertise-table a:hover {
  background-color: #0b1d2d;
  border-radius: 0.375rem;
}

.home-expertise-table svg {
  opacity: 1;
  height: 3.375rem;
  width: 3.375rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  border: 1px;
  border-style: solid;
  border-color: var(--pumpkin);
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.home-expertise-table .cell-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.home-expertise-table .cell-text h3 {
  min-height: 3.5rem;
  color: white; /* rgba(248, 235, 222, 1) */
  margin: 0;
  margin-bottom: 0.75rem;
}

.home-expertise-table .cell-text p {
  color: white; /* rgba(248, 235, 222, 1) */
  font-size: var(--text-base);
}

.home-expertise-table .cell-button {
  border-style: none;
  font-size: var(--text-base);
  line-height: 1.75rem;
  background-color: transparent;
  color: var(--almond);
}
.home-expertise-table .cell-button span.arrow {
  display: inline-block;
}
.home-expertise-table a:hover .cell-button {
  cursor: pointer;
}

.cell-1 a:hover .cell-button span.arrow,
.cell-2 a:hover .cell-button span.arrow,
.cell-3 a:hover .cell-button span.arrow,
.cell-4 a:hover .cell-button span.arrow {
  transform: translateX(6px);
}

.home-expertise-button {
  padding: 0.75rem 1rem 0.75rem 1rem;
  border-style: solid;
  border-radius: 0.375rem;
  border-width: 1px;
  font-size: var(--text-base);
  line-height: 1.75rem;
  background: var(--salmon);
  border-color: var(--salmon);
  color: white;
}
.home-expertise-button:hover {
  cursor: pointer;
  background-color: transparent;
  border-color: var(--salmon);
  color: var(--salmon);
}

/*
    Home Locations
*/
.home-locations {
  background-color: var(--almond);
  color: var(--navy);
}

.home-locations-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
/* XL */
@media screen and (min-width: 80rem) {
  .home-locations-container {
    flex-direction: row; /* NOTE(tom): row */
  }
}

.home-locations-container .left,
.home-locations-container .right {
  flex-basis: auto;
  width: 100%;
}

.home-locations .home-locations-container .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
/* XL */
@media screen and (min-width: 80rem) {
  .home-locations .home-locations-container .left {
    align-items: flex-start; /* NOTE(tom): flex-start */
    text-align: start;
  }
}

.home-locations .home-locations-container .left span {
  color: var(--salmon);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: var(--text-sm--line-height);
}

.home-locations .home-locations-container .left h2 {
  color: var(--navy);
}

.home-locations .home-locations-container .left .left-paragraph {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-locations .home-locations-container .left p {
  max-width: 760px;
  color: rgba(6, 31, 52, 0.65);
}

.home-locations-button {
  padding: 0.75rem 1rem 0.75rem 0;
  border-style: none;
  background-color: transparent;
  font-size: var(--text-base);
  line-height: 1.75rem;
  color: var(--salmon);
}
.home-locations-button:hover {
  cursor: pointer;
}

#map {
  height: 300px;
  border-radius: 0.375rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  z-index: 1;
}
/* 768px */ @media screen and (min-width: 48rem) {
  #map {
    height: 450px;
  }
}

/*
==================================================================
============================OTHER PAGES===========================
==================================================================
*/

/*
    Other Navbar
*/
.other-navbar {
  background-color: var(--navy);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/*
    Other Introduction 1
*/
.other-intro-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  margin-top: var(--navbar-height);
}

.other-intro-text-1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 50vh;
  width: 100%;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.other-intro-text-1 h1 {
  font-size: var(--text-5xl);
  line-height: 1.25; /* TODO(tom): check this and the media queries */
  text-align: center;
  font-weight: 500;
  margin: 0;
}

.other-intro-text-1 p {
  text-align: center;
  max-width: 760px;
}

.other-intro-overlay-1 {
  position: absolute;
  background-color: black;
  opacity: 0.35;
  height: 50vh;
  width: 100%;
  z-index: 1;
}

.other-intro-1 img {
  object-fit: cover;
  width: 100%;
  height: 50vh;
}

/*
    Other Introduction 2
*/
.other-intro-2 {
  margin-top: var(--navbar-height);
  width: 100%;
  background-color: var(--navy);
}

.other-intro-container-2 {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* XL */
@media screen and (min-width: 80rem) {
  .other-intro-container-2  {
    flex-direction: row;
  }
}

.other-intro-left-2,
.other-intro-right-2 {
  flex-basis: auto;
  width: 100%;
}

.other-intro-text-2 span {
  color: var(--salmon);
}

.other-intro-2 img {
  display: block;
  width: 100%;
  height: 426px;
  border-radius: 0.375rem;
}

.other-info {
  background-color: white;
}

.other-info-container {
  padding-top: 6rem;
  padding-bottom: 6rem;
  max-width: 990px;
}

.other-info p {
  color: var(--navy);
}