@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap&subset=cyrillic-ext");

@font-face {
  font-family: 'Gill Sans MT';
  src: url("../fonts/GillSansMT.woff2") format("woff2"), url("../fonts/GillSansMT.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (min-width: 955px) {
  .container {
    max-width: 955px;
  }
}

@media (min-width: 1200px) {
  .container_long {
    max-width: 1180px;
  }
}

.button__base {
  display: block;
  width: 208px;
  height: 36px;
  background-color: #1bb2bc;
  border-radius: 20px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  padding: 0 10px;
  color: #ffffff;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.button__base:hover {
  background-color: #15888f;
}

.button__base_green {
  background-color: #f77c5b;
  border-radius: 4px;
}

.button__base_green:hover {
  background-color: #f5552a;
}

.ancor {
  position: relative;
  top: -100px;
}

.up-btn {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s;
}

.up-btn_hidden {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  visibility: hidden;
}

.up-btn_last {
  bottom: 112px;
}

.booking {
  display: block;
  position: relative;
  padding-top: 35px;
}

.booking h3,
.booking p {
  display: block;
  margin-bottom: 18px;
}

.booking ol {
  padding: 0 16px;
  margin-bottom: 18px;
}

.booking ol li {
  margin-bottom: 12px;
}

.hidden {
  overflow: hidden;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
  background-color: #fff;
  z-index: 3;
}

@media (max-width: 620px) {
  .header {
    height: 70px;
  }
}

.header__wrap {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__menu {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 760px) {
  .header__menu {
    margin-left: 10px;
    margin-right: auto;
  }
}

.header__logo {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  margin-right: 20px;
  color: #baabab;
  font-family: "Gill Sans MT";
}

@media (max-width: 920px) {
  .header__logo svg {
    width: 42px;
    height: auto;
  }
}

@media (max-width: 760px) {
  .header__logo svg {
    display: none;
  }
}

.header__nav {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
}

@media (max-width: 760px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 44px;
    background-color: #fff;
    right: 0;
    left: 0;
    padding-bottom: 12px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

.header__nav--open {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__item {
  margin: 0 20px;
  padding: 10px 0;
}

@media (max-width: 900px) {
  .header__nav__item {
    margin: 0 12px;
  }
}

@media (min-width: 761px) {
  .header__nav__item:hover .header__nav__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 760px) {
  .header__nav__item {
    display: block;
    margin: 0 12px 12px;
    width: 100%;
    padding: 0;
  }
}

.header__nav__link {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #baabab;
}

.header__nav__link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .header__nav__link {
    font-size: 14px;
  }
}

.header__nav__dropdown {
  display: none;
  position: absolute;
  top: 36px;
  padding-top: 10px;
  margin-left: -10px;
}

.header__nav__dropdown__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  -webkit-box-shadow: 0 15px 15px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 15px 4px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

.header__nav__dropdown__item {
  display: block;
  padding: 4px 20px;
}

@media (max-width: 760px) {
  .header__nav__dropdown__item {
    margin: 12px 0 0;
    padding: 0 20px;
  }
}

.header__nav__dropdown_visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 760px) {
  .header__nav__dropdown {
    display: block;
    position: relative;
    padding-top: 0;
    margin-left: 0;
    top: 0;
  }

  .header__nav__dropdown__container {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}

.header__contacts__phone {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #baabab;
}

.burger_button {
  display: none;
  height: 17px;
  z-index: 5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.burger_button__icon {
  content: '';
  display: block;
  width: 22px;
  height: 3px;
  background-color: #baabab;
  -webkit-transition: opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
  -o-transition: transform .4s ease, opacity .4s ease, background-color .4s ease;
  transition: transform .4s ease, opacity .4s ease, background-color .4s ease;
  transition: transform .4s ease, opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
}

.burger_button__icon:before,
.burger_button__icon:after {
  content: '';
  display: block;
  width: 22px;
  height: 3px;
  background-color: #baabab;
  -webkit-transition: opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
  transition: opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
  -o-transition: transform .4s ease, opacity .4s ease, background-color .4s ease;
  transition: transform .4s ease, opacity .4s ease, background-color .4s ease;
  transition: transform .4s ease, opacity .4s ease, background-color .4s ease, -webkit-transform .4s ease;
}

.burger_button__icon:before {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}

.burger_button__icon:after {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  transform: translateY(13px);
}

.burger_button--close .burger_button__icon {
  -webkit-transform: translateY(4px) rotate(45deg);
  -ms-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.burger_button--close .burger_button__icon:before {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
}

.burger_button--close .burger_button__icon:after {
  -webkit-transform: translateY(0) rotate(-90deg);
  -ms-transform: translateY(0) rotate(-90deg);
  transform: translateY(0) rotate(-90deg);
  position: absolute;
  bottom: 0;
}

@media (max-width: 760px) {
  .burger_button {
    display: block;
  }
}

.footer {
  display: block;
  padding: 26px 0 10px;
  background-color: #a36767;
  color: #fff;
}

.footer h4 {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 28px;
}

.footer__info {
  display: block;
  margin: 0 auto 47px;
  max-width: 680px;
  width: 100%;
}

.footer__info p {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.footer__info p a {
  color: #fff;
  line-height: 1.3;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
}

.footer__banking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 24px 0;
}

.footer__banking__item {
  height: 28px;
  width: auto;
  margin: 8px 12px 8px 0;
  position: relative;
}

.footer__banking__item img {
  max-height: 100%;
  width: auto;
}

.main {
  padding-top: 90px;
}

@media (max-width: 620px) {
  .main {
    padding-top: 70px;
  }
}

.start-screen {
  display: block;
  height: 100vh;
  background-image: url("../img/IMG_8468.jpg");
  background-image: -webkit-image-set(url("../img/IMG_8468.webp") 1x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .start-screen {
    height: auto;
    padding-top: 180px;
  }
}

.start-screen__title {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.start-screen__title h1 {
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  font-family: "Gill Sans MT";
}

.start-screen__title h1 small {
  display: block;
  font-size: 50px;
}

.start-screen__title h1 img {
  max-width: 86%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .start-screen__title h1 {
    font-size: 62px;
  }

  .start-screen__title h1 small {
    font-size: 31px;
  }
}

@media (max-width: 760px) {
  .start-screen__title h1 {
    font-size: 42px;
  }

  .start-screen__title h1 small {
    font-size: 21px;
  }
}

.object {
  display: block;
  position: relative;
  border-bottom: 8px solid #a36767;
}

.object__item {
  background-color: #eff8f7;
  padding: 16px 0 52px;
}

.object__item:nth-of-type(even) {
  background-color: #fff;
}

.object__item__title {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  color: #776c6c;
  margin-bottom: 28px;
}

.object__item__text {
  display: block;
  margin-bottom: 26px;
}

.object__item__text p {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: #776c6c;
  margin-bottom: 20px;
}

.object__btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 190px;
  height: 38px;
  line-height: 38px;
  background-color: #a36767;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  padding: 0 24px;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.object__btn:hover {
  background-color: #865151;
}

.object__btn__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}

.object__slider {
  display: block;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.object__slider__image {
  width: auto;
}

.object__slider__image img {
  height: 506px;
}

@media (max-width: 800px) {
  .object__slider__image img {
    height: 320px;
  }
}

.object__slider__control {
  z-index: 4;
  left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d5cee0;
  background-color: transparent;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  outline: none !important;
}

@media (max-width: 800px) {
  .object__slider__control {
    left: 10px;
  }
}

.object__slider__control svg {
  fill: #eff8f7;
  margin-left: 2px;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.object__slider__control_next {
  left: inherit;
  right: 32px;
}

@media (max-width: 800px) {
  .object__slider__control_next {
    right: 10px;
    left: inherit;
  }
}

.object__slider__control_next svg {
  margin-left: inherit;
  margin-right: 4px;
}

.object__slider__control:hover {
  background-color: #d5cee0;
}

.object__slider__control:hover svg {
  fill: #a36767;
}

.map {
  display: block;
  position: relative;
  width: 100%;
  height: 525px;
}

.ancor {
  position: absolute;
  top: 0;
}

.sc-AxhCb.edbAfQ.styles-save-button__3LgFL.styles-open-form__24xen.styles-open-form-center__cA9lv {
  border-radius: 3px !important;
}

.prices {
  display: block;
  position: relative;
  padding-top: 35px;
}

.prices__stikers {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 30px;
}

.prices__stikers__item {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  margin-bottom: 10px;
  line-height: 50px;
  padding: 0 20px;
  margin-right: 35px;
  font-weight: 500;
  font-size: 16px;
  color: #a36767;
  background: #f9f9f9;
  border-radius: 4px;
}

.prices__stikers__item:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 920px) {
  .prices__stikers__item {
    margin: 0 15px 10px !important;
  }
}

@media screen and (max-width: 620px) {
  .prices__stikers__item {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.prices__block {
  display: block;
  position: relative;
  padding: 60px 0;
}

.prices__block:nth-of-type(even) {
  background-color: #f9f9f9;
}

.prices__block__title {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #776c6c;
}

.prices__block__middle {
  background-color: #fff;
  padding: 46px 0;
  background-image: url("../img/branches.png");
  background-image: -webkit-image-set(url("../img/branches.webp") 1x);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.prices__block__text {
  display: block;
  position: relative;
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
}

.prices__block__text p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 15px;
  color: #776c6c;
}

.prices__block__text p:last-of-type {
  margin-bottom: 0;
}

.prices__block__text:first-of-type {
  margin-bottom: 40px;
}

.prices__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.prices__table td,
.prices__table th {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 8px 20px;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #776c6c;
}

.prices__table td:first-of-type,
.prices__table th:first-of-type {
  text-align: left;
}

@media screen and (max-width: 620px) {
  .prices__table {
    border: 0;
  }

  .prices__table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    display: none;
  }

  .prices__table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  .prices__table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
    min-height: 40px;
  }

  .prices__table td:before {
    /*
          * aria-label has no advantage, it won't be read inside a table
          content: attr(aria-label);
          */
    content: attr(data-label);
    float: left;
    font-weight: 700;
    text-transform: uppercase;
  }

  .prices__table td:last-child {
    border-bottom: 0;
  }

  .prices__table td:first-of-type {
    text-align: right;
  }
}

.marabu-new-year {
  display: block;
  position: relative;
  padding: 50px 0 140px;
  background-image: url("../img/newYear/newYearBg.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.marabu-new-year__image {
  display: block;
  width: 100%;
  margin: 0 auto 48px;
}

.marabu-new-year__image img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.marabu-new-year h3 {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.marabu-new-year__box {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9dddd;
  margin-bottom: 16px;
}

.marabu-new-year__box_last {
  border-bottom: none;
}

.marabu-new-year__box__separator {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.marabu-new-year__box__separator svg {
  max-width: 100%;
}

.marabu-new-year__box p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
}

.marabu-new-year__box p strong {
  font-weight: 500;
  color: #a36767;
}

.marabu-new-year__variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #e9dddd;
  margin-bottom: 16px;
}

.marabu-new-year__variants_prices {
  border-bottom: none;
}

.marabu-new-year__variants__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  padding-bottom: 16px;
}

@media (max-width: 600px) {
  .marabu-new-year__variants__column {
    width: 100%;
  }
}

.marabu-new-year__variants h4 {
  display: block;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.marabu-new-year__variants__label {
  display: block;
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #676767;
}

.marabu-new-year__variants__price {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.marabu-new-year__variants__item {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
}

.marabu-new-year__variants__box {
  display: block;
  margin-bottom: 16px;
}

.marabu-new-year__date {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}

.marabu-new-year__desc {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #676767;
}

.marabu-new-year__desc strong {
  font-weight: 500;
  color: #a36767;
}

.marabu-new-year__menu {
  color: #a36767;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.marabu-new-year__menu:hover {
  text-decoration: none;
}

.marabu-new-year__menu__wrap {
  display: block;
  margin-top: 16px;
}

.callback-modal {
  position: fixed;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  display: none;
}

.callback-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.callback-modal__overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.callback-modal__content {
  width: 400px;
  background-color: #fff;
  border-radius: 20px;
  padding: 24px 16px;
  z-index: 2;
  max-width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.callback-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}

.callback-modal h3 {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 28px;
}

.callback-modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.callback-modal__form__input {
  width: 100%;
}

.callback-modal__form__input input,
.callback-modal__form__input textarea {
  width: 100%;
  border-radius: 4px;
  resize: none;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #a36767;
}

.callback-modal__form__input input {
  height: 38px;
  line-height: 38px;
}

.callback-modal__form__input textarea {
  line-height: 1.2;
  height: 80px;
  padding-top: 6px;
}

.callback-modal__form__input button {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/*# sourceMappingURL=style.css.map */
