* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
/* Start of Hero section */
#heroSection {
  padding-bottom: 60px;
}
#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 our services section */
#ourServicesSection {
  width: 100%;
  background: rgb(243, 243, 243);
}
.upper-div-section {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.upper-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #008080;
  width: 200px;
  max-width: 250px;
  padding: 8px;
  margin: 10px;
}
.upper-div img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
}
.upper-div h2 {
  color: rgb(0, 8, 75);
  font-family: "Agbalumo", sans-serif;
  padding-top: 10px;
  text-align: center;
  font-size: 1.2em;
}
#ourServiceSection .our-service-container {
  width: 100%;
  background: #f2f2f2;
}
.our-service-container .our-services-provided {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 10px;
  border-radius: 7px;
  padding: 10px;
  width: 100%;
  background: #dddddd;
}
.our-service-container .our-services-provided:nth-child(odd) {
  border: 1px solid #008080;
}
.our-service-container .our-services-provided:nth-child(even) {
  background: #f2f2f2;
}
.our-services-provided .our-service-description {
  padding-right: 10px;
  width: 90%;
}
.our-services-provided .service-title {
  text-align: center;
  padding-top: 10px;
  font-family: "Raleway" sans-serif;
  color: rgb(0, 8, 75);
}
.our-services-provided .text-desctiption {
  font-size: 1.1em;
  font-family: "Agbalumo", sans-serif;
  padding-bottom: 5px;
}
.service-btn-div {
  margin-top: 15px;
  padding: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-btn-div .request-service-btn {
  width: 80%;
  padding: 8px 15px;
  border: none;
  font-size: 1.1em;
  background: rgba(235, 136, 23, 0.87);
  color: #fff;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease-in;
  box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2);
}
.service-btn-div .request-service-btn:hover {
  background: rgba(194, 106, 5, 0.87);
  box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.4);
}

/* This is a trial */
.mySlides {
  display: none;
  max-width: 500px;
  aspect-ratio: 4/3;
}
.bottom-dots {
  text-align: center;
}
/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  object-fit: scale-down;
  display: flex;
  background: #d1d1d1af;
  justify-content: center;
  border-radius: 9px;
  align-items: center;
  position: relative;
}
img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  color: rgb(8, 8, 8);
  border: 1px solid #008080;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 3px;
  border-radius: 3px 0 0 3px;
}
.prev {
  left: 3px;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #008080;
  color: #fff;
}
/* Number text (1/3 etc) */
.numbertext {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 10px;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active,
.dot:hover {
  background-color: #008080;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* end of trial */
.our-services-provided .service-image {
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .slideshow-container{
    height: 380px;
  }
  .our-services-provided .our-service-description {
    padding-right: 10px;
    width: 47%;
  }
    .our-services-provided .our-service-description:nth-child(even){
      padding-left: 10px;
    }
  .our-services-provided .service-image {
    width: 47%;
  }
}
/* End of our services section */
