/*LAPTOP VERSION STARTS HERE*/
/*MAIN*/
#main {
  background-color: var(--white);
  width: 100%;
  text-align: center;
}
/*First*/
div.st-1 {
  width: 80%;
  margin: auto;
}
div.st-1 h1 {
  font-family: "Nunito";
  color: var(--black);
  margin-bottom: 0.5em;
}
div.st-1 h4 {
  font-family: "Nunito";
}
/*Second*/
/* .imgwrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em;
  justify-content: center;
} */

#main div.nd-2 .imgwrapper {
  display: flex;
  flex-direction: row;
  gap: 1.2em;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.nd-2 .imgwrapper img {
  width: 30%;
}

/*TABLET VERSION STARTS HERE*/
@media (min-width: 665px) and (max-width: 1024px) {
  /*MAIN*/
  #main .first,
  #main .second {
    gap: 1.25em 0;
  }
  #main img {
    width: 30%;
  }
  #main h1 {
    font-size: 22px;
  }
  #main h4 {
    font-size: 15px;
  }
  #cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 4rem;
  }
  #cta .info h4 {
    font-size: 32px;
  }
  #cta .info {
    text-align: center;
    line-height: 21px;
  }
}

/*MOBILE VERSION STARTS HERE*/
@media (max-width: 664px) {
  /*Page Title*/
  #page-title span,
  #page-title a,
  #page-title i {
    font-size: 1rem;
  }
  a {
    font-size: 1.2rem;
  }

  /*MAIN*/
  #main {
    text-align: left;
  }
  div.st-1 {
    width: 100%;
  }

  #main .imgwrapper {
    gap: 1.2em;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
  #main img {
    width: 40%;
  }
  #main h1 {
    font-size: 16px;
    padding-bottom: 24px;
  }
  #main h4 {
    font-size: 12px;
  }
  #cta .info {
    padding-top: 1.2em;
    text-align: center;
  }

  #cta,
  .btn {
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }
}
