/* 
 * ---------------------------------------------
 * Variables > Breakpoints
 * ---------------------------------------------
*/
:root {
  --wa-page-container-width: 1630px;
}
@media (max-width: 1629px) {
  :root {
    --wa-page-container-width: 1180px;
  }
}

body .wa-hero-section {
  padding-top: calc(var(--section-space-m) * 1.1 - var(--space-m));
}
@media (max-width: 1629px) {
  body .wa-hero-section {
    padding-top: calc(var(--section-space-m) * 0.9 - var(--space-m));
  }
}
body .wa-hero-section--job {
  padding-bottom: var(--section-space-s);
}
body .wa-hero-section--service {
  padding-top: var(--section-space-xs);
}
body .wa-hero .wa-button {
  display: none;
}
body .wa-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: flex-start;
}
body .wa-hero-content__left {
  display: flex;
  flex-direction: column;
}
body .wa-hero-content__left .wa-button {
  display: block;
}
body .wa-hero-content__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
body .wa-hero-content--center {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  align-items: center;
}
body .wa-hero-content--center .wa-button {
  display: block;
}
body .wa-hero-img {
  width: 9rem;
  height: fit-content;
  margin-bottom: var(--space-l);
}
body .wa-hero-services .wa-smallbox__icon {
  background-color: transparent !important;
}

body .wa-main-section {
  padding-top: 0 !important;
  gap: calc(var(--section-space-m) * 1.1);
}
@media (max-width: 1629px) {
  body .wa-main-section {
    gap: calc(var(--section-space-m) * 0.9);
  }
}

body .wa-bottom-section {
  padding-top: 0 !important;
  gap: calc(var(--section-space-m) * 1.1);
}
@media (max-width: 1629px) {
  body .wa-bottom-section {
    gap: calc(var(--section-space-m) * 0.9);
  }
}

@media (max-width: 991px) {
  body .wa-hero .wa-button {
    display: block;
  }
  body .wa-hero .wa-button-move {
    display: none;
  }
  body .wa-hero-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  body .wa-hero-services .wa-smallbox {
    display: block;
  }
  body .wa-hero-services .wa-smallbox__icon {
    position: absolute;
    top: -30%;
  }
}
@media (max-width: 600px) {
  body .wa-hero-services .wa-smallbox__heading {
    font-size: var(--text-xl);
    text-align: left;
  }
  body .wa-hero-services .wa-smallbox__icon {
    height: 5rem;
  }
}
