/* ourTeam__membersAsso */
.ourTeam__membersAsso .outTeamSec {
  padding: 0px 0px;
}
.ourTeam__membersAsso .membersAssociationsSec {
  padding: 0px 0px;
  margin-top: 48px;
}
/* ourTeam__membersAsso end */

/* outTeamSec */
.outTeamSec .secHeader {
  text-align: center;
  margin-bottom: 64px;
}
.outTeamSec .secHeader .headingXL {
  margin-bottom: 24px;
  color: var(--neutral900);
}
.outTeamSec .secHeader .paragraphL {
  color: var(--neutral700);
  width: 780px;
  max-width: 100%;
  margin: 0px auto;
}
.outTeamSec .buttonRegular {
  margin-top: 32px;
}
.outTeamSec .mainDoctorsRow {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.outTeamSec .mainDoctorsCol {
  width: calc(33.3333% - 16px);
}
.outTeamSec .teamMembersRow .mainDoctorsCol {
  width: calc(25% - 16px);
}
.outTeamSec .teamMembersRow {
  margin-top: 24px;
}

.teamMembersRow{
	display: flex;
    justify-content: center;
    gap: 24px;
	flex-wrap:wrap;
}
.teamMembersRow .teamMembersCol{
	width:calc(25% - 18px);
}

.mainDoctorsBox {
  height: 100%;
  overflow: hidden;
  background-color: var(--secondaryBrand);
}
.mainDoctorsBox .imgWrapper {
  width: 100%;
  padding-top: 80%;
  position: relative;
  overflow: hidden;
}
.mainDoctorsBox .imgWrapper img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s;
}
.mainDoctorsBox .imgWrapper:hover img {
  transform: scale(1.1);
  transform-origin: center;
}
.mainDoctorsBox .contentBody {
  padding:24px 78px 24px 24px;
  position:relative;
}
.mainDoctorsBox .contentBody .arrowBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
	opacity:0;
	transition:0.3s;
	width:42px;
	height:42px;
	border-radius:50%;
}
.mainDoctorsBox .contentBody .arrowBtn img{
	width:100%;
	height:100%;
	object-fit:content;
	object-position:center;
}
.mainDoctorsBox:hover .contentBody .arrowBtn{
	opacity:1;
}
.mainDoctorsBox .contentBody .arrowBtn:hover{
	background-color:rgba(255,255,255,0.2);
}
.mainDoctorsBox .headingS {
  color: var(--white);
  margin-bottom: 12px;
}
.mainDoctorsBox .paragraphL {
  color: var(--white);
}
/* outTeamSec end */

/* membersAssociationsSec */
.membersAssociationsSec .paragraphM {
  text-align: center;
  color: var(--neutral500);
  margin-bottom: 16px;
  font-weight: 400;
}
.membersAssociationsSec .logoWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 24px;
  column-gap: 64px;
  justify-content: center;
}
/* membersAssociationsSec end */

/* Responsive */
@media (max-width:1199px) {
	.teamMembersRow .teamMembersCol {
		width: calc(33.3333% - 16px);
	}
}
@media (max-width: 1024px) {
  .ourTeam__membersAsso.sectionPaddingLarge {
    padding: 40px 0px;
  }
}
@media (max-width: 991px) {
  .outTeamSec .mainDoctorsCol {
    width: calc(50% - 12px);
  }
	.teamMembersRow .teamMembersCol {
		width: calc(50% - 12px);
	}
}
@media (max-width: 767px) {
  .membersAssociationsSec .logoWrapper img {
    margin: 0px 32px;
  }
  .membersAssociationsSec .logoWrapper .slick-track {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .outTeamSec .secHeader {
    margin-bottom: 40px;
  }
  .outTeamSec .mainDoctorsRow {
    flex-wrap: wrap;
  }
  .outTeamSec .mainDoctorsCol {
    width: 100%;
  }
  .ourTeam__membersAsso .membersAssociationsSec {
    margin-top: 32px;
  }
  .outTeamSec .secHeader .headingXL {
    font-size: 36px;
    line-height: 46px;
  }
	.teamMembersRow .teamMembersCol {
		width:100%;
	}
}
