@charset "UTF-8";
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni 72";
  src: url("../fonts/BodoniSvtyTwoITCTT-Book.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #2B2A29;
  --secondary: #ffffff;
  --accent: #0A507A;
  --text-primary: #2B2A29;
  --text-secondary: #ffffff;
  --text-accent: #0A507A;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #2B2A29;
  line-height: 1;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Source Sans Pro", sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

label {
  display: inline-block;
}

button,
select,
option {
  cursor: pointer;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container] {
  max-width: 1054px;
  padding-inline: 7.5px;
  margin: 0 auto;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ibg--top {
  -o-object-position: top;
     object-position: top;
}
.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}
.ibg--left {
  -o-object-position: left;
     object-position: left;
}
.ibg--right {
  -o-object-position: right;
     object-position: right;
}
.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.button {
  border-radius: 4px;
  background-color: #d8ae5e;
  color: #f4f4f4;
  text-transform: uppercase;
  padding: 0.5em 1em;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .button:hover {
    background-color: #af8d4c;
  }
}

@media (min-width: 66.8125em) {
  [class*=page__],
  .footer {
    padding-block: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (padding-block: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    [class*=page__],
    .footer {
      padding-block: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem );
    }
  }
  @supports not (padding-block: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    [class*=page__],
    .footer {
      padding-block: calc(2rem + 2 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  [class*=page__],
  .footer {
    padding-block: 2rem;
  }
}

.hero {
  position: relative;
  color: #ffffff;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.6;
}
.hero__container {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 15.533981svh;
  /* 15.533981 = 128(размер отступа)/824(высота изображения) */
  padding-block: 7.76699svh;
  /* 64/824 */
}
.hero__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.883495svh;
  /* 3.883495=32/824 */
  text-align: center;
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2.427184svh;
  /* 20/824 */
  text-align: center;
}
.hero__title {
  font-family: "Bodoni 72", serif;
  font-size: 6rem;
  text-transform: uppercase;
}
@media (min-width: 66.8125em) {
  .hero__title {
    font-size: 6rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (font-size: clamp( 3.75rem , 2.7887182911rem  +  4.8064085447vw , 6rem )) {
    .hero__title {
      font-size: clamp( 3.75rem , 2.7887182911rem  +  4.8064085447vw , 6rem );
    }
  }
  @supports not (font-size: clamp( 3.75rem , 2.7887182911rem  +  4.8064085447vw , 6rem )) {
    .hero__title {
      font-size: calc(3.75rem + 2.25 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .hero__title {
    font-size: 3.75rem;
  }
}
.hero__label {
  font-size: 1.5rem;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.hero__image {
  position: absolute;
  left: 0;
  top: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.menu__link {
  padding: 0.5em;
}
@media (max-width: 47.99875em) {
  .menu__link {
    font-size: 1.25rem;
  }
}
@media (any-hover: hover) {
  .menu__link:hover {
    text-decoration: underline;
  }
}

.about__header {
  margin-bottom: 2em;
}
@media (max-width: 47.99875em) {
  .about__header {
    margin-bottom: 1em;
  }
}
.about__content {
  max-width: 37.5rem;
  margin: 0 auto;
  text-align: center;
}
.about__text {
  letter-spacing: 1px;
  line-height: 1.5;
}
@media (min-width: 66.8125em) {
  .about__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (font-size: clamp( 1rem , 0.8931909212rem  +  0.5340453939vw , 1.25rem )) {
    .about__text {
      font-size: clamp( 1rem , 0.8931909212rem  +  0.5340453939vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.8931909212rem  +  0.5340453939vw , 1.25rem )) {
    .about__text {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .about__text {
    font-size: 1rem;
  }
}
.about__text:not(:last-child) {
  margin-bottom: 1.6em;
}
@media (max-width: 47.99875em) {
  .about__text:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.about__text p:not(:last-child) {
  margin-bottom: 0.5em;
}
.header-block {
  text-align: center;
}
.header-block::after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #af8d4c;
  margin-top: 2em;
}
@media (max-width: 47.99875em) {
  .header-block::after {
    margin-top: 1em;
  }
}
.header-block__title {
  font-family: "Bodony 72", serif;
  text-transform: uppercase;
}
@media (min-width: 66.8125em) {
  .header-block__title {
    font-size: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (font-size: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .header-block__title {
      font-size: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem );
    }
  }
  @supports not (font-size: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .header-block__title {
      font-size: calc(2rem + 2 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .header-block__title {
    font-size: 2rem;
  }
}
.header-block__title:not(:last-child) {
  margin-bottom: 0.125em;
}
.header-block__text {
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}
.header-block__text p:not(:last-child) {
  margin-bottom: 0.3125em;
}
@media (max-width: 47.99875em) {
  .header-block__text {
    font-size: 0.875rem;
  }
}

.activities {
  background-color: #f4f4f4;
}
.activities__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 47.99875em) {
  .activities__container {
    gap: 2rem;
  }
}
.activities__items {
  max-width: 58.125rem;
  margin: 0 auto;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8rem;
     -moz-column-gap: 8rem;
          column-gap: 8rem;
  row-gap: 6rem;
}
@media (max-width: 61.99875em) {
  .activities__items {
    row-gap: 3.125rem;
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
}
@media (max-width: 47.99875em) {
  .activities__items {
    row-gap: 1.875rem;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
  }
}
@media (max-width: 29.99875em) {
  .activities__items {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    row-gap: 1.5625rem;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
}
.activities__item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 29.99875em) {
  .activities__item {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.activities__link {
  font-size: 1.25rem;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #d8ae5e;
  -webkit-transition: border-bottom 0.3s;
  transition: border-bottom 0.3s;
}
@media (any-hover: hover) {
  .activities__link:hover {
    border-bottom: 1px solid #af8d4c;
  }
}

.item-activities__image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 29.99875em) {
  .item-activities__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 3.75rem;
            flex: 0 0 3.75rem;
  }
}
.item-activities__image:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 29.99875em) {
  .item-activities__image:not(:last-child) {
    margin-bottom: 0;
  }
}
.item-activities__icon {
  max-width: 100%;
}
.item-activities__label {
  letter-spacing: 1px;
  font-size: 1.25rem;
}
@media (max-width: 29.99875em) {
  .item-activities__label {
    font-size: 1rem;
  }
}

@media (min-width: 66.8125em) {
  .amenities__header:not(:last-child) {
    margin-bottom: 4.625rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem )) {
    .amenities__header:not(:last-child) {
      margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem );
    }
  }
  @supports not (margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem )) {
    .amenities__header:not(:last-child) {
      margin-bottom: calc(2rem + 2.625 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .amenities__header:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (min-width: 66.8125em) {
  .section-amenities:not(:last-child) {
    margin-bottom: 4.625rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem )) {
    .section-amenities:not(:last-child) {
      margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem );
    }
  }
  @supports not (margin-bottom: clamp( 2rem , 0.8785046729rem  +  5.6074766355vw , 4.625rem )) {
    .section-amenities:not(:last-child) {
      margin-bottom: calc(2rem + 2.625 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .section-amenities:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.section-amenities__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3.6px;
}
@media (min-width: 66.8125em) {
  .section-amenities__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (font-size: clamp( 1rem , 0.7863818425rem  +  1.0680907877vw , 1.5rem )) {
    .section-amenities__title {
      font-size: clamp( 1rem , 0.7863818425rem  +  1.0680907877vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.7863818425rem  +  1.0680907877vw , 1.5rem )) {
    .section-amenities__title {
      font-size: calc(1rem + 0.5 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .section-amenities__title {
    font-size: 1rem;
  }
}
.section-amenities__title:not(:last-child) {
  margin-bottom: 1.3333333333em;
}
.section-amenities__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
}
@media (max-width: 1049.98px) {
  .section-amenities__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-amenities__item {
  border-radius: 4px;
  overflow: hidden;
  -ms-flex-preferred-size: 18.1875rem;
      flex-basis: 18.1875rem;
}
@media (any-hover: hover) {
  .section-amenities__item:hover .section-amenities__image {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (min-width: 29.99875em) {
  .section-amenities__item:nth-child(6n+3), .section-amenities__item:nth-child(6n+4) {
    -ms-flex-preferred-size: 25.5rem;
        flex-basis: 25.5rem;
  }
  .section-amenities__item:nth-child(6n+3) .section-amenities__link, .section-amenities__item:nth-child(6n+4) .section-amenities__link {
    aspect-ratio: 408/286;
  }
}
.section-amenities__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 1.25rem;
  aspect-ratio: 291/286;
}
.section-amenities__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
}
.section-amenities__label {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4.2;
  line-height: 1.2;
  letter-spacing: 4px;
  font-weight: 600;
}
@media (min-width: 66.8125em) {
  .section-amenities__label {
    font-size: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (font-size: clamp( 1.25rem , 1.0363818425rem  +  1.0680907877vw , 1.75rem )) {
    .section-amenities__label {
      font-size: clamp( 1.25rem , 1.0363818425rem  +  1.0680907877vw , 1.75rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 1.0363818425rem  +  1.0680907877vw , 1.75rem )) {
    .section-amenities__label {
      font-size: calc(1.25rem + 0.5 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .section-amenities__label {
    font-size: 1.25rem;
  }
}
.section-amenities__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.contacts {
  background-color: #f4f4f4;
}
.contacts__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 66.8125em) {
  .contacts__container {
    gap: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .contacts__container {
      gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem );
    }
  }
  @supports not (gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .contacts__container {
      gap: calc(2rem + 2 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .contacts__container {
    gap: 2rem;
  }
}
.contacts__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 66.8125em) {
  .contacts__items {
    gap: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (gap: clamp( 0.9375rem , 0.4835614152rem  +  2.2696929239vw , 2rem )) {
    .contacts__items {
      gap: clamp( 0.9375rem , 0.4835614152rem  +  2.2696929239vw , 2rem );
    }
  }
  @supports not (gap: clamp( 0.9375rem , 0.4835614152rem  +  2.2696929239vw , 2rem )) {
    .contacts__items {
      gap: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .contacts__items {
    gap: 0.9375rem;
  }
}
.contacts__link {
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (any-hover: hover) {
  .contacts__link:hover {
    text-decoration: underline;
  }
}
.contacts__link::before {
  content: "";
}
.contacts__link--phone::before {
  content: url("../img/icons/phone.svg");
}
.contacts__link--mail::before {
  content: url("../img/icons/mail.svg");
}
.contacts__link--map::before {
  content: url("../img/icons/map.svg");
}
.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
  row-gap: 1em;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.8px;
}
@media (min-width: 66.8125em) {
  .footer__container {
    gap: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 66.8125em) {
  @supports (gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .footer__container {
      gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem );
    }
  }
  @supports not (gap: clamp( 2rem , 1.1455273698rem  +  4.2723631509vw , 4rem )) {
    .footer__container {
      gap: calc(2rem + 2 * (100vw - 20rem) / 46.8125);
    }
  }
}
@media (max-width: 20em) {
  .footer__container {
    gap: 2rem;
  }
}
.footer__copy {
  text-align: center;
}
.footer__copy p:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.footer__copy a {
  font-weight: 600;
}
@media (any-hover: hover) {
  .footer__copy a:hover {
    text-decoration: underline;
  }
}