.blog-section{
    margin: 7px auto;
}

.blog-section .header-text-area {
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 53px;
}

.header-text-area h1 {
    font-size: min(8vw, 85px);
    font-weight: 600;
    color: #0E2368;
}


.header-text-area p{
    color: #0E2368;
    width: 80%;
    text-align: justify;
    font-size: min(1vw,16px);
}

.blog-section .header-img-area img{
    width: 96%;
    height: 100%;
}

.blog-section .card-section{
    padding: 10rem 4rem;
}

.blog-section .card{
    height: min(37vw,565px);
    margin-bottom: 40px;
    position: relative;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 12px -5px rgb(37 51 66 / 50%);
    box-shadow: 0 2px 12px -5px rgb(37 51 66 / 50%);
    -webkit-box-pack: start;
    z-index: 1;
    transition: 1s;
}

.blog-section .card.case-card{
    width: 90%;
    max-width: 1300px;
    flex-direction: row;
}

.blog-section .card:hover{
    box-shadow: -4px 15px 8px rgba(38, 38, 38, 0.2);
    top: -28px;
    transition: 0.5s;
}

.card-img{
    padding: 0;
}

.card-img img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.card-right-side{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card .blog-card-text{
    padding: 30px 30px 0px;
}

.card .blog-card-text h3 a{
    color: #0E2368;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 5px;
}

.card .blog-card-text p {
    color: #8e9fad;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-align: justify;
}

.card .blog-card-footer{
    position: relative;
    padding: 0 30px;
    height: 54px;
    width: 100%;
    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;
    font-size: 12px;
    font-weight: 500;
    color: #5f6b76;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.card .blog-card-footer:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 1px;
    background-color: #ecf0f2;
    width: 100%;
}

.card .blog-card-footer a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: #0E2368;
    font-size: 16px;
    position: relative;
    letter-spacing: 0.7px;
}

.card .blog-card-footer a:hover{
    letter-spacing: 1.2px;
    transition: 0.3s;
}

.blog-page {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    width: 50%;
    margin: 40px auto;
}

.blog-page img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.blog-page .date {
    display: flex;
    align-items: flex-start;
    width: 100%;
    color: #5f6b76;
}

.blog-page .date span{
    padding-left: 5px;
}

.blog-page .title {
    font-weight: 600;
    color: #0E2368;
}

.blog-page .text {
    color: #606060;
    text-align: justify;
    font-size: 18px;
}

.blog-page .text p a{
    text-decoration: none;
    color: #38B6FF;
}

.blog-page .text p a:hover{
    text-decoration: underline;
}

@media (max-width:700px) {
    .blog-page{
        width: 80%;
    }
    .blog-page .title{
        font-size: 27px;
    }
}
@media (min-width:991.99px) {
    .blog-section .card.case-card {
        height: 250px;
    }
}