@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: unset;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Roboto";
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.625em;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.container,
#footer {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #cb9374;
  cursor: default;
}

@media screen and (max-width: 1345px) {
  body {
    font-size: 14px;
    line-height: 1.625em;
  }
  .container,
  #footer {
    margin: 0 128px;
  }
}

@media screen and (max-width: 1003px) {
  .container,
  #footer {
    margin: 0 64px;
  }
}

@media screen and (max-width: 903px) {
  .container,
  #footer {
    margin: 0 24px;
  }
}

@media screen and (max-width: 644px) {
  .logo {
    font-size: 1.43em;
  }
}

header {
  background-color: #f5f4f2;
  z-index: 10;
}

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__button {
  height: 50px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: unset;
  cursor: pointer;
}

.menu__button .menu__line {
  width: 51px;
  height: 1px;
  background-color: #252424;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.menu__button .menu__line:nth-child(2) {
  margin: 8px 0;
  -webkit-transition: margin 0.2s;
  transition: margin 0.2s;
}

aside {
  position: fixed;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
      grid-template-columns: 50% 50%;
  grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);
  grid-auto-rows: minmax(min-content, max-content);
  -webkit-column-gap: 3em;
          column-gap: 3em;
  row-gap: 3.125em;
  background-color: white;
  -webkit-transition: left 0.4s ease-out;
  transition: left 0.4s ease-out;
  z-index: 10;
}

aside img {
  -o-object-fit: cover;
     object-fit: cover;
}

aside div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.25em 11.25em;
      grid-template-columns: 11.25em 11.25em;
  row-gap: 0.75em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

aside div a {
  color: #252424;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

aside div a:hover {
  color: #cb9374;
}

aside nav {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1 / 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

aside nav a:not(:first-child) {
  margin-top: 0.75em;
}

aside nav a::before {
  content: "";
  position: relative;
  display: block;
  top: 0.65em;
  left: -0.5em;
  width: 0em;
  height: 2px;
  margin-top: -2px;
  background-color: #cb9374;
  -webkit-transition: width 0.3s, left 0.3s;
  transition: width 0.3s, left 0.3s;
}

@media screen and (max-width: 824px) {
  aside {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  aside nav {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
  aside img {
    display: none;
  }
  aside div {
    -ms-grid-columns: 7em 11.25em;
        grid-template-columns: 7em 11.25em;
    margin-top: unset;
  }
}

.nav__a {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
}

.nav__a-active {
  padding-left: 1.75em;
  color: #cb9374;
}

.nav__a-active::before {
  width: 1.25em;
  left: -1.75em;
}

@media screen and (max-width: 824px) {
  .nav__a {
    font-size: 2.143em;
  }
}

#title {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  background-color: #f5f4f2;
}

@media screen and (max-width: 1345px) {
  #title {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #title {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#title h1 {
  position: relative;
  z-index: 3;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-style: normal;
  font-size: 3.75em;
  line-height: 1.22em;
  text-transform: uppercase;
  text-align: center;
  color: #252424;
  margin-top: 0;
  margin-bottom: 0;
}

#title span {
  color: #cb9374;
}

#title .title__slider__container .title__slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#title .title__slider__container .title__slider__wrapper .title__slide {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  -webkit-transition: left 1s, width 1s, height 1s;
  transition: left 1s, width 1s, height 1s;
}

#title .title__button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.625em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  margin: 3.125em auto 0 auto;
  height: 3.5em;
}

#title .title__button br {
  display: none;
}

@media screen and (max-width: 1345px) {
  #title h1 {
    font-size: 2.85em;
  }
  #title .title__button {
    height: 5.57em;
    margin: 2.14em auto 0 auto;
  }
  #title .title__button br {
    display: unset;
  }
}

@media screen and (max-width: 824px) {
  #title h1 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 644px) {
  #title {
    padding-top: 2em;
  }
  #title h1 {
    font-size: 2.14em;
  }
}

@media screen and (max-width: 524px) {
  #title h1 {
    font-size: 1.75em;
  }
  #title h1 br {
    display: none;
  }
}

#for_whom {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  background-color: #f5f4f2;
}

@media screen and (max-width: 1345px) {
  #for_whom {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #for_whom {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#for_whom .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 50%;
      grid-template-columns: 40% 50%;
  -webkit-column-gap: 10%;
          column-gap: 10%;
}

