@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.woff2") format("woff2"),
    url("../fonts/icomoon.woff") format("woff"),
    url("../fonts/icomoon.ttf") format("truetype"),
    url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body.is-noscroll {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 0;
  border: 1px solid #ff681a;
  border-radius: 4px;
  padding: 15px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .btn {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1600px) {
  .btn {
    font-size: 24px;
    line-height: 32px;
  }
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--red {
  background-color: #ff681a;
  color: #fff;
}

.btn--white {
  border-color: #fff;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 32px;
}

@media (min-width: 992px) {
  .btn--white {
    font-size: 21px;
    line-height: 24px;
  }
}

@media (min-width: 1600px) {
  .btn--white {
    font-size: 28px;
    line-height: 32px;
  }
}

.btn--white-border {
  border-color: #fff;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  padding: 8px 24px;
  border-radius: 30px;
}

.btn--black {
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.btn--link {
  padding: 0;
  border: 0;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ff681a;
  z-index: 999;
}

.header.is-show .navbar {
  transform: translateX(0);
}

.header.is-show .toggle__icon {
  background-color: transparent;
}

.header.is-show .toggle__icon::before {
  transform: rotate(45deg);
  top: 0;
}

.header.is-show .toggle__icon::after {
  transform: rotate(-45deg);
  top: 0;
  width: 24px;
}

.header__body {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease-out;
}

@media (min-width: 992px) {
  .header__body {
    padding: 12px 0;
  }
}

@media (min-width: 1600px) {
  .header__body {
    padding: 16px 0;
  }
}

.logo {
  position: relative;
  width: 130px;
  transition: all 0.3s ease-out;
  z-index: 2;
}

@media (min-width: 992px) {
  .logo {
    width: 165px;
  }
}

@media (min-width: 1600px) {
  .logo {
    width: 220px;
  }
}

.navbar {
  position: fixed;
  top: 49px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 49px);
  transform: translateX(100%);
  display: block;
  list-style: none;
  background-color: #ff681a;
  overflow: hidden;
  overflow-y: auto;
  padding: 0;
  transition: transform 0.3s ease-out;
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: auto;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background-color: transparent;
    transform: none;
    width: auto;
    height: 100%;
    overflow: unset;
  }
}

.navbar__item {
  display: flex;
  justify-content: center;
  padding: 24px 15px;
  border-bottom: 1px solid #ccc;
}

@media (min-width: 992px) {
  .navbar__item {
    padding: 0;
    border-bottom: 0;
    margin-left: 80px;
  }
}

.navbar__item:last-child {
  border-bottom: 0;
}

.navbar__item:last-child .navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .navbar__item:last-child .navbar__link {
    padding: 12px 24px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.3s ease-out;
  }
}

@media (min-width: 992px) {
  .is-desktop .navbar__item:last-child .navbar__link:hover {
    border: 1px solid #ccc;
  }
}

.navbar__item:last-child .navbar__link .icon {
  font-size: 24px;
  margin-right: 10px;
}

@media (min-width: 992px) {
  .navbar__item:last-child .navbar__link .icon {
    font-size: 18px;
  }
}

@media (min-width: 1600px) {
  .navbar__item:last-child .navbar__link .icon {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .header.is-move .popup {
    top: 59px;
  }
}

.navbar__link {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease-out;
}

@media (min-width: 992px) {
  .navbar__link {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
  }
}

.is-desktop .navbar__link:hover {
  color: #ccc;
}

@media (min-width: 1600px) {
  .navbar__link {
    font-size: 18px;
    line-height: 24px;
  }
}

.toggle {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 20px;
  border: 0;
  outline: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

@media (min-width: 992px) {
  .toggle {
    display: none;
  }
}

.toggle:hover,
.toggle:active {
  outline: 0;
}

.toggle__icon {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  left: 0;
  transition: background-color 0.15s ease-out;
}

.toggle__icon::before,
.toggle__icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0;
  transition: all 0.3s ease-out;
}

.toggle__icon::before {
  top: -8px;
}

.toggle__icon::after {
  top: 8px;
  width: 20px;
}

.icon {
  font-family: "icomoon", sans-serif;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon--quote-left:before {
  content: "\e909";
}

.icon--quote-right:before {
  content: "\e90a";
}

.icon--youtube:before {
  content: "\e905";
}

.icon--twitter:before {
  content: "\e906";
}

.icon--instagram:before {
  content: "\e907";
}

.icon--facebook:before {
  content: "\e908";
}

.icon--arrow-right:before {
  content: "\e900";
}

.icon--arrow-left:before {
  content: "\e904";
}

.icon--burger:before {
  content: "\e901";
}

.icon--location:before {
  content: "\e902";
}

.icon--user:before {
  content: "\e903";
}

.footer {
  background-color: #ff681a;
  padding: 36px 0;
  color: #fff;
  overflow: hidden;
}

@media (min-width: 1600px) {
  .footer {
    padding: 48px 0;
  }
}

.footer__head {
  /* margin-bottom: 20px; */
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer__head {
    /* margin-bottom: 72px; */
    justify-content: flex-start;
  }
}

.footer__logo {
  width: 132px;
}

@media (min-width: 992px) {
  .footer__logo {
    width: 165px;
  }
}

@media (min-width: 1600px) {
  .footer__logo {
    width: 220px;
  }
}

.menu {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
  text-align: center;
}

@media (min-width: 992px) {
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-align: left;
  }
}

.menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px 0;
}

