@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-height: 95px;
    --primary-text-color: #2D2D2D;
    --secondary-text-color: #DEDEDE;
    --third-text-color: #555555;
    --fourth-text-color: #686868;
    --fifth-text-color: #333333;
    --primary-bg-color: #2B004B;
    --primary-bg-color-light: #4B0082;
    --secondary-bg-color: #E6E6FA;
    --black: #000;
    --white: #fff;
    --main-font-size: 40px;
    --main-font-line-height: 50px;
    --banner-title-font-size: 56px;
    --banner-title-line-height: 66px;
    --banner-description-font-size: 18px;
    --banner-description-line-height: 30px;
    --primary-cta-bg-color: #FFD700;
    --secondary-cta-bg-color: #FFB700;
}


* {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    scroll-behavior: smooth !important;
    scroll-padding-top: 121px;
}

/* #wpadminbar {
    display: none;
} */


body {
    font-family: "Saira", sans-serif;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

li {
    list-style: none;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

h4 {
    margin: 0;
}

h5 {
    margin: 0;
}

h6 {
    margin: 0;
}

p {
    margin: 0;
}

.cta_main {
    width: fit-content;
    min-height: 52px;
    border-radius: 5px;
    background: var(--primary-cta-bg-color);
    padding: 16px 24px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: var(--black);
    margin: 33px 0 0 0;
    display: block;
    transition: .5s all ease-in-out;
}

.cta_main:hover {
    background: var(--secondary-cta-bg-color);
}

/* --------------------------  Header CSS Start ------------------ */

.sidebar-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    padding: 25px 0;
    background: var(--primary-bg-color-light);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.page-id-15 .header {
    background: var(--primary-bg-color);
}

.page-id-87 .header {
    background: var(--primary-bg-color);
}


.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.row-wrap .logo-wrap {}

.row-wrap .logo-wrap a img {
    width: 228px;
}

.row-wrap .logo-wrap h6 {
    font-family: PT Sans;
    font-size: 15px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: #122A5A;
    margin: 0;
}

.row-wrap .nav-wrap .button a {
    width: 95px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #FFF;
    background: #353634;
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 186.667% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-wrap .nav-wrap .button a:hover {
    opacity: .8;
}

.nav-list {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
    gap: 32px;

}



.nav-list li {
    /* padding: 10px 10px; */
    position: relative;
    display: flex;
    /* gap: 8px; */
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-list li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: right;
    color: #FFFFFF;
    padding: 10px 0px;

}

.nav-list li a:hover {
    opacity: .9;
}

.nav-list .current-menu-item a {
    font-weight: 600;
}

.nav-list .current-menu-item .sub-menu a {
    background-color: transparent;
}


.hamburger {
    display: none;
    z-index: 99;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: var(--white);
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}

.header .nav-wrap {
    display: flex;
    align-items: center;
    gap: 50px;

}

.header .nav-wrap .cta-button {
    width: 95px;
    height: 40px;
    border-radius: 30px;
    background: rgba(18, 42, 90, 1);
    font-family: Open Sans;
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.header .nav-wrap .cta-button:hover {
    opacity: .8;
}

/* --------------------------  Header  CSS End ------------------ */


/* --------------------------  Footer  CSS Start ------------------ */

footer {
    padding: 50px 0;
}

footer .footer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

footer .footer_wrapper .footer_logo {
    width: 190px;
}

footer .footer_wrapper h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--third-text-color);
    max-width: 380px;
    margin: 15px 0 0 0;
}

footer .footer_wrapper p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--third-text-color);
    max-width: 454px;
}




/* --------------------------  Footer  CSS End ------------------ */



/* --------------------------  404 Page Start ------------------ */


#not_found {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#not_found .box h2 {
    color: var(--primary-bg-color);
    text-align: center;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    font-weight: 600;
    max-width: 605px;
    margin: 30px auto 0;
}

#not_found .box h4 {
    color: var(--primary-text-color);
    text-align: center;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    font-weight: 600;
    max-width: 605px;
    margin: 50px 0 0 0;
}

#not_found .box p {
    color: var(--primary-text-color);
    text-align: center;
    font-size: var(--banner-description-font-size);
    font-style: var(--banner-description-line-height);
    font-weight: 600;
    line-height: 32px;
    max-width: 648px;
    margin: 25px 0 0 0;
}


/* --------------------------  404 Page End ------------------ */

/* --------------------------  Thank You Page Start ------------------ */

#thank_you_section {
    margin-top: var(--header-height);
    background: var(--secondary-bg-color);
    padding: 65px 0 20px;
}

#thank_you_section .inner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#thank_you_section .inner-box h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--primary-text-color);
    max-width: 340px;
    margin: 0 auto;
}

#thank_you_section .inner-box p {
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    text-align: center;
    color: var(--primary-text-color);
    max-width: 620px;
    margin: 19px auto 0;
}

#thank_you_section .inner-box p:empty {
    margin: 0;
}

#thank_you_section .inner-box img {
    margin: 35px auto 0;
    width: 460px;
}


/* --------------------------  Thank You Page End ------------------ */


/* ----------------- Home Page Start --------------------- */

.banner_bottom_image {
    width: 100%;
    margin-top: -21px;
}

.image_box {
    position: relative;
}

.image_box {
    position: relative;
}

.image_box::before,
.image_box::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #FFD7001A;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 99;
    box-shadow: 0px 4px 4px 0px #4B00822B;
    border: 2px solid white;
    transform-origin: center center;
    animation: pulseYellow 2s ease-in-out infinite;
}

/* individual positions */
.image_box::before {
    left: 35%;
    top: 30%;
}

.image_box::after {
    left: 62%;
    top: 75%;
}

.image_box_2::after {
    top: 63%;
}

@keyframes pulseYellow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        background: #fff;
        border: 2px solid white;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        border: 6px solid white;
        background: #FFD700;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        background: #fff;
        border: 2px solid white;
    }
}





#home_banner_section {
    margin-top: var(--header-height);
    padding: 80px 0 40px;
    background-color: var(--secondary-bg-color);
    position: relative;
}

/* #home_banner_section::after{
    content: url("../assets/bg-banner-line.png");
    position: absolute;
} */


#home_banner_section h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--primary-text-color);
    max-width: 690px;
    margin: 0 auto;

}

#home_banner_section p {
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    text-align: center;
    color: var(--primary-text-color);
    margin: 19px auto 0;
    max-width: 616px;
}

#home_banner_section .cards_wrapper {
    margin: 40px auto 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#home_banner_section .cards_wrapper .card {
    width: 220px;
    max-width: 100%;
    min-height: 168px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 24px 54px 0px #00218233;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 20px 6px 20px;
    margin: 32px 10px 75px;

}

