.our-team-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative; }
  .our-team-section h2 {
    font-size: var(--typo-title);
    line-height: var(--lh-title);
    font-weight: var(--fw-title);
    letter-spacing: var(--ls-title);
    /* Mobile styles (under 992px) */
    color: var(--white);
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 992px) {
      .our-team-section h2 {
        font-size: var(--typo-title-m); } }
    @media (max-width: 992px) {
      .our-team-section h2 {
        margin-bottom: 25px; } }
  .our-team-section .team-slider-track {
    transition: transform 0.3s ease;
    padding: 0 10px; }
    .our-team-section .team-slider-track * {
      user-select: none;
      -webkit-user-drag: none;
      -ms-user-select: none;
      -moz-user-select: none; }
  .our-team-section .team-cards .team-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    height: 100%; }
    .our-team-section .team-cards .team-card .team-img {
      width: 100%;
      height: 100%;
      overflow: hidden;
      filter: grayscale(100%); }
      .our-team-section .team-cards .team-card .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .our-team-section .team-cards .team-card .team-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(9.3999996185px);
      padding: 12px 16px;
      text-align: var(--left);
      transform: translateY(100%);
      transition: transform 0.3s ease;
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 15px;
      padding-right: 45px;
      margin: 10px;
      border-radius: 8px; }
      [dir="rtl"] .our-team-section .team-cards .team-card .team-content {
        padding-left: null;
        padding-right: 15px;
        padding-right: null;
        padding-left: 45px; }
      .our-team-section .team-cards .team-card .team-content .team-name {
        font-size: var(--typo-subtitle);
        line-height: var(--lh-subtitle);
        font-weight: var(--fw-subtitle);
        letter-spacing: var(--ls-subtitle);
        /* Mobile styles (under 992px) */
        color: var(--white); }
        @media (max-width: 992px) {
          .our-team-section .team-cards .team-card .team-content .team-name {
            font-size: var(--typo-subtitle-m); } }
      .our-team-section .team-cards .team-card .team-content .team-role {
        font-size: var(--typo-text);
        line-height: var(--lh-text);
        font-weight: var(--fw-text);
        letter-spacing: var(--ls-text);
        /* Mobile styles (under 992px) */
        color: var(--gray-100); }
        @media (max-width: 992px) {
          .our-team-section .team-cards .team-card .team-content .team-role {
            font-size: var(--typo-text-m); } }
    .our-team-section .team-cards .team-card a.team-content:after {
      content: '';
      height: 30px;
      width: 30px;
      background-image: url(../..//assets/images/icons/LinkedIn_icon.svg);
      display: block;
      position: absolute;
      right: 15px;
      bottom: 15px;
      background-size: contain;
      background-repeat: no-repeat; }
      [dir="rtl"] .our-team-section .team-cards .team-card a.team-content:after {
        right: auto;
        left: 15px; }
  .our-team-section .team-cards:hover .team-card .team-content, .our-team-section .team-cards.active .team-card .team-content {
    transform: translateY(0); }
  .our-team-section .team-cards:hover .team-card .team-img, .our-team-section .team-cards.active .team-card .team-img {
    filter: grayscale(0%); }
  .our-team-section .slider-controls {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 0 30px; }
    [dir="rtl"] .our-team-section .slider-controls {
      flex-direction: row-reverse; }
    .our-team-section .slider-controls button {
      height: 56px;
      width: 96px;
      border-radius: 30px;
      cursor: pointer;
      position: relative;
      justify-items: center; }
      .our-team-section .slider-controls button:after {
        content: '';
        width: 37px;
        height: 38px;
        background-repeat: no-repeat;
        display: block;
        place-items: center;
        filter: var(--invert0); }
      @media (max-width: 992px) {
        .our-team-section .slider-controls button {
          height: 34px;
          width: 64px; }
          .our-team-section .slider-controls button:after {
            width: 24px;
            height: 24px;
            background-size: contain;
            background-position: center; } }
      .our-team-section .slider-controls button:before {
        border-radius: 30px; }
      .our-team-section .slider-controls button:hover {
        background-color: var(--primary);
        color: var(--neutral-black); }
      .our-team-section .slider-controls button.controls-next:after {
        background-image: url(../../assets/images/icons/right-arrow-normal.svg); }
      .our-team-section .slider-controls button.controls-prev:after {
        background-image: url(../../assets/images/icons/left-arrow-normal.svg); }
