/*About us page css*/
.team_row:not(:last-child) {
    margin-bottom: 80px;
}
.team_row .default-content, .team_row .dr-img{
	max-width: 768px;
    width: 100%;
    margin: 0 auto;
}
.team_row .dr-img{
	aspect-ratio: 15 / 10;
    overflow: hidden;
    border-radius: 12px;
}
.team_row .dr-img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.social-links {
    margin-top: 35px;
}
/* flip row on lg+ screens when .reverse present */
@media (min-width: 992px) {
  .team_row.reverse { 
  	flex-direction: row-reverse; 
  }
}

/* social icon spacing */
.social-links a { 
	display:inline-block; 
	margin-right: .5rem;
 }
.social-links img { 
	width:30px; 
	height:30px; 
	object-fit:contain; 
	border-radius: 6px;
}
@media only screen and (max-width: 1199px) {
	.team_row:not(:last-child) {
	    margin-bottom: 50px;
	}
	.social-links {
	    margin-top: 30px;
	}
}
@media only screen and (max-width: 991px) {
    .social-links {
	    margin-top: 25px;
	}
	.team_row:not(:last-child) {
	    margin-bottom: 40px;
	}
	.team_row{
	    gap: 30px;
	}
}
/*About us page css end*/