#home_banner_section .cards_wrapper .card:hover {
    opacity: 0.75;
}

#home_banner_section .cards_wrapper .card p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-text-color);
    margin: 0 auto;
}


#home_section_1 {
    padding: 30px 0 60px;
    background-color: var(--white);
}

#home_section_1 h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: var(--black);
    margin: 0 auto;
    max-width: 250px;
}

#home_section_1 .images_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 29px auto 0;
}


#home_section_2 {
    padding: 57px 77px 37px 63px;
    background-color: var(--primary-bg-color-light);
    max-width: 1180px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 90px;
    margin: 0 auto 0px;
    flex-wrap: wrap;
}

#home_section_2 .left_wrapper {
    max-width: 558px;
}

#home_section_2 .right_wrapper {
    max-width: 390px;
}

#home_section_2 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-bg-color);
    background-color: var(--white);
    padding: 0 8px;
    border-radius: 5px;
    width: fit-content;

}

#home_section_2 h2 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    color: var(--white);
    margin: 13px 0 0 0;
}

#home_section_2 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--secondary-text-color);
    margin: 15px 0 0 0;
    max-width: 552px;

}

#home_section_2 p:empty {
    margin: 0;
}

#home_section_3 {
    padding: 75px 0 86px;
}

#home_section_3 h2 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    color: var(--primary-text-color);
    margin: 0 auto 40px;
    max-width: 650px;
}

#home_section_4 {
    padding: 55px 67px 45px 86px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    max-width: 1180px;
    width: 100%;
    min-height: 430px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px;
    margin: 0 auto 0px;

}

#home_section_4 .left_wrapper {
    max-width: 521px;
}

#home_section_4 .right_wrapper {
    max-width: 460px;
}

#home_section_4 h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--primary-bg-color-light);
    padding: 0 8px;
    border-radius: 5px;
    width: fit-content;

}

#home_section_4 h2 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    color: var(--primary-text-color);
    margin: 13px 0 0 0;
    max-width: 456px;
}

#home_section_4 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
    margin: 13px 0 0 0;
    max-width: 521px;

}


#home_section_4 form {
    max-width: 477px;
    width: 100%;
    position: relative;
    margin: 26px 0 0 0;
}

#home_section_4 form input {
    width: 100%;
    max-width: 100%;
    min-height: 62px;
    border-radius: 5px;
    background: var(--white);
    border: 1px solid var(--black);
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--black);
    outline: none;
}

#home_section_4 form input::placeholder {
    color: #9B9B9B;
}

#home_section_4 form input[type='submit'] {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: var(--black);
    background: var(--primary-cta-bg-color);
    width: fit-content;
    min-height: 52px;
    border-radius: 5px;
    padding: 16px 24px;
    border: none;
    transition: .5s all ease-in-out;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;

}

#home_section_4 form input[type='submit']:hover {
    background: var(--secondary-cta-bg-color);
}

#home_section_4 .wpcf7-response-output {
    margin: 0 !important;
}

/* ----------------- Home Page End --------------------- */








/* ----------------- Service Sigle CSS Start --------------------- */

#service_banner_section {
    margin-top: var(--header-height);
    background: var(--primary-bg-color-light);
    padding: 84px 0 100px;
}

#service_banner_section h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--white);
}

#service_banner_section p {
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    text-align: center;
    color: var(--white);
    margin: 19px auto 0;

}

#service_banner_section .banner_cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 42px auto 0;
}

#service_banner_section .banner_cards .cards {
    width: 100%;
    max-width: 240px;
    min-height: 160px;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 24px 54px 0px #00218233;
    padding: 27px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#service_banner_section .banner_cards .cards:hover {
    opacity: 0.75;
}

#service_banner_section .banner_cards .cards img {
    margin: 0 auto;
}

#service_banner_section .banner_cards .cards p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-text-color);
    margin: 21px auto 0;
}





/* ----------------- Service Sigle CSS End --------------------- */



/* ----------------- Single CSS Start --------------------- */



#cashback_banner_section {
    margin-top: var(--header-height);
    padding: 80px 0 40px;
    background-color: var(--secondary-bg-color);
    position: relative;
}

#cashback_banner_section .upper_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: var(--black);
    margin: 0 auto;
}

#cashback_banner_section h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--primary-text-color);
    margin: 12px auto 0;
    max-width: 803px;
}

#cashback_banner_section .title_description {
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: var(--primary-text-color);
    padding: 9px 16px;
    width: fit-content;
    max-width: 712px;
    background-color: var(--secondary-bg-color);
    box-shadow: 0px 4px 24px 0px #4B008229;
    margin: 33px auto 0;

}

#cashback_banner_section p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    margin: 36px auto 0;
    max-width: 716px;
    color: var(--primary-text-color);
}

#cashback_banner_section p strong {
    font-weight: 600;
}

#cashback_section_1 {
    padding: 59px 0 0;
}

#cashback_section_1 h2 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    color: var(--primary-text-color);
    max-width: 530px;
    margin: 0 auto;
}

#cashback_section_1 .table_heading_box {
    border-bottom: 2px solid #4B0082;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 40px auto 0;
    max-width: 1180px;
}

#cashback_section_1 .table_heading_box .table_heading {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary-text-color);
    width: 20%;
}

#cashback_section_1 .table_heading_box .table_heading:nth-child(2) {
    width: 25%;
}

#cashback_section_1 .table_data_box_wrapper .table_box .box:nth-child(2) {
    width: 25%;
}

#cashback_section_1 .table_data_box_wrapper .table_box {
    border-bottom: 1px solid var(--secondary-text-color);
    padding-bottom: 37px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 23px auto 0;
    max-width: 1180px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .box {
    width: 20%;
    position: relative;
}

#cashback_section_1 .table_data_box_wrapper .table_box .box .inner_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

#cashback_section_1 .table_data_box_wrapper .table_box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--fifth-text-color);
}

#cashback_section_1 .table_data_box_wrapper .table_box p strong {
    font-size: 16px;
    line-height: 30px;
}

#cashback_section_1 .table_data_box_wrapper .table_box span {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--fifth-text-color);

}

#cashback_section_1 .table_data_box_wrapper .table_box .image_text {
    color: var(--primary-text-color);
    text-align: left;
    display: block;
}

