.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;}
    
  .lc-nav-header * p, .lc-header * p, .lc-wrapper * p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
#inner-wrapper * {box-sizing:border-box}

.alternating-blocks {
    width: 100%;
}

.alternating-blocks a{
    background-color: #314C89;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin:auto;
    margin-top: 50px;
    transition: all .3s ease-in-out;
    text-decoration: none;
    display: block;
    width: fit-content;
    border: 1px solid #314C89;
}

.alternating-blocks a i {
    margin-left: 10px;
}

.alternating-blocks a:hover{
    background-color: #F7F7F7;
    color: #314C89;
  }

.ab-holder{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.ab-content-left, .ab-content-right{
    width: 48%;
    margin: 10px 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.ab-content-left h2, .ab-content-right h2{
    text-align: left;
}
.ab-content-left img, .ab-content-right img{
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
}

/* This is a hack to fix the image height issue in Safari */
@supports (-webkit-appearance: none) {
    .ab-content-left img, .ab-content-right img {
        height: auto;
    }
}


@media (width <= 850px) {
    .ab-content-left, .ab-content-right{
        width: 100%;
    }
    .ab-holder.reverse-col{
        flex-direction: column-reverse;
    }
    .ab-content-left img, .ab-content-right img{
        width: 100%;
        height: auto;
        object-fit: fill;
    }
  }
