section.training-form {
  padding: 32px 16px;
  background: #f1fefd;
}
section.training-form.no-top-padding {
  padding: 0 16px 32px;
}
section.training-form .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: auto;
  gap: 24px;
  border-top: solid 1px #5aedea;
  padding-top: 32px;
}
section.training-form .wrapper .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  flex-wrap: auto;
  width: 100%;
  gap: 24px;
}
section.training-form .wrapper .content .title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  flex-wrap: auto;
  position: relative;
  padding-left: 30px;
  border-left: solid 3px #007f80;
}
section.training-form .wrapper .content .title h2, section.training-form .wrapper .content .title h3, section.training-form .wrapper .content .title h4 {
  color: #007f80;
  margin-bottom: 0;
}
section.training-form .wrapper .content .title svg {
  position: absolute;
  max-width: 24px;
  left: -14px;
  bottom: -8px;
}
section.training-form .wrapper .content .image {
  border-radius: 8px;
  aspect-ratio: 1.68/1;
  overflow: hidden;
  width: 100%;
}
section.training-form .wrapper .content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.training-form .wrapper .form {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #ccf9fa;
  background: #FFF;
  box-shadow: 0px 5px 12px 0px rgba(31, 41, 45, 0.1);
  padding: 32px;
}
section.training-form .wrapper .form .swiper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: 1px solid #ccf9fa;
}
section.training-form .wrapper .form .swiper .swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: auto;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}
section.training-form .wrapper .form .swiper .swiper-navigation .swiper-prev {
  border-radius: 0 8px 8px 0;
}
section.training-form .wrapper .form .swiper .swiper-navigation .swiper-next {
  border-radius: 8px 0 0 8px;
}
section.training-form .wrapper .form .swiper .swiper-navigation .swiper-next, section.training-form .wrapper .form .swiper .swiper-navigation .swiper-prev {
  cursor: pointer;
  background: #007f80;
  max-width: 40px;
  height: 40px;
}
section.training-form .wrapper .form .swiper .swiper-navigation .swiper-next svg, section.training-form .wrapper .form .swiper .swiper-navigation .swiper-prev svg {
  max-width: 40px;
  width: 40px;
}

@media only screen and (min-width: 601px) {
  section.training-form .wrapper .image {
    aspect-ratio: 2.04/1;
  }
}
@media only screen and (min-width: 992px) {
  section.training-form {
    padding: 80px 16px;
  }
  section.training-form.no-top-padding {
    padding: 0 16px 80px;
  }
  section.training-form .wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    padding-top: 80px;
  }
  section.training-form .wrapper .content {
    flex-basis: 31%;
    flex-direction: column;
  }
  section.training-form .wrapper .content .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-bottom: 16px;
    border-left: 0;
    border-bottom: solid 3px #007f80;
  }
  section.training-form .wrapper .content .title h2, section.training-form .wrapper .content .title h3, section.training-form .wrapper .content .title h4 {
    font-size: 2.1875rem;
  }
  section.training-form .wrapper .content .title svg {
    left: auto;
    right: -8px;
    bottom: -14px;
    transform: rotate(270deg);
  }
  section.training-form .wrapper .content .image {
    aspect-ratio: 1/1;
  }
  section.training-form .wrapper .form {
    flex-basis: 69%;
  }
}
