/* -- Reset -- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-osx-font-smoothing-text-rendering: optimizeSpeed;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, hr, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  border: 0;
  vertical-align: baseline;
  padding: 0;
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, img {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:hover, a:focus, a:active, button, select, option {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

svg {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input, textarea {
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input::placeholder, textarea::placeholder {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* -- End Reset -- */
/* -- Fonts -- */
@font-face {
  font-family: "GothamPro";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/GothamPro/GothamPro.eot");
  src: url("../fonts/GothamPro/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro/GothamPro.woff") format("woff"), url("../fonts/GothamPro/GothamPro.ttf") format("truetype");
}

@font-face {
  font-family: "GothamProMedium";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/GothamProMedium/GothamProMedium.eot");
  src: url("../fonts/GothamProMedium/GothamProMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamProMedium/GothamProMedium.woff") format("woff"), url("../fonts/GothamProMedium/GothamProMedium.ttf") format("truetype");
}

@font-face {
  font-family: "TrueLies";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/TrueLies/TrueLies.eot");
  src: url("../fonts/TrueLies/TrueLies.eot?#iefix") format("embedded-opentype"), url("../fonts/TrueLies/TrueLies.woff") format("woff"), url("../fonts/TrueLies/TrueLies.ttf") format("truetype");
}

/* -- End Fonts -- */
/* -- Preloader -- */
.preloader {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: inherit;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background: #202020;
  z-index: 9999;
}

.preloader .pulse {
  position: relative;
}

.preloader .pulse:before, .preloader .pulse:after {
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  border: 5px solid #fff;
  -webkit-border-radius: 500px;
          border-radius: 500px;
  margin: 0 0 0 -40px;
}

.preloader .pulse:before {
  -webkit-animation: pulseOut .8s ease-in infinite;
          animation: pulseOut .8s ease-in infinite;
}

.preloader .pulse:after {
  -webkit-animation: pulseIn .8s linear infinite;
          animation: pulseIn .8s linear infinite;
}

@-webkit-keyframes pulseOut {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulseOut {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulseIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulseIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/* -- Preloader -- */
/* -- General -- */
html {
  overflow-x: hidden;
}

body {
  position: relative;
  font: 16px "GothamPro", sans-serif;
  color: #fff;
  background: #000;
  overflow: hidden;
}

h1 {
  font: 72px/1 "Playfair Display", serif;
}

h2 {
  font: 42px/1 "Playfair Display", serif;
}

.input {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 57px;
}

.input input {
  display: block;
  width: 100%;
  height: 100%;
  font: 16px/1 "GothamPro", sans-serif;
  color: #fff;
  background: none;
  border: none;
  -webkit-border-radius: 0px;
          border-radius: 0px;
  padding: 12px 0;
}

.input input:focus + span:after {
  -webkit-box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%), inset 0 0 7px 1px rgba(171 171 171 / 68%);
          box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%), inset 0 0 7px 1px rgba(171 171 171 / 68%);
}

.input input:focus + span svg {
  -webkit-filter: drop-shadow(0 0 7px 1px rgba(171 171 171 / 68%));
          filter: drop-shadow(0 0 7px 1px rgba(171 171 171 / 68%));
}

.input span {
  display: block;
  width: 31px;
  height: 31px;
}

.input span:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.input span img, .input span svg {
  position: absolute;
  right: 0;
  width: 31px;
  height: 31px;
}

.checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.checkbox input:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 28px;
}

.checkbox span:before, .checkbox span:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.checkbox span:before {
  width: 15px;
  height: 15px;
  border: 1px solid #e4e4e4;
}

.checkbox span:after {
  top: 7px;
  left: 5px;
  width: 5px;
  height: 5px;
  background: #e4e4e4;
  opacity: 0;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 218px;
  height: 60px;
  color: #161616;
  background: transparent;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  margin: 9px 10px;
}

.btn:before, .btn:after {
  content: '';
  position: absolute;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.btn:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(-27deg, #757373 0%, #e4e4e4 100%);
  -webkit-border-radius: 30px;
          border-radius: 30px;
}

.btn:after {
  top: -9px;
  right: -10px;
  bottom: -9px;
  left: -10px;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.43), inset 0 0 3px 2px rgba(255, 255, 255, 0.43);
          box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.43), inset 0 0 3px 2px rgba(255, 255, 255, 0.43);
  -webkit-border-radius: 38.5px;
          border-radius: 38.5px;
  opacity: .25;
}

.btn:hover {
  background: #f1f1f1;
}

.btn:hover:after {
  opacity: .4;
}

.overflow .simplebar-track {
  width: 5px;
  background: #141414;
  -webkit-border-radius: 2.5px;
          border-radius: 2.5px;
}

.overflow .simplebar-track.vertical .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
}

.overflow .simplebar-track.horizontal {
  display: none;
  width: auto;
  height: 5px;
}

.overflow .simplebar-scrollbar {
  right: 0;
  width: 5px;
}

.overflow .simplebar-scrollbar:before {
  background: #e4e4e4;
  -webkit-border-radius: 2.5px;
          border-radius: 2.5px;
  opacity: 1;
}

.overflow .simplebar-scrollbar.visible:before {
  opacity: 1;
}

.overflow .simplebar-content {
  padding: 0 30px 0 0;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-arrow-right:before {
  border-left: 27px solid #e4e4e4;
}

.mfp-arrow-left:before {
  border-right: 27px solid #e4e4e4;
}

.fp-enabled body, html.fp-enabled {
  margin: 0 !important;
}

[class*="ymaps-2"][class*="-ground-pane"] {
  -webkit-filter: grayscale(1) invert(100%);
          filter: grayscale(1) invert(100%);
}

[class*="ymaps-2"][class*="-image"] {
  background-repeat: no-repeat;
}

[class*="ymaps-2"][class*="-copyrights-pane"] {
  opacity: 0;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

/* -- End General -- */
/* -- Nav -- */
.nav {
  position: fixed;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background: #161616;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 101;
}

.nav.open {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.nav #nav-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  opacity: .3;
  z-index: 2;
}

.nav-logo {
  position: relative;
  display: none;
  width: 80px;
  margin: 20px auto -70px;
  z-index: 2;
}

.nav-logo img {
  width: 100%;
}

.nav-menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 100vh;
  background: #161616;
  z-index: 1;
}

.nav-menu-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-menu-link {
  position: relative;
  display: block;
  color: #fff;
  font: 32px/62px "Playfair Display", serif;
}

.nav-menu-link:after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e4e4e4;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-menu-link:hover {
  color: #e4e4e4;
}

.nav-menu-link.active:after {
  opacity: 1;
}

.nav-menu-font {
  font-family: "TrueLies", sans-serif;
}

.nav-close {
  position: absolute;
  top: 64px;
  right: 64px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 3;
}

.nav-close img {
  width: 100%;
  height: 100%;
}

/* -- End Nav -- */
/* -- Header -- */
.head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 11;
}

.head-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 165px;
}

.head-toggle {
  position: fixed;
  top: 72px;
  left: 56px;
  width: 35px;
  height: 22px;
  cursor: pointer;
}

.head-toggle:hover hr:nth-child(2) {
  width: 100%;
}

.head-toggle hr {
  width: 100%;
  height: 2px;
  background: #fff;
  border: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.head-toggle hr:nth-child(2) {
  width: 85%;
  margin: 8px 0;
}

.head-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-address img {
  height: 33px;
}

.head-address span {
  display: block;
  line-height: 22px;
  margin: 0 0 0 30px;
}

.head-logo {
  margin: 0 38px 0 0;
}

.head-logo a {
  display: block;
  width: 250px;
}

.head-logo a img {
  width: 100%;
}

.head-phone {
  text-align: right;
}

.head-phone-mobile {
  display: none;
}

.head-phone-mobile a {
  display: block;
  width: 30px;
  height: 30px;
}

.head-phone-mobile a img {
  width: 100%;
  height: 100%;
}

.head-phone span {
  display: block;
  font: 24px/22px "GothamProMedium", sans-serif;
  margin: 0 0 5px;
}

.head-phone a {
  position: relative;
  display: inline-block;
  color: #e4e4e4;
  line-height: 22px;
  border-bottom: 1px solid #e4e4e4;
}

.head-phone a:hover {
  border-bottom: 1px solid transparent;
}

/* -- End Header -- */
/* -- About1 -- */
.about1 {
  position: relative;
  height: 100vh;
  background: url("../img/about_bg_1.jpg") no-repeat center top;
}

.about1-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 50%;
  height: 100vh;
  padding: 0 150px 0 0;
}

.h12 h1 {
   font-size: 22px;
    line-height: 1.5;
}

.about-title {
  margin: 0 0 50px;
}

.about-title h2 {
  line-height: 46px;
}

.about-text {
  max-height: 466px;
  line-height: 24px;
}

.about-note {
  line-height: 24px;
  margin: 70px -150px 0 0;
}

.about-more {
  position: relative;
  display: none;
  color: #fff;
  font-size: 14px;
  margin: 25px 0 0;
}

.about-more:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.about-more:hover:after {
  opacity: 0;
}

/* -- End About1 -- */
/* -- Main -- */
.main {
  position: relative;
  display: block;
  height: 100vh;
  background: url("../img/main_bg.jpg") no-repeat right top;
}

.main-row {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 100vh;
  z-index: 2;
}

.main-title {
  margin: 80px 0 70px;
}

.main-discount {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 -15px;
}

