/* GENERAL ELEMENTS */

*, *:before, *:after {
  box-sizing: inherit;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'sofia-pro', Arial, serif;
  font-weight: 300;
  font-size: 16px;
  color: #202020;
  line-height: 1.3;
  opacity: 0;
  transition: opacity .2s;
}

body.loaded {
  opacity: 1;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img, fieldset, a img {
  border: none;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

input {
  height: 40px;
  width: 297px;
  padding: 10px;
  border-radius: 3px 0 0 3px;
  border: 1px solid black;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
}

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

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

textarea {
  overflow: auto;
}

select {
  height: 40px;
  width: 297px;
  padding: 10px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  border: 1px solid black;
  background: none;
}

button {
  background: none;
}

button,
input,
textarea,
select {
  font-family: 'sofia-pro', Arial, serif;
  font-weight: 300;
  font-size: 16px;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

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

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

a {
  text-decoration: none;
}

/* Header Elements */
.header {
  position: relative;
  height: 120px;
  padding: 40px 0;
  z-index: 20;
}

.header__center {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  min-width: 65px;
  transition: opacity .2s, -webkit-transform, transform .2s;
}

.header__logo img {
  max-height: 40px;
}

.header__logo:hover {
  opacity: .7;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.header__logo .icon {
  display: block;
  font-size: 15px;
}

.header__btn {
  min-width: 157px;
  border-color: rgba(255, 255, 255, 0.5);
}

.header__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 92px;
}

.header__link {
  margin: 0 19px;
  font-size: 15px;
  letter-spacing: 3.5px;
  color: #FFF;
  text-transform: uppercase;
  transition: opacity .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header__link:hover {
  opacity: .7;
}

.header__burger {
  display: none;
  width: 55px;
  height: 45px;
  margin-right: -7px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0;
}

.header__burger .icon {
  font-size: 19px;
}

.icon-menu {
  width: 1.53em;
  height: 1em;
  fill: #FFF;
}

.promo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 520px;
  margin-top: -120px;
  padding: 50px 0;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.promo__title {
  padding-top: 42px;
  font-size: 62px;
  line-height: 1.24;
  letter-spacing: 16.6px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Content Elements */
.center {
  width: 100%;
  max-width: 1173px;
  margin: 0 auto;
  padding: 0 30px;
}

.center_lg {
  max-width: 1440px;
  padding: 0 55px;
}

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

.container {
    min-height: calc(100vh - 520px - 108px);
}

/* Sections */
.section {
  padding: 70px 0;
}

.section__head {
  margin-bottom: 3%;
  text-align: center;
}

.section__title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4.44px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section__title_left {
  text-align: left;
}

.section__content {
  max-width: 1173px;
  margin: 0;
  font-size: 20px;
  line-height: 1.48;
}

.section__content p {
  margin-bottom: 25px;
}

.section__content .no-bottom-margin {
  margin-bottom: 0;
}

.section__content a {
  text-decoration: none;
  color: inherit;
  opacity: 0.6;
}

.section__action {
  margin-bottom: 110px;
  text-align: center;
}

.section__btn {
  margin: 0 10px;
}

.section__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 60px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section__link {
  margin: 0 15px;
  padding: 5px 0 7px;
  border-bottom: 2px solid transparent;
  opacity: .6;
  font-size: 18px;
  color: #202020;
  letter-spacing: 4px;
  transition: opacity .2s, border-color .2s;
}

.section__link:hover {
  opacity: .9;
}

.section__link.active {
  opacity: 1;
  cursor: default;
}

.section_start {
  padding-top: 25px;
}

.section_finish {
  padding-bottom: 25px;
}

.section_join {
  padding-top: 0;
}

.section_schedule {
  padding: 130px 0 85px;
  background: #111;
  color: #FFF;
}

.section_schedule .section__body {
  padding-top: 20px;
}

.section_main .section__head {
  margin-bottom: 50px;
}

.section_main .section__title {
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.95;
  letter-spacing: 3px;
}

.section_main .section__content {
  opacity: .8;
  font-size: 28px;
  line-height: 1.53;
}

/* Inputs */
.input-capitalize-words {
  text-transform: capitalize;
}

.input-error {
  border: 2px solid red !important;
}

.input-error-message {
  color: red;
}

/* Buttons */
.btn {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(32, 32, 32, 0.15);
  border-radius: 3px;
  font-family: 'sofia-pro', Arial, serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  color: #202020;
  text-transform: uppercase;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: middle;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  background: #202020;
  color: #FFF;
}

.btn_lg {
  height: 60px;
  padding: 0 25px 4px;
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: .5px;
}

.btn_red {
  border-color: #F54236;
  color: #F54236;
}

.btn_red:hover {
  background: transparent;
  opacity: .7;
  color: #F54236;
}

.btn_red_bg {
  background: #F54236;
  border-color: #F54236;
  color: #FFF;
}

.btn_red_bg:hover {
  background: #F54236;
  opacity: .7;
}

.btn_white {
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFF;
}

.btn_white:hover {
  background: #FFF;
  border-color: #fff;
  color: #202020;
}

.btn_viol {
  border-color: #3E51B5;
  color: #3E51B5;
}

.btn_viol:hover {
  background: #3E51B5;
  color: #FFF;
}

/* Colored Boxes */
.design {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -27px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: auto;
}

.design__col {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.33% - 27px);
  margin: 0 0 26px 27px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  float: left;
}

.design__col_x2 {
  width: calc(66.66% - 27px);
}

.design__col_x3 {
  width: calc(100% - 27px);
}

.design__item {
  position: relative;
}

.design__item_full {
  height: 28vh;
}

.design__item_half {
  height: calc(50% - 13px);
}

.design__pic {
  display: block;
  max-width: 100%;
}

.design__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 30px;
  background: #F54236;
  color: #FFF;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.design__wrap__blue {
  background-color: #2C5A99;
}

.design__wrap__teal {
  background-color: #238896;
}

.design__wrap__green {
  background-color: #84C90D;
}

.design__wrap__purple {
  background-color: #7B70C9;
}

.design__wrap__gold {
  background-color: #C09B14;
}

.design__wrap__orange {
  background-color: #E98C33;
}

.design__wrap__magenta {
  background-color: #9B2296;
}

.design__wrap__copper {
  background-color: #924D09;
}

.design__quote {
  font-size: 23px;
  line-height: 1.34;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.design__quote_description {
  display: block;
  opacity: 0;
  font-size: 23px;
  line-height: 1.34;
  text-align: center;
}

.design__wrap:hover .design__foot {
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  -ms-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
  opacity: 1;
}

.design__foot {
  margin-top: 30px;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.design-foot-title {
  margin-bottom: 3px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.68px;
}

.design-foot-content {
  font-size: 15px;
}

/* Contact Information */
.contacts__map {
  height: 546px;
  background: gray;
  /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.contacts__wrap {
  padding: 90px 0;
}

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

.contacts__col:nth-child(1) {
  -webkit-flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  padding-right: 40px;
}

.contacts__title {
  margin-bottom: 60px;
  font-size: 50px;
  line-height: 1.2;
}

.contacts__item {
  padding-top: 8px;
}

.contacts__item:not(:last-child) {
  margin-bottom: 25px;
}

.contacts__type {
  margin-bottom: 8px;
  opacity: .6;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contacts__text {
  font-size: 30px;
  color: #202020;
  transition: opacity .2s;
}

.contacts__text:hover {
  opacity: .7;
}

.info-pic-wrapper {
  margin-bottom: 25px;
}

.info-pic {
  display: block;
  width: 100%;
}

.info-content-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -27px;
}

.info-content-item {
  width: calc(33.33% - 27px);
  margin-left: 27px;
  text-align: center;
}

.info-content-title {
  margin-bottom: 25px;
  opacity: .6;
  font-size: 18px;
  letter-spacing: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info-content {
  opacity: .8;
  font-size: 23px;
  line-height: 1.34;
}

/* Overlays */
.overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: black;
  opacity: 0.85;
  z-index: 1000;
  display: none;
}

.touch {
  padding: 50px 0 55px;
  background: rgba(180, 134, 171, 0.1);
  text-align: center;
}

.touch__content {
  max-width: 940px;
  margin: 0 auto 40px;
  font-size: 35px;
  color: #B486AB;
  line-height: 1.48;
}

.video-container {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

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

.collapsible_body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

.collapsible_body p {
  font-size: 14px;
  opacity: 0.85;
  text-align: left;
  margin-bottom: 15px;
}

/* Loaders */
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  -ms-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

/* Footer Elements */
.footer {
  background: #101010;
  color: #fff;
}

.footer__wrap {
  padding: 40px 0;
}

.footer__wrap:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__center {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__text {
  padding-right: 30px;
  font-size: 30px;
}

.footer__copyright {
  opacity: .4;
  font-size: 22px;
}

.footer__right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__link {
  opacity: .4;
  font-size: 20px;
  color: #fff;
  transition: opacity .2s;
}

.footer__link:hover {
  opacity: .7;
}

.footer__link:not(:first-child) {
  margin-left: 35px;
}

.footer__nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__social {
  margin-left: 35px;
}

.footer .icon {
  display: block;
}

.footer .icon-facebook {
  font-size: 24px;
}

.footer .icon-twitter {
  font-size: 20px;
}

.social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-social {
  width: 1em;
  height: 1em;
  fill: #FFF;
}

@media only screen and (max-width: 1200px) {

  .header__nav {
    margin: 0 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__link {
    margin: 0 10px;
  }

  .design__col_x2 {
    width: calc(100% - 27px);
  }

  .design__item_half {
    height: 100%;
  }

  .design__r {
    display: none;
  }

}

@media only screen and (max-width: 1023px) {
  /* Header Elements */
  .header__nav {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header__link {
    margin: 5px 10px;
  }

  /* Content Elements */
  .design__quote {
    font-size: 20px;
  }

  .contacts__center {
    display: block;
  }

  .contacts__col:nth-child(1) {
    margin-bottom: 80px;
    padding: 0;
  }

  .info-content-wrapper {
    display: block;
    margin: 0;
  }

  .info-content-item {
    width: 100%;
    margin: 0;
  }

  .info-content-item:not(:last-child) {
    margin-bottom: 80px;
  }

  /* Footer Elements */
  .footer__wrap:nth-child(1) .footer__center {
    display: block;
  }

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

@media only screen and (max-width: 767px) {
  /* Header Elements */
  .header {
    height: 71px;
    padding: 13px 0;
  }

  .header__btn {
    display: none;
  }

  .header__nav {
    display: block;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 25px;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility .5s, opacity .5s;
    -moz-transition: visibility .5s, opacity .5s;
    -ms-transition: visibility .5s, opacity .5s;
    -o-transition: visibility .5s, opacity .5s;
    transition: visibility .5s, opacity .5s;
  }

  .header__nav.visible {
    /*display: block;*/
    opacity: 1;
    visibility: visible;
  }

  .header__link {
    display: block;
    margin: 0;
    padding: 15px;
    border: 1px solid rgba(32, 32, 32, 0.15);
    color: #202020;
    text-align: center;
  }

  .header__link:not(:first-child) {
    border-width: 0 1px 1px;
  }

  .header__burger {
    display: block;
  }

  .promo {
    height: 362px;
  }

  .promo__title {
    margin-bottom: 32px;
    font-size: 28px;
    letter-spacing: 7px;
  }

  /* Content Elements */
  .design__quote {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  
  .btn_lg {
    height: 50px;
    font-size: 20px;
  }

  .center {
    padding: 0 20px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section_start {
    padding-top: 20px;
  }

  .section_finish {
    padding-bottom: 20px;
  }

  .section__head {
    margin-bottom: 30px;
    text-align: left;
  }

  .section__title_center {
    text-align: center;
  }

  .section__content {
    font-size: 21px;
    line-height: 1.43;
  }

  .section__action {
    margin-bottom: 50px;
  }

  .section__btn {
    width: 100%;
    margin: 5px 0;
  }

  .section__nav {
    margin: 0 0 30px;
  }

  .section_schedule {
    padding-bottom: 60px;
  }

  .section_schedule .section__body {
    padding-top: 0;
  }

  .section_main .section__title {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: 2.4px;
  }

  .content {
    padding: 0;
    font-size: 21px;
  }

  .content p:not(:last-child),
  .content img:not(:last-child) {
    margin-bottom: 30px;
  }

  .content img {
    width: calc(100% + 60px);
    margin-left: -30px;
  }

  /* Colored Boxes */
  .design {
    display: block;
    margin: 0 -27px;
  }

  .design__col {
    width: 100%;
    margin: 5px;
    overflow: hidden;
  }

  .design__item {
    height: 240px;
    margin-bottom: 10px;
  }

  .design__item_full {
    height: auto;
  }

  .design__item_half {
    height: auto;
  }

  .design__pic {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: 50% 90%;
  }

  .design__pic_top {
    object-position: 50% 0%;
  }

  .design__r {
    display: block;
  }

  /* Contact Information */
  .contacts__map {
    height: 245px;
  }

  .contacts__wrap {
    padding: 33px 0;
  }

  .contacts__col:nth-child(1) {
    margin-bottom: 20px;
  }

  .contacts__title {
    margin: 0;
    font-size: 26px;
    line-height: 1.27;
  }

  .contacts__btn {
    display: none;
  }

  .contacts__item {
    padding: 0 0 16px;
  }

  .contacts__item:not(:last-child) {
    margin-bottom: 18px;
    border-bottom: 1px solid #EAEAEA;
  }

  .contacts__type {
    margin-bottom: 6px;
  }

  .contacts__text {
    font-size: 20px;
  }

  .info-pic-wrapper {
    margin: 0 -20px 40px;
  }

  .info-content-item:not(:last-child) {
    margin-bottom: 40px;
  }

  .info-content-title {
    margin-bottom: 15px;
  }

  .info-content {
    font-size: 21px;
  }

  .touch {
    padding: 40px 0 50px;
  }

  .touch__content {
    font-size: 21px;
    line-height: 1.43;
  }

  /* Footer Elements */
  .footer {
    text-align: center;
  }

  .footer__wrap:nth-child(2) {
    padding: 30px 0;
  }

  .footer__center {
    display: block;
  }

  .footer__text {
    padding: 0;
    font-size: 26px;
  }

  .footer__copyright {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .footer__right {
    display: block;
  }

  .footer__nav {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__nav .footer__link {
    display: block;
    margin: 0;
    padding: 15px;
    opacity: 0.4;
    font-size: 16px;
    color: #FFF;
    letter-spacing: 2.6px;
    text-transform: uppercase;
  }

  .footer__nav .footer__link:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__social {
    margin: 0;
    padding-top: 30px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}