#cashback_section_1 .table_data_box_wrapper .table_box .offer {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .card_box img {
    margin: 0 auto 8px;
    width: 146px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .rating {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .fee {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .button p {
    text-align: center;
    max-width: 151px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .button p:first-of-type a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: var(--black);
    padding: 12px 25px 12px 20px;
    background-color: var(--primary-cta-bg-color);
    display: block;
    width: fit-content;
    border-radius: 5px;
    margin: 0px 0 9px;
}

#cashback_section_1 .table_data_box_wrapper .table_box .button p:first-of-type a::after {
    content: url("../assets/cta-icon.svg");
    position: relative;
    top: 2px;
    left: 6px;
}

/* #cashback_section_1 .table_data_box_wrapper .table_box .rate p:first-of-type::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0px;
    left: 6px;
} */
/* #cashback_section_1 .table_data_box_wrapper .table_box .rate p:first-of-type::after:hover {
    content: "testtesttesttest";
} */
/* make wrapper relatively positioned */
.info_icon_wrap {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* your icon's positioning */
#cashback_section_1 .table_data_box_wrapper .table_box .info_icon_wrap {
    position: absolute;
    top: 10px;
    right: 40%;
}

/* tooltip */
.info_icon_wrap::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: 120%;
    transform: translateX(-50%) scale(.95);
    background: #222;
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .15s ease;
    z-index: 999;
}

/* arrow */
.info_icon_wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(120% - 6px);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #222;
    opacity: 0;
    transition: .15s ease;
}

/* show on hover */
.info_icon_wrap:hover::after,
.info_icon_wrap:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}


/* #cashback_section_1 .table_data_box_wrapper .table_box .offer_box p:first-of-type::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0px;
    left: 6px;
} */

#cashback_section_1 .table_data_box_wrapper .table_box .button p:last-of-type a {
    color: #4B0082;
    text-decoration: underline;
}

#cashback_section_1 .table_data_box_wrapper .table_box .button a:hover {
    opacity: 0.75;
}


#cashback_section_2 {
    padding: 48px 0;
    width: 100%;
}

#cashback_section_2 .cashback_section_2_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 49px;
    width: 100%;
    background: #E6E6FA;
    border-radius: 10px;
    padding: 30px 70px 25px 45px;
}

#cashback_section_2 .cashback_section_2_wrapper h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: var(--primary-text-color);

}

#cashback_section_2 .cashback_section_2_wrapper p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
    margin: 7px 0 0 0;
    max-width: 703px;
}

#cashback_section_2 .cashback_section_2_wrapper .cta_main {
    margin: 0;
}


#cashback_section_3 .card_wrapper .card_box {
    border: 1px solid #D3D3D3;
    padding: 70px 45px 10px 47px;
    border-radius: 10px;
    position: relative;
    background: #FFFFFF;
    max-width: 1180px;
    margin-bottom: 46px;

}

#cashback_section_3 .card_wrapper .card_box .card_info_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

#cashback_section_3 .card_wrapper .card_box .card_upper_text {
    background: #E2D6EB;
    border: 1px solid #D3D3D3;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    border-radius: 10px 0 0 0;
    color: #4B0082;
    padding: 6px 9px 6px 18px;
    position: absolute;
    top: 0px;
    left: 0px;
}

#cashback_section_3 {
    padding-bottom: 46px;
}

#cashback_section_3 .card_wrapper .card_box .card_upper_text::before {
    content: url("../assets/tick.svg");
    position: relative;
    top: 6px;
    left: -8px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 37px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper .card_image {
    width: 197px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper .box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper h4 {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: var(--primary-text-color);
    margin-bottom: 11px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper .card_upper_review {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-text-color);


}

#cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper .card_upper_review_rating {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #0051FF;
    position: relative;
}

/* #cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper .card_upper_review_rating::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0;
    left: 6px;
} */

#cashback_section_3 .card_wrapper .card_box .card_info_box .button_wrapper p {
    text-align: center;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .button_wrapper p:first-of-type a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: var(--black);
    padding: 15px 39px 15px 39px;
    background-color: var(--primary-cta-bg-color);
    display: block;
    width: fit-content;
    border-radius: 5px;
    margin: 0 0 9px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .button_wrapper p:first-of-type a::after {
    content: url("../assets/cta-icon.svg");
    position: relative;
    top: 2px;
    left: 6px;
}

#cashback_section_3 .card_wrapper .card_box .card_info_box .button_wrapper p:last-of-type a {
    color: indigo;
    text-decoration: underline;
    text-align: center;
    display: block;
}

#cashback_section_3 .card_details_box {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 44px;
}

#cashback_section_3 .card_details_box .box:first-of-type {
    padding: 0 10px 24px 0;
}

#cashback_section_3 .card_details_box .box {
    width: 28%;
    padding: 0 10px 24px 26px;
    border-right: 1px solid #D3D3D3;
    position: relative;
}

#cashback_section_3 .card_details_box .box:last-of-type {
    border-right: none;
}

#cashback_section_3 .card_details_box .box:nth-child(1) {
    width: 15%;
}

#cashback_section_3 .card_details_box .box:nth-child(4) {
    border-right: none;
}

#cashback_section_3 .card_details_box .box:nth-child(5) {
    width: 33%;
    padding: 22px 15px 24px 0;
    border-top: 1px solid #D3D3D3;
}

#cashback_section_3 .card_details_box .box:nth-child(6) {
    width: 33%;
    padding: 22px 15px 24px 26px;
    border-top: 1px solid #D3D3D3;

}

#cashback_section_3 .card_details_box .box:nth-child(7) {
    width: 33%;
    border-top: 1px solid #D3D3D3;
    padding: 22px 15px 24px 26px;

}

#cashback_section_3 .card_details_box .box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);

}

/* #cashback_section_3 .card_details_box .offer_box span::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0;
    left: 6px;
}

#cashback_section_3 .card_details_box .reward_box strong::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0;
    left: 6px;
} */

#cashback_section_3 .card_details_box .box p span {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-text-color);
    display: block;

}

#cashback_section_3 .card_details_box .box p a {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #4B0082;
}

/* #cashback_section_3 .card_details_box .box p a::after {
    content: url("../assets/more-info.svg");
    position: relative;
    top: 0;
    left: 6px;
} */

#cashback_section_3 .card_faq .card_content {
    display: none;
}

#cashback_section_3 .card_wrap {
    border-bottom: 1px solid #D3D3D3;
}

#cashback_section_3 .card_wrap:last-of-type {
    border-bottom: none;
}

#cashback_section_3 .card_faq h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--primary-text-color);
    padding: 15px 0;
}

#cashback_section_3 .card_faq .card_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#cashback_section_3 .card_faq p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding: 10px 0;
    color: var(--primary-text-color);
    max-width: 95%;
}

#cashback_section_3 .card_faq .card_head.active:after {
    transform: rotate(180deg);
}

#cashback_section_3 .card_faq .card_head:after {
    content: url("../assets/down.svg");
}

#cashback_section_4 {
    padding: 94px 0 96px;
    background: var(--secondary-bg-color);

}


