*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 100px;
}

@media (max-width: 1023.9999px) {
  html {
    scroll-padding: 0;
  }
}

body {
  min-width: 320px;
  background-color: #fff;
  color: #27313A;
  font-family: "Rubik", sans-serif;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1320px;
}

.icon {
  width: 40px;
  height: 40px;
  display: block;
  background: #FF5E78 no-repeat center;
  border-radius: 8px;
  color: #ffffff;
  text-indent: -9999999px;
  overflow: hidden;
}

.icon_whatsapp {
  background-image: url(img/icon/whatsapp.svg);
}

.icon_facebook {
  background-image: url(img/icon/facebook.svg);
}

.icon_instagram {
  background-image: url(img/icon/instagram.svg);
}

.icon_telegram {
  background-image: url(img/icon/telegram.svg);
}

.icon2 {
  width: 29px;
  height: 29px;
  display: inline-block;
  background: no-repeat center;
  background-size: contain;
}

.icon2_phone {
  background-image: url(img/icon/phone.svg);
}

.logo {
  width: 264px;
  height: 50px;
  display: block;
  background: no-repeat center left;
  background-size: contain;
}

.logo_light {
  background-image: url("img/logo-light.svg");
}

.logo:not(.logo_light) {
  background-image: url("img/logo.svg");
}

@media (max-width: 1023.9999px) {
  .logo_in-header {
    width: 137px;
    height: 26px;
    background-image: url("img/logo-light.svg") !important;
  }
}