.main-discount-percent {
  font: 72px/1 "Playfair Display", serif;
  opacity: .1;
}

.main-discount-text {
  line-height: 20px;
  margin: 5px 0 0 45px;
}

.main-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: .1;
  margin: 0 -20px 0 0;
}

.main-note-age {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #e4e4e4;
  border: 3px solid #e4e4e4;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin: 0 17px 0 0;
}

.main-note-text {
  line-height: 22px;
}

/* -- End Main -- */
/* -- Advantages -- */
.advantages {
  position: relative;
}

.advantages-row {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1102px;
  height: 250px;
  -webkit-box-shadow: 0 0 16px 1.5px rgba(0, 0, 0, 0.44), 30px -33px 0 0 #e4e4e4;
          box-shadow: 0 0 16px 1.5px rgba(0, 0, 0, 0.44), 30px -33px 0 0 #e4e4e4;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  -webkit-transform: matrix(1, 0, -0.1, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.1, 1, 0, 0);
          transform: matrix(1, 0, -0.1, 1, 0, 0);
  margin: 33px 0 0 3px;
}

.advantages-row:after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  left: -10px;
  background: #000 url("../img/pattern.png");
  -webkit-border-radius: 10px;
          border-radius: 10px;
  -webkit-transform: matrix(1, 0, 0.1, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.1, 1, 0, 0);
          transform: matrix(1, 0, 0.1, 1, 0, 0);
  z-index: -1;
}

.advantages-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: matrix(1, 0, 0.1, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.1, 1, 0, 0);
          transform: matrix(1, 0, 0.1, 1, 0, 0);
  margin: 0 20px;
}

.advantages-box-numb {
  font: 72px/1 "GothamProMedium", sans-serif;
  margin: 0 24px 0 0;
}

.advantages-box-text {
  line-height: 24px;
}

/* -- End Advantages -- */
/* -- Worker -- */
.worker {
  position: relative;
  padding: 180px 0 60px;
}

.worker-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.worker-title {
  width: 146px;
  margin: 80px 125px 0 0;
}

.worker-more {
  position: relative;
  display: inline-block;
  color: #fff;
  margin: 20px 0 0;
}

.worker-more:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.worker-more:hover:after {
  opacity: 0;
}

.worker-slider {
  width: 1250px;
}

.worker-slider .slick-list {
  margin: 0 -15px;
}

.worker-slider .slide {
  height: 454px;
  margin: 0 15px;
}

.worker-slider .slide:hover .slide-row {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  margin: 30px 0;
}

.worker-slider .slide-down .slide-row {
  margin: 60px 0 0;
}

.worker-slider .slide-row {
  display: block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.worker-slider .slide-img {
  display: block;
  width: 100%;
  height: 356px;
}

.worker-slider .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worker-slider .slide-name {
  display: block;
  color: #fff;
  margin: 20px 0 0;
}

.worker-slider .slide-name b {
  color: #ffffff;
}

/* -- End Worker -- */
/* -- About -- */
.about {
  position: relative;
  height: 100vh;
  background: url("../img/about_bg.png") no-repeat center top;
}

.about-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 50%;
  height: 100vh;
  padding: 0 150px 0 0;
}

.about-title {
  margin: 0 0 50px;
}

.about-title h2 {
  line-height: 46px;
}

.about-text {
  max-height: 466px;
  line-height: 24px;
}

.about-note {
  line-height: 24px;
  margin: 70px -150px 0 20px;
}

.about-more {
  position: relative;
  display: none;
  color: #fff;
  font-size: 14px;
  margin: 25px 0 0;
}

.about-more:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.about-more:hover:after {
  opacity: 0;
}

/* -- End About -- */
/* -- Program -- */
.program {
  position: relative;
  padding: 0 0 90px;
}

.program-title {
  margin: 0 0 70px;
}

.program-title h2 {
  line-height: 46px;
}

.program-slider {
  margin: 0 13px 70px;
}

.program-slider .slick-list {
  margin: 0 -15.5px;
}

.program-slider .slide {
  position: relative;
  height: 461px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  overflow: hidden;
  -webkit-transform: matrix(1, 0, -0.05, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.05, 1, 0, 0);
          transform: matrix(1, 0, -0.05, 1, 0, 0);
  margin: 0 15.5px;
}

.program-slider .slide:hover .slide-img {
  opacity: 1;
}

.program-slider .slide-img {
  display: block;
  height: 100%;
  opacity: .8;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 -12px;
}

.program-slider .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: matrix(1, 0, 0.05, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.05, 1, 0, 0);
          transform: matrix(1, 0, 0.05, 1, 0, 0);
}

.program-slider .slide-tag {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 20px;
  top: 45px;
  right: 40px;
  font: 14px/1 "GothamProMedium", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background: #f24841;
  -webkit-border-radius: 7px 5px;
          border-radius: 7px 5px;
  -webkit-transform: matrix(1, 0, -0.25, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.25, 1, 0, 0);
          transform: matrix(1, 0, -0.25, 1, 0, 0);
  z-index: 2;
}

.program-slider .slide-tag b {
  -webkit-transform: matrix(1, 0, 0.3, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.3, 1, 0, 0);
          transform: matrix(1, 0, 0.3, 1, 0, 0);
}

.program-slider .slide-info {
  position: absolute;
  left: 40px;
  bottom: 45px;
  color: #fff;
  -webkit-transform: matrix(1, 0, 0.05, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.05, 1, 0, 0);
          transform: matrix(1, 0, 0.05, 1, 0, 0);
  z-index: 2;
}

.program-slider .slide-title {
  display: block;
  font: 20px/1 "GothamProMedium", sans-serif;
}

.program-slider .slide-text {
  display: block;
  line-height: 24px;
  margin: 12px 0 8px;
}

.program-slider .slide-price {
  display: block;
  font: 16px/1 "GothamProMedium", sans-serif;
}

.program-more {
  margin: 9px auto;
}

/* -- End Program -- */
/* -- Interior -- */
.interior {
  position: relative;
  padding: 0 0 100px;
}

.interior-title {
  margin: 0 0 50px;
}

.interior-title h2 {
  line-height: 46px;
  text-transform: none;
}

.interior-slider {
  padding: 0 97px;
}

.interior-slider .slick-dots {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -60px;
  margin: 0;
}

.interior-slider .slick-dots li {
  width: 20px;
  height: 20px;
  background: transparent;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.interior-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #2e2e2e;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.interior-slider .slick-dots li.slick-active {
  width: 20px;
}

.interior-slider .slick-dots li.slick-active button {
  width: 100%;
  height: 100%;
  background: #e4e4e4;
}

.interior-slider .slide {
  position: relative;
  height: 555px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
}

.interior-slider .slide:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #000), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to top, #000 10%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
}

.interior-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -- End Interior -- */
/* -- Discount -- */
.discount {
  position: relative;
  height: 100vh;
  background: url("../img/discount_bg.jpg") no-repeat center top;
}

.discount-row {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 100vh;
  z-index: 1;
}

.discount-title {
  margin: 0 0 200px;
}

.discount-title h2 {
  line-height: 46px;
}

.discount-form {
  width: 575px;
}

.discount-form .field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 60px;
}

.discount-form .field-line {
  width: 250px;
}

.discount-form .field-line-label {
  margin: 0 0 5px;
}

.discount-form .field-line .input {
  width: 100%;
}

.discount-form .btn {
  margin: 9px auto;
}

.discount-form .checkbox {
  width: 235px;
  margin: 30px auto 0;
}

/* -- End Discount -- */
/* -- Contacts -- */
.contacts {
  position: relative;
  height: 100vh;
  background: #161616;
}

.contacts #contacts-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .3;
  z-index: 1;
}

.contacts-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 100vh;
}

.contacts-title {
  position: relative;
  margin: 0 0 120px;
  z-index: 2;
}

.contacts-title h2 {
  line-height: 46px;
}

.contacts-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 585px;
  height: 585px;
  background: #1a1a1a;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-transform: matrix(1, 0, -0.05, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.05, 1, 0, 0);
          transform: matrix(1, 0, -0.05, 1, 0, 0);
  padding: 0 135px;
  margin: 0 15px;
  z-index: 2;
}

.contacts-item {
  line-height: 24px;
  -webkit-transform: matrix(1, 0, 0.05, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.05, 1, 0, 0);
          transform: matrix(1, 0, 0.05, 1, 0, 0);
}

.contacts-item:not(:last-child) {
  margin: 0 0 60px;
}

.contacts-item span {
  display: block;
  font: 24px/1 "Playfair Display", serif;
  margin: 0 0 10px;
}

.contacts-item a {
  color: #fff;
}

/* -- End Contacts -- */
/* -- Page -- */
.page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.page-head {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: 0;
  right: 162px;
  left: 0;
  height: 230px;
  z-index: 11;
}

.page-head .head-toggle {
  position: relative;
  display: none;
  top: auto;
  left: auto;
}

.page-head .head-logo {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 0 0 0 35px;
  margin: 0;
}

.page-nav {
  position: relative;
  width: 328px;
  height: 100vh;
  background: #161616;
  padding: 230px 0;
  z-index: 5;
}

.page-nav-services {
  position: fixed;
}

.page-nav .nav-menu {
  height: auto;
  background: #161616;
}

.page-nav .nav-menu-item {
  display: block;
}

.page-nav .nav-menu-link {
  font-size: 18px;
  line-height: 44px;
  padding: 0 40px;
}

.page-nav .nav-menu-link:after {
  display: none;
}