#cashback_section_4 h3 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    text-align: center;
    color: var(--primary-text-color);
    max-width: 710px;
    margin: 0 auto;
}

#cashback_section_4 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: var(--primary-text-color);
    max-width: 713px;
    margin: 11px auto 0;

}

#cashback_section_4 img {
    box-shadow: 0px 14px 24px 0px #0021821A;
    margin: 34px auto 0;
    width: 1037px;
}

#cashback_section_5 {
    padding: 77px 0 74px;
}

#cashback_section_5 .cashback_section_5_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 100px;
}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper {
    width: 294px;
    max-width: 100%;
    position: sticky;
    top: 121px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper {
    width: 752px;
    max-width: 100%;
}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: var(--black);
    padding-bottom: 17px;
    border-bottom: 3px solid #4B0082;
}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper .anchors {
    margin-top: 30px;
}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper .anchors a {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    padding: 10px;
    display: inline-block;
    width: 100%;
}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper .anchors a.active {
    border-right: 3px solid #4B0082;
    font-weight: 500;

}

#cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper .anchors a:hover {
    opacity: 0.9;
    border-right: 3px solid #4B0082;

}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    text-align: left;
    color: var(--primary-text-color);
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 19px 0 0 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content h5 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 25px 0 0 0;
    padding-left: 15px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content h5::before {
    content: url("../assets/tick-icon.svg");
    position: relative;
    top: 5px;
    left: -15px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    margin: 24px 0 0 0;
    text-align: left;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content p:empty {
    margin: 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content ul {
    margin: 3px 0 0 0;
    padding: 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 18px 0 0 0;
    position: relative;
    padding-left: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content ul li::before {
    content: url("../assets/tick-icon.svg");
    position: relative;
    top: 0;
    left: 0px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content hr {
    margin: 40px 0 40px;
    border: 1px solid #4B0082;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content blockquote {
    width: 100%;
    border-radius: 10px;
    background: var(--secondary-bg-color);
    border-left: 5px solid var(--primary-bg-color-light);
    padding: 24px 24px 40px;
    margin: 29px 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content blockquote p {
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    margin: 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box {
    width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 17px 34px 17px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 35px 0 30px;
    background: var(--secondary-bg-color);
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box .top_content_text {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-text-color);

}


#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box .back_top_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-bg-color-light);
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box .back_top_text::after {
    content: url("../assets/up-top-icon.svg");
    position: relative;
    top: 3px;
    right: -10px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card:first-of-type {
    margin-top: 0;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 52px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card .left_card {
    padding-right: 45px;

}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card img {
    margin: 0 auto;
    width: 75px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card .text {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: var(--primary-text-color);
    margin: 12px auto 0;

}


#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card .short_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: var(--primary-text-color);
    margin: 7px auto 0;
    max-width: 242px;
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .right_card .title {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 12px auto 0;

}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .right_card .description {
    padding-left: 25px;
    margin-top: 17px;
    border-left: 3px solid var(--primary-bg-color-light);
}

#cashback_section_5 .cashback_section_5_wrapper .content_wrapper .right_card .description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    max-width: 447px;
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper {}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap {
    border-bottom: 1px solid #D3D3D3;
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}


#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_head h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--primary-text-color);
    padding: 15px 0;
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_head:after {
    content: url("../assets/down.svg");
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_head.active:after {
    transform: rotate(180deg);
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_content {
    display: none;
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_content p:empty {
    padding: 0;
}

#cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding: 10px 0;
    color: var(--primary-text-color);
    max-width: 95%;
}

#cashback_section_5 .cashback_section_5_wrapper .methodology_description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
}


#author_section {
    padding: 0 0 64px 0;
}

#author_section h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary-text-color);

}

#author_section .author_wrapper {
    margin: 33px auto 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}


#author_section .author_wrapper .author_box {
    width: 378px;
    max-width: 100%;
    background: #FFFFFF;
    padding: 24px 10px 35px 25px;
    border-radius: 10px;
    border: 1px solid #DADADA;
}

#author_section .author_wrapper .author_box .top {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 19px;
}

#author_section .author_wrapper .author_box .top h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: var(--primary-bg-color-light);

}

#author_section .author_wrapper .author_box .top p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    margin: 7px 0 0 0;
}


#author_section .author_wrapper .author_box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--primary-text-color);
    margin: 16px 0 0 0;
}

/* ----------------- Single CSS End --------------------- */



/* ----------------- Blog Page Start --------------------- */

#blogs_banner_section {
    margin-top: var(--header-height);
    background: var(--primary-bg-color-light);
    padding: 84px 0 100px;
}


#blogs_banner_section h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--white);
}

#blogs_banner_section p {
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    text-align: center;
    color: var(--white);
    margin: 19px auto 0;
    max-width: 616px;
}

#blogs_main_section {
    padding: 70px 0 70px;
    background-color: var(--white);
}

#blogs_main_section .blogs_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

#blogs_main_section .blogs_wrapper .blog_card {
    max-width: 565px;
    width: 100%;
    min-height: 462px;
    background: #FFFFFF;
    box-shadow: 0px 14px 74px 0px #0021821A;
    border-radius: 5px;
    padding: 15px 15px 25px 15px;
    transition: .5s al ease-in-out;
}

#blogs_main_section .blogs_wrapper .blog_card:hover {
    box-shadow: 0px 14px 84px 0px #0021824D;
}

#blogs_main_section .blogs_wrapper .blog_card:hover .blog_info_box {
    border-left: 6px solid var(--primary-bg-color-light)
}

#blogs_main_section .blogs_wrapper .blog_card .blog_meta_box span:last-of-type {
    border-right: none;
    padding-right: 0px;
}

#blogs_main_section .blogs_wrapper .blog_info_box {
    padding-left: 26px;
    border-left: 6px solid var(--secondary-bg-color);
}

#blogs_main_section .blogs_wrapper .blog_card .blog_meta_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 24px 0 0 0;
}

#blogs_main_section .blogs_wrapper .blog_card .blog_meta_box span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: var(--fourth-text-color);
    border-right: 1px solid var(--fourth-text-color);
    padding-right: 10px;
}



#blogs_main_section .blogs_wrapper .blog_card h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--primary-text-color);
    margin: 3px 0 0 0;
    max-width: 427px;
}

#blogs_main_section .load_more_blog a {
    width: fit-content;
    min-height: 52px;
    border-radius: 5px;
    background: var(--primary-cta-bg-color);
    padding: 16px 24px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: var(--black);
    margin: 60px auto 0;
    display: block;
    transition: .5s all ease-in-out;
}

#blogs_main_section .load_more_blog a:hover {
    background: var(--secondary-cta-bg-color);
}

