/* RentGuarantor CSS: content-who-we-help.css (source: src/assets/scss/_content-who-we-help.scss) */
@charset "UTF-8";
.content-who-we-help {
  padding: var(--spacing-1300) 0;
}
@media (max-width: 991.98px) {
  .content-who-we-help {
    padding: var(--spacing-1100) 0;
    padding-right: 0 !important;
    overflow: hidden;
  }
}
@media (max-width: 991.98px) {
  .content-who-we-help__inner h2 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
    letter-spacing: -0.32px;
    margin-bottom: 24px !important;
  }
}

.content-who-we-help__carousel {
  overflow: visible;
}
@media (max-width: 767.98px) {
  .content-who-we-help__carousel {
    padding-right: var(--spacing-800);
  }
}

.content-who-we-help__pagination {
  display: flex;
  justify-content: flex-start;
  gap: var(--spacing-100);
  margin-top: var(--spacing-1100);
  position: static !important;
}
@media (min-width: 992px) {
  .content-who-we-help__pagination {
    display: none;
  }
}

.content-who-we-help .swiper-pagination-bullet {
  background-color: var(--color-light-blue-200);
  opacity: 1;
  width: 16px;
  height: 16px;
}
.content-who-we-help .swiper-pagination-bullet-active {
  background-color: var(--button-primary-default);
}

.who-we-help-card {
  height: 700px;
  border-radius: var(--spacing-700);
  overflow: hidden;
  position: relative;
}
.who-we-help-card__wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.who-we-help-card__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.who-we-help-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-we-help-card__header {
  cursor: pointer;
}
.who-we-help-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--tile-tertiary);
  border-radius: var(--spacing-700);
  padding: var(--spacing-1100);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .who-we-help-card__content {
    padding: 24px 16px;
  }
}
.who-we-help-card.is-expanded .who-we-help-card__content {
  background-color: var(--color-light-blue-300);
}
.who-we-help-card.is-expanded .who-we-help-card__details {
  overflow: visible;
}
.who-we-help-card__header {
  display: flex;
  gap: var(--spacing-600);
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.who-we-help-card__header h3 {
  flex: 1;
  margin: 0;
}
@media screen {
  .who-we-help-card__header h3 {
    font-size: var(--font-size-m);
    line-height: var(--line-height-m);
    letter-spacing: -0.32px;
  }
}
.who-we-help-card__toggle {
  background-color: var(--button-primary-default);
  border: none;
  border-radius: var(--spacing-500);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: var(--color-white);
  padding: 0;
}
.who-we-help-card__toggle:hover {
  background-color: var(--button-primary-hover);
}
.who-we-help-card__toggle:focus {
  outline: 2px solid var(--button-primary-default);
  outline-offset: 2px;
}
.who-we-help-card__toggle svg {
  display: block;
}
.who-we-help-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.who-we-help-card__details-content {
  padding-top: var(--spacing-700);
}
@media (max-width: 991.98px) {
  .who-we-help-card__details-content {
    padding-top: 16px;
  }
}
.who-we-help-card__details h4 {
  margin-bottom: var(--spacing-800);
}
@media (max-width: 991.98px) {
  .who-we-help-card__details h4 {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    letter-spacing: -0.16px;
    margin-bottom: 16px !important;
  }
}
.who-we-help-card__details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-900);
}
.who-we-help-card__details ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-400);
}
.who-we-help-card__details ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-headings-primary);
}
.who-we-help-card__details ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .who-we-help-card {
    height: 600px;
  }
}
@media (max-width: 767.98px) {
  .who-we-help-card {
    height: 500px;
  }
}