.s1 {
  color: white;
  text-align: center;
  text-transform: capitalize;
  background-image: url("../images/image-4.png"), url("../images/image-5.png"),
    linear-gradient(0deg, #86bfc8 -9.09%, #59a5b0 100%);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  padding: 153px 20px 56px;
}

h1 {
    font-weight: 700;
    font-size: 2.125rem; /* 34px */
    line-height: normal;
    margin-bottom: 10px;
}



.s2 {
  padding: 80px 60px;
  margin: 0 auto;
}

.s2 ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12px;
  justify-content: space-evenly;
}

.s2 a {
  color: #5aa5b1;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.063rem; /* 17px */
  line-height: normal;
  text-transform: none;
}



/* Tablet */
@media screen and (max-width: 1024px) {
  .s2 {
    padding: 80px 20px;
  }

  .s2 ul {
    grid-template-columns: repeat(2, auto);
  }
}



/* Mobile */
@media screen and (max-width: 767px) {
  .s1 {
    background-size: 100px, 200px, auto;
    padding: 120px 20px 80px;
  }

  h1 {
    font-size: 1.5rem; /* 24px */
  }



  .s2 ul {
    grid-template-columns: auto;
  }
}