#single_blog_banner {
    margin-top: var(--header-height);
    background: var(--primary-bg-color-light);
    padding: 84px 0 60px;
}

#single_blog_banner .blog_single_banner_wrapper .category_text {
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
}

#single_blog_banner .blog_single_banner_wrapper h1 {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    text-align: center;
    color: var(--white);
    margin: 16px auto 0;
    max-width: 805px;
}

#single_blog_banner .blog_single_banner_wrapper .blog_single_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    margin: 21px auto 0;
}

#single_blog_banner .blog_single_banner_wrapper .blog_single_box p {
    border-right: 1px solid #FFFFFF;
    padding-right: 21px;
    font-weight: 400;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    color: var(--white);
}

#single_blog_banner .blog_single_banner_wrapper .blog_single_box p:last-of-type {
    padding-right: 0;
    border-right: none;

}


#single_blog_banner .blog_single_banner_wrapper .link_text p {
    font-weight: 400;
    text-align: center;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    color: var(--white);
    margin: 16px auto 0;

}


#single_blog_banner .blog_single_banner_wrapper .link_text a {
    font-weight: 400;
    text-align: center;
    font-size: var(--banner-description-font-size);
    line-height: var(--banner-description-line-height);
    color: var(--white);
    margin: 16px auto 0;
    text-decoration: underline;
}

#single_blog_banner .blog_single_banner_wrapper .link_text a:hover {
    opacity: 0.75;
}

#main_content_section {
    padding: 44px 0 0 0;
}

#main_content_section .content_box {
    max-width: 650px;
    margin: 0 auto;
}

#main_content_section .content_box h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--primary-text-color);
    margin: 35px 0 0 0;

}

#main_content_section .content_box h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: var(--primary-text-color);
    margin: 8px 0 0 0;

}

#main_content_section .content_box h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
    color: var(--primary-text-color);
    margin: 8px 0 0 0;
}

#main_content_section .content_box h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--primary-bg-color-light);
    margin: 50px 0 0 0;

}

#main_content_section .content_box img {
    margin-bottom: 20px;
}

#main_content_section .content_box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
    margin: 17px 0 0 0;
    text-align: left;
}

#main_content_section .content_box blockquote {
    border-left: 3px solid #4B0082;
    padding-left: 24px;
    margin: 50px auto 0;
}

#main_content_section .content_box blockquote p {
    margin: 0;
}

#main_content_section .content_box p span {
    color: #1D6FBC;
}

#main_content_section .content_box p a {
    color: #0051FF;
    text-decoration: underline;
}

#main_content_section .content_box p a:hover {
    opacity: 0.75;
}

#main_content_section .content_box p:empty {
    margin: 0;
}

#main_content_section .content_box p strong {
    font-weight: 600;
}

#main_content_section .content_box ol {
    margin: 3px 0 0 0;
    padding: 0 0 0 20px;
}

#main_content_section .content_box ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 15px 0 0 0;
    position: relative;
    padding-left: 10px;
    list-style: auto;
}

#main_content_section .content_box ol li::marker {
    font-weight: 600;
}

#main_content_section .content_box ul {
    margin: 3px 0 0 0;
    padding: 0;
}

#main_content_section .content_box ol li strong {
    font-weight: 600;
}

#main_content_section .content_box ol li span {
    color: #1D6FBC;
}

#main_content_section .content_box ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: var(--primary-text-color);
    margin: 15px 0 0 0;
    position: relative;
    padding-left: 25px;
}

#main_content_section .content_box ul li span {
    color: #1D6FBC;
}

#main_content_section .content_box ul li strong {
    font-weight: 600;
}

#main_content_section .content_box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: indigo;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 8px;
}

#main_content_section table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    border-radius: 8px;
    overflow: hidden;
}

#main_content_section table thead {
    background: var(--primary-bg-color-light);
    color: #fff;
}

#main_content_section table th {
    padding: 11px 10px 11px 15px;
    text-align: left;
    vertical-align: top;
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    color: var(--white);
    border-right: 1px solid #C7C7EE;

}

#main_content_section table th:last-of-type {
    border-right: none;
}

#main_content_section table td {
    padding: 11px 10px 11px 15px;
    text-align: left;
    vertical-align: top;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-text-color);
    border-right: 1px solid #C7C7EE;
    max-width: 160px;
}

#main_content_section table td a {
    color: #0051FF;
}

#main_content_section table td a strong {
    color: #0051FF;
    text-decoration: underline;

}

#main_content_section table td a:hover {
    opacity: 0.75;
}

#main_content_section table td:last-of-type {
    border-right: none;
}

#main_content_section table tbody tr:nth-child(odd) {
    background: #F8F8FE;
}

#main_content_section table tbody tr:nth-child(even) {
    background: #E6E6FA;
}

#main_content_section table td strong {
    color: var(--primary-text-color);
}

.about_box {
    margin: 60px auto 0;
    padding: 30px 40px 30px;
    background: #E6E6FA;
    border-radius: 10px;
    max-width: 650px;
    width: 100%;
}

.about_box #about_title {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    color: var(--primary-text-color);

}

.about_box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
    margin: 17px 0 0 0;
    text-align: left;
}


#single_blog_faq_section {
    padding: 76px 0 86px;
    background: #DBCCE6;
    margin-top: 76px;
}

#single_blog_faq_section h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: var(--primary-text-color);
    margin: 0 auto 40px;
}

#single_blog_faq_section .faq_wrap {
    width: 650px;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 24px 54px 0 #0000001A;
    background: #FFF;
    margin: 20px auto 0;
    padding: 15px 27px;
}

#single_blog_faq_section .faq_wrap .faq_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#single_blog_faq_section .faq_wrap .faq_head h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: var(--primary-text-color);
}

#single_blog_faq_section .faq_wrap .faq_head:after {
    content: url("../assets/down.svg");
    margin-left: 15px;
}

#single_blog_faq_section .faq_wrap .faq_head.active:after {
    transform: rotate(180deg);
    margin-left: 15px;
}

#single_blog_faq_section .faq_wrap .faq_content {
    display: none;
}

#single_blog_faq_section .faq_wrap .faq_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding: 10px 0;
    color: var(--primary-text-color);
    max-width: 573px;
}

#single_blog_faq_section .faq_wrap .faq_content p:empty {
    padding: 0;
}








#related_blogs_section {
    padding: 70px 0 97px;
    width: 100%;
}

#related_blogs_section .no_blogs {
    font-weight: 600;
    font-size: var(--banner-title-font-size);
    line-height: var(--banner-title-line-height);
    color: var(--primary-text-color);
    margin: 30px auto;
    text-align: center;

}

#related_blogs_section h3 {
    font-weight: 600;
    font-size: var(--main-font-size);
    line-height: var(--main-font-line-height);
    color: var(--primary-text-color);
    text-align: center;
}

