:root {
  --green: #678a4c;
  --dark-green: #18351f;
  --light-green: #e1eac6;
  /* --light-green: color(srgb 0.8404 0.9263 0.7057); */
  --orange: #f4895f;
  --yellow: #fcde44;
  --light-gray: #eee;
  --dark-gray: #333;
  --darker-gray: #555;
  --gray: #aaa;
}

@font-face {
  font-family: roboto;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf);
  font-display: swap;
}

@font-face {
  font-family: roboto-bold;
  src: url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf);
  font-display: swap;
}

@font-face {
  font-family: Hind;
  src: url(../fonts/Hind/Hind-Light.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Hind;
  src: url(../fonts/Hind/Hind-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Hind;
  src: url(../fonts/Hind/Hind-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Hind;
  src: url(../fonts/Hind/Hind-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Hind;
  src: url(../fonts/Hind/Hind-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Hind, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: var(--dark-gray);
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-size: contain;
}

body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: text-decoration-color 1s;
}

a:hover {
  text-decoration-color: var(--orange);
}

a.external {
  background: url(../images/open_in_new.svg) no-repeat;
  background-position: top right;
  padding-right: 16px;
  background-size: 0.8rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
}

hr.section-hr {
  margin-bottom: 6rem;
  height: 12px;
  width: 80px;
  background-color: var(--yellow);
}

.content {
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

#header-logo {
  width: 9rem;
  cursor: pointer;
}

@media screen and (max-width: 720px) {
  .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #header-logo {
    width: 7rem;
  }
}

#fixed-header {
  position: fixed;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.93);
  background: linear-gradient(160deg, rgba(235,251,210,0.83) 0%, rgba(225,234,198,0.83) 100%);
  background-size: cover;
  width: 100%;
  align-items: center;
  box-shadow: 0 5px 6px rgba(1,1,1,0.23);
  top: -88px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  transition: top 0.25s ease-out;
  border-bottom: 2px solid #fff;
}

#fixed-header nav ul {
  margin-top: 0;
}

#fixed-header.scrolled {
  top: 0;
}

#fixed-header img {
  width: 4rem;
  margin: 0;
  border: 5px solid #fff;
  border-bottom: 3px solid #fff;
  display: block;
}

#fixed-header header {
  align-items: center;
}

#fixed-header .hamburger-menu {
  padding: 0;
}

.header-container {
  padding-top: 1px;
  border-top: 1px solid var(--light-green);
  border-bottom: 1px solid var(--light-green);
  overflow: hidden;
  position: relative;
}

.top-bar {
  background-color: var(--dark-gray);
  padding-top: 0.5rem;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
  margin-bottom: 6px;
}

.top-bar span {
  display: inline-flex;
  margin-left: 2rem;
  color: var(--light-gray);
  align-items: center
}

.top-bar span img {
  margin-right: 0.5rem;
}

@media screen and (max-width: 720px) {
  .top-bar {
    text-align: left;
  }

  .top-bar span {
    margin-left: 0;
    margin-right: 2rem;
  }
}

@media screen and (max-width: 720px) {
  .header-plant {
    height: 50%;
    right: 50px;
  }
}

.header-content {
  z-index: 1;
  position: relative;
}

.header-content .content {
  background-image: url(../images/plant-bottom.svg);
  background-repeat: no-repeat;
  background-position: bottom right 100px;
  background-size: 45%;
}

.jumbo-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-top: 7rem;
  margin-top: 0;
}

@media screen and (max-width: 720px) {
  .jumbo-wrapper {
    padding-top: 4rem;
  }

  .header-content .content {
    background-position: bottom right 50px;
    background-size: 75%;
  }
}

.jumbo-wrapper > div:first-child {
  flex-basis: 50%;
}

.jumbo-wrapper > div:nth-child(2) {
  flex-grow: 1;
}

