@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: #ffffff;
}

.hidden {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

[class*=__container] {
  max-width: 1132px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 102px;
  z-index: 16;
}
.header:after {
  width: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header.scroll {
  height: 90px;
}
@media (max-width: 808px) {
  .header.scroll {
    height: 80px;
  }
}
@media (max-width: 610px) {
  .header.scroll {
    height: 60px;
  }
}
.header.scroll:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFB800;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header.scroll .header__container {
  min-height: 90px;
}
@media (max-width: 808px) {
  .header.scroll .header__container {
    min-height: 80px;
  }
}
@media (max-width: 610px) {
  .header.scroll .header__container {
    min-height: 60px;
  }
}
.header.scroll .header__logo {
  height: 90px;
}
@media (max-width: 808px) {
  .header.scroll .header__logo {
    height: 80px;
  }
}
@media (max-width: 610px) {
  .header.scroll .header__logo {
    height: 60px;
  }
}
.header.scroll .header__btn {
  background-color: #FF005C;
  color: #ffffff;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 102px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  background: #FFB800;
  width: 190px;
  height: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 610px) {
  .header__logo {
    width: 150px;
  }
}
.header__btn {
  padding: 10px 22px;
}
@media (max-width: 610px) {
  .header__btn {
    display: none;
  }
}
.header__actions {
  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-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.header svg {
  display: none;
  width: 25px;
  height: 25px;
}
@media (max-width: 808px) {
  .header svg {
    position: relative;
    display: block;
    left: calc(30px + (75 - 30) * ((100vw - 611px) / (808 - 611)));
  }
}
@media (max-width: 610px) {
  .header svg {
    left: calc(10px + (155 - 10) * ((100vw - 320px) / (610 - 320)));
  }
}
.header__number {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FF005C;
}
.header__number a {
  color: inherit;
}
@media (max-width: 808px) {
  .header__number a {
    display: none;
  }
}
.header__whatsapp {
  position: relative;
  top: -12px;
}
.header__whatsapp img {
  width: 25px;
  height: 25px;
}
.header__call {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: underline;
  color: #17152C;
  margin-bottom: 4px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__call:hover {
  text-decoration: none;
  color: #FF005C;
}
.header__time {
  font-size: 14px;
  line-height: 17px;
  color: #818396;
}
.header__burger {
  display: none;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item {
  margin-right: 35px;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.menu__link:hover {
  color: #FFB800;
}

.header.scroll .menu__link:hover {
  color: #FF005C;
}

@media (max-width: 1176px) {
  body.lock {
    overflow: hidden;
  }

  .header__burger {
    position: relative;
    display: -ms-grid;
    display: grid;
    width: 30px;
    height: 20px;
    z-index: 16;
    margin: 0 5px;
  }

  .header__burger span {
    position: absolute;
    background-color: #17152C;
    left: 0;
    width: 30px;
    height: 2px;
    top: 9px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before,
.header__burger:after {
    content: "";
    background-color: #17152C;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
  }

  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__burger.active span {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .menu {
    overflow: auto;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: absolute;
    z-index: 15;
    top: 0px;
    left: -350%;
    width: 100%;
    min-height: 100vh;
    background-color: #FF005C;
  }
  .menu.active {
    left: 0;
  }
  .menu__list {
    width: 100%;
    display: block;
    z-index: 2;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -25%, 0);
            transform: translate3d(-50%, -25%, 0);
    margin-left: 0;
  }
  .menu__item {
    margin-right: 0px;
  }
  .menu__link {
    font-weight: 700;
    letter-spacing: 0.025em;
    font-size: 24px;
    line-height: 50px;
    margin-right: 0;
    color: #ffffff;
    text-align: center;
  }
}
@media (max-width: 808px) {
  .header__actions {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__number {
    font-size: 24px;
    line-height: 50px;
    color: #ffffff;
  }
  .header__whatsapp {
    top: -2px;
  }
  .header__call {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0px;
    color: #ffffff;
  }
  .header__call:hover {
    color: #ffffff;
  }
  .header__time {
    display: none;
  }
}
.button {
  background: #FFB800;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #17152C;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.main {
  background: url("../img/main/bg.png") 0 0/cover no-repeat;
  padding-top: 200px;
}
@media (max-width: 970px) {
  .main {
    padding-top: 150px;
  }
}
.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 95px;
  max-width: 1134px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 970px) {
  .main__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main__content {
  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-flex: 1;
      -ms-flex: 1 1 718px;
          flex: 1 1 718px;
  padding-right: 19px;
}
@media (max-width: 970px) {
  .main__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main__title {
  font-weight: 700;
  font-size: 45px;
  line-height: 59px;
  color: #17152C;
  margin-bottom: 40px;
}
.main__title span {
  color: #FF005C;
}
@media (max-width: 970px) {
  .main__title {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .main__title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 35px;
  }
}
.main__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 52px;
  color: #17152C;
}
.main__subtitle p {
  margin-top: 22px;
}
.main__subtitle p span {
  color: #FF005C;
  font-weight: 700;
}
@media (max-width: 970px) {
  .main__subtitle {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .main__subtitle {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 30px;
  }
  .main__subtitle p {
    margin-top: 15px;
  }
}
.main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  margin-bottom: 13.5px;
}
.main__item:first-child img {
  width: 14px;
  margin-right: 21px;
}
.main__item:nth-child(2) img {
  width: 15px;
  margin-right: 20px;
}
.main__item:nth-child(3) img {
  width: 19.5px;
  margin-right: 15.5px;
}
.main__item:nth-child(4) img {
  width: 20px;
  margin-right: 15px;
}
.main__form {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 30px;
  max-width: 410px;
}
@media (max-width: 970px) {
  .main__form {
    max-width: 100%;
  }
}
@media (max-width: 445px) {
  .main__form {
    padding: 25px;
  }
}

.form-main__title {
  white-space: nowrap;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #17152C;
  margin-bottom: 25px;
}
@media (max-width: 445px) {
  .form-main__title {
    white-space: normal;
  }
}
.form-main__roomtype {
  padding-left: 42px;
  margin-bottom: 26px;
}
@media (max-width: 445px) {
  .form-main__roomtype {
    padding-left: 0px;
  }
}
.form-main__subtitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  margin-bottom: 11px;
}
.form-main__repairtype {
  padding-left: 42px;
  margin-bottom: 26px;
}
@media (max-width: 445px) {
  .form-main__repairtype {
    padding-left: 0px;
  }
}
.form-main__rangeslider {
  padding-left: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 25px;
  padding-right: 42px;
}
@media (max-width: 445px) {
  .form-main__rangeslider {
    padding-left: 0;
    padding-right: 0px;
  }
}
.form-main__range {
  position: relative;
}
.form-main__range #slider-margin-value {
  position: absolute;
  left: 50%;
  top: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: white;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 25px;
  width: 45px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFB800;
}
@media (max-width: 992px) {
  .form-main__range #slider-margin-value {
    opacity: 1;
    visibility: visible;
  }
}
.form-main__range #slider-margin-value.active {
  opacity: 1;
  visibility: visible;
}
.form-main__button {
  padding: 7px 58px;
  margin-bottom: 6px;
  background: #FFB800;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #17152C;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 970px) {
  .form-main__button {
    padding: 12px 45px;
  }
}
@media (max-width: 340px) {
  .form-main__button {
    font-size: 12px;
    line-height: 15px;
  }
}
.form-main__button:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.form-main__phone {
  padding-left: 42px;
  padding-right: 42px;
}
@media (max-width: 445px) {
  .form-main__phone {
    padding-left: 0;
    padding-right: 0px;
  }
}
.form-main__number {
  border-bottom: 1px solid #818396;
  width: 100%;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  margin-bottom: 26px;
}
.form-main__footer {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #818396;
}
.form-main__footer a {
  color: #2E81CD;
  text-decoration: underline;
}
.form-main__startend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #818396;
}
.form-main__startend div {
  position: relative;
}
.form-main__startend span {
  position: relative;
  top: -3px;
  font-size: 12px;
}

.checkbox-first, .checkbox-second, .checkbox-thirth, .checkbox-forth, .checkbox-fivth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}

.checkbox-second {
  margin-bottom: 0;
}

.checkbox-fivth {
  margin-bottom: 0;
}

.checkbox-first label, .checkbox-second label, .checkbox-thirth label, .checkbox-forth label, .checkbox-fivth label {
  padding-left: 23px;
  position: relative;
}

.checkbox-first input, .checkbox-second input, .checkbox-thirth input, .checkbox-forth input, .checkbox-fivth input {
  display: none;
}

.checkbox-first input:checked + label span::after, .checkbox-second input:checked + label span::after, .checkbox-thirth input:checked + label span::after, .checkbox-forth input:checked + label span::after, .checkbox-fivth input:checked + label span::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.checkbox-first label span, .checkbox-second label span, .checkbox-thirth label span, .checkbox-forth label span, .checkbox-fivth label span {
  position: absolute;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  min-width: 14px;
  height: 14px;
  top: 0px;
  left: 0px;
  border: 1px solid #818396;
  background-color: transparent;
  border-radius: 3px;
}

.checkbox-first label span::after, .checkbox-second label span::after, .checkbox-thirth label span::after, .checkbox-forth label span::after, .checkbox-fivth label span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8.25px;
  z-index: 2;
  left: 2px;
  top: 0px;
  background-color: transparent;
  background: url("../img/main/check.png") 0 0/cover no-repeat;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.noUi-horizontal .noUi-handle {
  right: -6px;
  top: -4px;
}

.noUi-handle {
  max-width: 12px;
  max-height: 12px;
  background: #17152C;
  border: 2.5px solid #FFFFFF;
  -webkit-box-shadow: 0px 0px 15px rgba(23, 21, 44, 0.25);
          box-shadow: 0px 0px 15px rgba(23, 21, 44, 0.25);
  border-radius: 50%;
}
.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.noUi-target {
  border: none;
  width: 100%;
  height: 5px;
  background: #E9EDF3;
  border-radius: 0;
}

.noUi-connect {
  background: #FFB800;
}

.title {
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  text-align: center;
  color: #17152C;
}

.cost {
  background: #F6F8FB;
}
.cost__container {
  padding: 72px 15px;
}
@media (max-width: 757px) {
  .cost__container {
    padding: 35px 15px;
  }
}
.cost__title {
  margin-bottom: 35px;
}
@media (max-width: 757px) {
  .cost__title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 35px;
  }
}
.cost__subtitle {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #818396;
  margin-bottom: 35px;
}
@media (max-width: 757px) {
  .cost__subtitle {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.tabs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 710px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (max-width: 757px) {
  .tabs__items {
    overflow: auto;
    padding-bottom: 17px;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.tabs__item {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #17152C;
  margin-right: 58px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 757px) {
  .tabs__item {
    margin-right: 25px;
    font-size: 16px;
  }
}
.tabs__item:after {
  content: "";
  width: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -12px;
  background-color: #FFB800;
}
.tabs__item:hover:after {
  left: 0;
  width: 100%;
}
.tabs__item.active {
  color: #FFB800;
}
.tabs__item.active:after {
  left: 0;
  width: 100%;
}
.tabs__item:last-child {
  margin-right: 0;
}
.tabs__item:hover {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #FFB800;
}
.tabs__body {
  background: #ffffff;
}
.tabs__block {
  display: none;
}
.tabs__block.target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1300px) {
  .tabs__block.target {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.tabs__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
}
@media (max-width: 1300px) {
  .tabs__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.tabs__image img {
  width: 100%;
  height: 600px;
}
@media (max-width: 1300px) {
  .tabs__image img {
    height: calc(300px + (600 - 300) * ((100vw - 320px) / (1300 - 320)));
  }
}
.tabs__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  padding-right: 21px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  border-right: 1px solid #E9EDF3;
}
@media (max-width: 1300px) {
  .tabs__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 778px) {
  .tabs__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.tabs__column:last-child {
  border-right: 0px solid #E9EDF3;
}
.tabs__column:last-child .tabs__header {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 778px) {
  .tabs__column:last-child .tabs__header {
    display: none;
  }
}
@media (max-width: 778px) {
  .tabs__column:last-child {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.tabs__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-bottom: 19px;
}
@media (max-width: 349px) {
  .tabs__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tabs__titleli {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tabs__titleli p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
}
@media (max-width: 389px) {
  .tabs__titleli {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tabs__list {
  margin-bottom: 19px;
}
.tabs__link {
  padding-left: 17px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  margin-bottom: 2px;
}
.tabs__link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #FFB800;
  -webkit-transform: translate(0, -55%) rotate(45deg);
          transform: translate(0, -55%) rotate(45deg);
}
.tabs__cost {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #17152C;
  margin-top: 120px;
}
.tabs__cost span {
  color: #FF005C;
  margin-top: 3px;
}
@media (max-width: 778px) {
  .tabs__cost {
    margin-top: 30px;
  }
}
.tabs__btn {
  display: inline-block;
  margin-top: 28px;
  padding: 11px 19px;
  white-space: nowrap;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background: #FFB800;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #17152C;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 400px) {
  .tabs__btn {
    white-space: normal;
    font-size: 14px;
  }
}
.tabs__btn:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.clients {
  background: #FFB800;
}
.clients__container {
  padding-top: 72px;
}
@media (max-width: 593px) {
  .clients__container {
    padding-top: 36px;
  }
}
.clients__title {
  margin-bottom: 60px;
}
@media (max-width: 593px) {
  .clients__title {
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}
.clients__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.clients__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3333%;
          flex: 1 1 33.3333%;
  min-width: 297px;
  padding: 0 15px;
  margin-bottom: 80px;
}
@media (max-width: 593px) {
  .clients__item {
    margin-bottom: 40px;
  }
}

.item-client__icon {
  height: 47.25px;
  margin-bottom: 18px;
}
.item-client__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 19px;
  color: #17152C;
}
.item-client__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
}

.service__container {
  padding: 72px 15px 32px;
}
@media (max-width: 593px) {
  .service__container {
    padding: 40px 15px 12px;
  }
}
.service__maintitle {
  margin-bottom: 38px;
}
@media (max-width: 593px) {
  .service__maintitle {
    font-size: 33px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
.service__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-bottom: 28px;
  margin-top: 39px;
}
.service__items {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.service__item {
  padding: 0 15px;
  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-flex: 1;
      -ms-flex: 1 0 256px;
          flex: 1 0 256px;
  max-width: 300px;
  min-width: 240px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service__item {
    max-width: 100%;
  }
}
.service__img {
  width: 100%;
  height: 150px;
}
.service__img img {
  width: 100%;
  height: 100%;
}
.service__text {
  margin-bottom: 38px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.service__text p {
  margin-bottom: 10px;
}
@media (max-width: 593px) {
  .service__text {
    margin-bottom: 15px;
  }
}
.service__btn {
  white-space: nowrap;
  display: inline-block;
  padding: 10px 8px;
}

.control {
  background: #F6F8FB;
}
.control__container {
  padding: 72px 15px;
}
@media (max-width: 593px) {
  .control__container {
    padding: 42px 15px;
  }
}
.control__title {
  margin-bottom: 54px;
}
@media (max-width: 936px) {
  .control__title {
    margin-bottom: 0;
    font-size: 40px;
  }
}
@media (max-width: 593px) {
  .control__title {
    font-size: 33px;
    line-height: 35px;
  }
}
.control__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 936px) {
  .control__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.control__item {
  margin-top: 58px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 58px;
}
@media (max-width: 593px) {
  .control__item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.control__item p {
  max-width: 476px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
}
@media (max-width: 936px) {
  .control__item p {
    max-width: 100%;
  }
}
.control__item-img {
  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;
  min-width: 42px;
  margin-right: 25px;
}
@media (max-width: 593px) {
  .control__image img {
    max-width: 100%;
  }
}

.easy__container {
  padding: 72px 15px 52px;
}
@media (max-width: 593px) {
  .easy__container {
    padding: 36px 15px 16px;
  }
}
.easy__title {
  margin-bottom: 45px;
}
@media (max-width: 593px) {
  .easy__title {
    font-size: 33px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}
.easy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -27px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.easy__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  padding: 0 27px;
  min-width: 210px;
  max-width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 395px) {
  .easy__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
  }
}
.easy__count {
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  color: #FFB800;
}
.easy__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.easy__text p {
  max-width: 177px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  margin-bottom: 8px;
}
@media (max-width: 395px) {
  .easy__text p {
    max-width: 100%;
  }
  .easy__text p br {
    display: none;
  }
}
.easy__text span {
  font-size: 16px;
  line-height: 20px;
  color: #818396;
}
@media (max-width: 395px) {
  .easy__text span br {
    display: none;
  }
}

.our-works__container {
  padding-bottom: 42px;
}
.our-works__title {
  margin-bottom: 38px;
}
@media (max-width: 593px) {
  .our-works__title {
    font-size: 33px;
    line-height: 35px;
    margin-bottom: 25px;
  }
}
.our-works__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 38px;
}
@media (max-width: 689px) {
  .our-works__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0;
  }
}
.our-works__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 15px;
  min-width: 345px;
  max-width: 50%;
}
@media (max-width: 689px) {
  .our-works__item {
    max-width: 100%;
    padding: 0 25px;
  }
}
.our-works__image {
  width: 100%;
  height: 250px;
}
.our-works__image img {
  width: 100%;
  height: 100%;
}
.our-works__item-title {
  margin-top: 11px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 21px;
  color: #17152C;
}
.our-works__texts {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 23px;
}
.our-works__texts p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  margin-bottom: 7px;
}
.our-works__texts p span {
  color: #2E81CD;
  font-weight: 700;
}
.our-works__btn {
  padding: 11px 22px;
}
.our-works__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.our-works__more a {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  border-bottom: 2px dashed #FFB800;
}

.reviews {
  background: #F6F8FB;
}
.reviews__container {
  padding: 72px 15px;
}
@media (max-width: 593px) {
  .reviews__container {
    padding: 35px 15px 45px;
  }
}
@media (max-width: 992px) {
  .reviews__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.reviews__title {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .reviews__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 593px) {
  .reviews__title {
    font-size: 33px;
    line-height: 35px;
    margin-bottom: 35px;
  }
}
.reviews__slider {
  position: relative;
}
.reviews__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reviews__slide img {
  width: 315px;
  height: 100%;
}
.reviews__image {
  margin-right: 65px;
}
@media (max-width: 992px) {
  .reviews__image {
    display: none;
  }
}
.reviews__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-bottom: 8px;
}
.reviews__source {
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .reviews__source {
    margin-bottom: 25px;
  }
}
.reviews__texts {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
}
.reviews__texts p {
  margin-bottom: 16px;
}

.reviews__slider.slick-slider {
  position: relative;
  display: -ms-grid;
  display: grid;
  padding: 0 15px;
}

.reviews__slider .slick-list {
  overflow: hidden;
}

.reviews__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.reviews__slider .slick-arrow {
  font-size: 0;
  position: absolute;
  bottom: 57px;
  z-index: 10;
  width: 17px;
  height: 30px;
}
@media (max-width: 992px) {
  .reviews__slider .slick-arrow {
    bottom: -10px;
  }
}

.reviews__slider .slick-arrow.slick-prev {
  left: 39%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  background: url("../img/reviews/arrowhover.png") 0 0/cover no-repeat;
}
@media (max-width: 992px) {
  .reviews__slider .slick-arrow.slick-prev {
    left: calc(23px + (350 - 23) * ((100vw - 320px) / (992 - 320)));
  }
}

.reviews__slider .slick-arrow.slick-next {
  right: 39%;
  background: url("../img/reviews/arrowhover.png") 0 0/cover no-repeat;
}
@media (max-width: 992px) {
  .reviews__slider .slick-arrow.slick-next {
    right: calc(23px + (350 - 23) * ((100vw - 320px) / (992 - 320)));
  }
}

.reviews__slider .slick-arrow.slick-next.slick-disabled {
  background: url("../img/reviews/arrow.png") 0 0/cover no-repeat;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.reviews__slider .slick-arrow.slick-prev.slick-disabled {
  background: url("../img/reviews/arrow.png") 0 0/cover no-repeat;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.reviews__slider .slick-dots {
  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: -30px auto 68px;
}
@media (max-width: 992px) {
  .reviews__slider .slick-dots {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.reviews__slider .slick-dots li {
  list-style: none;
  margin: 0 13.5px;
}

.reviews__slider .slick-dots li button {
  font-size: 0;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #818396;
}

.reviews__slider .slick-dots li.slick-active button {
  background: #FFB800;
}

.reward__container {
  padding: 72px 15px;
  max-width: 1047px;
}
@media (max-width: 788px) {
  .reward__container {
    padding: 35px 15px;
  }
}
.reward__title {
  margin-bottom: 55px;
}
@media (max-width: 788px) {
  .reward__title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 35px;
  }
}
.reward__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;
}
@media (max-width: 788px) {
  .reward__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reward__texts {
  font-size: 24px;
  line-height: 29px;
  color: #17152C;
}
.reward__texts p {
  margin-bottom: 20px;
  max-width: 541px;
}
@media (max-width: 788px) {
  .reward__texts {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .reward__texts p {
    max-width: 100%;
    margin-bottom: 10px;
  }
}
.reward__image {
  max-width: 313px;
}
.reward__image img {
  max-width: 100%;
}

.video {
  background: #F6F8FB;
}
.video__container {
  padding: 72px 15px;
}
@media (max-width: 992px) {
  .video__container {
    padding: 36px 15px 12px;
  }
}
.video__title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .video__title {
    margin-bottom: 35px;
    font-size: 40px;
  }
}
.video__youtube {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -50px;
}
@media (max-width: 992px) {
  .video__youtube {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}
.video__youtube iframe {
  width: 504px;
  height: 282px;
  padding: 0 50px;
}
@media (max-width: 992px) {
  .video__youtube iframe {
    padding: 0;
    height: 300px;
    width: 100%;
    margin-bottom: 24px;
  }
}

.service-cost__container {
  padding: 72px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 835px) {
  .service-cost__container {
    padding: 36px 15px;
  }
}
.service-cost__title {
  margin-bottom: 72px;
}
@media (max-width: 835px) {
  .service-cost__title {
    margin-bottom: 35px;
    font-size: 34px;
    line-height: 36px;
  }
}
.service-cost__content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 835px) {
  .service-cost__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.service-cost__list {
  margin-bottom: 72px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 0 15px;
}
@media (max-width: 835px) {
  .service-cost__list {
    margin-bottom: 25px;
  }
}
.service-cost__item-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-bottom: 19px;
}
.service-cost__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
  padding-left: 17px;
  position: relative;
  margin-bottom: 10px;
}
.service-cost__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #FFB800;
  -webkit-transform: translate(0, -90%) rotate(45deg);
          transform: translate(0, -90%) rotate(45deg);
}
.service-cost__button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 11px 26px;
  display: inline-block;
  background: #FFB800;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #17152C;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.service-cost__button:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.button-other-color {
  background: #FF005C;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.button-other-color:hover {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.ways {
  background: #FFB800;
  position: relative;
}
.ways > img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 636px;
  height: 369px;
  z-index: 0;
}
@media (max-width: 908px) {
  .ways > img {
    display: none;
  }
}
.ways__container {
  padding: 72px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 3;
}
@media (max-width: 908px) {
  .ways__container {
    padding: 35px 15px;
  }
}
.ways__title {
  margin-bottom: 72px;
}
@media (max-width: 908px) {
  .ways__title {
    margin-bottom: 35px;
    font-size: 33px;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .ways__title {
    font-size: 28px;
    line-height: 33px;
  }
}
.ways__title span {
  color: #FF005C;
}
.ways__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #17152C;
  margin-bottom: 72px;
}
@media (max-width: 908px) {
  .ways__subtitle {
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 35px;
  }
}
.ways__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  padding: 11px 66px;
  white-space: nowrap;
}

.about-us__container {
  padding: 72px 15px 57px;
}
@media (max-width: 1005px) {
  .about-us__container {
    padding: 35px 15px 20px;
  }
}
.about-us__title {
  margin-bottom: 38px;
}
@media (max-width: 600px) {
  .about-us__title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 35px;
  }
}
.about-us__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #818396;
}
.about-us__subtitle p {
  margin-bottom: 10px;
}
.about-us__subtitle a {
  font-weight: 700;
  color: #818396;
}
@media (max-width: 600px) {
  .about-us__subtitle {
    font-size: 16px;
  }
  .about-us__subtitle p {
    margin-bottom: 7px;
  }
}
.about-us__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 51px -12px 0;
}
@media (max-width: 600px) {
  .about-us__items {
    margin-top: 20px;
  }
}
.about-us__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  padding: 0 12px;
  margin-bottom: 15px;
}
@media (max-width: 912px) {
  .about-us__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
@media (max-width: 530px) {
  .about-us__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.about-us__count {
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  color: #FFB800;
  margin-bottom: 3px;
}
.about-us__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
}
.about-us__text span {
  font-weight: 700;
}

.masters__container {
  padding-bottom: 42px;
}
@media (max-width: 700px) {
  .masters__container {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.masters__title {
  margin-bottom: 55px;
}
@media (max-width: 700px) {
  .masters__title {
    margin-bottom: 25px;
    font-size: 27px;
    line-height: 33px;
  }
}
.masters__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}
@media (max-width: 1160px) {
  .masters__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.masters__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3333%;
          flex: 1 1 33.3333%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 1160px) {
  .masters__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 700px) {
  .masters__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.masters__img {
  width: 100%;
  height: 350px;
}
@media (max-width: 380px) {
  .masters__img {
    height: calc(290px + (350 - 290) * ((100vw - 320px) / (380 - 320)));
  }
}
.masters__img img {
  width: 100%;
  height: 350px;
}
@media (max-width: 380px) {
  .masters__img img {
    height: calc(290px + (350 - 290) * ((100vw - 320px) / (380 - 320)));
  }
}
.masters__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-top: 38px;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .masters__name {
    margin-top: 20px;
  }
}
.masters__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #17152C;
  margin-bottom: 19px;
}
@media (max-width: 700px) {
  .masters__info {
    margin-bottom: 10px;
  }
}
.masters__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
}

