/* Button Padding */
.button {
    padding: 10px 20px;
}
    
.navContent li .button {
    padding: 10px 20px;
}

/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
    padding: 15px;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* Full Width Gallery Images in Mobile */

@media only screen and (max-width: 767px) {
    .blockContent.cols3 .imgGridItem {
        width: 100%;
        margin: 0;
        padding: 10px;
    }
}

/* Fix Disappearing Mobile CTA Text */

@media only screen and (max-width: 768px) { 
    .cols4 .imgGridItem .imgHover-content {
        display: block!important;
    }
}

/* Responsive Image Swap */

@media only screen and (max-width: 767px) {
    .blockWrap_a307d30be3d744728eef336837f9fede img {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .blockWrap_a307d30be3d744728eef336837f9fede {
        padding: 20px !important;
        padding-bottom: 15px;

    }
    
.blockWrap_a307d30be3d744728eef336837f9fede .contentTitle {
        text-align: center;
        margin-top: -60px !important;   
    }
}

/* Back to Top Button */


#back2topbutton {
  display: inline-block;
  background-color: #000000;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back2topbutton::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#back2topbutton:hover {
  cursor: pointer;
  background-color: #cd2d3e;
}
#back2topbutton:active {
  background-color: #cd2d3e;
}
#back2topbutton.show {
  opacity: 1;
  visibility: visible;
}
/* Equalize Simple List Blocks*/

/* Change item class here */
.items_aee489d648dc41129cc367c5d73396be { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_aee489d648dc41129cc367c5d73396be > .item {
	display: flex;
	flex-direction: column;
}