.swiper-equipe {
  width: 90%;
  padding: 0 !important;
  padding-top: 24px;
  padding-bottom: 36px;
}

@media (min-width: 768px) {
  .swiper-equipe {
    width: 90%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

#equipe .swiper-slide {
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  #equipe .swiper-slide {
    width: 350px;
    display: flex;
  }
}

#equipe .swiper-button-prev, #equipe .swiper-button-next {
  width: 35px;
  height: 35px;
  background-color: #010066;
  border-radius: 35px;
  border: 1px solid #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s ease-out;
  position: absolute;
}

@media (min-width: 768px) {
  #equipe .swiper-button-prev, #equipe .swiper-button-next {
    width: 70px;
    height: 70px;
  }
}

#equipe .swiper-button-prev:hover, #equipe .swiper-button-next:hover {
  background-color: #53cb35;
}

#equipe .swiper-button-prev {
  background-image: url(../../assets/img/arrow_left.svg) !important;
  left: 0px;
}

@media (min-width: 992px) {
  #equipe .swiper-button-prev {
    left: 50px;
  }
}

#equipe .swiper-button-prev:hover {
  background-image: url(../../assets/img/arrow_left_hover.svg) !important;
}

#equipe .swiper-button-next {
  background-image: url(../../assets/img/arrow_right.svg) !important;
  right: 0px;
}

@media (min-width: 992px) {
  #equipe .swiper-button-next {
    background-image: url(../../assets/img/arrow_right.svg) !important;
    right: 50px;
  }
}

#equipe .swiper-button-next:hover {
  background-image: url(../../assets/img/arrow_right_hover.svg) !important;
}

/* Card Equipe */

.card-equipe {
  width: 100%;
  min-height: 420px;
  background-color: #000066;
  background: rgb(29,56,156);
  background: -moz-linear-gradient(135deg, rgba(29,56,156,1) 0%, rgba(1,0,102,1) 100%);
  background: -webkit-linear-gradient(135deg, rgba(29,56,156,1) 0%, rgba(1,0,102,1) 100%);
  background: linear-gradient(135deg, rgba(29,56,156,1) 0%, rgba(1,0,102,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1d389c",endColorstr="#010066",GradientType=1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  box-shadow: 0 6px 12px rgba(0,0,0,.2);
  border-radius: 12px;
}

@media (min-width: 768px) {
  .card-equipe {
    min-height: 350px;
    padding: 12px 18px;
  }
}

.card-equipe .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .card-equipe .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 43px;
  }
}

.card-equipe .photo {
  width: 140px;
  height: 188px;
  object-fit: cover;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .card-equipe .photo {
    width: 193px;
	height: 271px;
	object-fit: cover;
    padding-bottom: 32px;
  }
}

.card-equipe .name {
  font-style: normal;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .card-equipe .name {
    font-size: 22px;
  }
}

.card-equipe .cargo {
  font-size: 12px;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .card-equipe .cargo {
    font-size: 14px;
    padding-bottom: 16px;
  }
}

.card-equipe .link {
  font-size: 19px;
  color: #fff;
  padding: 8px;
}

@media (min-width: 768px) {
  .card-equipe .link {
    font-size: 19px;
    padding: 8px;
  }
}

.card-equipe .click-mais {
  width: 100%;
  text-align: right;
}

.card-equipe .click-mais a {
  font-weight: normal;
  font-style: normal;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  text-align: right;
}

@media (min-width: 768px) {
  .card-equipe .click-mais a {
    font-family: 'Lato';
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    text-align: right;
  }
}

