/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
a {
    font-family: "GeneralSans-Regular";
}
.section-blog {
    padding: 5% 0% 3%;
    max-width: 100%;
    text-align: center;
}
.section-blog h2 {
    font-family: "GeneralSans-Semibold";
}
.section-blog p {
    font-family: "GeneralSans-Regular";
}
.recent-blog-posts .post-box {
    transition: 0.3s;
    height: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    object-fit: contain;
    max-width: 100%;
    height: 250px;
}

.recent-blog-posts .post-box .post-img img {
    transition: 0.5s;
    object-fit: cover;
    width: 100%;
    height: 250px;
}

.recent-blog-posts .post-box .meta {
    margin-top: 15px;
}

.recent-blog-posts .post-box .meta .post-date {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-primary);
}

.recent-blog-posts .post-box .meta .post-author {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-secondary);
}

.recent-blog-posts .post-box .post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    font-family: "GeneralSans-Semibold";
    margin: 18px 0 10px 0;
    position: relative;
    transition: 0.3s;
}

.recent-blog-posts .post-box p {
    margin: 15px 0 0 0;
    font-family: "GeneralSans-Regular";
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
}

.recent-blog-posts .post-box .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    margin-top: 15px;
}

.recent-blog-posts .post-box .readmore i {
    line-height: 0;
    margin-left: 4px;
    font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
    color: var(--color-primary);
}

.recent-blog-posts .post-box:hover .post-img img {
    transform: scale(1.1);
}
.recent-blog-posts .post-box .arrow-left {
    margin-top: 10px;
}
.recent-blog-posts .post-box .arrow-left .for-the-blog {
    margin-left: 6px;
    font-size: 14px;
}
/*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
