* {
  margin: 0;
  padding: 0;
  outline: unset;
  border: unset;
  list-style-type: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  font-variant-numeric: lining-nums;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

input,
textarea,
select,
button {
  display: block;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, button::-webkit-input-placeholder {
  color: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, button::-moz-placeholder {
  color: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder, button:-ms-input-placeholder {
  color: inherit;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder, button::-ms-input-placeholder {
  color: inherit;
}
input::placeholder,
textarea::placeholder,
select::placeholder,
button::placeholder {
  color: inherit;
}
input option,
textarea option,
select option,
button option {
  background-color: inherit;
}

a {
  cursor: pointer;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:root {
  --section-side-gap: 2.5rem;
  --section-between-gap: 7rem;
  --content-padding: 7rem;
}

body {
  --color-light-pink: #F1EDFE;
  --color-dark-pink: #B1A0EA;
  --color-super-dark-pink: #8E00F9;
  --color-light-blue: #E7EDFF;
  --color-super-light-blue: #F7F9FF;
  --color-dark-blue: #311AF7;
  --color-gray: #343434;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-hover-blue: #36ABFF;
  --color-active-blue: #100194;
}

body.darkmode {
  --color-light-pink: #2A1654;
  --color-dark-pink: #B1A0EA;
  --color-super-dark-pink: #4075FF;
  --color-light-blue: #0E2255;
  --color-super-light-blue: #0E2255;
  --color-dark-blue: #4075FF;
  --color-gray: #ffffff;
  --color-black: #ffffff;
  --color-active-blue: #36ABFF;
  --color-white: #121213;
}

@media (max-width: 1440px) {
  :root {
    --content-padding: 0;
  }
}
@media (max-width: 960px) {
  :root {
    --section-side-gap: 2rem;
    --section-between-gap: 6rem;
  }
}
@media (max-width: 640px) {
  :root {
    --section-side-gap: 1rem;
  }
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-weight: 400;
  src: url(fonts/Gilroy-Regular.woff2);
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-weight: 500;
  src: url(fonts/Gilroy-Medium.woff2);
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-weight: 700;
  src: url(fonts/Gilroy-Bold.woff2);
}
button {
  cursor: pointer;
  background-color: var(--color-dark-blue);
  color: white;
  padding: 0.75em 2em;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.5rem;
  white-space: nowrap;
  line-height: 1em;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
button.bordered {
  border: 1px solid var(--color-gray);
  background-color: transparent;
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
button.bordered > * {
  display: none;
}
button.bordered:hover {
  background-color: transparent;
  border: 1px solid var(--color-dark-blue);
  color: var(--color-dark-blue);
}
button:hover {
  background-color: var(--color-hover-blue);
}

label {
  font-size: 12px;
}

input {
  padding: 0.5em 0;
  border-bottom: 1px solid var(--color-black);
  width: 100%;
  font-size: 16px;
  color: var(--color-gray);
}
input::-webkit-input-placeholder {
  color: #B1A0EA;
}
input::-moz-placeholder {
  color: #B1A0EA;
}
input:-ms-input-placeholder {
  color: #B1A0EA;
}
input::-ms-input-placeholder {
  color: #B1A0EA;
}
input::placeholder {
  color: #B1A0EA;
}

svg.goo {
  display: none;
}

button.blob {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
button.blob:hover span.blob {
  -webkit-transform: translateZ(0) scale(1.7);
          transform: translateZ(0) scale(1.7);
}
button.blob span.blobs-wrap {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #311AF7;
}
button.blob span.blobs {
  position: relative;
  display: block;
  height: 100%;
  -webkit-filter: url("#goo");
          filter: url("#goo");
  z-index: 1;
}
button.blob span.blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #36ABFF;
  border-radius: 100%;
  -webkit-transform: translate3d(0, 150%, 0) scale(1.7);
          transform: translate3d(0, 150%, 0) scale(1.7);
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  -o-transition: transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}
button.blob span.blob:nth-child(1) {
  left: 0%;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
button.blob span.blob:nth-child(2) {
  left: 30%;
  -webkit-transition-delay: 0.08s;
       -o-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
button.blob span.blob:nth-child(3) {
  left: 60%;
  -webkit-transition-delay: 0.16s;
       -o-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
button.blob span.blob:nth-child(4) {
  left: 90%;
  -webkit-transition-delay: 0.24s;
       -o-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.only_desktop {
  display: block;
}

.only_mobile {
  display: none;
}

section div.container > h2 {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: var(--section-side-gap);
  justify-self: start;
}

@media (max-width: 640px) {
  .only_desktop {
    display: none;
  }
  .only_mobile {
    display: block;
  }
  button {
    font-size: 1rem;
  }
  section div.container > h2 {
    font-size: 20px;
  }
}
* {
  line-height: 1.2em;
  letter-spacing: 0.03em;
}

html, body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
  overflow-x: clip;
  background-color: var(--color-white);
}

section {
  position: relative;
}
section[id] {
  scroll-margin-top: calc(var(--section-between-gap) + 82px);
}

div.container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-side-gap);
}

header {
  padding-top: var(--section-side-gap);
  padding-bottom: var(--section-side-gap);
  background-color: var(--color-white);
  position: sticky;
  top: 0px;
  z-index: 99;
  -webkit-transition: padding 0.2s, -webkit-box-shadow 0.2s;
  transition: padding 0.2s, -webkit-box-shadow 0.2s;
  -o-transition: box-shadow 0.2s, padding 0.2s;
  transition: box-shadow 0.2s, padding 0.2s;
  transition: box-shadow 0.2s, padding 0.2s, -webkit-box-shadow 0.2s;
}
header div.container {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  grid-auto-flow: column;
  grid-gap: 2rem;
  z-index: 10;
}
header a.logotype {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1rem;
}
header a.logotype img {
  width: 50px;
  height: 50px;
}
header a.logotype h1 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 500;
}
header a.logotype h1 small {
  display: block;
  font-size: 16px;
  line-height: 1em;
  font-weight: 500;
  position: absolute;
  bottom: 100%;
  left: 0;
}
header a.logotype h1 strong {
  font-weight: 500;
  font-size: larger;
}
header nav {
  display: grid;
  justify-items: end;
}
header nav ul {
  display: grid;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 0.5rem;
}
header nav a {
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #8E00F9;
  -webkit-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}
header nav a:hover {
  color: #8E00F9;
}
header nav a:hover::after {
  width: 100%;
}
header div.darkmode, header div.phone_icon, header div.menu_icon {
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  border-radius: 50%;
  cursor: pointer;
}
header div.darkmode a, header div.phone_icon a, header div.menu_icon a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
header div.darkmode img, header div.phone_icon img, header div.menu_icon img {
  width: 50%;
  height: 50%;
}
header div.darkmode svg, header div.phone_icon svg, header div.menu_icon svg {
  width: 75%;
  height: 75%;
}
header div.darkmode {
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  -webkit-transition: background-color 0.3s, border 0.3s;
  -o-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
header div.darkmode svg path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header div.darkmode svg.sun {
  display: none;
}
header div.darkmode svg.moon {
  display: block;
}
header div.darkmode:hover {
  border: 1px solid transparent;
  background-color: var(--color-dark-blue);
}
header div.darkmode:hover svg path, header div.darkmode:hover svg circle {
  fill: #ffffff;
}
header div.darkmode:hover svg.moon path {
  stroke: var(--color-dark-blue);
}
header div.darkmode.on svg.sun {
  display: block;
}
header div.darkmode.on svg.moon {
  display: none;
}
header div.darkmode div.theme_loading {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0px;
  aspect-ratio: 1/1;
  background-color: #121213;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header div.darkmode div.theme_loading.show {
  -webkit-animation: darkmodeshow 1s;
          animation: darkmodeshow 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forward;
          animation-fill-mode: forward;
  z-index: 999999;
}
header div.darkmode div.theme_loading.hide {
  -webkit-animation: darkmodehide 1s;
          animation: darkmodehide 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forward;
          animation-fill-mode: forward;
  z-index: 999999;
}
header div.phone {
  display: grid;
}
header div.phone a {
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header div.phone a:hover {
  color: var(--color-dark-blue);
}
header div.phone_icon {
  display: none;
  background-color: var(--color-dark-blue);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header div.phone_icon:hover {
  background-color: var(--color-active-blue);
}
header div.menu_icon {
  display: none;
  position: relative;
  background-color: #8E00F9;
}
header div.menu_icon:hover {
  background-color: #6800b8;
}
header div.menu_icon div {
  width: 20px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 1px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header div.menu_icon div:first-child {
  margin-top: -8px;
}
header div.menu_icon div:last-child {
  margin-top: 8px;
}
header div.menu_icon.active div:first-child {
  opacity: 0;
}
header div.menu_icon.active div:last-child {
  opacity: 0;
}
header div.menu_icon.active div:nth-child(2) {
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header div.menu_icon.active div:nth-child(3) {
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header button {
  display: none;
  font-size: 16px;
}
header.second div.container {
  grid-template-columns: 1fr -webkit-max-content -webkit-max-content;
  grid-template-columns: 1fr max-content max-content;
}
header.second a.logotype h1 {
  font-size: 1.25rem;
}
header.second a.logotype h1 small {
  position: static;
}
header.second nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header.second nav ul {
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 1rem 1.5rem;
}
header.second button {
  display: block;
}
header.sticky {
  padding: 1rem 0;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
header.sticky div.mobile_menu {
  padding-top: 3.5rem;
}
header div.mobile_menu {
  position: fixed;
  top: -300px;
  left: 0;
  width: 100%;
  padding: 0 var(--section-side-gap);
  padding-top: calc(var(--section-side-gap) + 2.5em);
  background-color: var(--color-light-blue);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  justify-items: end;
  z-index: 9;
  border-bottom-left-radius: 90px;
  display: grid;
}
header div.mobile_menu ul {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 1.5em;
  font-size: 24px;
  font-weight: 500;
  padding: var(--section-side-gap) 0;
}
header div.mobile_menu.opened {
  -webkit-animation: menuopen 0.2s;
          animation: menuopen 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header div.mobile_menu.closed {
  -webkit-animation: menuclose 0.2s;
          animation: menuclose 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (orientation: portrait) {
  @-webkit-keyframes darkmodeshow {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 200vh;
      opacity: 1;
    }
    99% {
      width: 200vh;
      opacity: 0;
    }
    100% {
      z-index: -999;
    }
  }
  @keyframes darkmodeshow {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 200vh;
      opacity: 1;
    }
    99% {
      width: 200vh;
      opacity: 0;
    }
    100% {
      z-index: -999;
    }
  }
  @-webkit-keyframes darkmodehide {
    0% {
      z-index: -999;
    }
    1% {
      width: 200vh;
      opacity: 0;
    }
    50% {
      width: 200vh;
      opacity: 1;
    }
    100% {
      width: 0;
      opacity: 1;
    }
  }
  @keyframes darkmodehide {
    0% {
      z-index: -999;
    }
    1% {
      width: 200vh;
      opacity: 0;
    }
    50% {
      width: 200vh;
      opacity: 1;
    }
    100% {
      width: 0;
      opacity: 1;
    }
  }
}
@media (orientation: landscape) {
  @-webkit-keyframes darkmodeshow {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 200vw;
      opacity: 1;
    }
    99% {
      width: 200vw;
      opacity: 0;
    }
    100% {
      z-index: -999;
    }
  }
  @keyframes darkmodeshow {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 200vw;
      opacity: 1;
    }
    99% {
      width: 200vw;
      opacity: 0;
    }
    100% {
      z-index: -999;
    }
  }
  @-webkit-keyframes darkmodehide {
    0% {
      z-index: -999;
    }
    1% {
      width: 200vw;
      opacity: 0;
    }
    50% {
      width: 200vw;
      opacity: 1;
    }
    100% {
      width: 0;
      opacity: 1;
    }
  }
  @keyframes darkmodehide {
    0% {
      z-index: -999;
    }
    1% {
      width: 200vw;
      opacity: 0;
    }
    50% {
      width: 200vw;
      opacity: 1;
    }
    100% {
      width: 0;
      opacity: 1;
    }
  }
}
@-webkit-keyframes menuopen {
  0% {
    top: -300px;
  }
  100% {
    top: 0px;
  }
}
@keyframes menuopen {
  0% {
    top: -300px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes menuclose {
  0% {
    top: 0px;
  }
  100% {
    top: -300px;
  }
}
@keyframes menuclose {
  0% {
    top: 0px;
  }
  100% {
    top: -300px;
  }
}
@media (max-width: 1440px) {
  header a.logotype h1 {
    font-size: 2rem;
  }
  header.second nav ul {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }
}
@media (max-width: 1200px) {
  header div.container {
    grid-gap: 1.25rem;
  }
  header a.logotype img {
    width: 40px;
    height: 40px;
  }
  header a.logotype h1 {
    display: none;
  }
  header nav {
    display: none;
  }
  header div.phone {
    display: none;
  }
  header div.phone_icon {
    display: grid;
  }
  header div.menu_icon {
    display: grid;
  }
  header.second div.container {
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
  }
  header div.mobile_menu {
    -webkit-box-shadow: 0 10px 100px rgba(35, 9, 90, 0.3098039216);
            box-shadow: 0 10px 100px rgba(35, 9, 90, 0.3098039216);
  }
}
@media (max-width: 640px) {
  header div.mobile_menu ul {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  header.second button {
    display: none;
  }
  header div.mobile_menu {
    justify-items: start;
  }
  header div.mobile_menu ul {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    grid-auto-flow: dense;
    padding: calc(var(--section-side-gap) * 2) 0;
    padding-left: calc(var(--section-side-gap) * 3);
  }
}
section.main {
  overflow: hidden;
}
section.main div.content {
  display: grid;
  grid-template-columns: 1fr 1fr -webkit-max-content;
  grid-template-columns: 1fr 1fr max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 2rem;
  padding-left: var(--content-padding);
}
section.main div.text {
  padding-top: var(--section-side-gap);
  padding-bottom: var(--section-between-gap);
}
section.main div.text div.doctor {
  display: none;
}
section.main div.text div.doctor h2 {
  font-size: 50px;
  font-weight: 500;
}
section.main div.text div.description h2, section.main div.text div.description h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-dark-blue);
}
section.main div.text div.description button {
  margin-top: var(--section-side-gap);
}
section.main div.text div.description::after {
  content: "";
  width: calc(100% + (100vw - 100%) / 2 - 280px);
  height: calc(100% - 40px);
  background-color: var(--color-light-pink);
  position: absolute;
  bottom: 0;
  right: 280px;
  z-index: -1;
  border-top-right-radius: 1000px;
}
section.main div.woman {
  -ms-flex-item-align: end;
      align-self: end;
}
section.main div.woman img {
  -webkit-filter: drop-shadow(4rem 6rem 4rem rgba(46, 35, 83, 0.2196078431));
          filter: drop-shadow(4rem 6rem 4rem rgba(46, 35, 83, 0.2196078431));
}
section.main div.reviews {
  display: grid;
  grid-gap: 5rem;
  font-size: 14px;
  color: var(--color-black);
  max-width: 320px;
}
section.main div.reviews div.review {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-gap: 1.25rem;
}
section.main div.reviews div.review img.photo {
  width: 60px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 50%;
}
section.main div.reviews div.review div.description {
  display: grid;
  justify-items: start;
  grid-gap: 0.5rem;
}
section.main div.reviews div.review div.description a.name {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 0.5rem;
}
section.main div.reviews div.review div.description img.social {
  height: 1.25rem;
  width: 1.25rem;
}
section.main div.reviews div.review:nth-child(2) {
  margin-left: 5rem;
}
section.main div.reviews div.review:nth-child(3) {
  margin-left: 1rem;
}

body.darkmode section.main div.text div.description h1 {
  color: var(--color-gray);
}
body.darkmode section.main div.text div.description::after {
  background-color: var(--color-light-blue);
}

@media (max-width: 1440px) {
  section.main div.text {
    padding-top: var(--section-between-gap);
    padding-bottom: var(--section-between-gap);
  }
  section.main div.text div.description::after {
    content: "";
    width: calc(100% + (100vw - 100%) / 2);
    height: calc(100% - 40px);
    background-color: var(--color-light-pink);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    border-top-right-radius: 1000px;
  }
}
@media (max-width: 1200px) {
  section.main div.content {
    grid-template-columns: repeat(2, 1fr);
  }
  section.main div.reviews {
    display: none;
  }
  section.main div.text {
    display: grid;
    grid-gap: var(--section-between-gap);
  }
  section.main div.text div.doctor {
    display: block;
    padding-left: var(--section-side-gap);
  }
  section.main div.text div.description {
    position: relative;
    padding-left: var(--section-side-gap);
  }
  section.main div.text div.description::after {
    right: -100%;
    width: calc(200% + var(--section-side-gap));
    height: calc(100% + var(--section-between-gap) + var(--section-between-gap) / 2);
    bottom: calc(var(--section-between-gap) * -1);
  }
  section.main div.woman img {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}
@media (max-width: 960px) {
  section.main div.text div.doctor {
    padding-left: unset;
  }
  section.main div.text div.description {
    padding-left: unset;
  }
  section.main div.woman img {
    height: 80%;
  }
}
@media (max-width: 640px) {
  section.main div.text {
    grid-gap: calc(var(--section-side-gap) * 2);
  }
  section.main div.text div.doctor h2 {
    font-size: 30px;
  }
  section.main div.text div.description h2, section.main div.text div.description h3 {
    font-size: 18px;
  }
  section.main div.text div.description:after {
    right: unset;
    left: 30%;
    border-top-left-radius: 1000px;
    border-top-right-radius: unset;
  }
  section.main div.woman img {
    left: 45%;
  }
}
section.about {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
  overflow: visible;
}
section.about div.container::after {
  content: "";
  width: 670px;
  height: 550px;
  background-color: var(--color-light-blue);
  position: absolute;
  top: 240px;
  right: 260px;
  z-index: -2;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
}
section.about div.content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "A B C";
  grid-gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: var(--content-padding);
  justify-self: end;
}
section.about div.text {
  grid-area: A;
  display: grid;
  grid-gap: 2rem;
}
section.about div.text h3 {
  font-size: 50px;
  font-weight: 500;
}
section.about div.text div.stamps {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  text-align: center;
  max-width: 340px;
  width: 100%;
}
section.about div.text div.stamps figure {
  display: grid;
  justify-items: center;
  grid-gap: 0.75rem;
}
section.about div.text div.stamps figure img {
  max-width: 110px;
}
section.about div.text div.stamps figure figcaption {
  font-size: 0.75em;
}
section.about div.photo {
  grid-area: B;
}
section.about div.photo img {
  max-width: 100%;
}
section.about div.advantages {
  grid-area: C;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 3rem;
  font-weight: 700;
  position: relative;
  max-width: 320px;
}
section.about div.advantages div.advantage {
  position: relative;
  display: grid;
  grid-gap: 0.5rem;
  max-width: 60%;
}
section.about div.advantages strong {
  display: block;
  font-size: 50px;
  font-weight: 500;
  white-space: nowrap;
}
section.about div.advantages img {
  position: absolute;
  left: 100%;
  z-index: -1;
}
section.about div.advantages img.certificate {
  top: 0;
  left: 170px;
  max-width: 100px;
}
section.about div.advantages img.microscope {
  bottom: 0;
  left: 130px;
  max-width: 140px;
}

@media (max-width: 1080px) {
  section.about div.container::after {
    right: calc(var(--section-side-gap) * -1);
    top: 200px;
  }
  section.about div.content {
    grid-template-areas: "A B" "C C";
    grid-template-columns: 2fr 1fr;
    grid-gap: 4rem 2rem;
  }
  section.about div.photo {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  section.about div.photo img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
  }
  section.about div.advantages {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
  }
  section.about div.advantages div.advantage {
    max-width: 260px;
  }
  section.about div.advantages img.microscope {
    top: -50%;
    left: 100px;
  }
  section.about div.advantages img.certificate {
    top: -50%;
    left: 240px;
  }
}
@media (max-width: 640px) {
  section.about div.container::after {
    display: none;
  }
  section.about div.content {
    grid-template-columns: 1fr;
    grid-template-areas: "A" "C";
  }
  section.about div.text {
    grid-gap: var(--section-side-gap);
  }
  section.about div.text h3 {
    font-size: 30px;
    max-width: 55%;
    margin-bottom: var(--section-side-gap);
  }
  section.about div.text div.stamps {
    position: relative;
    margin-top: 2rem;
    grid-template-columns: 1fr;
    max-width: unset;
  }
  section.about div.text div.stamps::before {
    content: "";
    display: block;
    position: absolute;
    top: 90%;
    right: calc(var(--section-side-gap) * -1);
    width: 75%;
    height: 50%;
    background-color: var(--color-light-pink);
    border-top-left-radius: 1000px;
    z-index: -1;
  }
  section.about div.text div.stamps::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(var(--section-side-gap) * -1);
    width: 75%;
    height: 75%;
    background-color: var(--color-light-blue);
    border-top-right-radius: 1000px;
    z-index: -1;
  }
  section.about div.photo {
    position: absolute;
    top: calc(var(--section-side-gap) * -1);
    right: var(--section-side-gap);
  }
  section.about div.photo img {
    max-height: 220px;
  }
  section.about div.advantages {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  section.about div.advantages div.advantage {
    padding: calc(var(--section-side-gap) * 2) 0 calc(var(--section-side-gap) * 2) calc(var(--section-side-gap) * 3);
    max-width: 240px;
  }
  section.about div.advantages div.advantage img.certificate {
    left: 220px;
  }
  section.about div.advantages div.advantage img.microscope {
    left: 160px;
  }
  section.about div.advantages div.advantage::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(var(--section-side-gap) * -1);
    height: 1px;
    width: 140px;
    background-color: var(--color-gray);
  }
  section.about div.advantages div.advantage:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  section.about div.advantages div.advantage:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  section.about div.advantages div.advantage:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  section.about div.advantages div.advantage:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
section.years {
  margin-top: calc(var(--section-between-gap) * 2);
  margin-bottom: var(--section-between-gap);
  overflow: visible;
}
section.years div.container {
  display: grid;
}
section.years div.container::after {
  content: "";
  width: 560px;
  height: 1280px;
  background-color: var(--color-light-pink);
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateX(-75%);
      -ms-transform: translateX(-75%);
          transform: translateX(-75%);
  z-index: -1;
  border-top-left-radius: 1000px;
}
section.years div.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--section-between-gap);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.years div.swiper {
  justify-self: start;
  width: 100%;
}
section.years div.swiper-pagination {
  position: relative;
  display: grid;
  justify-items: end;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}
section.years div.swiper-pagination span {
  position: relative;
  display: block;
  width: unset;
  height: unset;
  padding: 0.5rem 0;
  margin: unset !important;
  border-radius: unset;
  font-size: 30px;
  background-color: transparent;
  color: var(--color-super-dark-pink);
  opacity: 0.4;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  text-align: right;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section.years div.swiper-pagination span:hover {
  opacity: 1;
}
section.years div.swiper-pagination span.swiper-pagination-bullet-active {
  font-size: 200px;
  color: var(--color-dark-blue);
  letter-spacing: 0.09em;
  right: -2rem;
  opacity: 1;
}
section.years div.swiper-slide {
  height: auto !important;
  max-width: 360px;
  display: grid;
  grid-gap: 1rem;
}

@media (max-width: 1200px) {
  section.years div.content {
    grid-gap: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.years div.swiper-pagination span.swiper-pagination-bullet-active {
    font-size: 100px;
    right: -0.9rem;
  }
  section.years div.swiper-slide {
    max-width: 320px;
  }
  section.years div.swiper-slide img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  section.years div.container {
    padding-left: var(--section-side-gap);
  }
  section.years div.container::after {
    display: none;
  }
  section.years div.content {
    grid-template-columns: 60px 1fr;
    grid-gap: var(--section-side-gap);
  }
  section.years div.swiper-pagination span {
    font-size: 21px;
    letter-spacing: unset;
  }
  section.years div.swiper-pagination span.swiper-pagination-bullet-active {
    font-size: 24px;
    right: unset;
    letter-spacing: unset;
  }
}
section.certificates {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
  overflow: hidden;
}
section.certificates h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 4rem;
}
section.certificates div.content {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}
section.certificates div.swiper-wrapper {
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
}
section.certificates div.swiper-slide {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
section.certificates div.certificate figure {
  display: grid;
  grid-gap: 2rem;
}
section.certificates div.certificate figure img {
  height: 300px;
}
section.certificates div.certificate figure figcaption {
  display: grid;
  grid-gap: 0.5rem;
  width: 0;
  min-width: 100%;
}
section.certificates div.certificate figure figcaption p {
  font-size: 14px;
}
section.certificates div.swiper-pagination {
  display: none;
  position: relative;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.certificates div.swiper-pagination span {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0 !important;
}
section.certificates div.swiper-pagination span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: #8E00F9;
  border-radius: 50%;
}
section.certificates div.swiper-pagination span.swiper-pagination-bullet-active::after {
  width: 10px;
  height: 10px;
}

@media (max-width: 640px) {
  section.certificates h2 {
    font-size: 30px;
  }
}
section.workplace {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.workplace div.content {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}
section.workplace div.swiper {
  overflow: visible;
}
section.workplace div.swiper-slide figure {
  display: grid;
  grid-gap: 2rem;
}
section.workplace div.swiper-slide figure img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
section.workplace div.swiper-slide figure figcaption {
  font-size: 14px;
  max-width: 440px;
}
section.workplace div.swiper-pagination {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.workplace div.swiper-pagination span {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0 !important;
}
section.workplace div.swiper-pagination span:not(.swiper-pagination-bullet-active):hover::after {
  background-color: var(--color-gray);
}
section.workplace div.swiper-pagination span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-super-dark-pink);
  border-radius: 50%;
}
section.workplace div.swiper-pagination span.swiper-pagination-bullet-active::after {
  width: 10px;
  height: 10px;
}

@media (max-width: 960px) {
  section.workplace div.swiper-slide figure {
    display: grid;
    grid-gap: 1rem;
  }
  section.workplace div.swiper-pagination {
    margin-top: 1rem;
    position: relative;
    top: unset;
    bottom: unset;
  }
}
section.results {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.results div.container {
  display: grid;
  grid-gap: 4rem;
  padding-top: var(--section-between-gap);
}
section.results div.text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: start;
  padding-left: var(--content-padding);
}
section.results div.text h2 {
  font-size: 50px;
  font-weight: 500;
}
section.results div.text h2.small {
  font-size: 30px;
  font-weight: 500;
}
section.results div.comparisons {
  display: grid;
  justify-items: center;
  grid-gap: 2rem;
}
section.results div.comparisons::before {
  margin-bottom: 1rem;
}
section.results div.comparisons h3 {
  font-size: 30px;
  font-weight: 500;
  justify-self: start;
}
section.results div.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem 1rem;
}
section.results div.list div.result {
  display: grid;
  grid-gap: 1rem;
}
section.results div.list div.result span {
  font-size: 14px;
}
section.results div.list div.result:nth-child(n+4) {
  display: none;
}
section.results div.list.show div.result {
  display: grid !important;
}
section.results div.comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
section.results div.comparison img.before, section.results div.comparison img.after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
section.results div.comparison img.after {
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}
section.results div.comparison div.scroller {
  width: 3px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
}
section.results div.comparison div.scroller::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #8E00F9;
  border: 3px solid white;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
}
section.results::after {
  content: "";
  width: 640px;
  height: 720px;
  background-color: var(--color-light-blue);
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
          transform: translateX(-40%);
  z-index: -1;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
}

@media (max-width: 960px) {
  section.results div.container {
    justify-items: center;
  }
  section.results div.text {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    text-align: center;
    justify-items: center;
    max-width: 320px;
  }
  section.results div.list {
    grid-template-columns: repeat(2, 1fr);
  }
  section.results div.list div.result:nth-child(n+3) {
    display: none;
  }
  section.results::after {
    content: "";
    width: 70%;
    height: calc(100% - 200px);
    aspect-ratio: unset;
    background-color: var(--color-light-blue);
    position: absolute;
    top: 160px;
    left: 15%;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    z-index: -1;
    border-bottom-left-radius: 1000px;
    border-bottom-right-radius: 1000px;
  }
}
@media (max-width: 640px) {
  section.results div.container {
    padding-top: 0;
  }
  section.results div.text h2 {
    font-size: 30px;
  }
  section.results div.text h2.small {
    font-size: 20px;
  }
  section.results div.list {
    grid-template-columns: 1fr;
  }
  section.results::after {
    height: unset;
    top: 40px;
    height: calc(100% - 100px);
  }
}
section.services {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.services div.list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem 1rem;
}
section.services div.service {
  cursor: pointer;
  display: grid;
  grid-gap: 1rem;
}
section.services div.service div.preview {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  padding: 1rem;
}
section.services div.service div.preview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-pink);
  z-index: -1;
}
section.services div.service div.preview img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-position: contain;
     object-position: contain;
  -o-object-position: center center;
     object-position: center center;
  max-width: 140px;
}
section.services div.service div.preview h2 {
  display: block;
}
section.services div.service h2 {
  display: none;
  font-size: 30px;
  font-weight: 500;
}
section.services div.service strong {
  font-size: 20px;
  font-weight: 500;
  margin-top: 0.5rem;
}
section.services div.service div.more {
  color: var(--color-dark-blue);
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
section.services div.service div.more div.arrow {
  position: relative;
  height: 2px;
  width: 50px;
  background-color: var(--color-dark-blue);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
section.services div.service div.more div.arrow svg {
  position: absolute;
  top: 50%;
  right: 2px;
  display: block;
  width: 14px;
  height: 14px;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
section.services div.service div.more div.arrow svg line {
  stroke: var(--color-dark-blue);
}
section.services div.service:hover div.more {
  color: var(--color-hover-blue);
}
section.services div.service:hover div.more div.arrow {
  width: 100%;
  background-color: var(--color-hover-blue);
}
section.services div.service:hover div.more div.arrow svg line {
  stroke: var(--color-hover-blue);
}
section.services a.all {
  font-size: 50px;
  justify-self: center;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
section.services a.all div.block {
  display: grid;
  grid-gap: 2rem;
}
section.services a.all div.more div.arrow {
  position: relative;
  height: 3px;
  width: 50px;
  background-color: var(--color-gray);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  border-radius: 2px;
}
section.services a.all div.more div.arrow svg {
  position: absolute;
  top: 50%;
  right: 2px;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
section.services a.all div.more div.arrow svg line {
  stroke: var(--color-gray);
}
section.services a.all:hover {
  color: var(--color-dark-blue);
}
section.services a.all:hover div.more div.arrow {
  width: 100%;
  background-color: var(--color-dark-blue);
}
section.services a.all:hover div.more div.arrow svg line {
  stroke: var(--color-dark-blue);
}

@media (max-width: 1440px) {
  section.services div.list {
    grid-template-columns: repeat(3, 1fr);
  }
  section.services a.all {
    font-size: 30px;
    grid-column: span 3;
    justify-self: end;
    width: auto;
  }
  section.services a.all div.block {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.services a.all:hover div.more div.arrow {
    width: 100px;
  }
}
@media (max-width: 1200px) {
  section.services a.service {
    display: grid;
    grid-gap: 1rem;
  }
  section.services a.service div.preview {
    grid-template-columns: 1fr;
    justify-items: center;
    aspect-ratio: 21/9;
    width: 100%;
  }
  section.services a.service div.preview::after {
    top: 60px;
    height: calc(100% - 60px);
  }
  section.services a.service div.preview img {
    top: 0;
  }
  section.services a.service div.preview h2 {
    display: none;
  }
  section.services a.service h2 {
    display: block;
  }
  section.services a.service strong {
    margin-top: unset;
  }
}
@media (max-width: 960px) {
  section.services a.service h2 {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  section.services div.list {
    grid-template-columns: 1fr;
  }
  section.services a.service div.preview {
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: unset;
    justify-items: start;
    grid-gap: 1rem;
  }
  section.services a.service div.preview img {
    width: 100%;
  }
  section.services a.service div.preview h2 {
    margin-top: 60px;
    display: block;
  }
  section.services a.service h2 {
    display: none;
  }
  section.services a.service div.more {
    border: 1px solid var(--color-dark-blue);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    justify-self: start;
  }
  section.services a.service:hover div.more div.arrow {
    width: 50px;
  }
  section.services a.all {
    grid-column: span 1;
    font-size: 24px;
    justify-self: start;
  }
}
section.reviews {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.reviews div.review {
  display: grid;
  grid-gap: 1rem;
}
section.reviews div.review div.author {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-gap: 1.25rem;
}
section.reviews div.review div.author img.photo {
  width: 40px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 50%;
}
section.reviews div.review div.author a.name {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.reviews div.review div.author a.name img.social {
  height: 20px;
}
section.reviews div.review div.text {
  display: grid;
  grid-gap: 1rem;
  background-color: var(--color-super-light-blue);
  border-radius: 20px;
  padding: 1rem;
}
section.reviews div.review div.text div.stars {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 4px;
  justify-self: end;
}
section.reviews div.swiper-pagination {
  position: relative;
  margin-top: 2rem;
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.reviews div.swiper-pagination span {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0 !important;
}
section.reviews div.swiper-pagination span:not(.swiper-pagination-bullet-active):hover::after {
  background-color: var(--color-gray);
}
section.reviews div.swiper-pagination span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-super-dark-pink);
  border-radius: 50%;
}
section.reviews div.swiper-pagination span.swiper-pagination-bullet-active::after {
  width: 10px;
  height: 10px;
}

section.photo {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.photo div.container::after {
  content: "";
  width: calc(60% + (100vw - 100%) / 2);
  height: 100%;
  background-color: var(--color-light-blue);
  position: absolute;
  top: 0;
  right: 40%;
  z-index: -1;
  border-bottom-right-radius: 1000px;
}
section.photo div.content {
  display: grid;
  grid-template-columns: 2fr 2fr 3fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: var(--content-padding);
  grid-gap: var(--section-between-gap) var(--section-side-gap);
}
section.photo h2 {
  font-size: 50px;
  font-weight: 500;
  padding-top: var(--section-between-gap);
  padding-bottom: var(--section-between-gap);
}
section.photo img.photo {
  max-width: 400px;
}
section.photo div.text {
  display: grid;
  grid-gap: 2rem;
  justify-items: start;
}
section.photo div.text h3 {
  font-size: 30px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  section.photo div.container::after {
    content: "";
    width: calc(90% + (100vw - 100%) / 2);
    right: 10%;
    height: 55%;
  }
  section.photo div.content {
    grid-template-columns: 1fr 1fr;
  }
  section.photo h2 {
    padding-top: var(--section-side-gap);
    padding-bottom: var(--section-side-gap);
  }
  section.photo img.photo {
    max-width: 100%;
    max-height: 400px;
  }
  section.photo div.text {
    justify-self: end;
    grid-column: span 2;
    max-width: 50%;
    min-width: 440px;
  }
}
@media (max-width: 640px) {
  section.photo div.container::after {
    content: "";
    width: calc(90% + (100vw - 100%) / 2);
    height: 90%;
    right: 10%;
    top: 20%;
  }
  section.photo div.content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    grid-gap: var(--section-side-gap);
  }
  section.photo h2 {
    font-size: 30px;
    padding-top: var(--section-side-gap);
    padding-bottom: 0;
  }
  section.photo img.photo {
    max-width: calc(100% + 2rem);
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  section.photo div.text {
    grid-column: span 2;
    min-width: 100%;
  }
  section.photo div.text h3 {
    font-size: 16px;
  }
}
section.contacts {
  z-index: 1;
  margin-bottom: -200px;
}
section.contacts div.block {
  position: absolute;
  top: -1rem;
  right: var(--section-side-gap);
  background-color: var(--color-dark-pink);
  color: white;
  display: grid;
  grid-gap: 4rem;
  border-bottom-right-radius: 1000px;
  max-width: 400px;
  padding: 2rem 3rem 160px;
  z-index: 1;
}
section.contacts div.block div {
  display: grid;
  grid-gap: 0.5rem;
}
section.contacts div.block strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
}
section.contacts div.block div.socials div.list {
  margin-top: 0.5rem;
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 1rem;
}
section.contacts div.block div.socials div.list a svg path {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
section.contacts div.block div.socials div.list a:hover svg path {
  fill: #8E00F9;
}
section.contacts div.block div.phone, section.contacts div.block div.adress {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
section.contacts div.block div.phone span, section.contacts div.block div.adress span {
  display: block;
  max-width: 75%;
}
section.contacts div.block div.phone a:hover, section.contacts div.block div.adress a:hover {
  opacity: 0.75;
}
section.contacts div#map {
  width: 100%;
  height: calc(50vh + 200px);
  min-height: 800px;
  z-index: -1;
}

@media (max-width: 1200px) {
  section.contacts div.block {
    padding: 2rem 2rem 160px;
    max-width: 320px;
  }
}
@media (max-width: 960px) {
  section.contacts div.block {
    max-width: 240px;
  }
}
@media (max-width: 640px) {
  section.contacts div.block {
    position: relative;
    top: unset;
    right: unset;
    max-width: 100%;
    color: var(--color-gray);
    background-color: transparent;
    grid-gap: 3rem;
    padding: 2rem 0;
  }
  section.contacts div.block strong {
    font-size: 20px;
  }
  section.contacts div.block div.socials svg path {
    fill: var(--color-gray) !important;
  }
  section.contacts div.block::before {
    content: "";
    width: 50%;
    height: 50%;
    background-color: var(--color-light-blue);
    position: absolute;
    top: 0;
    left: calc(var(--section-side-gap) * -1);
    z-index: -1;
    border-bottom-right-radius: 1000px;
  }
  section.contacts div.block::after {
    content: "";
    width: calc(75% + var(--section-side-gap));
    height: 50%;
    background-color: var(--color-light-pink);
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: -1;
    border-top-left-radius: 1000px;
  }
  section.contacts div#map {
    width: 100%;
    height: calc(50vh + 100px);
    min-height: 600px;
  }
}
footer {
  position: relative;
  padding-top: var(--section-side-gap);
  padding-bottom: var(--section-side-gap);
  background-color: var(--color-light-blue);
  border-top-right-radius: 200px;
  z-index: 2;
}
footer div.container {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-areas: "A A A" "B C D";
  grid-gap: 2rem;
}
footer a.logotype {
  grid-area: A;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer a.logotype img {
  width: 40px;
}
footer a.logotype strong {
  font-size: 16px;
  font-weight: 500;
}
footer div.description {
  grid-area: B;
  display: grid;
  grid-gap: 2rem;
  font-size: 12px;
}
footer div.description div.text {
  display: grid;
  grid-gap: 0.5rem;
}
footer div.documents {
  grid-area: C;
  display: grid;
  grid-gap: 2rem;
}
footer div.documents strong {
  font-size: 16px;
  font-weight: 500;
}
footer div.documents ul {
  display: grid;
  grid-gap: 0.5rem;
}
footer div.documents a {
  font-size: 12px;
}
footer div.documents a:hover {
  text-decoration: underline;
}
footer div.contacts {
  grid-area: D;
}
footer div.contacts a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
footer div.contacts a:hover {
  opacity: 0.75;
}
footer div.contacts span {
  font-size: 14px;
}
footer div.contacts button {
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  footer {
    border-top-right-radius: 100px;
  }
  footer div.container {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "A A" "D D" "B C";
    grid-gap: 2rem;
  }
  footer div.contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 1rem;
  }
  footer div.contacts a {
    margin-bottom: 0;
  }
  footer div.contacts button {
    font-size: 16px;
    margin-top: unset;
  }
}
@media (max-width: 640px) {
  footer div.container {
    grid-template-columns: 1fr;
    grid-template-areas: "A" "D" "C" "B";
  }
  footer a.logotype strong {
    max-width: 80%;
  }
  footer div.contacts {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
section.services_page {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.services_page div.container {
  display: grid;
  grid-gap: var(--section-side-gap);
}
section.services_page div.container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 260px;
  width: 660px;
  max-width: calc(100% - var(--section-side-gap) - 260px);
  height: 554px;
  background-color: var(--color-light-blue);
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  z-index: -1;
}
section.services_page div.container h2 {
  font-size: 50px;
  font-weight: 500;
}
section.services_page div.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: var(--section-between-gap) var(--section-side-gap);
  -webkit-perspective: 3000px;
          perspective: 3000px;
}
section.services_page div.service {
  display: grid;
  grid-template-rows: -webkit-max-content 1fr -webkit-max-content;
  grid-template-rows: max-content 1fr max-content;
  grid-gap: 1rem;
  position: relative;
  width: 100%;
  height: 100%;
}
section.services_page div.service div.head {
  display: grid;
  grid-gap: 1rem;
  background-color: var(--color-dark-pink);
  color: white;
  padding: 1rem 1.5rem;
}
section.services_page div.service div.head h2 {
  font-size: 30px;
  font-weight: 500;
}
section.services_page div.service div.attrs {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 1rem;
  color: var(--color-gray);
}
section.services_page div.service div.attrs div.item {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-gap: 0.5rem;
}
section.services_page div.service div.attrs svg circle, section.services_page div.service div.attrs svg line {
  stroke: var(--color-gray);
}
section.services_page div.service div.attrs svg.timer path {
  stroke: var(--color-gray);
}
section.services_page div.service div.attrs svg.rouble path:first-child {
  stroke: var(--color-gray);
}
section.services_page div.service div.attrs svg.rouble path:last-child {
  fill: var(--color-gray);
}
section.services_page div.service div.content {
  position: relative;
  width: 100%;
}
section.services_page div.service ul {
  display: grid;
  grid-gap: 0.5rem;
}
section.services_page div.service ul li {
  position: relative;
  padding-left: 1.5rem;
}
section.services_page div.service ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.75rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-gray);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
section.services_page div.service button {
  justify-self: start;
  font-size: 16px;
}
section.services_page div.service div.content {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
section.services_page div.service div.content div.front, section.services_page div.service div.content div.back {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  display: grid;
  grid-gap: 1rem;
}
section.services_page div.service div.content div.back {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
section.services_page div.service div.content div.back button {
  display: none;
}
section.services_page div.service:hover div.content {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media (max-width: 960px) {
  section.services_page div.list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  section.services_page div.container::before {
    top: calc(var(--section-between-gap) * -1);
    left: 60px;
    max-width: calc(100% - var(--section-side-gap) - 60px);
    height: 300px;
  }
  section.services_page div.container h2 {
    font-size: 30px;
  }
  section.services_page div.list {
    grid-gap: var(--section-side-gap);
  }
  section.services_page div.service {
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
  }
  section.services_page div.service div.head {
    cursor: pointer;
  }
  section.services_page div.service div.head h2 {
    font-size: 20px;
  }
  section.services_page div.service div.content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s;
    -o-transition: max-height 0.2s;
    transition: max-height 0.2s;
    min-height: 0 !important;
    display: grid;
    grid-gap: var(--section-side-gap);
  }
  section.services_page div.service div.content div.front, section.services_page div.service div.content div.back {
    position: static;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  section.services_page div.service div.content div.back button {
    display: block;
  }
  section.services_page div.service button {
    display: none;
  }
  section.services_page div.service:hover div.content {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  section.services_page div.service.active div.content {
    max-height: 100%;
  }
  section.services_page div.list {
    grid-template-columns: 1fr;
  }
}
section.worry {
  margin-top: calc(var(--section-between-gap) * 2);
  margin-bottom: calc(var(--section-between-gap) * 2);
  overflow-y: visible !important;
}
section.worry div.container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--section-between-gap);
}
section.worry div.container::before {
  content: "";
  width: calc((100vw - 100%) / 2 + 50%);
  height: 45vh;
  background-color: var(--color-light-blue);
  position: absolute;
  bottom: calc(var(--section-between-gap) + 100%);
  left: 50%;
  z-index: -1;
  border-top-left-radius: 1000px;
}
section.worry div.container::after {
  content: "";
  width: 50%;
  height: calc(100% + var(--section-between-gap) * 2);
  background-color: var(--color-light-pink);
  position: absolute;
  top: calc(var(--section-between-gap) * -1);
  left: 0;
  z-index: -1;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
section.worry h2 {
  padding-left: var(--content-padding);
  font-size: 50px;
  font-weight: 500;
}
section.worry h3 {
  font-size: 30px;
  font-weight: 500;
}
section.worry form {
  display: grid;
  grid-gap: 1rem;
}
section.worry form button {
  margin-top: 1rem;
}

@media (max-width: 960px) {
  section.worry div.container {
    grid-template-columns: 1fr;
    grid-gap: var(--section-side-gap);
  }
  section.worry div.container::before {
    width: calc((100vw - 100%) / 2 + 30%);
    height: 45vh;
    left: 70%;
    margin-left: var(--section-side-gap);
  }
  section.worry div.container::after {
    width: 70%;
    height: 100%;
    left: var(--section-side-gap);
  }
  section.worry form button {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  section.worry {
    margin-top: var(--section-between-gap);
  }
  section.worry div.container::before {
    width: calc((100vw - 100%) / 2 + 75%);
    height: 100%;
    left: 25%;
    bottom: 65%;
    margin-left: 0;
  }
  section.worry div.container::after {
    width: 25%;
    aspect-ratio: unset;
    height: 100%;
    top: 35%;
    left: 0;
    border-bottom-left-radius: unset;
  }
  section.worry h2 {
    font-size: 30px;
    font-weight: 500;
  }
  section.worry h3 {
    font-size: 20px;
    font-weight: 500;
  }
}
section.error {
  margin-top: calc(var(--section-between-gap) * 2);
  margin-bottom: calc(var(--section-between-gap) * 3);
}
section.error div.container {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-gap: var(--section-side-gap);
}
section.error div.error {
  display: grid;
  grid-gap: var(--section-side-gap);
  margin-left: var(--content-padding);
}
section.error div.error h1 {
  font-size: 200px;
  line-height: 1em;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--color-dark-blue);
}
section.error div.error a.back {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-gap: 1rem;
}
section.error div.error a.back svg path {
  fill: var(--color-gray);
}
section.error div.error a.back:hover {
  color: var(--color-dark-blue);
}
section.error div.error a.back:hover svg path {
  fill: var(--color-dark-blue);
}
section.error div.description {
  display: grid;
  grid-gap: var(--section-side-gap);
  max-width: 640px;
}
section.error div.description h2 {
  font-size: 30px;
  font-weight: 500;
}
section.error div.description form {
  display: grid;
  grid-gap: var(--section-side-gap);
  max-width: 320px;
}
section.error div.description form button {
  margin-top: 1rem;
}

section.error.nopage div.container::before {
  content: "";
  width: 50%;
  aspect-ratio: 1/1;
  background-color: var(--color-light-blue);
  position: absolute;
  top: calc(var(--section-between-gap) * -2 + var(--section-side-gap));
  left: 20%;
  z-index: -1;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
section.error.nopage div.container::after {
  content: "";
  width: calc(40% + (100vw - 100%) / 2);
  height: 100%;
  background-color: var(--color-light-pink);
  position: absolute;
  top: 75%;
  left: 60%;
  z-index: -1;
  border-top-left-radius: 1000px;
}

section.error.noserver div.container::after {
  content: "";
  width: calc(80% - var(--section-side-gap));
  height: 100%;
  background-color: var(--color-light-pink);
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: -1;
  border-bottom-right-radius: 1000px;
}

@media (max-width: 960px) {
  section.error {
    margin-top: var(--section-between-gap);
    margin-bottom: var(--section-between-gap);
  }
  section.error div.container {
    grid-template-columns: 1fr;
  }
  section.error div.error a.back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  section.error div.error h1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  section.error div.description {
    padding-left: 23%;
  }
  section.error.nopage div.container::before {
    top: 0;
    left: 25%;
    width: 70%;
    aspect-ratio: 4/3;
  }
  section.error.noserver div.container::after {
    content: "";
    width: calc(85% - var(--section-side-gap));
    height: 100%;
    background-color: var(--color-light-pink);
    position: absolute;
    top: 20%;
    left: 15%;
    z-index: -1;
    border-bottom-right-radius: 1000px;
  }
}
@media (max-width: 640px) {
  section.error div.container::after {
    display: none;
  }
  section.error div.container::before {
    display: none;
  }
  section.error div.error h1 {
    font-size: 130px;
  }
  section.error div.description {
    padding-left: unset;
  }
  section.error div.description h2 {
    font-size: 24px;
  }
  section.error div.description form button {
    justify-self: start;
  }
}
section.thanks {
  margin-top: calc(var(--section-between-gap) * 2);
  margin-bottom: calc(var(--section-between-gap) * 3);
}
section.thanks div.container {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--section-between-gap);
}
section.thanks div.container::after {
  content: "";
  width: calc(70% + (100vw - 100%) / 2);
  height: calc(100% + var(--section-between-gap) * 2);
  background-color: var(--color-light-pink);
  position: absolute;
  top: calc(var(--section-between-gap) * -0.5);
  left: 30%;
  z-index: -1;
  border-top-left-radius: 1000px;
}
section.thanks div.description {
  display: grid;
  grid-gap: var(--section-side-gap);
}
section.thanks div.description h1 {
  font-size: 50px;
  font-weight: 500;
}
section.thanks div.description a.back {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-gap: 1rem;
}
section.thanks div.description a.back svg path {
  fill: var(--color-gray);
}
section.thanks div.description a.back:hover {
  color: var(--color-dark-blue);
}
section.thanks div.description a.back:hover svg path {
  fill: var(--color-dark-blue);
}
section.thanks div.subscribe {
  display: grid;
  grid-gap: var(--section-side-gap);
}
section.thanks div.subscribe div.text {
  position: relative;
  margin-top: calc(var(--section-side-gap) + 24px);
  display: grid;
  grid-gap: 1rem;
}
section.thanks div.subscribe div.text img.like {
  margin-bottom: var(--section-side-gap);
  position: absolute;
  bottom: 100%;
  left: 0;
}
section.thanks div.subscribe div.text h4 {
  font-size: 30px;
  font-weight: 500;
}
section.thanks div.subscribe div.socials {
  display: grid;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  grid-gap: 1rem;
}
section.thanks div.subscribe div.socials a svg path {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  fill: var(--color-gray);
}
section.thanks div.subscribe div.socials a:hover svg path {
  fill: var(--color-dark-blue);
}

@media (max-width: 960px) {
  section.thanks {
    margin-top: var(--section-between-gap);
    margin-bottom: var(--section-between-gap);
  }
  section.thanks div.container {
    grid-template-columns: 1fr;
    grid-gap: var(--section-side-gap);
  }
  section.thanks div.container::after {
    top: 20%;
    height: 60%;
  }
  section.thanks div.description h1 {
    max-width: 540px;
  }
  section.thanks div.subscribe {
    padding-left: 35%;
  }
  section.thanks div.subscribe div.text {
    margin-top: unset;
  }
  section.thanks div.subscribe div.text img.like {
    margin-bottom: unset;
    position: static;
  }
}
@media (max-width: 640px) {
  section.thanks div.container {
    grid-gap: 3rem;
  }
  section.thanks div.container::after {
    display: none;
  }
  section.thanks div.description h1 {
    font-size: 30px;
  }
  section.thanks div.subscribe {
    padding-left: unset;
  }
  section.thanks div.subscribe div.text {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.thanks div.subscribe div.text img.like {
    width: 4rem;
  }
  section.thanks div.subscribe div.text h4 {
    font-size: 24px;
  }
  section.thanks div.subscribe div.text p {
    grid-column: span 2;
  }
}
section.page {
  margin-top: var(--section-between-gap);
  margin-bottom: var(--section-between-gap);
}
section.page h1, section.page h2, section.page h3, section.page h4 {
  display: block;
  font-weight: 500;
  margin-bottom: 0.75em;
}
section.page h1:not(:first-child), section.page h2:not(:first-child), section.page h3:not(:first-child), section.page h4:not(:first-child) {
  margin-top: 1.25em;
}
section.page h2, section.page h3, section.page h4, section.page p {
  padding-left: 7rem;
  max-width: 960px;
}
section.page h1 {
  margin-bottom: var(--section-between-gap);
}
section.page h1 {
  font-size: 50px;
}
section.page h2 {
  font-size: 30px;
}
section.page h3 {
  font-size: 24px;
}
section.page h4 {
  font-size: 18px;
}
section.page figure {
  margin: var(--section-side-gap) 0 calc(var(--section-side-gap) * 2);
}
section.page p + p {
  margin-top: 1em;
}
section.page figure.note {
  position: relative;
  padding: 1.5em 0;
  font-size: 12px;
  max-width: 640px;
}
section.page figure.note::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 160px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-gray);
}
section.page figure.image {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: var(--section-between-gap);
}
section.page figure.image img {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
section.page div.patterns {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  overflow: clip;
}
section.page div.pattern {
  position: relative;
  width: 100%;
  height: 3800px;
}
section.page div.pattern div:nth-child(1) {
  position: absolute;
  right: 154px;
  width: 560px;
  height: 1200px;
  background-color: var(--color-light-pink);
  border-top-left-radius: 1000px;
}
section.page div.pattern div:nth-child(2) {
  position: absolute;
  top: 1400px;
  left: 0;
  width: 720px;
  height: 560px;
  background-color: var(--color-light-blue);
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
}
section.page div.pattern div:nth-child(3) {
  position: absolute;
  top: 2300px;
  right: 0;
  width: 500px;
  height: 440px;
  background-color: var(--color-light-blue);
  border-top-left-radius: 1000px;
}
section.page div.pattern div:nth-child(4) {
  position: absolute;
  top: 2740px;
  right: 500px;
  width: 660px;
  height: 660px;
  background-color: var(--color-light-pink);
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
}

@media (max-width: 1440px) {
  section.page div.patterns div.pattern div:nth-child(1) {
    right: 0;
  }
}
@media (max-width: 960px) {
  section.page h2, section.page h3, section.page h4, section.page p {
    padding-left: 5rem;
  }
  section.page figure.image {
    grid-gap: var(--section-side-gap);
  }
}
@media (max-width: 640px) {
  section.page h2, section.page h3, section.page h4, section.page p {
    padding-left: 2rem;
  }
  section.page h1 {
    font-size: 30px;
  }
  section.page h2 {
    font-size: 20px;
  }
  section.page figure.image {
    grid-template-columns: 1fr;
  }
  section.page div.patterns {
    top: 100px;
  }
  section.page div.patterns div.pattern {
    position: relative;
    width: 100%;
    height: 2800px;
  }
  section.page div.patterns div.pattern div:nth-child(1) {
    position: absolute;
    right: 0;
    width: 50%;
    height: 520px;
    background-color: var(--color-light-pink);
    border-top-left-radius: 1000px;
  }
  section.page div.patterns div.pattern div:nth-child(2) {
    position: absolute;
    top: 770px;
    left: 0;
    width: 50%;
    height: 300px;
    background-color: var(--color-light-blue);
    border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
  }
  section.page div.patterns div.pattern div:nth-child(3) {
    position: absolute;
    top: 1500px;
    right: 0;
    width: 50%;
    height: 180px;
    background-color: var(--color-light-blue);
    border-top-left-radius: 1000px;
  }
  section.page div.patterns div.pattern div:nth-child(4) {
    position: absolute;
    top: 1680px;
    right: 50%;
    width: 100%;
    height: 400px;
    background-color: var(--color-light-pink);
    border-bottom-left-radius: 1000px;
    border-bottom-right-radius: 1000px;
  }
}
[data-modal] {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: auto;
  scrollbar-width: none;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 52, 52, 0.3);
  display: grid;
  grid-template-rows: 1fr;
  padding: var(--section-side-gap);
}
[data-modal]::-webkit-scrollbar {
  width: 0;
  height: 0;
}
[data-modal].active {
  opacity: 1;
  visibility: visible;
}
[data-modal] svg.cross {
  justify-self: end;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
[data-modal] svg.cross path {
  fill: var(--color-gray);
}
[data-modal] svg.cross:hover path {
  stroke: #272829;
}

[data-modal=enlist] div.container {
  align-self: center;
  max-width: 640px;
  padding: var(--section-side-gap);
  display: grid;
  grid-gap: 2rem;
  background-color: var(--color-white);
  overflow: clip;
}
[data-modal=enlist] div.container::after {
  content: "";
  width: 80%;
  height: 80%;
  background-color: var(--color-light-pink);
  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  border-bottom-left-radius: 1000px;
  border-bottom-right-radius: 1000px;
  z-index: 1;
}
[data-modal=enlist] div.text {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 2fr 1fr;
  z-index: 2;
}
[data-modal=enlist] div.text h2 {
  font-size: 30px;
  font-weight: 500;
}
[data-modal=enlist] form {
  display: grid;
  justify-items: center;
  grid-gap: 2rem;
  z-index: 2;
}
[data-modal=enlist] form button {
  justify-self: end;
}

@media (max-width: 640px) {
  [data-modal=enlist] div.container {
    padding: var(--section-side-gap) var(--section-side-gap) calc(var(--section-side-gap) * 2);
  }
  [data-modal=enlist] div.container::after {
    right: -50%;
    width: 125%;
  }
  [data-modal=enlist] div.text h2 {
    font-size: 28px;
  }
  [data-modal=enlist] div.text img {
    position: relative;
    left: -20%;
    max-width: 120%;
  }
}