* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Inter;
  src: url(../Inter/Inter-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Inter;
  src: url(../Inter/Inter-Regular.ttf);
  font-weight: 400;
}
body {
  font-size: 10px;
  color: #ffffff;
  overflow: hidden;
  font-family: Inter;
  font-weight: 400;
}

.btn {
  width: 170px;
  height: 50px;
  font-size: 11px;
  color: #fff;
  background-color: transparent;
  border: solid 1px #ffffff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5019607843);
  color: #134450;
}

hedaer > div {
  padding-top: 58px;
}
hedaer > div .btn:nth-of-type(2) {
  margin-left: 18px;
}

h1 {
  font-size: 70px;
  font-weight: 700;
}

h4 {
  font-size: 30px;
  opacity: 0.75;
}

.hero {
  height: 100vh;
}
.hero .container-fluid {
  display: flex;
  flex-direction: column;
}
.hero video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero .boxs {
  position: absolute;
  bottom: -100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: space-around;
  padding-bottom: 25px;
}
.hero .boxs .box {
  max-width: 266px;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero .boxs .box img {
  cursor: pointer;
  opacity: 0.5;
  margin-top: auto;
  margin-bottom: 43px;
  transition: opacity 300ms;
}
.hero .boxs .box img:hover {
  opacity: 1;
}
.hero .boxs .box .text {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out; /* 3 */
}
.hero .boxs .box .text div {
  overflow: hidden;
  font-size: 16px;
}
.hero .boxs .box.active img {
  opacity: 1;
}
.hero .boxs .box.active .text {
  grid-template-rows: 1fr;
}

@media (min-width: 1450px) {
  .container-fluid {
    padding: 0 154px;
  }
  .btn {
    height: 50px;
  }
}
@media (min-width: 1600px) {
  h1 {
    font-size: 90px;
  }
  h4 {
    font-size: 30px;
  }
  .boxs .box .text {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
