/*Banner*/

.page-banner {
    position: relative;
}

    .page-banner, .page-banner .page-banner-image, .page-banner .page-banner-image img {
        height: 400px;
        object-fit: cover;
    }

.page-banner-image {
    position: relative;
}

    .page-banner-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00000033;
    }

.page-banner-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    text-align: left;
    color: #fff;
    padding-top: 137px;
}

/*Banner*/

/*Page Layout*/

.page-padding
{
    padding-top: 102px;
    padding-bottom: 102px;
}

/*Page Layout*/


.page-content-area {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: Poppins;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    color: #1F1F1F;
}

.blog-card-link
{
    text-decoration: none;
}

.blog-card {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.blog-card-text-and-button {
    display: flex;
    flex-direction: column;
    row-gap: 42px;
}

.blog-card-text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.blog-card-title {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    color: #011D3E;
}

.blog-card-description {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #232021;
}

.blog-card-button {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    display: flex;
    align-items: center;
    color: #232021;
    column-gap: 10px;
}

.blog-card-button i {
    font-size: 14px;
    color: #034694;
}
    .blog-card-button svg path {
        fill: #034694;
    }

    .blog-detail-area {
        display: flex;
        flex-direction: column;
        row-gap: 46px;
    }

.blog-detail-title {
    font-family: Poppins;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
    color: #1F1F1F;
}

.blog-detail-description {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #4F4D4D;
}

.last-blogs {
    padding-left: 24px;
    border-left: 1px solid #E9E9E9;
    height: 100%;
}

@media only screen and (max-width: 1199px)
{
    .last-blogs
    {
        padding-left: 0;
        border-left: none;
    }
}