::-moz-selection {
  background: white;
  color: black;
  text-shadow: none;
}

::selection {
  background: white;
  color: black;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 6px;
  height: 10px;
  border-radius: 6px;
}

::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #ecedf1;
  -webkit-border-radius: 0px;
  border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
  -webkit-border-radius: 0px;
  background: black;
}

::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: white;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: white;
}

html {
  position: relative;
}

*, html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
  line-height: 1.5;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
img.inherit {
  max-width: inherit;
}

.main-wrapper {
  min-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.popup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: black;
    right: 0;
    bottom: 0;
}
.popup .popup-image {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

.popup .popup-image img {
  width: 80%;
  margin: auto;
}

@media (max-width: 767px) {
  .popup .popup-image {
    width: 90%;
  }
  .popup .popup-image img {
    width: 100%;
  }
}

.page-content {
  display: none;
  transition: 0.3s;
  height: 100%;
  max-height: 100vh;
}
.page-content.current {
  display: block;
  transition: 0.3s;
}

.mobile-video {
  display: none;
}
@media (max-width: 767px) {
  .mobile-video {
    display: block;
  }
}

.desktop-video {
  display: block;
}
@media (max-width: 767px) {
  .desktop-video {
    display: none;
  }
}

.video-section {
  position: relative;
  height: 100%;
  width: 100%;
}
.video-section .back-btn {
  display: inline-block;
  margin: 0 4px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  background: #EA1A65;
  padding: 12px 30px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
  z-index: 99;
  position: absolute;
  right: 4%;
  top: 40px;
  display: none;
}
.video-section .back-btn:hover {
  background: linear-gradient(90deg, #3CBFEE -49.24%, #80529F 46.97%, #EA1A65 130.3%);
  color: #fff;
}

.loader-video, .video-section {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.loader-video.current, .video-section.current {
  display: block;
}
.loader-video .main_video, .loader-video .video_player, .video-section .main_video, .video-section .video_player {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  visibility: hidden;
}
.loader-video .main_video.current, .loader-video .video_player.current, .video-section .main_video.current, .video-section .video_player.current {
  visibility: inherit;
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1140px;
  width: 100%;
}
.button-wrapper .action-btn {
  display: block;
  margin: 0 4px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  background: #EA1A65;
  padding: 12px 30px;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button-wrapper .action-btn:hover {
  background: linear-gradient(90deg, #3CBFEE -49.24%, #80529F 46.97%, #EA1A65 130.3%);
  color: #fff;
}
@media (max-width: 767px) {
  .button-wrapper {
    flex-wrap: wrap;
    bottom: 15%;
  }
  .button-wrapper .action-btn {
    flex: 0 0 24%;
    margin-bottom: 10px;
    padding: 12px 10px;
  }
}

.audio--wrapper {
  position: fixed;
  top: 40px;
  z-index: 100;
  left: 4%;
}

.audio--wrapper button {
  display: none;
  border: none;
  position: relative;
  background: transparent;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.audio--wrapper button img {
  width: 100%;
}

.audio--wrapper button.showButton {
  display: block !important;
}

#bars {
  height: 30px;
  position: absolute;
  bottom: 12px;
  width: 40px;
}

.bar {
  background: #fff;
  bottom: 1px;
  height: 3px;
  position: absolute;
  width: 3px;
  -webkit-animation: sound 0ms -800ms linear infinite alternate;
          animation: sound 0ms -800ms linear infinite alternate;
}

@-webkit-keyframes sound {
  0% {
    opacity: 0.35;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 28px;
  }
}

@keyframes sound {
  0% {
    opacity: 0.35;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 28px;
  }
}
.bar:nth-child(1) {
  left: 1px;
  -webkit-animation-duration: 474ms;
          animation-duration: 474ms;
}

.bar:nth-child(2) {
  left: 5px;
  -webkit-animation-duration: 433ms;
          animation-duration: 433ms;
}

.bar:nth-child(3) {
  left: 9px;
  -webkit-animation-duration: 407ms;
          animation-duration: 407ms;
}

.bar:nth-child(4) {
  left: 13px;
  -webkit-animation-duration: 458ms;
          animation-duration: 458ms;
}

.bar:nth-child(5) {
  left: 17px;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
}

.bar:nth-child(6) {
  left: 21px;
  -webkit-animation-duration: 427ms;
          animation-duration: 427ms;
}

.bar:nth-child(7) {
  left: 25px;
  -webkit-animation-duration: 441ms;
          animation-duration: 441ms;
}

.bar:nth-child(8) {
  left: 29px;
  -webkit-animation-duration: 419ms;
          animation-duration: 419ms;
}

.bar:nth-child(9) {
  left: 33px;
  -webkit-animation-duration: 487ms;
          animation-duration: 487ms;
}

.bar:nth-child(10) {
  left: 37px;
  -webkit-animation-duration: 442ms;
          animation-duration: 442ms;
}/*# sourceMappingURL=style.css.map */