.page-nav .nav-menu-link:hover {
  color: #e4e4e4;
}

.page-nav .nav-menu-link.active {
  color: #2e2e2e;
  background: #e4e4e4;
}

.page-nav .nav-menu-font {
  padding: 5px 40px 0;
}

.page-socials {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 0;
  bottom: 40px;
  left: 0;
}

.page-socials a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 7px;
}

.page-socials a:hover svg {
  fill: #e4e4e4;
}

.page-socials a svg {
  width: 100%;
  height: 100%;
  fill: #303030;
}

.page-full {
  position: relative;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  height: 100vh;
}

.page-about-text {
  width: 100%;
  max-height: 540px;
  line-height: 24px;
  margin: 120px 0 0;
}

.page-about-text .simplebar-track {
  right: 30px;
}

.page-about-text .simplebar-content {
  padding: 0 100px 0 0;
}

.page-about-text h3 {
  font-size: 24px;
  margin: 0 0 60px;
}

.page-about-text p:not(:last-child) {
  margin: 0 0 30px;
}

.page-about-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  height: 100%;
  padding: 100px 112px 0 0;
  margin: 0 -100% 0 0;
}

.page-about-box {
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);
  text-align: center;
  margin: 30px 0;
}

.page-about-box-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140px;
}

.page-about-box-icon img {
  height: 100%;
}

.page-about-box-info {
  line-height: 24px;
  margin: 45px 0 0;
}

.page-about-box-info h4 {
  font: 18px/24px "GothamProMedium", sans-serif;
  margin: 0 0 20px;
}

.page-about-list {
  width: 100%;
  max-height: 450px;
  line-height: 20px;
  margin: 150px 0 75px;
}

.page-about-list .simplebar-track {
  right: 30px;
}

.page-about-list .simplebar-content {
  padding: 0 160px 0 0;
}

.page-about-list ul {
  padding: 5px 0 5px 5px;
}

.page-about-list li {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  padding: 10px 0 10px 100px;
}

.page-about-list li:before, .page-about-list li:after {
  content: '';
  position: absolute;
  left: 0;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.page-about-list li:before {
  left: 12.5px;
  width: 35px;
  height: 35px;
  background: linear-gradient(-27deg, #e4e4e4 0%, #7a7a7a 100%);
  -webkit-border-radius: 30px;
          border-radius: 30px;
}

.page-about-list li:after {
  top: -webkit-calc(50% - 30px);
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.43), inset 0 0 3px 2px rgba(255, 255, 255, 0.43);
          box-shadow: 0 0 3px 2px rgba(255, 255, 255, 0.43), inset 0 0 3px 2px rgba(255, 255, 255, 0.43);
  opacity: .25;
}

.page-about-list li:not(:last-child) {
  margin: 0 0 35px;
}

.page-about-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-about-btn p {
  line-height: 20px;
  margin: 0 70px 0 0;
}

.page-masters-block {
  width: 100%;
  margin: 120px 0 0;
}

.page-masters-name {
  position: relative;
  font: 32px/1 "GothamProMedium", sans-serif;
  padding: 0 0 30px;
  margin: 0 0 25px;
}

.page-masters-name:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 5px;
  background: #e4e4e4;
}

.page-masters-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0 0;
}

.page-masters-feature-item {
  text-align: center;
  margin: 0 70px 0 0;
}

.page-masters-feature-item span {
  display: block;
  font: 60px/56px "Playfair Display", serif;
  margin: 0 0 25px;
}

.page-masters-text {
  max-height: 250px;
  line-height: 24px;
}

.page-masters-text .simplebar-track {
  right: 30px;
}

.page-masters-text .simplebar-content {
  padding: 0 290px 0 0;
}

.page-masters-gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 0 0;
}

.page-masters-gallery a:hover span:after {
  opacity: 0;
}

.page-masters-gallery a:not(:first-child) {
  display: none;
}

.page-masters-gallery a span {
  color: #fff;
  position: relative;
  display: inline-block;
}

.page-masters-gallery a span:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page-masters-gallery a img {
  display: none;
}

.page-program-text {
  width: 100%;
  max-height: 320px;
  font-size: 18px;
  line-height: 30px;
  margin: 70px 0 40px;
}

.page-program-text .simplebar-track {
  right: 30px;
}

.page-program-text .simplebar-content {
  padding: 0 135px 0 0;
}

.page-program-double {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  width: 100%;
}

.page-program-double .page-program-info:first-child {
  margin: 0 100px 20px 0;
}

.page-program-quad {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  width: 100%;
}

.page-program-quad-title {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 10px;
}

.page-program-quad .page-program-info {
  margin: 0 0 20px;
}

.page-program-quad .page-program-info:not(:last-child) {
  margin: 0 100px 20px 0;
}

.page-program-quad + .page-program-btn {
  margin: 30px 0 0;
}

.page-program-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font: 18px/30px "GothamProMedium", sans-serif;
  margin: 0 0 90px;
}

.page-program-price {
  margin: 0 30px 0 0;
}

.page-program-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-program-time img {
  width: 30px;
  height: 30px;
  margin: 0 15px 0 0;
}

.page-program .page-img img:not(:first-child) {
  display: none;
}

.page-services {
  height: 100%;
  padding: 0 0 0 328px;
}

.page-services .page-section {
  position: relative;
}

.page-services .page-row {
  width: 100%;
  padding: 0 112px 0 0;
}

.page-services .page-img {
  position: fixed;
  left: 328px;
}

.page-services .page-img:after {
  right: 0;
}

.page-services-subtitle {
  width: 50%;
  font-size: 18px;
  line-height: 24px;
  margin: 70px 0 0;
}

.page-services-accordion {
  margin: 30px 250px 50px 0;
}

.page-services-box {
  margin: 0 0 2px;
}

.page-services-box.open .page-services-box-head {
  color: #161616;
  background: #e4e4e4;
}

.page-services-box.open .page-services-box-arrow {
  border: 1px solid #161616;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.page-services-box.open .page-services-box-arrow svg {
  fill: #161616;
}

.page-services-box-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font: 18px/1.4 "Playfair Display", serif;
  background: #161616;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 15px 30px;
}

.page-services-box-head span {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
}

.page-services-box-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page-services-box-arrow svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.page-services-box-body {
  display: none;
  background: #000;
  padding: 0 30px;
}

.page-services-box-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  padding: 18px 0;
}

.page-services-box-line:not(:last-child) {
  border-bottom: 1px solid rgba(220, 179, 110, 0.2);
}

.page-services-box-line ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-services-box-line ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 15px;
}

.page-services-box-line ul li img {
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
}

.page-services-box-name {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  font: 15px/1.4 "GothamProMedium", sans-serif;
  color: #e4e4e4;
}

.page-certificate .page-row {
  width: 100%;
}

.page-certificate-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 112px 0 0;
  margin: 60px 0 0;
}

.page-certificate-tabList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: space-between;
      -ms-flex-line-pack: justify;
          align-content: space-between;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  width: 23.914%;
}

.page-certificate-tabItem {
  position: relative;
  width: 100%;
  height: 150px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.page-certificate-tabItem:hover .page-certificate-tabImg, .page-certificate-tabItem.active .page-certificate-tabImg {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.page-certificate-tabItem:hover .page-certificate-tabPrice, .page-certificate-tabItem.active .page-certificate-tabPrice {
  color: #fff;
}

.page-certificate-tabImg {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page-certificate-tabImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-certificate-tabPrice {
  position: absolute;
  bottom: 20px;
  left: 25px;
  color: #565656;
  line-height: 22px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.page-certificate-tabPrice span {
  display: block;
  font: 48px/1 "GothamProMedium", sans-serif;
  margin: 5px 0 0;
}

.page-certificate-tabOrder {
  position: relative;
  display: block;
  color: #fff;
  line-height: 22px;
  text-decoration: underline;
  -webkit-text-decoration-color: #e4e4e4;
          text-decoration-color: #e4e4e4;
  text-align: center;
}

.page-certificate-tabOrder:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.page-certificate-tabWrap {
  position: relative;
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  width: 69.567%;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
  -webkit-transform: matrix(1, 0, -0.065, 1, 0, 0);
      -ms-transform: matrix(1, 0, -0.065, 1, 0, 0);
          transform: matrix(1, 0, -0.065, 1, 0, 0);
  margin: 0 70px 0 20px;
}

.page-certificate-tabInfo {
  position: relative;
  display: none;
  height: 635px;
  background-repeat: no-repeat;
  background-position: 50% center;
  background-size: cover;
  -webkit-transform: matrix(1, 0, 0.065, 1, 0, 0);
      -ms-transform: matrix(1, 0, 0.065, 1, 0, 0);
          transform: matrix(1, 0, 0.065, 1, 0, 0);
  padding: 70px 6.3% 60px 13.6%;
  margin: 0 -20px;
  z-index: 1;
}

.page-certificate-tabInfo:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(220, 179, 110, 0.4);
}

.page-certificate-tabRow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  height: 100%;
}

.page-certificate-tabTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  width: 100%;
  line-height: 22px;
}

.page-certificate-tabTitle span {
  display: block;
  font: 42px/1 "Playfair Display", serif;
}

.page-certificate-tabFeature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 50px 0 0;
}

.page-certificate-tabBox {
  text-align: center;
  line-height: 22px;
  margin: 0 5.5%;
}

.page-certificate-tabBox span {
  display: block;
  font: 42px/1 "GothamProMedium", sans-serif;
  margin: 0 0 20px;
}

