html, body{
    background-color: #FFFFFF;
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: 'IBM Plex Sans';
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
    font-style: normal;
    color: var(--black);
}
/* :root {
    --midnight-blue: #211252;
    --white: white;
    --663399: #684490;
    --linen: #fff0e5;
    --medium-purple: #9287b2;
    --peru: #e57e2c;
    --black: black;
} */
:root {
    --midnight-blue: #031c3a;
    --white: white;
    --663399: #9FDCE1;
    --linen: #D7EEF3;
    --medium-purple: #26619B;
    --peru: #2ab3c8;
    --black: #000000;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Eina04-Bold';
}
.c {
    max-width: 1440px;
}
.col_40 {
    width: 40%;
}
.col_60 {
    width: 60%;
}
.section_padding {
    padding: 60px 0;
}
.txt_center {
    text-align: center;
}
.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #FFFFFF;
}
.top-heading {
    background-color: var(--peru);
    text-align: center;
    padding: 2px;
}
.green-circle {
    background-color: #81c57f;
    border-radius: 20px;
    width: 4px;
    height: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.top-heading p {
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}
.bottom-heading {
    padding: 22px 0;
}
.bottom-heading .c {
    padding: 0 24px;
}
.bottom-heading .row {
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.bottom-heading .logo {
    height: auto;
    display: inline-block;
}
.bottom-heading .menu,
.bottom-heading .menu-header-menu-container {
    list-style: none;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
}
.bottom-heading .menu .menu-item {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin: 0 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Eina04-Bold';
}
.bottom-heading .menu .menu-item:hover {
    color: var(--peru);
    background-color: #e57e2c00;
}
.bottom-heading .menu .menu-item.menu-item-has-children {
    position: relative;
    padding-right: 25px;
}
.menu-item-has-children::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 8px;
    right: 8px;
    border-bottom: 2px solid #1E1E1E;
    border-right: 2px solid #1E1E1E;
    transform: rotate(45deg);
}
.current_page_item {
    color: var(--peru);
}
.bottom-heading .btn {
    vertical-align: middle;
}
.btn {
    border: 2px solid var(--peru);
    background-color: var(--peru);
    color: var(--white);
    border-radius: 4px;
    min-width: 170px;
    padding:8px 24px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}
.btn:hover {
    color: var(--peru);
    background-color: #e57e2c00;
}

.bottom-heading .menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.sub-menu {
    position: absolute;
    left: -20px;
    width: 285px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 20;
}
.bottom-heading .menu .menu-item .sub-menu li.menu-item {
    margin: 0;
    text-align: left;
    display: block;
}
.bottom-heading .menu .menu-item .sub-menu li.menu-item a {
    padding: 10px 20px;
    font-family: Worksans, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    display: block;
    text-align: left;
}
.burger-menu {
    display: none;
}

/* ----------------------------------- footer ----------------------------------- */

.footer {
    background-color: #53b4c9;
    padding: 65px 0 100px 0;
}
.footer .logo {
    width: 170px;
    height: auto;
    display: inline-block;
}
.f_logo_text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    transition: all .25s;
    display: block;
    margin-top: 15px;
}
.f_title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Eina04-Bold';
}
.footer .menu {
    list-style: none;
}
.footer .menu_item {
    color: var(--white);
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.4s ease;
    cursor: pointer;
}
.footer .menu_item:hover {
    color: var(--medium-purple);
    transform: translate(8px);
}
.footer .row {
    margin: 0 -50px;
    font-size: 0;
}
.footer .col {
    padding: 0 50px;
}
.bottom_footer {
    padding-top: 80px;
}
.footer .terms_policy {
    font-size: 12px;
    color: var(--white);
}
.footer .social_icons {
    text-align: right;
}
.footer .social_icon {
    font-size: 15px;
    color: var(--white);
    border: 2px solid var(--white);
    text-align: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    padding: 8px;
    margin-left: 15px;
}