.button,
button {
  border: 1px solid transparent;
  background-color: var(--dark-gray);
  color: #fff;
  font-family: roboto-bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: border 1s ease-out, color 0.2s linear 0.2s;
}

.button img {
  margin-left: 0.75rem;
}

.button:hover,
button:hover {
  background-image: linear-gradient(90deg, #fcde44, #ffd144, #ffc347, #ffb74b, #ffaa4f, #ff9e55, #fa935a, #f4895f);
  color: var(--dark-gray);
  border: 1px solid var(--dark-gray);
}

.pointer {
  cursor: pointer;
}

#circle-container {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

#circle-container svg {
  width: 100%;
  height: 100%;
  position: absolute;
}

#circle-container > div {
  position: absolute;
  will-change: rotate;
}

#circle-container.rotating > div {
  animation: rotate 10s infinite linear;
}

#circle-container > div > div {
  height: 4000px;
  width: 4000px;
  position: absolute;
}

#circle-container svg circle {
  stroke: url(#gradient);
  stroke-width: 0;
  will-change: stroke-width;
  animation: stroke-in 2s cubic-bezier(0.68, -0.6, 0.32, 4.6) forwards;
  transform-origin: 50% 50%;
}

#circle-container.replay-animation svg circle {
  stroke-width: 98;
  animation: stroke-out-in 3s cubic-bezier(0.68, -0.6, 0.32, 4.6) forwards;
}

#circle-container svg circle:nth-child(1) { animation-delay: 0s; transform: rotateZ(-30deg); }
#circle-container svg circle:nth-child(2) {animation-delay: 0.1s; transform: rotateZ(-60deg); }
#circle-container svg circle:nth-child(3) {animation-delay: 0.2s; transform: rotateZ(-90deg); }
#circle-container svg circle:nth-child(4) {animation-delay: 0.3s; transform: rotateZ(-120deg); }
#circle-container svg circle:nth-child(5) {animation-delay: 0.4s; transform: rotateZ(-150deg); }
#circle-container svg circle:nth-child(6) {animation-delay: 0.5s; transform: rotateZ(-180deg); }
#circle-container svg circle:nth-child(7) {animation-delay: 0.6s; transform: rotateZ(-210deg); }
#circle-container svg circle:nth-child(8) {animation-delay: 0.7s; transform: rotateZ(-240deg); }
#circle-container svg circle:nth-child(9) {animation-delay: 0.8s; transform: rotateZ(-270deg); }
#circle-container svg circle:nth-child(10) {animation-delay: 0.9s; transform: rotateZ(-300deg); }
#circle-container svg circle:nth-child(11) {animation-delay: 1s; transform: rotateZ(-330deg); }
#circle-container svg circle:nth-child(12) {animation-delay: 1.1s; transform: rotateZ(-360deg); }
#circle-container svg circle:nth-child(13) {animation-delay: 1.2s; transform: rotateZ(-390deg); }
#circle-container svg circle:nth-child(14) {animation-delay: 1.3s; transform: rotateZ(-420deg); }
#circle-container svg circle:nth-child(15) {animation-delay: 1.4s; transform: rotateZ(-450deg); }
#circle-container svg circle:nth-child(16) {animation-delay: 1.5s; transform: rotateZ(-480deg); }
#circle-container svg circle:nth-child(17) {animation-delay: 1.6s; transform: rotateZ(-510deg); }
#circle-container svg circle:nth-child(18) {animation-delay: 1.7s; transform: rotateZ(-540deg); }
#circle-container svg circle:nth-child(19) {animation-delay: 1.8s; transform: rotateZ(-570deg); }

@keyframes stroke-in {
  0% {
    stroke-width: 0;
  }
  66% {
    stroke-width: 92;
  }
  100% {
    stroke-width: 98;
  }
}

@keyframes stroke-out-in {
  0% {
    stroke-width: 98;
  }
  30% {
    stroke-width: 0;
  }
  80% {
    stroke-width: 92;
  }
  100% {
    stroke-width: 98;
  }
}

