@charset "UTF-8";
:root {
  --main-text-color: #ffffff;
  --main-bg-color: #ffffff;
  --blue-bg-color: #f0f4fb;
  --black-bg-button: #242424;
  --default-top-margin: 96px;
  --default-top-mobile-margin: 48px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ysabeau", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2em;
  font-style: normal;
  color: #253238;
  background-color: var(--main-bg-color);
}

a {
  color: #426ab9;
}

button {
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}

img {
  display: block;
}

details summary::-webkit-details-marker {
  display: none;
}

details > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

details summary:before {
  content: "+";
  width: 16px;
  height: 16px;
  padding: 4px;
  border-radius: 36px;
  background-color: #426ab9;
  color: #ffffff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

details[open] summary:before {
  content: "–";
}

.square-4 {
  width: 4px;
  height: 4px;
}
.square-8 {
  width: 8px;
  height: 8px;
}
.square-12 {
  width: 12px;
  height: 12px;
}
.square-16 {
  width: 16px;
  height: 16px;
}
.square-20 {
  width: 20px;
  height: 20px;
}
.square-24 {
  width: 24px;
  height: 24px;
}
.square-28 {
  width: 28px;
  height: 28px;
}
.square-32 {
  width: 32px;
  height: 32px;
}
.square-36 {
  width: 36px;
  height: 36px;
}
.square-40 {
  width: 40px;
  height: 40px;
}
.square-44 {
  width: 44px;
  height: 44px;
}
.square-48 {
  width: 48px;
  height: 48px;
}
.square-52 {
  width: 52px;
  height: 52px;
}
.square-56 {
  width: 56px;
  height: 56px;
}
.square-60 {
  width: 60px;
  height: 60px;
}

.__indent-small {
  margin-bottom: 24px;
}
.__indent-medium {
  margin-bottom: 40px;
}
.__indent-large {
  margin-bottom: 80px;
}

.__container:first-child {
  margin-top: 80px;
}

.__wrapper {
  margin-bottom: -16px;
  display: flex;
  flex-wrap: wrap;
}
.__wrapper-item {
  margin-right: 16px;
  margin-bottom: 16px;
}

.__column {
  background-color: #848484;
  color: wheat;
  padding: 12px;
  border-radius: 12px;
}

.__accordion {
  border-bottom: 1px solid gray;
}
.__accordion:not(.active) .__accordion-body {
  display: none;
}
.__accordion-header {
  padding: 12px 0;
}
.__accordion-title {
  flex-grow: 1;
}
.__accordion-body {
  transition: 100ms ease-in-out;
  padding-bottom: 12px;
}

.__scroll-wrapper {
  background-color: gray;
  padding: 20px;
  overflow-x: auto;
  display: flex;
}
.__scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.__scroll-item {
  background-color: darkgray;
  width: 200px;
  height: 200px;
  margin-right: 32px;
  flex-shrink: 0;
}

.main {
  position: relative;
  z-index: 2;
}
.main--fixed {
  padding-top: 68px;
}
@media (min-width: 768px) {
  .main--fixed {
    padding-top: 100px;
  }
}

.container {
  width: 100%;
  overflow: clip;
}
.container__inner {
  width: 100%;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.button-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .button-wrap {
    gap: 24px;
    flex-direction: row;
  }
}

.button {
  outline: none;
  font-size: 16px;
  padding: 12px 32px 12px;
  border-radius: 8px;
  width: 100%;
  text-decoration: none;
  text-align: center;
  background-color: #ffffff;
  color: #242424;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #dbe1ed;
}
@media (min-width: 1200px) {
  .button {
    font-size: 18px;
    width: initial;
    padding: 14px 24px 14px;
  }
}
.button--black {
  background-color: var(--black-bg-button);
  color: #ffffff;
}
.button--black:hover {
  background-color: #232323;
}
.button--white {
  background-color: #ffffff;
  color: #242424;
}
.button--white:hover {
  background-color: #c6cdd2;
  color: #5c666e;
}
.button--blue {
  background: #506FFC;
  color: #ffffff;
}
.button--blue:hover {
  background: #506FFC;
}

.list {
  padding-left: 24px;
}
.list__item {
  list-style: disc;
  font-size: 16px;
}
@media (min-width: 768px) {
  .list__item {
    font-size: 18px;
  }
}

.swiper .swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 24px;
}

.swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.kama_breadcrumbs {
  font-size: 14px;
  color: #909aaf;
  margin-bottom: 16px;
}

.kb_sep {
  font-size: 10px;
  color: #909aaf;
}

.title {
  margin-bottom: 36px;
}
.title--hero {
  font-size: 64px;
}
.title--hero-2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .title--hero-2 {
    font-size: 36px;
  }
}
@media (min-width: 1920px) {
  .title--hero-2 {
    font-size: 42px;
  }
}
.title--heading-1 {
  font-size: 28px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .title--heading-1 {
    font-size: 36px;
  }
}
.title--heading-2 {
  font-size: 22px;
  line-height: 1.4em;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .title--heading-2 {
    font-size: 28px;
  }
}
.title--heading-3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title--heading-3 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .title--heading-3 {
    font-size: 20px;
  }
}
.title--body-1 {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title--body-1 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .title--body-1 {
    font-size: 20px;
  }
}
.title--body-2 {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .title--body-2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .title--body-2 {
    font-size: 24px;
  }
}
.title--bottom:not(:last-child) {
  margin-bottom: 24px;
}
.title--white {
  color: #ffffff;
}
.title--orange {
  background: linear-gradient(to top right, #FF3834 0%, #FF7133 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000000;
}

.paragraph {
  font-size: 16px;
  line-height: 1.4em;
}
@media (min-width: 768px) {
  .paragraph {
    font-size: 18px;
  }
}
.paragraph--body-1 {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .paragraph--body-1 {
    font-size: 18px;
  }
}
.paragraph--white {
  color: #ffffff;
}
.paragraph--gray {
  color: #5d5d5d;
}

.header {
  width: 100%;
  border-bottom: 1px solid #dedede;
  position: relative;
  z-index: 3;
}
.header__inner {
  max-width: 1200px;
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 16px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__inner {
    height: 97px;
  }
}
@media (min-width: 1200px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) {
  .header__inner {
    gap: 36px;
    align-items: center;
    flex-direction: row;
  }
}
.header__logo {
  position: relative;
  flex-shrink: 0;
  z-index: 4;
  font-size: 24px;
  color: #253238;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 28px;
  }
}
.header__menu {
  position: absolute;
  top: 0;
  right: 0;
  padding: 80px 16px 24px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.header__menu--active {
  transform: translateY(0%);
  opacity: 1;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .header__menu {
    transform: none;
    opacity: initial;
    position: static;
    padding: initial;
    width: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.header__menu-item {
  font-size: 20px;
  list-style: none;
}
@media (min-width: 1200px) {
  .header__menu-item {
    font-size: 20px;
  }
}
.header__menu a {
  display: block;
}
.header__link {
  color: #253238;
  text-decoration: none;
  position: relative;
  display: block;
}
.header__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  border-radius: 16px;
  background-color: #ff725e;
  transition: width 0.2s ease;
  z-index: -1;
}
.header__link:hover {
  border-bottom: none;
}
.header__link:hover:after {
  width: 0%;
}
.header__contact {
  margin-left: auto;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #151515;
  display: none;
}
@media (min-width: 768px) {
  .header__contact {
    display: block;
  }
}
.header__button {
  margin-left: 36px;
  background-color: #6f85e9;
  color: #ffffff;
  padding: 8px 24px 10px;
  border-radius: 12px;
  font-size: 20px;
}
.header__burger {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.header__burger img {
  width: 100%;
}
.header__burger label {
  display: flex;
  flex-direction: column;
  width: 24px;
  cursor: pointer;
}
.header__burger label span {
  background: #ff725e;
  border-radius: 10px;
  height: 2px;
  margin: 2px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.header__burger span:nth-of-type(1) {
  width: 50%;
}
.header__burger span:nth-of-type(2) {
  width: 100%;
}
.header__burger span:nth-of-type(3) {
  width: 75%;
}
.header__burger input[type=checkbox] {
  display: none;
}
.header__burger input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(14px, -0.5px);
}
.header__burger input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
.header__burger input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(2px, -11px) rotatez(45deg);
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.intro {
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
  border-radius: 8px;
  gap: 24px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
  margin-bottom: 48px;
}
@media (min-width: 1200px) {
  .intro {
    margin-bottom: 48px;
    flex-direction: row;
  }
}
.intro__image {
  display: block;
  width: 100%;
  margin: auto;
}
.intro__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .intro__left {
    flex: 1;
  }
}
.intro__right {
  width: 100%;
  border-radius: 8px;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .intro__right {
    background-color: initial;
    justify-content: flex-end;
    width: 50%;
  }
}
.intro__right img {
  width: 100%;
}
.intro__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 48px;
    text-align: left;
  }
}
.intro__list {
  padding-left: 24px;
}
.intro__list-item {
  font-size: 18px;
  line-height: 1.3em;
}
@media (min-width: 768px) {
  .intro__list-item {
    font-size: 24px;
  }
}
.intro__buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .intro__buttons {
    flex-direction: row;
    gap: 16px;
  }
}
.intro__button {
  font-size: 20px;
  padding: 10px 16px 12px;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  font-family: "Ysabeau", serif;
  white-space: nowrap;
}
.intro__button--orange {
  background-color: #ff725e;
}
.intro__button--black {
  background-color: #253238;
}
@media (min-width: 768px) {
  .intro__button {
    padding: 10px 24px 12px;
  }
}
.intro__text {
  margin-bottom: 36px;
  text-align: center;
}
@media (min-width: 768px) {
  .intro__text {
    text-align: left;
  }
}

