@font-face
{
font-family: "Lato-Black";
font-style:normal;
src:url("..//fonts/Lato-Black.ttf") format("truetype");
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: "Lato-Black";
}

/* OFFER STRIP */
.offer-strip {
  width: 100%;
  height: 10vh;
  background-color: #165c43;
  display: flex;
  align-items: center;
  justify-content: center;
      padding: 0px 8px;
}

.offer-strip p {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 84vh;
  background-image: url("../images/UPDATED.png");
  background-size: 100% 100%;
  background-position: center;
      background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
}

/* CONTENT OVER IMAGE */
.hero-content {
  position: absolute;
  top: 91.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}

.hero-content h1 {
  font-size: 3vw;
  font-weight: 800;
  color: #000;
  margin-bottom: 2rem;
}

.hero-content span {
  display: block;
  font-size: 2.5vw;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #ff0606;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 3em;
  transition: transform 0.3s ease;
   cursor: pointer;
}

.hero-btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
.site-footer {
  width: 100%;
  height: 8vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}


.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
}



/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .offer-strip {
    height: 10vh;
  }

  .offer-strip p {
    font-size: 1.1rem;
  }

  .hero-section {
    background-image: url("../images/dell.png");
    height: 85vh;
  }
  
 

  .hero-content h1 {
    font-size: 7vw;
  }

  .hero-content span {
    font-size: 6vw;
  }

  .hero-btn {
          font-size: 1.5rem;
        padding: 0.5em 1.5em;
  }
  
    .site-footer {
    height: 10vh;
  }

  .site-footer p {
    font-size: 0.8rem;
    padding: 0 5%;
  }
  
 .hero-content {
           top: 86.5%;
  }
  
  .site-footer a {

  font-size: 1.4rem;
}
}

@media (min-width: 1600px) {
    
      .offer-strip p {
    font-size: 1.7rem;
  }
  
  
  
  .hero-btn {
    font-size: 1.75rem;
        padding: 0.6em 2em;

  }
}
