* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
  vertical-align: baseline;
  background: none;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

body {
  position: relative;
  overflow-x: hidden;
}

.bg_img img, .bg_img svg, .bg_img video, .bg_img iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero {
  position: relative;
  height: 100dvh;
}
.hero .bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.hero_logo {
  width: 240px;
}
.hero_contnet {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 16px;
  text-align: center;
}
.hero_text {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
}
.hero h1 {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
  font-size: 48px;
}
.hero p {
  font-size: 24px;
  line-height: 1.4;
}
.hero .btn {
  display: block;
  color: #fff;
  background: #05028c;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 900px) {
  .hero_logo {
    width: 160px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 18px;
  }
}

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