.page-certificate-tabNote {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  width: 100%;
  line-height: 22px;
  padding: 0 0 0 4.3%;
}
.master-btn {
	margin-top: 50px;
}
.page-certificate-tabNote span {
  display: block;
}

.page-reviews-block {
  width: 100%;
  margin: 130px 0 0;
}

.page-reviews-name {
  font: 18px/1 "GothamProMedium", sans-serif;
  margin: 0 0 15px;
}

.page-reviews-link {
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 40px;
}

.page-reviews-link a {
  display: inline-block;
  color: #fff;
  border-bottom: 1px solid #e4e4e4;
}

.page-reviews-link a:hover {
  border-bottom: 1px solid transparent;
}

.page-reviews-text {
  max-height: 300px;
  line-height: 24px;
}

.page-reviews-text .simplebar-track {
  right: 30px;
}

.page-reviews-text .simplebar-content {
  padding: 0 250px 0 0;
}

.page-vacancy-text {
  width: 100%;
  max-height: 500px;
  margin: 80px 0 50px;
}

.page-vacancy-text .simplebar-track {
  right: 15px;
}

.page-vacancy-text .simplebar-content {
  padding: 0 50px 0 0;
}

.page-vacancy-text p {
  font: 18px/26px "GothamProMedium", sans-serif;
  margin: 0 0 50px;
}

.page-vacancy-text ul {
  position: relative;
  padding: 0 0 0 70px;
}

.page-vacancy-text ul:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e4e4e4;
}

.page-vacancy-text ul li {
  line-height: 32px;
}

.page-vacancy-more {
  line-height: 32px;
}

.page-vacancy-more a {
  position: relative;
  display: inline-block;
  color: #fff;
}

.page-vacancy-more a:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: #e4e4e4;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page-vacancy-more a:hover:after {
  background: transparent;
}

.page-vacancy ~ .page-foot .foot-row {
  color: #161616;
}

.page-vacancy ~ .page-foot .foot-privacy a:first-child {
  color: #161616;
}

.page-vacancy ~ .page-foot .foot-privacy a:first-child:hover {
  color: #e4e4e4;
}

.page-vacancy ~ .page-foot .foot-developer a {
  color: #161616;
}

.page-vacancy ~ .page-foot .foot-developer a:hover:after {
  background: transparent;
}

.page-contacts {
  background: #161616;
}

.page-contacts-row {
  margin: 175px 0 0;
}

.page-contacts-item {
  line-height: 24px;
}

.page-contacts-item:not(:last-child) {
  margin: 0 0 60px;
}

.page-contacts-item span {
  display: block;
  font: 24px/1 "Playfair Display", serif;
  margin: 0 0 10px;
}

.page-contacts-item a {
  color: #fff;
}

.page-section {
  padding: 87px 50px;
}

.page-section #contacts-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .3;
  z-index: 0;
}

.page-section #contacts-map:after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-row {
  position: relative;
  width: 50%;
  z-index: 1;
}

.page-title {
  position: relative;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  width: 100%;
  font: 42px/34px "Playfair Display", serif;
  padding: 11px 0;
}

.page-title p {
  position: absolute;
  top: 105%;
  left: 0;
  color: #e4e4e4;
  font: 13px/1.2 "GothamProMedium", sans-serif;
}

.page-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.page-img:after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-img-full:after {
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}

.page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-animation {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.page-animation.animatedUp {
  opacity: 0;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}

.page-animation.animatedDown {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}

.page-animation-delayOne {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.page-animation-delayTwo {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.page-pagination {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  top: -webkit-calc(46% - 115px);
  top: calc(46% - 115px);
  right: 151px;
  width: 25px;
  height: 230px;
  color: #e4e4e4;
  font: 18px/1 "GothamProMedium", sans-serif;
}

.page-pagination:after {
  content: '';
  position: absolute;
  top: -webkit-calc(50% - 50px);
  top: calc(50% - 50px);
  width: 2px;
  height: 100px;
  background: #745f4c;
}

.page-foot {
  position: absolute;
  right: 162px;
  bottom: 40px;
  left: 378px;
  z-index: 11;
}

.page-foot br {
  display: none;
}

.page-foot .foot-row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: auto;
  color: #7a7a7a;
}

.page-foot .foot-privacy {
  margin: 0;
}

.page-foot .foot-privacy a:first-child {
  color: #7a7a7a;
}

.page-foot .foot-privacy a:first-child:hover {
  color: #e4e4e4;
}

.page ~ .foot {
  display: none;
}

/* -- End Page -- */
/* -- Totop -- */
.totop {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  bottom: 0;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  opacity: 0;
  padding: 25px 30px;
  z-index: 90;
}

.totop.active {
  opacity: .8;
}

.totop.active:hover {
  opacity: 1;
}

.totop img {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 0 5px 0 0;
}

/* -- End Totop -- */
/* -- Popup -- */
.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background: #161616;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 101;
}

.popup.open {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.popup-call, .popup-phone, .popup-excellent {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 100%;
  height: 100%;
  color: #f2ddbf;
  background: #161616;
  text-align: center;
  z-index: 0;
}

.popup-call-title {
  font: 36px/58px "Playfair Display", serif;
  margin: 0 0 10px;
}

.popup-call-subtitle {
  line-height: 24px;
  margin: 0 0 45px;
}

.popup-call-form input {
  display: block;
  width: 360px;
  height: 50px;
  font: 16px/1 "GothamPro", sans-serif;
  text-align: center;
  color: #f2ddbf;
  background: transparent;
  border: 1px solid #f2ddbf;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  margin: 0 auto 20px;
}

.popup-call-form input::-webkit-input-placeholder {
  color: #f2ddbf;
}

.popup-call-form input::-moz-placeholder {
  color: #f2ddbf;
}

.popup-call-form input:-ms-input-placeholder {
  color: #f2ddbf;
}

.popup-call-form input::placeholder {
  color: #f2ddbf;
}

.popup-call-form input:focus {
  -webkit-box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%), inset 0 0 7px 1px rgba(171 171 171 / 68%);
          box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%), inset 0 0 7px 1px rgba(171 171 171 / 68%);
}

.popup-call-form input:focus::-webkit-input-placeholder {
  color: transparent;
}

.popup-call-form input:focus::-moz-placeholder {
  color: transparent;
}

.popup-call-form input:focus:-ms-input-placeholder {
  color: transparent;
}

.popup-call-form input:focus::placeholder {
  color: transparent;
}

.popup-call-form .btn {
  margin: 60px auto 9px;
}

.popup-phone-logo {
  position: relative;
  width: 100px;
  margin: 50px auto -100px;
  z-index: 1;
}

.popup-phone-logo img {
  width: 100%;
}

.popup-phone-title {
  color: #f2ddbf;
  font: 36px/58px "Playfair Display", serif;
  margin: 0 0 10px;
}

.popup-phone-subtitle {
  line-height: 24px;
  margin: 0 0 40px;
}

.popup-phone-btn {
  display: none;
  margin: 0 0 50px;
}

.popup-phone-socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-phone-socials a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
}

.popup-phone-socials a:hover svg {
  fill: #e4e4e4;
}

.popup-phone-socials a svg {
  width: 100%;
  height: 100%;
  fill: #303030;
}

.popup-excellent-logo {
  position: relative;
  width: 100px;
  margin: 50px auto -100px;
  z-index: 1;
}

.popup-excellent-logo img {
  width: 100%;
}

.popup-excellent-title {
  color: #f2ddbf;
  font: 36px/58px "Playfair Display", serif;
  margin: 0 0 10px;
}

.popup-excellent-subtitle {
  line-height: 24px;
}

.popup-close {
  position: absolute;
  top: 64px;
  right: 64px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.popup-close img {
  width: 100%;
  height: 100%;
}

/* -- End Popup -- */
/* -- Warning -- */
.warning {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background: #161616;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 101;
}

.warning.open {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.warning-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 100%;
  height: 100%;
  color: #f1f1f1;
  background: #161616;
  text-align: center;
  z-index: 0;
}

.warning-block-title {
  font: 32px/58px "Playfair Display", serif;
  margin: 0 0 10px;
}

.warning-block-subtitle {
  line-height: 24px;
  margin: 0 0 65px;
}

.warning-block-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.warning-block-no {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 218px;
  height: 60px;
  color: #e4e4e4;
  background: #161616;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  margin: 0 0 0 30px;
}

.warning-block-no:hover {
  -webkit-box-shadow: inset 0 0 7px 1px rgba(171 171 171 / 68%);
          box-shadow: inset 0 0 7px 1px rgba(171 171 171 / 68%);
}

.warning-block-no:hover:before {
  -webkit-box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%);
          box-shadow: 0 0 7px 1px rgba(171 171 171 / 68%);
}

.warning-block-no:before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background: linear-gradient(-27deg, #e4e4e4 0%, #7a7a7a 100%);
  -webkit-border-radius: 30px;
          border-radius: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: -1;
}

/* -- End Warning -- */
/* -- Welcome -- */
.welcome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-height: 0;
  background: #e4e4e4;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  z-index: 21;
}

.welcome:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  background: #e4e4e4;
  z-index: 0;
}

.welcome.open {
  max-height: 290px;
}

.welcome.open .welcome-row {
  max-height: 290px;
  padding: 80px 0 70px;
}

.welcome.open .welcome-close {
  opacity: 1;
  visibility: visible;
}

.welcome-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  padding: 0;
}