@media (min-width: 992px) {
  .menu__item {
    border-bottom: 0;
    padding: 0;
  }
}

.menu__item::before {
  display: none;
}

.menu__link {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 28px;
  transition: color 0.3s ease-out;
}

.is-desktop .menu__link:hover {
  color: #ccc;
}

@media (min-width: 1600px) {
  .menu__link {
    font-size: 16px;
    line-height: 22px;
  }
}

.info {
  text-align: center;
  margin-bottom: 38px;
}

@media (min-width: 992px) {
  .info {
    margin-bottom: 0;
    text-align: left;
  }
}

.info__title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}

.info__email a {
  text-decoration: underline;
}

.info__link {
  color: #fff;
  transition: color 0.3s ease-out;
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.is-desktop .info__link:hover {
  color: #ccc;
}

.info p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 992px) {
  .info p {
    font-size: 16px;
    line-height: 22px;
  }
}

.info p span {
  margin-top: 6px;
  display: block;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .social {
    justify-content: flex-end;
  }
}

.social__link {
  margin: 0 20px;
  font-size: 18px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.is-desktop .social__link:hover {
  opacity: 0.75;
}

@media (min-width: 992px) {
  .social__link {
    margin: 0 0 0 30px;
  }
}

@media (min-width: 1600px) {
  .social__link {
    font-size: 24px;
    margin: 0 0 0 40px;
  }
}

.copyright {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

@media (min-width: 992px) {
  .copyright {
    text-align: right;
  }
}

@media (min-width: 1600px) {
  .copyright {
    font-size: 16px;
    line-height: 22px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}

@media (min-width: 992px) {
  .popup {
    top: 79px;
    height: calc(100% - 79px);
  }
}

.popup.is-show {
  display: flex;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .popup.is-show {
    align-items: flex-start;
  }
}

.popup__dialog {
  position: relative;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  padding-top: 50px;
  border-radius: 16px 16px 0 0;
}

@media (min-width: 992px) {
  .popup__dialog {
    padding-top: 0;
    padding-bottom: 15px;
    border: 0;
  }
}

.popup__body {
  margin: 0 -15px;
}

@media (min-width: 992px) {
  .popup__body {
    position: relative;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
}

.popup__body .form {
  border-radius: 16px 16px 0 0;
  width: 100%;
}

@media (min-width: 992px) {
  .popup__body .form {
    width: 360px;
    border-radius: 0;
    box-shadow: 0 0 5px #808080;
  }
}

@media (min-width: 1600px) {
  .popup__body .form {
    width: 480px;
  }
}

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

@media (min-width: 992px) {
  .popup__body .form__foot {
    display: none;
  }
}

.popup__body .form__foot .btn {
  background-color: transparent;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #808080;
}

.form--account {
  background-color: #fff;
  padding: 24px 16px;
}

@media (min-width: 992px) {
  .form--account {
    padding: 24px 36px;
  }
}

@media (min-width: 1600px) {
  .form--account {
    padding: 32px 48px;
  }
}

.form__group {
  margin-bottom: 15px;
}

.form__label {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .form__label {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 1600px) {
  .form__label {
    font-size: 18px;
    line-height: 24px;
  }
}

.form__forgot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #808080;
}

@media (min-width: 992px) {
  .form__forgot {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (min-width: 1600px) {
  .form__forgot {
    font-size: 16px;
    line-height: 22px;
  }
}

.form__control {
  outline: 0;
  border: 0;
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  color: #404040;
  background-color: #fff;
}

@media (min-width: 992px) {
  .form__control {
    font-size: 12px;
    line-height: 14px;
  }
}

@media (min-width: 1600px) {
  .form__control {
    font-size: 16px;
    line-height: 20px;
  }
}

.form__title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .form__title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (min-width: 1600px) {
  .form__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.form__sign {
  font-size: 16px;
  line-height: 2.2px;
  margin-bottom: 38px;
}

@media (min-width: 992px) {
  .form__sign {
    font-size: 11px;
    line-height: 13px;
  }
}

@media (min-width: 1600px) {
  .form__sign {
    font-size: 14px;
    line-height: 16px;
  }
}

.form__note {
  font-size: 14px;
  line-height: 16px;
  color: #404040;
}

@media (min-width: 992px) {
  .form__note {
    font-size: 16px;
    line-height: 22px;
  }
}

.form__error {
  color: #ff681a;
  font-size: 12px;
  line-height: 16px;
}

.form .g-recaptcha {
  margin-top: 50px;
  transform: scale(0.77);
  transform-origin: 0 0;
}

@media (min-width: 1600px) {
  .form .g-recaptcha {
    transform: scale(1);
  }
}

.form .btn {
  margin-top: 30px;
}
