body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

h1,
h2 {
  font-weight: 600;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

p {
}

h5.overtitle {
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #8d8d8d;
}

/* ---------- global padding ---------- */
.jpadding {
  padding-left: 25%;
  padding-right: 25%;
}

/* ---------- jbuttons ---------- */
.jbtn {
  width: auto;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  background: #ffffff;
  border: #ffffff 2px solid;
  padding: 7px 28px 7px 28px;
  border-radius: 50px;
  transition-duration: 0.5s;
}
.jbtn:hover {
  text-decoration: none;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition-duration: 0.5s;
}
.jbtn-green {
  color: white;
  background: #5ca942;
  border: #5ca942 2px solid;
}
.jbtn-green:hover {
  color: white;
}

/* colors */
.green{
  color: #5ca942;
}
.black{
  color: #000 !important
}

/* ---------- showcase ---------- */
.showcase {
  min-height: 100vh;
  min-height: 100dvh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  position: relative;
}
.showcase-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0.3;
}
.showcase-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 50px 15%;
  color: white;
}

.showcase-content p {
  /* line-height: 0.8; */
  max-width: 620px;
}

/* ---------- section ---------- */
.section {
  min-height: 100vh;
  min-height: 100dvh;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

/* ---------- section ---------- */
.section-text {
  min-height: 30vh;
  min-height: 30dvh;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: justify;
}

/* about */

.section-text h2 {
  margin-bottom: 30px;
}

/* collapse info box */
.info-box {
  margin-top: 75px;
  padding: 30px;
  background-color: rgb(233, 233, 233);
  border-radius: 15px;
}

.collapse-title {
  display: flex;
  align-items: center;
  text-align: start;
}
.collapse-title h3 {
  font-size: 1.45rem;
}

.rotate {
  color: #5ca942;
  transition-duration: 0.3s;
}

.rotate:hover {
  color: #5ca942;
  /* transform: scale(1.1); */
  transform: translateY(5px) scale(1.1);
  transition-duration: 0.3s;
}

#info2 {
}

/* ---------- services grid ---------- */
.services {
  padding-top: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}

.services-item {
  width: 250px;
  height: 250px;
  padding: 25px 25px;
  border-radius: 15px;
  border: rgb(233, 233, 233) 2px solid;
  /* background-color: #f7f7f7; */
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  transition-duration: 0.5s;
}

.services-item img {
  /* width: 50px; */
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.services-item:hover {
  transform: scale(1.05);
  /* background-color: #c9c9c9; */
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition-duration: 0.5s;
  text-decoration: none;
}
.services-item h4 {
  text-transform: uppercase;
  margin: 0;
  /* font-size: 1em; */
  font-size: 0.9em;
  letter-spacing: 1px;
  color: #8a8a8a;
}

/* ---------- service section ---------- */
.service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-bg {
  min-height: 100vh;
  min-height: 100dvh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-content {
  padding: 50px 20%;
  display: grid;
  align-content: center;
}
.service-content h2 {
  margin-bottom: 30px;
}

.service-content p {
  text-align: justify;
}

/* ---------- separator ---------- */
.separator {
  min-height: 30vh;
  background-color: #5ca942;
  color: white;
  padding: 50px;

  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

#separator-3 img {
  width: 100px;
  height: auto;
}

/* ---------- clients ---------- */
.clients {
  /* padding-top: 100px;
  padding-bottom: 100px; */
  padding: 100px 25%;
}
.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: center;
  padding-bottom: 100px;
}

.clients-item {
  /* width: 500px; */
  height: 100px;
  padding: 25px 25px;
  border-radius: 15px;
  border: rgb(233, 233, 233) 2px solid;
  display: flex;
  align-items: center;
  transition-duration: 0.5s;

  font-weight: 600;
}
.clients-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition-duration: 0.5s;
}

.clients-item img {
  width: 25px;
  height: 25px;
  /* display: inline-block; */
  margin-right: 10px;
}

.clients-details {
  text-align: justify;
}

/* ---------- contact ---------- */
.contact {
  padding: 100px 30%;
}

.contact-form {
  border-radius: 15px;
  border: rgb(233, 233, 233) 2px solid;
}

.contact .form-check a {
  color: #5ca942;
}
.contact .form-check a:hover {
  color: #5ca942;
}

/* ---------- MEDIA ---------- */

@media (max-width: 1300px) {
  .clients {
    padding: 100px 15%;
  }
}
@media (max-width: 992px) {
  .jpadding {
    padding-left: 20%;
    padding-right: 20%;
  }
  .service-content {
    padding: 50px 15%;
  }
}
@media (max-width: 901px) {
  .services-grid {
    grid-template-columns: auto auto;
  }
  .service-content {
    padding: 80px 10%;
  }
  .clients,
  .contact {
    padding: 100px 25%;
  }
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .jpadding {
    padding-left: 15%;
    padding-right: 15%;
  }
  .service-container {
    grid-template-columns: 1fr;
  }
  .service-mobile-inverse {
    grid-area: 1;
  }
  .clients,
  .contact {
    padding: 100px 15%;
  }
}
@media (max-width: 576px) {
  .jpadding {
    padding-left: 10%;
    padding-right: 10%;
  }
  .services-grid {
    grid-template-columns: auto;
  }
  .service-bg {
    min-height: 70vh;
    min-height: 70dvh;
  }
}
@media (max-width: 480px) {
  .jpadding {
    padding-left: 30px;
    padding-right: 30px;
  }
  h1 {
    font-size: 40px;
    font-weight: 700;
  }
  .service-content {
    padding: 80px 30px;
  }
  .clients,
  .contact {
    padding: 100px 30px;
  }
}
@media (max-width: 400px) {
  h1 {
    font-size: 35px;
    font-weight: 700;
  }
  .showcase-content {
    padding: 50px 30px;
  }
}
@media (max-width: 365px) {
  .clients,
  .contact {
    padding: 100px 15px;
  }
}
