.advertising-section {
  height: 212px;
  background-color: #FEF1E9;
  display: flex;
  justify-items: center;
  align-items: center;
  color: #F46E15;
}
.advertising-section .content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  font-weight: 600;
  align-items: center;
}
.advertising-section .content .title {
  font-size: 36px;
}
@media (max-width: 768px) {
  .advertising-section .content .title {
    font-size: 24px;
  }
}
.advertising-section .content .button {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.advertising-section .content .button img {
  height: 20px;
  width: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#home {
  min-height: 100%;
}
#home .hero-carousel-section .swiper-wrapper {
  height: unset;
}
#home .hero-carousel-section .swiper {
  width: 100%;
}
#home .hero-carousel-section .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-height: 100vh;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #home .hero-carousel-section .swiper .swiper-slide {
    height: 70vh;
  }
}
#home .hero-carousel-section .swiper .swiper-slide.initial-state .text-wrapper {
  opacity: 0;
}
#home .hero-carousel-section .swiper .swiper-slide.initial-state img {
  filter: grayscale(100%);
}
#home .hero-carousel-section .swiper .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 54.6875%;
}
@media screen and (max-width: 600px) {
  #home .hero-carousel-section .swiper .swiper-slide:before {
    padding-top: 120%;
  }
}
#home .hero-carousel-section .swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100vh;
  transition: filter 1s ease;
}
@media screen and (max-width: 768px) {
  #home .hero-carousel-section .swiper .swiper-slide img {
    height: 70vh;
  }
}
#home .hero-carousel-section .swiper .swiper-slide img.image-mobile {
  min-height: 450px;
  display: none;
}
@media screen and (max-width: 426px) {
  #home .hero-carousel-section .swiper .swiper-slide img.image-mobile {
    display: block;
  }
}
@media screen and (max-width: 426px) {
  #home .hero-carousel-section .swiper .swiper-slide img.image-desktop {
    display: none;
  }
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper {
  position: absolute;
  top: 15%;
  transition: opacity 1s ease;
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper.with-sticky-banner {
  top: calc(15% + 72px);
}
@media (max-width: 768px) {
  #home .hero-carousel-section .swiper .swiper-slide .text-wrapper.with-sticky-banner {
    top: calc(15% + 131px);
  }
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper p {
  font-size: clamp(30px, 3vw, 60px);
  font-weight: 600;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1.2px;
  color: #FFF;
}
@media screen and (max-width: 400px) {
  #home .hero-carousel-section .swiper .swiper-slide .text-wrapper p {
    top: 16%;
  }
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper h4 {
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 600;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -1.2px;
  color: #FFF;
  padding-bottom: 10px;
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper .button-wrapper {
  padding-top: 20px;
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper .button-wrapper a {
  display: inline-block;
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper .button-wrapper a button {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #home .hero-carousel-section .swiper .swiper-slide .text-wrapper .button-wrapper a button {
    gap: 8px;
  }
}
#home .hero-carousel-section .swiper .swiper-slide .text-wrapper .button-wrapper a button img {
  position: static;
  width: unset;
  height: unset;
}
#home .hero-carousel-section .swiper .swiper-button-next {
  border: 1px solid transparent;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  background: rgba(255, 255, 255, 0.08);
}
#home .hero-carousel-section .swiper .swiper-button-next:after {
  content: "";
  display: inline-block;
  background-image: url("../../utils/icons/right-arrow.png");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: center;
}
#home .hero-carousel-section .swiper .swiper-button-next:focus-visible {
  outline: none;
}
#home .hero-carousel-section .swiper .swiper-button-next:hover {
  background: rgba(249, 250, 251, 0.2);
}
#home .hero-carousel-section .swiper .swiper-button-prev {
  border: 1px solid transparent;
  width: 56px;
  height: 56px;
  border-radius: 56px;
  background: rgba(255, 255, 255, 0.08);
}
#home .hero-carousel-section .swiper .swiper-button-prev:after {
  content: "";
  display: inline-block;
  background-image: url("../../utils/icons/left-arrow.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: center;
}
#home .hero-carousel-section .swiper .swiper-button-prev:focus-visible {
  outline: none;
}
#home .hero-carousel-section .find-centre-container {
  width: 100%;
  background-color: #F9FAFB;
  display: flex;
  justify-content: center;
  padding: 12px;
  position: relative;
}
#home .hero-carousel-section .find-centre-container.sticky .find-centre-sticky .find-centre-text .sticky-helper {
  right: -30px;
}
#home .hero-carousel-section .find-centre-container.sticky .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon {
  position: fixed;
  bottom: 30%;
}
@media (max-width: 1920px) {
  #home .hero-carousel-section .find-centre-container.sticky .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon {
    bottom: 40%;
  }
}
@media (max-width: 768px) {
  #home .hero-carousel-section .find-centre-container.sticky .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon {
    bottom: 9%;
  }
}
#home .hero-carousel-section .find-centre-container.sticky .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon::after {
  z-index: -1;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky {
  max-width: 1460px;
  flex: 1;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 100px;
}
@media screen and (max-width: 1440px) {
  #home .hero-carousel-section .find-centre-container .find-centre-sticky {
    max-width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  #home .hero-carousel-section .find-centre-container .find-centre-sticky {
    padding: 10px 0;
  }
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text {
  font-size: clamp(18px, 1.75vw, 30px);
  position: relative;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper {
  position: absolute;
  top: -35px;
  right: -70px;
  z-index: 2;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon {
  border-radius: 45px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 14px 12.8000001907px 0px rgba(0, 0, 0, 0.05);
  width: 60px;
  height: 60px;
  position: static;
  z-index: 2;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon a {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon:after {
  content: "";
  display: inline-block;
  background-image: url("../../utils/icons/search.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  z-index: 0;
  transition: transform 0.3s ease-in-out;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon:hover:after {
  transform: rotate(27deg);
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon .find-centre-tooltip {
  width: 140px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -70px;
  color: #FFF;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  padding: 8px 12px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 8px;
  background: #101828;
  transition: opacity 200ms;
  opacity: 0;
  display: flex;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .sticky-helper .find-centre-icon:hover .find-centre-tooltip {
  opacity: 1;
}
#home .hero-carousel-section .find-centre-container .find-centre-sticky .find-centre-text .highlight {
  color: #F47721;
}
@media (max-width: 374px) {
  #home .statistics-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  #home .statistics-section {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #home .statistics-section {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  #home .statistics-section {
    padding-left: 230px;
    padding-right: 230px;
  }
}
#home .statistics-section .statistics-container {
  padding: 250px 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  max-width: 1460px;
  margin: auto;
}
@media screen and (max-width: 1440px) {
  #home .statistics-section .statistics-container {
    max-width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  #home .statistics-section .statistics-container {
    padding: 64px 0px;
  }
}
#home .statistics-section .statistics-container .statistics-content {
  color: #101828;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.72px;
  max-width: 596px;
}
@media screen and (max-width: 768px) {
  #home .statistics-section .statistics-container .statistics-content {
    font-size: 24px;
    line-height: 32px;
  }
}
#home .statistics-section .statistics-container .statistics-cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #home .statistics-section .statistics-container .statistics-cards-container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
  }
}
#home .statistics-section .statistics-container .statistics-cards-container .card {
  text-align: center;
}
#home .statistics-section .statistics-container .statistics-cards-container .card .number-wrapper {
  color: #F47721;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px; /* 125% */
  letter-spacing: -0.96px;
}
@media screen and (max-width: 768px) {
  #home .statistics-section .statistics-container .statistics-cards-container .card .number-wrapper {
    font-size: 36px;
  }
}
#home .statistics-section .statistics-container .statistics-cards-container .card .text-wrapper {
  color: #475467;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  padding-top: 12px;
}
#home .statistics-section .statistics-container .statistics-cards-container .card-separator {
  border: 1px solid #EAECF0;
}
#home .hero-image-section .hero-image-container .image-wrapper img, #home .hero-image-section .hero-image-container .image-wrapper video {
  width: 100%;
}
#home .hero-image-section .hero-image-container .image-wrapper .desktop-video {
  max-width: 100%;
  height: auto;
}
#home .about-us-section .about-us-content-container .healthcare-intro {
  max-width: 1460px;
  margin: auto;
  padding: 96px 0;
  display: flex;
}
@media (max-width: 374px) {
  #home .about-us-section .about-us-content-container .healthcare-intro {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  #home .about-us-section .about-us-content-container .healthcare-intro {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #home .about-us-section .about-us-content-container .healthcare-intro {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  #home .about-us-section .about-us-content-container .healthcare-intro {
    padding-left: 230px;
    padding-right: 230px;
  }
}
@media screen and (max-width: 768px) {
  #home .about-us-section .about-us-content-container .healthcare-intro {
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-title-wrapper {
  flex: 1;
  max-width: 470px;
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-title-wrapper h3 {
  color: #101828;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 38px; /* 126.667% */
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-description-wrapper {
  flex: 1;
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-description-wrapper p {
  color: #475467;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 28px; /* 155.556% */
  padding-bottom: 10px;
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-description-wrapper a {
  color: #F46E15;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  position: relative;
}
#home .about-us-section .about-us-content-container .healthcare-intro .healthcare-description-wrapper a:after {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  margin-left: 10px;
}
#home .about-us-section .about-us-images-slider .swiper .swiper-wrapper {
  height: unset;
  transition-timing-function: linear;
}
#home .about-us-section .about-us-images-slider .swiper .swiper-slide {
  width: 550px;
}
#home .about-us-section .about-us-images-slider .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
#home .about-us-section .about-us-images-slider .swiper img.about-mobile-image {
  display: none;
}
@media (max-width: 374px) {
  #home .vision-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  #home .vision-section {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #home .vision-section {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  #home .vision-section {
    padding-left: 230px;
    padding-right: 230px;
  }
}
#home .vision-section .vision-container {
  max-width: 1460px;
  padding: 96px 0px;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  #home .vision-section .vision-container {
    flex-direction: column-reverse;
    padding: 32px 0px;
  }
}
#home .vision-section .vision-container .vision-images-slider {
  width: 50%;
  align-self: center;
}
@media screen and (max-width: 768px) {
  #home .vision-section .vision-container .vision-images-slider {
    width: 100%;
  }
}
#home .vision-section .vision-container .vision-images-slider .swiper-slide img {
  background-color: #F9FAFB;
  max-width: 100%;
}
#home .vision-section .vision-container .auto-typing-container {
  width: 50%;
  align-self: center;
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  #home .vision-section .vision-container .auto-typing-container {
    width: 100%;
    padding: 0;
    padding-bottom: 32px;
  }
}
#home .vision-section .vision-container .auto-typing-container .text-1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #home .vision-section .vision-container .auto-typing-container .text-1 {
    padding-bottom: 32px;
  }
}
#home .vision-section .vision-container .auto-typing-container .text-1 > span .word {
  display: inline-block;
}
#home .vision-section .vision-container .auto-typing-container .text-1 > span.animate .word span {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}
#home .vision-section .vision-container .auto-typing-container .text-2,
#home .vision-section .vision-container .auto-typing-container .text-3,
#home .vision-section .vision-container .auto-typing-container .text-5 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 44px;
  letter-spacing: -0.72px;
}
#home .vision-section .vision-container .auto-typing-container .text-2 .text-dynamic,
#home .vision-section .vision-container .auto-typing-container .text-3 .text-dynamic,
#home .vision-section .vision-container .auto-typing-container .text-5 .text-dynamic {
  color: #F47721;
}
#home .vision-section .vision-container .auto-typing-container .text-4-wrapper {
  padding-top: 50px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #home .vision-section .vision-container .auto-typing-container .text-4-wrapper {
    max-width: 250px;
    padding-top: 32px;
  }
}
#home .vision-section .vision-container .auto-typing-container .text-4-wrapper .text-4 {
  display: inline;
  background: #F47721;
  padding: 2px 7px;
  color: #FFF;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}
