body {
  background-color: black;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.badges-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 15px;
}
.badges-container .badges {
  background-color: #F50E0E;
  color: white;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
}
.badges-container .badges--green {
  background-color: #549D4D;
}
.badges-container .badges--aqua {
  background-color: #f8ba00;
}
.badges-container .badges--dark {
  background-color: #2A4646;
}
.badges-container .badges--blue {
  background-color: #7E98A5;
}
.badges-container .badges--orange {
  background-color: #DB4D00;
}
.badges-container .badges--ag {
  background-color: #3ECA31;
}
.badges-container .badges--purple {
  background-color: #53538E;
}
.badges-container img {
  width: 20px;
  height: 20px;
}

.title-experts {
  margin-top: 20px;
  color: white;
  font-weight: 600;
}

.expert_list {
  padding-top: 30px;
}

.expert_list > .row {
  margin-right: -35px;
  margin-left: -35px;
}

.expert_list > .row > .experts_expert {
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 30px;
}

.expert-img {
  width: 180px;
  height: 180px;
}

.show-card {
  border-radius: 10px;
  border: 1px solid white;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.show-card.hide {
  animation: fade-out 0.4s forwards cubic-bezier(0.64, 1.87, 0.64, 0.64);
}

.show-card.show {
  opacity: 0;
  animation: fade-in 0.3s 0.3s forwards cubic-bezier(0.64, 1.87, 0.64, 0.64);
}

.show-card_photo_wrapper {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(180deg, #E4DBF6, #D39FD9);
  padding: 5px;
  margin-right: 10px;
}

.show-card_photo {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-size: cover;
}

.show-card_name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.show-card_arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
}

.show-card_arrow img {
  width: 100%;
}

.expert_card {
  display: none;
  transition: all 0.4s 0.4s cubic-bezier(0.5, 0.2, 0.43, 1.33);
  width: 100%;
  position: relative;
  margin-top: 85px;
  height: calc(100% - 85px);
}

.expert_card .close {
  cursor: pointer;
  height: 14px;
  opacity: 0;
  position: absolute;
  right: 25px;
  top: 1px;
  width: 14px;
  z-index: 10;
}
.expert_card .close img {
  width: 40px;
  height: 40px;
}

.expert_card .details {
  border-radius: 10px;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.expert_card .details .name {
  color: white;
  font-weight: 900;
  opacity: 0;
  margin-top: 85px;
  font-size: 16px;
  line-height: 1.2;
  padding: 0 15px;
  margin-bottom: 0;
}

.expert_card .details .description {
  color: white;
  line-height: 1.2;
  font-size: 16px;
  opacity: 0;
  padding: 0 15px;
}

.expert_card .headshot {
  position: absolute;
  width: 100%;
  top: 0;
}

.expert_card .headshot img {
  border-radius: 50%;
  display: block;
  height: 180px;
  margin: -90px auto 0;
  width: 180px;
  opacity: 0;
}

.experts_expert {
  position: relative;
  min-height: 120px;
  width: 100%;
}

.expert_card.show .details {
  animation: show-detail-container 0.3s 0.2s forwards cubic-bezier(0.54, -0.38, 0.34, 1.42);
}

.expert_card.show .name {
  animation: fade-in 0.3s 0.1s forwards, pop-in 0.3s 1.3s forwards cubic-bezier(0.64, 1.87, 0.64, 0.64);
}

.expert_card.show .description {
  animation: fade-in 0.3s 0.1s forwards, pop-in 0.3s 1.4s forwards cubic-bezier(0.64, 1.87, 0.64, 0.64);
}

.expert_card.show .headshot img {
  animation: fade-in 0.3s 0.1s forwards, pop-in 0.6s 1.2s forwards cubic-bezier(0.64, 1.87, 0.64, 0.64);
}

.expert_card.show .close {
  animation: fade-in 0.3s 0.1s forwards;
}

.expert_card.hide {
  animation: drop-card 0.9s forwards cubic-bezier(0.54, -0.38, 0.34, 1.42);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes unblur {
  0% {
    filter: blur(3px);
  }
  100% {
    filter: blur(0);
  }
}
@keyframes show-detail-container {
  0% {
    max-height: 0;
    border: 0;
  }
  100% {
    max-height: 330px;
    border: 1px solid white;
  }
}
@keyframes drop-card {
  100% {
    transform: rotateZ(20deg);
    opacity: 0;
  }
}
.lines_expert {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

@media screen and (max-width: 1400px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .expert-img {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .expert-img {
    width: 120px;
    height: 120px;
  }
  .expert_card {
    margin-top: 80px;
  }
  .expert_card .headshot img {
    height: 100px;
    width: 100px;
    margin: -50px auto 0;
  }
  .expert_card .details .name {
    margin-top: 65px;
    font-size: 14px;
  }
  .expert_card .details .description {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .badges-container .badges {
    font-size: 10px;
  }
  .expert-img {
    width: 100px;
    height: 100px;
  }
  .expert_list > .row > .experts_expert {
    padding-right: 9px;
    padding-left: 9px;
    margin-bottom: 15px;
  }
  .expert_list > .row {
    margin-right: -9px;
    margin-left: -9px;
  }
  .show-card {
    padding: 5px 10px;
  }
  .show-card_photo_wrapper {
    width: 75px;
    height: 75px;
    padding: 2px;
  }
  .show-card_name {
    font-size: 16px;
  }
  .show-card_arrow {
    width: 15px;
    bottom: 8px;
    right: 8px;
  }
  .expert_card .headshot img {
    height: 100px;
    width: 100px;
    margin: -50px auto 0;
    border-width: 2px;
  }
  .expert_card {
    margin-top: 45px;
    height: calc(100% - 45px);
  }
  .expert_card .details .name {
    margin-top: 45px;
    font-size: 14px;
    padding: 0 10px;
  }
  .expert_card .details .description {
    padding: 0 10px;
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .badges-container {
    padding: 0 10px;
  }
  .expert_list > .row > .experts_expert {
    padding-right: 9px;
    padding-left: 9px;
    margin-bottom: 15px;
  }
  .expert_list > .row {
    margin-right: -9px;
    margin-left: -9px;
  }
  .show-card {
    padding: 5px 10px;
  }
  .show-card_photo_wrapper {
    width: 75px;
    height: 75px;
    padding: 2px;
  }
  .show-card_name {
    font-size: 16px;
  }
  .show-card_arrow {
    width: 15px;
    bottom: 8px;
    right: 8px;
  }
  .expert_card .headshot img {
    height: 100px;
    width: 100px;
    margin: -50px auto 0;
    border-width: 2px;
  }
  .expert_card {
    margin-top: 45px;
    height: calc(100% - 45px);
  }
  .expert_card .details .name {
    margin-top: 45px;
    font-size: 14px;
    padding: 0 10px;
  }
  .expert_card .details .description {
    padding: 0 10px;
    font-size: 11px;
  }
}

/*# sourceMappingURL=style.css.map */
