

/*Blogs section*/

.blogs-section {
    background: #fff;
}

.blogs-header {
    width: max-content;
    border-bottom: 2px solid #F1592B;
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
}

.blogs-sub-header {
    font-size: 40px;
    font-weight: 400;
    color: #4A4C5E;
    max-width: 50%;
    line-height: 1.4;

    margin-top: 20px;
}

.blogs-link {
    width: 165px;
    height: 50px;
    background: #1075BD;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
    border-radius: 6px;
}

.blog-large-card {
    height: 602px;
}

.blog-large-img {
    width: 100%;
    height: 400px;


}

.blog-large-img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    font-size: 14px;
    color: #98A393;
}

.blog-large-header {
    font-size: 30px;
    font-weight: 500;
}

.blog-large-desc {
    color: #8E8E8E;
    font-size: 16px;
}

.blog-small-card {
    height: 144px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.blog-small-img {
    width: 236px;
    height: 144px;
}

.blog-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.blog-small-text {
    font-size: 24px;
    font-weight: 500;
}

.blogs-box .line-container {
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 40px 0;
}

.blogs-box .dot {
    width: 8px;
    height: 8px;
    background-color: #FFE8E1;
    border-radius: 50%;
}

.blogs-box .line {
    width: 100%;
    height: 2px;
    background-color: #FFE8E1;
}

@media(max-width:575px) {
    .blogs-header {
        font-size: 30px;
    }

    .blogs-sub-header {
        font-size: 20px;
        max-width: 99%;
        margin-bottom: 20px;
    }

    .blogs-line {
        flex-direction: column;
    }

    .blog-large-img {
        height: 250px;
    }

    .blog-large-header {
        font-size: 20px;
    }

    .blog-large-card {
        height: unset !important;
        margin-bottom: 30px;
    }

    .blog-small-img,
    .blog-small-img img {
        width: 70px;
        height: 70px;
    }

    .blog-small-text {
        font-size: 17px;
    }

    .blog-small-card {
        height: unset !important;
    }
}

@media(min-width:575px) and (max-width:991px) {
    .blogs-header {
        font-size: 40px;
    }

    .blogs-sub-header {
        font-size: 20px;
        max-width: 99%;
        margin-bottom: 20px;
    }

    .blogs-line {
        flex-direction: column;
    }

    .blog-large-img {
        height: 250px;
    }

    .blog-large-header {
        font-size: 20px;
    }

    .blog-large-card {
        height: unset !important;
        margin-bottom: 30px;
    }

    .blog-small-img,
    .blog-small-img img {
        width: 70px;
        height: 70px;
    }

    .blog-small-text {
        font-size: 17px;
    }

    .blog-small-card {
        height: unset !important;
    }
}


@media(min-width:992px) and (max-width:1199px) {
    .blogs-header {
        font-size: 40px;
    }

    .blogs-sub-header {
        font-size: 30px;
        max-width: 70%;
        margin-bottom: 20px;
    }

    .blog-large-img {
        height: 250px;
    }

    .blog-small-img,
    .blog-small-img img {
        width: 100px;
        height: 70px;
    }

    .blog-small-text {
        font-size: 17px;
    }

    .blog-large-header {
        font-size: 20px;
    }

    .blog-small-card {
        height: unset !important;
    }

    .blog-large-card {
        height: unset !important;
        margin-bottom: 30px;
    }
}
.blog-large-card,.blog-small-card{
    text-decoration: none;
    color: #000;
}


