/* content wrapper */
.wrapper {
  padding: 0 15%;
}

.wrapper p {
  font-size: 1.2em;
}

/* content header */
.subtitle {
  text-align: center;
  margin: 60px 0;
}

.subtitle h2 {
  color: #9c9c9c;
}

.subtitle-orange h2 {
  color: #f89b00;
}

/* orange line */
.underliner {
  height: 2px;
  background-color: #f89b00;
}

/* general separator */
.separator {
  min-height: 50vh;
  display: grid;
}

/* separator usp menu */
.separator-usp {
  min-height: 300px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 0px 60px;
  align-items: center;
}

.usp-item {
  display: grid;
  justify-items: center;
  padding: 15px;
  transition-duration: 0s;
}

.usp-item:hover {
  border: 5px solid white;
  border-radius: 5px;
}

.active-usp {
  border: 5px solid white;
  border-radius: 5px;
}

/* buttons */
.jbtn {
  width: auto;
  font-family: "Varela Round", sans-serif;
  font-weight: 500;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  background: #f89b00;
  border: #f89b00 2px solid;
  padding: 8px 40px 6px 40px;
  border-radius: 10px;
  margin-top: 30px;
}

.jbtn:hover {
  color: #f89b00;
  background: white;
  border: white 2px solid;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  scale: 1.05;
}

.jbtn-white {
  color: #f89b00;
  background: white;
  border: white 2px solid;
}

.jbtn-white:hover {
  color: white;
  background: #f89b00;
  border: #f89b00 2px solid;
}

/*  ---  Tablet  ---  */
@media (max-width: 980px) {
  .wrapper {
    padding: 0 10%;
  }

  .separator-usp {
    min-height: 200px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 60px 30px;
    align-items: center;
  }

  .usp-item > img {
    width: 75px;
  }

  .usp-item > h3 {
    font-size: 1.7rem;
  }
}

/*  ---  Smartphone  ---  */
@media (max-width: 480px) {
  .wrapper {
    padding: 0 15px;
  }
  .separator-usp {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
}
