/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
/**
 * #.# Styles
 *
 * CSS for both Frontend+Backend.
 */
 /* TEAM ACCORDION */
 .wp-block-cgb-block-teamaccordion {
  padding: 40px 0 70px 0;
  width: 100%;
  margin: 0 !important;
  max-width: unset !important;
  background: #000;
 }
 .wp-block-cgb-block-teamaccordion a {
   text-decoration: none;
 }
 .taContainer {
   width: 76.3%;
   margin: auto;
 }
.taContainer h2 {
  margin-bottom: 8px;
  width: 100%;
  background: #4A667D;
  padding: 13px 81px 13px 21px !important;
  position: relative;
  font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 30px !important;
	line-height: 37px;
}
.taContainer h2::after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 7px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 40px;
  content: "";
  cursor: pointer;
}
.taContainer .arrowOpen::after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin: 9px 0 0 0;
}
.taContainer h2::before {
  border: 2px solid #fff;
  position: absolute;
  top: 13px;
  right: 28px;
  content: "";
  height: 40px;
  width: 40px;
  cursor: pointer;
}
.taGridContainer {
  padding: 37px 28px !important;
  display: none;
  background: #FFF;
  margin-bottom: 10px;
}
.taGrid {
  margin: 0 auto 12px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px 35px;
  width: 100%;
}
.taMember {
  width: 100%;
  text-decoration: none;
}
.taGrid .taImage {
  width: 100%;
  height: auto;
  min-height: 265px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.taContent {
  position: relative;
  top: -30px;
  background: #FFF;
  padding: 4px 9px 0 9px;
  width: 92.8%;
  margin: 0 auto;
}
.taContent h3 {
  margin-bottom: 5px !important;
  font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 22px !important;
	color: #4A667D !important;
	line-height: 25px;
	max-width: unset !important;
	padding: 0 !important;
}
.taContent p {
  margin: 0 0 20px 0 !important;
}
.taContent a {
  padding-top: 9.5px !important;
  padding-bottom: 9.5px !important;
}
@media only screen and (max-width: 1200px) {
  .taContainer {
    width: 97%;
  }
}
@media only screen and (max-width: 1000px) {
  .taGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 800px) {
  .taGrid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 35px;
  }
  .taGridContainer {
    padding: 19px 13px !important;
  }
}
@media only screen and (max-width: 500px) {
  .taGrid {
    grid-template-columns: 1fr;
  }
}