@charset "UTF-8";
/* proxim-nova-regular */
@font-face {
  font-family: "proxim-nova-regular";
  src: url("../font/proxim-nova-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* roboto-regular */
@font-face {
  font-family: "roboto-regular";
  src: url("../font/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* proxim-nova-bold */
@font-face {
  font-family: "proxim-nova-bold";
  src: url("../font/proxim-nova-bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

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

h1 {
  text-align: center;
  font-size: calc(6px + 2.1333333333vw);
  line-height: 125%;
  font-weight: bold;
  color: #fff;
  font-family: "proxim-nova-regular";
  margin-top: -80px;
  max-width: 90%;
}

h2 {
  font-family: "proxim-nova-bold";
  color: #ffffff;
  font-size: 20px;
}

.video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/bg_video.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.video-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-color: rgba(18, 26, 39, 0.45);
  background-image: url(../img/dot-bg.png);
  background-repeat: repeat;
  z-index: 1;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

#bgVideo {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.x-pad {
  padding-left: 60px;
  padding-right: 60px;
}

#wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  padding-bottom: 20px;
}

.header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  padding-top: 2rem;
  padding-bottom: 2rem;
  top: 0;
  left: 0;
  z-index: 2;
}

.logo {
  max-width: 344px;
  width: 100%;
}
.logo a {
  outline: none;
}
.logo img {
  max-width: 100%;
}

.contact {
  text-align: right;
}
.contact a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  font-size: calc(16px + 1.25vw);
  font-family: "proxim-nova-bold";
}
.contact a img {
  margin-right: 10px;
  width: 25px;
}
.contact span {
  color: #fff;
  display: inline-block;
  font-size: 15px;
  margin-top: 5px;
  font-family: "roboto-regular";
}

.head-info {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  z-index: 1;
}
.head-info a {
  transition: all 0.4s;
  padding: 28px 65px;
  display: inline-block;
  font-size: calc(5px + 1vw);
  background-color: rgba(233, 30, 99, 0.851);
  color: #fff;
  text-align: center;
  border-radius: 3px;
  text-decoration: none;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.head-info a:before {
  content: ""; /* отображает псевдоэлемент */
  position: absolute; /* абсолютное позиционирование */
  top: 0; /* верхняя координата */
  left: 0; /* левая координата */
  width: 2em; /* относительная ширина */
  height: 100%; /* высота как у оригинала */
  background-color: rgba(255, 255, 255, 0.822);
  box-shadow: 0px 0px 10px #fff; /* белый цвет с полупрозрачностью */
  transform: translateX(-0.5em) skewX(-45deg);
  -webkit-animation: moveLight 4s infinite ease-in-out;
          animation: moveLight 4s infinite ease-in-out;
}
.head-info a:hover {
  background-color: #FD0C67;
}
@-webkit-keyframes moveLight {
  from {
    transform: translateX(-20em) skewX(-45deg);
  }
  to {
    transform: translateX(30em) skewX(-45deg);
  }
}
@keyframes moveLight {
  from {
    transform: translateX(-20em) skewX(-45deg);
  }
  to {
    transform: translateX(30em) skewX(-45deg);
  }
}

.bottom-slider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 20px;
  z-index: 2;
}

.slick-partners {
  position: relative;
  max-width: 90%;
  margin: auto;
}

.slick-partners {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}

.slick-partners.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.bottom-slider .slick-list {
  margin: auto;
}

.bottom-slider .slide-item {
  text-align: center;
  margin: 0px 33px;
}
.bottom-slider .slide-item:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.bottom-slider .slide-item img {
  margin: auto;
  max-width: 82%;
  border-radius: 10px;
}

.bottom-slider .slick-arrow {
  font-size: 0;
  background-color: #108cf7;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  transition: 0.2s;
}
.bottom-slider .slick-arrow:hover {
  background-color: #20629b;
}
.bottom-slider .slick-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border: solid 2px #fff;
  transform: rotate(45deg);
  border-top: none;
  border-right: none;
}
.bottom-slider .slick-arrow.slick-prev {
  left: -5%;
}
.bottom-slider .slick-arrow.slick-prev:before {
  left: 5px;
}
.bottom-slider .slick-arrow.slick-next {
  right: -5%;
  transform: rotate(180deg);
}
.bottom-slider .slick-arrow.slick-next:before {
  right: -5px;
}

.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.m-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  cursor: pointer;
  font-family: "roboto-regular";
  background-color: #fff;
  color: #f60f66;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 20px;
  border: 1px #f60f66 solid;
  transition: 0.1s;
}
.m-close:hover {
  background-color: #f60f66;
  color: #fff;
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal.active .m-container {
  opacity: 1;
}

.m-inner-content {
  border: 1px solid #e6e6e6;
  position: relative;
}

.m-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px 15px;
  border-radius: 10px;
  position: relative;
  border-radius: 20px;
  margin-top: 72px;
  margin-bottom: 72px;
  max-height: calc(100% - 144px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  overflow: hidden;
}

.m-title {
  text-align: center;
  padding: 20px 30px;
}
.m-title h4 {
  font-family: "proxim-nova-bold";
  font-size: 25px;
}

.m-content {
  position: relative;
}

.button-form-modal-submit:hover {
  background-color: #661523;
}

.button-form-modal-submit + .button-form-modal-submit {
  display: none;
}

@media only screen and (max-width: 767px) {
  .x-pad {
    padding-left: 15px;
    padding-right: 15px;
  }
  .logo {
    max-width: 45%;
  }
  .contact {
    max-width: 45%;
  }
  .contact span {
    font-size: 12px;
  }
  .m-title h4 {
    margin: 10px 0;
    font-size: 17px;
  }
  .m-content h4 {
    margin: 10px 0;
    font-size: 19px;
  }
}
@media only screen and (max-width: 576px) {
  h2 {
    font-size: 16px;
  }
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact a {
    font-size: 12px;
  }
  .contact a img {
    width: 10px;
  }
  .contact span {
    font-size: 8px;
  }
  .head-info {
    padding-top: 72px;
    padding-bottom: 50px;
  }
  .head-info a {
    padding: 15px 45px;
  }
  .bottom-slider .slide-item {
    margin: 0 0;
  }
  .bottom-slider .slide-item img {
    border-radius: 5px;
  }
}/*# sourceMappingURL=main.css.map */