.banner {
    background-color: var(--663399);
    height: 450px;
    padding: 80px 0 65px 0;
    position: relative;
    overflow: hidden;
}
.banner .c {
    position: relative;
}
.title_56 {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    font-family: 'Eina04-Bold';
}
.banner .desc {
    color: var(--white);
    font-size: 16px;
}
.title_56+.desc {
    margin-top: 30px;
}
.banner .btn {
    margin-top: 20px;
}
.banner .image {
    justify-content: flex-end;
    height: 100%;
    display: flex;
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.banner .image img{
    height: 123%;
}
.banner .mob_img {
    display: none;
}
.fin_img {
    width: 170px;
    margin-top: 10px;
    display: block;
}
.benefits-bar {
    background-color: #f6f8fa;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) -2px 5px 20px 0px;
}
.benefits-bar .row {
    font-size: 0;
    margin: 0 -12px;
}
.benefits-bar .col {
    padding: 0 12px;
}
.icon-wrapper {
    width: 22px;
    height: 22px;
}
.paragraph-small-2 {
    font-size: 14px;
    line-height: 1.5em;
}
.benefits-bar .icon-wrapper {
    display: inline-block;
    vertical-align: middle;
}
.benefits-bar .paragraph-small-2 {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
}
.title_36 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Eina04-Bold';
}
.base_section .c {
    max-width: 1560px;
    padding: 0 60px;
}
.base_section .desc,
.how_it_works_section .desc {
    margin-top: 20px;
}
.base_section .row {
    font-size: 0;
    margin: 0 -8px;
}
.base_section .col {
    padding: 0 8px;
    margin-top: 30px;
}
.service-card {
    border: 2px solid var(--peru);
    border-radius: 8px;
    padding: 15px;
}
.service-inner-div {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}
.service-card .title {
    font-family: 'Eina04-Bold';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.icon-m {
    width: 30px;
    height: 30px;
}
.service-card .desc {
    font-size: 14px;
    padding: 15px 0;
    line-height: 2;
    text-align: left;
    margin-top: 0;
}
.service-card .btn {
    width: 100%;
}
.how_it_works_section .row {
    font-size: 0;
    margin: 20px -20px 0;
}
.how_it_works_section .col {
    padding: 0 20px
}
.step_img_card .image {
    padding-top: 53%;
}
.step_img_card .bg_full {
    border-radius: 10px;
}
.step_img_card_details {
    padding-top: 15px;
}
.step_img_card_details .name {
    font-family: 'Eina04-Bold';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}
.step_img_card_details .desc {
    color: var(--midnight-blue);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}
.steps-number {
    background-color: var(--peru);
    color: var(--white);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    display: flex;
    position: absolute;
    inset: 16px auto auto 16px;
    font-size: 16px;
}
.faq_wrap {
    margin-top: 40px;
}
.accordion {
    list-style: none;
}
.accordion .toggle {
    display: block;
    cursor: pointer;
    background-color: #53b4c9;
    border-radius: 5px 0 5px 5px;
    padding: 18px;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Eina04-Bold';
    line-height: 1.2;
    position: relative;
    margin-bottom: 4px;
}
.accordion .toggle:after {
    content: '\2b';
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    top: 50%;
    right: 20px;
    font-size: 25px;
    transform: translateY(-50%);
}
.accordion .toggle.open::after {
    content: '\f068';
    font-weight: 900;
}
.accordion .inner {
    display: none;
    padding: 15px;
}
.accordion li+li {
    margin-top: 16px;
}
.img_with_content .row {
    font-size: 0;
}
.img_with_content .col {
    vertical-align: middle;
}
.img_with_content .col:first-child {
    padding-right: 110px;
}
.img_with_content .col:last-child {
    margin-bottom: 50px;
}
.img_with_content .desc {
    font-size: 16px;
    margin-top: 15px;
}
.img_with_content .btn {
    margin-top: 35px;
}
.img_with_cnt {
    padding-left: 5%;
    width: 100%;
    position: relative;
    left: -45px;
}
.background_img_with_cnt_image {
    background-color: var(--linen);
    border-radius: 10px;
    width: 50%;
    height: 90%;
    position: absolute;
    bottom: -15%;
    left: auto;
    right: -10%;
}
.img_with_cnt_image {
    width: 100%;
    position: relative;
    border-radius: 15px;
}
.plus-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 90%;
    left: auto;
    right: -4%;
    bottom: -6%;
}
.product_sec .c,
.product_related .c {
    padding: 0 85px;
}
.breadcrumb{
    margin-bottom: 24px;
}
.product_page .woocommerce-breadcrumb {
    color: var(--black);
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 24px;
}
.product_page .woocommerce-breadcrumb a {
    color: var(--black);
    position: relative;
    padding-right: 25px;
}
.product_page .woocommerce-breadcrumb a::before{
    content: '';
    position: absolute;
    top: 8px;
    right: 10px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #9287b2;
    border-bottom: 1px solid #9287b2;
    transform: rotate(-45deg);
}
.breadcrumb .bread-crumb .items{
    display: inline-block;
    color:#9287b2;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding:0px 10px;
}
.breadcrumb .bread-crumb .items+.items::before{
    content: '';
    position: absolute;
    top:9px;
    left:-5px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #9287b2;
    border-bottom: 1px solid #9287b2;
    transform: rotate(-45deg);
}
.breadcrumb .bread-crumb .items:first-child{
    padding-left: 0px;
}
.breadcrumb .bread-crumb .items:last-child{
    padding-right: 0px;
}
.product_sec .row {
    font-size: 0;
    margin: 0 -20px;
}
.product_sec .col {
    padding: 0 20px;
}
.summary .image {
    padding-top: 66.65%;
    margin-bottom:16px;
}
.buttons a:first-child{
    color:white;
    background-color: var(--peru);
}
.buttons a:last-child{
    color:var(--peru);
    background-color: transparent;
}
.buttons .site_btn{
    padding: 9px 30px;
    font-size: 16px;
    border-radius: 8px;
    margin: 0px 4px;
    display: inline-block;
    border: 2px solid var(--peru);
}
.product_sec .buttons{
    border-bottom: 1px solid #d2d2d7;
    margin-bottom: 30px;
    padding-top: 25px;
    padding-bottom: 25px; 
}
.summary h2 {
    color: var(--midnight-blue);
    letter-spacing: -.02em;
    font-family: 'Eina04-Bold';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 10px 0px;
}
.summary span {
    color:var(--peru);
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-family: 'Eina04-Bold';
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
}
.summary h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Eina04-Bold';
    color: #1e1e20;
}
.summary p {
    font-size: 16px;
    color: #1e1e20;
}
.summary ul {
    margin-bottom:10px;
    padding-left: 40px;
}
.summary ul li {
    margin-bottom:10px;
    list-style-type: disc;
    font-size: 16px;
}
.summary_grid .row {
    font-size: 0;
    margin: 0 -15px;
}
.summary_grid .col {
    padding: 0 15px;
    margin-top: 45px;
}
.tit_and_icon,
.desc_and_icon,
.cont_and_correct_ico {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}
.tit_and_icon .title {
    font-family: 'Eina04-Bold';
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: var(--midnight-blue);
}
.summary_grid .desc {
    color: var(--midnight-blue);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 24px;
    margin-top: 8px;
}
.product_card_outline {
    border: 2px solid var(--peru);
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 24px;
}
.sub_title {
    color: var(--peru);
    letter-spacing: -.01em;
    margin-bottom: 8px;
    font-family: 'Eina04-Bold';
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}
.title_32 {
    color: var(--midnight-blue);
    letter-spacing: -.02em;
    font-family: 'Eina04-Bold';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
}
.desc_and_icon {
    margin-top: 16px;
}
.desc_and_icon .desc {
    color: var(--midnight-blue);
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
}
.product_price_wrapper {
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    display: flex;
}
.price_discount {
    color: var(--medium-purple);
    font-size: 20px;
    line-height: 32px;
    text-decoration: line-through;
}
.price_original {
    color: var(--peru);
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.product_badge {
    background-color: var(--663399);
    color: #000;
    text-align: center;
    border-radius: 32px;
    margin-bottom: 4px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    display: inline-block;
}
.product_card_outline .btn {
    width: 100%;
    margin: 72px 0 24px;
}
.product_delivery {
    padding: 48px 32px;
    text-align: center;
}
.product_delivery .title {
    letter-spacing: -.02em;
    font-size: 18px;
    line-height: 1.5;
    color: var(--midnight-blue);
    font-family: 'Eina04-Bold';
    font-weight: 700;
}
.product_delivery .desc {
    color: var(--midnight-blue);
    text-align: center;
    letter-spacing: -.01em;
    font-size: 14px;
    line-height: 1.7;
}
.product_related .row{
    font-size: 0;
    margin: 16px -15px 0;
}
.product_related .col {
    padding: 0 15px;
    margin-top: 16px;
}
.content_caption {
    color: var(--midnight-blue);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
.prod_thumnail {
    display: block;
}
.prod_thumnail .image {
    padding-top: 66.6%;
}
.prod_thumnail .image .bg_full {
    border-radius: 8px;
}
.prod_details {
    margin-top: 20px;
    display: block;
}
.prod_details .title {
    color: var(--midnight-blue);
    font-family: 'Eina04-Bold';
    font-weight: 700;
    letter-spacing: -.02em;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 4px;
}
.prod_details .price {
    color: var(--medium-purple);
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
}
.img_and_cont {
    padding: 25px 0 40px;
}
.img_and_cont .c {
    max-width: 1500px;
    padding: 0 20px;
}
.img_and_cont .row {
    font-size: 0;
    margin: 0 -10px;
}
.img_and_cont .col {
    padding: 0 10px;
}
.img_and_cont .col:last-child {
    padding-right: 50px;
}
.img_and_cont .image {
    padding-top: 60.8%;
    max-width: 80%;
    margin: auto;
}
.cont_and_correct_ico {
    margin-top: 20px;
}
.cont_and_correct_ico .title {
    font-size: 16px;
    line-height: 1.7;
}
.product_sidebar {
    position: sticky;
    top: 80px;
}
.rouse_sec {
    background-color: var(--linen);
}
.rouse_sec .c {
    max-width: 1060px;
    margin: auto;
    padding: 0 60px;
}
.rouse_sec .row {
    font-size: 0;
    margin: 0 -8px;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.rouse_sec .col {
    padding: 0 8px 20px;
}
.qusetion_heading {
    background-color: var(--663399);
    border-radius: 5px 0 5px 5px;
    padding: 15px;
}
.question_heading_text {
    font-family: 'Eina04-Bold';
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--black);
}
.desc_and_img_question_holder {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}
.partner_image {
    width: 45px;
    height: 45px !important;
    display: block;
    border-radius: 50%;
}
.qusetion_description {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    display: flex;
}
.question_inner_div {
    overflow: hidden;
    height: 37px;
}
.read_more,
.read_less {
    font-size: 16px;
}
.read_less {
    display: none;
}
.faqs_read_more {
    gap: 5px;
    color: var(--peru);
    align-items: center;
    margin-top: 12px;
    text-decoration: none;
    display: flex;
}
.faqs_read_more_cross {
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    display: flex;
    position: relative;
}
.faqs_read_more_cross_line_1 {
    background-color: var(--peru);
    width: 100%;
    height: 2px;
}
.faqs_read_more_cross_line_2 {
    background-color: var(--peru);
    width: 2px;
    height: 100%;
    position: absolute;
}
.top_banner {
    color: var(--midnight-blue);
    padding-top: 10px;
    font-size: 12px;
    line-height: 1.5em;
}
.show_more_faq_btn {
    color: var(--peru);
    background-color: #e57e2c00;
    border: 2px solid var(--peru);
    border-radius: 4px;
    padding: 11px 25px;
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
}
.show_more_faq_btn:hover {
    color: var(--white);
    background-color: var(--peru);
}
.rouse_sec .show_more_faq_btn {
    margin-top: 40px;
}
.rouse_sec .btn {
    margin-top: 60px;
    min-width: 314px;
    padding: 16px 36px;
}
.product_sec .col.col_40 {
    position: sticky;
    top: 120px;
}
.woocommerce div.product div.summary {
    float: none;
    width: 100%;
}
.summary_form,
.woocommerce-breadcrumb,
.product_page.hide {
    display: none;
}
.product_page .woocommerce-breadcrumb,
.summary_form.show {
    display: block;
}
.summary_form.show {
    background-color: var(--linen);
    padding: 75px 0;
}
.summary_form .c {
    max-width: 752px;
    padding: 30px 38px;
    background-color: #FFFFFF;
    border-radius: 3px;
}
.summary_form .product_title.entry-title {
    color: #2c3345;
    word-break: break-word;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    font-size: 24px;
}
.summary_form .price,
.summary_form .product_meta,
.summary_form .quantity {
    display: none;
}
.summary_form .wcpa_field p,
.summary_form .wcpa_wrap .wcpa_field_label {
    color: #2c3345;
    font-weight: 500;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}
.summary_form h1.wcpa_field,
.summary_form h2.wcpa_field {
    color: #2c3345;
    font-weight: 600;
    font-size: 18px;
    font-family: "Inter", sans-serif;
}
.summary_form .wcpa_wrap .wcpa_group_field label {
    font-size: 15px !important;
    color: #2c3345 !important;
    font-family: "Inter", sans-serif;
}
.summary_form .wcpa_row.wcpa_row_index_2 {
    margin: 15px 0 0;
}
.summary_form .wcpa_row {
    margin-top: 15px;
}
.summary_form .single_add_to_cart_button {
    border: 1px solid var(--peru) !important;
    background-color: var(--peru) !important;
    min-width: 180px;
    height: 48px;
    font-size: 16px !important;
    font-weight: normal !important;
    font-family: "Inter", sans-serif;
}
.summary_form .single_add_to_cart_button:hover {
    background-color: #FFFFFF !important;
    color: var(--peru) !important;
}
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=text], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=url], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=date], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=time], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=number], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=email], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=tel], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=password], 
.summary_form .wcpa_wrap .wcpa_field_wrap input[type=datetime-local], 
.summary_form .wcpa_wrap .wcpa_field_wrap .wcpa_color_field, 
.summary_form .wcpa_wrap .wcpa_field_wrap select, 
.summary_form .wcpa_wrap .wcpa_field_wrap .wcpa_advanced_select .wcpa__control, 
.summary_form .wcpa_wrap .wcpa_field_wrap .wcpa_other_value input {
    color: #2c3345;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}
.summary_form .wcpa_wrap .wcpa_field_wrap {
    margin: 0 0 10px;
}
.desc ul {
    padding-left: 20px;
}
.mobile-menu {
    display: none;
}
.shop_c {
    padding: 0 100px;
}
.tit_desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}
.bg_linen_blue {
    background-color: var(--linen);
}
.base_section.bg_linen_blue .c {
    max-width: 1440px;
    padding: 0 120px;
}
.bg_linen_blue .service-card {
    border: none; 
    background-color: #FFF;
}
.toc_ul {
    list-style: none;
}
.hidden-faq {
    display: none;
}
.product-grid .summary {
    padding-top: 0;
    padding-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    background-color: #f6f8fa;
    padding: 25px 30px;
    box-shadow: rgba(0, 0, 0, 0.24) -2px 5px 20px 0px;
    border-radius: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link+.woocommerce-MyAccount-navigation-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #000;
}
.woocommerce form.login,
.woocommerce form.register {
    background-color: #f6f8fa;
    padding: 25px 30px;
    box-shadow: rgba(0, 0, 0, 0.24) -2px 5px 20px 0px;
    border-radius: 15px;
    border: none;
    max-width: 600px;
    margin: 30px auto;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-Button,
.woocommerce .button,
.wp-block-button__link {
    border: 2px solid var(--peru) !important;
    background-color: var(--peru) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-Button:hover,
.woocommerce .button:hover,
.wp-block-button__link:hover {
    color: var(--peru) !important;
    background-color: transparent !important;
}
.woocommerce-EditAccountForm.edit-account .woocommerce-Button {
    margin-top: 20px !important;
}
.woocommerce form input.input-text {
    color: #2c3345;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    border: 1px solid #c6d0e9;
    background-color: #FFFFFF;
    height: 45px;
    border-radius: 6px;
    line-height: 25px;
    padding: 5px 10px;
}
.woocommerce-EditAccountForm.edit-account fieldset {
    padding: 10px 20px 20px;
}
.woocommerce-info {
    border-top-color: var(--peru);
}
.woocommerce-info::before {
    color: var(--peru);
}
.woocommerce-account .woocommerce {
    padding: 60px 0;
}
.woocommerce-account .woocommerce h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.woocommerce-form__input-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #c6d0e9;
    background-color: #FFFFFF;
    vertical-align: middle;
}
.woocommerce-form__label-for-checkbox span {
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 400;
}
.checkout .woocommerce-billing-fields h3,
.checkout h3#order_review_heading,
.woocommerce-checkout .woocommerce-notices-wrapper,
.checkout .woocommerce-checkout-review-order-table thead,
.checkout .woocommerce-privacy-policy-text {
    display: none;
}
.woocommerce .checkout table.shop_table,
.checkout.woocommerce-checkout .woocommerce-checkout-payment {
    background-color: #FFFFFF !important;
    border-radius: 3px !important;
    border: none;
    max-width: 752px;
    padding: 30px;
    margin: auto;
}
.checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box {
    background-color: var(--peru) !important;
    color: #FFFFFF !important;
}
.checkout.woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid var(--peru);
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.woocommerce-checkout {
    background-color: var(--linen);
}
.woocommerce-checkout .checkout {
    padding: 60px 0;
}
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table tbody th, 
.woocommerce-checkout table.shop_table tfoot td, 
.woocommerce-checkout table.shop_table tfoot th {
    border-top: none;
}
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: none;
}
.woocommerce-checkout #payment {
	padding-left: 15px;
}
.tit_Sec {
    margin: 100px 0;
}
.title_40 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 600;
}
.tit_Sec .title_40 {
    color: #031c3a;
    text-align: center;
}
.about_iwc {
    border-radius: 16px;
    margin: 100px 0 120px 0;
}
.about_iwc .row {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    justify-content: center;
}
.about_iwc .row .col:first-child {
    padding: 40px 80px;
}
.about_iwc .title_32 {
    color: #FFF;
}
.about_iwc .desc {
    color: #FFF;
    margin-top: 25px;
}
.about_iwc .image {
    height: 100%;
}
.about_iwc .image .bg_full {
    border-radius: 0 16px 16px 0;
}
.who-we-are-learn-more {
    text-align: center;
    margin: 100px 0;
}
.who-we-are-learn-more img {
    width: 180px;
}
.who-we-are-learn-more .title_40 {
    margin-top: 45px;
    color: #031c3a;
}
.who-we-are-learn-more .desc {
    margin-top: 25px;
    color: #031c3a;
}
.who-we-are-learn-more .btn {
    color: #2ab3c8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    min-width: auto;
    padding: 10px;
    margin-top: 30px;
}
.who-we-are-learn-more .btn svg {
    margin-left: 10px;
}
.who-we-are-learn-more .btn:hover {
    text-decoration: underline;
}
.ship_address {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: #FFFFFF !important;
    padding: 10px;
}

