/* STYLES FOR TEAM ACCORDION */
.tac {
    max-width: unset !important;
    margin: 0 !important;
    padding: 40px 11.8% 70px 11.8%;
}
.tacDepartment {
    margin-bottom: 13px;
}
.tacDepName {
    position: relative;
}
.tacDepartment h2 {
    padding: 5px 65px 5px 20px !important;
    font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 30px !important;
	color: #FFFFFF !important;
	line-height: 37px;
    background: #4A667D;
}
.tacButton {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    border: 2px solid #FFF;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
.tacButton .arrow {
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin: 0 0 8px 0;
  }
  .tacButton .arrowOpen {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin: 5px 0 0 0;
  }
.tacGridContainer {
    display: none;
}
.tacGrid {
    margin-top: 8px;
    background: #FFF;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 50px 35px;
    padding: 35px 28px 50px 28px;
}
.tacMember {
    height: 265px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.tacCcontent {
    background: #FFF;
    width: 90%;
    position: relative;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 9px 0 9px;
}
.tacCcontent h3 {
    font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900;
	font-size: 22px !important;
	line-height: 25px;
	color: #4A667D !important;
    margin-bottom: 5px !important;
}
.tacTitle {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 16px !important;
	color: #000 !important;
	line-height: 25px !important;
    margin-bottom: 20px !important;
}
.tacCcontent .buttonFont {
    padding: 0px !important;
    display: inline-block;
    border: none !important;
}
.tacCcontent .buttonFont a {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 15px !important;
	text-align: center;
	text-transform: uppercase;
	color: #7BAFD4 !important;
	background: transparent !important;
	text-decoration: none;
    padding: 5px 13px !important;
    border: 2px solid #B2B2B2 !important;
}
@media only screen and (max-width: 1300px) {
    .tac {
        padding: 40px 15px 70px 15px;
    }
}
@media only screen and (max-width: 800px) {
    .tacGrid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 600px) {
    .tacGrid {
        grid-template-columns: 1fr;
        grid-gap: 25px;
        padding: 19px 13px 25px 13px;
    }
    .tacButton {
        right: 9px;
    }
}
