.catMain {
    position: relative;
    height: 390px;
    overflow: hidden
}

.catMain__bgWrap {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.catMain__bgWrap img {
    position: relative;
    z-index: 1
}

.catMain__bgWrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/gradient-banner.png) 0 0/cover;
    z-index: 2;
    width: 100%;
    height: 100%
}

.catMain__wrap {
    color: #fff;
    position: relative;
    z-index: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.blog {
    padding-top: 100px;
    padding-bottom: 50px;
    z-index: 1;
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 45px
}

.blog__searchForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-bottom: 55px
}

.blog__input {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #eae9e9;
    color: #ccc;
    padding: 10px 0;
    text-indent: 10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    width: 100%
}

.blog__button {
    right: 0;
    top: 0;
    color: #fff;
    font-size: 20px;
    height: 46px;
    position: relative;
    width: 50px;
    cursor: pointer;
    background-color: #fb1a49
}

.blog__button:hover {
    background-color: #2f2f2f
}

.blog__recentTitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #2f2f2f
}

.blog__recentTitle::after {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    z-index: 0;
    background: #fb1a49
}

.postCard {
    margin-bottom: 90px;
    -webkit-box-shadow: 0 0 80px 0 rgba(47, 47, 47, .1);
    box-shadow: 0 0 80px 0 rgba(47, 47, 47, .1);
    padding: 30px
}

.postCard:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.postCard__img {
    overflow: hidden;
    margin-bottom: 20px
}

.postCard__img img {
    max-width: 100%;
    height: auto;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.postCard__title {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: #2f2f2f;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
    display: block
}

.postCard__text {
    margin-bottom: 26px;
    font-size: 16px;
    font-weight: 300;
    color: #2f2f2f;
    line-height: 26px
}

.postCard__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.postSidebarCard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.postSidebarCard__content {
    padding: 15px
}

.postSidebarCard__img img {
    max-width: 100%;
    height: auto;
}

.postSidebarCard__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #2f2f2f;
    display: block
}

.postSidebarCard__date {
    color: #fb1a49;
    font-weight: 500;
    font-size: 14px
}

.blog__posts a{
/* 	text-decoration:underline; */
	text-decoration-color: #fb1a49;
	color: #fb1a49;
}

@media only screen and (min-width: 767px){
	.layout{
		padding-bottom: 150px;
	}
}
@media only screen and (max-width: 767px){
    .blog{
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }
}
 