.welcome-img {
  width: 160px;
  margin: 0 80px 0 0;
}

.welcome-img img {
  width: 100%;
}

.welcome-info {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  color: #000;
}

.welcome-info h5 {
  font: 26px/1 "Playfair Display", serif;
  margin: 0 0 30px;
}

.welcome-btn {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -36px;
  left: -webkit-calc(50% - (49px / 2));
  left: calc(50% - (49px / 2));
  width: 49px;
  height: 49px;
  background: #e4e4e4;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 1;
}

.welcome-btn img {
  width: 17px;
  height: 22px;
  margin: 15px 0 0;
}

.welcome-close {
  position: absolute;
  top: 25px;
  right: 0;
  width: 38px;
  height: 38px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.welcome-close img {
  width: 100%;
  height: 100%;
}

/* -- End Welcome -- */
/* -- Footer -- */
.foot {
  position: relative;
  background: #000;
  z-index: 5;
}

.foot-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 185px;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.foot-logo {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.foot-logo a {
  display: block;
  width: 100px;
}

.foot-logo a img {
  width: 100%;
}

.foot-privacy {
  margin: 0 90px;
}

.foot-privacy a:first-child {
  color: #333333;
}

.foot-privacy a:first-child:hover {
  color: #e4e4e4;
}

.foot-privacy span {
  display: block;
}

.foot-privacy span a {
  display: inline-block;
  position: relative;
  color: #333333;
}

.foot-privacy span a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #333333;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.foot-privacy span a:hover {
  color: #e4e4e4;
}

.foot-privacy span a:hover:after {
  background: #e4e4e4;
}

.foot-developer a {
  display: inline-block;
  position: relative;
  color: #7a7a7a;
}

.foot-developer a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #333333;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.foot-developer a:hover {
  color: #e4e4e4;
}

.foot-developer a:hover:after {
  background: #e4e4e4;
}

.foot-socials {
  margin: 0 0 -17px;
}

.foot-socials-label {
  margin: 0 0 10px;
}

.foot-socials-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.foot-socials-list a {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 15px 0 0;
}

.foot-socials-list a:hover svg {
  fill: #e4e4e4;
}

.foot-socials-list a svg {
  width: 100%;
  height: 100%;
  fill: #303030;
}
.master-btn-mob {
	display: none;
}
/* -- End Footer -- */
/* -- Responsive -- */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 35px;
  }
  .nav-menu-link {
    font-size: 25px;
    line-height: 50px;
  }
  .head-toggle {
    left: 25px;
  }
  .main {
    background-size: auto 100%;
  }
  .main-title {
    margin: 80px 0 40px;
  }
  .main-discount {
    margin: 0 0 -10px;
  }
  .main-discount-percent {
    font-size: 65px;
  }
  .main-discount-text {
    font-size: 15px;
    margin: 5px 0 0 30px;
  }
  .main-btn {
    width: 200px;
    height: 50px;
    font-size: 15px;
  }
  .about {
    background-size: auto 100%;
  }
  .about-row {
    padding: 0 100px 0 0;
  }
  .about-title {
    margin: 0 0 40px;
  }
  .about-text {
    max-height: 320px;
  }
  .about-note {
    margin: 60px -100px 0 0;
  }
  .discount {
    background-size: auto 100%;
  }
  .discount-title {
    margin: 0 0 150px;
  }
  .contacts-title {
    margin: 0 0 60px;
  }
  .contacts-block {
    width: 350px;
    height: 450px;
    padding: 0 50px;
  }
  .contacts-item:not(:last-child) {
    margin: 0 0 50px;
  }
  .contacts-item span {
    font-size: 20px;
  }
  .page-head {
    right: 50px;
    height: 165px;
  }
  .page-head .head-logo {
    padding: 0 0 0 80px;
  }
  .page-nav {
    width: 290px;
    padding: 165px 0;
  }
  .page-nav .nav-menu-link {
    padding: 0 30px;
  }
  .page-nav .nav-menu-font {
    padding: 5px 30px 0;
  }
  .page-socials {
    bottom: 30px;
  }
  .page-socials a {
    width: 25px;
    height: 25px;
    margin: 0 10px;
  }
  .page-about-text {
    max-height: 420px;
    margin: 50px 0 0;
  }
  .page-about-text .simplebar-track {
    right: 15px;
  }
  .page-about-text .simplebar-content {
    padding: 0 50px 0 0;
  }
  .page-about-text h3 {
    font-size: 20px;
    margin: 0 0 30px;
  }
  .page-about-text p {
    font-size: 15px;
  }
  .page-about-text p:not(:last-child) {
    margin: 0 0 20px;
  }
  .page-about-row {
    padding: 80px 50px 0 0;
    margin: 0 -65% 0 0;
  }
  .page-about-box {
    margin: 15px 0;
  }
  .page-about-box-icon {
    height: 80px;
  }
  .page-about-box-info {
    font-size: 14px;
    margin: 20px 0 0;
  }
  .page-about-box-info h4 {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .page-about-list {
    max-height: 350px;
    font-size: 15px;
    margin: 100px 0 30px;
  }
  .page-about-list .simplebar-track {
    right: 15px;
  }
  .page-about-list .simplebar-content {
    padding: 0 50px 0 0;
  }
  .page-about-list li {
    min-height: 50px;
    padding: 5px 0 5px 80px;
  }
  .page-about-list li:before {
    width: 25px;
    height: 25px;
  }
  .page-about-list li:after {
    top: -webkit-calc(50% - 25px);
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
  }
  .page-about-btn p {
    font-size: 15px;
  }
  .page-about-btn .btn {
    width: 200px;
    height: 50px;
    font-size: 15px;
  }
  .page-masters-block {
    margin: 50px 0 0;
  }
  .page-masters-name {
    font-size: 25px;
    padding: 0 0 20px;
  }
  .page-masters-name:after {
    height: 3px;
  }
  .page-masters-text {
    max-height: 200px;
    font-size: 15px;
  }
  .page-masters-text .simplebar-track {
    right: 15px;
  }
  .page-masters-text .simplebar-content {
    padding: 0 100px 0 0;
  }
  .page-masters-feature-item {
    font-size: 15px;
  }
  .page-masters-feature-item span {
    font-size: 45px;
    line-height: 40px;
  }
  .page-masters-gallery {
    margin: 40px 0 0;
  }
  .page-program-text {
    max-height: 161px;
    font-size: 16px;
    line-height: 24px;
    margin: 50px 0 20px;
  }
  .page-program-text .simplebar-track {
    right: 15px;
  }
  .page-program-text .simplebar-content {
    padding: 0 50px 0 0;
  }
  .page-program-quad-title {
    font-size: 16px;
    line-height: 20px;
  }
  .page-program-info {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 50px;
  }
  .page-program-time img {
    width: 25px;
    height: 25px;
    margin: 0 10px 0 0;
  }
  .page-program-btn .btn {
    width: 200px;
    height: 50px;
    font-size: 15px;
  }
  .page-services {
    padding: 0 0 0 290px;
  }
  .page-services ~ .page-foot {
    right: 120px;
  }
  .page-services .page-img {
    left: 290px;
  }
  .page-services .page-row {
    padding: 0 20px 0 0;
  }
  .page-services-subtitle {
    width: 60%;
    font-size: 17px;
  }
  .page-services-box-head {
    font-size: 17px;
  }
  .page-certificate-row {
    padding: 0 20px 0 0;
    margin: 50px 0 0;
  }
  .page-certificate-tabItem {
    height: 105px;
  }
  .page-certificate-tabPrice {
    bottom: 10px;
    left: 15px;
    font-size: 14px;
    line-height: 20px;
  }
  .page-certificate-tabPrice span {
    font-size: 30px;
    margin: 0;
  }
  .page-certificate-tabOrder {
    font-size: 14px;
    line-height: 18px;
  }
  .page-certificate-tabInfo {
    height: 410px;
    padding: 30px 5%;
  }
  .page-certificate-tabTitle {
    font-size: 14px;
    line-height: 20px;
    padding: 0 0 0 20px;
  }
  .page-certificate-tabTitle span {
    font-size: 32px;
  }
  .page-certificate-tabBox {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }
  .page-certificate-tabBox:nth-child(2) {
    margin: 0 10%;
  }
  .page-certificate-tabBox span {
    font-size: 35px;
    margin: 0 0 10px;
  }
  .page-certificate-tabNote {
    font-size: 14px;
    line-height: 20px;
    padding: 0;
  }
  .page-reviews-block {
    margin: 50px 0 0;
  }
  .page-reviews-name {
    font-size: 16px;
  }
  .page-reviews-link {
    margin: 0 0 30px;
  }
  .page-reviews-text {
    max-height: 300px;
    font-size: 15px;
  }
  .page-reviews-text .simplebar-track {
    right: 15px;
  }
  .page-reviews-text .simplebar-content {
    padding: 0 50px 0 0;
  }
  .page-vacancy-text {
    max-height: 400px;
    margin: 50px 0 25px;
  }
  .page-vacancy-text p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 25px;
  }
  .page-vacancy-text ul:before {
    top: 10px;
  }
  .page-vacancy-text ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .page-vacancy-text ul li:not(:last-child) {
    margin: 0 0 5px;
  }
  .page-vacancy-more {
    font-size: 15px;
    line-height: 28px;
  }
  .page-contacts .page-row {
    width: 40%;
  }
  .page-contacts-row {
    margin: 100px 0 0;
  }
  .page-contacts-item:not(:last-child) {
    margin: 0 0 50px;
  }
  .page-contacts-item span {
    font-size: 20px;
  }
  .page-section {
    padding: 55px 30px;
  }
  .page-section #contacts-map:after {
    right: 60%;
  }
  .page-row {
    width: 60%;
  }
  .page-title {
    font-size: 35px;
  }
  .page-img:after {
    right: 40%;
  }
  .page-img-full:after {
    right: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  .page-pagination {
    top: -webkit-calc(46% - 80px);
    top: calc(46% - 80px);
    right: 39px;
    height: 160px;
  }
  .page-pagination:after {
    top: -webkit-calc(50% - 35px);
    top: calc(50% - 35px);
    height: 70px;
  }
  .page-foot {
    right: 50px;
    bottom: 30px;
    left: 320px;
  }
  .page-foot .foot-row {
    font-size: 13px;
  }
  .page-foot .foot-developer a:after {
    bottom: 1px;
  }
  .welcome.open .welcome-row {
    padding: 60px 0 50px;
  }
  .welcome-img {
    width: 140px;
  }
  .welcome-info h5 {
    font-size: 24px;
    margin: 0 0 25px;
  }
  .welcome-info p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .head-toggle {
    position: relative;
    top: auto;
    left: auto;
  }
  .head-address {
    display: none;
  }
  .head-logo {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    margin: 0 0 0 50px;
  }
  .head-logo a {
    width: 100px;
  }
  .main-note {
    margin: 0;
  }
  .nav #nav-map {
    display: none;
  }
  .nav-menu {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .advantages-row {
    width: 95%;
    height: 200px;
  }
  .advantages-box-numb {
    font-size: 52px;
    margin: 0 15px 0 0;
  }
  .advantages-box-text {
    font-size: 14px;
  }
  .worker {
    padding: 120px 0 60px;
  }
  .worker-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .worker-title {
    width: 100%;
    margin: 0 0 60px;
  }
  .worker-title h2 br {
    display: none;
  }
  .worker-slider .slick-dots {
    margin: 0;
    bottom: -40px;
  }
  .page-head {
    position: absolute;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    right: 0;
    left: 0;
    padding: 0 37px;
  }
  .page-head .head-toggle {
    display: block;
  }
  .page-head .head-logo {
    padding: 0;
    margin: 0 0 0 50px;
  }
  .page-nav {
    display: none;
  }
  .page-full {
    width: 100%;
    height: auto;
  }
  .page-about-text {
    max-height: 100%;
  }
  .page-about-row {
    padding: 0;
    margin: 0;
  }
  .page-about-box {
    margin: 30px 0;
  }
  .page-about-list {
    max-height: 100%;
    margin: 0 0 70px;
  }
  .page-masters .page-section:not(:first-child) .page-title {
    display: none;
  }
  .page-masters .page-section:not(:first-child) .page-masters-block {
    margin: 0;
  }
  .page-masters-text {
    width: 70%;
    max-height: 100%;
  }
  .page-masters-text .simplebar-content {
    padding: 0 50px 0 0;
  }
  .page-program-text {
    max-height: 100%;
    line-height: 30px;
  }
  .page-program-quad-title {
    font-size: 16px;
    line-height: 20px;
  }
  .page-program-info {
    line-height: 30px;
  }
  .page-services {
    padding: 0;
  }
  .page-services .page-img {
    left: 0;
  }
  .page-services .page-row {
    padding: 0;
  }
  .page-services-subtitle {
    width: 100%;
    font-size: 16px;
    margin: 50px 0 0;
  }
  .page-services-accordion {
    width: 100%;
    margin: 30px 0 0;
  }
  .page-services-box-head {
    font-size: 16px;
  }
  .page-services-box-head span {
    padding: 0 30px 0 0;
  }
  .page-services-box-line {
    font-size: 14px;
  }
  .page-services-box-name {
    font-size: 14px;
  }
  .page-certificate-row {
    padding: 0;
  }
  .page-reviews .page-section:not(:first-child) .page-title {
    display: none;
  }
  .page-reviews .page-section:not(:first-child) .page-reviews-block {
    margin: 0;
  }
  .page-reviews-text {
    width: 70%;
    max-height: 100%;
  }
  .page-vacancy-text {
    max-height: 100%;
  }
  .page-vacancy-text ul li:not(:last-child) {
    margin: 0 0 10px;
  }
  .page-contacts-row {
    margin: 50px 0 0;
  }
  .page-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
    height: auto !important;
    padding: 100px 37px;
  }
  .page-row {
    width: 100%;
  }
  .page-title {
    margin: 80px 0 0;
  }
  .page-title p {
    position: relative;
    top: auto;
    left: auto;
    margin: 10px 0 0;
  }
  .page-img:after {
    right: 0;
  }
  .page-pagination {
    display: none;
  }
  .page-foot {
    display: none;
  }
  .page ~ .foot {
    display: block;
  }
  .foot-privacy {
    margin: 0 50px;
  }
}

