/* FONTS
-----------------------------------------------------------*/

@font-face {
  font-family: Playfair Display;
  src: url(../fonts/PlayfairDisplay-Regular.b4961abe.otf) format("opentype"),
    url(../fonts/PlayfairDisplay-Regular.fd919158.svg) format("svg"),
    url(../fonts/PlayfairDisplay-Regular.c00d666c.ttf) format("truetype"),
    url(../fonts/PlayfairDisplay-Regular.73b80491.woff) format("woff"),
    url(../fonts/PlayfairDisplay-Regular.2442925c.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/ProximaNova-Regular.ab352d5c.svg) format("svg"),
    url(../fonts/ProximaNova-Regular.e5f89ba1.ttf) format("truetype"),
    url(../fonts/ProximaNova-Regular.495b9e7b.woff) format("woff"),
    url(../fonts/ProximaNova-Regular.c3283706.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Proxima Nova;
  src: url(../fonts/ProximaNova-Light.6f568a66.svg) format("svg"),
    url(../fonts/ProximaNova-Light.32c81730.ttf) format("truetype"),
    url(../fonts/ProximaNova-Light.96f31d16.woff) format("woff"),
    url(../fonts/ProximaNova-Light.effebab7.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}

/* GLOBAL
-----------------------------------------------------------*/

body {
  background: #000;
  font-family: Proxima Nova, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  color: #fff;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

img {
  width: 100%;
}

.section-padding {
  padding: 120px 0;
}

.overflow-hidden {
  overflow: hidden;
}

.z-index {
  position: relative;
  z-index: 10;
}

.position-relative {
  position: relative;
}

/* PROGRESS SCROLLER
-----------------------------------------------------------*/

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  filter: drop-shadow(0 0 26px rgba(231, 33, 33, 0.75));
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  background-color: transparent;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap.active-progress:hover {
  transform: translateY(-6px) scale(1.1);
}

.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 40px;
  font-weight: 300;
  font-size: 22px;
  color: #fff;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
  color: #d3494a;
}

.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 40px;
  font-weight: 300;
  font-size: 22px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #d3494a;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* PRELOADER
-----------------------------------------------------------*/

.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 13;
  background: rgba(15, 13, 21, 1);
  -webkit-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  -moz-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  -o-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  -moz-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  -o-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
}

.preloader .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(18, 15, 23, 1);
  -webkit-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  -moz-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  -o-transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  transition: all 400ms cubic-bezier(0.595, 0.03, 0, 0.88);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  -moz-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  -o-transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
  transition-timing-function: cubic-bezier(0.595, 0.03, 0, 0.88);
}

.preloader .trackbar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  color: #fff;
  text-align: center;
  position: relative;
  background: #808080;
  opacity: 0.99;
}

.preloader .loadbar {
  width: 100%;
  height: 0%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: flicker 15s infinite;
  overflow: hidden;
}

.preloader .holder {
  width: 100%;
  height: 26px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 50px;
  text-align: center;
}

/* PAGE LOADED */

.page-loaded {
  overflow: inherit;
}

.page-loaded .preloader {
  top: 100%;
  transition-delay: 0.5s;
}

.page-loaded .preloader .inner {
  top: 100%;
}

.page-loaded .navbar {
  transform: translateX(0);
}

/* BUTTON RED
-----------------------------------------------------------*/

.button-red,
.button-red-outlined {
  position: relative;
  padding: 1rem 2rem;
  color: #fff;
  background: transparent;
  border: 1px solid #d3494a;
  width: 180px;
  outline: 0 !important;
  transition: all 0.5s ease;
}

.button-red-outlined:before,
.button-red:before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 10%;
  background-color: #d3494a;
  content: "";
  transition: all 0.5s ease;
  transform: translateX(-1px);
}

.button-red-outlined:hover:before,
.button-red:hover:before {
  background-color: #000;
}

.button-red-outlined:hover,
.button-red:hover {
  background-color: #d3494a;
  filter: drop-shadow(0 0 26px rgba(211, 73, 74, 0.5));
}

.button-red-outlined {
  border: 0;
}

.button-red-outlined:before {
  width: 15%;
}

/* CHECKBOX
-----------------------------------------------------------*/

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
  transition: all 0.5s ease;
}

.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #1d1d1d;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  transition: all 0.5s ease;
}

.checkbox-container .checkbox-title {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
  opacity: 1;
}

.checkbox-container .checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  margin-right: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}

.checkbox-container .checkbox-checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 5px;
  top: 5px;
  width: 13px;
  background-color: #d3494a;
  height: 13px;
  border-width: 0 3px 3px 0;
  transition: all 0.5s ease;
}

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

