/* ------------ GOOGLE FONTS ------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ------------ VARIABLES ------------ */
:root{

  --font: 'Poppins', sans-serif;
  --color: #9176FF;
  --bg-color: #ffffff;
}

/* ------------ BASE ------------ */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.team{
  font-family: var(--font);
  
  justify-content: center;
  align-items: center;
  height: 100vh;

  background-color: var(--bg-color);
}

.team h2{
    font-size: 40px;
    font-weight: 700;
    margin-top: 25px;
    text-align: center;
    padding: 30px 0;
}

/* ----------- SLIDER ------------ */
.swiper{
  width: 100%;
  
}

.swiper-wrapper{
  width: 100%;
  height: 35em;
  display: flex;
  align-items: center;
  
}




.card{
  width: 20em;
  height: 50%;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2em 1em;

  display: flex;
  align-items: center;
  flex-direction: column;
  
}


.swiper-slide:not(.swiper-slide-active){
  filter: blur(1px);
  
}

.card__image{
  width: 10em;
  height: 10em;
  border-radius: 50%;
  border: 5px solid var(--color);
  padding: 3px;
  margin-bottom: 2em;
  justify-items: center;
}

.card__image img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card__content{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card__title{
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  top: .2em;
}

.card__name{
  color: var(--color);
}

.card__text{
  text-align: center;
  font-size: 1.1rem;
  margin: 1em 0;
}

.card__btn{
  background-color: var(--color);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  padding: .5em;
  border-radius: .5em;
  margin-top: .5em;
  cursor: pointer;
}