#for_whom h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #for_whom h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#for_whom p {
  color: #252424;
  margin-top: 1.25em;
  margin-bottom: 0;
}

#for_whom button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  width: 13.125em;
  height: 3.5em;
  margin-top: 3.125em;
}

#for_whom .for_whom__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#for_whom img {
  -o-object-fit: cover;
     object-fit: cover;
}

#for_whom #for_whom__img__size {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 644px) {
  #for_whom .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 3.57em;
  }
  #for_whom .for_whom__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #for_whom .for_whom__container img:last-child {
    margin-left: 1em;
  }
  #for_whom button {
    margin-top: 2.14em;
  }
}

#change {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #change {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #change {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#change #change__img {
  -o-object-fit: cover;
     object-fit: cover;
}

#change #change__img__size {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#change h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
  color: #cb9374;
}

@media screen and (max-width: 1345px) {
  #change h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#change p {
  color: #252424;
  margin-top: 1.25em;
  margin-bottom: 0;
}

@media screen and (max-width: 1345px) {
  #change {
    -webkit-column-gap: 2.14em;
            column-gap: 2.14em;
  }
}

@media screen and (max-width: 644px) {
  #change {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 3.57em;
  }
  #change #change__img__size {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
}

#formulas {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #formulas {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #formulas {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#formulas h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #formulas h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#formulas dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 40%;
      grid-template-columns: 50% 40%;
  -webkit-column-gap: 10%;
          column-gap: 10%;
  margin: 0;
}

#formulas dt {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #252424;
}

#formulas dt:not(:first-child) {
  margin-top: 1em;
}

#formulas dt::before {
  content: "";
  position: relative;
  display: block;
  top: 0.65em;
  left: -0.5em;
  width: 0em;
  height: 2px;
  margin-top: -2px;
  background-color: #cb9374;
  -webkit-transition: width 0.3s, left 0.3s;
  transition: width 0.3s, left 0.3s;
}

#formulas .dtF-active {
  padding-left: 1.75em;
  color: #cb9374;
}

#formulas .dtF-active + dd {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#formulas .dtF-active::before {
  width: 1.25em;
  left: -1.75em;
}

#formulas dd {
  position: relative;
  top: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  color: #252424;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  margin-left: 0;
}

@media screen and (max-width: 644px) {
  #formulas dl {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #formulas dl dt:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  #formulas dl dt:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  #formulas dl dt:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  #formulas dl dt:nth-child(7) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
  }
  #formulas dd {
    top: 30px;
    height: unset;
  }
}

#slider {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #slider {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #slider {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#slider .slider__container .slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#slider .slider__container .slider__wrapper .slide {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  -webkit-transition: left 1s, width 1s, height 1s;
  transition: left 1s, width 1s, height 1s;
}

#sentence {
  background-color: #f5f4f2;
}

#sentence .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 50%;
      grid-template-columns: 40% 50%;
  -webkit-column-gap: 10%;
          column-gap: 10%;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #sentence .container {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #sentence .container {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#sentence h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #sentence h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#sentence p {
  color: #252424;
  margin-top: 1.25em;
  margin-bottom: 0;
}

#sentence .sentence__container {
  max-width: 22.5em;
  width: 100%;
  margin-left: auto;
}

#sentence .sentence__container > div {
  padding: 1.875em;
  background-color: white;
}

#sentence .sentence__container h3 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #cb9374;
  margin-top: 0;
  margin-bottom: 1.33em;
}

#sentence .sentence__container .prices div {
  display: inline;
  font-family: "Cormorant Infant";
  font-weight: 400;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
}

#sentence .sentence__container .prices div:first-child {
  color: #252424;
  margin-right: 1em;
}

#sentence .sentence__container .prices div:last-child {
  color: #a9a6a6;
  text-decoration: line-through;
}

#sentence .sentence__container button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  width: 100%;
  height: 3.5em;
  margin-top: 1.875em;
}

@media screen and (max-width: 644px) {
  #sentence .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 2.14em;
  }
  #sentence .sentence__container {
    margin-left: unset;
  }
}

#way {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #way {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #way {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#way h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #way h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#way .way__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

#way ul {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 0;
  margin: 0;
}

#way ul:first-child {
  margin-left: 4.6em;
}

#way ul:first-child li:first-child {
  background-color: #252424;
}

