/* 
 * ---------------------------------------------
 * Variables > Breakpoints
 * ---------------------------------------------
*/
:root {
  --wa-transition-default: 300ms;
  --wa-transition-medium: 500ms;
  --wa-transition-long: 1000ms;
  --wa-box-shadow-primary: 0px 20px 30px;
  --wa-number-grow-color: rgb(73, 217, 122);
}

.wa-hero-section .wa-hero-services .wa-smallbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-trans-20);
  backdrop-filter: blur(2px);
  text-transform: uppercase;
}
.wa-hero-section .wa-hero-services .wa-smallbox:hover {
  background: var(--primary-trans-60);
}
.wa-hero-section .wa-hero-services .wa-smallbox__icon {
  top: unset;
  right: -1rem;
  position: relative;
  width: 7rem !important;
}
.wa-hero-section .wa-hero-content {
  align-items: center;
}
.wa-hero-section .wa-hero-content__right {
  gap: var(--space-s);
  padding-left: 25%;
}
@media (max-width: 991px) {
  .wa-hero-section .wa-hero-content__right {
    padding-left: 0;
  }
}

.wa-main-service {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxl);
}
.wa-main-service-content {
  width: 100%;
  align-items: center;
}
.wa-main-service-content-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}
.wa-main-service-content-wrapper:nth-child(even) .wa-main-service-content__body {
  grid-column: 1;
}
.wa-main-service-content-wrapper:nth-child(even) .wa-main-service-content__img {
  height: 55rem;
  grid-column: 2;
}
.wa-main-service-content__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: calc(var(--text-xl) * 2);
  pointer-events: none;
  user-select: none;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-dark);
  padding-left: var(--space-l);
}
.wa-main-service-content__img {
  height: 38rem;
  grid-row: 1;
  position: relative;
}
.wa-main-service-content__img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.wa-main-service-content__body {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.wa-main-service-content__inner {
  width: 100%;
}
.wa-main-service-content__row {
  display: flex;
  flex-direction: row;
  gap: var(--space-s);
  align-items: center;
  color: var(--white);
}
.wa-main-service-content__row img, .wa-main-service-content__row svg {
  max-height: 3.3rem;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  body .wa-main-service-content {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }
  body .wa-main-service-content__img {
    display: none;
  }
  body .wa-main-service-content__body, body .wa-main-service-content__inner {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }
  body .wa-main-service-content__row img {
    max-height: 2.4rem;
    width: auto;
  }
}
@media (max-width: 991px) {
  .wa-hero-section .wa-button {
    display: none !important;
  }
}
