@font-face {
  font-family: "TildaSans";
  font-weight: 300 700;
  src: url("https://static.tildacdn.com/fonts/tildasans/TildaSans-VF.woff2") format("woff2");
}

:root {
  --black: #000;
  --footer: #111;
  --paper: #fcf8f2;
  --blue: #5199ff;
  --blue-dark: #1f5bff;
  --text: #000;
  --muted-dark: #333;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: #fff;
  color: #000;
  padding: 8px 12px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 0;
}

.menu-toggle {
  position: fixed;
  top: 16px;
  right: 28px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(32, 32, 32, 0.72);
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 3px;
  border-radius: 2px;
  background: #d9d9d9;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  width: 315px;
  max-width: calc(100vw - 72px);
  min-height: 100vh;
  padding: 44px 24px 28px;
  background: var(--blue);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-panel a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 18px;
}

.menu-panel .menu-brand {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 28px;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 17px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 24px;
  height: 2px;
  background: #fff;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-telegram {
  margin-top: auto !important;
}

.menu-telegram svg,
.telegram-link svg,
.footer-telegram svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.55);
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.section-black {
  background: #fff;
}

.section-light {
  background: var(--paper);
}

.hero {
  min-height: 740px;
  display: flex;
  align-items: center;
  padding: 86px 0 78px;
}

.hero-inner {
  width: min(var(--max), calc(100% - 104px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image-wrap {
  width: 560px;
  height: 560px;
  background: #fff;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  padding-left: 0;
}

.hero h1 {
  margin: 0 0 24px;
  color: #333;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
}

.hero p {
  margin: 0 0 64px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 332px;
  max-width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #3f8cf4;
}

.button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.button:disabled:hover {
  background: var(--blue);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto;
  padding: 143px 20px 64px;
  text-align: center;
}

.section-heading h2,
.booking h2,
.contacts h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 600;
}

.section-heading-dark {
  color: #000;
}

.section-heading-dark h2 {
  color: #000;
}

.list {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 150px;
}

.list-row {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 26px;
  align-items: start;
  min-height: 94px;
}

.list-row + .list-row {
  margin-top: 60px;
}

.list-education .list-row > div:last-child,
.list-experience .list-row > div:last-child {
  width: 440px;
  max-width: 100%;
  padding-top: 13px;
}

.list h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.list p,
.list ul {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.list ul {
  padding-left: 21px;
}

.list-dark {
  color: #000;
}

.list-dark h3,
.list-dark p,
.list-dark li {
  color: #000;
}

.icon-circle {
  width: 94px;
  height: 94px;
  border: 2px solid rgba(81, 153, 255, 0.7);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94px 94px;
}

.icon-education {
  background-image: url("https://static.tildacdn.com/tild3534-3134-4337-b766-393161306430/1Education.svg");
}

.icon-chat {
  background-image: url("https://static.tildacdn.com/tild6539-6238-4963-a633-346363353432/1Example.svg");
}

.icon-card {
  width: 94px;
  height: 94px;
  background: center / 94px 94px no-repeat url("https://static.tildacdn.com/lib/tildaicon/32663462-3662-4635-b539-353964613262/Tilda_Icons_40_Printery_visit_card.svg");
}

.number-list {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 150px;
  list-style: none;
  counter-reset: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 40px;
  align-items: center;
  min-height: 50px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.number-list li + li {
  margin-top: 54px;
}

.number-list span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--blue-dark);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 300;
}

.list-checks {
  padding-top: 60px;
}

.list-checks .list-row {
  grid-template-columns: 55px minmax(0, 665px);
  gap: 40px;
}

.checkmark {
  width: 55px;
  height: 55px;
  margin-left: 1px;
  position: relative;
}

.checkmark::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 7px;
  width: 24px;
  height: 43px;
  border: solid var(--blue-dark);
  border-width: 0 4px 4px 0;
  transform: rotate(43deg);
}

.booking {
  min-height: 720px;
  background-image: url("https://optim.tildacdn.com/tild6336-3161-4930-a366-313863303333/-/format/webp/2021-02-19-3.jpg.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.booking-overlay {
  min-height: 720px;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 20px 70px;
}

.booking-inner {
  width: min(720px, 100%);
  text-align: center;
}

.booking h2 {
  color: #fff;
}

.booking p {
  margin: 38px 0 51px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.booking form {
  width: min(560px, 100%);
  margin: 0 auto;
}

.booking input {
  display: block;
  width: 100%;
  height: 56px;
  margin-bottom: 20px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 300;
}

.booking .consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  margin: 8px 0 20px;
  color: #fff;
  text-align: left;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 300;
}

.booking .consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.booking .consent-check a {
  color: var(--blue);
  font-weight: 600;
}

.booking form .button {
  width: 100%;
  height: 56px;
  min-height: 56px;
}

.booking .consent {
  width: min(720px, 100%);
  margin: 30px auto 0;
  font-size: 15px;
  line-height: 1.55;
}

.booking .consent a {
  color: var(--blue);
}

.contacts {
  padding: 90px 20px 100px;
  text-align: center;
  color: #000;
}

.contacts-photo {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto 45px;
  border-radius: 50%;
  object-fit: cover;
}

.contacts h2 {
  color: #000;
  margin-bottom: 34px;
}

.contacts p {
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 300;
}

.telegram-link {
  color: var(--blue);
  display: inline-flex;
}

.site-footer {
  min-height: 121px;
  padding: 29px 20px;
  background: var(--footer);
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 300;
}

.site-footer a {
  color: #fff;
}

.footer-telegram {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue) !important;
}

.profile-hero {
  background: #fff;
  padding-bottom: 30px;
}

.profile-cover {
  height: 432px;
  background-image: url("https://optim.tildacdn.com/tild6536-3533-4233-a230-353337656332/-/format/webp/Untitled-1.jpg.webp");
  background-position: center;
  background-size: cover;
}

.clients-page .profile-cover {
  height: 242px;
}

.policy-page .profile-cover {
  height: 242px;
}

.clients-page .profile-hero-content {
  margin-top: -70px;
}

.policy-page .profile-hero-content {
  margin-top: -70px;
}

.profile-hero-content {
  max-width: 1120px;
  margin: -80px auto 0;
  padding: 0 20px;
  text-align: center;
}

.profile-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.profile-hero h1 {
  margin: 6px 0 4px;
  font-size: 36px;
  line-height: 1.23;
  font-weight: 600;
}

.profile-hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}