#way ul:first-child li:first-child::before {
  content: "A";
  position: absolute;
  top: -0.5em;
  left: -1.2em;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-style: normal;
  font-size: 3.75em;
  line-height: 1.216em;
  text-transform: uppercase;
  color: #252424;
  cursor: default;
}

#way ul:first-child li:first-child::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 15px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#cb9374), to(#252424));
  background: linear-gradient(270deg, #cb9374 0%, #252424 100%);
}

#way ul:last-child {
  margin-left: auto;
}

#way ul:last-child li:first-child {
  background-color: #cb9374;
}

#way ul:last-child li:first-child::after {
  content: "B";
  position: absolute;
  top: -0.5em;
  left: 0.8em;
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-style: normal;
  font-size: 3.75em;
  line-height: 1.216em;
  text-transform: uppercase;
  color: #cb9374;
  cursor: default;
}

#way li {
  list-style-type: "";
}

#way li:not(:first-child):not(:nth-child(2)) {
  margin-top: 0.75em;
}

#way li:not(:nth-child(1)) {
  margin-top: 2.5em;
}

#way li:first-child {
  height: 16px;
  width: 16px;
  border-radius: 50%;
}

@media screen and (max-width: 644px) {
  #way .way__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #way li:first-child {
    margin-bottom: -16px;
  }
  #way ul:first-child,
  #way ul:last-child {
    margin-left: 3em;
  }
  #way ul:first-child li:first-child::before {
    top: -0.4em;
    left: -1em;
    font-size: 2.857em;
  }
  #way ul:first-child li:first-child::after {
    top: 15px;
    left: 7px;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(#cb9374), to(#252424));
    background: linear-gradient(0deg, #cb9374 0%, #252424 100%);
  }
  #way ul:last-child {
    margin-top: 2.14em;
  }
  #way ul:last-child li:first-child::after {
    top: -0.4em;
    left: -1em;
    font-size: 2.857em;
  }
  #way li:not(:nth-child(1)) {
    margin-top: unset;
  }
  #way li:not(:first-child) {
    margin-left: 3em;
  }
}

#who {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #who {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #who {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#who h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #who h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#who span {
  font-family: "Cormorant Infant";
  font-weight: 400;
}

#who ul {
  padding-left: 1.875em;
}

#who li {
  list-style-type: "—    ";
  color: #252424;
}

#who li:not(:first-child) {
  margin-top: 0.75em;
}

#who dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6.875em 11.25em;
      grid-template-columns: 6.875em 11.25em;
  -webkit-column-gap: 1.875em;
          column-gap: 1.875em;
  row-gap: 2.5em;
  margin-top: 3.125em;
  margin-bottom: 0;
}

#who dt {
  font-family: "Cormorant Infant";
  font-weight: 400;
  font-style: normal;
  font-size: 3.75em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #cb9374;
}

#who dd {
  color: #252424;
  margin-left: 0;
}

#who img {
  margin-left: auto;
}

#who #who__img {
  -o-object-fit: cover;
     object-fit: cover;
}

#who #who__img__size {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

@media screen and (max-width: 1345px) {
  #who {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2.14em;
            column-gap: 2.14em;
  }
}

@media screen and (max-width: 644px) {
  #who {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 2.14em;
  }
  #who img {
    margin-left: unset;
  }
  #who dl {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6.875em 11.25em;
        grid-template-columns: 6.875em 11.25em;
    -webkit-column-gap: 1.429em;
            column-gap: 1.429em;
    row-gap: 2.143em;
    margin-top: 2.143em;
    margin-bottom: 0;
  }
  #who dt {
    font-size: 2.857em;
  }
}

#bracelet {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  background-color: #f5f4f2;
}

@media screen and (max-width: 1345px) {
  #bracelet {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #bracelet {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#bracelet .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

#bracelet .container .bracelet__container:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#bracelet .container h2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #bracelet .container h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#bracelet .container .bracelet__video,
#bracelet .container .bracelet__img {
  -o-object-fit: cover;
     object-fit: cover;
}

#bracelet .container .bracelet__buy {
  max-width: 22.5em;
  width: 100%;
  margin-left: auto;
  padding: 1.875em;
  background-color: white;
}

#bracelet .container h3 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #cb9374;
  margin-top: 0;
  margin-bottom: 1.33em;
}

#bracelet .container .prices div {
  display: inline;
  font-family: "Cormorant Infant";
  font-weight: 400;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
}

