    .cursor{
        cursor:pointer;
    }
    /* For Related Blogs */
    .recent_post .blog-card {
       border: 2px solid #333;
       border-radius: 12px;
       -webkit-transition: .2s;
       transition: all .2s ease;
       cursor: pointer;
       padding:0px !important;
    }
    .recent_post .blog-card .blog-img-div{
        position: relative;
        height:150px;
    }
    .recent_post .blog-card .blog-img-div .blog-img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
        vertical-align: middle;
    }
    .recent_post .blog-card .blog-title-div {
        background-color: #000000;
        backdrop-filter: blur(5px);
        border-radius: 0 0 12px 12px;
        z-index: 1;
        overflow: hidden;
        position: relative;
    }
    .recent_post .blog-card .blog-title-div .blog-title-bg-img
    {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-filter: blur(5px);
        filter: blur(5px);
        z-index: -1;
    }
    .recent_post .blog-title-text
    {
        z-index: 1;
        padding: 16px;
        position: relative;
        min-height: 115px;
    }
    .recent_post .blog-card .blog-title-div .blog-date {
        color:rgb(255 255 255 / 80%);
        margin-bottom: 5px;
        font-size: 15px;
        /* font-family: Inter !important; */
    }
    .recent_post .blog-card .blog-title-div .blog-title
    {
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        margin: 0;
        text-align: left;
    }
    .recent_post .blog-card .blog-title-div::before
    {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #1a1a1acc;
        background: #000000;
    }
    .recent_post .blog-card:hover {
        -webkit-box-shadow: rgba(255, 92, 138, .2) 0 7px 29px 0;
        box-shadow: rgba(255, 92, 138, .2) 0 7px 29px 0;
    }
    .recent_post .truncate-2-lines {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .recent_post .blogs-title{
        font-size:72px !important;
    }
    .recent_post .blogs-subtitle{
        max-width: 500px;
        margin:0 auto;
    }
    .recent_post .page-title-container{
        border-bottom:0px;
        padding: 25px 0px 60px 0px;
    }
    .recent_post .recent_post_inner h2 {
        font-size: 50px;
        margin: 15px;
        color: #edeaf1;
        font-weight: 600;
        letter-spacing: .1px;
        text-align:center;
    }
    .recent_post .recent_post_inner>h4 {
      margin-top: 0;
      max-width: 460px;
      font-size: 20px;
      margin-left: auto;
      margin-right: auto;
      color: #adaab0;
      font-weight: 200;
      letter-spacing: .2px;
      text-transform: none;
      line-height: 1.4;
      text-align:center;
    }
    #view-all {
        background-color: var(--primary-color);
        color: var(--text-color);
        border: 0px;
    }
    .mb-6{
        margin-bottom: 6rem !important;
    }
    /* Hide arrows on screens smaller than 768px */
    @media (max-width: 767px) {
        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }