/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.otf") format("opentype"), url("../fonts/gotham/GOTHAM-LIGHT.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-LightItalic.otf") format("opentype"), url("../fonts/gotham/GOTHAM-LIGHTITALIC.TTF") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham Book Italic.otf") format("opentype"), url("../fonts/gotham/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Medium.otf") format("opentype"), url("../fonts/gotham/GOTHAM-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-MediumItalic.otf") format("opentype"), url("../fonts/gotham/GOTHAM-MEDIUMITALIC.TTF") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/GOTHAM-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-BoldItalic.otf") format("opentype"), url("../fonts/gotham/GOTHAM-BOLDITALIC.TTF") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/GOTHAM-BLACK.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/GOTHAM-BLACKITALIC.TTF") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
.link-arrow {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.link-arrow:hover, .link-arrow:focus, .link-arrow:active {
  text-decoration: none;
}
.link-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.link-arrow--light {
  color: #333333;
}
.link-arrow--light:hover, .link-arrow--light:focus {
  color: #0066cc;
}
.link-arrow--dark {
  color: #ffffff;
}
.link-arrow--dark:hover, .link-arrow--dark:focus {
  color: #ffffff;
  opacity: 0.9;
}
.link-arrow:hover, .link-arrow:focus {
  color: #0066cc;
}
.link-arrow:hover::after, .link-arrow:focus::after {
  transform: translateX(4px);
}
.link-arrow:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 4px;
}
.link-arrow[aria-disabled=true], .link-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.link-arrow--left::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 8px;
}
.link-arrow--left:hover::after {
  transform: rotate(180deg);
}
.link-arrow--left::after {
  margin-left: 0;
  margin-right: 8px;
}
.link-arrow--left:hover::after, .link-arrow--left:focus::after {
  transform: translateX(-4px) rotate(180deg);
}

.link-arrow--small {
  font-size: 14px;
}
.link-arrow--small::after {
  width: 0.5em;
  height: 0.5em;
}

.link-arrow--large {
  font-size: 18px;
}
.link-arrow--large::after {
  width: 0.7em;
  height: 0.7em;
}

.btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.btn:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.btn:disabled, .btn[aria-disabled=true], .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #000000;
  border-color: #000000;
}

