* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
/* Start of HEro section */
#heroSection .intro-phrase a {
  cursor: pointer;
}
#heroSection .intro-phrase i,
#heroSection .intro-phrase .link1 {
  font-size: 1.1em;
  color: rgb(45, 56, 153);
}
#heroSection .intro-phrase .link2 {
  color: rgb(0, 8, 75);
  text-decoration: underline;
  font-family: "Agbalumo", sans-serif;
}
/* End of hero section */

/* Start of about us section */
#aboutSection {
  width: 100%;
  padding-top: 20px;
  background: #f3f3f3;
}
.about-us-title {
  padding: 10px 0;
}
.aboutUs-container {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-div img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
}
.aboutUs-container .content-div {
  padding: 8px;
}
.content-div p {
  font-size: 1em;
  padding: 6px 0;
}
.content-div p span {
  color: #008080;
  font-weight: 700;
}
@media only screen and (min-width: 900px) {
  .aboutUs-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .image-div img {
    width: 400px;
    aspect-ratio: 3/4;
    max-width: 450px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .aboutUs-container .content-div {
    max-width: 700px;
    padding-left: 20px;
  }
}
/* End of about us sction */

/* Start of service done section */
#serviceDoneSection {
  width: 100%;
}
.service-done-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 10px 5px;
}
.service-done {
  min-height: 150px;
}
.service-done-container .service-done img {
  width: 80px;
}
.service-done-container .service-done {
  width: 300px;
  display: flex;
  margin: 10px 0;
  padding: 2px 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid #008080;
  border-radius: 6px;
  max-width: 350px;
  flex-grow: 1;
}
.service-done .img-div {
  padding-right: 10px;
}
.service-done .SD-desc {
  padding-right: 5px;
}
.SD-desc h2 {
  font-size: 1.2em;
  font-weight: bold;
  font-family: "Agbalumo", sans-serif;
}
.SD-desc p {
  font-size: 0.9em;
  padding-top: 5px;
}
/* End of services done section */

/* Start of Customer testimonials */
#customerTestimonials {
  width: 100%;
  background: #f2f2f2;
  padding: 20px 0;
}
#customerTestimonials .testimonial-title {
  font-family: "Agbalumo", sans-serif;
  font-size: 1.5em;
  color: rgb(2, 2, 131);
  text-align: center;
}
#customerTestimonials .p-title {
  font-size: 1.1em;
  padding: 15px;
  font-family: "Raleway" sans-serif;
  font-weight: 600;
}
#customerTestimonials .testimonial-container {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}
.testimonial-container .testimonial {
  margin: 10px 0;
  background: #dddddd;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
}
.testimonial-container .text-desc i {
  font-size: 3em;
  color: rgb(2, 2, 131);
}
.testimonial-container .user-desc {
  padding-top: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.user-desc .user-profile {
  padding-top: 8px;
  display: flex;
  align-items: start;
  justify-content: center;
}
.user-desc .user-name {
  padding: 0 6px;
}
.user-desc i {
  font-size: 3em;
}
.user-name .username {
  font-size: 1.2em;
  font-weight: bold;
  color: rgb(0, 8, 75);
}
.user-name .service-type {
  font-style: italic;
}
@media only screen and (min-width: 900px) {
  .testimonial-container .testimonial {
    width: 45%;
  }
}
/* End of Customer testimonials section */

/* Start of Maps section */
#mapSection {
  width: 100%;
  background-color: #e6e6e6;
}
#mapSection .map-div {
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-div iframe {
  width: 95%;
  height: 350px;
  border-radius: 8px;
}
/* End of map section */