/* blogs */
.Blogs__Section {
    padding: 40px 0;
}

.Blogs__Section h1 {
    color: #0a66c2;
    font-weight: 700;
    padding-bottom: 20px;
}

.Blogs__tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #f9f2f2;
}

.Blog__tabs {
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: #8C8C8C;
    font-size: 15px;
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
}

.Blog__tabover {
    display: none;
}

.Blog__tabover.active {
    display: block;
}

.Blog__tabs.active {
    color: #003a70;
    border-bottom: 3px solid #124395;
}

.Blog__tabs__contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* All */
.Blog__tabover__Se {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 70px 10px 0;
}

.Blogs__ConGrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
}

.Blogs__left__Container {
    position: relative;
    width: 800px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: transparent;
    transition: transform 0.3s ease;
}

.BlogsDn_Contents__left_B {
    width: 800px;
    height: 400px;
    overflow: hidden;
}

.Blogs__left__Container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.Blogs__left__Container:hover img {
    transform: scale(1.1);
}

.Blogs__left__Container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, rgb(0 0 0 / 100%), transparent);
}

.Blogs__left__Container:hover .BlogsDn_Contents__left h3 {
    background: #ffc800;
    color: #333;
}

.Blogs__left__Container:hover .BlogsDn_Contents__left p {
    opacity: 1;
}

.Blogs__left__Container:hover::after {
    /* background: linear-gradient(to top, rgb(152 171 226), transparent); */
    height: 30%;
    background: linear-gradient(to top, rgb(23, 114, 170), transparent);
    opacity: 0.9;
}

.Blogs__left__Container:hover .BlogsDn_Contents__left span {
    color: #36a5ff;
    font-weight: 500;
}

.BlogsDn_Contents {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 24px;
    z-index: 2;
    padding: 10px 20px 15px 35px;
    width: 100%;
}

.BlogsDn_Contents .BlogsDn_Contents__left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.BlogsDn_Contents .BlogsDn_Contents__left span,
p,
h3 {
    padding: 2px 5px;
    border-radius: 2px;
}

.BlogsDn_Contents .BlogsDn_Contents__left span {
    color: #55c0ed;
    font-size: 13px;

}

.BlogsDn_Contents .BlogsDn_Contents__left h3 {
    font-size: 27px;
    font-weight: 500;
    max-width: 730px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: transparent;
}

.BlogsDn_Contents .BlogsDn_Contents__left p {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.8;
    max-width: 730px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #fff;
}

/* .BlogsDn_Contents__right {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000000;
    flex-shrink: 0;
    overflow: hidden;
    text-align: center;
    line-height: 28px;
    opacity: 0.6;
}

.Blogs__left__Container:hover .BlogsDn_Contents__right {
    opacity: 1;
    background: #FFF;
    cursor: pointer;

}

.Blogs__left__Container:hover .BlogsDn_Contents__right svg {
    fill: #333;
    cursor: pointer;
}

.BlogsDn_Contents__right svg {
    fill: #ccc;
} */

.Blogs__ConRight h2 {
    font-size: 28px;
    font-weight: 700;
    /* border-bottom: 1px solid #f9f2f2; */
    border-bottom: 2px solid #0a66c2;
    padding-bottom: 15px;
    color: #4e4e4e;
}

.Blogs__ConRight_flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0 0;
}

.Blogs__ConRight_flex .Blogs__ConRight_Colle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    border-bottom: 1px solid #e7e4e4;
    padding-bottom: 10px;
}

.Blogs__ConRight_flex .Blogs__ConRight_Colle:last-child {
    border: none;
}

.Blogs__ConRight_Colle h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 25px;
    width: 100%;
}

.Blogs__ConRight_flex .Blogs__ConRight_Colle:hover h3 {
    text-decoration: underline;
}

.Blogs__Rsub_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.Blogs__Rsub_flex .Heading {
    font-size: 11px;
    background: #f4f4f4;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #333;
}

.Blogs__Rsub_flex .Blogs-Time {
    font-size: 12px;
    color: #959393;
    font-weight: 500;
}

.Blogs__ConRight_flex .Blogs__ConRight_Colle:hover .Heading {
    background: #eef1fe;
    color: #0a66c2;
}

.Blogs_TOPA {
    padding: 2rem 0 5rem;
}

.Blogs_TpAt {
    border-bottom: 1px solid #f9f2f2;
}

