@charset "UTF-8";

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

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

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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

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;
}

:root {
  --container-width: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Museo Sans";
  --heading-font-family: "Museo Sans";
  --sp: 70px;
  --mb: 50px;
  --accent: #0269D2;
  --secondary: #FFCE3B;
  --bg: #fff;
  --text-color: #151515;
  --fz-default: 18px;
  --h1: 50px;
  --h2: 36px;
  --h3: 30px;
  --h4: 24px;
  --l: 26px;
  --m: 18px;
  --s: 16px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99FF99 !important;
}

h1,
._h1 {
  font: 700 var(--h1) var(--heading-font-family);
}

h2,
._h2 {
  font: 700 var(--h2) var(--heading-font-family);
}

h3,
._h3 {
  font: 700 var(--h3) var(--heading-font-family);
}

h4,
._h4 {
  font: 700 var(--h4) var(--heading-font-family);
}

.main__title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto var(--mb);
  border-left: 4px solid var(--secondary);
  padding: 0 10px;
  line-height: 54px;
}

.main__title span {
  color: var(--accent);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 39px;
  background: #52C39D;
  padding: 15px 35px;
  color: #FFF;
  text-decoration: none;
  font-size: var(--m);
  font-weight: 600;
  line-height: 140%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: inline-flex;
}

.btn:hover {
  color: #FFF;
  opacity: 0.5;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  max-width: 400px;
  position: relative;
}

.form__inputs {
  display: flex;
  flex-flow: column;
  gap: 15px;
  margin-bottom: 30px;
}

.form .input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  background: #F3F3F5;
  border: none;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  display: block;
}

.form .input__wrap {
  display: block;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  display: block;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__container {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.header__logo {
  width: 140px;
  height: 40px;
  background: no-repeat center/contain;
  margin-right: 100px;
}

.header__menu {
  display: flex;
  font-size: 16px;
}

.header__menu li {
  padding: 0 15px;
}

.header__menu li a {
  color: var(--text-color);
  text-decoration: none;
}

.header__menu li a:hover {
  color: var(--accent);
  text-decoration: none;
}

.header__phone {
  color: var(--accent);
  font-size: var(--m);
  margin-left: auto;
}

.footer {
  margin-top: auto;
}

.footer a {
  color: var(--text-color);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__logo_wrap {
  margin-right: 75px;
}

.footer__logo {
  display: block;
  width: 140px;
  height: 40px;
  background: center/contain no-repeat;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 35%;
}

.footer__menu li {
  width: 50%;
  margin-bottom: 20px;
}

.footer__contacts {
  max-width: 300px;
}

.footer .phone {
  margin-bottom: 10px;
}

.footer .email {
  margin-bottom: 10px;
}

.footer .social__items {
  display: flex;
  gap: 15px;
}

.footer .social__items a {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.footer__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer__bottom {
  margin-top: 30px;
  border-top: 1px solid #c3d7ee;
  padding: 30px 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  color: #848c95;
  gap: 15px;
}

.footer__bottom a {
  color: #848c95;
}

.footer__bottom a:hover {
  color: var(--text-color);
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  width: 80%;
  max-width: 525px;
  margin-bottom: 0px;
  background: #fff;
  box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  padding: 52px;
}

.modal-overlay .modal-content .subm {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.modal-overlay .modal__title {
  font-size: 22px;
  text-align: center;
  margin: 0 20px 30px;
}

.modal-overlay .modal__text {
  color: #848C95;
  font-size: 12px;
  line-height: 140%;
}

.modal-overlay .modal__text a {
  color: var(--accent);
}

.modal-overlay .close-button {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  right: -54px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: "";
  height: 24px;
  width: 2px;
  display: block;
  transform: translateX(12px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: "";
  margin-top: -24px;
  height: 24px;
  width: 2px;
  display: block;
  transform: translateX(12px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 42px;
    --h2: 38px;
    --sp: 50px;
  }

  .header__phone {
    display: none;
  }

  .header .header__burger {
    margin-left: auto;
    display: flex;
    width: 50px;
    height: 50px;
    padding: 12px;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
    z-index: 102;
    cursor: pointer;
  }

  .header .header__burger span {
    height: 4px;
    width: 100%;
    border-radius: 2px;
    background: #323336;
    transition: 0.2s linear;
  }

  .header .header__burger.active span:nth-child(2) {
    display: none;
  }

  .header .header__burger.active span:nth-child(1) {
    transform: rotate(45deg);
  }

  .header .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -25px;
  }

  .header .header .container:before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #fff;
  }

  .header .header__menu {
    position: fixed;
    min-height: 110vh;
    min-width: 100vw;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: scroll;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-top: 15vh;
    padding-bottom: 20vh;
    transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0, 0.55, 0.45, 1);
  }

  .header .header__menu.active {
    transform: translateX(0);
  }

  .header .header__menu li {
    width: 100%;
    max-width: 760px;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    margin: 0;
    text-align: left;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .header .header__menu .sub-menu li {
    margin-bottom: 0;
  }

  .header .header__menu > li a {
    font-weight: 800;
    font-size: 24px;
    line-height: 40px;
  }

  .header .header__menu a {
    height: auto;
    font-size: 20px;
    line-height: 24px;
    display: inline-block;
  }

  .header .header__menu .sub-menu {
    position: relative;
    opacity: 1;
    top: auto;
    left: auto;
    width: auto;
    box-shadow: none;
    margin-top: 10px;
  }

  .header .header__menu .menu-item-has-children > a {
    pointer-events: none;
  }

  .header .header__menu .menu-item-has-children.active .sub-menu {
    max-height: 400px;
  }

  .header .header__menu .menu-item-has-children.active:after {
    transform: rotate(180deg);
  }

  .header .header__menu .sub-menu li {
    border: none;
    padding: 0;
    padding: 15px 0;
  }

  .header .header__menu .sub-menu li a {
    font-size: 16px;
    line-height: 20px;
    color: #707070;
  }

  .footer__logo_wrap {
    margin-right: 0;
    flex: 0 0 50%;
  }

  .footer__menu {
    flex: 0 0 50%;
  }

  .footer__contacts {
    flex: 0 0 50%;
  }

  .footer__social {
    flex: 0 0 50%;
  }

  .modal-overlay .modal-content {
    padding: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 360px;
    --h1: 26px;
    --h2: 24px;
    --sp: 30px;
  }

  .header__container {
    justify-content: space-between;
  }

  .header__menu {
    display: none;
  }

  .footer__top {
    flex-direction: column;
    gap: 15px;
  }

  .modal-overlay .modal-content {
    padding: 25px;
  }

  .modal-overlay .close-button {
    top: 10px;
    right: 10px;
  }

  .modal-overlay .close-button:before,
  .modal-overlay .close-button:after {
    background-color: var(--text-color);
  }
}