#bracelet .container .prices div:first-child {
  color: #252424;
  margin-right: 1em;
}

#bracelet .container .prices div:last-child {
  color: #a9a6a6;
  text-decoration: line-through;
}

#bracelet .container button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  width: 100%;
  height: 3.5em;
  margin-top: 1.875em;
}

@media screen and (min-width: 1345px) {
  #bracelet .container .bracelet__buy {
    margin-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #bracelet .container {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    row-gap: 30px;
  }
  #bracelet .container h2 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  #bracelet .container .bracelet__container:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  #bracelet .container .bracelet__container:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  #bracelet .container .bracelet__buy {
    margin: 0;
  }
}

#webinar {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #webinar {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #webinar {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#webinar h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #webinar h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#webinar dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  row-gap: 4em;
  margin: 0;
}

#webinar dl dt:nth-child(0)::before {
  content: "0";
}

#webinar dl dt:nth-child(0)::after {
  background-image: url("./images/10.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(0)::after {
    background-image: url("./images/f-icon.svg");
  }
}

#webinar dl dt:nth-child(1)::before {
  content: "1";
}

#webinar dl dt:nth-child(1)::after {
  background-image: url("./images/11.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(1)::after {
    background-image: url("./images/f-icon.svg");
  }
}

#webinar dl dt:nth-child(3)::before {
  content: "2";
}

#webinar dl dt:nth-child(3)::after {
  background-image: url("./images/12.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(3)::after {
    background-image: url("./images/f-icon.svg");
  }
}

#webinar dl dt:nth-child(5)::before {
  content: "3";
}

#webinar dl dt:nth-child(5)::after {
  background-image: url("./images/13.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(5)::after {
    background-image: url("./images/f-icon.svg");
  }
}

#webinar dl dt:nth-child(7)::before {
  content: "4";
}

#webinar dl dt:nth-child(7)::after {
  background-image: url("./images/14.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(7)::after {
    background-image: url("./images/f-icon.svg");
  }
}

#webinar dl dt:nth-child(9)::before {
  content: "5";
}

#webinar dl dt:nth-child(9)::after {
  background-image: url("./images/15.webp");
}

@media screen and (max-width: 644px) {
  #webinar dl dt:nth-child(9)::after {
    background-image: url("./images/f-icon.svg");
  }
}

@media screen and (max-width: 1345px) {
  #webinar dl {
    -webkit-column-gap: 2.14em;
            column-gap: 2.14em;
  }
}

@media screen and (max-width: 644px) {
  #webinar dl {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 2.14em;
  }
}

#webinar dt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-left: 1.06em;
  color: #252424;
}

#webinar dt::before {
  font-family: "Cormorant Infant";
  font-weight: 400;
  position: relative;
  color: #cb9374;
  margin-right: 0.66em;
  margin-left: -1em;
}

#webinar dt::after {
  content: "";
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 100%;
  background-size: contain;
  background-position: center;
  width: 7.33em;
  height: 9.66em;
  z-index: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#webinar .dt-animate {
  color: #cb9374;
}

#webinar .dt-animate::after {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

#webinar dd {
  color: #252424;
  margin-left: 0;
}

#webinar ul {
  padding-left: 1.875em;
}

#webinar li {
  list-style-type: "—    ";
}

#webinar li:not(:first-child) {
  margin-top: 0.75em;
}

@media screen and (max-width: 644px) {
  #webinar dl {
    row-gap: 1.5em;
  }
  #webinar dt {
    width: unset;
    padding-right: 30px;
  }
  #webinar dt::after {
    content: "";
    display: block;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    left: unset;
    right: 0;
    background-size: contain;
    background-position: center;
    width: 22.63px;
    height: 22.63px;
    -webkit-transition: top 0.4s, -webkit-transform 0.4s;
    transition: top 0.4s, -webkit-transform 0.4s;
    transition: transform 0.4s, top 0.4s;
    transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
  }
  #webinar dd {
    max-height: 0;
    opacity: 0;
    margin-top: -1.14em;
    -webkit-transition: max-height 0.4s, opacity 0.4s;
    transition: max-height 0.4s, opacity 0.4s;
  }
  #webinar .dt-animate {
    color: #cb9374;
  }
  #webinar .dt-animate + dd {
    max-height: 500px;
    opacity: 1;
    -webkit-transition: max-height 1s, opacity 0.4s;
    transition: max-height 1s, opacity 0.4s;
  }
  #webinar .dt-animate::after {
    top: 10px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: top 0.4s, -webkit-transform 0.4s;
    transition: top 0.4s, -webkit-transform 0.4s;
    transition: transform 0.4s, top 0.4s;
    transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
  }
}