#related_blogs_section .related_blogs_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    margin: 57px auto 0;
    flex-wrap: wrap;
}

#related_blogs_section .related_blogs_wrapper .blog_card {
    max-width: 565px;
    width: 100%;
    min-height: 462px;
    background: #FFF;
    box-shadow: 0 14px 74px 0 #0021821A;
    border-radius: 5px;
    padding: 15px 15px 25px 15px;
    transition: .5s al ease-in-out;
}

#related_blogs_section .related_blogs_wrapper .blog_card .blog_info_box {
    padding-left: 26px;
    border-left: 6px solid var(--secondary-bg-color);
}

#related_blogs_section .related_blogs_wrapper .blog_card .blog_meta_box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 24px 0 0 0;
}

#related_blogs_section .related_blogs_wrapper .blog_card .blog_meta_box span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: var(--fourth-text-color);
    border-right: 1px solid var(--fourth-text-color);
    padding-right: 10px;
}

#related_blogs_section .related_blogs_wrapper .blog_card h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: var(--primary-text-color);
    margin: 3px 0 0 0;
    max-width: 427px;
}

#related_blogs_section .related_blogs_wrapper .blog_card:hover {
    box-shadow: 0px 14px 84px 0px #0021824D;
}

#related_blogs_section .related_blogs_wrapper .blog_card:hover .blog_info_box {
    border-left: 6px solid var(--primary-bg-color-light)
}

#related_blogs_section .related_blogs_wrapper .blog_card .blog_meta_box span:last-of-type {
    border-right: none;
    padding-right: 0px;
}










/* ----------------- Blog Page End --------------------- */









/* --------------------------  Media Queries  ------------------ */
@media (max-width: 1510px) {}

@media (max-width: 1400px) {
    #related_blogs_section .related_blogs_wrapper {
        gap: 20px;
    }

    #related_blogs_section .related_blogs_wrapper .blog_card {
        max-width: 545px;
    }

    #blogs_main_section .blogs_wrapper {
        gap: 20px;
    }

    #blogs_main_section .blogs_wrapper .blog_card {
        max-width: 545px;
    }

    #author_section .author_wrapper {
        gap: 15px;
    }

    #author_section .author_wrapper .author_box {
        width: 360px;
    }

    #author_section .author_wrapper {
        align-items: stretch;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }













}

@media (max-width: 1200px) {
    :root {
        --main-font-size: 36px;
        --main-font-line-height: 46px;
        --banner-title-font-size: 52px;
        --banner-title-line-height: 62px;
    }

    .nav-list {
        gap: 10px;
    }


    #home_section_2 {
        padding: 40px 40px 40px 40px;
        gap: 25px;
    }

    #home_section_4 {
        padding: 40px 40px 40px 40px;
        gap: 25px;
    }

    #home_section_2 .left_wrapper {
        max-width: 510px;
    }

    #home_section_2 .right_wrapper {
        max-width: 360px;
    }

    #home_section_4 .left_wrapper {
        max-width: 406px;
    }

    #related_blogs_section .related_blogs_wrapper .blog_card {
        min-height: auto;
    }

    #blogs_main_section .blogs_wrapper .blog_card {
        min-height: auto;
    }

    #cashback_section_1 .table_data_box_wrapper .table_box .button p:first-of-type a {
        padding: 12px 20px 12px 20px;
    }

    #cashback_section_1 .table_data_box_wrapper .table_box {
        gap: 15px;
    }

    #cashback_section_1 .table_data_box_wrapper .table_box .box {
        width: 30%;
    }

    #cashback_section_2 .cashback_section_2_wrapper {
        gap: 30px;
        padding: 25px 30px 25px 30px;
    }

    #cashback_section_2 .cashback_section_2_wrapper p {
        max-width: 520px;
    }


    #cashback_section_1 .table_data_box_wrapper .table_box .box:nth-child(2) {
        width: 40%;
    }






}



@media (min-width: 992px) {
    .header .nav-wrap #menu-item-335:hover>.sub-menu {
        display: flex;
    }

    .header .nav-wrap #menu-item-335:hover .sub-menu #menu-item-336:hover .sub-menu {
        display: flex;
    }
}