@media only screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 32px;
  }
  .head-logo a {
    width: 145px;
  }
  .main:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }
  .main-discount-text {
    margin: 5px 0 0 30px;
  }
  .advantages {
    display: none;
  }
  .worker {
    padding: 60px 0;
  }
  .about:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }
  .about-row {
    position: relative;
    width: 100%;
    padding: 0;
    z-index: 2;
  }
  .about-text {
    max-height: 400px;
  }
  .about-note {
    margin: 50px 0 0;
  }
  .program-slider {
    margin: 0 13px 100px;
  }
  .program-slider .slick-dots {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: -40px;
    margin: 0;
  }
  .interior-slider {
    padding: 0;
  }
  .interior-slider .slick-dots {
    bottom: -40px;
  }
  .interior-slider .slick-dots li {
    width: 5px;
    height: 5px;
    background: #e4e4e4;
    -webkit-border-radius: 2.5px;
            border-radius: 2.5px;
  }
  .interior-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    background: #e4e4e4;
    -webkit-border-radius: 2.5px;
            border-radius: 2.5px;
  }
  .interior-slider .slick-dots li.slick-active {
    width: 25px;
  }
  .interior-slider .slick-dots li.slick-active button {
    background: #e4e4e4;
  }
  .interior-slider .slide {
    height: 480px;
  }
  .discount:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }
  .discount-row {
    z-index: 2;
  }
  .discount-form {
    width: 400px;
  }
  .discount-form .field {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .discount-form .field-line {
    width: 100%;
  }
  .discount-form .field-line:not(:last-child) {
    margin: 0 0 50px;
  }
  .contacts-block {
    width: auto;
    height: auto;
    background: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 0;
    margin: 0;
  }
  .contacts-item {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .page-about-box {
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2);
  }
  .page-program-double .page-program-info:first-child {
    margin: 0 0 15px;
  }
  .page-program-quad .page-program-info {
    margin: 0 0 15px;
  }
  .page-program-quad .page-program-info:not(:last-child) {
    margin: 0 0 15px;
  }
  .page-program-info {
    width: 100%;
  }
  .page-certificate-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .page-certificate-tabList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    width: 100%;
  }
  .page-certificate-tabItem {
    width: 30%;
  }
  .page-certificate-tabPrice {
    font-size: 13px;
  }
  .page-certificate-tabPrice span {
    font-size: 25px;
    margin: 5px 0 0;
  }
  .page-certificate-tabOrder {
    width: 100%;
    line-height: 22px;
  }
  .page-certificate-tabWrap {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
    width: 100%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 30px 0 20px;
  }
  .page-certificate-tabInfo {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 30px 20px;
    margin: 0;
  }
  .page-certificate-tabTitle {
    padding: 0;
  }
  .page-certificate-tabTitle span {
    font-size: 28px;
  }
  .page-certificate-tabFeature {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .page-certificate-tabBox:nth-child(2) {
    margin: 0;
  }
  .page-certificate-tabBox span {
    font-size: 32px;
  }
  .page-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    height: 100%;
  }
  .page-title {
    font-size: 32px;
  }
  .welcome.open .welcome-row {
    padding: 50px 0 40px;
  }
  .welcome-row {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .welcome-img {
    width: 100px;
    margin: 0 28px 0 0;
  }
  .welcome-info h5 {
    font-size: 22px;
    margin: 0 0 20px;
  }
  .welcome-info p {
    font-size: 14px;
  }
  .welcome-btn img {
    width: 14px;
    height: 19px;
    margin: 10px 0 0;
  }
  .welcome-close {
    width: 25px;
    height: 25px;
  }
  .foot {
    padding: 50px 0;
  }
  .foot-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    height: auto;
  }
  .foot-logo {
    width: 100%;
    margin: 0 0 30px;
  }
  .foot-logo a {
    margin: 0 auto;
  }
  .foot-socials {
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
  }
  .foot-socials-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .foot-socials-list a {
    margin: 0 7px;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    line-height: 65px;
  }
  .head.fixed {
    position: fixed;
    background: #161616;
    -webkit-animation: slideDown 1s both;
            animation: slideDown 1s both;
  }
  .head.fixed .head-row {
    height: 70px;
  }
  .head-row {
    height: 130px;
  }
  .head-logo {
    -webkit-box-flex: initial;
    -webkit-flex-grow: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    margin: 0;
  }
  .head-logo a {
    width: 140px;
  }
  .head-phone {
    display: none;
  }
  .head-phone-mobile {
    display: block;
  }
  .main {
    min-height: 675px;
    background-position: 65% top;
  }
  .main-row {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 675px;
  }
  .main-title {
    text-align: center;
  }
  .main-note {
    display: none;
  }
  .worker-title {
    margin: 0 0 40px;
  }
  .worker-slider .slide {
    height: auto;
  }
  .worker-slider .slide:hover .slide-row {
    margin: 0;
  }
  .worker-slider .slide-down .slide-row {
    margin: 0;
  }
  .about {
    min-height: 675px;
    background-position: 98% top;
  }
  .about-row {
    min-height: 675px;
  }
  .about-text .simplebar-content {
    padding: 0 15px 0 0;
  }
  .about-note br {
    display: none;
  }
  .program {
    padding: 50px 0 90px;
  }
  .program-slider {
    padding: 0 70px;
  }
  .interior {
    padding: 0 0 80px;
  }
  .interior-slider .slide {
    height: 350px;
  }
  .discount {
    min-height: 675px;
    background-position: 70% top;
  }
  .discount-row {
    min-height: 675px;
  }
  .discount-title {
    margin: 0 0 100px;
  }
  .contacts {
    min-height: 675px;
  }
  .page-head.fixed {
    position: fixed;
    height: 70px;
    background: #161616;
    -webkit-animation: slideDown 1s both;
            animation: slideDown 1s both;
  }
  .page-head .head-logo {
    -webkit-box-flex: initial;
    -webkit-flex-grow: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    margin: 0;
  }
  .page-about-text h3 {
    font-size: 18px;
  }
  .page-about-list {
    margin: 0 0 50px;
  }
  .page-about-btn {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .page-about-btn p {
    width: 100%;
    margin: 0 0 30px;
  }
  .page-about-btn p br {
    display: none;
  }
  .page-masters-text {
    width: 100%;
  }
  .page-program .page-img img {
    display: none;
  }
  .page-program .page-img img:not(:first-child) {
    display: block;
  }
  .page-certificate-tabItem {
    width: 100%;
    height: 150px;
    margin: 0 0 25px;
  }
  .page-certificate-tabPrice {
    font-size: 13px;
    bottom: 15px;
    left: 25px;
  }
  .page-certificate-tabPrice span {
    font-size: 30px;
    margin: 5px 0 0;
  }
  .page-certificate-tabInfo {
    height: auto;
    padding: 50px 37px 60px;
  }
  .page-certificate-tabTitle span {
    width: 100%;
    margin: 0 0 10px;
  }
  .page-certificate-tabFeature {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin: 50px 0 20px;
  }
  .page-certificate-tabBox {
    width: 100%;
    margin: 0 0 30px;
  }
  .page-certificate-tabBox:nth-child(2) {
    margin: 0 0 30px;
  }
  .page-certificate-tabNote span {
    display: none;
  }
  .page-reviews-text {
    width: 100%;
  }
  .page-contacts .page-row {
    width: 100%;
  }
  .page-section #contacts-map:after {
    right: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .totop {
    font-size: 14px;
  }
  .welcome-img {
    margin: 0 25px 0 0;
  }
  .welcome-btn {
    bottom: -30px;
    left: -webkit-calc(50% - (40px / 2));
    left: calc(50% - (40px / 2));
    width: 40px;
    height: 40px;
  }
  .welcome-btn img {
    width: 12px;
    height: 16px;
  }
  .foot-logo a {
    width: 85px;
  }
  .foot-copyright {
    width: 100%;
    text-align: center;
  }
  .foot-privacy {
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
  }
}

