.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}

.more-splash {
  -webkit-animation-name: splash;
  animation-name: splash;
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
}

@-webkit-keyframes splash {
  from {
    -webkit-box-shadow: 0 0 10px #c78030;
    box-shadow: 0 0 10px #c78030;
  }

  to {
    -webkit-box-shadow: 0 0 60px #c78030;
    box-shadow: 0 0 60px #c78030;
  }
}

@keyframes splash {
  from {
    -webkit-box-shadow: 0 0 10px #c78030;
    box-shadow: 0 0 10px #c78030;
  }

  to {
    -webkit-box-shadow: 0 0 60px #c78030;
    box-shadow: 0 0 60px #c78030;
  }
}

* {
  font-family: 'Roboto Slab';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
}

h2 {
  margin: 0;
}

img {
  max-width: 100%;
}

input,
button {
  max-width: 100%;
}

input:focus,
button:focus {
  outline: none;
}

header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.menu {
  -webkit-transform: translateY(53%);
  transform: translateY(53%);
}

.menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.menu-item:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c78030;
  margin-top: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.menu-item:before {
  content: '';
  display: block;
  width: 100%;
  right: 0;
  height: 1px;
  background-color: #c78030;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.menu-item:hover:after {
  width: 40%;
}

.screen {
  background: url("../img/bg/screen_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 130px 0 70px;
}

.screen-block {
  width: 70%;
  min-height: 280px;
  border: 6px solid #c78030;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.screen-block__link {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.screen-block__link:after {
  content: '';
  display: block;
  width: 30%;
  height: 3px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 2px;
}

.screen-block__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 30px;
}

.screen-block__descr {
  color: #c78030;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
}

.content {
  width: 100%;
  background: url("../img/bg/main_bg.jpg");
  background-position: 50% 30%;
}

