/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html,
body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1 {
  margin: 0 0 30px;
  font-size: 5rem;
  line-height: 5.5rem;
  font-family: "Playfair Display", Georgia, Times, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}
h2 {
  color: #ffffff;
}

p {
  margin: 0 0 30px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}
@media screen and (min-width: 800px) {
  p {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.header {
  margin: 0 0 30px;
  font-size: 2.5rem;
  line-height: 3.125rem;
  font-family: "Playfair Display", Georgia, Times, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  .header {
    font-size: 3.375rem;
    line-height: 4.1875rem;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    font-size: 4rem;
    line-height: 5rem;
  }
}

.subheader {
  margin: 0 0 20px;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 800px) {
  .subheader {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .subheader {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

body.legal .subheader {
  margin: 0 0 5px;
}

.big-text {
  margin: 0 0 30px;
  font-size: 5rem;
  line-height: 5.5rem;
  font-family: "Playfair Display", Georgia, Times, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}
body, html {
  background-color: #000000;
  margin: 0;
}

.modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  /* Hide scrollbar for IE, Edge add Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.modal__wrap::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 800px) {
  .modal__wrap {
    display: grid;
    place-items: center;
    padding: 20px;
  }
}

.modal {
  width: 100%;
  max-width: 900px;
  height: 100%;
  background-color: black;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .modal {
    padding: 60px 60px 80px;
    height: auto;
  }
}

.modal__grid {
  display: grid;
  gap: 20px;
  opacity: 0;
  padding: 30px;
}
@media screen and (min-width: 800px) {
  .modal__grid {
    grid-template-columns: 70px 1fr;
    gap: 40px;
  }
}

.modal__header {
  margin: 20px 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 2px;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #ffffff;
  text-transform: uppercase;
}
.modal__text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 60px;
}

.modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  padding: 15px 60px;
  min-height: 66px;
  background-color: transparent;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 2px;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  text-transform: uppercase;
}
.modal__button--yes {
  background-color: #cd9861;
}
.modal__button--no {
  font-weight: 300;
}

.page-grid {
  padding: 80px 0 80px 61px;
}
@media screen and (min-width: 800px) {
  .page-grid {
    padding: 120px 0 80px 61px;
  }
}

.page-header .header {
  color: #cd9861;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .container {
    padding: 0 50px;
  }
}
.container--min {
  max-width: 1000px;
}

.section {
  position: relative;
  padding: 80px 0 80px 61px;
}
@media screen and (min-width: 800px) {
  .section {
    padding: 200px 0 200px 61px;
  }
}
.section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  margin: 0 0 30px;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: #cd9861;
  text-transform: uppercase;
}
@media screen and (min-width: 800px) {
  .section-title {
    margin: 0 0 40px;
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .section-title {
    margin: 0 0 50px;
    font-size: 5rem;
    line-height: 5rem;
  }
}

.section-text {
  max-width: 750px;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
@media screen and (min-width: 800px) {
  .section-text {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
@media screen and (min-width: 800px) {
  .section-text--bump {
    padding-left: 100px;
  }
}

.intro {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .intro {
    height: 100vh;
  }
}

@media screen and (min-width: 800px) {
  .full-spectrum {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background-color: #000000;
    height: 100vh;
    width: 100vw;
    z-index: 2;
    opacity: 0;
  }
}
.full-spectrum .container {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 800px) {
  .full-spectrum__wrap {
    opacity: 0;
  }
}

@media screen and (min-width: 800px) {
  .citation {
    display: flex;
    margin-left: 50px;
  }
}

.citation__signature {
  width: 198px;
}
@media screen and (min-width: 800px) {
  .citation__signature {
    margin-right: 30px;
  }
}
.citation__signature svg {
  display: block;
  width: 100%;
}

.citation__content {
  margin-right: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}
.contour {
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
}

.map {
  position: absolute;
  display: block;
  width: 1000px;
  top: 100px;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .map {
    display: block;
  }
}

.map-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.25), black 80%);
  z-index: 2;
}

.benefits {
  padding: 100px 0 100px 61px;
}
@media screen and (min-width: 800px) {
  .benefits {
    padding: 100px 0 100px 61px;
  }
}

.benefits__grid {
  display: grid;
  gap: 60px;
}
@media screen and (min-width: 800px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.benefit {
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .benefit--accessibility {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1400px) {
  .benefit--accessibility {
    margin-top: 200px;
  }
}
@media screen and (min-width: 800px) {
  .benefit--stability {
    margin-top: 300px;
  }
}
@media screen and (min-width: 1400px) {
  .benefit--stability {
    margin-top: 400px;
  }
}

.benefit__icon {
  margin-bottom: 50px;
}
.benefit__icon svg {
  display: block;
  height: 130px;
}

.benefit__title {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 2.3125rem;
}

.benefit__text {
  max-width: 80%;
  font-size: 1.375rem;
  line-height: 1.75rem;
}
@media screen and (min-width: 800px) {
  .benefit__text {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: #000000;
}
@media screen and (min-width: 800px) {
  .banner {
    height: 100vh;
  }
}

.mask {
  mask-image: url("../img/mask.svg");
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
  transform-origin: center center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner__image {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .banner__image {
    object-position: right top;
  }
}
.banner__image .banner__image--blur {
  filter: blur(5px);
}

.banner__filter {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  mix-blend-mode: multiply;
}

.banner__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 200px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
  mix-blend-mode: multiply;
}

.banner__wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding-left: 61px;
}

.banner__container {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .banner__container {
    padding: 0 50px;
  }
}

.banner__header {
  max-width: 640px;
  opacity: 0;
}

.banner__title {
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 1.5625rem;
}

.banner__text {
  margin: 0;
  color: #ffffff;
}

.banner__crest {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.intro-crest {
  opacity: 0;
  padding: 20px;
}

.development {
  background-color: #fefefe;
  padding: 40px 0 80px 61px;
}
@media screen and (min-width: 800px) {
  .development {
    padding: 80px 0 140px 61px;
  }
}

.development__overlay {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(254, 254, 254, 0), rgba(254, 254, 254, 0.8), #fefefe);
  z-index: 2;
}
@media screen and (min-width: 800px) {
  .development__overlay {
    top: -80px;
  }
}

.development__svg {
  position: relative;
  top: -40px;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .development__svg {
    top: -80px;
  }
}

.values {
  position: relative;
  background-color: #fefefe;
}
.values .section-text {
  color: #000000;
}

.values__wrap {
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 800px) {
  .values__wrap {
    display: grid;
    grid-template-columns: 3fr 1fr 3fr;
  }
}

.values__content {
  grid-column: 1/3;
  grid-row: 1/1;
  z-index: 2;
}

.values__animation {
  position: relative;
  grid-column: 2/4;
  grid-row: 1/1;
  z-index: 1;
}

.crest-bg {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
}

.faqs {
  background-color: #fefefe;
  padding: 80px 0 80px 61px;
}
@media screen and (min-width: 800px) {
  .faqs {
    padding: 140px 0 140px 61px;
  }
}

@media screen and (min-width: 800px) {
  .faqs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.faqs__header {
  font-size: 2.5rem;
  line-height: 3.125rem;
  color: #cd9861;
}
@media screen and (min-width: 800px) {
  .faqs__header {
    font-size: 3.375rem;
    line-height: 4.1875rem;
  }
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-list__item {
  position: relative;
  margin-bottom: 50px;
  padding: 0 0 0 36px;
  overflow: hidden;
}
.faq-list__item:last-child {
  margin: 0;
}
.faq-list__item.active {
  border-bottom: 1px solid #cd9861;
}
.faq-list__item.active .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq-list__item.active .faq__arrow {
  opacity: 1;
  transform: rotate(-90deg);
}
.faq__question {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  color: #000000;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.faq__question:hover .faq__arrow {
  opacity: 1;
}

.faq__arrow {
  transition: all 0.25s ease 0s;
  position: absolute;
  top: 6px;
  left: -36px;
  opacity: 0;
  width: 24px;
  height: 16px;
}

.faq__answer-wrap {
  transition: grid-template-rows 0.25s ease 0s;
  display: grid;
  grid-template-rows: 0fr;
}

.faq__answer {
  min-height: 0;
}
@media screen and (min-width: 800px) {
  .faq__answer {
    margin-left: 30px;
  }
}
.faq__answer p {
  color: #000000;
}
.faq__answer a {
  transition: all 0.25s ease 0s;
  color: #000000;
  text-decoration: none;
}
.faq__answer a:link,
.faq__answer a:visited {
  color: #000000;
  text-decoration: none;
}
.faq__answer a:hover {
  color: #cd9861;
}

.footer {
  padding-top: 80px;
  padding-left: 61px;
  background-color: #fafafa;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer {
    padding-top: 140px;
  }
}

.footer-crest {
  display: block;
  margin: 80px auto 0;
}
@media screen and (min-width: 800px) {
  .footer-crest {
    margin: 200px auto 0;
  }
}

.footer-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (min-width: 800px) {
  .footer-contacts {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
  }
}
.footer-contacts .contact h2 {
  margin-bottom: 20px;
  color: #000000;
}
.footer-contacts .contact p {
  color: #000000;
}
.footer-contacts .contact a {
  transition: all 0.25s ease 0s;
  color: #000000;
  text-decoration: none;
}
.footer-contacts .contact a:link,
.footer-contacts .contact a:visited {
  color: #000000;
  text-decoration: none;
}
.footer-contacts .contact a:hover {
  color: #cd9861;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid #000000;
  padding: 30px 0;
}
@media screen and (min-width: 800px) {
  .footer-bottom {
    display: flex;
  }
}

.copyright {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}

.footer-menu {
  margin-top: 30px;
}
@media screen and (min-width: 800px) {
  .footer-menu {
    margin-top: auto;
    margin-left: auto;
  }
}
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
.footer-menu a {
  transition: all 0.25s ease 0s;
  color: #000000;
  text-decoration: none;
}
.footer-menu a:link,
.footer-menu a:visited {
  color: #000000;
  text-decoration: none;
}
.footer-menu a:hover {
  color: #cd9861;
}

.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 61px;
  height: 100vh;
  background-color: #22282b;
  z-index: 100;
  border-right: 1px solid #999a99;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.home .menu-bar {
  opacity: 0;
}

.menu-toggle {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  width: 60px;
  height: 76px;
}

.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: 24px;
  border: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
.branding:hover .draw-crest {
  transition: opacity 0.25s ease 0s;
}

.branding-logo {
  margin-bottom: 24px;
}

.branding-crest {
  width: 38px;
}
.branding-crest svg {
  display: block;
  width: 100%;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #22282b;
  z-index: 99;
  padding: 30px 30px 30px 81px;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .menu {
    padding: 50px 100px 50px 161px;
  }
}

.menu-list {
  grid-column: 1/1;
  grid-row: 1/1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list__item {
  margin-bottom: 30px;
  font-size: 1.625rem;
  line-height: 1.625rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  opacity: 0;
}
@media screen and (min-width: 500px) {
  .menu-list__item {
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 0.5rem;
  }
}
@media screen and (min-width: 800px) {
  .menu-list__item {
    margin-bottom: 60px;
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .menu-list__item {
    margin-bottom: 80px;
    font-size: 6.25rem;
    line-height: 6.25rem;
  }
}
.menu-list__item:last-child {
  margin: 0;
}
.menu-list__item a {
  transition: all 0.25s ease 0s;
  text-decoration: none;
  color: #ffffff;
}
.menu-list__item a:active, .menu-list__item a:link {
  text-decoration: none;
  color: #ffffff;
}
.menu-list__item a:hover {
  color: #cd9861;
}
.menu-list__item a:focus {
  color: #cd9861;
}

.menu-crest {
  grid-column: 1/1;
  grid-row: 1/1;
  justify-self: end;
  opacity: 0;
  width: 550px;
  display: none;
}
@media screen and (min-width: 800px) {
  .menu-crest {
    display: block;
  }
}
.menu-crest svg {
  display: block;
  width: 100%;
}

.back {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  width: 60px;
  height: 64px;
}
.back .back-arrow {
  transition: all 0.25s ease 0s;
}
.back:hover .back-arrow {
  transform: translateX(5px);
}

.newsletter .header {
  margin: 0 0 10px;
}
.newsletter .subheader {
  color: black;
}

.newsletter__form {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
}

.newsletter__placeholder {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: black;
}

.newsletter__arrow {
  margin-left: auto;
}

#mc_embed_shell {
  width: 100%;
}

.mc-field-group {
  position: relative;
}

.mc-label {
  display: none;
}

.mc-email {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  width: 100%;
  height: 60px;
  padding: 0 60px 0 0;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #000000 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mc-email:focus-visible {
  border-bottom: 1px solid #cd9861;
  outline: none;
}
.mc-email::placeholder {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mc-email.mce_inline_error {
  font-size: 1.25rem !important;
  line-height: 1.25rem !important;
  color: #000000 !important;
}

.mce_inline_error {
  background-color: transparent !important;
  color: #cd9861 !important;
  padding: 0 !important;
  margin: 5px 0 0 0 !important;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  font-style: normal !important;
  font-weight: 400 !important;
}

#mc-embedded-subscribe {
  position: absolute;
  right: -18px;
  top: 0;
  cursor: pointer;
  border: 0;
  background-color: transparent !important;
  background-image: url("../../resources/img/arrow-dk.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  width: 60px;
  height: 60px;
}