@media (max-width: 975px) {
  video {
    max-width: 600px;
  }
}
@media (max-width: 729px) {
  video {
    max-width: 450px;
  }
}
@media (max-width: 578px) {
  video {
    max-width: 350px;
  }
}
@media (max-width: 463px) {
  video {
    max-width: 300px;
  }
}

.video-reviews {
  background: #F6F8FB;
}
.video-reviews__container {
  padding: 72px 0;
  max-width: 1950px;
}
@media (max-width: 730px) {
  .video-reviews__container {
    padding: 35px 0;
  }
}
@media (max-width: 630px) {
  .video-reviews__container {
    padding: 20px 0;
  }
}
.video-reviews__title {
  margin-bottom: 72px;
}
@media (max-width: 730px) {
  .video-reviews__title {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 35px;
  }
}
@media (max-width: 630px) {
  .video-reviews__title {
    margin-bottom: 10px;
  }
}
.video-reviews__slider {
  position: relative;
}
.video-reviews__slide {
  margin: 0 50px;
  background: url("../img/video/1.png") 0 0/100% no-repeat;
  height: 430px;
  position: relative;
}
@media (max-width: 1173px) {
  .video-reviews__slide {
    margin: 0 20px;
  }
}
@media (max-width: 730px) {
  .video-reviews__slide {
    max-height: 350px;
  }
}
@media (max-width: 630px) {
  .video-reviews__slide {
    max-height: 300px;
    margin: 10px;
  }
}
@media (max-width: 503px) {
  .video-reviews__slide {
    max-height: 260px;
  }
}
@media (max-width: 458px) {
  .video-reviews__slide {
    max-height: 230px;
  }
}
@media (max-width: 394px) {
  .video-reviews__slide {
    max-height: 200px;
  }
}
@media (max-width: 353px) {
  .video-reviews__slide {
    max-height: 160px;
  }
}
.video-reviews__slide div {
  height: 120%;
}
.video-reviews__slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 503px) {
  .video-reviews__slide img {
    width: 50px;
    height: 50px;
  }
}
.video-reviews__content {
  padding: 44px 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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;
}
@media (max-width: 503px) {
  .video-reviews__content {
    padding: 25px;
  }
}
.video-reviews__review {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
}
.video-reviews__review p {
  margin-top: 9px;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 503px) {
  .video-reviews__review {
    font-size: 12px;
    line-height: 15px;
  }
  .video-reviews__review p {
    margin-top: 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.video-reviews__name {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}
@media (max-width: 503px) {
  .video-reviews__name {
    font-size: 12px;
    line-height: 15px;
  }
}

.video-reviews__slider.slick-slider {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
}

.video-reviews__slider .slick-list {
  overflow: hidden;
}

.video-reviews__slider .slick-slide {
  opacity: 0.65;
}

.video-reviews__slider .slick-current {
  opacity: 1;
}

.video-reviews__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.video-reviews__slider .slick-arrow {
  font-size: 0;
  position: absolute;
  top: 45%;
  z-index: 10;
  width: 17px;
  height: 30px;
}
@media (max-width: 630px) {
  .video-reviews__slider .slick-arrow {
    width: 10px;
    height: 20px;
  }
}

.video-reviews__slider .slick-arrow.slick-prev {
  left: 26%;
  background: url("../img/reviews/arrow.png") 0 0/cover no-repeat;
}
@media (max-width: 1894px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 27%;
  }
}
@media (max-width: 1779px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 300px;
  }
}
@media (max-width: 1439px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 200px;
  }
}
@media (max-width: 1173px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 55px;
  }
}
@media (max-width: 820px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 5px;
  }
}
@media (max-width: 630px) {
  .video-reviews__slider .slick-arrow.slick-prev {
    left: 6px;
  }
}

