.cards, 
.cards__item {
  display: flex;
  flex-wrap: wrap;
}

.cards__item {
  position: relative;
  flex-flow: column;
}

.cards .hs_cos_wrapper_type_inline_rich_text *:last-child {
  margin-bottom: 0; 
}

.cards__item .cards__item-link {
 flex-flow: column;
}

.cards__content {
  height: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
  flex-wrap: wrap;
  gap:10px;
}

.cards__content-image {
  display: inline-block;
}

.cards__content-cta {
  display: flex;
  flex-direction:column;
  gap:10px;
}
.cards__content-cta > .button{
  width:fit-content;
}

.cards__content-cta .button {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.cards__item-link {
  display: flex;
  background-color: transparent;
  text-decoration: none !important;
}

/** Layouts - Text on Image */
.cards__content-text-on-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}
.cards__item:hover .cards__content-text-on-image,
.cards__item:focus .cards__content-text-on-image,
.cards__item:focus-within .cards__content-text-on-image{
  transform: scale(1.1);
}

.cards--text-on-image .cards__item {
  overflow: hidden;
}
/** End Layouts - Text on Image **/

/** Layouts - Image Left */
.cards--layout-image-left {
  flex-direction:row;
}
.cards--image-left-container{
  flex-basis:38%;
   overflow: hidden;
}
.cards-image-left--background{
  width:100%;
  height:100%;
  transition:all .5s ease;
}
.cards__item:hover .cards-image-left--background,
.cards__item:focus .cards-image-left--background,
.cards__item:focus-within .cards-image-left--background{
  transform: scale(1.1);
}
.cards--layout-image-left .cards__content{
  flex-basis:60%;
}
/** End Layouts - Image Left **/
.cards--text-on-hover .cards__content{
  position:relative;
}
.cards--text-on-hover-text{
  position:absolute;
}
/** Text on hover */
.cards--text-on-hover-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index:-1;
  opacity:0;
  transition:all .6s ease-in-out;
  flex-direction: column;
  justify-content: center;

}
.cards--text-on-hover .cards__content:hover .cards--text-on-hover-text,
.cards__item:focus .cards__content .cards--text-on-hover-text,
.cards__item:focus-within .cards__content .cards--text-on-hover-text{
  opacity:1;
  z-index:2;
}
.cards--text-on-hover .cards__content-text{
  width:100%;
}
.cards--text-hyphen{
  hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  -ms-word-break: break-all;
  word-wrap: break-word;
}
.cards__content-text-on-image {
  z-index: 3
}
.cards--text-fancy .cards__content-hidden-fancy {
  visibility: hidden;
  opacity: 0;
  height: auto;
  transition: all 0.5s ease-in;
  z-index: 99;
}
.cards--text-fancy {
  padding: 32px 20px;
}
.cards--text-fancy:hover .cards__content-hidden-fancy,
.cards__item:focus .cards--text-fancy .cards__content-hidden-fancy,
.cards__item:focus-within .cards--text-fancy .cards__content-hidden-fancy{
  visibility: visible;
  opacity: 1;
  height: 100%;
  transition: all 0.5s ease-in; 
  z-index: 99;
}
.cards--text-fancy .cards__content-title-fancy {
  transform: translateY(290px);
  transition: all 0.3s ease-in-out; 
  z-index: 99;
}
.cards--text-fancy:hover .cards__content-title-fancy,
.cards__item:focus .cards--text-fancy .cards__content-title-fancy,
.cards__item:focus-within .cards--text-fancy .cards__content-title-fancy{
  transform: translateY(0px);
  transition: all 0.3s ease-in-out; 
  z-index: 99;
}

.cards__content-text-on-image:hover .cards__content-title-fancy,
.cards__item:focus .cards__content-text-on-image .cards__content-title-fancy,
.cards__item:focus-within .cards__content-text-on-image .cards__content-title-fancy{
  transform: translateY(0px);
  transition: all 0.3s ease-in-out; 
  z-index: 99;
}

.cards__item:hover:before,
.cards__item:focus:before,
.cards__item:focus-within:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 65, 148, 0.60); 
  z-index: 5;
}
.cards__content {
  z-index:99;
}
@media(max-width:992px){
  .cards--text-on-hover .cards__item{
    align-items:center;
  }
  .cards__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff
    z-index: 5;
  }
  .cards--text-fancy .cards__content-title-fancy {
    transform: translateY(0px);
    transition: all 0.3s ease-in-out; 
    z-index: 99;
  }
  .cards--text-fancy .cards__content-hidden-fancy {
    visibility: visible;
    opacity: 1;
    height: 100%;
    transition: all 0.5s ease-in; 
    z-index: 99;
  }
}
/** End Text on hover */

.cards--center-vertical .cards__content{
  height:revert;
}
.cards--center-vertical .cards__item{
  justify-content:center;
}

