.titleBar {
    text-align: center;
    padding: 24px;
}

.blog .container {
    margin: 0 80px 80px 80px;
    ;
}

.blog .container .blogSection .blogRow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog .container .blogSection .blogRow .contentBox {
    background-color: #fff;
    padding: 24px;
    box-shadow: 0.2px 0.2px 5px rgb(0 0 0 / 20%);
    display: flex;
    justify-content: space-between;
    width: 32.5%;
    flex-direction: column;
    transition: all .3s;
}

.blog .container .blogSection .blogRow .contentBox:hover {
    box-shadow: 0.2px 0.2px 10px rgb(0 0 0 / 60%);
    transform: translateY(-5px);
}

.blog .container .blogSection .blogRow .contentBox .contentImg img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px 8px 0 0;
    height: auto;
    border: 1px solid #474444;
}

.blog .container .blogSection .blogRow .contentBox .contentTitle {
    /* height: 64px; */
    margin-bottom: 10px;
}

.blog .container .blogSection .blogRow .contentBox .contentBtn .tertiaryBtn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    width: 100%;
    padding: 16px 24px;
    border-radius: 0 0 8px 8px;
}

.blog .container .blogSection .blogRow .contentBox .contentBtn .tertiaryBtn:hover i {
    transform: scale(1.5, 1);
}

.blog .container .blogSection .blogRow .contentBox .contentBtn .tertiaryBtn i {
    padding-left: 6px;
    transition: .3s;
}

@media (max-width: 767px) {

    .blog .container .blogSection .blogRow {
        width: 100%;
    }

    .blog .container .blogSection .blogRow .contentBox {
        width: 100%;
        padding: 16px;
    }

    .blog .container .blogSection .blogRow .contentBox .contentTxt {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .blog .container .blogSection .blogRow .contentBox .contentTxt h2 {
        margin-bottom: 10px;
    }

    .blog .container .blogSection .blogRow .contentBox .contentTxt .contentBtn .myBtn {
        width: 150px;
        text-align: center;
        display: block;
        margin: 0 auto;
        float: unset;
    }
}