.about {
  padding-top: var(--default-top-mobile-margin);
}
@media (min-width: 768px) {
  .about {
    padding-top: var(--default-top-margin);
  }
}
.about__title {
  margin-bottom: 24px;
  text-align: center;
}
.about__subtitle:not(:last-child) {
  margin-bottom: 16px;
}
.about__desc {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .about__desc {
    width: 70%;
  }
}
.about__value {
  font-size: 32px;
}
@media (min-width: 768px) {
  .about__value {
    font-size: 48px;
  }
}
.about__flex {
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .about__flex {
    flex-direction: row;
  }
}
.about__text {
  color: #545f73;
  position: relative;
  display: flex;
  gap: 32px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--blue-bg-color);
  border-radius: 16px;
  flex: 1;
  padding: 16px;
}
.about__text:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .about__text {
    padding: 24px;
    border-radius: 16px;
  }
  .about__text:not(:last-child) {
    margin-bottom: 0;
  }
  .about__text:not(:first-child) {
    margin-left: 24px;
  }
}
.about__filler {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 8px;
  background-color: var(--blue-bg-color);
  z-index: -1;
}
.about__filler--100 {
  width: calc(100% - 16px);
}
.about__filler--90 {
  width: calc(90% - 16px);
}
.about__filler--85 {
  width: calc(85% - 16px);
}

.price {
  margin-bottom: 24px;
}
.price__title {
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: inline-block;
  font-size: 20px;
}
.price__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  border-radius: 16px;
  background-color: #ff725e;
  transition: width 0.2s ease;
  z-index: -1;
}
.price__desc {
  font-size: 20px;
}
.price__list {
  display: flex;
}
.price__item {
  width: 47%;
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .price__item {
    width: calc(25% - 32px);
    margin-bottom: 0;
  }
}
.price__item img {
  height: 100%;
  margin: auto;
  border-radius: 8px;
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 16px;
}
.price__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.price__row:last-child {
  border-bottom: none;
}
.price__name, .price__value {
  padding: 8px;
  text-align: left;
}
.price__value {
  text-align: right;
  font-size: 24px;
}
.price__button {
  font-size: 20px;
  padding: 10px 16px 12px;
  border-radius: 8px;
  border: none;
  background-color: #ff725e;
  color: #ffffff;
  font-family: "Ysabeau", serif;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .price__button {
    padding: 10px 24px 12px;
  }
}

