/* hero */
#blog_hero {
    padding: 40px 0px 40px 0px;
    background: #F9FEEF;
}

#blog_hero .blog_hero_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


#blog_hero .blog_hero_container .hero_content,
#blog_hero .blog_hero_container .hero_content h1 {
    color: #000;
}

#blog_hero .blog_hero_container .hero_content h1 {
    font-size: 30px;
    line-height: 42px;
    text-transform: none;
}

#blog_hero .blog_hero_container .hero_content p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 40px;
}

#blog_hero .blog_hero_container .hero_content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

#blog_hero .blog_hero_container .hero_content ul li {
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
    padding-left: 35px;
    position: relative;
}

#blog_hero .blog_hero_container .hero_content ul li::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../images/green_tick.svg) no-repeat;
    background-position: center;
    background-size: contain;
    left: 0;
    top: 3px;
}

#blog_hero .blog_hero_container .blog_hero_card img {
    width: 100%;
}

#blog_hero .btn_container {
    display: flex;
    gap: 30px;
}

#blog_hero .btn_container a {
    font-size: 20px;
    line-height: 26px;
}

#blog_hero .btn_container .custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

#blog_hero .btn_container .custom-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l12 12L28 10'%3E%3C/path%3E%3C/svg%3E") no-repeat right 1rem center/1em auto;
    padding: 16px;
    border-radius: 0.75rem;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
}

#blog_hero .btn_container .custom-select-icon {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
}


#blog_hero .dropdown-container {
    position: relative;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#blog_hero .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 12px;
}

#blog_hero .dropdown-toggle.open::after {
    transform: rotate(180deg);
}

#blog_hero .dropdown-toggle::after {
    background: url(../images/arrow.svg) no-repeat;
    content: "";
    border: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

#blog_hero .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    border: none;
}

#blog_hero .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#blog_hero .dropdown-menu div {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 18px;
}

#blog_hero .dropdown-menu div:hover {
    background-color: #9ED635;
}

#blog_hero .dropdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#blog_hero .dropdown-label span {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

#blog_hero .dropdown-label svg {
    color: #333;
    width: 1.2em;
    height: 1.2em;
}

#blog_hero .hero_rating {
    margin: 30px 0px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

#blog_hero .hero_rating .rank {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

#blog_hero .hero_rating img {
    width: 120px;
    height: 55px;
}


@media (min-width: 992px) and (max-width: 1200px) {
    #blog_hero .blog_hero_container {
        padding: 100px 20px 70px;
    }

    h1 {
        font-size: 30px;
        line-height: 42px;
    }


    #blog_hero .btn_container a {
        font-size: 18px;
        line-height: 24px;
    }

    #blog_hero .hero_rating img {
        width: 80px;
        height: auto;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    #blog_hero .blog_hero_container {
        padding: 100px 20px 70px;
    }


    #blog_hero .blog_hero_container .hero_content p {
        font-size: 20px;
        line-height: 30px;
    }

}



@media screen and (max-width: 767px) {
    #blog_hero {
        padding: 20px 0px 30px 0px;
    }

    #blog_hero .blog_hero_container {
        padding: 0px 0px 0px;
        flex-direction: column;
    }


    #blog_hero .blog_hero_container .hero_content h1 {
        font-size: 24px;
        line-height: 32px;
    }

    #blog_hero .blog_hero_container .hero_content ul {
        margin-bottom: 15px;
    }

    #blog_hero .blog_hero_container .hero_content ul li {
        font-size: 18px;
        line-height: 26px;
        padding-left: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    #blog_hero .blog_hero_container .hero_content ul li::before {
        width: 20px;
        height: 20px;
        top: 4px;
    }

    #blog_hero .blog_hero_container .hero_content p {
        font-size: 20px;
        line-height: 28px;
    }

    #blog_hero .btn_container {
        flex-direction: column;
    }

    #blog_hero .dropdown-container {
        width: 100%;
    }

    #blog_hero .hero_rating {
        flex-wrap: wrap;
        justify-content: center;
    }

    #blog_hero .hero_rating> :last-child {
        flex-basis: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    #blog_hero .hero_rating img {
        width: 80px;
        height: auto;
    }

}

@media screen and (max-width: 450px) {}

/* hero */


/* blog_content */
.full_container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.left_container {
    width: 75%;
    padding: 0px 12px;
}

.sidebar_container {
    width: 25%;
    padding: 0px 12px;
}

#blog_content {
    margin: 30px 0px;
}

#blog_content h2 {
    text-align: left;
    font-size: 28px;
    line-height: 34px;
}

#blog_content p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
}

#blog_content p a {
    color: #4caf50;
    border-bottom: 1px solid #4caf50;
    text-decoration: none;
}

#blog_content p.disclaimer {
    font-size: 14px;
    font-style: italic;
    color: #555;
}

#blog_content h3 {
    color: #4caf50;
    margin-bottom: 30px;
}

