/*LAPTOP VERSION STARTS HERE*/
/*MAIN*/
#main {
  background-color: var(--white);
  padding: 40px 59px 40px 59px;
}
/*First*/
.fst-wrapper {
  display: flex;
  gap: 3em;
}
.txt-wrapper {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.imgwrapper {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
#main h1 {
  color: var(--black);
  font-family: "Nunito";
  margin-bottom: 0.65em;
}
#main h4 {
  line-height: 1.5em;
  margin-bottom: 2.5em;
  font-family: "Nunito";
  font-weight: normal;
  color: var(--black);
}
#main img {
  width: 100%;
  max-width: 50em;
}

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

/*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 {
    padding: 16px 16px 16px 16px;
  }
  .fst-wrapper {
    gap: 1.2em;
    flex-direction: column;
  }
  .txt-wrapper {
    width: 100%;
  }
  .imgwrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.2em;
  }
  #main h1,
  #main h4 {
    font-size: 15px;
  }
  #main img {
    width: 45%;
  }
  #cta,
  .info {
    padding-top: 1.2em;
    text-align: center;
  }

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