.direction {
  padding-top: 48px;
}
@media (min-width: 768px) {
  .direction {
    padding-top: 48px;
  }
}
.direction--page {
  padding-top: 0;
}
.direction--page .direction__title {
  text-align: left;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .direction--page .direction__title {
    margin-bottom: 8px;
  }
}
.direction--page .direction__desc {
  text-align: left;
  margin: 0 0 36px;
}
.direction__title {
  margin-bottom: 24px;
}
.direction__desc {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .direction__desc {
    width: 70%;
  }
}
.direction__blocks {
  display: flex;
  gap: 16px;
  flex-direction: row;
  flex-wrap: wrap;
}
.direction__blocks:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .direction__blocks {
    flex-direction: row;
    justify-content: start;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .direction__blocks {
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .direction__blocks {
    gap: 24px;
  }
  .direction__blocks:not(:last-child) {
    margin-bottom: 36px;
  }
}
.direction__columns {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 768px) {
  .direction__columns {
    flex-direction: row;
  }
}
.direction__column {
  width: 100%;
}
.direction__column--image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.direction__column--image img {
  width: 100%;
}
@media (min-width: 768px) {
  .direction__column--image {
    padding-right: 24px;
    border-right: 1px solid #dddddd;
  }
}

.steps {
  padding-top: var(--default-top-mobile-margin);
}
@media (min-width: 768px) {
  .steps {
    padding-top: var(--default-top-margin);
  }
}
.steps__title {
  margin-bottom: 24px;
  text-align: center;
}
.steps__flex {
  display: flex;
  overflow: hidden;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1024px) {
  .steps__flex {
    flex-direction: row;
  }
}
.steps__text {
  border: 2px solid #f0f4fb;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  counter-increment: section;
  overflow: hidden;
  border-radius: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33% - 10px);
}
@media (min-width: 768px) {
  .steps__text {
    width: initial;
    flex: 1;
  }
}
.steps__text img {
  display: block;
  margin: auto;
  width: 100%;
}
.steps__text:before {
  content: counter(section);
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
  font-size: 96px;
  font-style: italic;
  font-weight: 700;
  color: #f0f4fb;
  z-index: -1;
}
@media (min-width: 1024px) {
  .steps__text {
    border-radius: 24px;
    margin-top: initial;
  }
}
.steps__text h3 {
  margin-bottom: 8px;
}

.fines {
  padding-top: var(--default-top-mobile-margin);
}
@media (min-width: 768px) {
  .fines {
    padding-top: var(--default-top-margin);
  }
}
.fines__title {
  margin-bottom: 24px;
  text-align: center;
}
.fines__desc {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .fines__desc {
    width: 70%;
  }
}
.fines__flex {
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .fines__flex {
    flex-direction: row;
  }
}
.fines__text {
  border: 2px solid #fff3e9;
  background-color: #ffffff;
  flex: 1;
  padding: 48px 16px 24px;
  position: relative;
  overflow: hidden;
  margin-top: -24px;
  border-radius: 0 0 24px 24px;
}
.fines__text:first-child {
  border-radius: 24px;
  margin-left: 0;
  margin-top: 0;
  padding: 24px 16px 24px;
}
@media (min-width: 1024px) {
  .fines__text:first-child {
    padding: 48px 16px 24px;
  }
}
.fines__text:nth-child(odd) {
  background-color: #fff3e9;
  border: 2px solid transparent;
}
.fines__text:nth-child(odd):before {
  color: #fff3e9;
}
@media (min-width: 1024px) {
  .fines__text {
    padding: 48px;
    border-radius: 0 24px 24px 0;
    margin-left: -24px;
    margin-top: initial;
  }
}
.fines__text h3 {
  margin-bottom: 8px;
}

.faq {
  padding: 24px 0;
}
.faq__item {
  margin-bottom: 16px;
}
.faq__question {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  font-family: "Ysabeau", serif;
  text-transform: uppercase;
  color: #253238;
}
.faq__answer {
  padding-top: 16px;
  border-top: 1px solid #ddd;
}
.faq__item.active .faq__answer {
  display: block;
}

