.team-minders .btn {
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  gap: 10px;
  background: var(--hd-secondary);
  color: var(--hd-text-secondary);
  border-radius: 20px;
  font-family: var(--bs-body-font-family);
  font-weight: 500;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.team-minders .btn.btn-primary {
  border-radius: 20px;
  background: var(--hd-primary);
}
.team-minders .btn.btn-primary:hover {
  opacity: 0.8;
}
.team-minders .btn.btn-primary a {
  color: var(--hd-text-secondary);
}
.team-minders .btn.btn-primary a::after {
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
}
.team-minders .btn.btn-primary svg path {
  fill: var(--hd-text-secondary);
}
.team-minders .btn.btn-primary:hover svg path {
  fill: var(--hd-text);
}

.team-minders .btn.btn-text {
  background: none;
  color: var(--hd-text);
}
.team-minders .btn.btn-text:hover,
.team-minders .btn.btn-text:focus {
  color: var(--hd-primary);
  opacity: 0.8;
}
.team-minders .btn.arrow-right .icon {
  order: 2;
}

.team-minders .section-heading h2 {
  font-size: var(--h2-size-large);
}
.team-minders .section-heading h2 span {
  display: block;
}
.team-minders .section-heading p {
  font-size: 18px;
  margin-top: 40px;
}
.team-minders .section-heading .btn-column {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .team-minders .section-heading h2 {
    font-size: var(--h2-size-small);
  }
}
.team-minders .svg-column {
  position: absolute;
  z-index: 0;
  width: 300px;
}
.team-minders .svg-column svg {
  width: 100%;
  fill: var(--hd-text);
  opacity: 0.5;
}
@media (max-width: 990px) {
  .team-minders .svg-column {
    width: 200px;
  }
}

.team-minders {
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--hd-body-bg);
  overflow: hidden;
}
.team-minders .section-heading h2 {
  color: var(--hd-text);
}
.team-minders .section-heading h2 span {
  color: var(--hd-text);
  opacity: 0.4;
}
.team-minders .section-heading .btn.btn-secondary {
  background: var(--hd-text);
}
.team-minders .section-heading .btn.btn-secondary a,
.team-minders .section-heading .btn.btn-secondary path,
.team-minders .section-heading .btn-text {
  color: var(--hd-text-secondary);
  fill: var(--hd-text-secondary);
}
.team-minders .section-heading .btn-text:hover {
  color: var(--hd-secondary);
}
.team-minders .teams-container {
  position: relative;
  margin-top: 40px;
}
.team-minders .teams-carousel-actions {
  display: flex;
  width: 180px;
  height: 180px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  right: 0;
  top: -70px;
  transition: all 0.2s;
}
.team-minders .teams-carousel-actions path {
  stroke: #fff;
}
.team-minders .teams-carousel-actions:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 19px 11px rgba(0, 0, 0, 0.15);
}
.team-minders .teams-list {
  position: relative;
  z-index: 1;
  overscroll-behavior: none;
  width: 600%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.team-minders .teams-container .teams-container-mobile .swiper {
  padding: 0px 10px;
}

.team-minders .teams-list .team-column {
  padding: 10px;
  width: 320px;
  display: flex;
  flex: 0 0 auto;
}

.team-minders .teams-list .team-column .team-div {
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  display: block;
}
.team-minders .teams-list .team-column .team-div .team-img img {
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 460px;
  object-fit: cover;
}
.team-minders .teams-list .team-column:hover .team-div .team-img img {
  filter: blur(20px);
  -webkit-filter: blur(20px);
}
.team-minders .teams-list .team-column .team-div .team-hover-text {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--hd-text);
}
.team-minders .teams-list .team-column:hover .team-div .team-hover-text {
  opacity: 1;
}
.team-minders .teams-list .team-column .team-div .team-hover-text h3 {
  font-size: 35px;
}
.team-minders .teams-list .team-column .team-div .team-hover-text h3 span {
  display: block;
  color: var(--hd-text);
  opacity: 0.5;
}
.team-minders .svg-column {
  left: -100px;
  top: 80%;
  transform: translateY(-50%);
}

.team-minders .teams-container-mobile {
  display: none;
}

@media (max-width: 767px) {
  .team-minders {
    padding: 72px 0;
  }
  .team-minders .teams-list {
    width: 100%;
    height: auto;
  }
  .team-minders .section-heading {
    padding: 0 20px;
  }
  .team-minders .teams-carousel-actions {
    display: none;
  }
  .team-minders .teams-list .team-column .team-div {
    border-radius: 40px;
  }
  .team-minders .container {
    padding: 0;
  }

  .team-minders .teams-list .team-column .team-div .team-img img {
    width: 320px;
  }

  .team-minders .teams-container-mobile {
    display: block;
  }
  .team-minders .teams-container-desktop {
    display: none;
  }
}
