@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team h3 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 1.5em;
}
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}
.team .member img {
  transition: all ease-in-out 0.4s;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: #fff;
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member h4 {
  font-weight: 600;
  margin-bottom: 17px;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color-default);
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}
.team .member span {
  margin-top: -7px;
  font-style: italic;
  display: block;
  font-size: 13px;
  color: var(--color-default);
}
.team .member .link {
  margin-top: 7px;
  font-size: 13px;
}
.team .member .link a {
  text-transform: uppercase;
  transition: color 0.3s;
  color: var(--color-primary);
  font-weight: 900;
}
.team .member .link a:hover {
  color: var(--color-secondary);
}

#team-bio h3 {
	text-align: center;
	margin-bottom: 1.5em;
}

#team-bio .photo {
	margin-bottom: 1.7em;
	min-width: auto;
	min-height: auto;
}

@media (max-width: 575px) { 
	#team-bio .photo {
	margin: 0 0 .5em 0;
	}
}

#team-bio .photo {
    border-radius: 4px;
	max-width: 100%;
}

#team-bio .photo .outline {
	outline: 2px solid var(--color-white);
	outline-offset: -5px;
}

#team-bio .content {
    background: #fff;
    padding: 2em 1.8em 0 2em;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#team-bio h6 {
    font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 4px;	
}

#team-bio .title {
	/*position: relative;*/
	font-size: 15px;
    font-style: italic;
    color: var(--color-default);
	margin-bottom: 1em;
}

#team-bio p {
	font-size: 1rem;
	line-height: 1.6rem;
}

#team-bio p:first-child {
	margin-bottom: 1em;
}

#team-bio p:last-child {
	margin-bottom: 2em;
}

#team-bio .bio {
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: .5em;
}

.back {
	font-size: 15px;
	margin-bottom: 2em;
}

.back a {
	color: var(--color-primary);
	font-weight: 900;
    transition: color 0.3s;
}

.back a:hover {
	color: var(--color-secondary);
}



