#blog_banner {
    background-image: url(../image/cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    content: "\f105";
    font-weight: 900;
}

.breadcrumb li a {
    text-decoration: none;
    font-family: var(--popins-family);
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

#blog_banner h1 {
    font-family: 'outfit';
    font-weight: 600;
    font-size: 82px;
    letter-spacing: 0.5px;
}

.blog_post_container {
    padding: 60px 0;
}

.card.mb-4.border-0 {
    border: 0px solid #fff !important;
    /*border-radius: 13px;*/
    /*box-shadow: 10px 10px 20px 0px #1e75bb59;*/
    padding:20px 0px;
}

.blog_post_container .card .main_blog_img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_post_container .image_label {
    background-color: var(--secondary-color);
    padding: 8px 20px;
    color: #fff;
    font-family: var(--popins-family);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog_post_container .image_label .number {
    font-size: 18px;
}

.blog_post_container .image_label .text_date {
    font-size: 14px;
}

.resources_sections {
    padding: 40px 0;
}

.container.resources_card.px-3 {
    background: #1e75bb21;
    border-radius: 20px;
    padding: 20px 0;
}

.resources_card .card-body h2 {
    font-family: var(--albersans-family);
    font-weight: 700;
    text-transform: capitalize;
    color: var(--secondary-color);
}

p.card-text.text-justify {
    font-family: var(--popins-family);
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 30px;
}



.resources_card .card-body .anchor_btn {
    background-color: var(--secondary-color);
    color: #fff;
    font-family: var(--popins-family);
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 0.4px;
    display: inline-block;
    margin-top: 5px;
}

.blog_post_container .card-body .category {
    background-color: rgb(30 117 187 / 28%);
    color: var(--secondary-color);
    font-family: var(--popins-family);
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.5px;
}

.blog_post_container .card-body .card-title {
   font-family: 'Noto Serif';
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px !important;
    color: var(--secondary-color);
    line-height: 32px;
}

.blog_post_container .card-body .card-text {
    font-family: var(--popins-family);
    font-weight: 400;
    color: var(--secondary-color);
    font-size: 14px;
    margin: 0px !important;
}

.blog_post_container .card-body .read_more {
    font-family: var(--popins-family);
    font-weight: 600;
    color: var(--secondary-color);
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.blog_post_container .card-body .read_more i {
    font-size: 12px;
}

.publish_by_date {
    font-family: var(--popins-family);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
}

.blog_post_container .card-body .icon {
    overflow: hidden;
}

.moving-resource {
    display: flex;
    flex-direction: column;
}

.blog_post_container .card-body .icon i {
    transform: translateX(-30px);
    transition: all 0.3s ease-in-out;
}

.blog_post_container .card-body .read_more:hover {
    color: var(--primary-color);
}

.blog_post_container .card-body .read_more:hover i {
    transform: translateX(0);
}

aside .blog_search_bar {
    padding: 0 10px;
}

aside .blog_search_bar input {
    border-radius: 2px;
    height: 46px;
    font-family: var(--popins-family);
    font-weight: 400;
}

aside .blog_search_bar input::placeholder {
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.486);
}

aside .blog_search_bar input:focus {
    box-shadow: none;
}

aside .blog_search_bar .input-group-text {
    background-color: var(--primary-color);
    border-radius: 2px;
    height: 46px;
}

aside .blog_search_bar .input-group-text i {
    font-size: 20px;
}

aside h3 {
    font-family: var(--albersans-family);
    font-weight: 600;
}

aside .blog_side_category {
    margin: 0 10px;
    padding: 20px;
    border: 1px solid #2b2f322e;
    border-radius: 20px;
}

aside .blog_side_category ul li {
    padding-block: 4px;
}

aside .blog_side_category ul li a {
    color: var(--secondary-color);
    font-family: var(--popins-family);
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    position: relative;
}

aside .blog_side_category ul li a::after {
    content: "";
    background-color: var(--primary-color);
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}

aside .blog_side_category ul li a i {
    margin-right: 8px;
    font-size: 12px;
}

aside .blog_side_category ul li a:hover::after {
    width: 100%;
}

aside .blog_side_recent_posts {
    color: var(--secondary-color);
    padding: 0 10px;
}

aside .blog_side_recent_posts .card .card-img {
    width: 100%;
}

aside .blog_side_recent_posts .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

aside .blog_side_recent_posts .card-img .image_label {
    padding: 8px 10px;
}

aside .blog_side_recent_posts .card-img .text_date {
    font-size: 12px;
}

aside .blog_side_recent_posts .card .card-title {
         font-family: 'Outfit';
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px !important;
}

aside .blog_side_recent_posts .card .card-body p {
    font-size: 12.5px;
    color: var(--secondary-color);
    font-family: var(--popins-family);
    font-weight: 400;
}

.row_modal {
    background: #ecececc9;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 0.7rem;
    margin-top: 30px;
    
}

.row_modal h2 {
    font-family: 'Noto Serif';
    color: var(--primary-color);
}

.row_modal small {
    font-family: var(--popins-family);
    font-weight: 400;
    font-size: 12px;
    color: var(--secondary-color);
}

.row_modal label {
    font-family: var(--albersans-family);
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 2px;
    font-size: 14px;
}

.row_modal input {
    font-weight: 400;
    background-color: #fff;
    font-family: var(--albersans-family);
    font-size: 14.5px;
}

/* .row_modal input:focus {
    box-shadow: none;
    background-color: var(--four-color);
} */

.row_modal input::placeholder {
    text-transform: capitalize;
    color: var(--third-color);
    font-weight: 400;
}

.row_modal .input-group span {
    background-color: var(--four-color);
}

.row_modal .input-group span i {
    color: var(--dark-blue);
    font-size: 16px;
}

.row_modal button {
    text-align: center;
    transition: 0.5s;
    border-radius: 7px;
    border: 2px solid #fff;
    padding: 6px 30px;
    font-size: 16px;
    font-family: var(--popins-family);
    letter-spacing: 1px;
    margin-top: 2px;
    background-color: rgb(248 109 33);
    color: #fff;
}

label.discount {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

img.rounded-circle.writer-img.me-2 {
    width: 25px;
}

.auth_detai div {
    font-size: 12px;
}

.row_modal {
    background: #fff;
    border-radius: 10px;
    border: 0px solid #408ac5 !important;
    padding: 1.3rem 0.6rem;
    margin-top: 22px;
}

.row_modal h3 {
    font-family: 'Noto Serif';
    color: #2b2f32;
    font-size: 21px !important;
    font-weight: 600;
}

.multi-step-heading span {
    font-weight: 800;
    color: #1e75bb;
}

.row_modal label {
    color: #2b2f32;
    margin-bottom: 2px;
    font-size: 14px;
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
}

.banner_inputs {
    border: 2px solid #dbe9f4;
    border-radius: 10px;
}

.input_icon {
    background-color: #fff !important;
    border: 0px !important;
    border-radius: 10px;
    height: 45px;
}

.row_modal input {
    font-weight: 400;
    background-color: #fff;
    font-size: 14.5px;
    border: 0 !important;
}

label.discount {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    color: #1f75bb;
    /* margin-top: 5px; */
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.row_modal button {
    text-align: center;
    transition: 0.5s;
    border-radius: 7px;
    padding: 10px 0px;
    font-size: 17px;
    letter-spacing: 0.2px;
    /* margin-top: 25px !important; */
    border: 0px solid #fd6b1b;
    color: #fff;
    width: 100%;
    background-color: #0043C0;
    font-weight: 500;
    font-family: "Plus Jakarta Sans";
}

.icon_svg {
    width: 30px;
    /* margin-bottom: 7px; */
}
@media screen and (max-width: 680px) {
  .blog_post_container .card-body .card-title {
   
    font-size: 26px;}
    #blog_banner h1 {
   
    font-size: 42px;
    letter-spacing: 0.5px;
}

}