@media (max-width: 992px) {

    .hamburger {
        display: block;
    }

    .nav-wrap {
        position: fixed;
        left: 0;
        transform: translateY(-100%);
        background: var(--black);
        transition: all 0.5s linear;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 20px 0 30px;

    }

    .nav-wrap.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 99;
        top: 82px;
        left: 0;
    }

    .nav-list .current-menu-item a {
        width: fit-content;
        background: none;
        font-weight: 600;
        padding: 0;
    }

    .header .nav-wrap .cta-box {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .nav-wrap .cta-button {
        width: 140px;
        height: 48px;
        background: #fff;
        color: rgba(44, 44, 44, 1);

    }

    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        gap: 0px;
        max-width: 100%;
    }

    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        padding: 10px 0px;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav-wrap .menu-item-335 .sub-menu {
        display: none;
        flex-direction: column;
        padding: 0;
        position: relative;
        top: 12px;
        right: -20px;
        width: 285px;
        border-radius: 7.348px;
        border: 1.196px solid #353634;
        background: #FFF;
        box-shadow: 0px 0px 13.13px 1.31px rgba(255, 255, 255, 0.30);
        width: 97%;
    }

    .header .nav-wrap .menu-item-335 .sub-menu li {
        width: 100%;
    }

    .header .nav-wrap .menu-item-has-children:after {
        content: none;
    }

    .header .nav-wrap .menu-item-has-children #menu-item-336.current-menu-item::after {
        content: none;
    }

    .header .nav-wrap .menu-item-has-children #menu-item-336::after {
        content: none;

    }

    .nav-list li a {
        color: #fff !important;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li a::after {
        background-color: #FFF;
    }

    .nav-list .current-menu-item::after {
        left: -7%;
        bottom: 16px;
    }

    .nav-list li.with-submenu {
        display: block;
    }

    .nav-list li.with-submenu::after {
        border-color: #FFF;
        right: 10px;
        top: 12px;
    }

    .nav-list li.with-submenu:hover::after {
        transform: rotate(45deg);
        margin-top: 0;
    }

    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }

    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }

    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }

    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }

    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }

    .row-wrap .nav-wrap .button {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    .row-wrap .nav-wrap .button a {
        max-width: 160px;
        height: 48px;
        padding: 0 20px;
        width: 100%;
        font-size: 14px;

    }

    .nav-wrap.is-open .menu-header-container {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .current-menu-item {
        background-color: transparent;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .current-menu-item a {
        color: #000 !important;
        font-weight: 700;
    }

    .header .nav-wrap .current-menu-item a {
        font-weight: 700;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .current-menu-item .sub-menu li a {
        font-weight: 400;
    }

    .header .nav-wrap .menu-item-335 .sub-menu li a {
        width: 80%;
        /* border: 1px solid red; */
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        top: 9px;
        right: -30px;
        left: 36px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        width: 94%;
        border-radius: 0;
        border: none;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu li:last-child {
        border-bottom: none;
    }

    /* Menu */

    .plusminus {
        width: 12px;
        height: 12px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 14px;
        pointer-events: none;
    }

    #menu-item-336 .plusminus {
        right: 10px;
        top: 16px;
    }


    .plusminus.active:before {
        transform: translatey(-50%) rotate(-90deg);
        opacity: 0;
    }

    .plusminus.active:after {
        transform: translatey(-50%) rotate(0);
    }

    .plusminus:before {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }

    .plusminus:after {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }

    /* #menu-item-335 .submenu #menu-item-336.plusminus:before {
        background-color: #000 !important;
    }

    #menu-item-335 .submenu #menu-item-336.plusminus:after {
        background-color: #000 !important;
    } */

    .sub-menu .plusminus:before {
        background-color: #000 !important;
        /* Black color for the second plusminus icon */
    }

    .sub-menu .plusminus:after {
        background-color: #000 !important;
        /* Black color for the second plusminus icon */
    }

    .plusminus:before {
        transform: translatey(-50%);
    }

    .plusminus:after {
        transform: translatey(-50%) rotate(90deg);
    }


    /* ENds */

    :root {
        --banner-title-font-size: 50px;
        --banner-title-line-height: 60px;
        --header-height: 80px;
    }

    #home_section_2 {
        padding: 30px 30px 40px 30px;
        gap: 25px;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        max-width: 620px;
    }

    #home_section_4 {
        padding: 30px 30px 30px 30px;
        gap: 25px;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        max-width: 620px;
    }



    #home_section_3 h2 {
        text-align: center;
    }


    footer .footer_wrapper {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    footer .footer_wrapper h6 {
        margin: 15px 0 0;
        /* text-align: center; */
    }


    footer .footer_wrapper p {
        /* text-align: center; */
    }

    /* footer .footer_wrapper .footer_logo {
        margin: 0 auto;
    } */

    footer {
        padding: 30px 0;
    }


    #home_banner_section .cards_wrapper .card {
        margin: 32px 10px 50px;
        box-shadow: 0px 14px 20px 0px #00218233;
    }

    .row-wrap .logo-wrap a img {
        width: 150px;
    }

    #home_section_1 .images_wrapper {
        gap: 30px;
    }

    #cashback_section_1 .cashback_table {
        width: 100%;
        overflow-x: auto;
        padding: 0 0 20px 0;
    }

    #cashback_section_1 .table_heading_box {
        min-width: 900px;
        white-space: nowrap;
    }

    #cashback_section_1 .table_data_box_wrapper {
        min-width: 900px;
        white-space: nowrap;
    }

    #cashback_section_1 .table_data_box_wrapper .table_box span {
        white-space: normal;
    }

    #cashback_section_1 .table_heading_box .table_heading {
        font-size: 16px;
        line-height: 26px;
    }

    #cashback_section_1 h2 {
        text-align: center;
    }

    #cashback_section_2 .cashback_section_2_wrapper {
        padding: 25px 30px 25px 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #cashback_section_2 .cashback_section_2_wrapper p {
        max-width: 100%;
    }

    #cashback_section_3 .card_wrapper .card_box {
        padding: 70px 20px 10px 20px;
    }


    #cashback_section_3 .card_wrapper .card_box .card_info_box {
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    #cashback_section_3 .card_details_box .box p span {
        font-size: 16px;
        line-height: 26px;
    }

    .info_icon_wrap::after {
        padding: 4px 4px;
        font-size: 10px;
        line-height: 16px;
        white-space: normal;
    }





}

@media (max-width: 768px) {
    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        width: 92%;
    }

    .header .nav-wrap .cta-box {
        max-width: 540px;
    }

    .nav-wrap.is-open .menu-header-container {
        max-width: 540px;
    }

    .row-wrap .nav-wrap .button {
        max-width: 540px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu {
        width: 97%;
    }

    .nav-wrap.is-open {
        height: auto;
        overflow-y: scroll;
        max-height: 480px;
    }

    .upper-row-wrap .box h4 {
        font-size: 10px;
    }

    .upper-row-wrap .box a {
        font-size: 12px;
    }

    .upper-row-wrap .box img {
        height: 12px;
    }

    .upper-row-wrap .box .mail {
        gap: 10px;
        margin-left: 0px;
    }

    #cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper {
        gap: 25px;
        flex-wrap: wrap;
    }

    #cashback_section_3 .card_details_box .box:nth-child(1) {
        width: 50%;
        border-bottom: 1px solid #D3D3D3;
    }

    #cashback_section_3 .card_details_box .box:nth-child(2) {
        width: 50%;
        border-bottom: 1px solid #D3D3D3;
        border-right: none;
    }

    #cashback_section_3 .card_details_box .box {
        width: 50%;
        padding: 0 10px 24px 26px;
        border-right: 1px solid #D3D3D3;
    }

    #cashback_section_3 .card_details_box .box:nth-child(3) {
        padding: 22px 15px 24px 0px;
    }

    #cashback_section_3 .card_details_box .box:nth-child(4) {
        border-bottom: 1px solid #D3D3D3;
        border-right: none;
        padding: 22px 15px 24px 26px;
    }

    #cashback_section_3 .card_details_box .box:nth-child(5) {
        width: 50%;
        padding: 22px 15px 24px 0px;
        border-top: 1px solid #D3D3D3;
    }

    #cashback_section_3 .card_details_box .box:nth-child(6) {
        width: 50%;
        padding: 22px 15px 24px 26px;
        border-top: 1px solid #D3D3D3;
        border: none;
    }

    #cashback_section_3 .card_details_box .box:nth-child(7) {
        width: 100%;
        border-top: 1px solid #D3D3D3;
        padding: 22px 15px 24px 0px;
        border-right: none;
    }

    #cashback_section_3 .card_wrapper .card_box .card_info_box .content_wrapper h4 {
        font-size: 24px;
        line-height: 34px;
    }

    #cashback_section_5 .cashback_section_5_wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
        flex-direction: column;
    }

    #cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper {
        position: static;
    }

    #cashback_section_5 .cashback_section_5_wrapper .sidebar_wrapper .anchors {
        margin-top: 10px;
    }

    #cashback_section_4 {
        padding: 70px 0 70px;
    }

    #cashback_section_5 {
        padding: 70px 0 70px;
    }


}




