.landing {
  background-color: #ffffff;
  margin-top: 80px;
}

.landingTitle {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  font-family: poppinSemiBold;
  color: #186eb7;
  margin-bottom: 20px;
}

.landingDesc {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #707070;
  /* text-align: justify; */
}

.landingPhoto {
  width: 500px;
  height: 500px;
}

.landingPhotoChild {
  width: 130%;
  height: 130%;
}

/* .landingAbsolutePhoto {
  width: 700px;
  height: 700px;
  left: -120px;
} */

.landingAbsolutePhoto {
  width: 500px;
  height: 500px;
}

.sectionTitle {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  font-family: poppinSemiBold;
  color: #186eb7;
}

/* product */
.product {
  background-color: #fafdff;
  padding-bottom: 35px;
}

.productCardList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  justify-items: start;
  flex-wrap: wrap;
}

.productCard {
  width: 18%;
  height: auto;
  border: 1px solid #00000026;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #ffff;
  cursor: pointer;
  text-decoration: none;
}

.productCardImg {
  width: 120px;
  height: 120px;
}

.productCardDesc {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  font-family: poppinSemiBold;
  text-decoration: none;
  color: #000000;
}

/* features */

.feature {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #ffffff;
}

.featureList {
  margin-top: 35px;
}

.featureCard {
  width: 100%;
  height: 100%;
  border: 1px solid #00000026;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ffff;
}

.featurePhoto {
  width: 115px;
  height: 115px;
}

.featurePhotoTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: poppinMedium;
  color: #186eb7;
  margin-top: 15px;
}

.featurePhotoDesc {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #707070;
  text-align: center;
  margin-bottom: 15px;
}

.btn-feature {
  width: 150px;
  background-color: #186eb7;
}

/* agent */

.agent {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: #fffdf8;
}

.agentList {
  row-gap: 25px;
  margin-top: 35px;
}
.agentCard {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  background-color: #ffff;
}

.agentPhoto {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.agentName {
  font-size: 16px;
  font-weight: 500;
  font-family: poppinSemiBold;
  line-height: 24px;
}

.agentLocation {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #707070;
  flex: 1;
}

/* about us */

.aboutUs {
  background-color: #ffffff;
  padding-top: 35px;
  padding-bottom: 35px;
}

.aboutUsImg {
  width: 409px;
  height: 409px;
  margin-left: 70px;
}

.aboutUsList {
  margin-top: 35px;
}

.aboutUsCardList {
  margin-left: 70px;
}

.aboutUsCard {
  width: 100%;
  display: flex;
  column-gap: 18px;
}

.aboutUsCardImg {
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutUsCardImgChild {
  width: 115%;
  height: 115%;
}

.aboutUsCardTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: poppinMedium;
}

.aboutUsCardDesc {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #707070;
}

/* contact us */

.contactUs {
  background-color: #fafdff;
  padding-top: 35px;
  padding-bottom: 70px;
}

.contactList {
  margin-top: 35px;
}

.contactUsCard {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  border: 1px solid #00000026;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 12px;
  background-color: #ffffff;
}

.contactUsImg {
  width: 145px;
  height: 145px;
}

.contactUsCardTitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #707070;
}

.contactUsCardDesc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .aboutUsImg {
    height: 350px;
    margin-left: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .productCardList {
    row-gap: 20px;
  }

  .product {
    padding-top: 50px;
  }

  .productCard {
    width: 23% !important;
  }

  .featureList {
    row-gap: 25px;
  }

  .aboutUsImg {
    width: 300px;
    height: 300px;
    margin-left: 0px;
  }

  .aboutUsCardList {
    margin-top: 35px;
    margin-left: 0px;
  }

  .contactList {
    row-gap: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .productCardList {
    row-gap: 20px;
  }

  .productCard {
    width: 31.33% !important;
  }
}

@media only screen and (max-width: 576px) {
  /* .feature {
    padding-top: 0px;
  } */

  .featureList {
    margin-top: 20px;
  }
  .landingTitle {
    margin-bottom: 10px;
  }

  .landingPhoto {
    width: 300px;
    height: 300px;
  }
  .landingAbsolutePhoto {
    width: 300px;
    height: 300px;
  }

  .productCardList {
    column-gap: 0px;
    row-gap: 20px;
  }

  .productCard {
    width: 45% !important;
  }
}
