@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DMSans';
}

body {
  height: 100vh;
  width: 100%;
}

/* MAIN SECTION */
.main {
  height: 100vh;
  width: 100%;
  background: url('../images/bannerCu.png') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* OFFER STRIP */
.offer-strip {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* LOGO */
.logo {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 15vw;
  height: auto;
}

/* CENTER CONTENT */
.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  color: #fff;
  max-width: 900px;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* BUTTON */
.learn-btn {
  background: #fff;
  color: #000;
  padding: 14px 38px;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.learn-btn:hover {
  opacity: 0.9;
}

/* FOOTER */
.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  z-index: 5;
  background: transparent;
  width: 100%;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-link {
  color: #fff;
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .main {
    background: url('../images/51.png') no-repeat center center/cover !important;
  }
}
/* RESPONSIVE */
@media (min-width: 380px) and (max-width: 767px) {

  .offer-strip {
    font-size: 0.95rem;
    padding: 12px 8px;
  }

  .logo {
    top: 75px;
  }

  .logo img {
    width: 50vw;
  }

  .content {
    padding: 0 5%;
  }

  .content h1 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .learn-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 380px) {

  .offer-strip {
    font-size: 0.85rem;
    padding: 10px 6px;
  }

  .logo {
    top: 70px;
  }

  .logo img {
    width: 55vw;
  }

  .content h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .learn-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}