.Blogs_TpAt h2 {
    border-bottom: 3px solid #5c5858;
    width: 210px;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 10px;
    color: #4e4e4e;
}



.MidBlogs__ConRight_flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 30px 0px 0;

}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
    background: transparent;
    cursor: pointer;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.4s ease;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ImageWrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.MidBlogs__ConRight_Colle:hover .MidBlogs__ImageWrapper img {
    transform: scale(1.1);
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle:hover img {
    transform: scale(1.11);
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle:hover {
    background: #f9f9f9;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 25px;
    max-width: 100%;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins .MidBlogs__Rsub_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins .MidBlogs__Rsub_flex .BlogsDn_Contents__right {
    opacity: 0;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle:hover .MidBlogs__Rsub_flex .BlogsDn_Contents__right {
    opacity: 0.6;

}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins .MidBlogs__Rsub_flex .MidBlogs__Rsub_flex_sub {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #5e5b5b;
    font-weight: 600;
    font-size: 12px;
}

.MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ConRight__Ins .MidBlogs__Rsub_flex .MidBlogs__Rsub_flex_sub .Heading {
    color: #0a66c2;
}



/* career */
.BlogsC__ConGrid_Sf {
    height: 550px;
    margin: 1rem 0 0rem;
}

.BlogsC__Section {
    background: transparent;
    background: linear-gradient(90deg, #00263a 80%, #ffffff 20%);
    height: 500px;
    border-radius: 3px;
}

.BlogsC__ConGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 50px 0;
}

.BlogsC__ConGrid .BlogsC__Left__BG {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.BlogsC__ConGrid .BlogsC__Left__BG img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.BlogsC__Right__Container {
    display: flex;
    /* justify-content: center; */
    justify-content: start;
    align-items: center;
    padding: 30px 20px 30px 60px;
}

.BlogsC__ConGrid .BlogsC__Right__Contents {
    color: #fff;

}

.BlogsC__ConGrid .BlogsC__Right__Contents span {
    font-size: 12px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    color: #ffc800;
    text-decoration: underline;
}

.BlogsC__ConGrid .BlogsC__Right__Contents h3 {
    padding: 15px 0 40px;
    font-size: 35px;
}

/* 
#Career {
    scroll-margin-top: 100px;
    scroll-behavior: smooth;
} */


.BlogsC__Right__Contents a {
    position: relative;
    display: inline-block;
    color: #fff;
    /* text-decoration: underline; */
    padding: 10px 20px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    background: #01334e;


}

.BlogsC__Right__Contents a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #0a66c2;
    z-index: -1;
    transition: width 0.4s ease;

}

.BlogsC__Right__Contents a:hover::before {
    width: 100%;
}

.BlogsC__Right__Contents a:hover {
    color: #fff;
    /* text-decoration: none; */
}

.BlogsC__ConGrid:hover .BlogsC__Right__Contents a::before {
    width: 100%;
}



/* highligts4 */
.blog__back {
    background: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    color: #0a66c2;
    border: 1px solid transparent;
    text-transform: capitalize;
    cursor: pointer;
}

.blog__back:hover {
    background: #eef1fe;
}

.Blogs__Section_Banner {
    height: 730px;
}

.Blogs__Section_BGs {
    background: url(../../images/blogs__inside/Banner_Ins_01.png) center / cover no-repeat;
    width: 100%;
    min-height: 340px;
    height: 550px;
    padding: 60px 0;
}

.Blogs__Section_Banner .breadcrumb__Nav .breadcrumb-item {
    font-weight: 500;
}

.Blogs__Section_Banner .breadcrumb__Nav .breadcrumb-item.active {
    color: #dbdbdb;
}

.Blogs__Section_Banner .breadcrumb-item a {
    color: #fff;
}

.Blogs__Section_Banner .breadcrumb-item a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.Blogs__Section_Banner .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.Blogs__Section_Banner .breadcrumb__Nav .breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    padding: 0 0.5rem;
    color: #ccc;
}

.BlogsL__Wrapper {
    position: relative;
    min-height: 500px;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}

.Blogs__Section_BGs__Inner {
    position: relative;
}

.Blogs__Section_BGs__Inner__Heading {
    text-align: left;
    max-width: 500px;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.Blogs__Section_BGs__Inner__Heading .Blogs__Section_BGs__Inner__Heading__Text h1 {
    color: #fff;
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
    padding-top: 1rem;
}

.Blogs__Section_BGs__Inner__Heading .Blogs__Section_BGs__Inner__Heading__Text span {
    background: #ffc800;
    color: #333;
    padding: 3px 5px;
    border-radius: 4px;
    font-weight: 500;
}

.Blogs__Section_BGs__Inner__Heading__Details {
    display: flex;
    gap: 10px;
    padding-top: 20px;
    flex-wrap: wrap;

}

.Blogs__Section_BGs__Inner__Heading__Details .Blog_Left_Details_Colle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    /* color: #fff; */
    color: #ededed;
    font-weight: 400;
}

.Blogs__Section_BGs__Inner__Heading__Details .Blog_Left_Details_Colle svg {
    width: 13px;
    height: 13px;
    /* fill: #fff; */
    fill: #94caff;
    flex-shrink: 0;
    overflow: hidden;
}

.Blogs__Section_BGs__Inner__Heading__Image {
    position: absolute;
    /* position: relative; */
    right: 25px;
    top: 120px;
    width: 700px;
    height: 450px;
    transition: transform 0.3s ease-out;
}

.Blogs_Section_Inner_BGS {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 100%;
    height: 100%;
    background: #ffc800;
    border-radius: 10px;
    z-index: 1;
}

.Blogs__Section_BGs__Inner__Heading__Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.Blogs__Section_BGs__Inner__Heading__Image img,
.Blogs_Section_Inner_BGS {
    animation: floatUpDown 4s ease-in-out infinite;
}


.Blog__mids {
    width: 70%;
    margin: 0 auto;
}

.Blog__mids p br,
h1 br,
h2 br,
h3 br,
h4 br,
h5 br,
h6 br,
ol br,
ul br,
ol li br,
ul li br {
    display: none !important;
}

ul li:empty,
ol li:empty {
    display: none !important;
}

ul li:has(> br:only-child),
ol li:has(> br:only-child) {
    display: none !important;
}

.Blog__mids img {
    margin: 10px 0;
    border-radius: 5px;
}

.Blog__mids h1 {
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .Blog__mids h1 {
        font-size: 28px;
    }

    .Blog__mids h2 {
        font-size: 20px;
    }
}

.Blog__mids h1 strong {
    font-weight: 600;
}

.Blog__mids h2 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    padding: 10px 0;
}

.Blog__mids h2 strong {
    font-weight: 600;
}

.Blog__mids h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.Blog__mids h3 strong {
    font-weight: 600;
}

.Blog__mids h4,
.Blog__mids h5,
.Blog__mids h6 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}

.Blog__mids h4 strong,
.Blog__mids h5 strong,
.Blog__mids h6 strong {
    font-weight: 500;
}

.Blog__mids ul,
.Blog__mids ol {
    margin: 15px 0;
    padding-left: 40px;
}

.Blog__mids ul li {
    list-style-type: decimal;
    list-style: decimal;
    padding-bottom: 5px;
}

.Blog__mids ol li {
    list-style-type: disc;
    list-style: disc;
    padding-bottom: 5px;
}

.Blog__mids__grids {
    display: grid;
    /* grid-template-columns: 300px 1fr; */
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 3rem 0 7rem;
}

.section-heading-line {
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding-bottom: 20px; */
    /* border-left: 2px solid #0a66c2; */
}

.section-heading-line h4 {
    font-size: 15px;
    color: #0a66c2;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    /* padding-left: 10px; */

}

.section-heading-line::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #dddddd;
}

