@import url("../fonts/fonts.css");
body {
  background-color: #000;
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

header {
  background-color: rgba(0, 0, 0, 0.47);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

header .logo {
  padding: 25px 25px 0;
}

header .logo img {
  max-width: 100%;
}

header .text {
  padding: 0 25px 25px;
  font-size: 18px;
  color: white;
}

#disclaimer {
  color: #fff;
  text-align: center;
  padding: 15px 40px;
  background: #393939;
  font-size: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#disclaimer .close {
  position: absolute;
  right: 10px;
  background: url("../img/close_icon.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.banner {
  position: relative;
  text-align: center;
}

.banner .video {
  width: 100%;
}

.banner .video video {
  width: 100%;
}

.banner .video video.visible-desktop {
  display: block;
}

.banner .video video.visible-mobile {
  display: none;
}

@media (max-width: 768px) {
  .banner .video video.visible-desktop {
    display: none;
  }
  .banner .video video.visible-mobile {
    display: block;
  }
}

.banner .img {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.banner .img img {
  max-width: 100%;
}

.banner .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 40vw;
}

@media (max-width: 620px) {
  .banner .btn {
    top: 80vh;
    -webkit-transform: none;
            transform: none;
    left: 5%;
    right: 5%;
  }
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .model {
  max-width: 380px;
  margin: 35px 15px;
  width: calc(33% - 30px);
}

section .model img {
  width: 100%;
}

@media (max-width: 768px) {
  section .model {
    width: 90%;
    margin: 25px 0;
  }
}

footer {
  text-align: center;
  padding: 90px 0 180px;
}

footer .text {
  font-size: 40px;
  color: #fff;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 100px;
  }
  footer .text {
    font-size: 8vw;
  }
}

.btn {
  display: inline-block;
  background-color: #fff;
  padding: 20px 40px;
  color: #000;
  text-decoration: none;
}

@media (max-width: 620px) {
  .btn {
    width: 90%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

h1 {
  color: white;
}
/*# sourceMappingURL=styles.css.map */