* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.home {
  padding: 75px 0;
  width: 100%;
  height: 75vh;
  object-fit: cover;
  background-position: bottom center;
  background-image: url(https://cdn.pixabay.com/photo/2017/03/25/17/55/colorful-2174045_1280.png);
  background-size: cover;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.title > h1 {
  font-size: 44px;
  color: #fff;
  padding-bottom: 10px;
}
.title > p {
  font-size: 18px;
  color: #fff;
  padding-bottom: 10px;
}
.title > button {
  width: 130px;
  height: 40px;
  border: none;
  border-radius: 30px;
  background-color: var(--orange);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.btn > a {
  text-decoration: none;
  color: white;
}
button:hover {
  scale: 1.1;
  transition: all 0.5s;
}

.home-img > img {
  width: 400px;
}
.about {
  padding-top: 75px;
}
.services {
  padding-top: 75px;
  margin-bottom: 40px;
}
.Customers {
  padding: 75px 0;
}
.s-main-title,
.c-main-title {
  color: var(--orange);
  margin: 0 110px 30px 110px;
}
.about-box {
  margin: 0 90px;
}
.a-title > h1 {
  color: var(--orange);
  padding-bottom: 10px;
}
.a-title > h2 {
  color: var(--orange);
  font-size: 14px;
  padding-bottom: 10px;
}
.a-title > p {
  padding-bottom: 20px;
}
.service-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 90px;
  gap: 99px;
}
.ser-img > img {
  width: 30%;
}
.s-title > h1 {
  font-size: 18px;
  color: var(--orange);
  padding-bottom: 10px;
}
.s-title > p {
  font-size: 14px;
  line-height: 25px;
}
.s-title {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: 390px;
  height: 290px;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
}

.client-img {
  display: flex;
  justify-content: space-between;
  margin: 0 110px;
}
.client-img > img {
  width: 10%;
}
@media only screen and (max-width: 320px) {
  .title > h1 {
    font-size: 22px !important;
  }
  .title > p {
    font-size: 14px;
  }
  .title > button {
    width: 100px;
    height: 40px;
  }
  .home-img > img {
    width: 300px !important;
  }
}
@media (max-width: 600px) {
  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
  }
  .title > h1 {
    font-size: 24px;
  }
  .title > p {
    width: 280px;
    font-size: 14px;
  }
  .home {
    height: 100svh;
  }
  .home-img > img {
    width: 360px;
  }
  .about-box {
    margin: 0 30px;
  }
  .s-main-title,
  .c-main-title {
    margin: 0 20px 20px 20px;
  }
  .s-title > p {
    width: 100%;
  }
  .service-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 20px;
    gap: 99px;
  }
  .client-img {
    margin: 0 20px;
  }
  .client-img > img {
    width: 15%;
  }
}
@media (max-width: 950px) {
  .home {
    /* height: 100svh; */
    flex-direction: column;
  }
  .s-title {
    align-items: center;
    width: 100%;
  }
  .s-title > p {
    max-width: 320px;
  }
}