.contacts {
  padding-top: 48px;
}
@media (min-width: 768px) {
  .contacts {
    padding-top: 48px;
  }
}
.contacts__title {
  margin-bottom: 24px;
}
.contacts__subtitle {
  text-align: center;
}
.contacts__desc {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .contacts__desc {
    width: 70%;
  }
}
.contacts__phone:hover {
  text-decoration: underline;
}
.contacts__columns {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .contacts__columns {
    flex-direction: row;
    gap: 24px;
  }
}
.contacts__column {
  flex: 1;
}
.contacts iframe {
  border-radius: 24px;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 10;
}
.modal-wrapper--active {
  display: flex;
}
@media (min-width: 768px) {
  .modal-wrapper {
    align-items: center;
  }
}

.modal {
  width: 100%;
  max-width: 768px;
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  position: relative;
  height: 100%;
  min-height: 50vh;
  max-height: 80vh;
  overflow: hidden;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.1));
}
@media (min-width: 768px) {
  .modal {
    border-radius: 16px;
  }
}
.modal__content {
  padding: 36px 16px;
  max-height: 100%;
  overflow: scroll;
  width: 99%;
}
@media (min-width: 768px) {
  .modal__content {
    padding: 36px;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  z-index: 10;
}
.modal__close:before, .modal__close:after {
  content: "";
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform-origin: center;
}
.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-content__expand {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  color: #2196f3;
  border: 1px solid #2196f3;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 0 12px 0;
  cursor: pointer;
}
.modal-content__list {
  padding-left: 24px;
  height: 100px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  padding-bottom: 24px;
}
.modal-content__list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
}
.modal-content__list--active {
  height: 100%;
}
.modal-content__list--active::before {
  background: none;
}
.modal-content__list--full {
  height: 100%;
  padding-bottom: 0;
}
.modal-content__list--full::before {
  background: none;
}
.modal-content__list__item {
  font-size: 16px;
}
@media (min-width: 768px) {
  .modal-content__list__item {
    font-size: 18px;
  }
}
.modal-content h3 {
  margin-bottom: 16px;
}
.modal-content ul {
  margin-bottom: 24px;
}
.modal-content li {
  line-height: 1.4em;
  list-style: circle;
}
.modal-content li:not(:last-child) {
  margin-bottom: 4px;
}

.footer {
  border-top: 1px solid #dedede;
  margin-top: var(--default-top-mobile-margin);
  padding-top: var(--default-top-mobile-margin);
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 48px;
    padding-top: 48px;
    padding-bottom: 100px;
  }
}
.footer__inner {
  max-width: 1200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 48px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 auto;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .footer__inner {
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1024px) {
  .footer__inner {
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__left {
    gap: 24px;
    align-items: flex-start;
    flex: 1;
  }
}
.footer__right {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__right {
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
  }
}
.footer__logo {
  position: relative;
  flex-shrink: 0;
  z-index: 4;
  font-size: 24px;
  color: #253238;
  text-decoration: none;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer__logo {
    font-size: 28px;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__menu {
    width: initial;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.footer__menu-item {
  font-size: 20px;
  list-style: none;
}
@media (min-width: 1200px) {
  .footer__menu-item {
    font-size: 20px;
  }
}
.footer__menu a {
  display: block;
}
.footer__link {
  color: #253238;
  text-decoration: none;
  position: relative;
  display: block;
  white-space: nowrap;
}
.footer__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 8px;
  border-radius: 16px;
  background-color: #ff725e;
  transition: width 0.2s ease;
  z-index: -1;
}
.footer__link:hover {
  border-bottom: none;
}
.footer__link:hover:after {
  width: 0%;
}
.footer__license {
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__license {
    width: 40%;
  }
}
.footer__address {
  display: flex;
  gap: 16px;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.2em;
  color: #909aaf;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__address {
    text-align: left;
  }
}

.floating {
  width: calc(100% - 24px);
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 11;
  transition: transform 0.3s ease;
}
.floating--hide {
  transform: translateY(500px);
}
.floating__wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .floating__wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}
.floating__buttons {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}
.floating__button {
  font-size: 20px;
  padding: 10px 16px 12px;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  font-family: "Ysabeau", serif;
  white-space: nowrap;
}
.floating__button--orange {
  background-color: #ff725e;
  width: 100%;
}
.floating__button--black {
  background-color: #253238;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .floating__button {
    padding: 10px 24px 12px;
  }
}
.floating__link {
  width: 24px;
  fill: #909aaf;
}
.floating__link:after {
  content: none;
}