#blog_content a.textlink {
    color: #4caf50;
    border-bottom: 1px solid #4caf50;
}

#blog_content .green-color {
    color: #4caf50;
    font-weight: 600;
    padding: 24px;
    border-left: 4px solid #4caf50;
}

#blog_content .grn {
    color: #4caf50;
    font-weight: 700;
}


#blog_content ul.circle li,
#blog_content ul.tick li {
    margin: 0px 0px 25px 40px;
    padding-left: 30px;
    position: relative;
}

#blog_content ul.circle li a,
#blog_content ul.tick li a {
    color: #4caf50;
    border-bottom: 1px solid #4caf50;
}

#blog_content ul.circle li:before {
    position: absolute;
    content: '';
    height: 18px !important;
    width: 18px !important;
    border-radius: 50%;
    border: 1px solid #475569;
    border-color: #000;
    left: -10px;
    top: 4px;
}

#blog_content ul.tick li:before {
    position: absolute;
    content: '';
    height: 18px !important;
    width: 18px !important;
    background: url(../images/green_tick.svg) no-repeat;
    background-position: center;
    background-size: contain;
    left: -10px;
    top: 4px;
}

#blog_content ul li p {
    line-height: 1.5;
}

#blog_content ul li .circle {
    width: 24px;
    height: 24px;
}

#blog_content ul li .icon {
    height: 24px;
    width: 24px;
    color: #0f4034;
}

#blog_content img.article_main_image {
    height: auto;
    width: 100%;
    margin-bottom: 30px;
}


/* .row, .container, .col-12, .col-md-3, #blog_sidebar {
  overflow: visible !important;
} */

#blog_sidebar {
    /* position: relative;
    position: sticky;
    position: -webkit-sticky;
    top: 10px;
    z-index: 10; */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.spacer {
    height: 1px;
    /* tiny element to create the sticky offset */
}

.sticky-box.fixed {
    /* position: sticky;
    position: -webkit-sticky; */
    position: fixed;
    top: 0px;
    z-index: 10;
}

.sticky-box {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    z-index: 10;
}


.sidebar-box-content {
    padding: 15px;
    border: 1px solid #C2E48A;
    background-color: #F9FEEF;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;

}

.sidebar-box-content img {
    max-width: 75%;
}

#blog_content .sidebar-box-content p {
    font-size: 22px;
    font-weight: 600;
}

#blog_content .share_widget {
    margin-top: 25px;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

#blog_content .share_widget .share_title {
    font-size: 18px;
    font-weight: 600;
}

#blog_content .share_widget .share_icon {
    padding: 3px 7px;
    border-radius: 50%;
    border: 1px solid #0F4034;
    background: #0F4034;
    width: 35px;
    height: 35px;
}

#blog_content .share_widget .share_icon img {
    width: 100%;
}


.heading-main {
    /* Changes */
    line-height: 54px;
    text-transform: none;
    /* ***** */
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #222;
}

.heading-secondary {
    /* Changes */
    line-height: 40px;
    text-transform: none;
    /* ***** */
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #0569ff;
}

/* ************** */


/* Table */

.rate_table {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}

.trow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-bottom: 1px solid #C2E48A;
    border-left: 1px solid #C2E48A;
    border-right: 1px solid #C2E48A;
    /* padding: 20px; */
}

.trow .col1,
.trow .col2 {
    padding: 15px;
    width: 50%;
    text-align: center;
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trow .col1 {
    border-right: 1px solid #C2E48A;
}

.trow .col1 img {
    max-width: 150px;
    max-height: 80px;
}

.trow .col2 {
    font-weight: 600;
    color: #4caf50;
}

.trow.thead {
    font-size: 20px;
    color: #000 !important;
    background-color: #C2E48A;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
    min-height: unset;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.trow.thead .col1,
.trow.thead .col2 {
    min-height: unset;
    color: #000;
}


#blog_content .tip-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 32px;
    border: 1px solid #4caf50;
    border-radius: 10px;
    margin-bottom: 30px;
}

#blog_content .tip-box img {
    height: auto;
    width: 100%;
    max-width: 60px;
}

#blog_content .tip-box p {
    margin-bottom: 20px;
}


.summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F9FFEF;
    border-radius: 10px;
    margin-bottom: 0px;
    padding: 32px 32px;
}

img.summary_img {
    width: 100%;
    max-width: 80px;
}




/* Profile-Box */

#blog_content .profile {
    display: flex;
    gap: 16px;
}

#blog_content .profile-box {
    padding: 15px;
    border: 1px solid #e0e0e0;
    transition: all 250ms;
    border-radius: 16px;
}

#blog_content .profile-box:hover {
    transform: scale(1.05);
    cursor: pointer;
}

#blog_content .profile-img {
    border-radius: 50%;
    max-height: 48px;
}

#blog_content p.profile-details {
    font-size: 15px !important;
    color: #64748b;
    margin-bottom: 15px;
}

