@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*font-family: "Poppins", sans-serif;*/
.team-accordion .accordion-item{
		margin-bottom: 10px;
	}
	.team-accordion::last-child .accordion-item{
		margin-bottom: 0;
	}
.team-accordion .accordion-button{
	font-size: 22px;
	line-height: 27px;
	font-weight: 600;
	border-radius: 0 !important;
	background:#eaeaea;
}
.team-accordion .accordion-button:focus{
		box-shadow: none;
	}
/* Card */
.team-col{
	text-align:center;
}
.team-card {
  background: #cfcfcf;
  /*min-height: 150px;*/

  position: relative;
  cursor: pointer;
  /*border-radius: 6px;
  overflow: hidden;*/
  border: 1px solid rgba(0, 0, 0, 0.3);
}
/*.team-card.active-card {
  outline: 1px solid #0d6efd;
}*/
.team-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px;
  padding-right: 35px;
  font-size: 14px;
  text-align: left;
}
.team-info h6{
	line-height: 16px;
	font-weight:600;
  	margin-bottom: 5px;
}
.team-info p{
	margin-bottom: 0;
	line-height: 18px;
}
.team-info .icon {
  position: absolute;
  color: #fff;
  right: 10px;
  bottom: 10px;
  z-index: 6;
  background: #3e90cd;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
}
.team-info .icon::before {
  font: normal 20px/1.2 FontAwesome;
  content: "\f107";
  font-weight: 600;
	}
.active-card .team-info .icon{
	background: #000000;
	bottom: -15px;
}	
/*.active-card .team-info .icon::before {
  content: "\f106";
}*/

/* Hidden content */
.tab-content-box {
  display: none;
}

/* Animated content 
.dynamic-row-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}*/
	
.dynamic-row-content {
  overflow: hidden;
}
.dynamic-row-content.show {
  max-height: 500px;
  opacity: 1;
}

/*==New==*/	
.dynamic-row-content {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  will-change: max-height, opacity;
  margin-top:30px;
}

.dynamic-inner {
  animation: fadeIn 0.3s ease;
}
.dynamic-inner p:last-child{
	margin-bottom:0;
}

.team-card {
  transition: all 0.3s ease;
}

.team-card img {
  transition: transform 0.35s ease;
}
/*
.team-card:hover img {
  transform: scale(1.03);
}*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}