@font-face {
  font-family: CormorantGaramond;
  font-display: swap;
  src: url(../fonts/CormorantGaramond-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal
}
@font-face {
  font-family: Madefor;
  font-display: swap;
  src: url(../fonts/Madefor-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal
}
@font-face {
  font-family: CormorantGaramond;
  font-display: swap;
  src: url(../fonts/CormorantGaramond-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: Madefor;
  font-display: swap;
  src: url(../fonts/Madefor-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal
}
:root {
  --primary: #ef5f48;
  --primary-foreground: #000000;
  --secondary: #f3f4f6;
  --accent: #75c9d4;
  --accent-light: #75c9d41a;
  --accent-medium: #75c9d44d;
  --accent-foreground: #ffffff;
  --tertiary: #2a1313;
  --tertiary-light: #532525;
  --tertiary-medium: #461f1f;
  --tertiary-strong: #381919;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --background: #000000;
  --foreground: #ffffff;
  --background-secondary: #e6c7eb;
  --foreground-secondary: #000000;
  --muted: #f9fafb;
  --muted-foreground: #929bad;
  --popover: #ffffff;
  --popover-foreground: #333333;
  --card: #141313;
  --card-foreground: #ffffff;
  --border: #404040;
  --border-input: #d1d5db;
  --border-secondary: #e5e7eb;
  --border-accent: #fe602f;
  --ring: #fe602f;
  --ring-offset: #ffffff;
  --hover: #fe602f;
  --radius: 4px;
  --font-size-base: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.22);
  --font-family: "Inter",sans-serif;
  --font-family-secondary: "CormorantGaramond",sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --header-height: 84px;
  --header-height-mobile: 64px
}
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  color: var(--foreground);
  line-height: 1;
  font-family: Inter,sans-serif;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: Inter,sans-serif;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0)
}
input,
textarea {
  width: 100%
}
label {
  display: inline-block
}
button,
option,
select {
  cursor: pointer
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
html {
  scroll-behavior: smooth
}
body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--foreground);
  background-color: #fff
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background-color: var(--background)
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper>main {
  flex: 1 1 auto
}
.wrapper>main>*:first-child {
  padding-top: var(--main-p-t)
}
.wrapper>* {
  min-width: 0
}
[class*=__container] {
  max-width: 94.375rem;
  margin: 0 auto;
  padding: 0 .9375rem
}
.form__input {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-primary);
  padding: 10px 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 400
}
.button {
  display: inline-flex;
  padding: 0 0
}
.button--fw {
  width: 100%
}
input[type=email],
input[type=tel],
input[type=text],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}
.input {
  border-radius: 0!important;
  width: 100%;
  display: block;
  padding: 0 20px;
  border: 1px solid #eee;
  caret-color: inherit
}
.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  transition: opacity .3s
}
.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0
}
textarea.input {
  resize: none;
  padding: 0 0
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 24px
}
.menu__list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px,-9.8876px + 3.3708vw,40px)
}
.menu__item {
  text-wrap: nowrap;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .05em;
  text-transform: uppercase
}
.menu__item._active {
  color: var(--background-secondary)
}
.menu__link {
  color: inherit;
  transition: color .3s ease-in-out
}
.menu__link._active {
  color: var(--primary)
}
.icon-menu {
  display: none
}
.ibg {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.ibg--top {
  object-position: top
}
.ibg--bottom {
  object-position: bottom
}
.ibg--left {
  object-position: left
}
.ibg--right {
  object-position: right
}
.ibg--contain {
  object-fit: contain
}
:root {
  --legal-color-heading: #ffffff;
  --legal-color-time: #7b8193;
  --legal-color-link: #007aff;
  --legal-color-link-hover: #0056b3;
  --legal-color-scrollbar-thumb: var(--legal-color-link);
  --legal-color-scrollbar-track: var(--legal-color-link-hover);
  --legal-color-table-border: #ddd;
  --legal-color-table-th-bg: #cecece;
  --legal-color-surface-muted: #f2f2f2;
  --legal-shadow-color: rgba(0, 0, 0, 0.08);
  --legal-border-radius: 16px
}
.legal {
  margin-bottom: 64px;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  width: min(994px,100% - 2rem);
  height: 100%;
  margin-inline: auto;
  gap: 32px
}
.legal>*:not(:last-child) {
  margin-bottom: 28px
}
.legal__content {
  flex: 1 1 66%
}
.legal__content>*:not(:last-child) {
  margin-bottom: 28px
}
.legal__content section h2,
.legal__content section h3,
.legal__content section h4,
.legal__content section h5,
.legal__content section h6 {
  margin-bottom: 16px
}
.legal__content section>*:not(:last-child) {
  margin-bottom: 20px
}
.legal__content h1,
.legal__content h2,
.legal__content h3,
.legal__content h4,
.legal__content h5,
.legal__content h6 {
  color: var(--legal-color-heading);
  font-weight: 500
}
.legal__content h1 {
  font-size: 32px;
  line-height: 1.2
}
.legal__content h2 {
  font-size: 24px;
  line-height: 1.2;
  scroll-margin-top: 32px
}
.legal__content *+h2 {
  margin-top: 32px
}
.legal__content p {
  font-size: 16px;
  line-height: 1.5
}
.legal__content p:has(time) {
  color: var(--legal-color-time)
}
.legal__content a {
  color: var(--legal-color-link);
  text-decoration: underline;
  transition: color .3s ease-in-out
}
.legal__content a:hover {
  color: var(--legal-color-link-hover)
}
.legal__content ol,
.legal__content ul {
  font-size: 16px;
  line-height: 1.5
}
.legal__content ul li {
  list-style: disc;
  list-style-position: inside
}
.legal__content ul li::marker {
  color: var(--legal-color-time)
}
.legal__content ol li {
  list-style-position: inside
}
.legal__content div:has(table) {
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: var(--legal-color-scrollbar-thumb) var(--legal-color-scrollbar-track)
}
.legal__content div:has(table)::-webkit-scrollbar {
  width: 8px
}
.legal__content div:has(table)::-webkit-scrollbar-thumb {
  background-color: var(--legal-color-scrollbar-thumb)
}
.legal__content table {
  display: block;
  border-collapse: collapse;
  border: 1px solid var(--legal-color-table-border);
  width: max(600px,100%);
  overflow-x: auto;
  border-radius: var(--legal-border-radius)
}
.legal__content table td,
.legal__content table th {
  padding: .5rem;
  border: 1px solid var(--legal-color-table-border)
}
.legal__content table th {
  background-color: var(--legal-color-table-th-bg)
}
.legal__content table tr:nth-child(even) {
  background-color: var(--legal-color-surface-muted)
}
.legal__aside {
  flex: 1 1 33%;
  position: relative
}
.legal__aside-nav {
  position: sticky;
  top: 48px;
  padding: 16px;
  border-radius: var(--legal-border-radius);
  background-color: var(--legal-color-surface-muted);
  box-shadow: 0 1px 2px var(--legal-shadow-color)
}
.legal__aside-nav h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px
}
.legal__aside-nav nav>*:not(:last-child) {
  margin-bottom: 8px
}
.legal__aside-nav nav a {
  color: var(--legal-color-heading);
  font-size: 16px;
  line-height: 1.5;
  transition: color .3s ease-in-out
}
.legal__aside-nav nav a:hover {
  color: var(--legal-color-link)
}
.legal__aside-nav nav a.is-active {
  color: var(--legal-color-link-hover);
  font-weight: 600
}
.thankyoupage__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}
.thankyoupage__container h1 {
  color: var(--primary);
  animation: tracking-in-expand-fwd .8s cubic-bezier(.215,.61,.355,1) 1.4s both
}
.thankyoupage__container figure {
  font-size: 100px;
  animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1) .6s both
}
.thankyoupage__container p {
  animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1) .8s both
}
.thankyoupage__container a {
  animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1) 1s both
}
.thankyoupage__container>*:not(:last-child) {
  margin-bottom: 16px
}
.contact-form__group:has(button) {
  width: 100%
}
.contact-form__group:has(button) button {
  margin-inline: auto
}
.contact-form__group:not(:last-child) {
  margin-bottom: 36px
}
.contact-form__group label {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
  margin-right: 16px
}
.contact-form__group select {
  width: 100%;
  appearance: none;
  background: var(--primary-light) url(../img/icons/arrow.svg) no-repeat right .75rem center;
  font-size: 18px;
  padding: 10px;
  outline: 0;
  border: 2px solid transparent
}
.contact-form__group select option {
  background-color: var(--primary-light);
  font-size: 16px;
  padding-block: 6px!important;
  font-weight: 400!important
}
.contact-form__group select:focus,
.contact-form__group select:focus-visible,
.contact-form__group select:focus-within {
  border-color: var(--primary)
}
.contact-form__group select::placeholder {
  color: var(--muted-foreground);
  font-size: inherit
}
.contact-form__group textarea {
  min-height: 90px
}
.contact-form__group input,
.contact-form__group textarea {
  display: block;
  width: 100%;
  background-color: var(--primary-light);
  padding: 10px;
  height: 48px;
  font-size: 18px;
  font-weight: 400;
  outline: 0;
  border: 2px solid transparent;
  transition: all .3s
}
.contact-form__group input:focus,
.contact-form__group input:focus-visible,
.contact-form__group input:focus-within,
.contact-form__group textarea:focus,
.contact-form__group textarea:focus-visible,
.contact-form__group textarea:focus-within {
  border-color: var(--primary)
}
.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: var(--muted-foreground);
  font-size: inherit
}
dialog.form-dialog,
dialog.modal-dialog {
  border: none;
  border-radius: calc(var(--radius)*2);
  padding: 2rem;
  background: var(--background);
  color: var(--foreground);
  width: 90%;
  max-width: 500px;
  opacity: 0;
  transform: scale(.8);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-secondary)
}
dialog.form-dialog::backdrop,
dialog.modal-dialog::backdrop {
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s cubic-bezier(.4,0,.2,1)
}
dialog.form-dialog[open],
dialog.modal-dialog[open] {
  margin: auto;
  opacity: 1;
  transform: scale(1)
}
dialog.form-dialog[open]::backdrop,
dialog.modal-dialog[open]::backdrop {
  opacity: 1
}
dialog.form-dialog[open]._open,
dialog.modal-dialog[open]._open {
  animation: fade-in-bottom .6s cubic-bezier(.39,.575,.565,1) both
}
.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all .2s ease
}
.dialog-close:hover {
  color: var(--text-accent);
  transform: scale(1.1)
}
.btn-rounded {
  --btn-size: 173px;
  --btn-size-mobile: 100px;
  --btn-font-size: 14px;
  --btn-font-size-mobile: 10px;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--btn-font-size);
  font-weight: 400;
  color: var(--foreground-secondary);
  text-transform: uppercase;
  transition: background-color .3s ease,color .3s ease;
  cursor: pointer
}
.btn-rounded:active,
.btn-rounded:focus {
  background-color: var(--background);
  color: var(--foreground)
}
.h3 {
  font-size: 36px;
  font-weight: 400;
  font-family: CormorantGaramond;
  line-height: 1
}
.h2 {
  font-size: 50px;
  font-family: CormorantGaramond;
  line-height: 1
}
.blc-txt {
  font-size: 14px;
  line-height: 1.5
}
.img-blc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top
}
.img-blc video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.mb-section {
  margin-block: 180px
}
.card {
  background-color: var(--card);
  width: fit-content;
  transition: transform .3s ease
}
.card__content {
  padding: 24px 20px 48px
}
.card__name {
  font-size: 17px;
  margin-bottom: 12px
}
.card__price {
  font-size: 14px
}
.card__hr {
  margin-block: 18px;
  height: 1px;
  background-color: var(--border)
}
.card__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px
}
.card__tel-label {
  margin-right: 8px
}
.card__tel-link {
  color: var(--primary);
  transition: color .3s ease
}
.header__logo {
  display: flex;
  align-items: center
}
.header__logo-img {
  flex-shrink: 0
}
.header__logo-block {
  display: flex;
  flex-direction: column
}
.header__logo-name {
  font-size: 20px;
  font-family: "Cormorant Garamond";
  line-height: 1
}
.header__logo-description {
  white-space: nowrap;
  font-size: 13px
}
.header__logo-description span {
  color: var(--primary)
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height)
}
.header__menu {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center
}
.header__actions {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 1rem
}
.header__actions>* {
  flex: 0 0 auto
}
.header__actions-phone {
  color: var(--primary);
  font-size: 22px;
  transition: color .3s ease
}
.header__top {
  height: 24px;
  background-color: #282d2b!important;
  display: flex;
  align-items: center;
  justify-content: center
}
.header__top-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}
.header__top-logo {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #dc143c;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 2px
}
.header__top-text {
  font-size: 12px;
  color: #999
}
.footer {
  background-color: var(--background-secondary);
  color: var(--foreground-secondary);
  padding-top: 46px
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 36px;
  flex-wrap: wrap
}
.footer__top-right {
  display: flex;
  gap: 1rem;
  justify-content: space-between
}
.footer__top nav h3 {
  font-family: "Cormorant Garamond";
  font-size: 26px
}
.footer__top nav ul {
  margin-top: 8px
}
.footer__top nav ul li {
  padding-block: 8px;
  transition: color .3s ease
}
.footer__top nav ul li._active {
  color: var(--primary)
}
.footer__top nav ul li:hover:not(._active) {
  color: var(--primary)
}
.footer__top nav ul li>*:nth-child(2) {
  color: var(--muted-foreground)
}
.footer__top nav ul li [href^=tel] {
  font-size: 24px
}
.footer__logo a {
  font-size: 35px;
  font-family: "Cormorant Garamond";
  display: flex;
  flex-direction: column;
  gap: 1rem
}
.footer__logo p {
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.5
}
.footer__metro {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem
}
.footer__metro-img {
  width: 34px;
  height: 34px
}
.footer__metro span {
  font-size: 16px
}
.footer__nav li {
  padding-block: 0
}
.footer__nav li span {
  font-size: 14px;
  text-decoration: underline
}
.footer__bottom {
  padding-block: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem
}
.footer__bottom>p {
  font-size: 14px
}
.footer__bottom-block {
  display: flex;
  gap: 1rem;
  justify-content: space-between
}
.footer__bottom-age {
  display: flex;
  align-items: center;
  gap: 1rem
}
.footer__bottom-age-img {
  flex-shrink: 0;
  width: 38px;
  height: 38px
}
.footer__bottom-age-text {
  font-size: 14px;
  line-height: 1.6
}
.footer__bottom-links {
  display: flex;
  flex-direction: column
}
.footer__bottom-links a {
  line-height: 1.6;
  font-size: 14px
}
.footer__bottom-bottom {
  padding-block: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center
}
.footer__bottom-bottom-text {
  max-width: 440px;
  font-size: 10px
}
.socials {
  display: flex;
  gap: 1rem
}
.socials__item {
  padding-block: 0!important
}
.socials__item a {
  display: flex;
  align-items: center;
  justify-content: center
}
.socials__item-img {
  width: 33px;
  height: 33px
}
.footer__bottom>p,
.footer__top .footer__logo {
  flex: 1
}
.footer__bottom-block,
.footer__top-right {
  flex: 1
}
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 695px
}
.hero::after,
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background-repeat: repeat-x;
  background-size: cover
}
.hero::before {
  top: 0;
  background-image: url(../img/bg/decor-top.png)
}
.hero::after {
  bottom: 0;
  background-image: url(../img/bg/decor-bottom.png)
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  object-fit: cover
}
.hero__decor-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%
}
.hero__decor-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%
}
.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center
}
.hero__title {
  font-size: 75px;
  line-height: 1;
  font-family: "Cormorant Garamond"
}
.forget__container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px
}
.forget__content {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.forget__item {
  padding-top: 100px;
  max-width: 386px;
  place-self: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 24px;
  justify-content: center
}
.forget__figure img,
.forget__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top
}
.desire {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px
}
.desire__content {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.desire__item {
  padding-top: 100px;
  max-width: 386px;
  place-self: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 24px;
  justify-content: center
}
.desire__figure img,
.desire__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top
}
.girl-photo {
  margin-top: -100px;
  margin-bottom: 68px
}
.sign {
  margin-block: 147px
}
.sign__container {
  display: grid;
  grid-template-areas: "content content content" "img-2 img-1 btn";
  gap: 40px;
  grid-template-columns: repeat(3,1fr)
}
.sign__content {
  grid-area: content;
  max-width: 660px;
  text-align: right;
  place-self: end
}
.sign__img:nth-child(1) {
  grid-area: "img-1"
}
.sign__img:nth-child(2) {
  grid-area: img-2
}
.sign__btn {
  grid-area: btn;
  place-self: start end
}
.schedule__container {
  padding: 60px 40px;
  background-image: url(../img/bg/contact.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative
}
.schedule__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6)
}
.schedule__title {
  position: relative;
  z-index: 2;
  margin-bottom: 84px;
  color: var(--foreground)
}
.schedule__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8,1fr);
  gap: 30px
}
.schedule__item {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.schedule__item-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-family-secondary);
  line-height: 1;
  white-space: nowrap
}
.schedule__item-text {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap
}
.wait__heading {
  text-align: center;
  margin-bottom: 84px
}
.wait__title {
  margin-bottom: 16px
}
.wait__row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px
}
.wait__item {
  position: relative
}
.wait__item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}
.wait__item-title {
  margin-bottom: 16px
}
.girls {
  padding: 80px 40px
}
.girls__title {
  text-align: center;
  margin-bottom: 84px
}
.girls__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px
}
.services__container {
  padding: 80px 40px
}
.services__heading {
  margin-inline: auto;
  margin-bottom: 84px;
  text-align: center
}
.services__description {
  margin-inline: auto;
  margin-top: 48px;
  max-width: 660px
}
.service {
  margin-block: 100px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px
}
.service__col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}
.service__col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.service__content {
  max-width: 340px;
  margin-inline: auto;
  text-align: center
}
.service__title {
  margin-bottom: 23px
}
.service__text {
  margin-bottom: 16px
}
.contact__container {
  padding: 80px 40px;
  height: 100%
}
.contact__heading {
  margin-bottom: 84px;
  text-align: center
}
.contact__description {
  margin-inline: auto;
  margin-top: 48px;
  max-width: 660px
}
.contact__description p {
  margin-bottom: 16px
}
.contact__row {
  display: flex;
  gap: 30px;
  min-height: 100%
}
.contact__img {
  flex: 3
}
.contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.contact__info {
  flex: 1;
  min-height: 100%
}
.info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100%;
  gap: 40px;
  gap: 24px;
  align-items: center
}
.info__title {
  margin-bottom: 24px
}
.info__block {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%
}
.info__item h4 {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  font-family: var(--font-family-secondary);
  margin-bottom: 18px
}
.info__item [href^=tel] {
  font-size: 22px;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 18px
}
.info__item [href^=mailto] {
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  margin-bottom: 18px
}
.page__container {
  padding: 80px 40px;
  max-width: 1200px;
  margin-inline: auto
}
.girl {
  padding: 80px 40px
}
.girl__nav-link {
  color: var(--primary);
  margin-bottom: 48px
}
.girl__row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px
}
.girl__col:first-child {
  max-width: 392px;
  margin-inline: auto
}
.girl__col:last-child {
  max-width: 552px;
  margin-inline: auto
}
.girl__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.girl-block__title {
  margin-top: 54px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border)
}
.girl-block__title.h2 {
  font-size: 46px;
  margin-top: 0;
  border-bottom: none
}
.girl-block__text {
  margin-top: 18px;
  margin-bottom: 18px;
  line-height: 1.5
}
.girl-block__subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--border)
}
.girl-block__list li {
  padding-left: 18px;
  position: relative
}
.girl-block__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--foreground);
  border-radius: 50%
}
.girl-block__btn-wrap {
  margin-top: 51px
}
.banner-girl {
  max-width: 245px;
  border-radius: 10px;
  padding: 24px 18px 36px;
  background-color: var(--card);
  color: gray
}
.banner-girl__title {
  font-size: 20px;
  font-family: var(--font-family-secondary);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border)
}
.banner-girl table {
  color: #bfbfbf;
  margin-block: 18px 32px
}
.banner-girl table tr td:nth-child(2) {
  min-width: 21px
}
.banner-girl table tr td:last-child {
  text-align: left
}
.banner-girl__info {
  color: var(--primary);
  font-size: 18px
}
.cookies {
  width: min(380px,100% - 2rem);
  position: fixed;
  bottom: 20px;
  right: 15px;
  background-color: var(--card);
  padding: 16px;
  border-radius: calc(var(--radius)*3);
  box-shadow: var(--shadow);
  line-height: 1.5;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: opacity .3s ease,transform .3s ease;
  border: 1px solid var(--border)
}
.cookies>div {
  display: flex;
  align-items: center;
  gap: 12px
}
.cookies>div svg {
  width: 32px;
  height: 32px;
  fill: brown
}
.cookies.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%)
}
.cookies p {
  font-size: 16px;
  color: var(--card-foreground)
}
.cookies a {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity .4s ease;
  font-size: 14px
}
.cookies a:hover {
  opacity: .7
}
.cookies nav {
  text-wrap: nowrap;
  display: flex;
  gap: 8px
}
.cookies nav button {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius)*2);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s ease,color .2s ease;
  text-decoration: none
}
.cookies nav button:hover {
  background-color: var(--primary);
  color: var(--primary-foreground)
}
.cookies nav button:active {
  background-color: var(--accent);
  color: var(--accent-foreground)
}
.cookies nav button:focus,
.cookies nav button:focus-visible,
.cookies nav button:focus-within {
  outline: 1px solid var(--primary)
}
@media (max-width:1024px) {
  .legal {
    display: block
  }
  .legal__aside-nav {
    position: static
  }
}
@media (max-width:768px) {
  .legal__content>*:not(:last-child) {
    margin-bottom: 20px
  }
  .legal__content section>*:not(:last-child) {
    margin-bottom: 16px
  }
  .legal__content h1 {
    font-size: 24px
  }
  .legal__content h2 {
    font-size: 20px;
    scroll-margin-top: 16px
  }
  .legal__content p {
    font-size: 14px
  }
  .contact-form__group:not(:last-child) {
    margin-bottom: 24px
  }
}
@media (max-width:767px) {
  .footer__bottom-bottom {
    flex-direction: column;
    gap: 1rem
  }
}
@media (max-width:480px) {
  .cookies>div svg {
    width: 24px;
    height: 24px
  }
  .cookies p {
    font-size: 14px
  }
  .cookies a {
    font-size: 12px
  }
}
@media (max-width:375px) {
  .header__logo-description {
    display: none
  }
}
@media (max-width:360px) {
  .cookies {
    flex-direction: column
  }
  .cookies nav {
    width: 100%
  }
}
@media (max-width:340px) {
  .schedule__content {
    grid-template-columns: 1fr
  }
}
@media (max-width:94.375em) {
  .sign__container {
    gap: 28px
  }
  .schedule__content {
    grid-template-columns: repeat(5,1fr)
  }
}
@media (max-width:61.99875em) {
  .h3 {
    font-size: 28px
  }
  .h2 {
    font-size: 36px
  }
  .mb-section {
    margin-block: 140px
  }
  .header__logo-img {
    width: 60px;
    height: 60px
  }
  .header__logo-name {
    font-size: 16px
  }
  .header__logo-description {
    font-size: 10px
  }
  .header__actions {
    margin-left: 0
  }
  .header__actions-phone {
    font-size: 12px
  }
  .footer__top {
    flex-direction: column
  }
  .footer__top-right {
    flex-wrap: wrap;
    gap: 1.5rem
  }
  .footer__logo {
    flex: 1 0 100%
  }
  .footer__bottom {
    flex-direction: column
  }
  .hero {
    height: 595px
  }
  .hero__title {
    font-size: 50px
  }
  .sign__container {
    gap: 24px;
    grid-template-areas: "content content" "img-1 img-2" "btn btn";
    grid-template-columns: 1fr 1fr
  }
  .sign__content {
    text-align: center;
    place-self: center
  }
  .sign__btn {
    place-self: center
  }
  .schedule__content {
    grid-template-columns: repeat(4,1fr)
  }
  .wait__heading {
    margin-bottom: 40px
  }
  .wait__row {
    gap: 16px
  }
  .service {
    margin-block: 80px
  }
}
@media (max-width:47.99875em) {
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: -100%;
    top: 0;
    bottom: 0;
    z-index: 100;
    overflow: auto;
    padding: 50px 15px 15px 30px;
    background-color: var(--background);
    transition: left .3s
  }
  .menu__body::before {
    content: "";
    background-color: rgba(0,0,0,0);
    position: fixed;
    width: 100%;
    height: 70px;
    left: -100%;
    top: 0;
    transition: left .3s;
    z-index: 10
  }
  .menu-open .menu__body {
    left: 0
  }
  .menu-open .menu__body::before {
    left: 0
  }
  .menu__list {
    flex-direction: column
  }
  .menu__item {
    font-size: 36px;
    text-align: center
  }
  .menu__item:not(:last-child) {
    margin-bottom: 20px
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    z-index: 100
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    transition: all .3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--foreground)
  }
  .icon-menu::before {
    top: 0
  }
  .icon-menu::after {
    bottom: 0
  }
  .icon-menu span {
    top: calc(50% - 1px)
  }
  .menu-open .icon-menu span {
    width: 0
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 1px);
    transform: rotate(-45deg)
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg)
  }
  .btn-rounded {
    --btn-size: var(--btn-size-mobile);
    --btn-font-size: var(--btn-font-size-mobile)
  }
  .h3 {
    font-size: 24px
  }
  .h2 {
    font-size: 28px
  }
  .mb-section {
    margin-block: 100px
  }
  .footer {
    padding-top: 2rem
  }
  .footer__bottom {
    padding-block: 1rem
  }
  .hero {
    height: 495px
  }
  .hero__title {
    font-size: 36px
  }
  .forget__container {
    grid-template-columns: 1fr
  }
  .forget__item {
    padding-top: 0;
    max-width: none
  }
  .desire {
    grid-template-columns: 1fr
  }
  .desire__item {
    padding-top: 0;
    max-width: none
  }
  .girl-photo {
    margin-top: -80px
  }
  .girl-photo__img-ad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top
  }
  .sign__container {
    grid-template-areas: "content" "img-1" "img-2" "btn";
    grid-template-columns: 1fr
  }
  .schedule__content {
    grid-template-columns: repeat(3,1fr)
  }
  .wait__row {
    grid-template-columns: 1fr
  }
  .services__description {
    margin-top: 24px
  }
  .service {
    margin-block: 60px
  }
  .service {
    grid-template-columns: 1fr
  }
  .contact__container {
    padding: 40px 20px
  }
  .contact__description {
    margin-top: 24px
  }
  .contact__row {
    flex-direction: column
  }
  .page__container {
    padding: 40px 20px
  }
  .girl__row {
    grid-template-columns: 1fr
  }
}
@media (max-width:47.99875em)and (any-hover:none) {
  .icon-menu {
    cursor: default
  }
}
@media (max-width:29.99875em) {
  .header__actions-phone {
    display: none
  }
  .footer__bottom-block {
    flex-direction: column-reverse;
    gap: 1.5rem
  }
  .schedule__content {
    grid-template-columns: repeat(2,1fr)
  }
}
@media (any-hover:hover) {
  .menu__link:hover {
    color: var(--primary)
  }
  .btn-rounded:hover {
    background-color: var(--background-secondary);
    color: var(--primary)
  }
  .card:hover {
    transform: scale(1.05)
  }
  .card__tel-link:hover {
    color: var(--foreground)
  }
  .header__actions-phone:hover {
    color: var(--foreground)
  }
  .wait__item-link:hover {
    color: var(--primary)
  }
}