/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

a {
  outline: none;
  text-decoration: none;
}

a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.banner {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
}
.banner .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .logo-block {
  position: absolute;
  width: 285px;
  left: 0;
  right: 0;
  top: 50px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}
.banner .logo-block img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 575px) {
  .banner .logo-block {
    width: 190px;
    top: 30px;
  }
}
.banner .desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.banner .desc .text-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.banner .desc .text-block h1 {
  font-size: 110px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  padding: 0 0 15px;
}
@media screen and (max-width: 991px) {
  .banner .desc .text-block h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  .banner .desc .text-block h1 {
    font-size: 50px;
  }
}
.banner .desc .text-block p {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .banner .desc .text-block p {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .banner .desc .text-block p {
    font-size: 16px;
  }
}
.banner .footer {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.banner .footer .d-flex {
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  opacity: 0.8;
}
.banner .footer .d-flex p {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.banner .footer .d-flex p:last-child {
  padding-top: 12px;
}
@media screen and (max-width: 575px) {
  .banner .footer .d-flex p {
    font-weight: 300;
  }
}
@media screen and (max-width: 575px) {
  .banner .footer .d-flex {
    display: block !important;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .banner .footer {
    bottom: 40px;
  }
}/*# sourceMappingURL=style.min.css.map */