#buy {
  background-color: #f5f4f2;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #buy {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #buy {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#buy h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #buy h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#buy .buy__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  -webkit-column-gap: 1.875em;
          column-gap: 1.875em;
  row-gap: 1.875em;
}

#buy .buy__container {
  height: 100%;
  padding: 1.875em;
  background-color: white;
}

#buy button:nth-child(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
}

#buy h3 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: #cb9374;
  margin-top: 0;
  margin-bottom: 1.33em;
}

#buy .prices {
  text-align: center;
}

#buy .prices div {
  display: inline;
  font-family: "Cormorant Infant";
  font-weight: 400;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
}

#buy .prices div:first-child {
  color: #252424;
  margin-right: 1em;
}

#buy .prices div:last-child {
  color: #a9a6a6;
  text-decoration: line-through;
}

@media screen and (max-width: 1345px) {
  #buy .prices div {
    font-size: 1.65em;
  }
  #buy .prices div:first-child {
    margin-right: 0.7em;
  }
}

#buy ul {
  padding-left: 1.875em;
}

#buy li {
  list-style-type: "—    ";
}

#buy li:not(:first-child) {
  margin-top: 0.75em;
}

#buy button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  height: 3.5em;
}

@media screen and (max-width: 1345px) {
  #buy .buy__container {
    padding: 1.4em;
  }
}

@media screen and (max-width: 824px) {
  #buy h3 {
    margin-bottom: 0.77em;
  }
  #buy .buy__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.875em;
            column-gap: 1.875em;
  }
  #buy .buy__container:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 4;
  }
  #buy button:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
}

@media screen and (max-width: 644px) {
  #buy .buy__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #buy .buy__container:nth-child(3) {
    grid-column: unset;
    grid-row: unset;
  }
  #buy button:nth-child(5) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / 5;
  }
}

#contents {
  background-color: #f5f4f2;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #contents {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #contents {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#contents h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
  margin-bottom: 0.75em;
}

@media screen and (max-width: 1345px) {
  #contents h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#contents .slider-contents {
  max-width: 500px;
}

#contents .slider-contents_slide {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#contents img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1345px) {
  #contents h2 {
    max-width: 450px;
  }
  #contents .slider-contents {
    max-width: 400px;
  }
}

@media screen and (max-width: 644px) {
  #contents h2 {
    max-width: 450px;
  }
  #contents .slider-contents {
    max-width: 340px;
  }
}

#questions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2.14em;
          column-gap: 2.14em;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #questions {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #questions {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#questions h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #questions h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#questions h4 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #252424;
  margin: 0 1em 0 0;
}

#questions p {
  color: #252424;
}

#questions .question__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: white;
}

#questions .question__container:not(:first-child) {
  margin-top: 3.125em;
}

@media screen and (max-width: 1345px) {
  #questions h4 {
    font-size: 1.429em;
  }
}

@media screen and (max-width: 644px) {
  #questions {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#questions .question__container:not(:first-child) {
  margin-top: 1.8em;
}

.question__description {
  position: relative;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.5s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.5s ease-out;
  margin-top: 0;
  margin-bottom: 0;
  z-index: -1;
}

.plus {
  padding: 15px 0;
}

.plus__line {
  width: 31px;
  height: 1px;
  background-color: #252424;
}

.plus__line:last-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: -1px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.question__container-active h4 {
  color: #cb9374 !important;
}

.question__container-active .plus__line:last-child {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.question__container-active + .question__description {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.875em;
  -webkit-transition: max-height 0.9s ease-out, opacity 0.9s ease-out, margin-top 0.3s ease-out;
  transition: max-height 0.9s ease-out, opacity 0.9s ease-out, margin-top 0.3s ease-out;
}

#instagram {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #instagram {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #instagram {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#instagram h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
  margin-bottom: 0.75em;
}

@media screen and (max-width: 1345px) {
  #instagram h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#instagram p {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 1.875em;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #cb9374;
  margin-top: 0;
  margin-bottom: 2.66em;
}