.cards-section {
  padding: 135px 0 165px;
  background: var(--paper);
}

.cards-section.white {
  background: #fff;
}

.cards-section h2 {
  margin: 0 20px 92px;
  text-align: center;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 600;
}

.cards-grid {
  width: min(1160px, calc(100% - 104px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.client-card {
  min-height: 223px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.client-card h3,
.condition-item h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.client-card p,
.condition-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}

.conditions-grid {
  width: min(960px, calc(100% - 104px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 120px;
}

.condition-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 30px;
  align-items: start;
}

.round-check {
  width: 38px;
  height: 38px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='19' cy='19' r='17.5' stroke='%235199FF' stroke-width='2'/%3E%3Cpath d='M11 19.4L16.3 24.7L27.5 13.5' stroke='%231F5BFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: relative;
  margin-top: 4px;
}

.round-check::before {
  content: none;
}

.policy-content {
  background: #fff;
  padding: 60px 20px;
}

.policy-text {
  width: min(760px, 100%);
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.policy-text p {
  margin: 0 0 31px;
}

.policy-text a {
  color: var(--blue);
}

.thanks-content {
  min-height: 420px;
  padding: 55px 20px 130px;
  background: #fff;
  text-align: center;
}

.thanks-content h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 600;
}

.thanks-content p {
  margin: 0 auto 42px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 96px 20px 90px;
    align-items: center;
  }

  .hero-inner {
    width: min(520px, 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    padding: 0;
  }

  .hero-image-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(300px, 76vw);
    height: auto;
    aspect-ratio: 1 / 1;
    opacity: 1;
    margin: 0 auto;
  }

  .hero-image-wrap img {
    width: 100%;
    max-width: 100%;
    object-position: center;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.25;
  }

  .hero p {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .hero .button {
    width: min(100%, 500px);
  }

  .section-heading {
    padding-top: 118px;
    padding-bottom: 36px;
  }

  .section-heading h2,
  .booking h2,
  .contacts h2 {
    font-size: 30px;
    line-height: 1.23;
  }

  .list {
    padding: 60px 0 100px;
  }

  .contacts h2 {
    margin-bottom: 34px;
  }

  .cards-grid,
  .conditions-grid {
    width: min(640px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }

  .cards-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cards-section h2 {
    margin-bottom: 60px;
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    top: 16px;
    right: 30px;
  }

  .menu-panel {
    width: 260px;
    max-width: calc(100vw - 130px);
    padding: 44px 24px 28px;
  }

  .menu-panel a {
    font-size: 24px;
  }

  .menu-panel .menu-brand {
    font-size: 21px;
  }

  .section-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .list,
  .number-list {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-row {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .list-row + .list-row {
    margin-top: 54px;
  }

  .list-education .list-row > div:last-child,
  .list-experience .list-row > div:last-child {
    width: auto;
    padding-top: 3px;
  }

  .list-checks .list-row {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .icon-circle,
  .icon-card {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }

  .icon-card {
    background-size: 50px 50px;
  }

  .list h3,
  .number-list li {
    font-size: 18px;
  }

  .list p,
  .list ul {
    font-size: 15px;
  }

  .number-list {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .number-list li {
    grid-template-columns: 50px 1fr;
    gap: 38px;
  }

  .number-list li + li {
    margin-top: 54px;
  }

  .checkmark {
    width: 50px;
    height: 50px;
  }

  .checkmark::before {
    left: 12px;
    top: 5px;
    width: 22px;
    height: 40px;
  }

  .booking,
  .booking-overlay {
    min-height: 844px;
  }

  .booking-overlay {
    padding: 82px 20px;
  }

  .booking p {
    margin: 32px 0 42px;
    font-size: 18px;
  }

  .booking input {
    height: 56px;
  }

  .booking .consent {
    font-size: 13px;
  }

  .contacts {
    padding: 70px 20px 80px;
  }

  .contacts-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 36px;
  }

  .contacts h2 {
    margin-bottom: 28px;
  }

  .profile-cover {
    height: 320px;
  }

  .profile-hero-content {
    margin-top: -70px;
  }

  .profile-avatar {
    width: 140px;
    height: 140px;
  }

  .profile-hero h1 {
    font-size: 30px;
  }

  .client-card {
    min-height: auto;
    padding: 28px;
  }

  .client-card h3,
  .condition-item h3 {
    font-size: 20px;
  }

  .client-card p,
  .condition-item p {
    font-size: 16px;
  }

  .conditions-grid {
    gap: 54px;
  }

  .condition-item {
    grid-template-columns: 36px 1fr;
    gap: 20px;
  }

  .policy-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .thanks-content {
    min-height: 340px;
    padding: 45px 20px 100px;
  }

  .thanks-content h1 {
    font-size: 30px;
  }

  .thanks-content p {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .menu-panel {
    max-width: calc(100vw - 96px);
  }

  .hero-inner {
    width: 100%;
  }

  .hero .button {
    width: 100%;
  }
}