.Blog__mids__grids .Blog_Left_Details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-left: 10px;
}

.Blog__mids__grids .Blog_Left_Details .Blog_Left_Details_Colle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.Blog__mids__grids .Blog_Left_Details .Blog_Left_Details_Colle svg {
    flex-shrink: 0;
}

.Blog__mids__grids .Blog_Left_Details .Blog_Left_Details_Colle:last-child {
    border: none;
    padding: 0;
}

.Blog__mids__grids .Blog_Left_Details .Blog_Left_Details_Colle span {
    text-transform: uppercase;
    font-weight: 400;
    color: #a49f9f;
}

.Blog__mids__grids .Blog_Left_Details .Blog_Left_Details_Colle h4 {
    color: #333;
    font-size: 15px;
    padding-top: 5px;
}

.Blog_Right_Description .Blogs_Ins_Mid {
    display: block;
    margin: 0;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid p {
    padding: 0;
    color: #353434;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid h2 {
    padding: 30px 0 20px;
    font-weight: 600;
    font-size: 30px;
    color: #333;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a4a4a;
    padding-top: 20px;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid ul {
    list-style: circle;
    padding: 20px 0px 30px 40px;
    list-style-type: disc;
    color: #353434;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid ul li {
    list-style-type: disc;
    padding: 4px 0;
    color: #353434;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid .Left__Blogs_Ins_Mid_BG {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.Blogs_Ins_Mid .Left__Blogs_Ins_Mid .Left__Blogs_Ins_Mid_BG img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.Blogs__Related_Art {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Blogs__Related_Art h2 {
    font-size: 24px;
    color: #4e4e4e;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;

}

.Blogs__Related_Art::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #dddddd;
}

.Blogs_T__Inner_ .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle {
    width: auto;
}

.Blogs_T__Inner_ .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ImageWrapper {
    width: auto;
    height: 180px;
    border-radius: 10px;
}

@media (max-width: 1440px) {}

@media (max-width: 1390px) {
    .Blogs__Section_BGs {
        height: 500px;
    }

    .Blogs__Section_BGs__Inner__Heading {
        padding: 1rem 0;
    }

    .Blogs__Section_BGs__Inner__Heading__Image {
        height: 330px;
        width: 500px;
    }

    .Blogs__Section_BGs__Inner__Heading__Image img {
        width: 100% !important;
        height: 100% !important;
    }

    .Blogs__Section_BGs__Inner__Heading .Blogs__Section_BGs__Inner__Heading__Text h1 {
        font-size: 28px;
        max-width: 400px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .Blogs__ConGrid {
        grid-template-columns: 1fr;
    }

    .Blogs__left__Container,
    .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle,
    .BlogsDn_Contents__left_B {
        width: auto;
    }

    .MidBlogs__ConRight_flex {
        grid-template-columns: 1fr 1fr;
    }

    .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ImageWrapper {
        height: 200px;
    }

    .BlogsC__ConGrid {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        display: block;
        position: relative;
    }

    .BlogsC__ConGrid::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        background: linear-gradient(to top, rgb(0 0 0 / 100%), transparent);
        border-radius: 10px;
    }

    .BlogsC__Section {
        background: transparent;
        height: unset;
    }

    .BlogsC__ConGrid .BlogsC__Right__Contents {
        color: #fff;
        z-index: 1;
    }

    .BlogsC__ConGrid {
        padding: 0;
    }

    .BlogsC__Right__Container {
        padding: 30px 15px 20px;
        position: absolute;
        bottom: 0;
    }

    .BlogsC__ConGrid .BlogsC__Right__Contents h3 {
        padding: 10px 0;
        font-size: 25px;
        max-width: 650px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .BlogsC__ConGrid .BlogsC__Left__BG {
        width: auto;
        height: 400px;
    }

    .BlogsC__ConGrid_Sf {
        height: unset;
    }

    .Blog__mids {
        width: 100%;
    }

    .Blogs__Section_BGs__Inner__Heading {
        max-width: 100%;
    }

    .Blogs__Section_BGs__Inner__Heading__Image {
        /* top: 66%;
        width: auto;
        height: 300px; */
        top: 50%;
        width: auto;
        height: auto;
        left: 0px;

    }

    .Blogs__Section_BGs__Inner__Heading .Blogs__Section_BGs__Inner__Heading__Text h1 {
        font-size: 30px;
        max-width: 100%;
        line-height: 35px;
    }

    .Blogs__Section_Banner {
        height: 800px;
    }

    .Blogs__Section_BGs__Inner__Heading__Image img {
        width: 100% !important;
        height: 100% !important;
    }

    .Blogs__Section_BGs {
        padding: 60px 0 0;
    }

    /* .BlogsL__Wrapper {
        grid-template-columns: 1fr;
    } */
}



@media (max-width: 767px) {

    .Blogs__ConGrid,
    .MidBlogs__ConRight_flex {
        grid-template-columns: 1fr;
    }

    .Blogs__left__Container,
    .BlogsDn_Contents__left_B {
        width: unset;
        height: unset;
    }

    .BlogsDn_Contents .BlogsDn_Contents__left {
        gap: 0;
    }

    .BlogsDn_Contents .BlogsDn_Contents__left h3 {
        font-size: 18px;
        max-width: 320px;
    }

    .BlogsDn_Contents .BlogsDn_Contents__left p {
        font-size: 13px;
    }

    .BlogsDn_Contents {
        bottom: 0;
        padding: 5px;

    }

    .Blogs__ConRight_Colle h3 {
        font-size: 16px;
        line-height: 23px;
    }

    .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle,
    .MidBlogs__ConRight_flex .MidBlogs__ConRight_Colle .MidBlogs__ImageWrapper,
    .Blogs_Ins_Mid .Left__Blogs_Ins_Mid .Left__Blogs_Ins_Mid_BG {
        width: auto;
        height: auto;
    }

    .Blog__tabover__Se {
        margin: 0;
        gap: 30px;
    }

    .Blogs__tabs {
        flex-wrap: wrap;
        column-gap: 5px;
        row-gap: 10px;
        border: none;
        padding-bottom: 25px;
    }

    .Blog__tabs {
        border: none;
        background: transparent;
        padding: 5px 20px;
        border-radius: 20px;
    }

    .Blog__tabs.active {
        border: none;
        background: #eef1fe;
    }

    .Blogs__Section_BGs {
        padding: 50px 0 0;
    }

    /* .BlogsL__Wrapper {
        grid-template-columns: 1fr;
    } */

    .Blogs__Section_BGs__Inner__Heading__Image img {
        width: 100% !important;
        height: 100% !important;
    }

    .Blogs__Section_BGs__Inner__Heading__Image {
        /* right: 0;
        bottom: -25px;
        height: auto;
        left: 0;
        top: unset;
        width: 100%; */
        right: 0;
        bottom: -25px;
        height: 200px;
        top: unset;
        width: 350px;
    }

    .Blogs__Section_Banner {
        height: 650px;
    }

    .Blogs__Section_BGs__Inner__Heading .Blogs__Section_BGs__Inner__Heading__Text h1 {
        font-size: 25px;
        line-height: 30px;
        padding-top: 2rem;
        max-width: 100%;
    }

    .Blogs__Section_BGs__Inner__Heading {
        padding: 1rem 0;
        max-width: 100%;
    }

    .Blog__mids {
        width: 100%;
    }

    .Blogs_Ins_Mid .Left__Blogs_Ins_Mid h2 {
        font-size: 20px;
    }

    .Blog__mids__grids {
        margin: 3rem 0 4rem;
    }

    .BlogsC__Section {
        background: #00263a;
        height: 450px;

        border-radius: 10px;
    }


    .BlogsC__Right__Container {
        padding: 30px 15px 20px;
    }

    .BlogsC__ConGrid {
        padding: 0;
        display: block;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .BlogsC__ConGrid::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80%;
        background: linear-gradient(to top, rgb(0 0 0 / 100%), transparent);
        border-radius: 10px;
    }

    .BlogsC__Section {
        background: transparent;
        height: unset;
    }

    .BlogsC__ConGrid .BlogsC__Right__Contents {
        color: #fff;
        z-index: 1;
    }

    .BlogsC__ConGrid {
        padding: 0;
    }

    .BlogsC__Right__Container {
        padding: 30px 15px 20px;
        position: absolute;
        bottom: -11px;
    }

    .BlogsC__ConGrid .BlogsC__Right__Contents h3 {
        padding: 4px 0;
        font-size: 18px;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .BlogsC__ConGrid .BlogsC__Left__BG {
        width: auto;
        height: auto;
    }

    .BlogsC__ConGrid_Sf {
        height: unset;
    }

    .BlogsC__Right__Contents a {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .Blogs__Section_BGs__Inner__Heading__Image {
        /* right: 0;
        bottom: -25px;
        height: auto;
        left: 0;
        top: unset;
        width: 100%; */
        right: 0;
        bottom: -25px;
        height: auto;
        top: unset;
        width: 100%;
    }
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.pagination button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background: #f0f0f0;
}

.page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-numbers span {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-numbers span.active {
    background: #333;
    color: #fff;
    font-weight: bold;
}

.page-numbers span:hover {
    background: #ddd;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.catpagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.catpagination button {
    padding: 8px 15px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.catpagination button:hover {
    background: #f0f0f0;
}

.catpage-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.catpage-numbers span {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.catpage-numbers span.active {
    background: #333;
    color: #fff;
    font-weight: bold;
}

.catpage-numbers span:hover {
    background: #ddd;
}

.catdisabled {
    opacity: 0.5;
    cursor: not-allowed;
}