@media screen and (max-width: 1200px) {
  #home .vision-section .vision-container .auto-typing-container .text-4-wrapper .text-4 {
    line-height: 60px;
  }
}
#home .vision-section .vision-container .auto-typing-container .auto-typing-content {
  display: none;
}
#home .join-our-team-section {
  background-color: #FEF1E9;
}
#home .join-our-team-section .join-our-team-container {
  max-width: 1460px;
  padding: 250px 40px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #home .join-our-team-section .join-our-team-container {
    padding: 150px 20px;
  }
}
#home .join-our-team-section .join-our-team-container .join-our-team-title-wrapper {
  text-align: center;
}
#home .join-our-team-section .join-our-team-container .join-our-team-title-wrapper h2 {
  color: #F47721;
  text-align: center;
  font-size: clamp(30px, 5vw, 36px);
  font-weight: 700;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}
@media (max-width: 374px) {
  #home .positions-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  #home .positions-section {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #home .positions-section {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  #home .positions-section {
    padding-left: 230px;
    padding-right: 230px;
  }
}
#home .positions-section .positions-container {
  max-width: 1460px;
  padding: 150px 0px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container {
    padding: 64px 0px;
  }
}
#home .positions-section .positions-container .positions-top-container {
  padding-bottom: 64px;
  max-width: 980px;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-top-container {
    padding-bottom: 32px;
  }
}
#home .positions-section .positions-container .positions-top-container .positions-title-wrapper {
  padding-bottom: 10px;
}
#home .positions-section .positions-container .positions-top-container .positions-title-wrapper h2 {
  color: #101828;
  font-size: clamp(30px, 5vw, 36px);
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}
#home .positions-section .positions-container .positions-top-container .positions-subtext-wrapper {
  color: #475467;
  font-size: 20px;
  line-height: 30px; /* 150% */
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-top-container .positions-subtext-wrapper {
    font-size: 18px;
    line-height: 28px;
  }
}
#home .positions-section .positions-container .positions-content-container {
  display: flex;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container {
    flex-direction: column;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 426px) and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container .positions-image-wrapper {
    min-height: 425px;
  }
}
@media screen and (max-width: 425px) {
  #home .positions-section .positions-container .positions-content-container .positions-image-wrapper {
    min-height: 250px;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-image-wrapper img {
  display: block;
  position: absolute;
  width: 100%;
  max-width: 607px;
  transition: visibility 0s, opacity 0.5s linear;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container .positions-image-wrapper img {
    width: 100%;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper {
  flex: 1;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper {
    padding-bottom: 32px;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item {
  padding: 16px 16px;
  border-left: 5px solid #F9FAFB;
  transition: border-color 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item {
    padding-right: 0;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item:hover {
  border-color: #F47721;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active {
  border-color: #F47721;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
  max-height: 105px;
  opacity: 1;
}
@media screen and (max-width: 1330px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 132px;
  }
}
@media screen and (max-width: 920px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 160px;
  }
}
@media screen and (max-width: 768px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 132px;
  }
}
@media screen and (max-width: 450px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 160px;
  }
}
@media screen and (max-width: 350px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 188px;
  }
}
@media screen and (max-width: 300px) {
  #home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item.active .moving-elements {
    max-height: 216px;
  }
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item .moving-elements {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item h3 {
  color: #101828;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  line-height: 30px; /* 150% */
  padding-bottom: 8px;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item p {
  color: #475467;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  padding-bottom: 20px;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item a {
  color: #F46E15;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  position: relative;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item a:after {
  content: "";
  display: inline-block;
  background-image: url(../../utils/icons/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  margin-left: 10px;
}
#home .positions-section .positions-container .positions-content-container .positions-accordion-wrapper .accordion-item img {
  display: none;
}
#home .work-with-us-section {
  background: #F9FAFB;
}
@media (max-width: 374px) {
  #home .work-with-us-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  #home .work-with-us-section {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  #home .work-with-us-section {
    padding-left: 123px;
    padding-right: 123px;
  }
}
@media (min-width: 1920px) {
  #home .work-with-us-section {
    padding-left: 230px;
    padding-right: 230px;
  }
}
#home .work-with-us-section .work-with-us-container {
  padding: 200px 0px;
  max-width: 1460px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home .work-with-us-section .work-with-us-container .heading-text-wrapper {
  padding-bottom: 20px;
}
#home .work-with-us-section .work-with-us-container .heading-text-wrapper h2 {
  color: #F47721;
  font-size: clamp(30px, 5vw, 36px);
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.72px;
  text-align: center;
}
#home .work-with-us-section .work-with-us-container .supporting-text-wrapper {
  padding-bottom: 40px;
}
#home .work-with-us-section .work-with-us-container .supporting-text-wrapper p {
  color: #475467;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #home .work-with-us-section .work-with-us-container .button-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #home .work-with-us-section .work-with-us-container .button-wrapper button {
    width: 100%;
  }
}