.header {
  padding: 36px 0;
  transition: 0.3s;
}
.header.hover {
  background: white;
}
.header.hover .header__logo-image {
  display: none;
}
.header.hover .header__logo-image-alt {
  display: block;
}
.header.hover .menu_item__text {
  color: black;
}
.header.hover .menu_item.hover .menu_item__text {
  color: white;
}
.header__wrapper {
  position: relative;
}
.header__logo-image-alt {
  display: none;
}
.header__menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.header__menu .menuWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu .dropdown.submenu {
  display: none;
}
.header__logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.header_dropdown {
  background: #F5F5F5;
  padding: 40px 80px;
  width: 80%;
  position: absolute;
  left: 10%;
  border-radius: 0 0 20px 20px;
  display: none !important;
  z-index: 100;
}
.header_dropdown.show {
  display: block !important;
}
.header_dropdown__inner {
  display: none;
}
.header_dropdown__inner.show {
  display: block !important;
}
.header_dropdown__inner__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.header_dropdown__inner__items__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  text-decoration: none;
  color: var(--primary-color);
}
.header_dropdown__inner__items__item-half {
  width: calc(50% - 14px);
}
.header_dropdown__inner__items__item-quarter {
  width: calc(25% - 14px);
}
.header_dropdown__inner__items__item img {
  width: 32px;
  height: auto;
}
.header_dropdown__inner__items__item__title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.header_dropdown__inner__header {
  margin-bottom: 30px;
}
.header_dropdown__inner__header__header {
  font-family: Poppins;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.header_dropdown__inner__header__content {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--primary-color);
}
.header__action-button {
  padding: 14px 30px;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.header.hover .header__action-button {
  color: var(--primary-color);
}

@media screen and (min-width: 1200px) {
  .header__action__mobile {
    display: none;
  }
}
@media screen and (max-width: 1201px) {
  .header__action-button,
  .header__menu {
    display: none;
  }
  .col.header__action {
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
  }
}
.header__action__mobile {
  fill: white;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.background-primary {
  background-color: var(--primary-color);
  color: white;
}
.background-primary .button-auto {
  background-color: white;
  color: var(--primary-color);
}
.background-secondary {
  background-color: var(--secondary-color);
}
.background-secondary .button-auto {
  background-color: white;
  color: var(--secondary-color);
}
.background-white {
  background-color: white;
}
.background-white .button-auto {
  background-color: var(--primary-color);
  color: white;
}
.background-lightgray {
  background-color: var(--light-grey-color);
}
.background-lightgray .button-auto {
  background-color: var(--primary-color);
  color: white;
}

.color-primary {
  color: var(--primary-color);
}
.color-secondary {
  color: var(--secondary-color);
}
.color-white {
  color: white;
}

.page-numbers {
  padding: 8px;
  background: white;
  border-radius: 50px;
  width: 50px;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 5px;
}
.page-numbers.current {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.page-numbers.next {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.page-numbers.prev {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.button {
  padding: 14px 28px;
  background: var(--primary-color);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
}
.button-auto {
  background-color: var(--primary-color);
  color: white;
}
.button-secondary {
  background-color: var(--secondary-color);
  color: white;
}
.button-outline {
  background-color: transparent;
  color: white;
  border: 2px solid var(--secondary-color);
}
.button-white {
  background-color: white;
  color: var(--primary-color);
}
.button-icon img {
  max-height: 18px;
  display: inline-block;
  width: auto;
  margin-left: 10px;
}

.forminator-button-submit {
  padding: 14px 28px;
  background: var(--primary-color);
  color: white;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
}

.splide {
  visibility: visible !important;
}

.row {
  --bs-gutter-x: 40px !important;
}

.written ul {
  list-style-image: url(/wp-content/themes/embryo-core/assets/media/check-pink.png);
  list-style-position: outside;
}

.footer {
  background: var(--primary-color);
}
.footer__topbar {
  padding-top: 80px;
}
.footer_logo img {
  max-width: 200px;
  display: block;
}
.footer_logos .row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer_logos .col {
  max-width: 80px;
  max-height: 80px;
  width: 100%;
  height: 100%;
}
.footer_logos .col img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer__location {
  border: 2px solid var(--secondary-color);
  padding: 30px;
  color: white;
  border-radius: 20px;
  display: flex;
  gap: 15px;
}
.footer__location i {
  font-size: 18px;
}
.footer__locations {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media screen and (max-width: 995px) {
  .footer__locations {
    flex-direction: column;
  }
}
.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.footer-socials__item {
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}
.footer-socials__item i {
  max-width: 22px;
  max-height: 22px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__menu {
  color: white;
}
.footer__menu h4 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.footer ul.footer-menu {
  padding-left: 18px;
  margin-right: 10px;
  margin-top: 20px;
}
.footer ul.footer-menu li {
  list-style-image: url(/wp-content/themes/embryo-core/assets/media/chevrons-right-solid.svg);
  text-indent: 10px;
  margin-bottom: 6px;
}
.footer ul.footer-menu li a {
  color: white;
  text-decoration: none;
}
.footer__bottombar {
  padding-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .footer .footer__menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
  }
  .footer .footer__menu > .col {
    width: calc(50% - 10px);
    flex: auto;
  }
}
@media screen and (max-width: 500px) {
  .footer .footer__menu > .col {
    width: 100%;
    flex: auto;
  }
  .footer__topbar {
    padding-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer__topbar .footer_logo {
    display: flex;
    justify-content: center;
  }
  .footer__topbar .footer-socials {
    justify-content: center;
  }
  .footer__locations {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.written a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--secondary-color);
  color: var(--secondary-color);
  transition: all 0.2s ease-in-out;
}
.written a:hover {
  opacity: 0.8;
}

.single h1 {
  color: var(--secondary-color);
  font-family: Poppins;
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  letter-spacing: 0%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single h1 {
    font-size: 36px;
    line-height: 1.2em;
  }
}
.single__header {
  background-color: var(--primary-color);
}
.single__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .single__meta {
    flex-direction: column;
    gap: 20px;
  }
}
.single__meta-item {
  color: white;
}
.single__meta-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.single__featuredImage {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 25%, white 25%, white 100%);
}
@media screen and (max-width: 990px) {
  .single__featuredImage .col-lg-1 {
    display: none;
  }
}
.single__featuredImage-wrapper {
  max-height: 640px;
  overflow: hidden;
  border-radius: 20px;
}
.single__featuredImage-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.casestudy_archive__filter {
  padding: 14px 28px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  margin-right: 20px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.casestudy_archive__filter.active {
  background: var(--primary-color);
  color: white;
}
.casestudy_archive__filter:hover {
  background: var(--primary-color);
  color: white;
}
.casestudy_archive__card__image {
  height: 220px;
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.casestudy_archive__card__image__background {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.casestudy_archive__card__image__logo {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  max-width: 33%;
  max-height: 20%;
  height: auto;
  width: auto;
}
.casestudy_archive__card__content {
  padding: 22px 25px;
  background: white;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.casestudy_archive__card__content__footer__date {
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.casestudy_archive__card__content__footer__button a {
  width: 100%;
  background: transparent;
  border: 3px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: 0%;
  text-align: center;
  padding: 12px;
  transition: 0.3s;
}
.casestudy_archive__card__content__footer__button a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.casestudy_archive__card__content__title {
  margin-bottom: 20px;
}
.casestudy_archive__card__content__title a {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: black;
  text-decoration: none;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  padding: 40px !important;
  border-radius: 20px;
  background: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.contact.background-white .contact__form {
  background: var(--primary-color);
}
.contact.background-white .contact__card {
  border-color: var(--primary-color);
}
.contact__card {
  padding: 40px;
  border-radius: 20px;
  border-color: white;
  border: 3px solid;
  margin: 40px 0;
}
.contact__card__title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}
.contact__card a {
  color: var(--secondary-color);
}
.contact .forminator-checkbox__label.forminator-consent__label p {
  color: black;
}
.contact .forminator-checkbox__label.forminator-consent__label p a {
  color: black;
}

.section.contact .row {
  --bs-gutter-x: 80px !important;
}
@media screen and (max-width: 1000px) {
  .section.contact .row {
    flex-direction: column;
    --bs-gutter-x: 0 !important;
  }
}

.contentForm__form {
  padding: 40px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  background: white;
}
.contentForm .forminator-consent__label {
  color: black;
}
.contentForm .forminator-consent__label a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.contentForm .forminator-consent__label a:hover {
  color: var(--primary-color);
}

.content-grid__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.content-grid__grid__item {
  flex: 0 0 calc(50% - 15px);
  padding: 42px 30px;
  border-radius: 20px;
  text-decoration: none;
}
.content-grid__grid__item h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  margin-top: 12px;
  color: var(--primary-color);
}
.content-grid__grid__item .imageWrapper {
  width: 50px;
  height: 50px;
}
.content-grid__grid__item .imageWrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-image img {
  border-radius: 20px;
}

.contentVideo__trigger {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  gap: 20px;
}
.contentVideo__trigger__img {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: 0;
  filter: brightness(0.5);
}
.contentVideo__trigger__content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contentVideo__trigger__content p {
  font-family: Poppins;
  font-weight: 700;
  font-size: 26px;
  color: white;
}
.contentVideo__trigger__content .button {
  border: 3px solid var(--secondary-color);
  background-color: transparent;
  color: white;
  width: fit-content;
  font-weight: 700;
  cursor: pointer;
}
.contentVideo .col-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contentVideo__flyover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  backdrop-filter: brightness(0.3);
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contentVideo__flyover.isActive {
  display: flex;
}

.cta .container {
  border-radius: 20px;
}
.cta .content {
  padding: 60px 0 60px 60px;
}
@media screen and (max-width: 992px) {
  .cta .content {
    padding: 35px;
  }
}
.cta svg {
  position: absolute;
}
.cta .col:not(.content) {
  position: relative;
  padding-right: 0;
  padding-left: 20px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .cta .col:not(.content) {
    border-radius: 0 0 20px 20px;
    padding: unset;
  }
}
@media screen and (min-width: 991px) {
  .cta img.clip-svg {
    object-fit: cover;
    height: 100%;
    clip-path: circle(65.8% at 66% 53%);
  }
}

.dynamicMap__location {
  padding: 40px !important;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 20px 0 0 20px;
}
.dynamicMap__location__card {
  border-radius: 20px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1254901961);
  transition: 0.3s;
}
.dynamicMap__location__card h3 {
  color: var(--secondary-color);
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}
.dynamicMap__location__card p {
  margin: 0;
}
.dynamicMap__location__card:hover {
  background-color: rgba(255, 255, 255, 0.062745098);
  cursor: pointer;
}
.dynamicMap__location__card.active {
  background-color: #ffffff;
}
.dynamicMap__location__card.active p {
  color: black;
}
.dynamicMap__map__card {
  display: none;
  height: 100%;
}
.dynamicMap__map__card.active {
  display: flex;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.dynamicMap__map__card iframe {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .dynamicMap .container .row {
    flex-direction: column;
  }
  .dynamicMap__location {
    border-radius: 20px 20px 0 0 !important;
  }
  .dynamicMap__map__card {
    border-radius: 0 0 20px 20px !important;
    min-height: 400px;
  }
  .dynamicMap__map__card iframe {
    height: auto !important;
  }
}

.hero {
  padding-top: 60px;
}
.hero .col-image {
  max-height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 50px 50px 0 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.hero .col-image__cutter {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 50px 50px 0 0;
  bottom: 0;
}
.hero .col-image__cutter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .col-content {
  padding-bottom: 20px;
}
.hero .col ul li {
  list-style-image: url(/wp-content/themes/embryo-core/assets/media/circle-check-duotone-solid.png);
  text-indent: 10px;
  margin-bottom: 6px;
}
.hero .col ul li a {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .hero .row {
    flex-direction: column;
    gap: 20px;
  }
  .hero .row .col {
    width: 100%;
  }
  .hero .row .col-image img {
    position: relative;
  }
}
.logoSlider__items__single {
  max-height: 60px;
}
.logoSlider__items__single img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.ourTeam__staff {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.ourTeam__staff__single {
  width: calc(25% - 30px);
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  border-radius: 20px;
  overflow: hidden;
}
.ourTeam__staff__single__image {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.ourTeam__staff__single__content {
  padding: 20px;
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(204, 204, 204, 0.8);
  color: black;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}
.ourTeam__staff__single__content:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .ourTeam__staff__single {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .ourTeam__staff__single {
    width: calc(100% - 30px);
  }
}
.outcome__cards {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.outcome__cards__single {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 20px;
  text-align: center;
  flex: 1;
}
.outcome__cards__single img {
  width: 40px;
  height: auto;
  margin-bottom: 26px;
  display: block;
}
.outcome__cards__single__title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  text-align: center;
}
.outcome__testimonial {
  padding: 55px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
  height: fit-content;
}
.outcome__testimonial__content {
  font-family: Poppins;
  font-weight: 600;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2em;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.outcome__testimonial__label {
  font-family: Poppins;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--secondary-color);
}

.hero-landing .h2 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 14px;
}
.hero-landing h1 {
  margin-bottom: 40px;
}
.hero-landing h1 i {
  color: var(--secondary-color);
  font-style: normal;
}
.hero-landing__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .hero-landing__cards {
    flex-direction: column;
    gap: 20px;
  }
}
.hero-landing__cards__single {
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1294117647);
  width: calc(50% - 20px);
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .hero-landing__cards__single {
    width: 100%;
  }
}
.hero-landing__cards__single__img {
  width: 40px;
  height: 40px;
  display: block;
}
.hero-landing__cards__single__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.hero-landing__cards__single__content {
  width: fit-content;
}
.hero-landing__cards__single__content h3 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.hero-landing__cards__single__content .written {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 0%;
}
.hero-landing .col-form {
  padding: 40px;
  border: 2px solid var(--secondary-color);
  border-radius: 20px;
}

.homepagehero {
  position: relative;
}
.homepagehero__background {
  position: absolute;
  bottom: 0;
  z-index: 0;
}
.homepagehero .row {
  z-index: 10;
}
.homepagehero .cards {
  display: flex;
  gap: 10%;
  margin-bottom: 46px;
  z-index: 9;
  position: relative;
}
.homepagehero .cards__item {
  width: 25%;
  background: white;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1333333333);
}
.homepagehero .cards__item__image {
  width: 36px;
}
.homepagehero .cards.cards-first {
  justify-content: center;
}
.homepagehero .cards.cards-second {
  justify-content: space-around;
}

.inline-cards h2 {
  color: var(--secondary-color);
}
.inline-cards.background-primary .inline-cards__card {
  background: white;
}
.inline-cards.background-primary .inline-cards__card__content {
  color: black;
}
.inline-cards__card {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--light-grey-color);
  padding: 24px;
  border-radius: 20px;
}
.inline-cards__card__content {
  font-family: Poppins;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.inline-cards__card__content strong {
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}
.inline-cards__card__image {
  width: 110px;
  height: 110px;
  background: var(--primary-color);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.inline-cards__row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

.inline-cards-large__card .icl__image {
  aspect-ratio: 3/2;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.inline-cards-large__card .icl__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.inline-cards-large__card .icl__content {
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.relatedPosts__item {
  background: white;
  border-radius: 20px;
}
.relatedPosts__item-link {
  text-decoration: none;
  color: var(--primary-color);
}
.relatedPosts__item-image {
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.relatedPosts__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.relatedPosts__item-content {
  padding: 25px 20px;
}
.relatedPosts__item-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media screen and (max-width: 768px) {
  .relatedPosts__body .col {
    width: 100%;
    flex: auto;
    margin-bottom: 20px;
  }
}

.tabbed-content__tab {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 30px;
  border: 3px solid #E63491;
  border-radius: 20px;
  margin-bottom: 30px;
  align-items: center;
  transition: 0.3s;
}
.tabbed-content__tab:not(.isActive) {
  filter: grayscale(100%);
}
.tabbed-content__tab:not(.isActive):hover {
  filter: grayscale(0);
  cursor: pointer;
}
.tabbed-content__tab__image {
  width: 40px;
  height: 40px;
  overflow: hidden;
}
.tabbed-content__tab__image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.tabbed-content__title {
  margin: 0;
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2em;
  letter-spacing: 0%;
}
.tabbed-content__content:not(.isActive) {
  display: none;
}
.tabbed-content__content__image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.tabbed-content__content__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.tabbed-content__content__content {
  padding: 60px;
  border-radius: 0 0 20px 20px;
}

.background-lightgray .tabbed-content__content__content,
.background-secondary .tabbed-content__content__content,
.background-primary .tabbed-content__content__content {
  background: white;
}

.background-white .tabbed-content__content__content {
  background: var(--light-grey-color);
}

.tabbedHorizontal__tabs__tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tabbedHorizontal__tabs__tabs__tab {
  flex: 1;
  background: #e5e3e5;
  text-align: center;
  padding: 12px;
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.tabbedHorizontal__tabs__tabs__tab.active {
  background: var(--primary-color);
  color: #fff;
}

.tabbedHorizontal__tabs__content__single {
  display: none;
  padding: 26px 20px;
  background: #e5e3e5;
  border: 1px solid var(--primary-color);
}

.tabbedHorizontal__tabs__content__single.active {
  display: flex;
}

.tabbedHorizontal__tabs__content__single__image {
  aspect-ratio: 4/3;
}

.tabbedHorizontal__tabs__content__single__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .tabbedHorizontal__tabs__tabs {
    flex-direction: column;
  }
  .tabbedHorizontal__tabs__tabs__tab {
    width: 100%;
    border-radius: 0;
  }
}
.testimonial h2 {
  color: var(--secondary-color);
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 56px;
  letter-spacing: 0%;
}
.testimonial .splide__slide {
  overflow: hidden;
  padding-bottom: 40px;
}
.testimonial__item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-left: 40px;
}
.testimonial__item__content__text {
  font-family: Poppins;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  line-height: 100%;
}
.testimonial__item__content__speech {
  width: 40px;
}
.testimonial__item__content__closing {
  align-self: flex-end;
}
.testimonial__item__image__image {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.testimonial__item__image__logo {
  position: absolute;
  bottom: 0px;
  left: 20px;
  max-width: 200px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  z-index: 10;
}
.testimonial .splide__pagination__page {
  width: 35px;
  border-radius: 50px;
}
.testimonial .splide__pagination__page.is-active {
  transform: scale(1);
  background: var(--secondary-color);
}

.resourcehub__anchors {
  gap: 12px;
}
.resourcehub__anchors a {
  padding: 12px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  text-decoration: none;
  margin-right: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
  display: inline-block;
}
.resourcehub__anchors a:hover {
  background-color: var(--primary-color);
  color: white;
}

.blog__list__card {
  height: -webkit-fill-available;
}
.blog__list__card__image {
  display: block;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  max-height: 200px;
  height: 100%;
}
.blog__list__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__list__card__content {
  padding: 22px;
  border-radius: 0 0 20px 20px;
}
.blog__list__card__title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: 0%;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-decoration: none;
}
.blog__list__card__date {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}
.blog__list__card .readmore {
  display: block;
  width: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 50px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  padding: 14px;
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.blog__list__card .readmore:hover {
  background-color: var(--primary-color);
  color: white;
}

.downloads__list__card {
  aspect-ratio: 3/4;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.downloads__list__card a {
  text-align: center;
  width: 100%;
  border: 3px solid white;
  border-radius: 50px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 14px;
  color: white;
  margin-top: 10px;
}
.downloads__list__card h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: white;
}
.downloads__list__card__date {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--secondary-color);
}

/*# sourceMappingURL=index.css.map */