.info {
  width: 100%;
  min-height: 580px;
  background-color: #373737;
  padding: 50px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

.info-header {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.info-header__tab {
  color: #c78030;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}

.info-header__tab:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background-color: #c78030;
  margin-top: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.info-header__tab:hover,
.info-header__tab-clicked {
  color: #c78030;
}

.info-header__tab:hover:after,
.info-header__tab-clicked:after {
  width: 60%;
}

.info-tabcontent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.description {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.description-title {
  font-size: 32px;
  color: #c78030;
}

.description-text {
  margin-top: 30px;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  padding-right: 20px;
}

.description-btn {
  width: 180px;
  height: 45px;
  line-height: 43px;
  margin-top: 50px;
  border: 1px solid #c78030;
  font-size: 14px;
  color: #c78030;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-weight: 300;
  cursor: pointer;
}

.description-btn:hover {
  -webkit-box-shadow: 0px 0px 5px #c78030;
  box-shadow: 0px 0px 5px #c78030;
}

.photo {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}

.photo img {
  width: 100%;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

.hide {
  display: none;
}

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

.timer {
  padding: 80px;
  text-align: center;
  color: #c78030;
}

.timer-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.timer-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  color: #fff;
}

.timer-subtitle:after {
  content: '';
  display: block;
  width: 7%;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 7px;
}

.timer-countdown {
  width: 465px;
  height: 152px;
  position: relative;
  text-align: center;
  background: #222;
  background-image: -o-linear-gradient(top, #222, #333, #333, #222);
  border: 1px solid #111;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  padding: 24px 0;
  margin-bottom: 40px;
}

.timer-countdown:before {
  content: "";
  width: 8px;
  height: 65px;
  background: #444;
  background-image: -o-linear-gradient(top, #555, #444, #444, #555);
  border: 1px solid #111;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  display: block;
  position: absolute;
  top: 44px;
  left: -8px;
}

.timer-countdown:after {
  content: "";
  width: 8px;
  height: 65px;
  background: #444;
  background-image: -o-linear-gradient(top, #555, #444, #444, #555);
  border: 1px solid #111;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  display: block;
  position: absolute;
  top: 44px;
  right: -8px;
}

.timer-numbers {
  z-index: 1;
}

.timer-numbers span {
  width: 88px;
  max-width: 88px;
  font: bold 48px 'Droid Sans', Arial, sans-serif;
  color: #111;
  background-color: #ddd;
  background-image: -o-linear-gradient(top, #bbb, #eee);
  border-top: 1px solid #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
  margin: 0 7px;
  padding: 17px 0;
  display: inline-block;
}

.timer-numbers span:after {
  content: "";
  width: 100%;
  background: #eee;
  border-top: 1px solid #333;
  display: block;
  position: absolute;
  top: 48%;
  left: 0;
}

.timer-labels {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 8px;
}

.timer-labels li {
  width: 102px;
  font-size: 15px;
  font-weight: 700;
  color: #c78030;
  text-shadow: 1px 1px 0 #000;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
}

.timer-btn {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 60px;
  background-color: transparent;
  border: 1px solid #c78030;
  font-size: 18px;
  color: #c78030;
  cursor: pointer;
}

.timer-btn:hover {
  -webkit-box-shadow: 0 0 10px #c78030;
  box-shadow: 0 0 10px #c78030;
}

.slider {
  padding: 10px 40px;
  position: relative;
  margin-bottom: 100px;
}

.slider-title {
  font-size: 32px;
  color: #c78030;
}

.slider-title:after {
  content: '';
  display: block;
  width: 10%;
  height: 1px;
  background-color: #c78030;
  margin-top: 4px;
}

.slider-wrap {
  width: 100%;
  position: relative;
}

.slider-wrap .slider-item {
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}

.slider-wrap .slider-item img {
  width: 100%;
}

.slider-wrap .prev {
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 90px;
  left: 10%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 99%;
}

.slider-wrap .prev:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.slider-wrap .prev:hover .arrow-left {
  opacity: 1;
}

.slider-wrap .prev .arrow-left {
  width: 30px;
  height: 30px;
  background: url("../img/slider/left-arrow.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  opacity: .4;
  -webkit-transition: 1s;
  transition: 1s;
}

.slider-wrap .next {
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 90px;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 99%;
  right: 10%;
}

.slider-wrap .next:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.slider-wrap .next:hover .arrow-right {
  opacity: 1;
}

.slider-wrap .next .arrow-right {
  width: 30px;
  height: 30px;
  background: url("../img/slider/right-arrow.svg") center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  opacity: .4;
  -webkit-transition: 1s;
  transition: 1s;
}

.slider-dots {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider-dots .dot {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 10px;
  background-color: #c78030;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.slider-dots .dot-active {
  background-color: #000;
  height: 18px;
  width: 18px;
}

.counter-title {
  font-size: 32px;
  color: #c78030;
}

.counter-title:after {
  content: '';
  display: block;
  width: 10%;
  height: 1px;
  background-color: #c78030;
  margin-top: 4px;
}

.counter-block {
  padding: 10px;
  margin-top: 20px;
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  color: #c78030;
}

.counter-block__input {
  display: block;
  width: 120px;
  height: 50px;
  color: #c78030;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(199, 126, 48, 0.6);
  font-size: 40px;
  text-align: center;
}

.counter-block select {
  width: 230px;
  height: 35px;
  padding-left: 10px;
  background-color: rgba(199, 126, 48, 0.8);
  color: #fff;
  border: none;
}

.counter-total {
  padding-right: 100px;
  text-align: right;
  font-size: 46px;
  color: #c78030;
}

.counter-total span {
  font-size: 52px;
}

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

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

.contact {
  width: 86%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #373737;
  margin: 0 auto;
  margin-top: 100px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}

.contact-img {
  width: 50%;
  overflow: hidden;
}

.contact-img img {
  height: 550px;
  -webkit-transform: translateY(-13%);
  transform: translateY(-13%);
  opacity: 0.7;
}

.contact-form {
  width: 50%;
  padding-left: 40px;
}

.contact-form-title {
  margin-top: 30px;
  color: #c78030;
  font-size: 26px;
  font-weight: 300;
}

.contact-form-title:after {
  content: '';
  display: block;
  width: 20%;
  height: 1px;
  background-color: #c78030;
  margin-top: 4px;
}

.contact-form-example {
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 300;
  display: block;
  margin-top: 3px;
}

.contact-form form input {
  display: block;
  width: 60%;
  height: 40px;
  margin-top: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.contact-form form button {
  margin-top: 60px;
  margin-bottom: 10px;
  width: 150px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #c78030;
  color: #c78030;
  cursor: pointer;
}

.contact-form form button:hover {
  -webkit-box-shadow: 0 0 10px #c78030;
  box-shadow: 0 0 10px #c78030;
}

footer {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
}

footer .social-block {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(199, 128, 48, 0.5);
  margin-right: 15px;
}

footer .social-block:hover {
  -webkit-box-shadow: 0 0 10px #c78030;
  box-shadow: 0 0 10px #c78030;
}

footer .social-block a img {
  width: 50%;
  display: block;
  margin: 0 auto;
  margin-top: 17px;
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.overlay .popup {
  position: fixed;
  z-index: 4;
  left: 50%;
  top: 150px;
  width: 752px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.overlay .popup-close {
  position: absolute;
  right: -20px;
  top: -35px;
  cursor: pointer;
  font-size: 35px;
  color: #fff;
  font-weight: 300;
}

.overlay .popup-title {
  display: block;
  width: 100%;
  height: 71px;
  line-height: 71px;
  margin: 0;
  background-color: #c78030;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

.overlay .popup-body {
  background: url("../img/bg/modal_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 35px 88px 50px 88px;
  color: #fff;
}

.overlay .popup-text {
  padding: 0;
  font-weight: 400;
  line-height: 27px;
  font-size: 30px;
  text-align: center;
}

.overlay .popup-form__label {
  display: block;
  margin-top: 23px;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

.overlay .popup-form__input {
  width: 365px;
  height: 56px;
  margin-top: 17px;
  font-size: 18px;
  background-color: #c78030;
  border: none;
  color: #fff;
  text-align: center;
  color: #fff;
}

.overlay .popup-form__input::-webkit-input-placeholder {
  color: #fff;
}

.overlay .popup-form__input::-moz-placeholder {
  color: #fff;
}

.overlay .popup-form__input:-moz-placeholder {
  color: #fff;
}

.overlay .popup-form__input:focus::-webkit-input-placeholder {
  color: transparent;
}

.overlay .popup-form__input:focus::-moz-placeholder {
  color: transparent;
}

.overlay .popup-form__input:focus:-moz-placeholder {
  color: transparent;
}

.overlay .popup-form__btn {
  width: 180px;
  height: 56px;
  font-size: 15px;
  line-height: 22px;
  margin-left: 16px;
  background-color: transparent;
  color: #c78030;
  border: 1px solid #c78030;
  cursor: pointer;
}

.overlay .popup-form__btn:hover {
  -webkit-box-shadow: 0 0 10px #c78030;
  box-shadow: 0 0 10px #c78030;
}

@media (max-width: 576px) {
  .header {
    height: 70px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .header-active {
    height: 160px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .hamburger {
    position: fixed;
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    right: 15px;
    top: 15px;
  }

  .hamburger span,
  .hamburger span::before,
  .hamburger span::after {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #c78030;
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -1px;
    margin-right: -10px;
    z-index: 666;
  }

  .hamburger span::before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: -7px;
  }

  .hamburger span::after {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: 5px;
  }

  .hamburger-active span {
    background-color: transparent;
  }

  .hamburger-active span::before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: 0;
  }

  .hamburger-active span::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 0;
  }

  .menu-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .menu-item {
    display: none;
    margin-bottom: 3px;
    letter-spacing: 3px;
  }

  .menu-item-active {
    display: block;
  }

  .menu-item:hover {
    color: #c78030;
  }

  .menu-item:after {
    display: none;
  }

  .menu-item:before {
    display: none;
  }

  .screen {
    padding-top: 160px;
    padding-bottom: 80px;
    padding-right: 0;
  }

  .screen-block {
    width: 100%;
    padding: 10px;
    min-height: 240px;
  }

  .screen-block__link {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .screen-block__title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .screen-block__descr {
    font-size: 12px;
  }

  .info {
    padding: 20px;
  }

  .info-header {
    height: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .info-header__tab {
    font-size: 14px;
    font-weight: 700;
  }

  .info-tabcontent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .info .description {
    width: 100%;
    text-align: justify;
  }

  .info .description-title {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .info .description-title:after {
    display: none;
  }

  .info .description-text {
    margin-top: 5px;
    padding: 0;
  }

  .info .description-btn {
    display: block;
    margin: 40px auto;
  }

  .info .photo {
    width: 100%;
  }

  .timer {
    padding: 80px 10px;
  }

  .timer-title {
    font-size: 28px;
  }

  .timer-countdown {
    width: 270px;
    height: 100px;
  }

  .timer-countdown:before {
    top: 18px;
  }

  .timer-countdown:after {
    top: 18px;
  }

  .timer-numbers span {
    width: 48px;
    max-width: 48px;
    font-size: 32px;
    padding: 5px 0;
  }

  .timer-labels li {
    width: 55px;
    font-size: 10px;
  }

  .timer-btn {
    width: 200px;
  }

  .slider {
    padding: 0;
  }

  .slider-title {
    text-align: center;
    font-size: 26px;
  }

  .slider-title:after {
    margin: 4px auto;
  }

  .slider .slider-item {
    width: 90%;
  }

  .slider .prev {
    display: none;
  }

  .slider .next {
    display: none;
  }

  .counter {
    text-align: center;
  }

  .counter-title {
    font-size: 26px;
    font-weight: 700;
  }

  .counter-title:after {
    display: none;
  }

  .counter-block {
    width: 90%;
    font-size: 20px;
    margin: 20px auto;
    text-align: left;
    padding: 5px;
  }

  .counter-block__option {
    font-size: 16px;
  }

  .counter-block__input {
    font-size: 36px;
    width: 80px;
  }

  .counter-block select {
    width: 120px;
  }

  .counter-total {
    padding-right: 0;
    text-align: center;
    margin-top: 20px;
  }

  .counter-total span {
    font-size: 48px;
  }

  .contact {
    width: 100%;
    height: 270px;
  }

  .contact-img {
    position: relative;
  }

  .contact-img img {
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .contact-form {
    padding-left: 0;
  }

  .contact-form-title {
    font-size: 14px;
    font-weight: 700;
  }

  .contact-form-example {
    font-size: 10px;
  }

  .contact-form form input {
    width: 90%;
    height: 30px;
    margin-top: 15px;
  }

  .contact-form form button {
    width: 100px;
    display: block;
    margin: 35px 0 5px;
  }

  footer {
    height: 150px;
  }

  footer .social-block {
    width: 50px;
    height: 50px;
  }

  footer .social-block a img {
    margin-top: 13px;
  }

  .overlay .popup {
    top: 100px;
    width: 280px;
  }

  .overlay .popup-title {
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }

  .overlay .popup-body {
    padding: 10px;
  }

  .overlay .popup-text {
    font-size: 18px;
  }

  .overlay .popup-form__label {
    margin-top: 20px;
    font-size: 14px;
  }

  .overlay .popup-form__input {
    margin-top: 7px;
  }

  .overlay .popup-form__btn {
    display: block;
    margin: 20px auto 15px;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .container {
    padding: 0;
  }

  .screen {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .screen-block {
    width: 80%;
    min-height: 230px;
  }

  .screen-block__link {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .screen-block__title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .screen-block__descr {
    font-size: 18px;
  }

  .info {
    padding: 30px;
  }

  .info-header {
    height: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .info-header__tab {
    font-size: 20px;
    font-weight: 400;
  }

  .info-tabcontent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .info .description {
    width: 100%;
    text-align: justify;
  }

  .info .description-title {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
  }

  .info .description-title:after {
    display: none;
  }

  .info .description-text {
    margin-top: 10px;
    padding: 0;
  }

  .info .description-btn {
    display: block;
    margin: 40px auto;
  }

  .info .photo {
    width: 100%;
  }

  .timer {
    padding: 80px 10px;
  }

  .timer-title {
    font-size: 26px;
  }

  .slider {
    padding: 10px;
  }

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

  .slider-title:after {
    margin: 4px auto;
  }

  .slider .slider-item {
    width: 95%;
  }

  .slider .prev {
    display: none;
  }

  .slider .next {
    display: none;
  }

  .counter {
    text-align: center;
  }

  .counter-title {
    font-size: 30px;
    font-weight: 700;
  }

  .counter-title:after {
    margin: 4px auto;
    height: 2px;
  }

  .counter-block {
    width: 75%;
    font-size: 20px;
    margin: 20px auto;
  }

  .counter-block__input {
    margin: 0 auto;
    font-size: 36px;
  }

  .counter-block select {
    width: 180px;
  }

  .counter-total {
    padding-right: 0;
    text-align: center;
    margin-top: 20px;
  }

  .counter-total span {
    font-size: 48px;
  }

  .contact {
    width: 95%;
    height: 270px;
  }

  .contact-img {
    width: 55%;
  }

  .contact-form {
    width: 45%;
    padding-left: 0;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-form-example {
    font-size: 10px;
  }

  .contact-form form input {
    width: 80%;
    height: 30px;
    margin-top: 15px;
  }

  .contact-form form button {
    display: block;
    margin: 40px 0 5px;
  }

  footer .social-block {
    width: 50px;
    height: 50px;
  }

  footer .social-block a img {
    margin-top: 13px;
  }

  .overlay .popup {
    top: 80px;
    width: 520px;
  }

  .overlay .popup-body {
    padding: 15px;
  }

  .overlay .popup-text {
    font-size: 26px;
  }

  .overlay .popup-form__label {
    margin-top: 20px;
    font-size: 18px;
  }

  .overlay .popup-form__input {
    display: block;
    margin: 10px auto 15px;
  }

  .overlay .popup-form__btn {
    display: block;
    margin: 20px auto 15px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .screen-block {
    width: 90%;
  }

  .info-tabcontent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .info .description {
    width: 100%;
    text-align: justify;
  }

  .info .description-title {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
  }

  .info .description-title:after {
    display: none;
  }

  .info .description-text {
    margin-top: 20px;
    padding: 0;
  }

  .info .description-btn {
    display: block;
    margin: 40px auto;
  }

  .info .photo {
    width: 100%;
  }

  .timer-title {
    font-size: 28px;
  }

  .slider {
    padding: 10px;
  }

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

  .slider-title:after {
    margin: 4px auto;
  }

  .slider .slider-item {
    width: 90%;
  }

  .slider .prev {
    left: 5%;
  }

  .slider .next {
    right: 5%;
  }

  .counter-block {
    width: 60%;
    font-size: 20px;
  }

  .counter-total {
    padding-right: 30px;
  }

  .contact {
    height: 300px;
  }

  .contact-img {
    width: 55%;
  }

  .contact-form {
    width: 45%;
    padding-left: 0;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .contact-form-example {
    font-size: 10px;
  }

  .contact-form form input {
    width: 70%;
    height: 30px;
    margin-top: 20px;
  }

  .contact-form form button {
    display: block;
    margin: 40px 0 5px;
    width: 150px;
    height: 40px;
  }

  .overlay .popup {
    top: 80px;
    width: 650px;
  }

  .overlay .popup-body {
    padding: 15px;
  }

  .overlay .popup-form__input {
    display: block;
    margin: 20px auto 15px;
  }

  .overlay .popup-form__btn {
    display: block;
    margin: 20px auto 15px;
  }
}