  .controls-team {
    position: relative;
    width: 100%;

    .controls-teamCaru {
      display: flex;
      justify-content: center;
      flex-direction: row;
      width: 100%;
      gap: 40px;
      /* transform: translateX(-60px); */


      .item-controls-small {
        height: 45px;
        width: 45px;
        border: 1px var(--color-primary) solid;
        border-radius: 100%;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.7s;

        &:hover {
          background: var(--color-primary);
          transition: 400ms;
          opacity: 1;

          svg {
            fill: #fff !important;
            transition: 400ms;
          }
        }

        svg {
          width: 20px;
          fill: var(--color-primary);
        }
      }
    }


  }

  .owl-team-3 {
    .owl-stage {
      display: flex;

      .owl-item.active.center {

        .profi-container {
          scale: 1.05;

          .cardProfile {
            border: 4px solid white;
          }

          .cardProfile,
          .info-team {
            background: var(--color-secondary);
            transition: 0.7s !important;
          }

          .btn-primary {
            transition: 0.7s;
            &:hover {
              border: 1px solid white;
            }
          }
          
        }

        &:hover {

          .cardProfile,
          .info-team {
            background: var(--color-secondary-dark);
          }
        }
      }

      .profiCards,
      .profi-container {
        height: 100%;
      }
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
      background: var(--color-primary) !important;
    }
  }



  .profiPic {
    border-radius: 0 0 50px 50px;
    margin-inline: auto;
    min-width: 200px;
    background: #fff;
    border: none;
    aspect-ratio: 1.2;
    display: flex;
    margin: 0;
    width: 100%;
    /* max-width: 200px; */
    overflow: hidden;
    min-height: 255px;

    img {
      object-fit: cover;
      object-position: top;
      transition: 0.7s;
    }
  }

  .cardProfile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 15px 15px 25px 15px;
    overflow: hidden;

    &:hover {
      img {
        scale: 1.1;
      }
    }
  }

  .leftBG {
    background: linear-gradient(90deg, var(--mainColorLight), var(--white) 92.6%);
  }

  .profiCards {
    width: 100%;
  }

  @media screen and (max-width: 767px) {
    .profiCards {
      width: 100%;
    }
  }

  .info-team {
    padding: 15px;
    text-align: center;
    position: relative;
    width: 100%;
    top: 0;
    opacity: 1;
    transform: scale(1);
    transition: all 300ms;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    height: 100%;
    background: white;
    min-height: 180px;
  }

  .profiCards:hover .info-team {
    opacity: 1;
    transform: scale(1);
    transition: all 300ms;
  }

  .description-team {
    scrollbar-width: thin;
    max-height: 200px;
    overflow: auto;
  }

  .center h4 {
    color: #fff;
  }

  @media (max-width: 600px) {
    .name-team-responsive {
      display: flex;
    }

    .name-team-pc {
      display: none;
    }

    .info-team {
      border-radius: 0 0 25px 25px;
      position: relative;
      opacity: 1;
      transform: scale(1);
    }
  }