/* SuperHero Academy page styles */

/* FAQ — swap image to right (override global faq.scss) */
.faq-section .faq-content {
  order: 1;
}

.faq-section .image {
  order: 2;
}

.sa-hero {
  padding: 80px 0 0;
  overflow: hidden;
}

.sa-hero__wrapper {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 600px;
}

.sa-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 60px 80px 80px;
  justify-content: center;
}

.sa-hero__title {
  color: var(--Primary-color, #365463);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 79.2px */
  letter-spacing: -1.44px;
  text-transform: uppercase;
  margin: 0;
}

.sa-hero__description p strong {
  color: var(--Primary-color, #365463);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 31.2px */
  opacity: 0.8;
}

/* Badges */

.sa-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #F3F6F7;
  border: 1px solid #D4DEE3;
  border-radius: 100px;
  padding: 8px 16px;
  border-radius: 40px;
  background: var(--Grey-100, #F3F6F7);
}

.sa-hero-badge__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sa-hero__content .button {
  max-width: fit-content;
}

.sa-hero-badge__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sa-hero-badge__text {
  color: #365463;
  white-space: nowrap;
}

/* Description */

.sa-hero__description {
  color: #365463B2;
}

.sa-hero__description p {
  margin-bottom: 16px;
}

.sa-hero__description p:last-child {
  margin-bottom: 0;
}

/* Image */

.sa-hero__image {
  position: relative;
  background-color: #1B3A4B;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  align-self: stretch;
}

.sa-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Why Academy */

.sa-why {
  overflow: hidden;
}

.sa-why__wrapper {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 560px;
}

.sa-why__image {
  position: relative;
  overflow: hidden;
}

.sa-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sa-why__content {
  background-color: #365463;
  display: flex;
  align-items: center;
}

.sa-why__content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 80px 80px 72px;
  max-width: 680px;
}

.sa-why__title {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.sa-why__subtitle {
  color: var(--White, #FFF);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}

.sa-why__text {
  color: #FFFFFFB3;
}

.sa-why__text p {
  margin-bottom: 12px;
}

.sa-why__text p:last-child {
  margin-bottom: 0;
}


/* Experience */

.sa-experience {
  padding: 80px 0;
}

.sa-experience__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.sa-experience__title {
  color: var(--Primary-color, #365463);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -0.56px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.sa-experience__desc {
  color: #365463B2;
  max-width: 520px;
  margin: 0 auto;
}

/* Card */

.sa-experience__card {
  background-color: #F3F6F7;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 420px;
}

.sa-experience__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 48px;
  justify-content: center;
}

.sa-experience__during-title {
  color: var(--Primary-color, #365463);

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 46.8px */
  text-transform: uppercase;
  margin: 0;
}

.sa-experience__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sa-experience__item {
  padding-left: 20px;
  position: relative;
  color: #365463;

  opacity: 0.8;
}

.sa-experience__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #18D8C7;
  flex-shrink: 0;
}

.sa-experience__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.sa-experience__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}


/* Selection */

.sa-selection {
  overflow: hidden;
}

.sa-selection__wrapper {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 560px;
}

.sa-selection__image {
  position: relative;
  overflow: hidden;
  background-color: #C8DFF0;
}

.sa-selection__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.sa-selection__content {
  background-color: #fff;
  display: flex;
  align-items: center;
}

.sa-selection__content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 80px 80px 72px;
  max-width: 680px;
}

.sa-selection__title {
  color: var(--Primary-color, #365463);

  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 52.8px */
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin: 0;
}

.sa-selection__desc {
  color: #365463B2;
}

.sa-selection__desc p {
  margin-bottom: 12px;
}

.sa-selection__desc p:last-child {
  margin-bottom: 0;
}

.sa-selection__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-selection__item {
  padding-left: 20px;
  position: relative;
  color: #365463;
}

.sa-selection__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #18D8C7;
}


/* How Internship Works — steps */

.sa-steps {
  padding: 80px 0;
}

.sa-steps__title {
  color: var(--Primary-color, #365463);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -0.56px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 48px;
}

.sa-steps__card {
  background-color: #F3F6F7;
  border-radius: 4px;
  padding: 16px 48px 16px 32px;
}

.sa-steps__wrapper {
  /* items стекуються один за одним */
}

/* Single step item */

.sa-steps-item {
  display: grid;
  grid-template-columns: 80px 1fr;
}

.sa-steps-item__row {
  position: relative;
}

.sa-steps-item__line {
  height: 100%;
  width: 2px;
  background-color: #CDD6D9;
  margin: 0 auto;
}

.sa-steps-item__line-fill {
  width: 2px;
  background-color: #18D8C7;
  border-radius: 0 0 2px 2px;
  height: 0%;
}

.sa-steps-item__num {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F3F6F7;
  /* має збігатись з фоном .sa-steps__card */
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sa-steps-item__num-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #CDD6D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #365463;
  transition: background-color 0.4s, color 0.4s;
  color: var(--Primary-color, #365463);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
}

.sa-steps-item__num.-active .sa-steps-item__num-inner {
  background-color: #18D8C7;
  color: #fff;
}

.sa-steps-item__content p strong {
  color: var(--Primary-color, #365463);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  margin-top: 32px;
  margin-bottom: -8px;
}

.sa-steps-item__content {
  padding: 40px 0 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sa-steps-item__title,
.sa-steps-item__title * {
  color: var(--Primary-color, #365463);

  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 46.8px */
  text-transform: uppercase;
  margin: 0;
  padding-top: 16px;
}

.sa-steps-item__desc {
  color: #365463B2;
}

.sa-steps-item__desc p {
  margin-bottom: 12px;
}

.sa-steps-item__desc p:last-child {
  margin-bottom: 0;
}

/* Sub list */

.sa-steps-item__sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sa-steps-item__sub-label {
  font-weight: 700;
  color: #365463;
  margin: 0;
}

.sa-steps-item__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sa-steps-item__sub-list li {
  padding-left: 20px;
  position: relative;
  color: #365463B2;
}

.sa-steps-item__sub-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #18D8C7;
}

/* First/last line fade masks */

.sa-steps-item.-first .sa-steps-item__line {
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0), #000 0, #000 85%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0), #000 0, #000 85%, rgba(0, 0, 0, 0));
}

.sa-steps-item.-last .sa-steps-item__line {
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 0, #000 85%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 0, #000 85%, rgba(0, 0, 0, 0));
}


/* For You If */

.sa-for-you {
  background-color: #EEF4F6;
  overflow: hidden;
}

.sa-for-you__wrapper {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 560px;
}

.sa-for-you__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 80px 80px 80px 80px;
}

.sa-for-you__title {
  color: var(--Primary-color, #365463);

  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 52.8px */
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin: 0;
}

.sa-for-you__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-for-you__item {
  padding-left: 20px;
  position: relative;
  color: #365463B2;
}

.sa-for-you__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #18D8C7;
}

.sa-for-you__image {
  position: relative;
  overflow: hidden;
}

.sa-for-you__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}


/* What You Gain */

.sa-gain {
  background-color: #fff;
  padding: 80px 0;
}

.sa-gain__title {
  color: var(--Primary-color, #365463);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -0.56px;
  text-transform: uppercase;
  margin: 0 0 48px;
}

.sa-gain__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sa-gain-item {
  background-color: #F3F6F7;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: span 2;
}

.sa-gain-item.--wide {
  grid-column: span 3;
}

.sa-gain-item__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #A9D0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-gain-item__icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sa-gain-item__title {
  color: var(--Primary-color, #365463);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}


/* Growth */

.sa-growth {
  overflow: hidden;
}

.sa-growth__wrapper {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 560px;
}

.sa-growth__image {
  position: relative;
  overflow: hidden;
}

.sa-growth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.sa-growth__content {
  background-color: #365463;
  display: flex;
  align-items: center;
}

.sa-growth__content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 80px 80px 72px;
  max-width: 680px;
}

.sa-growth__title {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.sa-growth__text {
  color: #FFFFFFB3;
}

.sa-growth__text p {
  margin-bottom: 16px;
}

.sa-growth__text p:last-child {
  margin-bottom: 0;
}


/* CTA + Apply Form */

.sa-cta {
  background-color: var(--Primary-color, #365463);
  padding: 80px 0;
}

.sa-cta__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;

}

.sa-cta__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
}

.sa-cta__title,
.sa-cta__title * {
  color: var(--White, #FFF);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 52.8px */
  letter-spacing: -0.48px;
  text-transform: uppercase;
  text-transform: uppercase;
  margin: 0;
}

p.sa-cta__desc,
.sa-cta__desc * {
  color: var(--White, #FFF);
  opacity: 0.8;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  margin: 0;
}

/* Form card */

.sa-cta__form {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 40px;
}

/* CF7 overrides inside sa-cta */

.sa-cta .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-cta .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sa-cta .wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFFFFFCC;
  font-size: 14px;
}

.sa-cta .wpcf7-form input[type="text"],
.sa-cta .wpcf7-form input[type="email"],
.sa-cta .wpcf7-form textarea {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  padding: 12px 16px;
  font-size: 15px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}

.sa-cta .wpcf7-form input[type="text"]::placeholder,
.sa-cta .wpcf7-form input[type="email"]::placeholder,
.sa-cta .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sa-cta .wpcf7-form input[type="text"]:focus,
.sa-cta .wpcf7-form input[type="email"]:focus,
.sa-cta .wpcf7-form textarea:focus {
  border-color: #18D8C7;
}

.sa-cta .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.sa-cta .wpcf7-form input[type="submit"] {
  background-color: #18D8C7;
  color: #1B2429;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: flex-end;
}

.sa-cta .wpcf7-form input[type="submit"]:hover {
  background-color: #16c7b7;
}

.sa-growth__title,
.sa-growth__title * {
  color: var(--White, #FFF);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -0.56px;
  text-transform: uppercase;
}

/* Responsive — tablet */

@media screen and (max-width: 1199px) {
  .sa-gain__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1023px) {
  .sa-hero {
    padding: 60px 0 0;
  }

  .sa-hero__wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-hero__content {
    padding: 40px 24px 48px;
    gap: 24px;
  }

  .sa-hero__title {
    font-size: 40px;
  }

  .sa-hero__badges {
    gap: 8px;
  }

  .sa-hero-badge {
    padding: 6px 12px;
  }

  .sa-hero__image {
    border-radius: 12px 12px 0 0;
    min-height: 300px;
  }

  .sa-why__wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-why__image {
    min-height: 300px;
  }

  .sa-why__content-inner {
    padding: 48px 24px;
    max-width: 100%;
  }

  .sa-why__title {
    font-size: 36px;
  }

  .sa-why__subtitle {
    font-size: 18px;
  }

  .sa-experience {
    padding: 60px 0;
  }

  .sa-experience__header {
    margin-bottom: 32px;
  }

  .sa-experience__title {
    font-size: 32px;
  }

  .sa-experience__card {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-experience__left {
    padding: 40px 24px;
    gap: 20px;
  }

  .sa-experience__image {
    min-height: 280px;
  }

  .sa-selection__wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-selection__image {
    min-height: 300px;
  }

  .sa-selection__content-inner {
    padding: 48px 24px;
    max-width: 100%;
  }

  .sa-selection__title {
    font-size: 36px;
  }

  .sa-steps {
    padding: 60px 0;
  }

  .sa-steps__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .sa-steps__card {
    padding: 12px 16px 12px 8px;
    border-radius: 4px;
  }

  .sa-steps-item {
    grid-template-columns: 56px 1fr;
  }

  .sa-steps-item__num {
    width: 48px;
    height: 48px;
    top: 36px;
  }

  .sa-steps-item__num-inner {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }

  .sa-steps-item__content {
    padding: 28px 0 40px 20px;
    gap: 16px;
  }

  .sa-steps-item__title {
    font-size: 18px;
    padding-top: 28px;
  }

  .sa-for-you__wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-for-you__content {
    padding: 48px 24px;
    gap: 24px;
  }

  .sa-for-you__title {
    font-size: 36px;
  }

  .sa-for-you__image {
    min-height: 320px;
    order: -1;
  }

  .sa-gain {
    padding: 60px 0;
  }

  .sa-gain__title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .sa-gain__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }

  .sa-gain-item {
    grid-column: span 2;
  }

  .sa-gain-item.--wide {
    grid-column: span 2;
  }

  .sa-growth__wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .sa-growth__image {
    min-height: 300px;
  }

  .sa-growth__content-inner {
    padding: 48px 24px;
    max-width: 100%;
  }

  .sa-growth__title,
  .sa-growth__title * {
    font-size: 32px;
  }

  .sa-cta {
    padding: 60px 0;
  }

  .sa-cta__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sa-cta__title {
    font-size: 36px;
  }

  .sa-cta__form {
    padding: 24px;
  }

  .sa-cta .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }
}


/* Responsive — mobile */

@media screen and (max-width: 767px) {

  /* Hero */
  .sa-hero {
    padding: 40px 0 0;
  }

  .sa-hero__content {
    padding: 0 16px 40px;
    gap: 20px;
  }

  .sa-hero__title,
  .sa-hero__title * {

    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 39.6px */
    letter-spacing: -0.72px;
  }

  .sa-hero__badges {
    gap: 8px;
  }

  .sa-hero-badge {
    padding: 6px 12px;
    font-size: 13px;
  }

  .sa-hero__content .button {
    max-width: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sa-hero__image {
    min-height: 340px;
    border-radius: 0;
  }

  /* Why */
  .sa-why__content-inner {
    padding: 40px 16px;
  }

  .sa-why__title {
    font-size: 32px;
  }

  /* Experience */
  .sa-experience {
    padding: 48px 0;
  }

  .sa-experience__title {
    font-size: 28px;
  }

  .sa-experience__left {
    padding: 32px 16px;
  }

  /* Selection */
  .sa-selection__content-inner {
    padding: 40px 16px;
  }

  .sa-selection__title {
    font-size: 32px;
  }

  /* Steps */
  .sa-steps {
    padding: 48px 0;
  }

  .sa-steps__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .sa-steps__card {
    padding: 8px 12px 8px 4px;
  }

  .sa-steps-item__content {
    padding: 20px 0 32px 16px;
  }

  /* For You If */
  .sa-for-you__content {
    padding: 40px 16px;
  }

  .sa-for-you__title {
    font-size: 32px;
  }

  /* Gain */
  .sa-gain__wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .sa-gain-item {
    grid-column: span 1;
  }

  .sa-gain-item.--wide {
    grid-column: span 2;
  }

  /* Growth */
  .sa-growth__content-inner {
    padding: 40px 16px;
  }

  /* CTA */
  .sa-cta__wrapper {
    gap: 32px;
  }

  .sa-cta__title,
  .sa-cta__title * {
    font-size: 32px;
  }

  .sa-cta__form {
    padding: 20px 16px;
  }

  .sa-hero__image img {
    border-radius: 4px;
    overflow: hidden;
    object-fit: cover;
    object-position: top;
  }

  .sa-hero__image {
    padding: 0 16px 60px 16px;
    height: 360px;
    background: var(--White, #FFF);

  }

  .sa-hero__description p strong {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

  }

  .sa-why__wrapper {}

  .sa-why__content {
    order: -1;
  }

  .sa-why__image {
    padding: 0 16px 60px 16px;
    background-color: #365463;

  }

  .sa-why__image img {
    height: 392px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    overflow: hidden;
  }

  .sa-experience__during-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%
  }

  .sa-experience__left {
    padding: 20px;
  }
  .sa-selection__content{
    order: -1;
  }
  .sa-selection__image{
    padding-left: 16px;
    padding-right: 16px;
    background-color: #fff;
  }
  .sa-selection__image img{
   height: 392px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 4px;
    overflow: hidden;

  }
  .sa-steps{
    margin-top: 60px;
background-color: var(--Grey-100, #F3F6F7);
  }
  .sa-steps__title{
    text-align: center;
    font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 35.2px */
letter-spacing: -0.32px;
  }
  .sa-steps-item__content p strong{
    font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 120%;
  }
  .sa-steps-item__title{
    font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 130%;
  }
  .sa-steps .conteiner{
    padding-left: 10px;
  }
  .sa-for-you__content{
    order: -1;
    background-color: #fff;
  }
  .sa-for-you__image{
    padding-left: 16px;
    padding-right: 16px;
    background-color: #fff;
  }
  .sa-for-you__image img{
      height: 392px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    overflow: hidden;
  }
  .sa-steps{
    padding-bottom: 0;
  }
  .sa-for-you__content{
    padding-top: 60px;
  }
  .sa-gain__wrapper{
        grid-template-columns: 1fr;
  }
  .sa-for-you{
    margin-bottom: 60px;
  }
  .sa-gain__title{
    text-align: center;
  }
      .sa-gain-item {
        grid-column: 1;
        padding: 16px;
        gap: 16px;
    }
    .sa-gain-item__title{
      font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 120%;
    }
    .sa-gain__wrapper {

    gap: 16px 0;
}
.sa-growth__content{
  order: -1;
}
.sa-growth__image{
    padding-left: 16px;
    padding-right: 16px;
    background-color: var(--Primary-color, #365463);
    padding-bottom: 60px;
}
.sa-growth__image img{
      height: 392px;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    overflow: hidden;
}
.sa-growth__content-inner{
  padding-top: 60px;
}
.faq-wrapper .image {
  margin-bottom: 60px;
}
.submit-wrapper{
  margin-top: 0;
}
}
.submit-wrapper{
  margin-top: 0;
}