#blog_content .profile-details a {
    color: #64748b;
    font-weight: 500;
}

#blog_content .abt {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

#blog_content .profile-about ul {
    margin-bottom: 0;
    padding: 0;
}

#blog_content .profile-about ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}

#blog_content .profile-about ul li p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
}


/* insurer list */
#insurer_list {
    margin: 20px 0px 40px 0px;
}

.insurer_list_container {
    width: 100%;
    display: flex;
}

#insurer_list .compare_insurer {
    color: #293139;

}

#insurer_list .compare_insurer:hover {
    color: #4caf50;
}

.insurer_list_container .swiper {
    width: 100%;
    padding: 20px 0px;
    touch-action: pan-y;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.insurer_list_container .swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    box-sizing: content-box;
}

.insurer_list_container .swiper .swiper-wrapper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insurer_list_container .swiper .swiper-wrapper .swiper-slide .insurer_logo {
    padding: 16px;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.insurer_list_container .swiper .swiper-wrapper .swiper-slide .insurer_logo img {
    /* aspect-ratio: 1 / 1; */
    aspect-ratio: 2 / 1;
    object-fit: contain;
    max-width: 100%;
    height: auto;
    max-width: 150px;
}

/* insurer list */


/* breadcrumb */

.breadcrumbs {
    display: flex;
    padding: 10px 0px;
    border: 1px solid rgba(217, 217, 217, 0.4);
}

ul.breadcrumbs__list {
    margin: 0;
    list-style: none;
}

ul.breadcrumbs__list li.breadcrumbs__item,
ul.breadcrumbs__list li a {
    color: #293139;
    font-size: 14px;
    line-height: 18px;
}

ul.breadcrumbs__list li a:hover {
    color: #4caf50;
}

ul.breadcrumbs__list li svg {
    font-size: 14px;
    line-height: 18px;
    margin-left: 14px;
}

/* breadcrumb */


@media screen and (max-width: 767px) {

    #blog_content h2 {
    font-size: 22px;
    line-height: 30px;
}

    #blog_content p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .summary {
        padding: 15px;
    }

    img.summary_img {
        display: none;
    }

    #blog_content ul.circle li {
        margin: 0px 0px 15px 25px;
    }

    #blog_content .tip-box {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px;
    }

    #blog_content .tip-box h3 {
        text-align: center;
    }

    #blog_content .tip-box p {
        text-align: center;
        margin-bottom: 15px;
    }

    ul.breadcrumbs__list li a,
    ul.breadcrumbs__list li span {
        text-overflow: ellipsis;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
    }

    .sidebar-box-content img {
        max-width: 65%;
    }
}


/* blog_content */


/* faq */
#blog_content .blog_faq {
    margin: 40px 0px;
}

#blog_content .blog_faq .accordion-item {
    border: none;
    padding: 30px 0px;
    border-top: 1px solid #e2e8f0;
    cursor: pointer;
}

#blog_content .blog_faq .accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    color: #000;
}

#blog_content .blog_faq .accordion-toggle svg {
    transition: transform 0.3s ease;
}

#blog_content .blog_faq .accordion-toggle:not(.collapsed) svg {
    transform: rotate(180deg);
}

#blog_content .blog_faq .accordion-body {
    font-size: 18px;
    line-height: 24px;
}

#blog_content .blog_faq .accordion-item:last-child {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    #blog_content .blog_faq .accordion-body {
        font-size: 18px;
        line-height: 24px;
        padding: 15px 0px;
    }
}

/* faq */


/* other blogs */
#otherblogs {
    padding: 30px 0px;
    background: #F9FEEF;
}

.otherblogs_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.otherblogs_cards li {
    width: calc(50% - 15px);
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

.otherblogs_cards li a {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}


.otherblogs_cards li p.more_link {
    margin: 0;
    color: #4caf50;
    font-weight: 600;
}

.otherblogs_cards li p.more_link:hover svg {
    margin-left: 10px;
    transition: 0.5s;
}

.otherblogs_cards li:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


@media screen and (max-width: 767px) {
    .otherblogs_cards li {
        width: 100%;
    }
}

/* other blogs */


/* floating banner */

#floating_banner {
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    bottom: 0px;
    /* display: none; */
    width: 100%;
    background-color: #F9FEEF;
    box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#floating_banner.show {
    opacity: 1;
    visibility: visible;
}

#floating_banner .floating_banner_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

#floating_banner .floating_banner_content img {
    max-width: 40px;
    height: auto;
    margin-right: 15px;
}

#floating_banner .floating_banner_content p {
    margin: 0;
    padding: 0;
}

#floating_banner .floating_banner_content a {
    display: inline-block;
}

#floating_banner .floating_banner_content div:first-child {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    #floating_banner .floating_banner_content {
        flex-direction: column;
        gap: 20px;
    }

    #floating_banner .floating_banner_content img {
        max-width: 30px;
    }


}

/* floating banner */