.elementor-346 .elementor-element.elementor-element-6650b49{--display:flex;}.elementor-346 .elementor-element.elementor-element-8185308{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-8185308 *//* ===== GLOBAL ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#fff;
}

/* ===== TEAM SECTION ===== */

.team-section{
  width:100%;
  padding:90px 0;
  overflow:hidden;
  background:#fff;
}

/* ===== TOP AREA ===== */

.team-top{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:60px;
}

.team-left{
  max-width:900px;
}

/* ===== TAG ===== */

.team-tag{
  display:inline-block;
  padding:12px 28px;
  background:#dfe8e5;
  color:#11a39a;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  margin-bottom:25px;
}

/* ===== HEADING ===== */

.team-left h2{
  font-size:45px;
  line-height:1.1;
  color:#1a2f6b;
  font-weight:600;
  font-family:'Times New Roman', serif;
  margin-bottom:15px;
}

.team-left h2 span{
  color:#11a39a;
}

.team-left p{
  font-size:15px;
  color:#666;
  line-height:1.8;
  max-width:720px;
  font-family:'Inter', sans-serif;
}

/* ===== BUTTON ===== */

.team-btn{
  display:flex;
  align-items:center;
  gap:15px;
  background:#11a39a;
  color:#fff;
  text-decoration:none;
  padding:12px 12px 12px 20px;
  border-radius:60px;
  font-size:20px;
  font-weight:600;
  transition:.4s;
}

.team-btn span{
  width:30px;
  height:30px;
  background:#1a2f6b;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.team-btn:hover{
  transform:translateY(-4px);
}

/* ===== SLIDER ===== */

.team-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.team-track{
  display:flex;
  gap:25px;
  width:max-content;
  animation:marqueeTeam 35s linear infinite;
  will-change:transform;
}

.team-slider:hover .team-track{
  animation-play-state:paused;
}

/* ===== CARD ===== */

.team-card{
  width:280px;
  flex-shrink:0;
}

/* ===== IMAGE ===== */

.team-img{
  width:100%;
  height:380px;
  border-radius:30px;
  overflow:hidden;
  position:relative;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s;
}

.team-card:hover img{
  transform:scale(1.08);
}

/* ===== OVERLAY ===== */

.team-overlay{
  position:absolute;
  inset:0;
  background:rgba(17,163,154,.94);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  opacity:0;
  transition:.5s;
}

.team-card:hover .team-overlay{
  opacity:1;
}

.team-overlay h3{
  font-size:24px;
  margin-bottom:15px;
}

.team-overlay p{
  font-size:15px;
  line-height:1.7;
  margin-bottom:8px;
}

/* ===== NAME ===== */

.team-card h4{
  text-align:center;
  margin-top:18px;
  font-size:22px;
  color:#1a2f6b;
  font-weight:700;
}

/* ===== SMOOTH SLIDER ===== */

@keyframes marqueeTeam{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }
}

/* ===== LARGE LAPTOP ===== */

@media(max-width:1400px){

  .team-left h2{
    font-size:45px;
  }

  .team-card{
    width:260px;
  }

  .team-img{
    height:350px;
  }

}

/* ===== TABLET ===== */

@media(max-width:992px){

  .team-top{
    gap:20px;
  }

  .team-left h2{
    font-size:42px;
  }

  .team-btn{
    font-size:17px;
  }

  .team-card{
    width:240px;
  }

  .team-img{
    height:320px;
  }

  .team-card h4{
    font-size:20px;
  }

}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .team-section{
    padding:70px 0;
  }

  .team-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .team-left h2{
    font-size:34px;
  }

  .team-left p{
    font-size:14px;
    line-height:1.7;
  }

  .team-tag{
    font-size:15px;
    padding:10px 22px;
  }

  .team-btn{
    font-size:16px;
    padding:10px 10px 10px 22px;
  }

  .team-btn span{
    width:38px;
    height:38px;
    font-size:18px;
  }

  .team-track{
    gap:15px;
    animation:marqueeTeam 28s linear infinite;
  }

  .team-card{
    width:85vw;
  }

  .team-img{
    height:420px;
  }

  .team-overlay{
    padding:24px;
  }

  .team-overlay h3{
    font-size:22px;
  }

  .team-overlay p{
    font-size:14px;
  }

}

/* ===== SMALL MOBILE ===== */

@media(max-width:480px){

  .team-left h2{
    font-size:28px;
  }

  .team-left p{
    font-size:14px;
  }

  .team-card{
    width:85vw;
  }

  .team-img{
    height:380px;
    border-radius:24px;
  }

  .team-card h4{
    font-size:18px;
  }

}/* End custom CSS */