#instagram .img__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 4.375em;
          column-gap: 4.375em;
}

#instagram .inst__slider__container {
  display: none;
  margin: 0 16px;
}

#instagram .inst__slider__container .inst__slider__wrapper .inst__slide {
  pointer-events: none;
}

#instagram .inst__slider__container .inst__slider__wrapper .inst__slide img {
  max-width: 350px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#instagram img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1345px) {
  #instagram p {
    margin-bottom: 1.9em;
  }
  #instagram .img__container {
    -webkit-column-gap: 2.14em;
            column-gap: 2.14em;
  }
}

@media screen and (max-width: 1003px) {
  #instagram .img__container {
    -webkit-column-gap: 1.6em;
            column-gap: 1.6em;
  }
}

@media screen and (max-width: 644px) {
  #instagram .img__container {
    display: none;
  }
  #instagram .inst__slider__container {
    display: block;
  }
}

#connection {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
  background-color: #252424;
}

@media screen and (max-width: 1345px) {
  #connection {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #connection {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#connection .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.14em;
          column-gap: 2.14em;
}

#connection h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
  color: white;
  margin-bottom: 1em;
}

@media screen and (max-width: 1345px) {
  #connection h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#connection p {
  color: white;
  margin-top: 1.875em;
  margin-bottom: 0;
}

#connection button {
  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;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  background-color: #cb9374;
  border: unset;
  padding: 0;
  width: 13.125em;
  height: 3.5em;
  margin-top: 3.125em;
}

#connection dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-column-gap: 1.875em;
          column-gap: 1.875em;
  row-gap: 1.25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
}

#connection dt {
  color: #cb9374;
}

#connection dd {
  margin-left: 0;
}

#connection dt:nth-child(7),
#connection dd:last-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

#connection a {
  color: white;
}

#connection a:hover {
  color: #cb9374;
}

@media screen and (max-width: 1003px) {
  #connection dl {
    margin-left: auto;
  }
}

@media screen and (max-width: 644px) {
  #connection {
    padding-bottom: 0;
  }
  #connection .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 2.14em;
  }
  #connection dl {
    margin-left: unset;
  }
}

footer {
  background-color: #252424;
}

#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

#footer nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[5];
      grid-template-columns: repeat(5, auto);
  -webkit-column-gap: 6.25em;
          column-gap: 6.25em;
  row-gap: 1.4em;
}

#footer nav a {
  color: white;
}

#footer nav a:hover {
  color: #cb9374;
}

@media screen and (max-width: 1345px) {
  #footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer nav {
    -ms-grid-columns: (auto)[3];
        grid-template-columns: repeat(3, auto);
  }
}

@media screen and (max-width: 824px) {
  #footer nav {
    -webkit-column-gap: 4em;
            column-gap: 4em;
  }
}

@media screen and (max-width: 644px) {
  #footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer nav {
    margin-top: 2.14em;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
}

iframe {
  background-color: white;
}

.pay__container {
  position: absolute;
  top: 0;
  left: -100vw;
  z-index: 10;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  background-color: white;
  overflow: hidden;
}

.pay__container .buy__close {
  margin: 15px 15px 0 auto;
  padding: 25px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pay__container .buy__close .buy__line {
  width: 51px;
  height: 1px;
  background-color: #252424;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.pay__container .buy__close .buy__line:first-child {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.pay__container .buy__close .buy__line:last-child {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  margin-top: -1px;
}

.pay__container-active {
  overflow: scroll;
}

.pay__container-active .buy__close .buy__line:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.pay__container-active .buy__close .buy__line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#privacy .container {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

@media screen and (max-width: 1345px) {
  #privacy .container {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

@media screen and (max-width: 644px) {
  #privacy .container {
    padding-top: 4.2em;
    padding-bottom: 4.2em;
  }
}

#privacy h2 {
  font-family: "Cormorant Garamond";
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.25em;
  text-transform: uppercase;
  color: #252424;
  margin-top: 0;
  margin-bottom: 2em;
}

@media screen and (max-width: 1345px) {
  #privacy h2 {
    font-size: 2.14em;
    margin-bottom: 1em;
  }
}

#privacy p {
  color: #252424;
  margin-top: 1.25em;
  margin-bottom: 0;
}

@media screen and (max-width: 644px) {
  #privacy h2 {
    font-size: 1.7em;
  }
}
/*# sourceMappingURL=style.css.map */