@keyframes rotate {
  0% {
    transform: rotateZ(0.1deg);
  }
  100% {
    transform: rotateZ(360.1deg);
  }
}

@keyframes fly-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header {
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

nav {
  margin-left: 1rem;
}

header nav ul {
  margin-top: 1rem;
  padding: 1rem 0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  transition: background-color 1s ease-out;
}

nav ul {
  list-style-type: none;
  display: flex;
}

nav ul li {
  margin: 0 2rem;
  animation: fade-in 0.8s ease-in-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
  border-bottom: 2px solid transparent;
}

nav ul li a {
  padding: 1rem 0;
  color: var(--dark-gray);
  font-family: roboto-bold;
  text-transform: uppercase;
  text-underline-offset: 12px;
  text-decoration-thickness: 4px;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav .hamburger-menu {
  display: none;
}

.header-content nav .hamburger-menu {
  margin-top: 3rem;
}

.header-content nav ul {
  margin-top: 1.5rem;
}

@media screen and (max-width: 720px) {
  nav .hamburger-menu {
    display: block;
  }

  header nav ul {
    display: none;
  }

  .jumbo-wrapper > div:first-child {
    flex-basis: 100%;
    margin-bottom: 5rem
  }
}

section {
  margin: 5rem 0;
}

.jumbo {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-top: 1rem;
  padding: 2rem 0 1.5rem;
  line-height: 0.95;
  animation: fly-in 4.5s cubic-bezier(.12,.83,0,1.01) forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.header-container p {
  font-size: 1.5rem;
  animation: fly-in 4.5s cubic-bezier(.12,.83,0,1.01) forwards;
  animation-delay: 1.8s;
  opacity: 0;
}

@media screen and (max-width: 720px) {
  .jumbo {
    font-size: 2rem;
  }

  .header-container p {
    font-size: 1.2rem;
  }
}

.header-container .button {
  animation: fly-in 4.5s cubic-bezier(.12,.83,0,1.01) forwards;
  animation-delay: 2.1s;
  opacity: 0;
}

header img {
  margin-top: 3rem;
  width: 10rem;
  transition: width 0.5s ease-out, box-shadow 0.5s ease-out;
}

.testimonials {
  padding: 5rem 0.1rem 3rem;
  display: grid;
  grid-template-columns: repeat(8, 34%) auto;
  justify-items: stretch;
  align-items: flex-end;
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials::-webkit-scrollbar {
  display: none;
}

.quote-container {
  min-width: 300px;
  max-width: 300px;
  position: relative;
  opacity: 0;
}

.quote-container:nth-child(3n+1) {
  scroll-snap-align: start;
}

@media screen and (max-width: 1100px) {
  .testimonials {
    grid-template-columns: repeat(8, 51%) auto;
  }

  .quote-container:nth-child(3n+1) {
    scroll-snap-align: unset;
  }
  .quote-container:nth-child(2n+1) {
    scroll-snap-align: start;
  }
}

.testimonials.in-view .quote-container {
  animation: fade-in 0.5s ease-out forwards;
}


@media screen and (max-width: 720px) {
  .testimonials {
    grid-template-columns: repeat(9, 101%);
    justify-items: center;
  }

  .testimonials .quote-container {
    place-content: center;
    display: inline;
    scroll-snap-align: center;
  }
}

.quote-mark {
  position: absolute;
  right: -1rem;
  top: -1rem;
  background-color: var(--dark-gray);
  border-radius: 1000px;
  padding: 0.5rem;
  width: 56px;
  height: 56px;
}

.quote-mark span {
  display: inline-block;
  font-size: 6rem;
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: -6px;
  color: var(--yellow);
  transform: translateY(-4.3rem);
}

.quote-box {
  border: 1px solid var(--green);
  border-top: 4px solid var(--green);
  background-color: #fff;
  background: linear-gradient(180deg, #fff 50%, var(--light-gray) 100%);
  border-radius: 16px;
  border-bottom-left-radius: 0;
  box-shadow: 0 5px 6px rgba(1,1,1,0.23);
}

.quote-box > div {
  border: 2px solid #fff;
  padding: 1rem;
  padding-right: 2rem;
  border-radius: 16px;
  border-bottom-left-radius: 0;

  font-weight: 500;
}

.quote-author {
  font-size: 0.8rem;
  padding-left: 1rem;
  padding-top: 1rem;
}

.quote-author .name {
  display: block;
  font-weight: 600;
  margin-bottom: -6px;
}

#testimonial-controls {
  background-color: #333333b8;
  height: 30px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
}

.testimonial-control-page {
  color: #fff;
  font-size: 0.7rem;
  width: 50px;
}

.testimonial-control-left {
  transform: rotateZ(90deg);
}

.testimonial-control-right {
  transform: rotateZ(-90deg);
}

.gradient-container {
  padding: 3rem;
  border-radius: 32px;
  background-image: url(../images/circle-bg-gradient.png), url(../images/circle-bg-gradient.png), url(../images/circle-bg-darker-small.png), linear-gradient(45deg, #e1eac6, #e0eac4, #deeac1, #ddebbf, #dbebbc, #daebb9, #d8ecb7, #d6ecb4);
  background-repeat: no-repeat;
  background-position: bottom -154px right, bottom right, bottom right, center;
  background-size: 30%, auto, auto, 100%, 100%;
  margin-bottom: 1rem;
  border-bottom: 8px solid var(--dark-gray);
}

.contact .gradient-container {
  background: url(../images/circles-big-bg.webp) no-repeat;
  background-size: cover;
}

.gradient-container h2 {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin: -3rem -3rem 1rem -3rem;
  padding: 3rem;
  background-image: radial-gradient(#f2f9de, #d8ecb8);
  background-size: 100% 400px;
  background-repeat: no-repeat;
  scroll-margin-top: 140px;
}

.contact .gradient-container h2 {
  background-image: radial-gradient(#d6edb3, #d8ecb800);
}

.massage-wrapper {
  overflow: hidden;
  margin-top: 5rem;
}

@media screen and (max-width: 1240px) {
  .massage-wrapper {
    background-position-x: -300px;
  }
}

.massage-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 1240px) {
  .massage-container {
    margin: 0;
  }
}

.massage-container > div {
  flex-basis: 45%;
}

@media screen and (max-width: 720px) {
  .gradient-container {
    padding: 2rem 0.5rem;
  }

  .gradient-container h2 {
    margin: -2rem -0.5rem 2rem -0.5rem;
  }

  h2 {
    text-align: center;
  }

  hr {
    margin: 0 auto;
  }

  .massage-container {
    flex-direction: column;
    margin: 0;
  }

  .massage-container > div {
    flex-basis: 90%;
    margin-bottom: 3rem;
    width: 100%;
  }

  .massage hr {
    margin-bottom: 5rem;
  }
}

.massage-item {
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid var(--gray);
  box-shadow: 0 5px 6px rgba(1,1,1,0.13);
  margin: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.massage-container ul {
  margin: 1rem 2rem 1rem 2rem;
}

.massage-container p {
  margin-top: 1rem;
  font-size: 1rem;
}

.massage-item p {
  padding-top: 1rem;
  border-top: 1px solid var(--gray);
}

.massage-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.massage-title img {
  background-color: var(--dark-gray);
  border-radius: 100%;
  padding: 0.25rem;
}

.massage-item.is-open .massage-title img {
  transform: rotateZ(180deg);
}

.massage-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
}

.massage-item.is-open .massage-content {
  grid-template-rows: 1fr;
}

.massage-text {
  overflow: hidden;
}

.khl-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6rem 0;
}

.khl-container img {
  max-width: 8rem;
  filter: grayscale();
  margin-right: 1rem;
  transform: translateX(150%);
  opacity: 0;
  transition: filter ease-out 0.2s, opacity 0.5s ease-out, transform 0.5s cubic-bezier(.12,.83,0,1.01);
}

.khl-container span {
  opacity: 0;
  transition: opacity 0.5s ease-out 0.3s;
}

.khl-container:hover img {
  filter: grayscale(0%);
}

.khl-container.in-view img {
  opacity: 1;
  transform: translateX(0);
}

.khl-container.in-view span {
  opacity: 1;
}

.khl-link {
  display: block;
  color: var(--darker-gray);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.massage-photo-container {
  position: relative;
}

.massage-photo-container > div {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
}

.massage-photo-container > div:not(:first-child) {
  margin-top: -20%;
}

.massage-photo-container > div > div {
  border-radius: 50%;
}

.massage-photo-container img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

.massage-photo-container > div:nth-child(1) > div {
  transform-origin: center;
  border: 16px solid #fff;
}

.massage-photo-container > div:nth-child(2) {
  border: 16px solid #fff;
  background-color: #fff;
  transform: scale(0);
  transition: transform 0.7s ease-out;
}

.massage-photo-container > div:nth-child(2) > div {
  transform: scale(0);
  transition: transform 0.7s ease-out 0.2s;
}

.massage-photo-container > div:nth-child(3) {
  border: 16px solid #fff;
  background-color: #fff;
  transform: scale(0);
  transition: transform 0.7s ease-out;
}

.massage-photo-container > div:nth-child(3) > div {
  transform: scale(0);
  transition: transform 0.7s ease-out 0.2s;
}

.massage-photo-container.in-view > div:nth-child(2) {
  transform: scale(1);
}

.massage-photo-container.in-view > div:nth-child(2) > div {
  transform: scale(1);
}

.massage-photo-container.in-view2 > div:nth-child(3) {
  transform: scale(1);
}

.massage-photo-container.in-view2 > div:nth-child(3) > div {
  transform: scale(1);
}

.avoid-massage-container .symptoms-container,
.vat-container {
  margin: 1rem -1rem;
  background-color: var(--light-green);
}

.avoid-massage-container p {
  padding-top: 0;
  border-top: 0;
}

.avoid-massage-container > div {
  margin: 2rem;
}

.symptoms {
  display: flex;
}

.symptoms li {
  font-size: 0.8rem;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .symptoms {
    flex-direction: column;
  }

  .symptoms ul:first-child {
    margin-bottom: 0;
  }

  .symptoms ul:last-child {
    margin-top: 0;
  }
}

.price-list {
  margin-top: 0;
  background-color: var(--light-green);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.price-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 3rem;
}

.price-item {
  background: url(../images/price-background.webp) no-repeat;
  background-size: cover;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 6px rgba(1,1,1,0.13);
  border-top: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  max-width: 234px;
  min-width: 234px;
  margin-bottom: 1rem;
  opacity: 0;
}

.price-item > div {
  opacity: 0;
}

.price-container .price-item.in-view, .price-container .price-item.in-view > div {
  animation: fly-in 0.5s cubic-bezier(.12,.83,0,1.01) forwards;
}

.price-container .price-item.in-view:nth-child(2) { animation-delay: 0.2s; }
.price-container .price-item.in-view:nth-child(3) { animation-delay: 0.4s; }
.price-container .price-item.in-view:nth-child(4) { animation-delay: 0.6s; }
.price-container .price-item.in-view:nth-child(5) { animation-delay: 0.8s; }
.price-container .price-item.in-view:nth-child(2) > div { animation-delay: 0.4s; }
.price-container .price-item.in-view:nth-child(3) > div { animation-delay: 0.6s; }
.price-container .price-item.in-view:nth-child(4) > div { animation-delay: 0.8s; }
.price-container .price-item.in-view:nth-child(5) > div { animation-delay: 1.0s; }

.price-item > div:first-child {
  flex-grow: 1;
}

.price-item .label {
  display: block;
  color: var(--gray);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-item .duration {
  font-size: 2rem;
  font-weight: 600;
}

.price-item ul {
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.price-item ul li {
  font-size: 0.9rem;
}

.price-item .price {
  display: block;
  text-align: right;
  font-size: 4rem;
  font-weight: 600;
}

.price-item .button-row {
  border-top: 1px solid var(--gray);
  text-align: center
}

@media screen and (max-width: 1270px) {
  .price-container {
    max-width: 900px;
  }
}

@media screen and (max-width: 819px) {
  .price-item {
    min-width: unset;
    max-width: unset;
    flex-basis: 100%;
    flex-direction: row;
  }

  .price-item > div:first-child {
    margin-right: 1rem;
  }

  .price-item ul {
    margin-left: 1rem;
  }

  .price-item ul li {
    font-size: 0.7rem;
  }

  .price-container .price-item.in-view:nth-child(2),
  .price-container .price-item.in-view:nth-child(3),
  .price-container .price-item.in-view:nth-child(4),
  .price-container .price-item.in-view:nth-child(5) {
    animation-delay: unset;
  }

  .price-container .price-item.in-view:nth-child(2) > div,
  .price-container .price-item.in-view:nth-child(3) > div,
  .price-container .price-item.in-view:nth-child(4) > div,
  .price-container .price-item.in-view:nth-child(5) > div {
    animation-delay: 0.2s;
  }
}

.payment-method-logos {
  display: flex;
  flex-wrap: wrap;;
  align-items: center;
}

.payment-method-logos img {
  max-width: 100px;
  margin-right: 1rem;
  filter: grayscale();
}

.payment-method-logos img:hover {
  filter: grayscale(0);
}

.present-card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10rem 0 9rem;
}

.present-card-container h2 {
  font-family: roboto-bold;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
}

.present-card-container > div:nth-child(2) {
  text-align: center;
}

.present-card {
  min-height: 300px;
  min-width: 290px;
  margin-right: 2rem;
}

.present-card img {
  position: absolute;
  max-width: 200px;
  border: 1px solid var(--gray);
  box-shadow: 0 5px 6px rgba(1,1,1,0.23);
  transform-origin: top;
}

.present-card img:nth-child(1) {
  transform: rotateZ(-10deg);
  opacity: 0.6;
}

.present-card img:nth-child(2) {
  transform: rotateZ(-20deg);
}

@media screen and (max-width: 720px) {
  .present-card-container {
    flex-direction: column;
  }

  .present-card {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

section.booking {
  margin-top: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--light-green);
}

.booking-info-container {
  margin: 0 auto;
  max-width: 880px;
}

.booking-info-container hr {
  border-top: 2px solid var(--green);
  width: 20%;
  margin: 0 auto 4rem;
  box-shadow: 0 5px 6px rgba(1,1,1,0.23);
}

.booking-info-container h3 {
  margin-top: 3rem;
}

.info-box {
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  padding-left: 52px;
  background: url(../images/info.svg) no-repeat;
  background-position: 1rem 1rem;
  background-color: #fff;
}

.info-box h3 {
  margin-top: 0;
}

.cancel-info {
  border: 1px solid var(--dark-gray);
  background-color: var(--light-green);
}

.contact {
  /* background-color: var(--dark-gray); */
  padding-top: 3rem;
  padding-bottom: 0;
  margin-bottom: 0;
  /* background: url(../images/plant-bottom.svg) no-repeat;
  background-position: bottom right;
  background-size: 18rem; */
}

.portrait-wrapper {
  background: linear-gradient(45deg, #e1eac6, #e0eac4, #deeac1, #ddebbf, #dbebbc, #daebb9, #d8ecb7, #d6ecb4);
  width: 200px;
  height: 200px;
  border-radius: 200px;
  border: 2px solid #fff;
  box-sizing: unset;
  position: relative;
  justify-self: center;
  display: grid;
}

#ilkka-hypponen {
  background: url(../images/photos/ilkka-hypponen-portrait.png);
  height: 250px;
  width: 200px;
  background-size: cover;
  border-radius: 9999px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -48px;
}

.contact-wrapper {
  max-width: 900px;
  margin: 5rem auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  justify-content: space-around;
  align-items: center;
}

.contact ul {
  list-style-type: none;
}

.contact button {
  margin: 0;
  display: inline;
}

.massage-text.footer-item {
  margin-top: 1rem;
}

.footer-item {
  display: flex;
  align-items: flex-start;
}

.footer-item img {
  margin-right: 0.5rem;
}

.footer-item span {
  font-size: 0.9rem;
}

.footer-nav ul {
  flex-direction: column;
  text-align: center;
}

.location-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.vat-container {
  margin-bottom: -1rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 1rem 1rem 1rem 48px;
  font-size: 0.9rem;
}

.contact-logo {
  width: 9rem;
  justify-self: center;
  align-self: center;
}

@media screen and (max-width: 840px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-logo-wrapper {
    display: none;
  }
}

.massage hr,
.contact hr {
  margin-bottom: 0;
}

footer {
  margin: 12rem 0 3rem;
  text-align: center;
}

footer nav {
  margin: 0;
  display: flex;
  flex-direction: column;
}

footer ul {
  display: inline-flex;
  flex-direction: column;
}

footer ul li {
  display: inline;
  margin: 0 0 1rem 0;
}

footer ul li a {
  font-size: 1.3rem;
  text-decoration: none;
}

footer nav.back-to-top {
  background-color: var(--light-green);
  padding: 2rem 0;
}

footer nav.back-to-top ul li {
  margin: 0;
}

.bottom-bar {
  background-color: var(--dark-gray);
  padding: 0.5rem 0;
  text-align: right;
}

.bottom-bar span {
  color: var(--light-gray);
  font-size: 0.8rem;
}

#full-screen-nav-container {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  transition: left 0.5s ease-out, opacity 0.5s ease-out;
}

#full-screen-nav-container .close-icon,
#full-screen-instructions .close-icon {
  height: 3rem;
}

#full-screen-nav-container > div {
  position: relative;
}

.full-screen-nav-bg-1 {
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-color: var(--green);
}

.full-screen-nav-bg-2 {
  position: absolute;
  height: 100vh;
  width: 100vw;
  left: 100vw;
  transition: left 0.5s ease-out;
  background-color: var(--light-green);
}

/* .full-screen-nav-bg-2 > div, */
.full-screen-nav-bg-2 > nav {
  margin-left: 0;
  transform: translateX(10%);
  opacity: 0;
  transition: transform 0.2s ease-out 0.5s, opacity 0.2s linear 0.5s;
}

#full-screen-nav-container.open {
  left: 0;
  opacity: 1;
}

#full-screen-nav-container.open .full-screen-nav-bg-2 {
  left: 0;
}

#full-screen-nav-container.open .full-screen-nav-bg-2 > nav {
  transform: translateX(0);
  opacity: 1;
}

.full-screen-nav-bg-2 > div {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

#full-screen-nav-container nav ul {
  display: block;
  margin-top: 4rem;
}

#full-screen-nav-container nav ul li {
  text-align: center;
  margin: 2rem 0;
}

#full-screen-nav-container nav ul li a {
  font-size: 1.5rem;
}

#full-screen-instructions {
  position: fixed;
  top: 100vh;
  background-color: #fff;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 100;
  padding: 2rem;
  opacity: 0;
  transition: top 0.5s ease-out, opacity 0.5s ease-out;
}

#full-screen-instructions.open {
  top: 0;
  opacity: 1;
}

#full-screen-instructions .map-container {
  overflow: scroll;
  height: 100%;
  text-align: center;
}

#full-screen-instructions .map-container img {
  max-height: 80%;
}
