.heading_custom {
    margin: 100px auto 0;
    text-align: center;
    max-width: 550px;
}

.media-image a {
    position: relative;
    min-height: 387px;
    display: inline-block;
    width: 100%;
}

.media-image a img {
    position: absolute;
    max-width: max-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    min-height: 387px;
    width: max-content;
}

.media-grid {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	.media-image a img,
	.media-image a{
		min-height: 250px;
	}
	.media-grid{
		padding: 0 15px;
	}
}

.media-item {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-image img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #eee;
}

.media-content {
    padding: 20px 0;
}

.media-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--Secondary-Blue, #646D8C);
    font-family: "Lexend Deca";
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    text-transform: uppercase;
}

.media-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.media-title a {
    text-decoration: none;
    color: #141224;
    font-family: "Cormorant Infant";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.48px;
}

.media-excerpt {
    margin-bottom: 15px;
    overflow: hidden;
    color: #141224;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    font-family: "Lexend Deca";
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: 30px;
    /* 150% */
}

.media-read-more {
    text-decoration: none;
    color: #937737;
    font-family: "Lexend Deca";
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.media-read-more:hover {
    text-decoration: none;
    opacity: .9;
    color: #937737; 
}
@media screen and (max-width:991px){
	.media-grid{
		padding: 0;
	}
	.media-excerpt{
		font-size: 16px;
		line-height: 24px;
	}
	h2.heading_custom span{
		font-size: 26px;
	}
	h2.heading_custom{
		font-size: 32px;
		margin-top: 80px;
	}
}