.video-reviews__slider .slick-arrow.slick-next {
  right: 26%;
  background: url("../img/reviews/arrow.png") 0 0/cover no-repeat;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 1894px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 27%;
  }
}
@media (max-width: 1779px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 300px;
  }
}
@media (max-width: 1439px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 200px;
  }
}
@media (max-width: 1173px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 55px;
  }
}
@media (max-width: 820px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 5px;
  }
}
@media (max-width: 630px) {
  .video-reviews__slider .slick-arrow.slick-next {
    right: 6px;
  }
}

.discount {
  background: #FFB800;
}
.discount__container {
  padding: 43px 15px;
  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;
}
@media (max-width: 992px) {
  .discount__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 547px) {
  .discount__container {
    padding: 30px 15px;
  }
}
.discount__content {
  max-width: 570px;
}
@media (max-width: 992px) {
  .discount__content {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.discount__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  color: #17152C;
  margin-bottom: 43px;
}
.discount__title span {
  color: #FF005C;
}
@media (max-width: 992px) {
  .discount__title {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 547px) {
  .discount__title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.discount__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #17152C;
}
@media (max-width: 547px) {
  .discount__subtitle {
    text-align: center;
    font-size: 20px;
  }
}
.discount__form {
  background: #FFFFFF;
  border-radius: 30px;
  max-width: 380px;
  padding: 35px 27px 35px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 420px) {
  .discount__form {
    max-width: 100%;
    padding: 25px;
  }
}
.discount__form-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #17152C;
  margin-bottom: 17px;
}
.discount__form-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #818396;
  margin-bottom: 15px;
}
.discount__form-name {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 27px;
}
@media (max-width: 420px) {
  .discount__form-name {
    padding: 0;
  }
}
.discount__form-name p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
  color: #17152C;
}
.discount__form-name input {
  width: 100%;
  border-bottom: 1px solid #818396;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
}
.discount__form-number {
  margin-bottom: 27px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 420px) {
  .discount__form-number {
    padding: 0;
  }
}
.discount__form-number p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
  color: #17152C;
}
.discount__form-number input {
  width: 100%;
  border-bottom: 1px solid #818396;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #818396;
}
.discount__form-button {
  display: inline-block;
  padding: 17px 58px;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .discount__form-button {
    padding: 15px 40px;
  }
}
.discount__form-footer {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #818396;
  margin-top: 11px;
}
.discount__form-footer a {
  color: #2E81CD;
}