@media screen and (max-width: 960px) {
  .text-right {
    text-align: center;
  }
}

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

.burger {
  position: fixed;
  right: 2rem;
  top: 2rem;
  z-index: 1000;
}

/* HEADER
-----------------------------------------------------------*/

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  padding: 20px 0 35px;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: all 0.5s ease;
}

.fixed-header {
  padding: 15px 0 25px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.header__wrapper {
  transition: all 0.5s ease;
  z-index: 1000;
}

@media screen and (max-width: 960px) {
  .header__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(103%);
  }
}

.header__wrapper.active {
  transform: translateX(3%);
}

.header__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 960px) {
  .header__item {
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
  }
}

.header__item a {
  white-space: nowrap;
}

.header__subtitle {
  transition: all 0.2s ease;
  font-weight: 400;
  font-size: 0.6rem;
  line-height: 12px;
  text-transform: uppercase;
  color: #d3494a;
  margin-bottom: 0.25rem;
}

.header__title {
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4rem;
  color: #fff;
}

.header__title:hover {
  transition: all 0.05s;
  text-shadow: 1px 0 20px rgba(255, 255, 255, 1);
}

.fixed-header .header__title {
  font-size: 18px;
}

/* LOGO TITLE
-----------------------------------------------------------*/

.logo-title {
  display: flex;
  align-items: flex-end;
  margin: 25px auto 0px auto;
  cursor: default;
  font-weight: 800;
  font-size: 70px;
  color: #fff;
  z-index: 1;
}

.logo-title span {
  transition-duration: 0.8s;
  display: inline-block;
  margin: 0 5px;
}

.logo-title span.bsi-anim.hover,
.logo-title span.bsi-anim:hover {
  transition-duration: 50ms;
  text-shadow: 1px 0 20px rgba(255, 255, 255, 1);
}

.logo-desc {
  display: flex;
  align-items: flex-end;
  margin: 0px auto 45px auto;
  cursor: default;
  font-weight: 300;
  font-size: 24px;
  color: #fff;
  z-index: 1;
}

@media (max-width: 992px) {
  .logo-title {
    margin: 0px auto 0px auto;
    font-weight: 900;
    font-size: 28px;
  }
  .logo-title span {
    margin: 0 4px;
  }
  .min-area .img {
  }

  .logo-desc {
    margin: 0px auto 25px auto;
    font-size: 18px;
  }

  .logo-image svg {
    width: 60px;
  }
}

/* FIRST BLOCK
-----------------------------------------------------------*/

.first {
  position: relative;
  overflow: hidden;
}

.first__dark-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.4) 90%
  );
}

.first__bg {
  background: #000;
  z-index: -99;
  right: 0;
  bottom: 0;
}

.first__bg,
.first__bg-field {
  position: absolute;
  top: 0;
  left: 0;
}

.first__bg-field {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .first__bg-field {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .first__bg-field {
    width: 300%;
    left: -100%;
  }
}

.first__bg-field iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.first .container {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first-logo {
  z-index: 1;
  margin-bottom: 5rem;
  max-width: 660px;
}

@media screen and (max-width: 960px) {
  .first-logo {
    margin-bottom: 3rem;
    width: 80%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}

/* ABOUT BLOCK
-----------------------------------------------------------*/

.min-area .img {
  padding: 120px 0 120px 80px;
  position: relative;
  z-index: 3;
}

.min-area .img:after {
  content: "";
  position: absolute;
  top: 50px;
  left: 220px;
  bottom: 50px;
  right: -300px;
  background: #070707;
  z-index: -1;
}

.min-area .content {
  padding-left: 40px;
}

.min-area .content h4 {
  font-weight: 400;
  font-size: 44px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
}

.min-area .content ul {
  margin: 0;
}

.min-area .content ul li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
  position: relative;
  margin-top: 25px;
  padding-left: 25px;
  font-weight: 400;
  color: #fff;
}

.min-area .content ul li:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #999;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.min-area .content ul.feat li {
  padding: 0 0 30px 0;
  border-bottom: 1px solid #eee;
}

.min-area .content ul.feat li:last-of-type {
  padding: 0;
  border: 0;
}

.min-area .content ul.feat li:after {
  display: none;
}

.min-area .content ul.feat li h6 {
  margin-bottom: 5px;
}

.min-area .content ul.feat li h6 span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 10px;
}

.min-area .content ul.feat li p {
  padding-left: 45px;
}

.min-area {
  color: #b7b7b7;
}

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