@media (max-width: 576px) {
    :root {
        --main-font-size: 30px;
        --main-font-line-height: 40px;
        --banner-title-font-size: 40px;
        --banner-title-line-height: 50px;
        --banner-description-font-size: 16px;
        --banner-description-line-height: 26px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        left: 10px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        width: 95%;
    }

    .header .nav-wrap .cta-box {
        padding: 0 20px;
    }

    .nav-wrap.is-open .menu-header-container {
        padding: 0 15px;

    }

    .header {
        height: auto;
    }


    .nav-list li a {
        font-size: 16px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu li a {
        font-size: 15px;
    }

    .row-wrap .nav-wrap .button {
        padding: 0 20px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu {
        width: 97%;
    }

    .row-wrap .logo-wrap h6 {
        font-size: 12px;
        max-width: 240px;
    }

    .upper-row-wrap .box h4 {
        display: none;
    }

    #home_banner_section .cards_wrapper {
        margin: 30px auto 0;
        max-width: 270px;
    }

    #home_banner_section .cards_wrapper .card {
        margin: 5px 25px 35px;
        box-shadow: 0px 14px 20px 0px #00218233;
    }

    #home_banner_section {
        margin-top: var(--header-height);
        padding: 50px 0 30px;
        background-color: var(--secondary-bg-color);
    }

    #home_section_4 form input[type='submit'] {
        font-size: 16px;
        line-height: 16px;
        padding: 16px 8px;
    }

    #home_section_2 {
        padding: 20px 15px 30px 15px;
    }

    #home_section_4 {
        padding: 30px 15px 20px 15px;

    }

    #home_section_4 form input {
        padding-left: 15px;
    }

    #home_section_4 form input::placeholder {
        font-size: 14px;
    }

    #home_banner_section .cards_wrapper .card p {
        font-size: 16px;
        line-height: 28px;
    }

    .image_box::before,
    .image_box::after {
        width: 14px;
        height: 14px;
        border: 1px solid white;
    }

    #thank_you_section .inner-box img {
        margin: 15px auto 0;
    }

    #thank_you_section .inner-box p {
        margin: 10px auto 0;
    }

    #thank_you_section {
        padding: 50px 0 20px;
    }

    #home_section_1 {
        padding: 30px 0 55px;
    }

    #home_section_3 {
        padding: 60px 0 70px;
    }

    .page-id-87 #home_section_1 {
        padding: 30px 0 20px;
    }

    #service_banner_section .banner_cards .cards p {
        font-size: 16px;
        line-height: 26px;
        margin: 15px auto 0;
    }

    #service_banner_section {
        padding: 50px 0 100px;
    }

    #blogs_banner_section {
        padding: 60px 0 70px;
    }

    #blogs_main_section .blogs_wrapper .blog_card {
        min-height: auto;
        padding: 15px 15px 20px 15px;
    }

    #blogs_main_section .blogs_wrapper .blog_card h4 {
        font-size: 26px;
        line-height: 36px;
    }

    #blogs_main_section .blogs_wrapper .blog_card .blog_meta_box span {
        font-size: 15px;
        line-height: 25px;
        padding-right: 8px;
    }

    #main_content_section .content_box .table_row {
        overflow-x: scroll;
    }

    #main_content_section table td {
        font-size: 14px;
        line-height: 16px;
    }

    #main_content_section table th {
        font-size: 14px;
        line-height: 16px;
    }

    #main_content_section table {
        margin: 30px 0 0;
    }

    #main_content_section .content_box h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 25px 0 0 0;
    }

    #main_content_section .content_box h3 {
        font-size: 22px;
        line-height: 32px;
    }

    #main_content_section .content_box h6 {
        font-size: 16px;
        margin: 25px 0 0 0;
    }

    #main_content_section .about_box #about_title {
        font-size: 24px;
        line-height: 34px;
    }

    #main_content_section {
        padding: 20px 0 0 0;
    }

    #related_blogs_section .related_blogs_wrapper {
        margin: 35px auto 0;
    }

    #main_content_section .about_box {
        margin: 50px auto 0;
    }

    #related_blogs_section .related_blogs_wrapper .blog_card h4 {
        font-size: 26px;
        line-height: 36px;
    }

    #single_blog_faq_section {
        padding: 60px 0 60px;
        background: #DBCCE6;
        margin-top: 60px;
    }

    #single_blog_faq_section h3 {
        font-size: 30px;
        line-height: 40px;
        margin: 0 auto 30px;
    }

    #single_blog_faq_section .faq_wrap {
        padding: 15px 21px;
    }

    #single_blog_faq_section .faq_wrap .faq_head h4 {
        font-size: 18px;
        line-height: 28px;
    }

    #single_blog_banner {
        padding: 60px 0 60px;
    }


    #related_blogs_section .related_blogs_wrapper .blog_card .blog_info_box {
        padding-left: 21px;
        border-left: 4px solid var(--secondary-bg-color);
    }

    #related_blogs_section .related_blogs_wrapper .blog_card:hover .blog_info_box {
        border-left: 4px solid var(--primary-bg-color-light);
    }

    #blogs_main_section .blogs_wrapper .blog_info_box {
        padding-left: 21px;
        border-left: 4px solid var(--secondary-bg-color);
    }

    #blogs_main_section .blogs_wrapper .blog_card:hover .blog_info_box {
        border-left: 4px solid var(--primary-bg-color-light);
    }

    #related_blogs_section {
        padding: 60px 0 70px;
    }

    #cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 52px;
        flex-direction: column;
    }

    #cashback_section_5 .cashback_section_5_wrapper .content_wrapper .expert_card .left_card {
        padding-right: 0;
    }

    #cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box .top_content_text {
        font-size: 18px;
        line-height: 28px;
        max-width: 210px;
    }

    #cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box .back_top_text {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
    }

    #cashback_section_5 .cashback_section_5_wrapper .content_wrapper .top_content_box {
        border-radius: 10px 10px 0 0;
        padding: 15px 20px 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 35px 0 30px;
        background: var(--secondary-bg-color);
    }

    #cashback_section_5 .cashback_section_5_wrapper .faq_card_wrapper .faq_wrap .card_head h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .about_box {
        padding: 30px 15px 30px;
        background: #E6E6FA;
    }

    .about_box #about_title {
        font-size: 26px;
        line-height: 36px;
    }


    @keyframes pulseYellow {
        0% {
            transform: translate(-50%, -50%) scale(1);
            background: #fff;
            border: 1px solid white;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.1);
            border: 4px solid white;
            background: #FFD700;
        }

        100% {
            transform: translate(-50%, -50%) scale(1);
            background: #fff;
            border: 1px solid white;
        }
    }
}