.five-across {
    max-width: 1200px;
    margin: 0 auto 30px;
}    
.five-across .flex-cont {
    display: flex;
    flex-direction: column;
}
.five-across .title-cont h6 {
    text-align: center;
    margin-bottom: 20px;
}
.five-across .item {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    position: relative;
}
.five-across .item .img-cont {
    overflow: hidden;
 
}
.five-across .item .content{
    padding: 20px 0;
}
.five-across .item .content h2{
    font-family: var(--alternate-gothic-atf-font-family);
    color: #204a59;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
}
.five-across .item .content .desc{
    font-family: var(--proxima-nova-regular-font-family);
    line-height: 20px;
}
.five-across .read-more{
	text-transform: capitalize;
	color:  #3d77ab;
	letter-spacing: 1px;
}
.five-across .read-more i{
	color: #3d77ab;
	padding-left: 2px;
    font-size: 19px;
}
.five-across .item .img-cont img {
    display: block;
    width: 100%;  
}
.five-across .item .title {
    padding: 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.five-across .item .title h6 {
    color: white;
    margin-bottom: 0;
    text-align: center;
    font-family: var(--proxima-nova-regular-font-family);
}
.five-across .feat-badge {
    position: absolute;
    right:0;
    font-family:var(--alternate-gothic-atf-font-family);
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    color: white;
    letter-spacing: 1.6px;
    padding: 8px 13px 4px;
    background-color: #3d77ab;
}

@media (min-width: 641px) {
    .five-across .flex-cont {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .five-across .item {
        width: calc(50% - 20px);
    }
}
@media (min-width: 1025px){
    .five-across .flex-cont{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .five-across .item .content h2 {
        font-family:var(--alternate-gothic-atf-font-family);
        color: #204a59;
        font-weight: 400;
        font-size: 28px;
        line-height: 32px;
    }
    .five-across .item{
        max-width: 288px;
        margin: 0 5px 10px;
    }
    .five-across .item .img-cont img {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
 
}