.sub-title {
  position: relative;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 3px;
  color: #d3494a;
}

.sub-title-NO:after {
  content: "";
  width: 60px;
  height: 1px;
  background: #eee;
  position: absolute;
  left: 0;
  bottom: 45%;
}

.image-anim {
  position: relative;
  overflow: hidden;
  width: 0;
  transition: none;
}

.image-anim img {
  /* width: 100%; */
  width: 500px;
  height: auto;
  opacity: 0;
  transform: translateX(-80px);
  transition: none;
}

.image-anim.animated {
  width: 500px;
  transition: 1.8s;
  transition-delay: 0.2s;
}

.image-anim.animated img {
  opacity: 1;
  transform: translateX(0);
  transition: 1.8s;
  transition-delay: 0.2s;
}

/* PARTNERS
-----------------------------------------------------------*/

.partners__subtitle {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #d3494a;
}

.partners__title {
  font-weight: 400;
  font-size: 44px;
  line-height: 3rem;
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}

.partners .brands {
  padding: 80px 10px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.partners .brands:last-of-type {
  border-right: 0;
}

.partners .brands:hover .img {
  opacity: 1;
  filter: grayscale(0);
}

.partners .brands:hover .link {
  opacity: 1 !important;
  -webkit-transition: all 0;
  -o-transition: all 0;
  transition: all 0;
}

.partners .brands:hover .char {
  -webkit-animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(20ms * var(--char-index));
  animation-delay: calc(20ms * var(--char-index));
}

.partners .brands .item {
  position: relative;
  text-align: center;
}

.partners .brands .item .link {
  font-weight: 300;
  font-size: 28px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #f4f4f4;
  cursor: default;
}

.partners .brands .img {
  max-width: 140px;
  margin: auto;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  filter: grayscale(100%);
}

.partners .bord {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.text-splitting span {
  display: inline-block;
  text-decoration: none;
}

.partners .brands,
.partners .bord {
  border-color: rgba(200, 200, 200, 0.08);
}

@media only screen and (max-width: 1200px) {
  .partners .swiper-slide .row:last-of-type .brands:nth-last-of-type(1) {
    border-bottom: 0px solid rgba(0, 0, 0, 0.08) !important;
  }

  .partners .swiper-slide .row:last-of-type .brands:nth-last-of-type(2) {
    border-bottom: 0px solid rgba(0, 0, 0, 0.08) !important;
  }

  .partners .brands:nth-of-type(2n) {
    border-right: 0;
  }

  .partners .bord {
    border-bottom: 1px solid rgba(0, 0, 0, 0) !important;
  }

  .partners .brands {
    padding: 20px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* partners swiper */

.swiper-partners-pagination {
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50.99%);
}

.swiper-partners-pagination .swiper-pagination-bullet {
  transition: all 0.8s;
  width: 8px;
  height: 4px;
  margin: 0 5px;
  border-radius: 1px;
  background: #ffffff;
  opacity: 0.55;
}

.swiper-partners-pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 4px;
  background: #d3494a;
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .partners .swiper-slide {
    text-align: center;
  }

  .partners .swiper-slide img {
    width: 80%;
    margin-bottom: 2rem;
  }
  .image-anim img{
    width: 100%;
  }
  .min-area .img {
    padding: 50px 0 50px 0;
    position: relative;
    z-index: 3;
  }
  .image-anim.animated {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* FORM AUTH
-----------------------------------------------------------*/

.form .container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form__wrapper {
  max-width: 500px;
  padding: 70px;
  background: #121215;
  margin: 0 auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  filter: drop-shadow(0 0 56px rgba(231, 33, 33, 0.075));
}

@media screen and (max-width: 560px) {
  .form__wrapper {
    padding: 25px 30px;
  }
  .indicator {
    width: 140px !important;
  }
}

.form form {
  text-align: center;
}

.form .checkbox-container {
  text-align: left;
}

.form__button {
  position: relative;
  font-family: Playfair Display, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-align: center;
  color: #ddd;
  border: 0;
  box-shadow: none;
  background: transparent;
  transition: all 0.5s ease;
  width: 100%;
  outline: 0 !important;
  padding: 0.6rem;
}

/*.form__button:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  width: 100%;*/
/*  background: #fff;*/
/*  height: 1px;*/
/*  transition: all .5s ease*/
/*}*/

.form__button:active,
.form__button:focus,
.form__button:hover,
.form__button.active {
  color: #d3494a;
  text-shadow: 0 0 26px rgba(211, 73, 74, 0.9);
}

/*.form__button:active:before, .form__button:focus:before, .form__button.active:before {*/
/*  height: 3px*/
/*}*/

.form__group {
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}

.form__group input {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: solid 1px #fff;
  outline: 0 !important;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: #bdbdbd;
  padding: 15px 0px;
  margin-top: 1rem;
}

/*.form__group:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  width: 100%;*/
/*  background: #fff;*/
/*  height: 1px;*/
/*  transition: all .5s ease*/
/*}*/

/*.form__group:active:before, .form__group:focus:before, .form__group:hover:before {*/
/*  height: 2px*/
/*}*/

.form .checkbox-container {
  margin-top: 3rem;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.4rem;
  color: #bdbdbd;
}

.form .button-red {
  margin: 0 auto;
}

.circle {
  width: 0;
  height: 0;
  position: absolute;
}

.indicator {
  width: 180px;
  height: 2px;
  background: #c94647;
  position: absolute;
  margin-top: 47px;
  margin-left: 0;
  transition: margin 0.5s ease;
}

.white-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 0.5s ease;
  height: 2px;
  background: #d3494a;
}

.form__group input:focus ~ .white-line {
  width: 100%;
}

/*----------------------------------------------------------------------------------------
 FORM ANIMATION
----------------------------------------------------------------------------------------*/

.form-anim {
  transition: all 1.8s ease-in-out;
}

.form-anim .form-anim-inner {
  opacity: 0;
  -webkit-transition: opacity 1.4s linear 1.4s;
  -o-transition: opacity 1.4s linear 1.4s;
  transition: opacity 1.4s linear 1.4s;
}

.form-anim.animated .form-anim-inner {
  opacity: 1;
}

.form-anim:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 5;
  right: 0%;
  left: 0%;
  top: 0;
  height: 100%;
  background: rgba(5, 5, 5, 1);
  -webkit-transition: left 0.7s ease-in-out, right 0.7s ease-in-out 0.7s;
  -o-transition: left 0.7s ease-in-out, right 0.7s ease-in-out 0.7s;
  transition: left 0.7s ease-in-out, right 0.7s ease-in-out 0.7s;
}

.form-anim.animated:after {
  right: 100%;
  left: 0%;
}

/* FOOTER
-----------------------------------------------------------*/

.footer {
  padding: 50px 0px 30px 0px;
}

.footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  /*z-index: 2;*/
}

.footer__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.footer__group-title {
  text-transform: uppercase;
  font-family: Playfair Display, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7em;
  color: #d6d6d6;
  margin-bottom: 1rem;
  margin-top: 25px;
}
@media screen and (max-width: 960px) {
  .footer__group {
    text-align: center;
  }
  .footer__group {
    margin-bottom: 0;
  }

  .footer__group-title {
    margin-bottom: 0;
    font-size: 20px;
    margin-top: 10px;
  }
  .first__bg {
    /* background: url(../img/bg_bsi.jpg) no-repeat center; */
  }
  .first__bg-field {
    /* display: none; */
  }
  .header_video{
    /* display: none; */
  }
  .first__dark-bg {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.4) 10%,
      rgba(0, 0, 0, 0.4) 90%
    );
  }
  .form.no-cursor {
    background-image: url(../img/bg_bsi.jpg) !important;
  }

}