.questions {
  background-color: #F6F8FB;
}
.questions__container {
  padding: 72px 15px;
}
@media (max-width: 691px) {
  .questions__container {
    padding: 35px 15px;
  }
}
.questions__title {
  margin-bottom: 72px;
}
@media (max-width: 691px) {
  .questions__title {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 35px;
  }
}
.block {
  padding: 19px 23px;
  margin-bottom: 10px;
  background: #FFFFFF;
}
@media (max-width: 691px) {
  .block {
    padding: 15px 20px;
  }
}
.block__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #17152C;
  cursor: pointer;
  position: relative;
  padding-left: 40px;
}
.block__title:before {
  content: "";
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 20px;
  height: 20px;
  top: 3px;
  background: url("../img/arrowbottom.png") 0 0/cover no-repeat;
  position: absolute;
  left: 0;
}
.block__title.active {
  color: #FFB800;
  font-weight: 700;
}
.block__title.active:before {
  background: url("../img/arrowtop.png") 0 0/cover no-repeat;
}
@media (max-width: 691px) {
  .block__title {
    font-size: 20px;
  }
}
.block__text {
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-top: 19px;
}

.contacts {
  position: relative;
  min-height: 500px;
}
@media (max-width: 1008px) {
  .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.contacts__map {
  width: 100%;
  height: 500px;
}
@media (max-width: 1008px) {
  .contacts__map {
    width: 50%;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .contacts__map {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contacts__map {
    height: calc(320px + (500 - 320) * ((100vw - 320px) / (500 - 320)));
  }
}
.contacts_container {
  padding: 72px 15px;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 776px;
}
@media (max-width: 1008px) {
  .contacts_container {
    position: static;
    width: 50%;
    min-width: 50%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contacts_container {
    width: 100%;
  }
}
.contacts__body {
  padding-top: 67px;
  max-width: 446px;
  padding-left: 67px;
  min-height: 356px;
  background: #EFF3F6;
  margin-left: 390px;
}
@media (max-width: 1920px) {
  .contacts__body {
    margin-left: calc(30px + (390 - 30) * ((100vw - 1020px) / (1920 - 1020)));
  }
}
@media (max-width: 1620px) {
  .contacts__body {
    width: 360px;
  }
}
@media (max-width: 1008px) {
  .contacts__body {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .contacts__body {
    padding: 50px;
  }
}
.contacts__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #17152C;
  margin-bottom: 32px;
}
.contacts__number {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FF005C;
}
.contacts__info {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #17152C;
  margin-top: 19px;
}
.contacts__info a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  margin-top: 10px;
}

.footer {
  background: #787B8C;
}
.footer__container {
  padding-top: 20px;
  padding-bottom: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1054px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 674px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 30px;
  }
}
.footer__logo {
  margin-top: -20px;
  margin-right: 30px;
}
@media (max-width: 674px) {
  .footer__logo {
    margin-right: 0;
  }
}
@media (max-width: 674px) {
  .footer__content {
    margin-top: 30px;
    text-align: center;
  }
}
.footer__confidence {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
  color: #EFF3F7;
  margin-bottom: 13px;
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #EFF3F7;
  max-width: 750px;
}
.footer__copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #EFF3F7;
  margin-top: 10px;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  opacity: 1;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(196, 196, 196, 0.9);
  top: 0;
  left: 0;
  z-index: 82;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
}

.popup span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popup__body {
  min-height: 100%;
  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;
  padding: 30px 10px;
}

.discount__form {
  z-index: 90;
}
.form-discount{
  z-index: 15;
}