/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
/**
 * #.# Styles
 *
 * CSS for both Frontend+Backend.
 */
.wp-block-cgb-block-four-column-full {
  margin: 0 !important;
  width: 100%;
  max-width: unset !important;
  padding: 30px 1.9% 53px 1.9%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.fourFPWImage {
  height: 240px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fourColFPWcontent {
  position: relative;
  top: -30px;
  width: 90%;
  margin: 0 auto;
  background: rgba(0,0,0,.85);
  padding: 5px 21px 0 11px;
}
.fourColFPWcontent h3 {
  font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 30px !important;
	color: #FFFFFF !important;
	line-height: 37px;
  position: relative;
  padding-bottom: 9px !important;
  margin-bottom: 10px !important;
}
.fourColFPWcontent h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 107.7%;
  height: 2px;
  background: #4A667D;
}
.fourColFPWcontent .buttonOnDark, .fourColFPWcontent a {
  background: rgba(0,0,0,0.10);
  font-family: 'Gotham-Medium' !important;
  font-size: 15px !important;
  color: #FFFFFF !important;
  text-align: center;
  text-decoration: none;
	text-transform: uppercase;
  display: inline;
}
.fourColFPWcontent a {
  border: 2px solid #B2B2B2;
  padding: 10px 9px;
}
@media only screen and (max-width: 1300px) {
  .wp-block-cgb-block-four-column-full {
    padding: 20px 15px 34px 15px;
    grid-gap: 37px 30px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .wp-block-cgb-block-four-column-full {
    grid-template-columns: 1fr;
  }
}