.footer__group-phone {
  display: inline;
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer__group-email,
.footer__group-text {
  font-style: normal;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.3rem;
  color: #d6d6d6;
  margin-bottom: 0.5rem;
}

.footer__logo {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}

.footer__logo-image svg {
  margin-bottom: 15px;
  width: 48px;
}

.footer__logo-title {
  font-size: 28px;
  letter-spacing: 4px;
  color: white;
  font-weight: 600;
}

.footer__logo-text {
  color: #d6d6d6;
  font-size: 14px;
}

.footer__social {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__social-text {
  padding-top: 2rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #ddd;
}

.footer__social-icons {
  margin-top: 0.3rem;
}

.footer__social-icon {
  margin-right: 1rem;
}

.footer__social-icon svg {
  width: 16px;
  height: 16px;
}

.footer__social-icon path {
  transition: fill 0.5s ease;
}

.footer__social-icon svg:hover path {
  fill: #d3494a;
}

/*----------------------------------------------------------------------------------------
 BUTTON EFFECT
----------------------------------------------------------------------------------------*/

.btn-effect {
  transition: all 0.3s;
  filter: drop-shadow(0 0 26px rgba(231, 33, 33, 0.75));
  background: transparent;
  border: 1px solid #d3494a;
  box-shadow: none !important;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin: 30px;
  display: block;
  outline: none;
  color: #fff;
}

.btn-effect:hover {
  transition: all 1.03s;
  border: 1px solid rgba(0, 0, 0, 0);
}

.btn-effect-text {
  transition: all 0.3s ease-out;
  background: transparent;
  position: relative;
  display: block;
  z-index: 3;
  padding: 15px 65px 15px 65px;
  color: #fff;
}

.btn-effect-text:hover {
  color: #fff;
}

.btn-effect-text:before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 10%;
  background-color: #d3494a;
  content: "";
  transition: all 0.5s ease;
  transform: translateX(-1px);
}

.btn-effect-text:hover:before {
  background-color: #000;
}

.btn-effect .btn-bg-color {
  transition: width 0.8s ease-in-out, height 1.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #d3494a;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  z-index: 1;
}

.btn-effect:hover .btn-bg-color {
  width: 225%;
  height: 562.5px;
}

/* dark outline */

.btn-effect-dark {
  transition: all 0.3s;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  width: max-content;
  margin: 50px 0px 30px 0px;
}

.btn-effect-dark:hover {
  transition: all 1.03s;
  border: 1px solid rgba(0, 0, 0, 0);
}

.btn-effect-dark .btn-effect-text {
  overflow: hidden;
  padding: 15px 65px 15px 65px;
}

.btn-effect-dark .btn-effect-text:before {
  background-color: #1e1e1e;
}

.btn-effect.btn-form {
  filter: drop-shadow(0 0 6px rgba(231, 33, 33, 0.35));
  display: inline-block;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.btn-effect.btn-form .btn-effect-text {
  padding: 15px 25px 15px 30px;
}

/* TEXT ANIMATION
-----------------------------------------------------------*/

.splitting.animated .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
  width: 10px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt .whitespace {
  width: 5px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* SCROLL LINE
-----------------------------------------------------------*/

#scroll-down {
  position: relative;
  display: block;
  text-align: center;
}

.scroll-fixed {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: 2px;
  height: 142px;
}

#scroll-down svg {
  -webkit-animation: elasticus 3.2s cubic-bezier(1, 0, 1, 1) infinite;
  /* Safari 4+ */
  -moz-animation: elasticus 3.2s cubic-bezier(1, 0, 1, 1) infinite;
  /* Fx 5+ */
  -o-animation: elasticus 3.2s cubic-bezier(1, 0, 1, 1) infinite;
  /* Opera 12+ */
  animation: elasticus 3.2s cubic-bezier(1, 0, 1, 1) infinite;
  /* IE 10+, Fx 29+ */
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 142px;
  content: " ";
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
  50% {
    box-shadow: 0 1px 10px 0 rgba(255, 0, 0, 0.5);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
}

@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
  50% {
    box-shadow: 0 1px 10px 0 rgba(255, 0, 0, 0.5);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
}

@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
  50% {
    box-shadow: 0 1px 10px 0 rgba(255, 0, 0, 0.5);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
}

@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
  50% {
    box-shadow: 0 1px 10px 0 rgba(255, 0, 0, 0.5);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0.25;
  }
}

/* CANVAS & GIF
-----------------------------------------------------------*/

.gif-action:before {
  background-image: url(../img/giphy.gif);
  background-repeat: repeat;
  opacity: 0.04;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#effect-js {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  margin-top: 0;
}

/* Cursor */

.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  margin-top: -14px;
  margin-left: -14px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  box-sizing: border-box;
  transform: scale(1);
  transition: transform 0.35s ease-out;
  z-index: 999999999;
}

@media screen and (max-width: 1200px) {
  .cursor {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .scroll-fixed {
    height: 100px;
  }
}

/* =================> Start FORM BUTTON <=================  */

.highlight {
  transition: all 0.2s;
  border-bottom: 2px solid #ffffff;
  position: absolute;
  top: 0;
  background: #ffffff;
  left: 0;
  z-index: 500;
  display: block;
  opacity: 0;
}

/* =================> End FORM BUTTON <=================  */

.black-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  /* z-index: 2; */
}

/*----------------------------------------------------------------------------------------
 RESP LOADER
----------------------------------------------------------------------------------------*/

.resp {
  background: url(/landing/assets/img/loader.gif) #d3494a center center
    no-repeat;
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.alert {
  background-color: rgba(15, 15, 18, 0.92);
  padding: 15px;
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-align: center;
  color: #ddd;
}
.alert div {
  display: inline-block;
  vertical-align: middle;
}
.alert:before {
  /* для IE8+ */
  content: "";
  display: inline-block;
  min-height: inherit;
  height: 100%;
  vertical-align: middle;
}
.header_video{
  object-position: center;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
