
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #0791d5;
  --first-color-light: #0791d5;
  --first-color-alt:#2e4c92;
  --second-color: #00d9ff;
  --dark-color: #1e3050;
  --container-color: hsl(212, 42%, 20%);
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/*=============== CARD ===============*/
.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card__container1 {
  padding-block: 5rem;
  margin-bottom: 50px;
}
.card__content {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.card__article {
  width: 300px; /* Remove after adding swiper js */
  border-radius: 1.25rem;
  overflow: hidden;
}
.card__image {
  background-color: var(--first-color-light);
  margin-bottom: -.75rem;
  text-align: center;
  width: auto;
  height: 200px;
  display: flex;
  align-items: center;
}
.card__data {
  background-color: var(--container-color);
  padding: 2rem 1rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
  width: auto;
  height: 170px;
}
.card__img {
  width: 180px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.card__shadow {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: 3.75rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  filter: blur(45px);
}
.card__name {
  font-size: 20px;
  color: var(--second-color);
  margin-bottom: .75rem;
  font-weight: 300;
}
.card__description {
  font-weight: 300;
  margin-bottom: 1.60rem;
  font-size: 13px;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
.card__button {
  display: inline-block;
  background-color: var(--first-color);
  padding: .75rem 1.5rem;
  border-radius: .25rem;
  color: var(--dark-color);
  font-weight: 600;
}
/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}
.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: #1e3050;
  display: none;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-pagination-bullet {
  background-color: #1e3050;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--second-color);
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .card__data {
    padding: 1rem;
  }
}
/* For medium devices */
@media screen and (min-width: 768px) {
  .card__content {
    margin-inline: 3rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}
/* For large devices */
@media screen and (min-width: 1120px) {
  .card__container1 {
    max-width: 1120px;
  }
  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
}
.icon{
	  font-size: 80px;
    width: 180px;
    margin: 0 auto;
    z-index: 5;
    color: #fff;
    filter: drop-shadow(0 2px 5px rgba(122, 122, 122, 0.7)); 
}