/*

Usage:
@include breakpoint(laptop) {
  // styles for laptop and wider
}
@include breakpoint(laptop, 800px) {
  // styles for laptop width and screens up to 800px tall
  // useful for targeting shorter laptop screens
}

@include breakpoint(desktop, 900px) {
  // styles for desktop width but shorter screens
}
  */
/*-----------------------
EASING 
---------------------- */
.profile-cards {
  overflow: hidden;
}
.profile-cards .cards-grid {
  --grid-gap: 2rem;
}
@media (min-width: 1024px) {
  .profile-cards .cards-grid {
    --grid-gap: 3rem;
  }
}
.profile-cards .profile-cards-list.slick-slider {
  display: flex !important;
  flex-direction: column !important;
}
.profile-cards .profile-cards-list.slick-slider .slick-dots {
  order: 1;
}
.profile-cards .profile-cards-list.slick-slider .slick-list {
  order: 2;
  overflow: visible;
}
.profile-cards .profile-cards-list .slick-slide {
  transition: opacity 0.3s ease-in-out;
  opacity: 0.6;
}
.profile-cards .profile-cards-list .slick-slide.slick-active {
  opacity: 1;
}
.profile-cards .profile-card {
  width: 80vw !important;
  max-width: 100%;
  margin-right: 2.2rem;
  position: relative;
  display: flex !important;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
  color: var(--color-white);
  aspect-ratio: 303/181;
  grid-column-end: span 12;
}
@media (min-width: 1024px) {
  .profile-cards .profile-card {
    width: auto !important;
    margin-right: 0;
  }
}
@media (min-width: 480px) {
  .profile-cards .profile-card {
    grid-column-end: span 6;
  }
}
@media (min-width: 1024px) {
  .profile-cards .profile-card {
    grid-column-end: span 3;
  }
}
.profile-cards .profile-card .profile-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.profile-cards .profile-card .profile-card-bg svg {
  width: 100%;
  height: 100%;
}
.profile-cards .profile-card .profile-card-top {
  position: relative;
  z-index: 2;
}
.profile-cards .profile-card .profile-card-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.profile-cards .profile-card .profile-card-top {
  padding: 2.2rem 2.6rem 0 2.6rem;
}
.profile-cards .profile-card .profile-card-top .profile-card-name {
  color: var(--color-soft-blue);
  font-size: var(--font-size-md-lg);
  font-stretch: var(--font-width-normal);
  line-height: 1.23;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .profile-cards .profile-card .profile-card-top .profile-card-name {
    --font-size-md-lg: 2.7rem;
  }
}
.profile-cards .profile-card .profile-card-bottom {
  font-size: var(--font-size-sm);
  line-height: 1.36;
  color: var(--color-white);
}
.profile-cards .profile-card .profile-card-bottom .profile-card-bottom-text {
  padding: 2.2rem 0px 2.2rem 2.6rem;
  width: 70%;
  flex-shrink: 0;
}
.profile-cards .profile-card .profile-card-bottom span {
  display: block;
  line-height: 1.14;
  text-transform: uppercase;
}
.profile-cards .profile-card .profile-card-bottom span.profile-card-job-title {
  font-size: var(--font-size-xs);
  margin-bottom: 5px;
}
.profile-cards .profile-card .profile-card-bottom span.profile-card-company {
  font-size: var(--font-size-sm);
}
.profile-cards .profile-card .profile-card-image {
  width: 26.65%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.profile-cards .profile-card .profile-card-image .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}