.suggestions-box {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f0f0f0;
}


.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
    outline: 0;
    background-color: #fff;
    border: 1px solid hsla(0, 0%, 7%, .8);
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: 1em;
    height: 3.125em;
    line-height: 1em;
    margin: 0;
    min-height: 0;
    padding: 1em .5em;
    width: 100%;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
}
.woocommerce .col2-set, 
.woocommerce-page .col2-set{
    width: 60%;
    padding: 0 30px;
}
.woocommerce-checkout-review-order {
    width: 40%;
    padding: 0 30px;
}
.woocommerce-checkout .checkout {
    display: flex;
    margin: 0 -30px;
}
.product-name .product-quantity,.product-name .wcpa_cart_meta  {
    display: none;
}
.woocommerce-checkout #payment ul.payment_methods li img {
    top: 50%;
    transform: translateY(-50%);
}
.woocommerce .checkout table.shop_table, .checkout.woocommerce-checkout .woocommerce-checkout-payment {
    background-color: transparent !important;
    border: 1px solid hsla(0, 0%, 7%, .11);
    border-radius: 5px;
    padding: 0;
}
.cart-subtotal,
.order-total {
    border-top: 1px solid #c1d6da;
}
.woocommerce form .form-row {
    padding: 0;
    margin: 16px 0 0 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding: 0;
	font-size: 1em;
    color: #2b2d2f;
    font-weight: 400;
}
.woocommerce-additional-fields {
    margin-top: 30px;
}
.woocommerce form .form-row .input-text, .woocommerce-page form .form-row .input-text {
    height: 150px;
}
.wc_payment_methods.payment_methods li label {
	position: relative;
}
.wc_payment_methods.payment_methods li input[type=radio]+label:before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    content: '';
}
.wc_payment_methods.payment_methods li input[type=radio]:checked+label:after {
    position: absolute;
    left: -27px;
    width: 9px;
    height: 9px;
    background-color: var(--peru);
    border-radius: 50%;
    content: " ";
    top: 50%;
    transform: translateY(-50%);
}
.woocommerce-checkout #payment {
    margin-top: 20px;
}
.wc_payment_methods.payment_methods li.payment_method_ag_opayo_direct input[type=radio]+label:before {
    top: 2px;
    transform: none;
}
.wc_payment_methods.payment_methods li.payment_method_ag_opayo_direct input[type=radio]:checked+label:after {
    top: 5px;
    transform: none;
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method img {
    top: 0;
    transform: none;
    width: 150px;
}
.woocommerce .col2-set {
    width: 100%;
    padding: 0;
    display: flex;
}
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    padding: 0 20px;
    width: 50%;
}
.woocommerce-orders-table__cell-download_file {
    text-align: center;
}
.woocommerce-checkout.checkout {
    position: relative !important;
    margin: 0;
}
.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
}
.woocommerce .woocommerce-checkout .col2-set {
    width: 60%;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.woocommerce .woocommerce-checkout .col2-set .col-1, .woocommerce .woocommerce-checkout .col2-set .col-2 {
    padding: 0;
    width: 100%;
}
.woocommerce-checkout .woocommerce {
    padding-top: 60px;
}
.more_info_form {
    margin-top: 50px;
}
.more_info_form .form_group {
    display: flex;
    flex-direction: column;
}
.more_info_form .form_group + .form_group {
    margin-top: 30px;
}
.more_info_form .form_input {
    border: 1px solid #b8bdc9;
    max-width: 310px;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    margin-top: 15px;
}
.more_info_form textarea.form_input {
    width: 100%;
    height: 100px;
    max-width: none;
}
.form_label {
    font-size: 16px;
    font-weight: 500;
    color: #2c3345;
}
.form_sub_label {
    font-size: 12px;
    margin-top: 10px;
    margin-left: 2px;
    display: block;
    color: #2c3345;
}
.form_header {
    color: #2c3345;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    margin: 50px 0px 30px;
}
.qq-uploader {
    position: relative;
    margin-top: 15px;
}
.qq-upload-button {
    border: 1px dashed;
    border-radius: 4px;
    height: 150px;
    font-size: 18px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.qq-upload-button i {
    color: #b3bccd;
    margin-bottom: 10px;
    font-size: 28px;
}
.jfUpload-heading {
    font-size: 14px;
    color: #57647e;
    font-weight: 400;
    margin-top: 5px;
}
.jfUpload-heading.forDesktop {
    display: block;
}
.jfUpload-heading.forMobile {
    display: none;
}
.more_info_form .form_input.fileupload_input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    font-size: 0;
    margin: 0;
    max-width: none;
}
.item_list {
    position: relative;
    display: block;
    margin-top: 10px;
}
.item_label:before {
    width: 20px;
    height: 20px;
    border: 1px solid;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}
.form_radio:checked + .item_label:before {
    border-color: #53b4c9;
}
.item_label:after {
    top: 4px;
    left: 4px;
    width: 14px;
    height: 14px;
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #53b4c9;
    transform: scale(0);
    opacity: 0;
    transition: transform .2s, opacity .2s;
}
.form_radio:checked + .item_label:after {
    opacity: 1;
    transform: scale(1);
}
.item_label {
    padding-left: 30px;
    font-size: 15px;
    color: #2c3345;
    cursor: pointer;
}
.more_info_form .button {
    border: 1px solid var(--peru) !important;
    background-color: var(--peru) !important;
    color: var(--white) !important;
    min-width: 180px;
    margin: 50px 0 0;
    height: 48px;
    font-size: 16px !important;
    font-weight: normal !important;
}
.more_info_form .button:hover {
    background-color: #FFFFFF !important;
    color: var(--peru) !important;
}



.qq-upload-list {
    padding: 0;
    list-style: none;
}
.qq-upload-fail,
.qq-upload-success {
    margin-top: 10px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
}
.qq-upload-img-container,
.qq-upload-file,
.qq-upload-size {
    background-color: #dae6ff;
}
.qq-upload-img-container {
    padding: 8px;
    border-radius: 4px 0 0 4px;
}
.qq-upload-img-container img {
    padding: 6px;
    background: rgb(255, 255, 255);
    display: block;
    object-position: center;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid;
    width: 26px !important;
    height: 26px !important;
    border-color: #b5c2db;
}
.qq-upload-file {
    -ms-flex-positive: 1;
    flex-grow: 1;
    word-wrap: break-all;
    overflow: hidden;
    font-size: 14px;
    display: flex;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
}
.qq-upload-size {
    padding: 0 10px;
    margin-left: auto;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    font-weight: 500;
}
.qq-upload-delete {
    background-color: #dce5f6;
}
.qq-upload-delete {
    width: 32px;
    border-radius: 4px;
    margin-left: 10px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qq-upload-fail .qq-upload-file {
    background-color: #ffcece;
    color: #f23a3c;
}
.qq-upload-fail .qq-upload-delete {
    background-color: #ffcece;
    color: #f23a3c;
}
.qq-upload-fail .qq-upload-file {
    padding-left: 10px;
}
.p_relative {
    position: relative;
}
.d_none {
    display: none !important;
}
.error {
    border: 2px solid red !important;
}
button[disabled] {
    opacity: 0.7;
    pointer-events: none;
}
.pad_top_20 {
    padding-top: 20px;
}
.item_list .error {
    border: none  !important
}
.item_list .error + .item_label:before {
    border: 1px solid red;
}
.item_list .error-message {
    display: none;
}
.more_info_form .form_group a {
    text-decoration: underline;
    transition: all .3s;
}
.more_info_form .form_group a:hover {
    text-decoration: none;
}