.nav__list {
  margin: 0 -20px;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav__item {
  padding-left: 20px;
  padding-right: 20px;
}

.nav__link {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #27313A;
  text-decoration: none;
}

.nav__link::before {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  margin-top: 6px;
  width: 100%;
  height: 2px;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  background-color: #FF5E78;
  pointer-events: none;
  content: '';
}

@media (min-width: 1024px) {
  .nav__link:hover::before {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.nav-contacts {
  margin: 0;
  padding: 50px 0 0;
  font-size: 24px;
  line-height: 28px;
  list-style: none;
}

.nav-contacts::before {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 400px;
  height: 380px;
  background: url("img/nav-bg.svg") no-repeat center;
  content: '';
}

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

.nav-contacts__item + .nav-contacts__item {
  margin-top: 30px;
}

.nav-contacts__link {
  color: #ffffff;
  font-size: 24px;
  line-height: 28px;
  text-decoration: none;
  width: 100%;
}

.nav-contacts__socials {
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

@media (max-width: 1023.9999px) {
  .nav-contacts {
    display: block !important;
  }
}

@media (max-width: 1023.9999px) {
  .nav {
    position: absolute;
    right: 0;
    top: 50px;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    padding: 32px 15px 60px;
    border-top: 1px solid #ffffff;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: #27313A;
    opacity: 0;
    text-align: center;
    -webkit-transition: ease-out .2s;
    transition: ease-out .2s;
    overflow-x: hidden;
    overflow-y: auto;
    will-change: transform, opacity;
  }
  .nav__container {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav__link {
    padding: 8px 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 28px;
  }
  .nav--active {
    -webkit-transform: scale(1, 1) !important;
            transform: scale(1, 1) !important;
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .nav {
    -webkit-transform: initial !important;
            transform: initial !important;
  }
}

.nav-toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  border: none;
  width: 32px;
  height: 32px;
  background: none;
  text-indent: -999999px;
  overflow: hidden;
}

.nav-toggle-btn::before, .nav-toggle-btn::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background-color: #C4C4C4;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
  content: '';
}

.nav-toggle-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #C4C4C4;
  border-width: 2px 0;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
}

.nav-toggle-btn--active::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle-btn--active::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle-btn--active span {
  -webkit-transform: translate(-50%, -50%) scale(0, 1);
          transform: translate(-50%, -50%) scale(0, 1);
}

@media (min-width: 1024px) {
  .nav-toggle-btn {
    display: none;
  }
}

@media (max-width: 1023.9999px) {
  .html--nav-active, .html--nav-active body {
    overflow: hidden;
  }
}

.socials {
  margin: 0 -10px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.socials__item {
  padding: 0 10px;
}

.btn {
  padding: 1px 38px 0;
  border: none;
  background: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 59px;
  -webkit-transition: linear .15s;
  transition: linear .15s;
  will-change: background-color;
}

.btn_default {
  background-color: #27313A;
  color: #ffffff;
}

.btn_default:hover {
  background-color: #FF5E78;
}

.btn_reverse {
  background-color: #FF5E78;
  color: #ffffff;
}

.btn_reverse:hover {
  background-color: #27313A;
}

.btn_block {
  width: 100%;
  display: block;
}

.btn-icon {
  position: relative;
  padding: 1px 15px 0 85px;
  border: none;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  color: #808080;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.btn-icon::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70px;
  height: 70px;
  content: '';
}

.btn-icon_play::before {
  background: url("img/icon/play.svg") no-repeat center;
}

.btn-icon_location::before {
  background: url("img/icon/location.svg") no-repeat center;
}

.section-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
}

@media (max-width: 1179.9999px) {
  .section-title {
    font-size: 24px;
    line-height: 28px;
  }
}

.form-group {
  position: relative;
  padding-bottom: 20px;
}

.form-group__error {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 100%;
  color: #FF5E78;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-group--has-error .form-control {
  border-color: #FF5E78 !important;
}

.form-control {
  padding: 1px 30px 0;
  border: 1px solid;
  width: 100%;
  border-radius: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: inherit;
  line-height: 47px;
}

.form-control_dark {
  border-color: #38424A;
  background-color: #38424A;
  color: #ffffff;
}

.form-control:not(.form-control_dark) {
  border-color: #EBEBEB;
  background-color: #EBEBEB;
  color: #27313A;
}

.form-control_large {
  line-height: 57px;
}

.form-icon-success {
  position: relative;
  margin: 0 auto;
  width: 180px;
  height: 180px;
  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;
  -webkit-filter: url(#requestSuccessFilter);
          filter: url(#requestSuccessFilter);
}

.form-icon-success::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60px;
  height: 58px;
  background: url("img/callback/success.svg") no-repeat center;
  content: '';
}

.form-icon-success__bg {
  content: "";
  background: #62E8A9;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
}

.form-icon-success .left, .form-icon-success .right {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  background: #62E8A9;
  -webkit-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
  top: 50%;
  margin-top: -12px;
  z-index: -2;
}

.form-icon-success .left.left, .form-icon-success .right.left {
  left: 0;
}

.form-icon-success .left.right, .form-icon-success .right.right {
  right: 0;
}

.form-icon-error {
  position: relative;
  margin: 0 auto;
  width: 180px;
  height: 180px;
  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;
  background-color: #FF5E78;
  border-radius: 100%;
}

.form-icon-error::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: url("img/callback/error.svg") no-repeat center;
  content: '';
}

.svg-filters {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.app-header {
  z-index: 5;
  position: fixed;
  left: 0;
  top: 0;
  border-bottom: 1px solid #f3f8fc;
  width: 100%;
  background-color: #ffffff;
}

.app-header__row {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1023.9999px) {
  .app-header__row {
    height: 50px;
  }
}

.app-header__logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.app-header__contacts {
  padding-left: 40px;
}

@media (max-width: 1023.9999px) {
  .app-header__contacts {
    display: none;
  }
}

@media (max-width: 1023.9999px) {
  .app-header {
    position: relative;
    background-color: #27313A;
  }
}

.app-main {
  padding-top: 100px;
}

@media (max-width: 1023.9999px) {
  .app-main {
    padding-top: 0;
  }
}

.app-footer {
  padding: 40px 0 20px;
  background-color: #27313A;
  color: #ffffff;
}

@media (min-width: 840px) {
  .app-footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .app-footer__main {
    width: 330px;
  }
}

@media (max-width: 839.9999px) {
  .app-footer {
    padding-top: 20px;
  }
  .app-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .app-footer__socials {
    display: none;
  }
  .app-footer__info {
    display: none;
  }
}

.home {
  z-index: 0;
  position: relative;
  padding-top: 1px;
  display: block;
  height: 687px;
}

.home::before, .home::after {
  z-index: -1;
  position: absolute;
  right: 0;
  width: 100%;
  display: block;
  content: '';
}

.home::after {
  z-index: -2;
  height: 100%;
  bottom: 0;
  background: url("img/home-2.svg") no-repeat center;
  background-position: right 10px;
}

@media (max-width: 1179.9999px) {
  .home::after {
    background-position: right bottom;
  }
}

.home::before {
  top: 50px;
  max-width: 520px;
  height: 560px;
  background: url("img/home.svg") no-repeat center;
  background-size: contain;
}

@media (max-width: 1179.9999px) {
  .home::before {
    top: 10px;
  }
}

@media (max-width: 929.9999px) {
  .home::before {
    position: static;
    margin: 40px auto 30px;
    height: 280px;
  }
}

.home__info {
  max-width: 670px;
  padding-top: 142px;
}

@media (max-width: 1179.9999px) {
  .home__info {
    max-width: 440px;
  }
}

@media (max-width: 929.9999px) {
  .home__info {
    margin: 0 auto;
    padding-top: 0;
    max-width: 430px;
    text-align: center;
  }
}

.home__title {
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 700;
  line-height: 75.84px;
}

@media (max-width: 1179.9999px) {
  .home__title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
}

.home__description {
  max-width: 550px;
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 28.44px;
}

@media (max-width: 1179.9999px) {
  .home__description {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 21px;
  }
}

.home__introtext {
  margin: 15px 0 0;
  color: #3AC2ED;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

@media (max-width: 1179.9999px) {
  .home__introtext {
    margin-top: 10px;
  }
}

@media (max-width: 1179.9999px) {
  .home {
    height: 570px;
  }
}

@media (max-width: 929.9999px) {
  .home {
    padding-bottom: 40px;
    height: auto;
  }
}

.aboutus {
  position: relative;
  padding: 100px 0 50px;
}

.aboutus::before {
  position: absolute;
  right: 735px;
  top: 100px;
  width: 555px;
  height: 310px;
  background: url("img/aboutus.svg") no-repeat center;
}

@media (min-width: 930px) {
  .aboutus::before {
    content: '';
  }
}

@media (max-width: 1179.9999px) {
  .aboutus::before {
    right: calc(50% + 30px);
    top: 20px;
  }
}

.aboutus__info {
  margin-left: auto;
  max-width: 630px;
}

@media (max-width: 1179.9999px) {
  .aboutus__info {
    max-width: 50%;
  }
}

@media (max-width: 929.9999px) {
  .aboutus__info {
    margin: 0 auto;
    max-width: 344px;
    text-align: center;
  }
}

.aboutus__title {
  position: relative;
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 37.92px;
}

@media (max-width: 1179.9999px) {
  .aboutus__title {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 929.9999px) {
  .aboutus__title {
    margin-bottom: 242px;
  }
  .aboutus__title::before {
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    width: 100%;
    height: 192px;
    background: url("img/aboutus.svg") no-repeat center;
    background-size: contain;
    content: '';
  }
}

.aboutus__description {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 28.44px;
}

@media (max-width: 1179.9999px) {
  .aboutus__description {
    font-size: 18px;
    line-height: 21px;
  }
}

@media (max-width: 1179.9999px) {
  .aboutus {
    min-height: 310px;
  }
}

@media (max-width: 929.9999px) {
  .aboutus {
    padding: 40px 0;
  }
  .aboutus__break {
    display: none;
  }
}

.benefits {
  z-index: 0;
  position: relative;
  padding: 100px 0 95px;
  background-color: #DEF0FC;
  overflow: hidden;
}

.benefits::before, .benefits::after {
  z-index: -1;
  position: absolute;
  background: no-repeat center;
}

.benefits::before {
  left: 0;
  top: 0;
  width: 920px;
  height: 670px;
  background-image: url("img/benefits/shape-1.svg");
  content: '';
}

.benefits::after {
  left: 40px;
  bottom: 40px;
  width: 400px;
  height: 380px;
  background-image: url("img/benefits/shape-2.svg");
}

@media (min-width: 1180px) {
  .benefits::after {
    content: '';
  }
}

.benefits-section {
  padding: 50px 0;
}

@media (max-width: 1179.9999px) {
  .benefits-section {
    padding: 0;
  }
}

.benefits__inner {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1040px;
}

@media (min-width: 1180px) {
  .benefits__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1180px) {
  .benefits__info {
    min-width: 440px;
  }
}

.benefits__title {
  margin: 0 0 30px;
}

@media (min-width: 1180px) {
  .benefits__title {
    max-width: 340px;
  }
}

@media (max-width: 1179.9999px) {
  .benefits-btn_first {
    display: none;
  }
}

.benefits-btn_last {
  margin-top: 10px;
}

@media (min-width: 1180px) {
  .benefits-btn_last {
    display: none;
  }
}

.benefits__list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.benefits-list {
  margin: 0 -15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.benefits-list__item {
  padding: 0 15px;
  width: 50%;
}

@media (max-width: 759.9999px) {
  .benefits-list__item {
    width: 100%;
  }
}

@media (max-width: 1179.9999px) {
  .benefits-list__item {
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (min-width: 1180px) {
  .benefits-list__item:nth-child(n+3) {
    margin-top: 50px;
  }
}

@media (max-width: 1179.9999px) {
  .benefits-list__inner {
    margin: 0 auto;
    max-width: 350px;
  }
}

.benefits-list-icon {
  margin: 0 0 15px;
  width: 80px;
  height: 80px;
  background: #fff no-repeat center;
  border-radius: 25px;
}

.benefits-list-icon_book {
  background-image: url("img/benefits/book.svg");
}

.benefits-list-icon_message {
  background-image: url("img/benefits/message.svg");
}

.benefits-list-icon_aim {
  background-image: url("img/benefits/aim.svg");
}

.benefits-list-icon_alphabet {
  background-image: url("img/benefits/alphabet.svg");
}

@media (max-width: 1179.9999px) {
  .benefits-list-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.benefits-list__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

@media (max-width: 1179.9999px) {
  .benefits-list__title {
    font-size: 18px;
    line-height: 21px;
  }
  .benefits-list__title br {
    display: none;
  }
}

.benefits-list__description {
  margin: 0;
  color: #404040;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}

@media (max-width: 1179.9999px) {
  .benefits-list__description {
    font-size: 14px;
    line-height: 17px;
  }
}

@media (max-width: 1179.9999px) {
  .benefits {
    padding-top: 40px;
    padding-bottom: 46px;
    text-align: center;
  }
}

@media (max-width: 1319.9999px) {
  .benefits {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (min-width: 1320px) {
  .benefits {
    border-radius: 100px;
  }
}

.methods {
  padding: 50px 0;
}

.methods__title {
  margin: 0 0 40px;
  text-align: center;
}

.methods-list {
  z-index: 0;
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1252px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  text-align: center;
}

.methods-list::before {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 75px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 969px;
  height: 100px;
  background: url("img/methods.svg") no-repeat center;
}

@media (min-width: 1280px) {
  .methods-list::before {
    content: '';
  }
}

.methods-list__item {
  width: 25%;
}

.methods-list__item:nth-child(2n+1) {
  padding-top: 100px;
}

.methods-list__item:nth-child(1) .methods-list__number {
  background-color: #FF5E78;
}

.methods-list__item:nth-child(2) .methods-list__number {
  background-color: #FBCA6E;
}

.methods-list__item:nth-child(3) .methods-list__number {
  background-color: #DB8FF3;
}

.methods-list__item:nth-child(4) .methods-list__number {
  background-color: #62E8A9;
}

@media (max-width: 1279.9999px) {
  .methods-list__item {
    width: 50%;
  }
  .methods-list__item:nth-child(2n+1) {
    padding-top: 50px;
  }
}

@media (max-width: 759.9999px) {
  .methods-list__item {
    width: 100%;
  }
  .methods-list__item + .methods-list__item {
    margin-top: 30px;
  }
  .methods-list__item:nth-child(2n+1) {
    padding-top: 0;
  }
}

@media (max-width: 1279.9999px) {
  .methods-list__inner {
    margin: 0 auto;
    max-width: 350px;
  }
}

.methods-list__number {
  margin: 0 auto 20px;
  width: 150px;
  color: #ffffff;
  border-radius: 40px;
  font-size: 76px;
  font-weight: 700;
  line-height: 150px;
  text-align: center;
}

@media (min-width: 1180px) {
  .methods-list__number {
    width: 130px;
    border-radius: 36px;
    font-size: 64px;
    line-height: 130px;
  }
}

.methods-list__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

@media (min-width: 1180px) {
  .methods-list__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 1279.9999px) {
  .methods-list__title br {
    display: none;
  }
}

.methods-list__description {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}

@media (min-width: 1180px) {
  .methods {
    padding: 40px 0;
  }
}

.prices {
  z-index: 0;
  position: relative;
}

.prices-section {
  padding: 50px 0;
}

@media (max-width: 891.9999px) {
  .prices-section {
    padding-bottom: 0;
  }
}

.prices-annotation {
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 90px 15px;
  max-width: 820px;
  text-align: center;
}

@media (max-width: 1179.9999px) {
  .prices-annotation {
    padding: 30px;
    max-width: 460px;
  }
}

@media (max-width: 599.9999px) {
  .prices-annotation {
    max-width: 343px;
  }
}

.prices-annotation::before, .prices-annotation::after {
  z-index: -2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 90px;
}

@media (max-width: 1179.9999px) {
  .prices-annotation::before, .prices-annotation::after {
    border-radius: 30px;
  }
}

.prices-annotation::before {
  background: linear-gradient(105.66deg, #F7DFFF 0%, #96E3FB 23.27%, #FDE4B5 100%);
  content: '';
}

@media (max-width: 1179.9999px) {
  .prices-annotation::before {
    background: linear-gradient(111.72deg, #F7DFFF 0%, #96E3FB 21.3%, #FDE4B5 91.56%);
    opacity: 0.2;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
            transform: matrix(-1, 0, 0, 1, 0, 0);
  }
}

.prices-annotation::after {
  background: linear-gradient(111.72deg, #FFA9B7 0%, #EECAFA 46.68%, #D7F9E9 91.56%);
}

@media (max-width: 1179.9999px) {
  .prices-annotation::after {
    content: '';
  }
}

.prices-annotation__inner {
  margin: 0 auto;
  max-width: 660px;
}

.prices-annotation__title {
  margin: 0 auto 30px;
}

.prices-annotation__description {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 28px;
}

@media (max-width: 1179.9999px) {
  .prices-annotation__description {
    font-size: 14px;
    line-height: 17px;
  }
}

.prices-annotation__introtext {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

@media (max-width: 1179.9999px) {
  .prices-annotation__introtext {
    font-size: 18px;
    line-height: 21px;
  }
}

.prices {
  padding: 50px 0 104px;
  text-align: center;
}

@media (max-width: 1279.9999px) {
  .prices {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 891.9999px) {
  .prices {
    padding-bottom: 40px;
  }
}

.prices::before {
  z-index: -1;
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
  background-color: #F3F8FC;
  content: '';
}

@media (min-width: 1280px) {
  .prices::before {
    border-radius: 100px;
  }
}

.prices__title {
  margin: 0 0 20px;
}

@media (max-width: 1179.9999px) {
  .prices__title {
    margin-bottom: 15px;
  }
}

.prices__subtitle {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 38px;
}

@media (max-width: 1179.9999px) {
  .prices__subtitle {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 21px;
  }
}

.prices__description {
  margin: 0 auto 30px;
  max-width: 760px;
  color: #808080;
  font-size: 24px;
  line-height: 28px;
}

@media (max-width: 1179.9999px) {
  .prices__description {
    max-width: 350px;
    font-size: 14px;
    line-height: 17px;
  }
}

.prices-tab {
  z-index: 0;
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 663.9999px) {
  .prices-tab {
    display: block;
  }
}

.prices-tab__container {
  position: relative;
  overflow: hidden;
}

.prices-tab__bg {
  position: absolute;
  left: 2px;
  top: 0;
  width: 220px;
  height: 100%;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
}

.prices-tab__bg::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 8px);
  background-color: #3AC2ED;
  border-radius: 14px;
  content: '';
}

@media (max-width: 663.9999px) {
  .prices-tab__bg {
    display: none;
  }
}

.prices-tab__inner {
  margin: 0;
  padding: 0;
  border: 2px solid #DEF0FC;
  background-color: #fff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.prices-tab-item {
  border-radius: 16px;
}

@media (max-width: 663.9999px) {
  .prices-tab-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media (min-width: 663.9999px) {
  .prices-tab-item {
    width: 220px;
  }
}

.prices-tab-item--active {
  color: #fff;
}

@media (max-width: 663.9999px) {
  .prices-tab-item--active .prices-tab__btn {
    background-color: #3AC2ED;
  }
}

@media (min-width: 892px) {
  .prices-tab-item_single {
    display: none;
  }
}

@media (max-width: 891.9999px) {
  .prices-tab-item_double {
    display: none;
  }
}

.prices-tab__btn {
  z-index: 0;
  position: relative;
  padding: 1px 0 0;
  border: none;
  width: 100%;
  display: block;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 59px;
  -webkit-transition: linear .15s color;
  transition: linear .15s color;
  will-change: color;
}

@media (max-width: 663.9999px) {
  .prices-tab__btn {
    border: 2px solid #ffffff;
    border-radius: 14px;
    font-size: 14px;
    line-height: 51px;
  }
}

.prices-content {
  margin: 0 auto;
  max-width: 1070px;
  overflow: hidden;
}

.prices-content__inner {
  margin: 0 -15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
}

.prices-content-item {
  padding: 0 15px;
  min-width: 50%;
}

@media (max-width: 891.9999px) {
  .prices-content-item {
    min-width: 100%;
  }
}

.prices-content-item__box {
  position: relative;
  margin: 0 auto;
  padding: 90px 0;
  border: 2px solid #DEF0FC;
  background-color: #fff;
  border-radius: 90px;
}

@media (max-width: 1129.9999px) {
  .prices-content-item__box {
    padding: 50px 0;
    border-radius: 50px;
  }
}

@media (max-width: 891.9999px) {
  .prices-content-item__box {
    width: 350px;
    max-width: 100%;
  }
}

.prices-content__discount {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px 15px;
  width: 123px;
  height: 123px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: right;
  background: url("img/prices-discount.svg") no-repeat right top;
}

@media (max-width: 891.9999px) {
  .prices-content__discount {
    padding: 10px;
    width: 90px;
    height: 90px;
    background-size: contain;
  }
}

.prices-content__title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
}

@media (max-width: 1129.9999px) {
  .prices-content__title {
    font-size: 24px;
    line-height: 28px;
  }
}

.prices-content__subtitle {
  margin: 0 0 40px;
  color: #808080;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

@media (max-width: 1129.9999px) {
  .prices-content__subtitle {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 17px;
  }
}

.prices-content__price {
  margin: 0 0 30px;
  font-size: 64px;
  font-weight: 500;
  line-height: 76px;
}

@media (max-width: 1129.9999px) {
  .prices-content__price {
    font-size: 44px;
    line-height: 52px;
  }
}

.prices-content__description {
  margin: 0 auto;
  max-width: 320px;
  min-height: 142px;
  font-size: 24px;
  line-height: 28px;
}

@media (max-width: 1129.9999px) {
  .prices-content__description {
    font-size: 18px;
    line-height: 21px;
    min-height: 106px;
  }
}

.certs-section {
  padding: 50px 0;
}

@media (max-width: 1179.9999px) {
  .certs-section {
    padding: 40px 0;
  }
}

.certs__title {
  margin: 0 0 10px;
  text-align: center;
}

@media (max-width: 891.9999px) {
  .certs__title {
    margin-bottom: 30px;
  }
}

.certs-list {
  margin: 0 -15px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 891.9999px) {
  .certs-list {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (max-width: 1179.9999px) {
  .certs-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: hidden;
  }
}

.certs-list__item {
  width: calc(100% / 3);
  padding: 30px 15px 0;
}

@media (max-width: 1179.9999px) {
  .certs-list__item {
    min-width: calc(100% / 3.1);
  }
}

@media (max-width: 891.9999px) {
  .certs-list__item {
    min-width: calc(100% / 2.1);
    padding: 0 5px;
  }
}

@media (max-width: 599.9999px) {
  .certs-list__item {
    min-width: calc(100% / 1.1);
  }
}

.certs-list__btn {
  position: relative;
  border: 10px solid #DEF0FC;
  width: 100%;
  height: 290px;
  display: block;
  background: #fff no-repeat center;
  background-size: cover;
  border-radius: 60px;
  overflow: hidden;
}

.certs-list__btn::before, .certs-list__btn::after {
  position: absolute;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
  content: '';
}

.certs-list__btn::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #27313A;
  opacity: 0;
}

.certs-list__btn::after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  width: 80px;
  height: 80px;
  background: url("img/gallery/loop.svg") no-repeat center;
  opacity: 0;
}

.certs-list__btn:hover::before {
  opacity: 0.6;
}

.certs-list__btn:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

@media (max-width: 1179.9999px) {
  .certs-list__btn {
    border-width: 5px;
    height: auto;
    border-radius: 26px;
  }
  .certs-list__btn::before {
    position: static;
    display: block;
    height: auto;
    padding-top: calc(10000% / 16 / 9);
  }
}

.certs-list__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.contacts {
  padding: 100px 0;
  background: url("img/contacts.svg") no-repeat center;
  background-size: cover;
  color: #ffffff;
}

@media (max-width: 919.9999px) {
  .contacts {
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 539.9999px) {
  .contacts {
    background: #27313A;
  }
}

.contacts-section {
  padding-top: 50px;
}

.contacts-row {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 919.9999px) {
  .contacts-row {
    display: block;
  }
}

.contacts-row__col {
  padding: 0 15px;
  width: 50%;
}

@media (max-width: 919.9999px) {
  .contacts-row__col {
    width: 100%;
  }
}

.contacts__title {
  margin: 0 0 20px;
}

@media (max-width: 919.9999px) {
  .contacts__title {
    margin-bottom: 30px;
  }
}

.contacts__description {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 21px;
}

@media (max-width: 919.9999px) {
  .contacts__description {
    margin: 0 auto 20px;
    max-width: 450px;
  }
}

@media (max-width: 919.9999px) {
  .contacts__btn-container {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contacts-form-row {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contacts-form-row__col {
  padding: 0 15px;
  width: 50%;
}

@media (max-width: 539.9999px) {
  .contacts-form-row__col {
    width: 100%;
  }
  .contacts-form-row__col:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.contacts-form__introtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  font-size: 14px;
  line-height: 17px;
}

@media (max-width: 1179.9999px) {
  .contacts-form__introtext {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 539.9999px) {
  .contacts-form__introtext {
    margin: 10px auto 0;
    max-width: 290px;
    height: auto;
    display: block;
    text-align: center;
  }
}

.contacts-form-results {
  display: none;
}

.contacts-form-results__text {
  margin: 0 auto 20px;
  max-width: 420px;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
}

.contacts-form-results__text a {
  color: inherit;
}

.footer__logo {
  margin-bottom: 30px;
}

@media (max-width: 839.9999px) {
  .footer__logo {
    margin-bottom: 0;
  }
}

.footer-info {
  width: 220px;
}

.footer-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-info__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.footer-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-info-list__item {
  font-size: 18px;
  line-height: 21px;
}

.footer-info-list__item + .footer-info-list__item {
  margin-top: 10px;
}

.footer-info-list__link {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.footer-info-list__link:hover {
  text-decoration: underline;
}

.footer__copyright {
  margin: 60px 0 0;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

@media (max-width: 839.9999px) {
  .footer__copyright {
    margin-top: 30px;
    font-size: 12px;
    line-height: 14px;
  }
}

.fixed-control {
  z-index: 6;
  position: fixed;
  bottom: 20px;
  width: 100%;
}

.fixed-control__inner {
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1023.9999px) {
  .fixed-control {
    display: none;
  }
}

.fixed__main-btn {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  border: none;
  width: 100px;
  height: 100px;
  background: #FF5E78;
  border-radius: 100%;
  font-family: inherit;
  text-indent: -999999px;
  -webkit-filter: url(#fixedMainBtnFilter);
          filter: url(#fixedMainBtnFilter);
}

.fixed__main-btn::before, .fixed__main-btn::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '';
}

.fixed__main-btn::before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 100%;
  background-color: #FF5E78;
  opacity: 0.4;
}

.fixed__main-btn::after {
  width: 100%;
  height: 100%;
  background: url("img/logo-solo_light.svg") no-repeat center;
}

.fixed__main-btn svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fixed__main-btn span {
  position: relative;
  z-index: 1;
}

.fixed-list {
  z-index: -2;
  position: absolute;
  right: 50px;
  bottom: 50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  padding: 0;
  width: 0px;
  height: 60px;
  list-style: none;
  overflow: hidden;
  will-change: width;
}

.fixed-list__inner {
  position: absolute;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  padding-right: 80px;
  -webkit-transition: ease-out .2s;
  transition: ease-out .2s;
  will-change: transform;
}

.fixed-list__container {
  margin: 0 -10px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.fixed-list__item {
  padding: 0 10px;
}

.fixed-list-btn {
  padding: 1px 0 0;
  border: none;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  color: #ffffff;
  border-radius: 30px;
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  white-space: nowrap;
}

.fixed-list-btn_default {
  padding-left: 40px;
  padding-right: 40px;
  background-color: #3AC2ED;
}

.fixed-list-btn_icon {
  position: relative;
  width: 60px;
  background-color: #62E8A9;
  text-align: center;
  text-indent: -999999px;
  overflow: hidden;
}

.fixed-list-btn__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fixed-list_active .fixed-list__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.html_modal, .html_modal body {
  overflow: hidden !important;
}

.modal {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.modal__bg {
  position: fixed;
  left: 0;
  top: 0;
  border: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: ease-out .2;
  transition: ease-out .2;
  will-change: opacity;
}

.modal__container {
  position: relative;
  margin: 40px auto;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  will-change: transform, opacity;
}

@media (max-width: 787.9999px) {
  .modal__container {
    margin-top: 20px;
  }
}

.modal__header {
  border-bottom: 1px solid #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #ffffff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.modal__logo {
  width: 60px;
  background: url("img/logo-solo.svg") no-repeat center;
}

.modal__title {
  margin: 0;
  border: 1px solid #EBEBEB;
  border-width: 0 1px;
  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;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal__close {
  padding: 0;
  position: relative;
  border: none;
  width: 60px;
  height: 60px;
  display: block;
  background: none;
  text-indent: -9999px;
  overflow: hidden;
}

.modal__close::before, .modal__close::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30%;
  height: 2px;
  background-color: #27313A;
  content: '';
}

.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__body {
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
}

.modal:not(.modal_wide) .modal__container {
  max-width: 440px;
}

.modal_wide .modal__container {
  max-width: 800px;
}

.modal_show {
  display: block;
}

.modal_active .modal__bg {
  opacity: 0.33;
}

.modal_active .modal__container {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.callback {
  padding: 30px 40px 42px;
}

.callback__description {
  margin: 0 0 30px;
  text-align: center;
}

.callback__description a {
  color: #FF5E78;
}

.callback-form {
  padding: 0 28px;
}

.callback-form__introtext {
  margin: 10px 0 0;
  color: #808080;
  font-size: 12px;
  line-height: 14px;
}

.callback-form__introtext a {
  color: inherit;
  text-decoration: none;
}

.callback-form__introtext a:hover {
  text-decoration: underline;
}

.gallery {
  position: relative;
  padding: 0 10px 10px;
}

.gallery-arrow {
  z-index: 1;
  position: absolute;
  top: 0;
  border: none;
  width: 90px;
  height: 100%;
  background: none;
  text-indent: -99999px;
  overflow: hidden;
}

.gallery-arrow svg {
  position: absolute;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-arrow path {
  stroke: #27313A;
  opacity: 0.33;
  -webkit-transition: linear .15s;
  transition: linear .15s;
  will-change: opacity, stroke;
}

.gallery-arrow_prev {
  left: 10px;
}

.gallery-arrow_next {
  right: 10px;
}

.gallery-arrow_next svg {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

.gallery-arrow:hover path {
  opacity: 1;
  stroke: #FF5E78;
}

.gallery-list {
  overflow: hidden;
}

.gallery-list__inner {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  will-change: transform;
}

.gallery-list__item {
  position: relative;
  min-width: 100%;
  height: 530px;
  background: no-repeat center;
  background-size: contain;
}

.gallery-list__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.map {
  padding: 0 10px 10px;
}

.map__iframe {
  width: 100%;
  height: 530px;
  display: block;
  border: none;
  border-radius: 0 0 26px 26px;
}
