.services {
  height: 100vh;
  opacity: 0;
}

.services__banner-img {
  background-repeat: no-repeat;
  width: 100%;
  height: 75%;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  box-shadow: 0px 10px 14px 2px black;
}

.services__content-wrapper {
  width: 100%;
  max-width: 50em;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 4em 1em;
  gap: 2em;
}

.services__desc {
  font-size: 18px;
  font-family: "PT Sans Narrow", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: white;
}

.services__btn {
    text-decoration: none;
  color: white;
  text-align: center;
  font-family: "TangoSans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  width: 15em;
  margin: 0 auto;
  margin-top: 4em;
}

.banner-header {
  font-size: clamp(2em, 5vw, 3em);
  font-family: "Muro", sans-serif;
  letter-spacing: 4px;
}

.services-page-header {
  font-size: clamp(2em, 5vw, 4em);
  font-family: "Muro", sans-serif;
  letter-spacing: 2px;
  text-align: center;
}

.guide {
  display: flex;
  flex-direction: column;
  gap: 4em;
  padding: 2em 0;
  opacity: 0;
  transform: translateY(20px);
}

.guide__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3em;
}

.guide__item {
  display: flex;
  justify-content: center;
  gap: 2em;
  width: 90%;
  max-width: 40em;
}
.guide__item-icon img {
  width: 64px;
}

.guide__item-step {
  display: flex;
  flex-direction: column;
}

.guide__item-step-no {
  font-family: "Muro", sans-serif;
  font-size: 24px;
  color: rgba(253, 178, 22, 1);
}

.guide__item-column {
  margin: 0 auto;
  width: 20%;
  height: 100%;
  margin-bottom: -10em;
  background: linear-gradient(
    180deg,
    rgba(248, 93, 9, 0.077) 7%,
    rgba(253, 178, 22, 1) 100%
  );
}

.guide__item-main {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.guide__item-title {
  font-size: 24px;
  font-family: "Muro", sans-serif;
  color: white;
  letter-spacing: 2px;
}

.guide__item-desc {
  font-size: clamp(1em, 1vw, 1.2em);
  font-family: 'Microsoft Phagspa', sans-serif;
  color: white;
  line-height: 1.8;
}

.team-showcase-services {
    background-color: rgb(1, 0, 45);
    margin: 6em 0 10em;
    padding: 3em 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    opacity: 0;
    transform: translateY(20px);
}