	@charset "utf-8";
/* Our Team CSS Document */
.teammember-list{ border-radius: 20px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; background-color: #ffffff; position: relative; margin: 15px 0; overflow: hidden; padding: 10px; padding-bottom: 0; -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); -webkit-transition-duration: 0.3s; transition-duration: 0.3s; -webkit-transition-property: transform; transition-property: transform; }
.team-thumbnail { position: relative; overflow: hidden; border-radius: calc(20px - 10px); }
.team-thumbnail img{ -webkit-transform: scale(1); transform: scale(1); -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; }
.team-content { position: relative; padding: 20px 40px 20px 0; }
.team-content .team-name h4{ font-size:20px; font-weight:700; letter-spacing: 1px; margin-bottom: 0; }
.team-content .team-name h4 a, span.team-designation{ -webkit-transition:all 0.5s ease-in-out; transition:all 0.5s ease-in-out; }
span.team-designation{ font-size: 14px; }
.team-name h4 a, .teammember-list:hover span.team-designation{ color:#061733; }
.teammember-list:hover h4 a, span.team-designation{ color:#C78D59; }
.teammember-list:hover .team-thumbnail img{ -webkit-transform: scale(1.08); transform: scale(1.08); }


  .member-social-icon-wrapper {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
  }
  
  .parent-icon {
	background: #151c2c;
	color: #fff;
	padding: 10px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px; 
	height: 40px; 
	text-align: center; 
	line-height: 20px; 
	transition: all 0.3s ease; 
  }
  .parent-icon:hover{ 
	background-color: #ee344e;
	transform: rotate(45deg);
}
  
  .member-social-icon {
	position: absolute;
	bottom: 50px;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	opacity: 0; /* Initially hidden */
	transform: translateY(10px); /* Positioned below */
	transition: opacity 0.4s ease, transform 0.4s ease;
	margin: 0;
  }

  .member-social-icon li{
	width: 40px;
	height: 40px;
	line-height: 40px;
	list-style: none;
	text-align: center;
	opacity: 0; /* Keep them hidden by default */
	-webkit-transform: translateY(10px); /* Keep them below */
	transform: translateY(10px); /* Keep them below */
	transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .member-social-icon li a{
	display: block;
	border-radius: 50px;
	color: #ffffff;
	background-color: #C78D59;
  }
  
  /* Reveal social icons when hovering the parent icon */
  .member-social-icon-wrapper:hover .member-social-icon {
	opacity: 1;
	transform: translateY(0); /* Move them up */
  }
  
  /* Stagger the reveal of icons (upward animation) */
  .member-social-icon li:nth-child(1) {
	opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s; /* 1st icon, reveals first */
  }
  .member-social-icon li:nth-child(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s; /* 2nd icon, reveals second */
  }
  .member-social-icon li:nth-child(3) {
	opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s; /* 3rd icon, reveals third */
  }
  .member-social-icon li:nth-child(4) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s; /* 4th icon, reveals last */
  }
  .member-social-icon li:nth-child(5) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s; /* 5th icon, reveals last */
  }