﻿/*Banner*/

.bannerArea {
    padding: 0;
    position: relative;
}

.bannerImage img {
    height: 416px;
    object-fit: cover;
}

.bannerTextArea {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 1;
    row-gap: 16px;
}

.bannerTitle {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.bannerDescription {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 540px;
}

.bannerOverlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(22deg, #000000d4, transparent);
    z-index: 0;
}


/*Breadcrumb*/

.breadCrumb
{
    margin-top: 24px;
    margin-bottom: 24px;
}




.blogListArea {
    margin-top: 48px;
    margin-bottom: 96px;
}

.blogImage img {
    height: 264px;
    object-fit: cover;
    border-radius: 16px;
}

.blogTitle {
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 19px;
    padding: 0 4.5px;
}

.blogDescription {
    color: #475467;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
    padding: 0 4.5px;
}

.blogListRow {
    row-gap: 64px;
}

.blogLink
{
    text-decoration: none;
}


/*Pagination*/

.pagination {
    margin-top: 64px;
    column-gap: 8px;
}

    .pagination .page-item .page-link {
        border-radius: 8px;
        color: #383838;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

        .pagination .page-item .page-link:focus {
            background-color: unset;
            box-shadow: none;
        }

        .pagination .page-item .page-link:hover {
            border: 1px solid #00A4E7;
            background: #E6F6FD;
            transition: .3s;
        }


    .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
        border: 1px solid #D9D9D9;
        background: #FAFAFA;
        color: #252525;
    }

        .pagination .page-item:first-child .page-link i, .pagination .page-item:last-child .page-link i {
            line-height: unset;
        }

    .pagination .active > .page-link, .pagination .page-link.active {
        color: #fff;
        background-color: #00A4E7;
        border-color: #00A4E7;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 142.857% */
    }

        .pagination .active > .page-link:hover, .pagination .page-link.active:hover {
            color: #fff;
            background-color: #00A4E7;
            border-color: #00A4E7;
        }