.btn--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #cccccc;
}
.btn--outline:hover, .btn--outline:focus {
  border-color: #000000;
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--ghost {
  background-color: transparent;
  color: #000000;
  border: 2px solid transparent;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--light {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--light:hover, .btn--light:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--light-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--light-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--light-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--light-arrow:hover, .btn--light-arrow:focus {
  background-color: #2c3e36;
  color: #e3b08c;
  transform: none;
  box-shadow: none;
}
.btn--light-arrow:hover::after, .btn--light-arrow:focus::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(15%) saturate(1000%) hue-rotate(340deg) brightness(110%);
}
.btn--light-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--dark:hover, .btn--dark:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--dark-arrow {
  background-color: #e3b08c;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 10px;
}
.btn--dark-arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--dark-arrow::after {
  width: 18px;
  height: 18px;
  margin-left: 0;
  filter: none;
  transition: filter 0.2s ease-in-out;
}
.btn--dark-arrow:hover, .btn--dark-arrow:focus {
  background-color: #eae0cf;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--dark-arrow:hover::after, .btn--dark-arrow:focus::after {
  filter: none;
}
.btn--dark-arrow:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--beige {
  background-color: #eae0cf;
  color: #2c3e36;
  border: none;
  border-radius: 59px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--beige:hover, .btn--beige:focus {
  background-color: #e3b08c;
  color: #2c3e36;
  transform: none;
  box-shadow: none;
}
.btn--beige:active {
  transform: none;
  box-shadow: none;
  opacity: 0.9;
}

.btn--small {
  padding: 8px 24px;
  font-size: 14px;
}

.btn--large {
  padding: 24px 40px;
  font-size: 18px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  gap: 8px;
}
.btn--icon svg,
.btn--icon .icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

.btn--arrow::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M9.75 18.75C14.7206 18.75 18.75 14.7206 18.75 9.75C18.75 4.77944 14.7206 0.75 9.75 0.75C4.77944 0.75 0.75 4.77944 0.75 9.75C0.75 14.7206 4.77944 18.75 9.75 18.75Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.75 12.75L13.75 9.75M13.75 9.75L10.75 6.75M13.75 9.75L5.75 9.75' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn--arrow::after {
  margin-left: 8px;
}
.btn--arrow:hover::after, .btn--arrow:focus::after {
  transform: translateX(4px);
}
.btn--arrow.btn--dark::after, .btn--dark .btn--arrow::after {
  filter: brightness(0) invert(1);
}

.btn-group {
  display: inline-flex;
  gap: 8px;
}
.btn-group .btn {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  position: relative;
  padding: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out, font-weight 0.2s ease-in-out;
}
.nav-link:hover, .nav-link:focus, .nav-link:active {
  text-decoration: none;
}
.nav-link:hover, .nav-link:focus, .nav-link.active, .nav-link[aria-current=page] {
  color: #e3b08c;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 25%;
  text-decoration-thickness: 1px;
}
.nav-link:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-link--light {
  color: #333333;
}
.nav-link--light:hover, .nav-link--light:focus, .nav-link--light.active, .nav-link--light[aria-current=page] {
  color: #e3b08c;
}

.nav-link--dark {
  color: #eae0cf;
}
.nav-link--dark:hover, .nav-link--dark:focus, .nav-link--dark.active, .nav-link--dark[aria-current=page] {
  color: #e3b08c;
}

.nav-link--minimal::after {
  display: none;
}
.nav-link--minimal:hover, .nav-link--minimal:focus {
  opacity: 0.8;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.nav-list--horizontal {
  flex-direction: row;
}
.nav-list--vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.nav-list--vertical .nav-link {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.nav-list--vertical .nav-link::after {
  left: 0;
  right: 0;
}
.nav-list--center {
  justify-content: center;
}
.nav-list--spaced {
  gap: 24px;
}

.nav-item {
  margin: 0;
}
.nav-item--has-dropdown {
  position: relative;
}

.site-header {
  background-color: #2c3e36;
  height: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .site-header {
    height: auto;
    min-height: 120px;
    padding: 15px 0;
  }
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .site-header .container {
    padding: 0 30px;
  }
}
.site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 31px 0;
}
@media (max-width: 767px) {
  .site-header__content {
    flex-direction: row;
    gap: 20px;
    padding: 30px 0;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo .custom-logo {
  width: auto;
  max-width: 177px;
  display: block;
}
.site-header__logo .site-header__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #eae0cf;
  display: block;
  line-height: 57px;
}
.site-header__logo .site-header__logo-text:hover, .site-header__logo .site-header__logo-text:focus, .site-header__logo .site-header__logo-text:active {
  text-decoration: none;
}
.site-header__logo .site-header__logo-text:hover {
  opacity: 0.9;
}
.site-header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav--desktop .nav-list {
  gap: 60px;
  height: 27px;
  align-items: center;
}
@media (max-width: 1023px) {
  .site-header__nav--desktop .nav-list {
    gap: 24px;
  }
}
.site-header__nav--desktop .nav-list .nav-link {
  color: #eae0cf;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  height: 24px;
  white-space: nowrap;
}
.site-header__nav--desktop .nav-list .nav-link::after {
  display: none;
}
.site-header__nav--desktop .nav-list .nav-link:hover, .site-header__nav--desktop .nav-list .nav-link:focus, .site-header__nav--desktop .nav-list .nav-link.active, .site-header__nav--desktop .nav-list .nav-link[aria-current=page] {
  color: #e3b08c;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 25%;
  text-decoration-thickness: 1px;
}
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 52px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 767px) {
  .site-header__burger {
    display: flex;
  }
}
.site-header__burger-line {
  width: 100%;
  height: 5px;
  background-color: #eae0cf;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -12px);
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2C3E36;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  overflow-y: auto;
}
.site-header__mobile-menu[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.site-header__mobile-menu-header {
  display: flex;
  align-items: center;
  padding: 32px 30px 0 30px;
}
@media (max-width: 319px) {
  .site-header__mobile-menu-header {
    padding: 40px 20px 0 20px;
  }
}
.site-header__mobile-logo {
  flex-shrink: 0;
  height: 57px;
}
.site-header__mobile-logo .custom-logo {
  height: 57px;
  width: auto;
  max-width: 177px;
  display: block;
}
.site-header__mobile-logo .site-header__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5EFE1;
  display: block;
  height: 57px;
  line-height: 57px;
}
.site-header__mobile-logo .site-header__logo-text:hover, .site-header__mobile-logo .site-header__logo-text:focus, .site-header__mobile-logo .site-header__logo-text:active {
  text-decoration: none;
}
.site-header__mobile-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px 60px 30px;
}
@media (max-width: 319px) {
  .site-header__mobile-nav {
    padding: 0 20px 40px 20px;
  }
}
.site-header__mobile-nav .nav-list--mobile {
  gap: 80px;
  align-items: center;
}
@media (max-width: 319px) {
  .site-header__mobile-nav .nav-list--mobile {
    gap: 24px;
  }
}
.site-header__mobile-nav .nav-list .nav-link--mobile {
  color: #F5EFE1;
  font-size: 28px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  padding: 0;
  white-space: nowrap;
}
.site-header__mobile-nav .nav-list .nav-link--mobile::after {
  display: none;
}
.site-header__mobile-nav .nav-list .nav-link--mobile:hover, .site-header__mobile-nav .nav-list .nav-link--mobile:focus, .site-header__mobile-nav .nav-list .nav-link--mobile.active, .site-header__mobile-nav .nav-list .nav-link--mobile[aria-current=page] {
  color: #F5EFE1;
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 319px) {
  .site-header__mobile-nav .nav-list .nav-link--mobile {
    font-size: 35px;
    line-height: 42px;
  }
}

.site-footer {
  background-color: #2c3e36;
  color: #eae0cf;
  padding: 60px 90px;
}
@media (max-width: 1023px) {
  .site-footer {
    padding: 27px 40px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 70px 30px;
  }
}
.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 9px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1023px) {
  .site-footer__top {
    flex-direction: column;
    gap: 30px;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 86px;
}
@media (max-width: 1219px) {
  .site-footer__brand {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .site-footer__brand {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
.site-footer__brand .custom-logo,
.site-footer__brand .site-footer__logo-img {
  max-width: 288px;
  height: auto;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 767px) {
  .site-footer__brand .custom-logo,
  .site-footer__brand .site-footer__logo-img {
    max-width: 200px;
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 0;
}
.site-footer__brand .site-footer__logo-link:hover, .site-footer__brand .site-footer__logo-link:focus, .site-footer__brand .site-footer__logo-link:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-link {
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-link:hover {
  opacity: 0.9;
}
.site-footer__brand .site-footer__logo-link img {
  max-width: 288px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-link img {
    max-width: 200px;
    margin: 0 auto;
  }
}
.site-footer__brand .site-footer__logo-text {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  color: #eae0cf;
  display: block;
  margin-bottom: 0;
}
.site-footer__brand .site-footer__logo-text:hover, .site-footer__brand .site-footer__logo-text:focus, .site-footer__brand .site-footer__logo-text:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__brand .site-footer__logo-text {
    text-align: center;
  }
}
.site-footer__brand .site-footer__logo-text:hover {
  opacity: 0.9;
}
.site-footer__byline {
  font-size: 12px;
  font-weight: 700;
  color: #eae0cf;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  margin-left: 83px;
  margin-top: -9.5px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .site-footer__byline {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
}
.site-footer__right {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .site-footer__right {
    gap: 60px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .site-footer__right {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
  }
}
.site-footer__menus {
  display: flex;
  gap: 100px;
}
@media (max-width: 1023px) {
  .site-footer__menus {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .site-footer__menus {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .site-footer__menu {
    width: 100%;
  }
}
.site-footer__menu .nav-list {
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__menu .nav-list {
    align-items: center;
    gap: 30px;
  }
}
.site-footer__menu .nav-list .nav-link {
  color: #eae0cf;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 767px) {
  .site-footer__menu .nav-list .nav-link {
    text-align: center;
  }
}
.site-footer__menu .nav-list .nav-link::after {
  background-color: #eae0cf;
  height: 1px;
  left: 0;
  right: 0;
}
.site-footer__menu .nav-list .nav-link:hover, .site-footer__menu .nav-list .nav-link:focus {
  color: #eae0cf;
  opacity: 0.9;
}
.site-footer__menu .nav-list .nav-link.active, .site-footer__menu .nav-list .nav-link[aria-current=page] {
  color: #eae0cf;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 284px;
}
@media (max-width: 767px) {
  .site-footer__contact {
    min-width: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.site-footer__address {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #eae0cf;
}
@media (max-width: 767px) {
  .site-footer__address {
    text-align: center;
  }
}
.site-footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__contact-details {
    align-items: center;
    width: 100%;
  }
}
.site-footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .site-footer__contact-item {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .site-footer__contact-item svg {
    flex-shrink: 0;
  }
}
.site-footer__contact-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  color: #eae0cf;
}
.site-footer__contact-link {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #eae0cf;
  white-space: pre-line;
}
.site-footer__contact-link:hover, .site-footer__contact-link:focus, .site-footer__contact-link:active {
  text-decoration: none;
}
@media (max-width: 767px) {
  .site-footer__contact-link {
    text-align: center;
  }
}
.site-footer__contact-link:hover, .site-footer__contact-link:focus {
  opacity: 0.9;
  text-decoration: underline;
}
.site-footer__divider {
  height: 1px;
  width: 100%;
  background: #EAE0CF;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .site-footer__divider {
    margin: 20px auto;
  }
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 0;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
.site-footer__bottom-left {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__bottom-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}
.site-footer__copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #eae0cf;
  margin: 0;
}
@media (max-width: 767px) {
  .site-footer__copyright {
    text-align: center;
  }
}
.site-footer__legal {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #eae0cf;
  margin: 0;
}
@media (max-width: 767px) {
  .site-footer__legal {
    text-align: center;
  }
}
.site-footer__legal-link {
  text-decoration: none;
  color: inherit;
  color: #eae0cf;
}
.site-footer__legal-link:hover, .site-footer__legal-link:focus, .site-footer__legal-link:active {
  text-decoration: none;
}
.site-footer__legal-link:hover, .site-footer__legal-link:focus {
  opacity: 0.9;
  text-decoration: underline;
}
.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767px) {
  .site-footer__social {
    justify-content: center;
  }
}
.site-footer__social-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #eae0cf;
  transition: opacity 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
.site-footer__social-link:hover, .site-footer__social-link:focus, .site-footer__social-link:active {
  text-decoration: none;
}
.site-footer__social-link svg {
  width: 100%;
  height: 100%;
}
.site-footer__social-link:hover, .site-footer__social-link:focus {
  opacity: 0.8;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body {
  font-family: "Gotham", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #eae0cf;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.centered {
  text-align: center;
}

.page-content__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
.page-content__inner p {
  margin: 0 0 1em;
  font-size: 18px;
  line-height: 28px;
  color: #2c3e36;
}
.page-content__inner h1, .page-content__inner h2, .page-content__inner h3, .page-content__inner h4 {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  color: #2c3e36;
  margin: 1.5em 0 0.5em;
}
.page-content__inner h1:first-child, .page-content__inner h2:first-child, .page-content__inner h3:first-child, .page-content__inner h4:first-child {
  margin-top: 0;
}
.page-content__inner h1 {
  font-size: 2rem;
}
.page-content__inner h2 {
  font-size: 1.5rem;
}
.page-content__inner h3 {
  font-size: 1.25rem;
}
.page-content__inner a {
  color: #2c3e36;
  text-decoration: underline;
}
.page-content__inner a:hover {
  opacity: 0.85;
}
.page-content__inner ul, .page-content__inner ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}
.page-content__inner li {
  margin-bottom: 0.5em;
}