@charset "UTF-8";
/* FONT SourceSansPro */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
/* Single property transition mixin */
/*--------- font-face ---------*/
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap");
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-width: 320px;
  overflow-x: hidden;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

html, body {
  height: 100%;
}

audio,
video {
  display: block;
}

section {
  max-width: 100%;
}

a {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a img {
  border: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

input,
textarea,
select {
  vertical-align: middle;
}

form, fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  width: 100%;
}

input[type=search],
input[type=text],
input[type=file],
input[type=password],
input[type=submit],
input[type=email],
input[type=tel],
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
}

input[type=email] {
  box-shadow: none;
  -webkit-box-shadow: none;
}

input[type=image] {
  padding: 0;
  border: none;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=email]::-webkit-inner-spin-button,
input[type=email]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

p, span, label, h1, h2, h3, h4, h5, h6, b, strong, i, em {
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  margin: 0;
}

div {
  word-wrap: break-word;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

iframe {
  border: none;
}

input::-ms-clear {
  display: none;
}

.btn--full-reset {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.text-clip {
  white-space: nowrap; /* Отменяем перенос текста */
  overflow: hidden; /* Обрезаем содержимое */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.grid {
  display: grid;
}

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

.bg-cover-center__mod {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.txt-uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.disable {
  pointer-events: none !important;
}

.hand {
  cursor: pointer !important;
}

.input__container {
  position: relative;
  margin-bottom: 30px;
}
.input__container img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}
.input__container.with_placeholder input {
  padding-right: 50px;
}
.input__container.with_placeholder label {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #82848f;
  background-color: #fff;
  padding: 0 5px;
  display: inline-block;
  left: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.input__container input {
  border-radius: 6px;
  background: #fff;
  border: 1px solid #29324c;
  font-weight: 600;
  font-size: 16px;
  height: 56px;
  width: 100%;
  padding: 18px 16px;
  font-family: "Mulish", sans-serif;
}
.input__container input::-webkit-outer-spin-button, .input__container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.input__container input::-webkit-input-placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #29324c;
  opacity: 0.4;
}
.input__container input:-moz-placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #29324c;
  opacity: 0.4;
}
.input__container input::-moz-placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #29324c;
  opacity: 0.4;
}
.input__container input:-ms-input-placeholder {
  font-weight: 600;
  font-size: 16px;
  color: #29324c;
  opacity: 0.4;
}
.input__container input:focus {
  border-color: #50bc7d;
}
.input__container label {
  position: absolute;
  display: block;
  left: 0;
  z-index: 1;
  padding-left: 16px;
  top: 18px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(41, 50, 76, 0.2509803922);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.input__container:not(.checkbox__input) label.focus {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #82848f;
  background-color: #fff;
  padding: 0 5px;
  display: inline-block;
  left: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.text-error {
  padding-top: 2px;
  margin-bottom: 0;
  color: #fb555b;
  font-size: 12px;
  line-height: 12px;
}

.select__container {
  position: relative;
  margin-bottom: 30px;
}
.select__container .current {
  border-radius: 6px;
  background: #fff;
  border: 1px solid #29324c;
  height: 56px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  color: #333747;
  font-family: "Mulish", sans-serif;
  font-weight: bold;
  padding: 17px 18px;
  position: relative;
}
.select__container .current:after {
  content: "\e001";
  font-family: "Icons";
  position: absolute;
  right: 20px;
  font-size: 7px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.select__container .current.active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.select__container label {
  position: absolute;
  top: 0px;
  left: 13px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #82848f;
  padding: 0 4px;
  background-color: #fff;
  font-size: 12px;
}
.select__container .sub-select {
  display: none;
  position: absolute;
  overflow: hidden;
  top: calc(100% + 5px);
  z-index: 10;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #29324c;
  -webkit-box-shadow: 0px 4px 12px rgba(51, 84, 114, 0.15);
          box-shadow: 0px 4px 12px rgba(51, 84, 114, 0.15);
  width: 100%;
}
.select__container .sub-select li {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #29324c;
  padding: 16px 15px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .select__container .sub-select li {
    padding: 8px 10px;
    font-size: 14px;
    line-height: 21px;
  }
}
.select__container .sub-select li.active, .select__container .sub-select li:hover {
  color: #50BC7D;
}

.checkbox__input {
  position: relative;
}
.checkbox__input.error label {
  color: #fb555b;
}
.checkbox__input input {
  display: none;
}
.checkbox__input input:checked + label:after {
  opacity: 1;
}
.checkbox__input input:checked + label:before {
  border-color: #50bc7d;
}
.checkbox__input label {
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  font-weight: normal;
  padding-left: 28px;
  position: relative;
  color: #29324C;
  top: 0;
}
.checkbox__input label:before {
  content: "";
  top: 2px;
  position: absolute;
  border-radius: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #4b5478;
}
.checkbox__input label:after {
  content: "";
  background-image: url("../images/check2.svg");
  background-position: center;
  background-size: cover;
  top: 7px;
  position: absolute;
  border-radius: 3px;
  left: 5px;
  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;
  width: 9px;
  height: 7px;
  opacity: 0;
}

html, body {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  color: #29324C;
  position: relative;
  scroll-behavior: smooth;
}

.container {
  max-width: 1520px;
  width: 100% !important;
  padding-left: 39px;
  padding-right: 39px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.content-container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
}

.blue_bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#edf2f7));
  background: -o-linear-gradient(#fff 0%, #edf2f7 100%);
  background: linear-gradient(#fff 0%, #edf2f7 100%);
}

.content img {
  display: block;
  margin: 0 auto 46px;
}
.content h1 {
  margin-bottom: 60px;
}
.content h2 {
  margin-bottom: 16px;
}
.content h4, .content h3 {
  margin-bottom: 30px;
}
.content h6, .content h5 {
  margin-bottom: 14px;
}
.content ol,
.content ul {
  margin-bottom: 32px;
}
.content li {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
}
@media only screen and (max-width: 1000px) {
  .content li {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .content li {
    font-size: 18px;
    line-height: 26px;
  }
}
.content ul li {
  position: relative;
  padding-left: 32px;
}
.content ul li:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #29324C;
}
.content ol {
  counter-reset: myCounter;
}
.content ol li {
  position: relative;
  padding-left: 20px;
}
.content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

.fancybox-active {
  overflow: hidden;
}

.slider__nav {
  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;
  margin-top: 50px;
}
.slider__nav .slick-arrow {
  width: auto;
  background-color: transparent;
  border: none;
  padding: 10px;
  margin: 0 15px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #29324C;
}
.slider__nav .slick-arrow .icon {
  width: auto;
}
.slider__nav .slick-arrow:hover {
  color: #56CF88;
}
.slider__nav .slick-arrow.slick-disabled {
  color: #707070;
}
@media only screen and (max-width: 1000px) {
  .slider__nav .slick-arrow {
    font-size: 18px;
  }
}

.text-center {
  text-align: center;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.slick-track:after, .slick-track:before {
  display: none;
}

.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.slick-slide {
  height: auto;
}

blockquote {
  border-left: 8px solid #121314;
  background-color: #F3F4FF;
  padding: 16px 24px 16px 22px;
  margin: 0 0 24px;
}

*:focus {
  outline: none !important;
}

.section_padding {
  padding: 70px 0;
}
@media only screen and (max-width: 1000px) {
  .section_padding {
    padding: 50px 0;
  }
}

h1, h2, h3, h4, h4, h6, .h1-title, .h2-title, .h3-title, .h4-title, .h5-title, .h6-title {
  display: block;
}

h1, .h1-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 133%;
}
@media only screen and (max-width: 1000px) {
  h1, .h1-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  h1, .h1-title {
    font-size: 28px;
  }
}

h2, .h2-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 133%;
}
@media only screen and (max-width: 1000px) {
  h2, .h2-title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  h2, .h2-title {
    font-size: 28px;
  }
}

h3, .h3-title {
  font-size: 34px;
  line-height: 50px;
  font-weight: 800;
}
@media only screen and (max-width: 1000px) {
  h3, .h3-title {
    font-size: 30px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  h3, .h3-title {
    font-size: 24px;
    line-height: 34px;
  }
}

h4, .h4-title {
  font-size: 28px;
  font-weight: normal;
  line-height: 120%;
}
@media only screen and (max-width: 767px) {
  h4, .h4-title {
    font-size: 20px;
  }
}

h5, .h5-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) {
  h5, .h5-title {
    line-height: 24px;
  }
}
@media only screen and (max-width: 1000px) {
  h5, .h5-title {
    font-size: 20px;
    line-height: 26px;
  }
}

h6, .h6-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
}

p {
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
}

hr {
  margin: 0;
  height: 1px;
  background-color: #DFE4E8;
  border: none;
}

.subtitle-large__mod {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .subtitle-large__mod {
    font-size: 18px;
    line-height: 28px;
  }
}

.subtitle-medium__mod {
  font-size: 14px;
  line-height: 16px;
}

.subtitle-small__mod {
  font-size: 13px;
  line-height: 16px;
}

.subtitle-large__mod,
.subtitle-medium__mod,
.subtitle-small__mod {
  display: block;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.column-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 28px;
  grid-column-gap: 28px;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  line-height: 1em;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot");
  src: url("../fonts/Icons.eot?#iefix") format("eot"), url("../fonts/Icons.woff") format("woff"), url("../fonts/Icons.ttf") format("truetype"), url("../fonts/Icons.svg#Icons") format("svg");
}
.icon-arrow:before,
.icon-bookmark:before,
.icon-heart:before,
.icon-left:before,
.icon-right:before,
.icon-star:before,
.icon-trash:before {
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-arrow:before {
  content: "\e001";
}

.icon-bookmark:before {
  content: "\e002";
}

.icon-heart:before {
  content: "\e003";
}

.icon-left:before {
  content: "\e004";
}

.icon-right:before {
  content: "\e005";
}

.icon-star:before {
  content: "\e006";
}

.icon-trash:before {
  content: "\e007";
}

header {
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 16px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 5;
}
@media only screen and (max-width: 1000px) {
  header {
    padding: 20px 39px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding: 15px 20px;
    height: auto;
  }
}

.nav__item {
  margin: 0 25px;
}
@media only screen and (max-width: 1000px) {
  .nav__item {
    margin: 0 20px;
  }
}
.nav__link {
  font-weight: bold;
  font-size: 18px;
  line-height: 34px;
  color: #29324C;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.nav__link:hover {
  color: #56CF88;
}

.header__nav {
  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;
}
@media only screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__logo {
  height: 47px;
}
.header__logo img {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    height: 31px;
  }
}
.header__link {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #29324C;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__link:hover, .header__link:active {
  color: #56CF88;
}

footer {
  background-color: #29324C;
  padding: 40px 0;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1000px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__copyright {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 20px;
  color: #b3b5bf;
}
.footer__link {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 20px;
  color: #b3b5bf;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__link:hover {
  color: #56CF88;
}
.footer__item {
  margin-left: 30px;
}
@media only screen and (max-width: 1000px) {
  .footer__item {
    margin-left: 0;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1000px) {
  .footer__nav {
    margin-bottom: 40px;
  }
}

.btn__transparent {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 26px;
  color: #29324C;
  display: inline-block;
  background-color: transparent;
  border-radius: 6px;
  border: 2px solid #29324C;
  font-family: "Mulish", sans-serif;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn__transparent:hover, .btn__transparent:active {
  color: #56CF88;
  border-color: #56CF88;
}
@media only screen and (max-width: 767px) {
  .btn__transparent {
    padding: 8px 18px;
  }
}

.btn__dark {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  padding: 16px 30px;
  color: #fff;
  display: inline-block;
  background-color: #29324C;
  border-radius: 6px;
  font-family: "Mulish", sans-serif;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn__dark:not(:disabled):hover, .btn__dark:active {
  background-color: #56CF88;
}
.btn__dark.disabled, .btn__dark:disabled {
  opacity: 0.3;
}

.btn__burger {
  display: none;
  background-color: transparent;
  border: none;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn__burger {
    display: block;
  }
}
.btn__burger span {
  display: block;
  width: 20px;
  background: #29324c;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 5px;
  -webkit-transition: 0.4s ease-in;
  -o-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  position: relative;
}
.btn__burger span:last-child {
  margin-bottom: 0;
}
.btn__burger.active span:nth-child(1) {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 7px;
}
.btn__burger.active span:nth-child(2) {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
}
.btn__burger.active span:nth-child(3) {
  top: -7px;
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
}

.modal-content {
  max-width: 860px;
  width: 100%;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #707070;
  padding: 60px 50px 0;
}
.modal-content .fancybox-close-small {
  padding: 0;
  width: 26px;
  height: 26px;
  top: 24px;
  right: 24px;
}
.modal-content .fancybox-close-small svg {
  width: 100%;
  height: 100%;
  fill: #B3B5BF;
}
.modal-content .h5-title {
  margin-bottom: 10px;
}
.modal-content p {
  font-size: 16px;
  line-height: 24px;
}
.modal-content .modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal-content .modal__row .col-6 {
  width: 50%;
}
.modal-content .modal__row .col-6 > p {
  margin-bottom: 30px;
}
.modal-content .modal__row .col-6 > .h6-title {
  margin-bottom: 20px;
}
.modal-content .modal__row .pr-20 {
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .modal-content .modal__row {
    display: block;
  }
  .modal-content .modal__row .col-6 {
    width: 100%;
  }
  .modal-content .modal__row .pr-20 {
    padding-right: 0;
  }
}
.modal-content .modal__container {
  max-width: 50%;
}
.modal-content .right-img img {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 400px;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
@media only screen and (max-width: 1000px) {
  .modal-content .right-img img {
    position: absolute;
  }
}
@media only screen and (max-width: 767px) {
  .modal-content .right-img img {
    position: static;
  }
}
@media only screen and (max-width: 1000px) {
  .modal-content {
    border-radius: 24px;
    padding: 50px 40px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-content {
    padding: 60px 24px 0px;
  }
}

.fancybox-bg {
  opacity: 1;
  background: rgba(51, 55, 71, 0.7);
}

@media only screen and (max-width: 1000px) {
  .fancybox-slide--html {
    padding: 10px 20px;
  }
  .modal-content .modal__row .pr-20 {
    margin-right: 60px;
  }
}
.requirements__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 16px;
}
.requirements__item.last {
  margin-bottom: 40px;
}
.requirements__item .h6-title {
  min-width: 80px;
  margin-right: 7px;
}
.requirements__item p span {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

.datepicker__container {
  max-width: 596px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 767px) {
  .datepicker__container {
    margin-bottom: 0;
  }
}
.datepicker__container .hidden-input {
  display: none;
}
.datepicker__container .daterangepicker {
  width: 100%;
  position: static;
  display: block !important;
}
.datepicker__container .daterangepicker .drp-calendar {
  max-width: 100%;
  width: 100%;
}

.datepicker__ui .daterangepicker.opensright:after, .datepicker__ui .daterangepicker.opensright:before {
  display: none;
}
.datepicker__ui .daterangepicker select.monthselect {
  text-align: right;
  width: 48%;
  font-size: 18px;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
}
.datepicker__ui .daterangepicker select.yearselect {
  width: 48%;
  font-weight: 800;
  text-align: left;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
}
.datepicker__ui .daterangepicker {
  border: none;
  padding: 0;
  margin: 0;
}
.datepicker__ui .daterangepicker .drp-calendar {
  padding: 0;
}
.datepicker__ui select {
  font-size: 18px;
  font-weight: 800;
  border: none;
  text-align: center;
  font-family: "Mulish", sans-serif;
}
.datepicker__ui .daterangepicker .calendar-table th {
  font-weight: bold;
  font-size: 14px;
  color: #b3b5bf;
  padding: 15px 0;
  font-family: "Mulish", sans-serif;
}
.datepicker__ui .daterangepicker .calendar-table th.available span {
  border-width: 0 3px 3px 0;
  padding: 5px;
}
.datepicker__ui .daterangepicker .calendar-table th.available:hover {
  background-color: transparent;
}
.datepicker__ui .daterangepicker .calendar-table th.available:hover span {
  border-color: #50bc7d;
}
.datepicker__ui .daterangepicker .calendar-table td {
  font-size: 18px;
  line-height: 18px;
  padding: 15px 0;
  color: #333747;
  font-weight: 800;
  position: relative;
  z-index: 1;
  font-family: "Mulish", sans-serif;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.datepicker__ui .daterangepicker .calendar-table td:before {
  content: "";
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border: 2px solid #50bc7d;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .datepicker__ui .daterangepicker .calendar-table td {
    font-size: 16px;
    padding: 10px 0;
  }
  .datepicker__ui .daterangepicker .calendar-table td:before {
    width: 38px;
    height: 38px;
  }
}
.datepicker__ui .daterangepicker .calendar-table td.off.ends {
  opacity: 0.2;
}
.datepicker__ui .daterangepicker .calendar-table td.available:hover {
  background-color: transparent;
}
.datepicker__ui .daterangepicker .calendar-table td.available:hover:before {
  opacity: 1;
}
.datepicker__ui .daterangepicker .calendar-table td.active {
  background-color: transparent;
  color: #fff;
}
.datepicker__ui .daterangepicker .calendar-table td.active:before {
  background-color: #50bc7d;
  opacity: 1;
}

.first-section {
  padding-top: 200px;
  min-height: 640px;
  position: relative;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1200px) {
  .first-section {
    min-height: 560px;
  }
}
@media only screen and (max-width: 1000px) {
  .first-section {
    min-height: 640px;
  }
}
@media only screen and (max-width: 767px) {
  .first-section {
    padding-top: 130px;
    min-height: 520px;
  }
}
.first-section .container:after {
  content: "";
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/bg.png");
  width: 1440px;
}
@media only screen and (max-width: 1000px) {
  .first-section .container:after {
    width: 1116px;
  }
}
.first-section__row {
  text-align: center;
  max-width: 82%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .first-section__row {
    max-width: 100%;
  }
}
.first-section .h1-title {
  font-size: 48px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1000px) {
  .first-section .h1-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .first-section .h1-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 40px;
  }
}

.infinity-slider {
  padding-bottom: 40px;
}
.infinity-slider .h2-title {
  max-width: 730px;
  margin: 0 auto 60px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .infinity-slider .h2-title {
    text-align: left;
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

.reviews__slider .slick-list {
  overflow: visible;
  padding-left: 45px;
}
@media only screen and (max-width: 767px) {
  .reviews__slider .slick-list {
    padding-left: 20px;
  }
}

.review__item {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 8px 20px rgba(51, 84, 114, 0.15);
          box-shadow: 0px 8px 20px rgba(51, 84, 114, 0.15);
  width: 310px;
  margin-right: 50px;
  border-radius: 14px;
}
@media only screen and (max-width: 767px) {
  .review__item {
    width: 250px;
    padding: 26px;
  }
}
.review__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.review__name {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 800;
}
.review__rating {
  color: #fcca46;
  font-size: 14px;
  margin-bottom: 20px;
}
.review__description {
  font-style: italic;
  font-size: 14px;
  line-height: 24px;
}

.photo__author {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .photo__author {
    width: 60px;
    height: 60px;
  }
}
.photo__author img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo__pet {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #fff;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .photo__pet {
    width: 52px;
    height: 52px;
  }
}
.photo__pet img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo__pet:nth-child(2) {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
.photo__pet:nth-child(3) {
  -webkit-transform: translateX(-40px);
      -ms-transform: translateX(-40px);
          transform: translateX(-40px);
}
.photo__pet:nth-child(4) {
  -webkit-transform: translateX(-60px);
      -ms-transform: translateX(-60px);
          transform: translateX(-60px);
}

.what-section {
  overflow: hidden;
  padding-top: 100px;
  margin-bottom: 70px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#edf2f7));
  background: -o-linear-gradient(#fff 0%, #edf2f7 100%);
  background: linear-gradient(#fff 0%, #edf2f7 100%);
}
.what-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 70px;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(51, 84, 114, 0)), to(#335472));
  background: -o-linear-gradient(rgba(51, 84, 114, 0) 0%, #335472 100%);
  background: linear-gradient(rgba(51, 84, 114, 0) 0%, #335472 100%);
  opacity: 0.1;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .what-section:after {
    height: 50px;
  }
}
.what-section .h2-title {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1280px) {
  .what-section {
    padding-top: 60px;
  }
  .what-section .content-container {
    padding: 0px 60px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .what-section {
    margin-bottom: 50px;
  }
  .what-section .content-container {
    padding: 0px 90px 0;
  }
}
@media only screen and (max-width: 767px) {
  .what-section {
    padding: 40px 0px 0;
    margin-bottom: 50px;
  }
  .what-section .content-container {
    padding: 0 24px 0;
  }
}

.what__item {
  -webkit-box-shadow: 0px 9px 12px rgba(51, 84, 114, 0.15);
          box-shadow: 0px 9px 12px rgba(51, 84, 114, 0.15);
  background-color: #fff;
  border-radius: 14px;
  padding: 30px;
}
.what__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1000px) {
  .what__row {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .what__row {
    margin-bottom: 20px;
  }
}
.what__info p {
  font-size: 18px;
  line-height: 28px;
}
.what__icon {
  height: 48px;
  margin-bottom: 24px;
}
.what__icon img {
  height: 100%;
}
.what__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}
.what__img {
  overflow: hidden;
  max-width: 1110px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.what__img img {
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .what__img {
    max-width: 640px;
  }
}
@media only screen and (max-width: 767px) {
  .what__img {
    max-width: 100%;
    width: calc(100% - 40px);
  }
  .what__img img {
    max-width: inherit;
    display: block;
  }
  .what__img img:first-child {
    display: none;
  }
  .what__img img:last-child {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 1000px) {
  .what__info {
    width: calc(100% - 78px);
  }
  .what__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px;
    margin-bottom: 30px;
  }
  .what__item p {
    font-size: 18px;
    line-height: 26px;
  }
  .what__title {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .what__icon {
    width: 48px;
    height: 48px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .what__item {
    display: block;
    padding: 20px;
    border-radius: 14px;
  }
  .what__item p {
    font-size: 16px;
    line-height: 24px;
  }
  .what__info {
    width: 100%;
  }
  .what__icon {
    margin-bottom: 20px;
  }
  .what__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  .info__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    padding: 60px;
  }
}
.info__text {
  width: 475px;
}
@media only screen and (max-width: 1000px) {
  .info__text {
    width: 100%;
  }
}
.info__text span {
  font-weight: bold;
}
.info__text .h2-title {
  margin-bottom: 60px;
}
.info__text .h2-title:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1000px) {
  .info__text .h2-title {
    text-align: center;
    margin-bottom: 50px;
  }
}
.info__text .subtitle-large__mod {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .info__text .subtitle-large__mod {
    margin-bottom: 16px;
  }
}
.info__text p {
  margin-bottom: 40px;
}
.info__text p:last-child {
  margin-bottom: 0;
}
.info__text p a {
  color: #50BC7D;
  font-weight: bold;
}
.info__text p a:hover {
  color: #56CF88;
}
@media only screen and (max-width: 1000px) {
  .info__text {
    max-width: 100%;
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .info__text {
    font-size: 24px;
    line-height: 34px;
  }
}
.info__img {
  width: 570px;
}
.info__img img {
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .info__img {
    width: 450px;
  }
}
@media only screen and (max-width: 1000px) {
  .info__img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .info__img {
    width: 100%;
    max-width: 500px;
  }
}

.gray__box {
  border-radius: 60px;
  background: #f6f8fb;
  position: relative;
  padding: 60px 0;
}
.gray__box:after {
  content: "";
  bottom: -12px;
  border-bottom: 1px solid #dfe4e8;
  border-radius: 0 0 60px 60px;
  position: absolute;
  height: 100px;
  right: 10px;
  left: 10px;
}
@media only screen and (max-width: 1000px) {
  .gray__box {
    padding: 60px 0;
    border-radius: 34px;
  }
  .gray__box:after {
    border-radius: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .gray__box {
    padding: 0;
    border-radius: 24px;
  }
  .gray__box:after {
    border-radius: 24px;
  }
}

.last_block {
  position: relative;
  padding-top: 226px;
  padding-bottom: 167px;
  margin-top: 70px;
}
.last_block .h2-title {
  margin-bottom: 30px;
}
.last_block:after {
  z-index: -1;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  position: absolute;
  bottom: 0;
  width: 1760px;
  top: 0;
  background-image: url("../images/bg2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
@media only screen and (max-width: 767px) {
  .last_block:after {
    background-image: url("../images/bg22.png");
    width: 710px;
  }
}
@media only screen and (max-width: 1200px) {
  .last_block {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .last_block .info__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .last_block .info__img {
    margin-bottom: 40px;
  }
  .last_block:after {
    background-position: center top;
  }
  .last_block .info__text .h2-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .last_block {
    padding: 90px 0 100px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 1000px) {
  .info-section .info__text .h2-title {
    text-align: left;
  }
  .info-section .info__block {
    padding: 0 60px;
  }
  hr {
    margin: 0 100px;
  }
}
.mob {
  display: none;
}

.info-section.section_padding {
  padding: 90px 0;
}
@media only screen and (max-width: 1000px) {
  .info-section.section_padding {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .info-section .info__block {
    padding: 0 24px;
  }
  .info-section .gray__box .info__block {
    padding: 40px 24px;
  }
  .desk {
    display: none;
  }
  .mob {
    display: inherit;
  }
  .info__img img.mob {
    margin: 0 -24px;
    width: calc(100% + 48px);
    max-width: initial;
  }
  hr {
    margin: 0 44px;
  }
}
.offer-section {
  position: relative;
}

.rates__block {
  position: relative;
  background: -o-linear-gradient(315deg, #f2eff2 0%, #f4f0ea 100%);
  background: linear-gradient(135deg, #f2eff2 0%, #f4f0ea 100%);
  text-align: center;
  padding: 80px 0;
  border-radius: 60px 60px 0 0;
}
.rates__block .h2-title {
  margin-bottom: 60px;
}
.rates__block p {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1200px) {
  .rates__block p {
    max-width: 550px;
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 767px) {
  .rates__block p {
    margin-bottom: 40px;
  }
}
.rates__block:before {
  content: "";
  top: -12px;
  border-top: 1px solid #dfe4e8;
  border-radius: 60px 60px 0 0;
  position: absolute;
  height: 100px;
  right: 10px;
  left: 10px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .rates__block {
    border-radius: 24px 24px 0 0;
    padding: 40px 24px 60px;
  }
  .rates__block .h2-title {
    margin-bottom: 40px;
  }
  .rates__block:before {
    border-radius: 24px 24px 0 0;
  }
}

.rates__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 40px;
  margin-bottom: 40px;
  padding: 0 109px;
}
@media only screen and (max-width: 1200px) {
  .rates__row {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .rates__row {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    grid-row-gap: 24px;
  }
}
.rate__item {
  border-radius: 14px;
  background: -o-linear-gradient(315deg, #f8f5f8 0%, #fffcf8 100%);
  background: linear-gradient(135deg, #f8f5f8 0%, #fffcf8 100%);
  -webkit-box-shadow: 0px 8px 20px rgba(132, 122, 114, 0.15);
          box-shadow: 0px 8px 20px rgba(132, 122, 114, 0.15);
  padding: 30px 30px 40px;
}
.rate__item img {
  height: 70px;
  display: inline-block;
  margin-bottom: 20px;
}
.rate__item .h5-title {
  max-width: 136px;
  font-weight: 800;
  margin: 0 auto;
  font-size: 22px;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .rate__item {
    padding: 24px 24px 40px;
  }
  .rate__item .h5-title {
    max-width: 100%;
  }
}

.offer__block {
  position: relative;
  background: -o-linear-gradient(315deg, #f4fcf4 0%, #f1fcff 100%);
  background: linear-gradient(135deg, #f4fcf4 0%, #f1fcff 100%);
  border-radius: 0px 0px 60px 60px;
  text-align: center;
  padding: 80px 0;
}
.offer__block .h2-title {
  margin-bottom: 30px;
}
.offer__block p {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 60px;
}
.offer__block:after {
  content: "";
  bottom: -12px;
  border-bottom: 1px solid #dfe4e8;
  border-radius: 0 0 60px 60px;
  position: absolute;
  height: 100px;
  right: 10px;
  left: 10px;
  z-index: -1;
}
@media only screen and (max-width: 1000px) {
  .offer__block {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .offer__block {
    padding: 60px 24px;
    border-radius: 0 0 24px 24px;
  }
  .offer__block p {
    font-size: 18px;
    line-height: 26px;
  }
  .offer__block:after {
    border-radius: 0 0 24px 24px;
  }
}
.offer__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 60px;
  margin-bottom: 60px;
  padding: 0;
}
@media only screen and (max-width: 1000px) {
  .offer__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .offer__row {
    padding: 0;
    grid-row-gap: 40px;
    margin-bottom: 40px;
  }
}
.offer__item {
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9fdf9), to(#f7fdff));
  background: -o-linear-gradient(#f9fdf9 0%, #f7fdff 100%);
  background: linear-gradient(#f9fdf9 0%, #f7fdff 100%);
  -webkit-box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
          box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
  padding: 30px;
  text-align: left;
  position: relative;
}
.offer__item ul li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}
.offer__item ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #29324C;
}
.offer__item img {
  height: 110px;
  display: block;
  margin: 0 auto 24px;
}
.offer__item.disabled {
  color: rgba(41, 50, 76, 0.3137254902);
}
.offer__item.disabled ul li:before {
  background-color: rgba(41, 50, 76, 0.3137254902);
}
.offer__item .status {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #f7fdfd;
  border-radius: 4px;
  background: #50bc7d;
  position: absolute;
  margin-top: 40px;
  padding: 4px 7px;
  text-transform: uppercase;
  font-weight: 800;
}
@media only screen and (max-width: 1000px) {
  .offer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px;
  }
  .offer__item .offer__info-cover {
    width: calc(100% - 178px);
  }
  .offer__item img {
    width: 150px;
    margin-right: 28px;
    margin-left: 0;
  }
  .offer__item .status {
    position: relative;
    display: inline-block;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .offer__item {
    display: block;
    padding: 30px 24px;
  }
  .offer__item .offer__info-cover {
    width: 100%;
  }
  .offer__item img {
    width: 110px;
    margin: 0 auto 24px;
  }
}
.offer__title {
  font-weight: 800;
  font-size: 26px;
  line-height: 36px;
  display: block;
  color: inherit;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .offer__title {
    font-size: 24px;
    line-height: 34px;
  }
}
.offer__price {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .offer__price {
    font-size: 18px;
    line-height: 28px;
  }
}

.registration__content {
  max-width: 504px;
  margin: 0 auto;
}
.registration__content .btn__dark {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .registration__content .column-2 {
    display: block;
  }
}
.registration .h3-title {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1000px) {
  .registration .h3-title {
    max-width: 460px;
    margin: 0 auto 40px;
  }
}

.white__box {
  max-width: 764px;
  padding: 40px 40px 60px;
  border-radius: 24px;
  background: #fff;
  margin: 140px auto 140px;
  -webkit-box-shadow: 0px 8px 20px rgba(51, 84, 114, 0.15);
          box-shadow: 0px 8px 20px rgba(51, 84, 114, 0.15);
  position: relative;
}
.white__box > * {
  position: relative;
  z-index: 2;
}
.white__box:after {
  content: "";
  position: absolute;
  border-radius: 24px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  left: -20px;
  top: -20px;
  z-index: 0;
  border: 1px solid #dfe4e8;
}
@media only screen and (max-width: 1000px) {
  .white__box {
    max-width: 690px;
  }
}
@media only screen and (max-width: 767px) {
  .white__box {
    padding: 30px 20px 40px;
    width: calc(100% - 68px);
    margin: 94px auto 94px;
  }
}
.white__box:after {
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  left: -14px;
  top: -14px;
}

.select-plan__content {
  max-width: 564px;
  margin: 0 auto;
}
.select-plan__content .offer__item ul li {
  padding-left: 14px;
}
.select-plan__content .offer__item ul li:before {
  left: 0;
}
.select-plan .h3-title {
  margin-bottom: 40px;
}
.select-plan__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 48px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 560px) {
  .select-plan__row {
    margin-bottom: 40px;
    display: block;
  }
}
.select-plan .offer__item {
  background: -webkit-gradient(linear, left top, left bottom, from(#f4fcf4), to(#f1fcff));
  background: -o-linear-gradient(#f4fcf4 0%, #f1fcff 100%);
  background: linear-gradient(#f4fcf4 0%, #f1fcff 100%);
  border: 1px solid #e1e9ea;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.select-plan .offer__item input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
@media (any-hover: hover) {
  .select-plan .offer__item:not(.no-select):hover {
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
            box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
  }
}
.select-plan .offer__item.active {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
          box-shadow: 0px 8px 20px rgba(39, 123, 129, 0.15);
}
.select-plan .offer__item.no-select {
  opacity: 50%;
}
@media only screen and (max-width: 767px) {
  .select-plan .offer__item {
    margin-bottom: 30px;
  }
}

#map path {
  cursor: pointer;
}
#map path.active, #map path.hover {
  fill: #50BC7D;
}
#map text {
  opacity: 0;
}
#map text.active, #map text.hover {
  opacity: 1;
}

.select-region .select__container {
  display: none;
}
@media only screen and (max-width: 767px) {
  .select-region .select__container {
    display: block;
  }
}
.select-region .h3-title {
  max-width: 460px;
  margin: 0 auto 40px;
}
.select-region svg {
  width: 438px;
  display: block;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 560px) {
  .select-region svg {
    width: 100%;
    margin-bottom: 0;
  }
}

.select-date .h3-title {
  margin-bottom: 30px;
}
.select-date .btn__dark {
  margin-top: 40px;
}

.upload-section__container {
  max-width: 596px;
  margin: 0 auto;
}
.upload-section__container .checkbox__input {
  max-width: 250px;
  margin: 0 auto;
}
.upload-section .h3-title {
  margin-bottom: 10px;
}
.upload-section .subtitle-medium__mod {
  text-align: center;
  margin-bottom: 30px;
}
.upload-section .subtitle-medium__mod a {
  color: #50bc7d;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .upload-section .subtitle-medium__mod a {
    display: block;
  }
}
.upload-section .btn__dark {
  margin-top: 40px;
}

.input__container .upload__box {
  position: relative;
  top: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.upload__box {
  border-radius: 10px;
  background: #f6f8fb;
  border: 1px solid #dfe4e8;
  position: relative;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.upload__box input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .upload__box {
    height: auto;
  }
}

.upload__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.upload__info img {
  margin-right: 10px;
  display: block;
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.upload__info p {
  font-size: 14px;
  line-height: 24px;
  color: #29324c;
}
.upload__info p span {
  color: #50bc7d;
  text-decoration: underline;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .upload__info {
    padding: 24px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.file__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 445px;
  margin: 0 auto 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.file__item:first-child {
  margin-top: 40px;
}
.file__item img {
  min-width: 22px;
  max-width: 22px;
  margin-right: 10px;
  margin-top: 2px;
}
.file__item .btn {
  margin-top: 2px;
  opacity: 0.5;
  font-size: 22px;
  color: #4B5478;
  margin-left: auto;
  background-color: transparent;
  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;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0;
}
.file__item .btn:hover {
  opacity: 1;
}
.file__name {
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .file__name {
    font-size: 14px;
  }
}

.payment {
  text-align: center;
}
.payment .h3-title {
  margin-bottom: 10px;
}
.payment .input__container {
  margin-bottom: 40px;
}
.payment__container {
  max-width: 484px;
  width: 100%;
  margin: 0 auto;
}
.payment__container > p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 40px;
}
.payment__form {
  max-width: 320px;
  margin: 0 auto;
}

.payment__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.payment__info .lock {
  margin-right: 14px;
}
@media only screen and (max-width: 767px) {
  .payment__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.payment__text {
  font-size: 12px;
  line-height: 16px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .payment__text {
    width: calc(100% - 28px);
  }
}
.payment__text a {
  color: #50bc7d;
  text-decoration: underline;
}
.payment__text a:hover {
  color: #56CF88;
}

.stripe__link {
  min-width: 110px;
}
@media only screen and (max-width: 767px) {
  .stripe__link {
    padding-top: 24px;
    text-align: center;
    width: 100%;
  }
  .stripe__link img {
    margin: 0 auto;
  }
}