@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  font-size: 1px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  height: 100%;
  font-size: 14rem;
  color: #201B1B;
  font-weight: 300;
}

body, input, textarea {
  font-family: "Inter", sans-serif;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

.content {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 85px;
}
.content.small {
  max-width: 970px;
}

h1, .h1 {
  font-weight: 800;
  font-size: 43rem;
  line-height: 125%;
}

h2, .h2 {
  font-weight: 600;
  font-size: 26rem;
  line-height: 125%;
}

h3, .h3 {
  font-weight: 600;
  font-size: 20rem;
  line-height: 125%;
}

.text-format {
  line-height: 150%;
}
.text-format p {
  margin-bottom: 28px;
}
.text-format a:not(.btn) {
  color: #66BCE8;
  text-decoration: underline;
}
.text-format h2, .text-format .h2, .text-format h3, .text-format .h3 {
  margin-bottom: 28px;
}
.text-format ul li {
  margin-bottom: 25px;
}

.small-text {
  font-size: 12rem;
  line-height: 150%;
}

.mid-text {
  font-size: 16rem;
  line-height: 145%;
  font-weight: 800;
}

.weak-text {
  font-weight: 300;
  font-size: 10px;
  line-height: 150.5%;
  color: #555454;
}

.big_title {
  font-size: 3.5em;
}

.title {
  font-size: 2em;
}

.title2 {
  font-size: 2.5em;
}

.c-yellow {
  color: #F6D216;
}

.c-green {
  color: #07C6BA;
}

.c-red {
  color: #F1647A;
}

.gray-bg {
  background: #F3F5F6;
}

.blue-bg {
  background: #EFF8FC;
}

.c-gray {
  color: #555454;
}

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

.jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.va-m {
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.va-b {
  vertical-align: bottom;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ta-r {
  text-align: right;
}

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

.w100 {
  width: 100%;
}

.mt-20 {
  margin-top: 20px;
}

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

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.btn {
  padding: 16px 30px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
  color: white;
  border-radius: 5px;
  background: #2B9ED8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-appearance: none;
  outline: none;
  border: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.btn:hover {
  background: #66BCE8;
}
.btn:active {
  background: #fff;
  color: #2B9ED8;
}
.btn.disabled {
  background: #EFF8FC;
  color: #BDBDBD;
  pointer-events: none;
}

.cross {
  position: relative;
  width: 28px;
  height: 28px;
}
.cross:before, .cross:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #201B1B;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cross:after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gamburger {
  display: inline-block;
  position: relative;
  height: 22px;
  width: 24px;
  border-bottom: 3px solid black;
  -webkit-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
  margin-top: -5px;
}
.gamburger:after, .gamburger:before {
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 66%;
  background-color: black;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.gamburger:before {
  top: 30%;
}
.gamburger.active {
  border-bottom: 3px solid transparent;
}
.gamburger.active:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 67%;
}
.gamburger.active:before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 63%;
}

@media (max-width: 1100px) {
  .content {
    padding: 0 20px;
  }

  h1, .h1 {
    font-size: 26rem;
    line-height: 125%;
  }

  h2, .h2 {
    font-size: 20rem;
  }

  h3, .h3 {
    font-size: 18rem;
  }

  .text-format p {
    margin-bottom: 20px;
  }
  .text-format h3, .text-format .h3 {
    margin-bottom: 16px;
  }
}
.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cols .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cols.p10 {
  margin-left: -10px;
  width: calc(100% + 20px);
}
.cols.p10 .col {
  padding: 10px;
}
.cols.p15 {
  margin-left: -15px;
  width: calc(100% + 30px);
}
.cols.p15 .col {
  padding: 15px;
}
.cols.p30 {
  margin-left: -30px;
  width: calc(100% + 60px);
}
.cols.p30 .col {
  padding: 30px;
}

.cols-2 .col {
  width: 50%;
}

.cols-3 .col {
  width: 33.333%;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .col-t-1 {
    width: 8.3333333333%;
  }

  .col-t-2 {
    width: 16.6666666667%;
  }

  .col-t-3 {
    width: 25%;
  }

  .col-t-4 {
    width: 33.3333333333%;
  }

  .col-t-5 {
    width: 41.6666666667%;
  }

  .col-t-6 {
    width: 50%;
  }

  .col-t-7 {
    width: 58.3333333333%;
  }

  .col-t-8 {
    width: 66.6666666667%;
  }

  .col-t-9 {
    width: 75%;
  }

  .col-t-10 {
    width: 83.3333333333%;
  }

  .col-t-11 {
    width: 91.6666666667%;
  }

  .col-t-12 {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .col-p-1 {
    width: 8.3333333333%;
  }

  .col-p-2 {
    width: 16.6666666667%;
  }

  .col-p-3 {
    width: 25%;
  }

  .col-p-4 {
    width: 33.3333333333%;
  }

  .col-p-5 {
    width: 41.6666666667%;
  }

  .col-p-6 {
    width: 50%;
  }

  .col-p-7 {
    width: 58.3333333333%;
  }

  .col-p-8 {
    width: 66.6666666667%;
  }

  .col-p-9 {
    width: 75%;
  }

  .col-p-10 {
    width: 83.3333333333%;
  }

  .col-p-11 {
    width: 91.6666666667%;
  }

  .col-p-12 {
    width: 100%;
  }

  .cols-p-1 .col {
    width: 100%;
  }
}
.obj-sidebar-name {
  font-weight: bold;
}

.form-label {
  display: block;
  margin-bottom: 18px;
}
.form-label.error input, .form-label.error textarea {
  border-color: red;
}
.form-label.disabled .form-label__text {
  color: #BDBDBD;
}
.form-label__error {
  font-size: 12px;
  line-height: 15px;
  color: red;
  margin-top: 4px;
  display: block;
}
.form-label__text {
  padding: 4px;
  font-size: 12px;
  font-weight: 300;
  color: #555454;
}

.nice-form textarea {
  background: #fff;
  border: 1px solid #BDBDBD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  padding: 9px 10px;
  font-family: "Inter", sans-serif;
  font-size: inherit;
}
.nice-form button {
  width: 100%;
  margin-top: 14px;
}
.nice-form input {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  padding: 9.5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: 1px solid #BDBDBD;
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  font-weight: 300;
}
.nice-form input.error {
  border-color: red;
}
.nice-form input::-webkit-input-placeholder {
  color: #BDBDBD;
}
.nice-form input:-moz-placeholder {
  color: #BDBDBD;
}
.nice-form input::-moz-placeholder {
  color: #BDBDBD;
}
.nice-form input:-ms-input-placeholder {
  color: #BDBDBD;
}
.nice-form input.small-input {
  padding: 10px 15px;
  border-radius: 4px;
}
.nice-form input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
          box-shadow: inset 0 0 0 1000px #fff;
}
.nice-form input:not(:placeholder-shown) + .input-wrap__label, .nice-form input:-webkit-autofill + .input-wrap__label, .nice-form input:focus + .input-wrap__label {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  font-weight: bold;
  font-size: 14px;
  color: #6E7191;
}
.nice-form input:focus:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
          box-shadow: inset 0 0 0 1000px #fff;
}

.date-input {
  position: relative;
  display: inline-block;
}
.date-input input {
  width: 192px;
  padding-right: 50px;
}
.date-input__ico {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.input-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.input-wrap input {
  width: 100%;
  background: #e6e6e6;
  border-radius: 8px;
  padding: 29px 18px 13px 65px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: 2px solid #e6e6e6;
  -webkit-transition: background 0.1s ease 0s, color, 0.1s;
  -o-transition: background 0.1s ease 0s, color, 0.1s;
  transition: background 0.1s ease 0s, color, 0.1s;
}
.input-wrap input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #e6e6e6;
          box-shadow: inset 0 0 0 1000px #e6e6e6;
}
.input-wrap input:not(:placeholder-shown), .input-wrap input:-webkit-autofill, .input-wrap input:focus {
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.input-wrap input:not(:placeholder-shown) + .input-wrap__label, .input-wrap input:-webkit-autofill + .input-wrap__label, .input-wrap input:focus + .input-wrap__label {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  font-weight: bold;
  font-size: 14px;
  color: #6E7191;
}
.input-wrap input:not(:placeholder-shown) ~ .reset-field, .input-wrap input:-webkit-autofill ~ .reset-field {
  display: block;
}
.input-wrap input:focus:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #FCFCFC;
          box-shadow: inset 0 0 0 1000px #FCFCFC;
}
.input-wrap .reset-field {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  cursor: pointer;
}
.input-wrap.nolabel input {
  padding-top: 21px;
  padding-bottom: 21px;
}
.input-wrap.nolabel.small input {
  padding-top: 10px;
  padding-bottom: 10px;
}
.input-wrap.small input {
  padding: 14px 18px 6px 65px;
  border-radius: 4px;
}
.input-wrap__ico {
  position: absolute;
  top: 50%;
  left: 35px;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.input-wrap__label {
  position: absolute;
  left: 64px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.input-wrap.disabled {
  opacity: 0.5;
}
.input-wrap.success input {
  background: #F2FFFB;
  border-color: #27AE60;
}
.input-wrap.success input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #F2FFFB;
          box-shadow: inset 0 0 0 1000px #F2FFFB;
}
.input-wrap.success .input-wrap__label {
  color: #219653 !important;
}
.input-wrap.error input {
  background: #FFF3F8;
  border-color: #EB5757;
}
.input-wrap.error input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #FFF3F8;
          box-shadow: inset 0 0 0 1000px #FFF3F8;
}
.input-wrap.error .input-wrap__label {
  color: #EB5757 !important;
}
.input-wrap.pass-show .pass-show-ico {
  display: block;
}
.input-wrap.pass-show .pass-hide-ico {
  display: none;
}

.pass-hide-ico {
  cursor: pointer;
}

.pass-show-ico {
  display: none;
  cursor: pointer;
}

.input-wrap-itm {
  position: relative;
}

.js-select {
  display: none;
}

.js-select-wrap {
  position: relative;
}
.js-select-wrap select {
  display: none;
}

.custom-select {
  position: relative;
}
.custom-select__single {
  background: #e6e6e6;
  border-radius: 4px;
  padding: 11px 25px 11px 16px;
  cursor: pointer;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__single:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.custom-select__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow: auto;
  background: #e6e6e6;
  margin-top: 6px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  z-index: 8;
  -webkit-transition: all 0.15s linear 0s;
  -o-transition: all 0.15s linear 0s;
  transition: all 0.15s linear 0s;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.custom-select__dropdown-list {
  list-style: none;
}
.custom-select__dropdown-item {
  padding: 11px 16px;
  cursor: pointer;
}
.custom-select__dropdown-item:hover {
  background: #f3f4fb;
}
.custom-select__dropdown-item.option-disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #e0e1e8;
}
.custom-select.is-open .custom-select__dropdown {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.custom-select.is-open .custom-select__single:after {
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: -1px;
}

.js-checkbox {
  display: none;
}
.js-checkbox.round + .check_box__item {
  border-radius: 50%;
}
.js-checkbox:checked + .check_box__item:before {
  opacity: 1;
}

.check_box {
  display: inline-block;
  vertical-align: middle;
}

.check_box__item {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}
.check_box__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../img/ico/check.svg") no-repeat center;
  opacity: 0;
}

@media (max-width: 1100px) {
  .form-label {
    margin-bottom: 14px;
  }
}
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.js-lazy-load {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.js-lazy-load.init {
  opacity: 1;
}

.band {
  width: 1280;
  min-height: 400px;
  margin: 0 auto;
  border: 1px solid blue;
}

.block-padding {
  padding: 80px 0;
}

.block-margin {
  margin: 80px 0;
}

.slick-list {
  overflow: hidden;
}

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

.slick-slider {
  position: relative;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  left: -55px;
  z-index: 1;
  font-size: 0;
  border: none;
  height: 48px;
  width: 15px;
  background: url("../img/arrow.svg") no-repeat center;
  background-size: contain;
  cursor: pointer;
}
.slick-arrow:hover {
  opacity: 0.7;
}
.slick-arrow.slick-prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.slick-arrow.slick-next {
  right: -55px;
  left: auto;
}

.modal.fancybox-content {
  background: #F6D216;
  border: 1px solid #BDBDBD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 4px 4px 72px rgba(0, 0, 0, 0.08);
          box-shadow: 4px 4px 72px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 80px;
}
.modal.fancybox-content .fancybox-close-small {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  padding: 5px;
  top: 40px;
  right: 40px;
}

.modal-content {
  width: 380px;
  max-width: 100%;
}
.modal-content .h3 {
  margin-bottom: 40px;
}
.modal-content .h3.js-modal-success-text {
  margin-bottom: 0;
}

.fancybox-content.modal-text {
  width: 470px;
  border: 1px solid #BDBDBD;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 4px 4px 72px rgba(0, 0, 0, 0.08);
          box-shadow: 4px 4px 72px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 55px;
}

.modal-text__title {
  color: #2B9ED8;
  margin-bottom: 14px;
}

.text-with-ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.text-with-ico__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 62px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 5px;
}
.text-with-ico__ico img {
  max-width: 100%;
}
.text-with-ico__ico.big {
  width: 80px;
}
.text-with-ico__text {
  font-weight: 800;
  font-size: 16rem;
  line-height: 145%;
}
.text-with-ico__text__title {
  margin-bottom: 12px;
}
.text-with-ico__text__desc {
  color: #555454;
  font-size: 14rem;
  font-weight: 300;
  line-height: 150%;
}

.tarif-list {
  margin-top: 30px;
  margin-bottom: 18px;
}

.tarif-itm {
  position: relative;
  padding: 44px 50px 35px;
  background: #EFF8FC;
  text-align: center;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tarif-itm__name {
  margin-bottom: 16px;
}
.tarif-itm__desc {
  margin-bottom: 28px;
}
.tarif-itm.best {
  background: #F6D216;
}
.tarif-itm__best {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #07C6BA;
  text-align: center;
  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;
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: -20px;
  right: -20px;
}
.tarif-itm__price {
  color: #555454;
  margin-bottom: 20px;
}
.tarif-itm__info {
  color: #555454;
  font-size: 16rem;
  line-height: 145%;
  font-weight: 800;
}
.tarif-itm__info p {
  margin-bottom: 16px;
}

.hide-desktop {
  display: none;
}

@media (max-width: 1100px) {
  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  .block-padding {
    padding: 40px 0;
  }

  .block-margin {
    margin: 40px 0;
  }

  .fancybox-content.modal-text {
    padding: 40px 25px 0 45px;
    width: 335px;
  }

  .modal.fancybox-content {
    width: 335px;
    padding: 28px;
  }
  .modal.fancybox-content .fancybox-close-small {
    top: 22px;
    right: 22px;
  }
  .modal.fancybox-content .modal-content__title {
    text-align: left;
  }

  .modal-content .h3 {
    margin-bottom: 22px;
  }

  .text-with-ico__text {
    font-size: 15px;
    font-weight: 700;
  }
  .text-with-ico__text__title {
    margin-bottom: 8px;
  }
  .text-with-ico__ico {
    width: 60px;
  }
  .text-with-ico__ico.big {
    width: 60px;
  }

  #section-tarif .tarif-list {
    margin-left: -20px;
    width: auto;
    margin-right: -20px;
    margin-top: 5px;
  }
  #section-tarif .tarif-list .slick-list {
    padding-top: 20px !important;
  }

  .tarif-itm {
    padding: 28px 20px 20px;
  }
  .tarif-itm__best {
    top: -29px;
    right: -20px;
    font-size: 11px;
  }
  .tarif-itm__info p {
    margin-bottom: 12px;
  }
}
/* header begin */
.header {
  width: 100%;
  position: relative;
}
.header.fixed .header-top {
  position: fixed;
  top: -73px;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.header-top {
  padding: 28px 0;
  background: #EFF8FC;
}
.header-top-wrap {
  height: 73px;
}
.header-top .cross {
  display: none;
}
.header-bot {
  padding: 29px 0 36px;
}
.header-bot .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-bot .btn {
  min-width: 191px;
}
.header__logo {
  margin-right: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo img {
  max-width: 100%;
}
.header-mid {
  color: #555454;
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-menu li {
  margin-right: 25px;
}
.header-menu li a {
  color: inherit;
  text-decoration: none;
  font-weight: 300;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.header-menu li a:hover {
  color: #2B9ED8;
}
.header-menu li a.active {
  font-weight: 900;
  color: #2B9ED8;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-right .gamburger {
  display: none;
}

.vk-link {
  margin-bottom: -3px;
  margin-right: 12px;
}
.vk-link .fill {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.vk-link:hover .fill {
  fill: #66BCE8;
}

.logo-mobile {
  display: none;
}

.header-mobile-line {
  display: none;
}

@media (max-width: 1100px) {
  .header {
    background: #fff;
  }
  .header-wrap {
    height: 162px;
  }
  .header.fixed {
    position: fixed;
    top: -141px;
    left: 0;
    right: 0;
    z-index: 9;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  }
  .header.fixed .header-top {
    left: auto;
    bottom: auto;
    top: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .header.fixed .header-top.open {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header.fixed .header-mobile-line {
    padding: 10px 0;
  }
  .header-top {
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    width: 239px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px 0px 0px 5px;
    z-index: 2;
    padding: 75px 20px 0 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-top.open {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header-top .cross {
    display: block;
    position: absolute;
    right: 19px;
    top: 20px;
  }
  .header-top-wrap {
    height: 0;
  }
  .header-top .content {
    padding: 0;
  }
  .header-menu {
    display: block;
  }
  .header-menu li {
    font-size: 14px;
    line-height: 150.02%;
    margin-bottom: 37px;
  }
  .header-menu li a.active {
    color: #201B1B;
  }
  .header-mid {
    font-size: 14px;
    line-height: 150.02%;
    font-weight: 300;
  }
  .header-bot {
    background: #EFF8FC;
    padding: 12px 0;
  }
  .header-right .btn {
    display: none;
  }
  .header-right .gamburger {
    display: block;
  }
  .header__logo {
    width: 45px;
    margin-right: 4px;
  }

  .logo-mobile {
    display: block;
  }

  .logo-desktop {
    display: none;
  }

  .vk-link {
    margin-right: 15px;
  }
  .vk-link .svg {
    width: 30px;
    height: 30px;
  }

  .header-mobile-line {
    display: block;
    padding: 24px 0;
  }
  .header-mobile-line .btn {
    width: 100%;
  }
}
.clear {
  clear: both;
}

/* footer begin */
.footer {
  margin-bottom: 40px;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-top__logo img {
  max-width: 104px;
}
.footer-link {
  display: inline-block;
  margin-bottom: 20px;
  color: inherit;
  text-decoration: none;
}
.footer-link:last-child {
  margin-bottom: 0;
}
.footer-link:hover {
  color: #2B9ED8;
}
.footer-soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: inherit;
}
.footer-soc:hover {
  color: #2B9ED8;
}
.footer-soc__ico {
  margin-right: 16px;
  width: 24px;
}
.footer-soc__ico img {
  max-width: 100%;
  margin-bottom: -3px;
}
.footer-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 28px;
  font-size: 12px;
  line-height: 150.02%;
}
.footer-bot a {
  color: inherit;
  text-decoration: none;
}
.footer-bot a:hover {
  color: #2B9ED8;
}
.footer-dev a {
  color: #2B9ED8;
}

@media (max-width: 1100px) {
  .footer {
    margin-bottom: 60px;
  }
  .footer-bot {
    display: block;
    font-weight: 275;
    font-size: 10px;
    line-height: 150.5%;
  }
  .footer .fl-left {
    float: left;
  }
  .footer .fl-right {
    float: right;
    text-align: right;
  }
}
.main-window {
  position: relative;
  padding: 56px 0 36px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1440px;
  margin: 0 auto;
}
@media all and (min-width: 1440px) {
  .main-window:before, .main-window:after {
    content: "";
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 0;
    right: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(80%, #FB931A), color-stop(99%, rgba(252, 148, 27, 0)));
    background: -o-linear-gradient(left, #FB931A 80%, rgba(252, 148, 27, 0) 99%);
    background: linear-gradient(90deg, #FB931A 80%, rgba(252, 148, 27, 0) 99%);
    z-index: 1;
    margin-right: -200px;
  }
  .main-window:after {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: -200px;
    background: -webkit-gradient(linear, right top, left top, color-stop(80%, #FB931A), color-stop(99%, rgba(252, 148, 27, 0)));
    background: -o-linear-gradient(right, #FB931A 80%, rgba(252, 148, 27, 0) 99%);
    background: linear-gradient(270deg, #FB931A 80%, rgba(252, 148, 27, 0) 99%);
  }
}
.main-window-wrap {
  position: relative;
}
.main-window__title {
  margin-bottom: 20px;
}
.main-window__text {
  margin-bottom: 24px;
  width: 307px;
  max-width: 100%;
}

.video-block {
  position: relative;
  display: block;
  padding-bottom: 55%;
  background-position: center;
  background-size: cover;
}
.video-block__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.video-block__play path {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.video-block__link {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.video-block:hover .video-block__play path {
  fill: #F6D216;
}

.front-second-bot {
  margin-top: 80px;
  -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;
}

.callback-form {
  border-radius: 10px;
  background: #F6D216;
  padding: 28px;
}
.amt_container--first .callback-form {
  padding-top: 34px;
  padding-bottom: 34px;
}
.callback-form h3 {
  margin-bottom: 11px;
}
.callback-form p {
  margin-bottom: 10px;
}

.front-second-bot-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.front-second-bot-img__left {
  width: 198px;
  margin-right: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.front-second-bot-img__left img {
  max-width: 100%;
}

.trainer-slider {
  margin-top: 40px;
}

.trainer-slider-itm {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.trainer-slider-itm__left {
  width: 408px;
  height: 549px;
  margin-right: 62px;
  background-position: top center;
  background-size: cover;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.trainer-slider-itm__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}

.tsi b {
  color: #555454;
}
.tsi__name {
  margin-bottom: 8px;
}
.tsi-text {
  padding-bottom: 10px;
}
.tsi-text-block {
  margin-top: 16px;
  margin-bottom: 70px;
}
.tsi-text-wrap {
  position: relative;
  height: 56px;
  overflow: hidden;
}
.tsi-text-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 37px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.tsi-text-wrap.active:after {
  opacity: 0;
}
.tsi-text-btn {
  color: #2B9ED8;
  text-decoration: underline;
  cursor: pointer;
}
.tsi-text-btn:hover {
  text-decoration: none;
}
.tsi-diplom {
  display: block;
  white-space: nowrap;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
}
.tsi-diplom a {
  display: inline-block;
  margin-right: 16px;
}
.tsi-diplom a:last-child {
  margin-right: 0;
}
.tsi-diplom-wrap {
  overflow: auto;
  margin: 20px 0 30px;
}
.tsi-diplom-wrap::-webkit-scrollbar {
  width: 6px;
  /* ширина scrollbar */
  height: 6px;
  cursor: pointer;
}
.tsi-diplom-wrap::-webkit-scrollbar-track {
  background: #e8e3df;
  /* цвет дорожки */
  border-radius: 20px;
  /* закругления плашки */
}
.tsi-diplom-wrap::-webkit-scrollbar-thumb {
  background-color: #e8e3df;
  /* цвет плашки */
  border-radius: 20px;
  /* закругления плашки */
  border: 3px solid #2B9ED8;
  /* padding вокруг плашки */
  cursor: pointer;
}
.tsi-diplom-wrap::-webkit-scrollbar-thumb:hover {
  border-color: #66BCE8;
}
.tsi-bot {
  margin-bottom: 30px;
}
.tsi-bot b {
  display: block;
  margin-bottom: 8px;
}

.need-title {
  margin-bottom: 60px;
}

.front-help-bot {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.advantages-title {
  width: 552px;
  max-width: 100%;
  margin-bottom: 35px;
}

.faq-block-title {
  width: 681px;
  max-width: 100%;
  margin-bottom: 40px;
}

.faq-list {
  margin-top: 20px;
}

.accordion {
  background: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 12px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.accordion.active {
  background: #F6D216;
}
.accordion.active .accordion__head__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion__head {
  position: relative;
  padding: 21px 100px 21px 40px;
  font-size: 20rem;
  line-height: 125%;
  font-weight: 600;
  cursor: pointer;
}
.accordion__head:hover .accordion__head__arrow:after {
  border-color: #2B9ED8;
}
.accordion__head__arrow {
  position: absolute;
  right: 33px;
  top: 50%;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(189, 189, 189, 0.15);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion__head__arrow:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #201B1B;
  border-right: 1px solid #201B1B;
  left: 50%;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: -6px;
  margin-top: -9px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.accordion__body {
  position: relative;
  display: none;
  padding: 40px 0 32px;
}
.accordion__body__content {
  max-width: 100%;
  width: 634px;
  margin: 0 auto;
}
.accordion__body:before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  border-top: 0.5px solid #BDBDBD;
}

.people-line {
  max-width: 100%;
  margin-top: 50px;
}

@media (max-width: 1100px) {
  .main-window {
    padding: 32px 0 35px;
    height: 530px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .main-window__text {
    width: 160px;
    font-weight: 700;
    font-size: 15rem;
    line-height: 145%;
    margin-bottom: 20px;
  }
  .main-window .content {
    height: 100%;
  }
  .main-window-content {
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-window-content .btn {
    padding-left: 21px;
    padding-right: 21px;
  }

  .front-second-bot {
    margin-top: 60px;
  }
  .front-second-bot-img {
    margin-bottom: 60px;
  }
  .front-second-bot-img__left {
    width: 108px;
    margin-right: 8px;
  }
  .schedule-block h3 {
    margin-bottom: 24px;
  }
  .schedule-block .btn {
    padding-left: 12px;
    padding-right: 12px;
  }

  .trainer-slider {
    margin-left: -6px;
    margin-right: -6px;
  }
  .trainer-slider .slick-list {
    overflow: visible !important;
    height: auto !important;
  }

  .trainer-slider-itm {
    display: block !important;
    margin: 0 6px;
  }
  .trainer-slider-itm__left {
    height: 388px;
    margin-bottom: 20px;
  }
  .trainer-slider-itm .tsi {
    padding: 0 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .tsi-text-block {
    margin-top: 12px;
    margin-bottom: 40px;
  }
  .tsi .btn {
    width: 100%;
    margin-bottom: 20px;
  }
  .tsi-diplom {
    white-space: normal;
  }
  .tsi-diplom a {
    margin-bottom: 10px;
  }

  .need-title {
    margin-bottom: 30px;
  }

  #section-advantages {
    margin-top: 60px;
  }

  .faq-block-title {
    margin-bottom: 16px;
  }

  .accordion__head {
    font-size: 15rem;
    padding: 19px 60px 19px 16px;
  }
  .accordion__head__arrow {
    right: 16px;
  }
  .accordion__body {
    padding: 16px 24px;
  }

  .front-second-bot-img {
    margin-bottom: 50px;
  }
  .front-second-bot-img h2 {
    margin-bottom: 12px;
  }

  .people-line {
    margin-top: 40px;
  }

  .front-help-bot {
    margin-bottom: 20px;
  }
}

.social-wedget {
    z-index: 100000;
}

.social-wedget_animate .social-wedget__animated-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -3px;
    border-radius: 50%;
    left: -3px;
    border-radius: 100%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
    border: 3px solid #08c;
    animation: social-wedget__pulsate 1s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: social-wedget__pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0;
}

.social-wedget_animate .social-wedget__btn_label {
    animation: social-wedget__btn-pulsate 2s ease-out;
    animation-iteration-count: infinite;
    -webkit-animation: social-wedget__btn-pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite;
}

.social-wedget_animate:hover .social-wedget__animated-circle {
    animation: none;
}

.social-wedget_animate:hover .social-wedget__btn_label {
    animation: none;
}

.social-wedget__wrapper, .social-wedget__tooltip {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.social-wedget__tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #fff;
    padding: 6px 9px;
    font-size: 13px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: 0;
    transition: all 0.1s linear;
}

.social-wedget__tooltip:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}

.social-wedget__hint {
    position: absolute;
    right: 80px;
    white-space: nowrap;
    background: #fff;
    padding: 9px 13px;
    font-size: 15px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    opacity: .85;
    transition: all 0.1s linear;
}

.social-wedget__hint:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}

.social-wedget__wrapper {
    position: fixed;
    bottom: 50px;
    right: 65px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.social-wedget__btn_label {
    position: relative;
    cursor: pointer;
    z-index: 2;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    background: #08c;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    overflow: hidden;
}

.social-wedget__btn_label:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
}

.social-wedget__btn_label:hover .social-wedget__tooltip {
    transform: translate(0, 0);
    opacity: 1;
}

.social-wedget__btn_label:hover+.social-wedget__tooltip {
    transform: translate(0, 0);
    opacity: 1;
}

.social-wedget__btn_label:hover+.social-wedget__tooltip:after {
    opacity: 1;
}

.social-wedget__btn_input {
    display: none;
}

.social-wedget__btn_input:checked~.social-wedget__hint {
    opacity: 0;
    visibility: hidden;
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(1) {
    transition: all 0.2s ease-in-out;
    transform: translate(0, -135%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(2) {
    transition: all 0.225s ease-in-out;
    transform: translate(0, -255%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(3) {
    transition: all 0.25s ease-in-out;
    transform: translate(0, -375%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(4) {
    transition: all 0.275s ease-in-out;
    transform: translate(0, -495%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(5) {
    transition: all 0.3s ease-in-out;
    transform: translate(0, -615%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(6) {
    transition: all 0.325s ease-in-out;
    transform: translate(0, -735%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(7) {
    transition: all 0.325s ease-in-out;
    transform: translate(0, -855%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(8) {
    transition: all 0.35s ease-in-out;
    transform: translate(0, -975%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(9) {
    transition: all 0.375s ease-in-out;
    transform: translate(0, -1095%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(10) {
    transition: all 0.4s ease-in-out;
    transform: translate(0, -1215%);
}

.social-wedget__btn_input:checked~.social-wedget__icon:nth-of-type(11) {
    transition: all 0.425s ease-in-out;
    transform: translate(0, -1335%);
}

.social-wedget__btn_input:checked~.social-wedget__animated-circle {
    display: none;
}

.social-wedget__btn_input:checked~.social-wedget__icon_link {
    opacity: 1;
    visibility: visible;
}

.social-wedget__btn_input:checked+label {
    background: #fff!important;
    animation: none;
}

.social-wedget__btn_input:checked+label .social-wedget__bgimg {
    opacity: 0;
    visibility: hidden;
}

.social-wedget__btn_input:checked+label .social-wedget__icon-write {
    opacity: 0;
    visibility: hidden;
    transform: scale(.1);
}

.social-wedget__btn_input:checked+label .social-wedget__icon-close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.social-wedget__btn:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
}

.social-wedget__bgimg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.2s linear;
}

.social-wedget__icon {
    transition: all 0.3s ease-in-out;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.social-wedget__icon > a {
    display: block;
}

@media (max-width:  991px) {
    .social-wedget__icon a.m-hidden {
        display: none;
    }
}

@media (min-width:  992px) {
    .social-wedget__icon a.d-hidden {
        display: none;
    }
}

.social-wedget__icon-close {
    opacity: 0;
    visibility: hidden;
    transform: scale(.1);
}

.social-wedget__icon_tooltip {
    position: absolute;
    opacity: 0;
    right: 80px;
    white-space: nowrap;
    background: #fff;
    padding: 9px 13px;
    font-size: 15px;
    border-radius: 3px;
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    background: #292929;
    color: #fff;
    transition: all 0.1s linear;
}

.social-wedget__icon_tooltip:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-left-color: #292929;
}

.social-wedget__icon_link {
    border-radius: 50%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    width: 50px;
    height: 50px;
}

.social-wedget__icon_link:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .4);
}

.social-wedget__icon_link:hover .social-wedget__tooltip {
    opacity: .85;
}

.social-wedget_left .social-wedget__tooltip {
    left: 80px;
    right: auto;
}

.social-wedget_left .social-wedget__tooltip:after {
    left: -20px;
    border-right-color: #292929;
    border-left-color: transparent;
}

.social-wedget_left .social-wedget__hint {
    left: 80px;
    right: auto;
}

.social-wedget_left .social-wedget__hint:after {
    left: -20px;
    border-right-color: #292929;
    border-left-color: transparent;
}

@keyframes social-wedget__btn-pulsate {
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(1.1, 1.1);
    }

    50% {
        transform: scale(1, 1);
    }
}

@keyframes social-wedget__pulsate {
    0% {
        -webkit-transform: scale(.8, .8);
        opacity: 0;
    }

    25% {
        opacity: .4;
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(.8, .8);
        opacity: 0;
    }
}

@media screen and (max-width:960px) {
    .social-wedget__wrapper {
        bottom: 10px;
        right: 10px;
    }
}

.main-window {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 500px;
}

.main-window .content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.main-window > picture img,
.main-window > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .main-window__title {
    max-width: 300px;
    margin-bottom: 28px;
  }

  .main-window .content {
    height: auto;
  }
}

@media (max-width: 575px) {
  .main-window {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 0;
    height: 463px;
  }

  .main-window__title {
    max-width: 300px;
    margin-bottom: 114px;
    margin-top: 12px;
  }
}
/*# sourceMappingURL=style.css.map */