@media only screen and (max-width: 575px) {
	.master-btn {
		display: none;
	}
	.master-btn-mob {
		display: flex;
		margin: 65px auto 0 !important;
	}
  .main-title h1 span {
    display: block;
  }
  .container {
    padding: 0 37px;
  }
  h1 {
    font-size: 32px;
    line-height: 55px;
  }
  h2 {
    font-size: 25px;
    line-height: 34px;
  }
  .input {
    height: 41px;
  }
  .input input {
    font-size: 14px;
    padding: 7px 0;
  }
  .btn {
    width: 140px;
    height: 40px;
    font-size: 10px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    margin: 5px auto;
  }
  .btn:after {
    top: -5px;
    right: -6.5px;
    bottom: -5px;
    left: -6.5px;
    -webkit-border-radius: 25px;
            border-radius: 25px;
  }
  .nav-logo {
    display: block;
  }
  .nav-menu-link {
    font-size: 18px;
    line-height: 45px;
  }
  .nav-menu-link:after {
    bottom: 7px;
  }
  .nav-close {
    top: 26px;
    right: 24px;
    width: 25px;
    height: 25px;
  }
  .head.fixed .head-row {
    height: 50px;
  }
  .head-row {
    height: 75px;
  }
  .head-toggle {
    width: 24px;
    height: 15px;
    margin: 0 0 0 -12px;
  }
  .head-toggle hr {
    height: 1px;
  }
  .head-toggle hr:nth-child(2) {
    margin: 6px 0;
  }
  .head-logo a {
    width: 130px;
  }
  .head-phone-mobile {
    margin: 0 -12px 0 0;
  }
  .head-phone-mobile a {
    width: 22px;
    height: 22px;
  }
  .main {
    min-height: auto;
    background-position: 63% top;
    background-size: auto 103%;
  }
  .main-row {
    min-height: auto;
  }
  .main-title {
    margin: 35px 0;
  }
  .main-discount {
    width: 100%;
    padding: 0 0 0 24px;
    margin: 0 0 -5px;
  }
  .main-discount-percent {
    font-size: 45px;
    line-height: 50px;
  }
  .main-discount-text {
    font-size: 13px;
    margin: 5px 0 0 15px;
  }
  .main-line {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
  .main-btn {
    margin: 5px 6.5px;
  }
  .worker {
    padding: 55px 0 70px;
  }
  .worker-title {
    margin: 0 0 35px;
  }
  .worker-more {
    font-size: 14px;
  }
  .worker-slider .slick-dots {
    bottom: -30px;
  }
  .about {
    min-height: 515px;
    background-position: 84% top;
    background-size: auto 100%;
  }
  .about-row {
    min-height: 515px;
  }
  .about-title {
    margin: 0 0 15px;
  }
    .about-title.h12 {
    top: 135px;
    position: relative;
    }
  .about-text {
    max-height: 280px;
    font-size: 14px;
  }
  .about-note {
    display: none;
  }
  .about-more {
    display: block;
  }
  .program {
    padding: 20px 0 60px;
  }
  .program-title {
    margin: 0 0 25px;
  }
  .program-title h2 {
    font-size: 21px;
  }
  .program-slider {
    padding: 0;
    margin: 0 8px 65px;
  }
  .program-slider .slick-dots {
    bottom: -30px;
  }
  .program-slider .slide {
    height: 302px;
  }
  .program-slider .slide-tag {
    display: none;
  }
  .program-slider .slide-info {
    left: 24px;
    bottom: 30px;
  }
  .program-slider .slide-title, .program-slider .slide-text, .program-slider .slide-price {
    font-size: 14px;
  }
  .program-slider .slide-text {
    line-height: 18px;
    margin: 10px 0 8px;
  }
  .interior {
    padding: 0 0 90px;
  }
  .interior-title {
    margin: 0 0 30px;
  }
  .interior-slider .slick-dots {
    bottom: -30px;
  }
  .interior-slider .slide {
    height: 145px;
  }
  .discount {
    min-height: 515px;
    background-size: auto 100%;
  }
  .discount-row {
    min-height: 515px;
  }
  .discount-title {
    width: 220px;
    margin: 0 0 50px;
  }
  .discount-title h2 {
    font-size: 23px;
    line-height: 35px;
  }
  .discount-title h2 br {
    display: none;
  }
  .discount-title h2 span {
    display: none;
  }
  .discount-form {
    width: 100%;
  }
  .discount-form .field {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    margin: 0 0 55px;
  }
  .discount-form .field-line {
    width: 195px;
  }
  .discount-form .field-line:not(:last-child) {
    margin: 0 0 20px;
  }
  .discount-form .field-label {
    font-size: 14px;
    margin: 0 0 2px;
  }
  .discount-form .field .input img {
    width: 25px;
    height: 25px;
  }
  .discount-form .checkbox {
    display: none;
  }
  .contacts {
    height: 460px;
    min-height: auto;
    padding: 70px 0;
  }
  .contacts-row {
    height: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: auto;
  }
  .contacts-title {
    margin: 0 0 50px;
  }
  .contacts-title h2 {
    line-height: 1;
  }
  .contacts-item {
    font-size: 14px;
  }
  .contacts-item:not(:last-child) {
    margin: 0 0 40px;
  }
  .contacts-item span {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .page-head {
    height: 75px;
  }
  .page-head.fixed {
    height: 50px;
  }
  .page-about-text {
    margin: 20px 0 0;
  }
  .page-about-text .simplebar-track {
    right: 0;
  }
  .page-about-text .simplebar-content {
    padding: 0;
  }
  .page-about-text h3 {
    font-size: 16px;
  }
  .page-about-text p {
    font-size: 14px;
  }
  .page-about-box {
    width: 100%;
    margin: 20px 0;
  }
  .page-about-box-icon {
    height: 60px;
  }
  .page-about-box-info {
    font-size: 13px;
  }
  .page-about-box-info h4 {
    font-size: 15px;
  }
  .page-about-list {
    font-size: 13px;
    margin: 0 0 30px;
  }
  .page-about-list .simplebar-track {
    right: 0;
  }
  .page-about-list .simplebar-content {
    padding: 0;
  }
  .page-about-list li {
    min-height: 100%;
    padding: 0 0 0 30px;
  }
  .page-about-list li:before {
    left: 5px;
    width: 10px;
    height: 10px;
  }
  .page-about-list li:after {
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
  }
  .page-about-list li:not(:last-child) {
    margin: 0 0 30px;
  }
  .page-about-btn p {
    font-size: 13px;
    margin: 0 0 20px;
  }
  .page-about-btn .btn {
    width: 140px;
    height: 40px;
    font-size: 10px;
    margin: 5px 6.5px;
  }
  .page-masters-block {
    margin: 20px 0 0;
  }
  .page-masters-name {
    font-size: 18px;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }
  .page-masters-name:after {
    width: 30px;
    height: 2px;
  }
  .page-masters-text {
    font-size: 14px;
  }
  .page-masters-text .simplebar-track {
    right: 0;
  }
  .page-masters-text .simplebar-content {
    padding: 0;
  }
  .page-masters-feature {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin: 30px 0 0;
  }
  .page-masters-feature-item {
    font-size: 13px;
    margin: 0;
  }
  .page-masters-feature-item:not(:last-child) {
    margin: 0 40px 0 0;
  }
  .page-masters-feature-item span {
    font-size: 35px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  .page-masters-gallery {
    font-size: 14px;
    margin: 30px 0 0;
  }
  .page-program-text {
    font-size: 13px;
    line-height: 24px;
    padding: 0;
    margin: 20px 0;
  }
  .page-program-text .simplebar-track {
    right: 0;
  }
  .page-program-text .simplebar-content {
    padding: 0;
  }
  .page-program-mobile .page-program-info {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .page-program-mobile .page-program-price {
    margin: 0 30px 5px 0;
  }
  .page-program-mobile .page-program-time {
    width: 100%;
  }
  .page-program-quad-title {
    font-size: 14px;
    line-height: 16px;
  }
  .page-program-info {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 30px;
  }
  .page-program-time img {
    width: 20px;
    height: 20px;
  }
  .page-program-btn .btn {
    width: 140px;
    height: 40px;
    font-size: 10px;
    margin: 5px 6.5px;
  }
  .page-services-subtitle {
    font-size: 14px;
    margin: 20px 0 0;
  }
  .page-services-accordion {
    width: auto;
    margin: 20px -37px 0;
  }
  .page-services-box-head {
    font-size: 14px;
    padding: 10px 25px;
  }
  .page-services-box-head span {
    padding: 0 30px 0 0;
  }
  .page-services-box-arrow {
    width: 25px;
    height: 25px;
  }
  .page-services-box-arrow svg {
    width: 10px;
    height: 10px;
  }
  .page-services-box-body {
    padding: 0 25px;
  }
  .page-services-box-line {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    font-size: 12px;
    padding: 15px 0;
  }
  .page-services-box-line ul li {
    margin: 0 15px 0 0;
  }
  .page-services-box-line ul li img {
    width: 12px;
    height: 12px;
  }
  .page-services-box-name {
    width: 100%;
    font-size: 12px;
    margin: 0 0 5px;
  }
  .page-certificate-row {
    display: block;
    margin: 20px 0;
  }
  .page-certificate-tabItem {
    height: 110px;
  }
  .page-certificate-tabPrice {
    font-size: 12px;
    left: 20px;
  }
  .page-certificate-tabPrice span {
    font-size: 34px;
    margin: 3px 0 0;
  }
  .page-certificate-tabWrap {
    width: auto;
    margin: 45px -37px 30px;
  }
  .page-certificate-tabTitle span {
    font-size: 25px;
    margin: 0 0 15px;
  }
  .page-certificate-tabFeature {
    margin: 40px 0 0;
  }
  .page-certificate-tabBox {
    width: 100%;
    margin: 0 0 40px;
  }
  .page-certificate-tabBox:nth-child(2) {
    margin: 0 0 40px;
  }
  .page-reviews-block {
    margin: 20px 0 0;
  }
  .page-reviews-name {
    font-size: 15px;
    margin: 0 0 10px;
  }
  .page-reviews-link {
    font-size: 13px;
    margin: 0 0 25px;
  }
  .page-reviews-text {
    font-size: 14px;
  }
  .page-reviews-text .simplebar-track {
    right: 0;
  }
  .page-reviews-text .simplebar-content {
    padding: 0;
  }
  .page-vacancy-text {
    margin: 20px 0 30px;
  }
  .page-vacancy-text .simplebar-track {
    right: 0;
  }
  .page-vacancy-text .simplebar-content {
    padding: 0;
  }
  .page-vacancy-text p {
    font-size: 15px;
    margin: 0 0 20px;
  }
  .page-vacancy-text p br {
    display: none;
  }
  .page-vacancy-text ul {
    padding: 0;
  }
  .page-vacancy-text ul:before {
    display: none;
  }
  .page-vacancy-text ul li {
    position: relative;
    font-size: 13px;
    line-height: 18px;
    padding: 0 0 0 20px;
  }
  .page-vacancy-text ul li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 1px;
    background: #e4e4e4;
  }
  .page-vacancy-more {
    font-size: 14px;
    line-height: 24px;
  }
  .page-vacancy-more a:after {
    bottom: 3px;
  }
  .page-contacts-row {
    margin: 20px 0 0;
  }
  .page-contacts-item {
    font-size: 14px;
  }
  .page-contacts-item:not(:last-child) {
    margin: 0 0 40px;
  }
  .page-contacts-item span {
    font-size: 18px;
    margin: 0 0 5px;
  }
  .page-section {
    padding: 75px 37px;
  }
  .page-title {
    font-size: 25px;
    margin: 15px 0 0;
  }
  .page-title p {
    font-size: 10px;
  }
  .popup-call-title {
    font-size: 25px;
    margin: 0 0 5px;
  }
  .popup-call-subtitle {
    font-size: 14px;
    line-height: 16px;
    padding: 0 15px;
  }
  .popup-call-subtitle br {
    display: none;
  }
  .popup-call-form input {
    width: 200px;
    height: 34px;
    font-size: 11px;
    -webkit-border-radius: 17px;
            border-radius: 17px;
    margin: 0 auto 15px;
  }
  .popup-call-form .btn {
    margin: 55px auto 5px;
  }
  .popup-phone-logo {
    width: 80px;
    margin: 20px auto -70px;
  }
  .popup-phone-title {
    font-size: 30px;
    margin: 0 0 5px;
  }
  .popup-phone-subtitle {
    font-size: 15px;
    margin: 0 0 30px;
  }
  .popup-phone-btn {
    margin: 0 0 30px;
  }
  .popup-phone-btn .btn {
    width: 170px;
    height: 45px;
    font-size: 12px;
  }
  .popup-phone-socials a {
    width: 30px;
    height: 30px;
    margin: 0 7px;
  }
  .popup-excellent-logo {
    width: 80px;
    margin: 20px auto -70px;
  }
  .popup-excellent-title {
    font-size: 30px;
    margin: 0 0 5px;
  }
  .popup-excellent-subtitle {
    font-size: 15px;
  }
  .popup-close {
    top: 26px;
    right: 24px;
    width: 25px;
    height: 25px;
  }
  .warning-block-title {
    font-size: 25px;
    margin: 0 0 5px;
  }
  .warning-block-subtitle {
    font-size: 13px;
    line-height: 16px;
    padding: 0 15px;
    margin: 0 0 45px;
  }
  .warning-block-subtitle br {
    display: none;
  }
  .warning-block-no {
    width: 140px;
    height: 40px;
    font-size: 10px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
  }
  .welcome:after {
    bottom: -5px;
    height: 5px;
  }
  .welcome.open {
    max-height: 65vh;
  }
  .welcome.open .welcome-row {
    max-height: 65vh;
    padding: 0;
  }
  .welcome-row {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    height: 60vh;
  }
  .welcome-img {
    width: 60px;
    margin: 0 auto 20px;
  }
  .welcome-info {
    width: 100%;
    text-align: center;
  }
  .welcome-info h5 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .welcome-btn {
    bottom: -20px;
    left: -webkit-calc(50% - (30px / 2));
    left: calc(50% - (30px / 2));
    width: 30px;
    height: 30px;
  }
  .welcome-btn img {
    width: 9px;
    height: 12px;
  }
  .welcome-close {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
  }
  .foot {
    padding: 30px 0;
  }
  .foot-row {
    font-size: 14px;
    line-height: 16px;
  }
  .foot-logo {
    margin: 0 0 20px;
  }
  .foot-logo a {
    width: 70px;
  }
  .foot-privacy, .foot-socials {
    margin: 20px 0 0;
  }
  .foot-socials-list a {
    width: 25px;
    height: 25px;
    margin: 0 5px;
  }
}

@media only screen and (max-width: 359px) {
  .page-masters-feature {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-masters-feature-item:not(:last-child) {
    margin: 0 20px 20px;
  }
  .popup-call-subtitle br {
    display: block;
  }
  .popup-excellent-title {
    font-size: 28px;
  }
  .popup-excellent-subtitle {
    font-size: 14px;
  }
  .warning-block-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column wrap;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
  }
  .warning-block-no {
    margin: 20px 0 0;
  }
}

.fullscreen-bg {
    overflow: hidden;
    z-index: -100;
    position: relative;
    width: 100%;
    padding-top:45%;
}
 
.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* -- End Responsive -- */
