/*
@font-face {
    font-family: 'PingFang';
    src: url('../fonts/ping-fang/PingFangSCRegular.woff2') format('woff2'),
        url('../fonts/ping-fang/PingFangSCRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PingFang';
    src: url('../fonts/ping-fang/PingFangSCBold.woff2') format('woff2'),
        url('../fonts/ping-fang/PingFangSCBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
*/


:root{
    /* variables for colors */

    --color-dark: #1D1D1D;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #E4E4E4;
    --color-body: var(--color-navy-75);
    --color-pink: #E22658;

    /* variables for fonts */
    --font-pingfang : 'PingFang', sans-serif;
    --body-font: var(--font-pingfang);
    --heading-font: var(--font-pingfang);
    --font-bold: bold;
}


/* reset css start */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
:focus, a:focus, a:active, a:hover, button, button:focus, button:hover, button:active {outline: 0; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block; }
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; }
table {border-collapse: collapse; border-spacing: 0;}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {-webkit-appearance: none; -moz-appearance: none; }
ul:not(.wp-block-list) {
    list-style-type: none;
}
input[type=search] {-webkit-appearance: none; -moz-appearance: none; }
textarea {overflow: auto; vertical-align: top; resize: vertical; }
audio, canvas, video {display: inline-block; *display: inline; *zoom: 1; max-width: 100%;}
audio:not([controls]) {display: none; height: 0;}
[hidden] {display: none;}
html {-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;scroll-behavior: smooth;}
img {border: 0;-ms-interpolation-mode: bicubic; max-width: 100%; vertical-align: middle;}
figure {margin: 0;}
form {margin: 0;}
fieldset {margin: 0; padding:0;}
legend {border: 0; padding: 0; white-space: normal; *margin-left: -7px;}
button, input, select, textarea {font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle;}
button, input {line-height: normal;}
button, select {text-transform: none;}
button, html input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance: button; cursor: pointer; *overflow: visible;}
button[disabled],
html input[disabled] {cursor: default;}
input[type="checkbox"], input[type="radio"] {-webkit-box-sizing: border-box;box-sizing: border-box; padding: 0; *height: 13px; *width: 13px;}
input[type="search"] {-webkit-appearance: textfield;}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner {border: 0; padding: 0;}
table {border-collapse: collapse; border-spacing: 0;}
html, button, input, select, textarea {color: var(--color-black); }
/* reset css end */


*,*:before,*:after{
  box-sizing: border-box;
}
/*reset defualt*/
::-moz-selection { background: var(--color-pink); color: #fff; }
::selection { background: var(--color-pink); color: #fff; }
:focus-visible{ outline: none !important; }
:-webkit-direct-focus{ outline: none !important; }

body{
    width: 100%;
    max-width: 100%;
    font-family: var(--body-font), -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    color: var(--color-black);
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 18px;
    line-height: auto;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* -moz-font-feature-settings: 'liga','kern'; */
    overflow-x: hidden;
    background-color: var(--color-white);
}
/* body.menu-open{
    overflow-y: hidden;
    padding-right: 17px;
} */
body > .site{
    overflow: hidden;
}
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
    line-height: auto;
    padding: 0;
    margin: 0;
    font-weight: normal;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    color: var(--color-navy);
}
h1,.h1{
    font-size: 56px;
    line-height: 1.08;
    margin-bottom: 20px;
}
h2,.h2{
    font-size: 48px;
    line-height: 1.16;
    margin-bottom: 20px;

}
h3,.h3{
    font-size: 40px;
    line-height: 1.2;

}
h4,.h4{
    font-size: 28px;
    line-height: 1.17;
}
h5,.h5{
    font-size: 21px;
    line-height: 1.42;
}
h6,.h6{
    font-size: 18px;
    line-height: 1.42;
}
p{
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.42;
}
p:last-of-type{
    margin-bottom: 0;
}


@media(max-width:1199px){
    body{
        font-size: 16px;
    }
    h1,.h1{
        font-size: 32px;
        line-height: 1.08;
    }
    h2,.h2{
        font-size: 40px;
        line-height: 1.16;
    }
    h3,.h3{
        font-size: 24px;
        line-height: 1.17;
    }
    h4,
    .h4 {
        font-size: 20px;
    }
    p {
        margin-bottom: 20px;
        font-size: 16px;
    }
}
@media(max-width:991px) {}


strong{
    font-weight: 600;
}
a{
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: all .5s;
}
a:hover{
    color: var(--color-orange);
}
dfn, cite, em, i {
    font-style: italic;
}
small{
    font-size: 12px;
    line-height: 1;
}

table{
  text-align: left;
  border-spacing: 0;
  font-size: 14px;
  font-family: var(--body-font);
}

table td,
table th{
  border-collapse: collapse;
  padding: 10px 8px;
  vertical-align: top;
}
table thead th{
  padding-bottom: 30px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea{
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-navy-2);
    height: 45px;
    background-color: var(--color-navy-2);
    border-radius: 4px;
    padding: 5px 10px;
    transition: all .5s;
}
textarea{
    height: 90px;
    resize: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus{
    border-color: var(--color-navy-50);
}


.replaced-svg *{
    transition: all .5s;
}

.tableWrap{
  overflow-x: auto;
}

.container{
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}
@media(min-width:576px){
    .container{
        padding: 0 50px;
    }
}
@media(min-width:768px){
    .container{
        max-width: 750px;
        padding: 0 15px;
    }
}
@media(min-width:992px){
    .container{
        max-width: 960px;
    }
}
@media(min-width:1200px){
    .container{
        max-width: 1140px;
    }
}

@media(min-width:1300px) {
    .container {
        max-width: 1230px;
    }
}



/*custom grid start*/
.row-wrap { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -20px; margin-left: -20px; }
[class*="box-"] { position: relative; width: 100%; padding-right: 20px; padding-left: 20px; }
.box { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; }
.row-wrap-boxs-1>* { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .row-wrap-boxs-2>* { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .row-wrap-boxs-3>* { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .row-wrap-boxs-4>* { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .row-wrap-boxs-5>* { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } .row-wrap-boxs-6>* { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .box-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; } .box-2 { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .box-4 { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .box-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .box-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .box-7 { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } .box-8 { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } .box-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .box-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; } .box-11 { -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; } .box-12 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; }
@media (min-width: 576px) { .box-sm { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .row-wrap-boxs-sm-1>* { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .row-wrap-boxs-sm-2>* { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .row-wrap-boxs-sm-3>* { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .row-wrap-boxs-sm-4>* { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .row-wrap-boxs-sm-5>* { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } .row-wrap-boxs-sm-6>* { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-sm-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .box-sm-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; } .box-sm-2 { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-sm-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .box-sm-4 { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .box-sm-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .box-sm-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .box-sm-7 { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } .box-sm-8 { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } .box-sm-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .box-sm-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; } .box-sm-11 { -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; } .box-sm-12 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } }
@media (min-width: 768px) {.row-wrap{margin-left: -15px;margin-right: -15px;} [class*="box-"]{padding-left: 15px;padding-right: 15px;}  .box-md { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .row-wrap-boxs-md-1>* { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .row-wrap-boxs-md-2>* { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .row-wrap-boxs-md-3>* { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .row-wrap-boxs-md-4>* { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .row-wrap-boxs-md-5>* { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } .row-wrap-boxs-md-6>* { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-md-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .box-md-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; } .box-md-2 { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-md-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .box-md-4 { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .box-md-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .box-md-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .box-md-7 { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } .box-md-8 { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } .box-md-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .box-md-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; } .box-md-11 { -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; } .box-md-12 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } }
@media (min-width: 992px) { .box-lg { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .row-wrap-boxs-lg-1>* { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .row-wrap-boxs-lg-2>* { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .row-wrap-boxs-lg-3>* { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .row-wrap-boxs-lg-4>* { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .row-wrap-boxs-lg-5>* { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } .row-wrap-boxs-lg-6>* { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-lg-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .box-lg-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; } .box-lg-2 { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-lg-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .box-lg-4 { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .box-lg-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .box-lg-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .box-lg-7 { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } .box-lg-8 { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } .box-lg-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .box-lg-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; } .box-lg-11 { -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; } .box-lg-12 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } }
@media (min-width: 1200px) { .box-xl { -ms-flex-preferred-size: 0; flex-basis: 0; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .row-wrap-boxs-xl-1>* { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .row-wrap-boxs-xl-2>* { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .row-wrap-boxs-xl-3>* { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .row-wrap-boxs-xl-4>* { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .row-wrap-boxs-xl-5>* { -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } .row-wrap-boxs-xl-6>* { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-xl-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100%; } .box-xl-1 { -ms-flex: 0 0 8.333333%; flex: 0 0 8.333333%; max-width: 8.333333%; } .box-xl-2 { -ms-flex: 0 0 16.666667%; flex: 0 0 16.666667%; max-width: 16.666667%; } .box-xl-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .box-xl-4 { -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } .box-xl-5 { -ms-flex: 0 0 41.666667%; flex: 0 0 41.666667%; max-width: 41.666667%; } .box-xl-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .box-xl-7 { -ms-flex: 0 0 58.333333%; flex: 0 0 58.333333%; max-width: 58.333333%; } .box-xl-8 { -ms-flex: 0 0 66.666667%; flex: 0 0 66.666667%; max-width: 66.666667%; } .box-xl-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .box-xl-10 { -ms-flex: 0 0 83.333333%; flex: 0 0 83.333333%; max-width: 83.333333%; } .box-xl-11 { -ms-flex: 0 0 91.666667%; flex: 0 0 91.666667%; max-width: 91.666667%; } .box-xl-12 { -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } }
/*custom grid end*/

/* custome classes */

/* bg color */

/* aligment */
.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }


/* slick */
.slick-track:before,
.slick-track:after{
    display: block;
}
.slick-track{
    display: flex;
}
.slick-slide{
    height: auto;
}
.slick-dots{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.slick-dots li{
    display: inline-flex;
    vertical-align: top;
}
.slick-dots button{
    width: 15px;
    height: 15px;
    background-color: var(--color-navy-25);
    border-radius: 30px;
    border: none;
    font-size: 0;
    margin: 0;
}
.slick-dots .slick-active button{
    background-color: var(--color-navy);
}


/* wysiwyg style */
.wysiwyg-content h1 strong,
.wysiwyg-content h2 strong,
.wysiwyg-content h3 strong,
.wysiwyg-content h4 strong,
.wysiwyg-content h5 strong,
.wysiwyg-content h6 strong{
    color: var(--color-pink);
}
/* .wysiwyg-content p:not(:last-of-type){
    margin-bottom: 30px;
} */
.wysiwyg-content p{
    margin-bottom: 0;
}
.wysiwyg-content p ~ p{
    margin-top: 30px;
}


.wysiwyg-content figure{
    margin: 30px 0;
}
.wysiwyg-content figure img{
    width: 100%;
    object-fit: cover;
}
.comments-area ul,
.comments-area ol,
.wysiwyg-content ul,
.wysiwyg-content ol{
    margin: 30px 0;
    padding-left: 28px;
}
.comments-area ol,
.wysiwyg-content ol{
    padding-left: 15px;
}
.wysiwyg-content li:not(:last-of-type){
    margin-bottom: 3px;
}
.wysiwyg-content ul li{
    position: relative;
    list-style: none;
}
.wysiwyg-content ul li:before {
    width: 5px;
    height: 5px;
    content: "";
    position: absolute;
    left: -17px;
    top: 11px;
    border-radius: 20px;
    background-color: var(--color-black);
}
.wysiwyg-content a{ text-decoration: underline; }
.wysiwyg-content a:hover { color: var(--color-pink); }

/* accordion */
.accordion-wrap .inner{ display: none; padding-top: 16px; }
.accordion-wrap .toggle{ position: relative; padding-right: 47px; cursor: pointer; margin: 0; }
.accordion-wrap .toggle::after{ width: 18px; height: 18px; position: absolute; top: 50%; transform: translateY(-50%); right: 5px; content: ""; background-image: url(../images/plus-icon-black.svg); background-repeat: no-repeat; background-size: contain; background-position: center center; }
.accordion-wrap .toggle.active::after{ clip-path: inset(calc(50% - 1px) 0 calc(50% - 1px) 0); }

/* button style */
.form-container button,
.cta-button,
.submit{
    display: inline-block;
    text-align: center;
    font-size: 16px;
    line-height: 1.42;
    font-weight: 400 !important;
    font-family: var(--body-font);
    min-width: 100px;
    padding: 8px 20px !important;
    border-radius: 10px !important;
    color: var(--color-white) !important;
    background-color: var(--color-pink) !important;
    text-decoration: none !important;
    border: 1px solid var(--color-pink) !important;
    transition: all .3s;
    outline: none;
    text-transform: uppercase;
}
.form-container button:hover,
.cta-button:hover,
.submit:hover{
    background-color: var(--color-black) !important;
    border-color: var(--color-black) !important;
}
.cta-button.outline{
    background-color: transparent !important;
    color: var(--color-orange) !important;
}
.cta-button.outline.blue-button{
    background-color: transparent !important;
    color: var(--color-navy) !important;
    border-color: var(--color-navy) !important;
}
.cta-button.outline.white-button{
    background-color: transparent !important;
    color: var(--color-white) !important;
    border-color: var(--color-white) !important;
}
.cta-button.outline:hover{
    background-color: var(--color-orange) !important;
    color: var(--color-white) !important;
    border-color: var(--color-orange) !important;

}


/* form container */
.form-container form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-container .field-item > p{
    display: flex;
    flex-direction: column;
}
.form-container label{
    color: var(--color-navy);
    line-height: 1.49;
    margin-bottom: 5px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: red;
}
.form-container form .button-wrap{
    margin-top: 10px;
}
.form-container form .wpcf7-spinner{
    position: absolute;
    left: 50%;
    transform: scale(0.6) translateX(-50%);
    margin: 0;
    bottom: 4px;
}


/* custome classes end */


/*----------------------------------------------
site header section style start
-----------------------------------------------*/

.site-header{
    background-color: var(--color-white);
    z-index: 999;
    position: sticky;
    top: 0;
    border-bottom: 1px solid var(--color-gray-light);
}
.site-header.is-sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.site-header ul{
    list-style: none;
    margin: 0;
}
.header-wrap{
    align-items: center;
    height: 100px;
}
.menu-wrap{
    font-size: 14px;
}
.menu-wrap .arrow {
    cursor: pointer;
}
.enumenu_ul{
    display: none;
}
.menu-is-active .enumenu_ul {
    display: block !important;
    height: auto !important;
}
.menu-wrap .menu a:hover{color: var(--color-pink);}

@media(min-width:1200px){
    .menu-wrap .menu-icon {
        display: none;
    }
    .menu-wrap .menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }
    .menu-wrap .menu .sb-menu {
        position: absolute;
        top: 100%;
        z-index: 10;
        background-color: var(--color-black);
        color: var(--color-white);
        padding: 10px 0;
        border-radius: 0.4rem;
        border-radius: 4px;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
        transition: all .5s;
        min-width: 200px;
        right: 0;
    }
    .menu-wrap .menu .sb-menu:before{
        content: "";
        width: 0;
        height: 0;
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-bottom: 13px solid black;
        top: -8px;
        left: 8px;
        position: absolute;
        left: auto;
        right: 8px;
    }
    .menu-wrap .menu li:last-of-type .sb-menu{
        left: auto;
        right: 0;
        &:before{
            left: auto;
            right: 8px;
        }
    }
    .menu-wrap .menu .sb-menu li a{
        padding: 5px 20px;
        display: block;
    }

    .menu-wrap .menu>li.has-children {
        display: flex;
        gap: 10px;
        position: relative;
    }
    .menu-wrap .menu>li.has-children > a {
        position: relative;
        padding-right: 25px;
    }
    .menu-wrap .menu > li.has-children > a:before{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        content: "";
        background-image: url(../images/menu-arrow-down.svg);
        background-position: center center;
        background-repeat: no-repeat;
    }
    .menu-wrap .menu > li.has-children.hover > a:before {
        transform: translate(180deg) translateY(-50%);
    }
    .menu-wrap .menu >li >a{
        padding: 20px 0;
        display: block;
    }
    .menu-wrap .menu>li.has-children.hover .sb-menu {
        opacity: 1;
        pointer-events: fill;
        transform: translateY(0);
    }
}

@media(max-width:1299px){
    .menu-wrap .menu-icon {
        cursor: pointer;
    }
    .logo-wrap a{
        display: inline-block;
        max-width: 200px;
    }
    .menu-wrap .menu{
        gap: 10px;
    }
    .menu-wrap .menu>li.has-children>a{
        padding-right: 20px;
    }
    .menu-wrap .menu>li.has-children>a:before{
        background-size: 12px;
    }
}

@media(max-width:1199px){
    .menu-wrap{ display: flex; justify-content: flex-end; }
    .menu-icon .menu-box span{ width: 20px; height: 3px; background-color: var(--color-black); display: block; margin: 4px auto; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
    .hamburger:hover { cursor: pointer; }
    /* ONE */
    .menu-icon.active .menu-box span:nth-child(2) { opacity: 0; }
    .menu-icon.active .menu-box span:nth-child(1) { -webkit-transform: translateY(7px   ) rotate(45deg); -ms-transform: translateY(7px   ) rotate(45deg); -o-transform: translateY(7px    ) rotate(45deg); transform: translateY(7px   ) rotate(45deg); }
    .menu-icon.active .menu-box span:nth-child(3) { -webkit-transform: translateY(-7px  ) rotate(-45deg); -ms-transform: translateY(-7px  ) rotate(-45deg); -o-transform: translateY(-7px   ) rotate(-45deg); transform: translateY(-7px  ) rotate(-45deg); }
    .enumenu_ul.mob{ position: fixed; top: 0; left: 0; width: 100%; background-color: var(--color-white); z-index: -1; padding-top: 64px !important; opacity: 0; pointer-events: none; transform: translateY(5px); transition: all .5s; box-shadow: 0 0 10px rgba(0, 0, 0, .1); }
    .enumenu_ul.mob:before { content: ""; position: absolute; left: 0; top: 64px; width: 100%; height: calc(100% - 64px); box-shadow: 0 4px 10px rgba(0, 0, 0, .1); background-color: var(--color-white); border-top: 1px solid rgba(0, 0, 0, .1); }
    .enumenu_ul.mob:after { content: ""; position: fixed; left: 0; top: 0; width: 100%; height: 64px; background-color: var(--color-white); }
    .menu-open .enumenu_ul.mob { opacity: 1; transform: translateY(0); pointer-events: fill; }
    .menu-open{ overflow: hidden; }
    .enumenu_ul.mob .inner-wrap { max-width: 960px; margin: 0 auto; padding: 0 15px; position: relative; overflow-y: auto; max-height: calc(100vh - 64px); }
    .menu-wrap .menu{ display: flex; gap: 0; flex-direction: column; }
    .menu-wrap .menu > li{ position: relative; font-size: 14px; padding: 16px 0; padding-right: 30px; border-bottom: 1px solid rgba(0, 0, 0, .1); }
    .menu-wrap .menu>li:last-of-type { border: none; }
    .menu-wrap .menu>li .arrow.up + a, .menu-wrap .menu>li a:hover{ color: var(--color-pink); }
    .menu-wrap .menu .arrow { position: absolute; width: 25px; height: 35px; top: 9px; right: 0px; background-image: url(../images/menu-arrow-down.svg); background-position: center center; background-repeat: no-repeat; background-size: 13px; }
    .menu-wrap .menu .arrow.up { transform: rotate(180deg); }
    .sb-menu{ padding: 20px 0 0; }
    .sb-menu li{ margin-bottom: 10px; }
    .header-wrap{ height: 64px; }
    .logo-wrap a{ max-width: 140px; vertical-align: top; }
}
/*----------------------------------------------
site header section style end
-----------------------------------------------*/

/*----------------------------------------------
hero-banner section style start
-----------------------------------------------*/
section{ position: relative; }
.bg-wrap{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-position: center; background-repeat: no-repeat; background-size: cover; background-color: #eee; }
.has-overlay .bg-wrap:before{ content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: var(--color-black); opacity: .5; }
.hero-banner{ padding: 100px 0; color: var(--color-white); min-height: 562px; display: flex;align-items: center; text-align: center; }
.hero-banner .content-wrap{ max-width: 690px; margin: 0 auto; }
.hero-banner .content-wrap h1{ margin-bottom: 25px; }

@media(max-width:767px){
    .hero-banner{ min-height: 594px; }
}
/*----------------------------------------------
hero-banner section style end
-----------------------------------------------*/
.card-counter{ text-align: center; background-color: var(--color-white); padding: 32px 16px; background-color: var(--color-white); box-shadow: 0 7px 11px rgb(226, 38, 88, 0.1); border-radius: 19px; border: 1px solid rgba(0, 0, 0, .1); }
.card-counter .value-wrap { font-size: 48px; display: flex; align-items: center; justify-content: center; color: var(--color-pink); gap: 3px; }
.card-counter .value-wrap span:nth-child(2) { margin-top: -7px; }
.card-counter p{ font-size: 16px; }
.couters{ padding: 60px 0; }
.counters-wrap { margin: 0 -12px; justify-content: center; row-gap: 24px; }
.counter-item { padding: 0 12px; }

@media(max-width:1199px){
    .card-counter .value-wrap{ font-size: 40px; }
}
/*----------------------------------------------
alternet-image-content section style start
-----------------------------------------------*/

.alternet-wrap{ align-items: center; }
.alternet-image-content { padding: 60px 0; background-color: var(--color-white); }
.alternet-image-content.image-right .row-wrap { flex-direction: row-reverse; }
.alternet-image-content.image-right .image-wrap .inner-wrap{ margin-left: auto; margin-right: 0; }
.alternet-image-content .image-wrap .inner-wrap { max-width: 541px; margin: 0 auto; margin-left: 0; }
.alternet-image-content .image-wrap .inner-wrap img{ width: clamp(340px, 100%, 540px); }
.alternet-wrap .wysiwyg-content li a{ text-decoration: underline; }

@media(max-width:991px){
    .alternet-image-content .row-wrap{ row-gap: 40px; }
    .alternet-image-content{ padding: 50px 0; }
    .alternet-image-content .image-wrap .inner-wrap{ margin: 0 auto !important; }
}
/*----------------------------------------------
alternet-image-content section style end
-----------------------------------------------*/


/*----------------------------------------------
two-column-content-linklist section style start
-----------------------------------------------*/
.two-column-content-linklist{ color: var(--color-white); padding: 60px 0; background-color: var(--color-white); }
.two-column-content-linklist .section-wrap { background-color: var(--color-dark); padding: 60px 0; }
.two-column-content-linklist .content-wrap .inner-wrap{ max-width: 500px; }
.two-column-content-linklist .content-wrap .inner-wrap .cta-button{ margin-top: 20px; }
.two-column-content-linklist .link-list ul{display: flex; flex-direction: column; gap: 16px;}
.two-column-content-linklist .link-list ul li{ border: 1px solid rgba(255, 255, 255, .4); padding: 20px 24px; border-radius: 10px; }
.two-column-content-linklist .link-list ul li a{ display: flex; justify-content: space-between; gap: 20px; }

@media(max-width:991px){
    .two-column-content-linklist{ padding: 50px 0; }
    .content-linklist-wrap{ row-gap: 40px; }
}
/*----------------------------------------------
two-column-content-linklist section style end
-----------------------------------------------*/

/*----------------------------------------------
logos-list section style start
-----------------------------------------------*/
.logos-list-wrap { max-width: 920px; margin: 0 auto; row-gap: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 64px; margin-top: 60px; }
.logo-item { flex-basis: 100px; }
.card-logo { display: flex; justify-content: center; align-items: center; height: 100%; }
.card-logo img { max-width: 100px; max-height: 100px; }
.logos-list-box{ border-radius: 10px; padding: 60px; box-shadow: 0 4px 10px #e2265821; border: 1px solid rgba(0, 0, 0, .1); }
.logos-list{ padding: 60px 0; background-color: var(--color-white); }

@media(max-width:991px){
    .logos-list{ padding: 50px 0; }
}
@media(max-width:767px){
    .logos-list-box { padding: 48px 12px; }
    .logos-list-wrap{ gap: 30px; margin-top: 48px; }
    .logo-item { flex-basis: 82px; max-height: 82px; }
    .card-logo img { max-width: 82px; max-height: 82px; }
}
/*----------------------------------------------
logos-list section style end
-----------------------------------------------*/

/*----------------------------------------------
faqs section style start
-----------------------------------------------*/
.accordion-wrap{ display: flex; flex-direction: column; gap: 16px; color: var(--color-black); }
.accordion-item { border: 1px solid rgba(0, 0, 0, .3); padding: 23px 24px; border-radius: 10px; }
.faqs{ padding: 60px 0; background-color: var(--color-white); }

@media(max-width:767px){
    .faqs{ padding: 50px 0; }
}
/*----------------------------------------------
faqs section style end
-----------------------------------------------*/

/*----------------------------------------------
site footer section style start
-----------------------------------------------*/
.social-links { display: grid; align-items: center; /* gap: 34px; */ grid-auto-flow: column; grid-auto-columns: 32px; grid-gap: 10px; grid-column-gap: 28px; }
.social-links a{ width: 32px; height: 32px; display: flex;align-items: center; justify-content: center; }
.social-links a img, .social-links a svg{ width: 100%; max-width: 100%; max-height: 100%; }
.social-links a:hover svg > *{ fill: var(--color-pink); }

.footer-links { margin: 0; margin-top: 20px; list-style: none; display: flex;flex-direction: column; font-size: 16px; gap: 20px; }
.footer-links a{ color: var(--color-pink); }
.footer-links a:hover{ color: var(--color-white); }
.footer-links-wrap .social-links { margin-bottom: 27px; }
.footer-content-wrap .inner-wrap{ padding-left: 50px; }
.footer-content-wrap :is(h6, p){ font-size: 14px; }
.site-footer{ padding: 60px 0 0; margin-top: 60px; background-color: var(--color-black); color: var(--color-white); }
.site-footer h6{ text-transform: inherit; }
.site-footer .bottom-wrap{ margin-top: 30px; }
.site-footer .bottom-wrap p { padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .4); text-align: center; font-size: 16px; }
.site-footer .bottom-wrap p span { color: rgba(255, 255, 255, .5) }

@media(max-width:991px){
    .site-footer{ margin-top: 50px; }
    .footer-content-wrap .inner-wrap{ padding-left: 0; padding-top: 40px; }
}
/*----------------------------------------------
site footer section style end
-----------------------------------------------*/


/*----------------------------------------------
post-intro-content section style start
-----------------------------------------------*/

ul.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 8px;
}

ul.breadcrumb li {
    display: inline;
    font-size: 16px;
    position: relative;
    color: var(--color-pink);
}

ul.breadcrumb li:not(:last-child):before {
    width: 1px;
    height: 15px;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background-color: var(--color-black);
    content: "";
    position: absolute;
}

ul.breadcrumb li a {
    text-decoration: none;
    color: var(--color-black);
}

ul.breadcrumb li a:hover {
    color: var(--color-pink);
    text-decoration: underline;
}
.post-intro-content .breadcrumb {
    margin-bottom: 24px;
}
.post-intro-content .intro-wrap {
    display: flex;
    gap: 24px;
}
.post-intro-content .image-wrap{
    width: 80px;
    flex-shrink: 1;
}
.broker-logo{
    max-width: 80px;
}
.broker-logo.desktop-hide{
    display: none;
}
.post-intro-content h1 {
    font-weight: bold;
    margin: 0;
    font-size: 40px;
}

.post-intro-content .author-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    margin-top: 21px;
}

.post-intro-content .author-info > div {
    display: flex;
    align-items: center;
    width: 133px;
    width: max-content;
    position: relative;
}
.post-intro-content .author-info > div:not(:first-of-type):after {
    width: 1px;
    height: 35px;
    top: 50%;
    left: -24px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, .3);
    content: "";
    position: absolute;
}

.post-intro-content .author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
}

.post-intro-content .author p {
    margin: 0;
    font-size: 14px;
}

.post-intro-content .author span {
    font-weight: bold;
    display: block;
}

.post-intro-content .published-date p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.post-intro-content .published-date span {
    font-weight: bold;
    color: #000;
    display: block;

}
.post-intro-content{
    padding: 60px 0;
}
/*copare post*/
.post-intro-content.compare-post .image-wrap {
    display: none;
}




.sticky-navtab{
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    padding: 14px 0;
    position: sticky;
    top: 100px;
    z-index: 10;
    background-color: var(--color-white);
}
.scroll-container {
    display: flex;
}
.navtab-list{
    display: grid;
    grid-auto-flow: column;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    grid-gap: 24px;
    /* margin: 0 -10px; */
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.navtab-list::-webkit-scrollbar {
    display:none;
}

.navtab-list li {
    flex: 0 0 auto;
    scroll-snap-align: center;
    /* padding: 0 10px; */
}
.navtab-list .flickity-viewport {
    display: block;
    width: 100%;
}
.slick-initialized .slick-slide{
    display: inline-block;
}

.navtab-list li .nav-link {
    color: black;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, .5);
    padding: 3px 20px;
    border-radius: 8px;
    white-space: nowrap;
    text-transform: capitalize;
    /* Prevent line breaks in nav items */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    vertical-align: middle;
}
.navtab-list li .nav-link:hover ,
.navtab-list li .nav-link.active {
    color: var(--color-white);
    background-color: var(--color-black);
}

.scroll-container .btn-wrap{
    position: absolute;
    z-index: 10;
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left, #ffffff 50%, transparent);
}
.scroll-container .btn-wrap.next-wrap{
    right: 0;
    justify-content: flex-end;
}
.scroll-container .btn-wrap.prev-wrap{
    left: 0;
    justify-content: flex-start;
    transform: rotate(180deg);
}

.scroll-container .btn-prev,
.scroll-container .btn-next {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    /* display: none; */
    font-size: 0;
    border-radius: 30px;
    background-image: url(../images/menu-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s;
    /* display: none; */
}


.scroll-container .btn-prev {
    transform: rotate(-90deg);
}

.scroll-container .btn-next {
    transform:  rotate(-90deg);
}

.scroll-container .btn-prev:hover,
.scroll-container .btn-next:hover{
    opacity: .6;
}


.navtab-list .slick-arrow{
    width: 25px;
    height: 25px;
    border-radius: 30px;
    font-size: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/menu-arrow-down-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: all .4s;
    z-index: 1;
}
.navtab-list .slick-arrow.slick-prev {
    transform: translateY(-50%) rotate(90deg);

}
.navtab-list .slick-arrow.slick-next {
    transform: translateY(-50%) rotate(-90deg);
    left: auto;
    right: 0;
}
.navtab-list .slick-arrow:hover{
    background-color: var(--color-black);
}

.post-content-wrap{
    padding-top: 50px;
}
/* .post-content-wrap > h3:first-of-type,
.post-content-wrap > h2:first-of-type,
.post-content-wrap > h4:first-of-type{
    padding-top: 0;
} */

.post-content-wrap .wp-block-group,
.post-content-wrap h3,.post-content-wrap h2, .post-content-wrap h4,.post-content-wrap h5, .post-content-wrap h6 {
    margin: 0 !important;
    padding-top: 50px;
}
.post-content-wrap > :first-child:not(details){
    margin-top: -50px !important;
}

.post-content-wrap h3{
    font-size: 36px;
    margin-bottom: 24px !important;
}

.post-content-wrap .wysiwyg-content p:not(:last-of-type) {
    margin-bottom: 24px;
}


.post-sidebar-wrap .inner-wrap{
    position: sticky;
    top: 180px;
}
.post-sidebar-wrap .inner-wrap li.widget{
    list-style: none;
}

/*post icon list start*/
table{ border-collapse: collapse; font-size: 16px; }
.table td, .table th{ padding: 28px 24px; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, .1); }

.post-content-wrap .list-box {
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 24px;
    border-radius: 10px;
    list-style: none;
    margin: 0;
    margin-top: 60px;
}
.post-content-wrap .list-box + p,
.post-content-wrap .wp-block-group + p{
    margin-top: 30px;
}
.post-content-wrap .list-box li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
}
.post-content-wrap .list-box li:last-of-type{
    margin-bottom: 0;
}

.post-content-wrap .list-box li:before {
    width: 24px;
    height: 24px;
    left: 0;
    top: 1px;
    background: none;
    background-image: url(../images/check-circle-icon-pink.svg);
    background-position: center;
    background-repeat: no-repeat;
}
/*post icon list end*/


/*table start*/
.post-content-wrap .wp-block-table{
    margin: 50px 0;
}
.post-content-wrap .table-responsive {
    margin-top: 60px;
    overflow-x: auto;
}

.post-content-wrap .table-responsive::-webkit-scrollbar {
    height: 5px;
}

/* Track */
.post-content-wrap .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.post-content-wrap .table-responsive::-webkit-scrollbar-thumb {
    background: var(--color-black);
}

.post-content-wrap thead th{
    background-color: #F5F5F5;
    padding: 16px 24px;
}

/* accordion strat*/
.post-content-wrap .accordion-wrap {
    margin-top: 60px;
}


/*tab start*/
.tabs-wrap {
    width: 100%;
}

.tabs-wrap .tabs-links {
    display: flex;
    justify-content: space-between;
    display: none;
}

.tabs-wrap .tab-link {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    color: #888;
    transition: background-color 0.3s, color 0.3s;
}

.tabs-wrap .tab-link.active {
    background-color: #333;
    color: #fff;
}


.tabs-wrap .tab-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.tabs-wrap .tab-list li {
    display: flex;
    align-items: center;
    color: #333;
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}
.tabs-wrap .tab-list li:last-of-type{
    margin-bottom: 0;
}

.tabs-wrap .tab-list li:before{
    width: 24px;
    height: 24px;
    left: 0;
    top: 1px;
    background: none;
    background-image: url(../images/check-circle-icon-pink.svg);
    background-position: center;
    background-repeat: no-repeat;

}

#disadvantages .tab-list li:before {
    background-image: url(../images/cross-circle-icon-black.svg);
}

.tabs-wrap .icon {
    color: #e91e63;
    margin-right: 10px;
}
.post-content-wrap .tabs-wrap{
    margin-top: 60px;
}


/*sidebar style start*/

.sidebar-box {
    border: 1px solid rgba(0,0,0, .1);
    padding: 24px;
    border-radius: 10px;
    margin-top: 60px;
}
.sidebar-box:first-of-type{
    box-shadow: 0 7px 11px rgb(226, 38, 88, 0.1);
}

/* tab style */
.tab-container {
    width: 100%;
}

.tab-container h3 {
    text-align: center;
    font-size: 24px;
}

.tab-container .tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab-container .tab-link {
    background: none;
    border: none;
    outline: none;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    color: var(--color-black);
}
.tab-container .tab-link:hover,
.tab-container .tab-link.active {
    color: #e91e63;
}

.tab-container .tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #e91e63;
}

.tab-container .tab-content {
    display: none;
    color: var(--color-black);
}

.tab-container .tab-content.active {
    display: block;
}

.tab-container .tab-content ul {
    list-style: none;
    padding: 0;
}
.tab-container .tab-content li{
    margin: 0 !important;
}
.tab-container .tab-content li .list-wrap {
    display: flex;
    align-items: center;
    /* gap:8px; */
    padding: 15px 10px;
    font-size: 14px;
    border-top: 1px solid #ccc;
    position: relative;
    padding-right: 30px;
    padding-left: 0;
    transition: all 0.5s;
}
.tab-container .tab-content li .list-wrap:hover{
    color: var(--color-pink);
}
.tab-container .tab-content li:first-of-type .list-wrap {
    border: none;
}

.tab-container .tab-content li img {
    width: 30px;
    height: 30px;
    margin: 0 8px;
}

.tab-container .tab-content li .arrow {
    position: absolute;
    right: 0;
    font-size: 0;
    background-image: url(../images/menu-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    width: 20px;
    height: 17px;
}

.tab-container .footer-note {
    text-align: center;
    margin-top: 20px;
}
.tab-container .footer-note p{
    font-size: 16px;
    color: var(--color-black);
}

.sidebar-box .tab-container{
    padding: 0;
    margin: 0;
}

/*broker-card style*/
.media{
    display: flex;
    /* gap: 10px; */
    text-align: left;
    align-items: center;
}
.media img{
    margin-right: 10px;
}

.broker-card {
    text-align: center;
    color: var(--color-black);
}

.broker-card .broker-logo {
    width: 60px;
    height: 60px;
    border-radius: 6px;
}


.broker-card h4 {
    font-size: 24px;
    margin: 0;
}

.rate-score .score {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 24px;
}

.rate-score .rating {
    font-size: 24px;
    color: var(--color-pink);
}

.rate-score .out-of {
    font-size: 14px;
    color: var(--color-black);
    margin-left: 5px;
}

.rate-score .total-score {
    font-size: 18px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.rate-score .score-bar {
    width: 92px;
    margin: 0 auto;
    height: 4px;
    background-color: var(--color-gray-light);
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.rate-score .score-bar-fill {
    /* Adjust this percentage to represent the score */
    height: 100%;
    background-color: var(--color-pink);
    position: absolute;
    top: 0;
    left: 0;
}

.broker-card .features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
    color: var(--color-black);
}

.broker-card .features li {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin: 0 !important;
    margin-bottom: 12px !important;
    font-size: 14px;
}

.broker-card .cta-button {
    margin-top: 24px;
}


.post-content-sidebar-row-wrap {
    padding-bottom: 60px;
}


/*author information*/
.post-content-sidebar-wrap .author-info-wrap{
    padding: 60px 0;
}
.author-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
}
.author-card:not(:first-of-type) {
    margin-top: 20px;
}

.author-card .author-image {
    width: clamp(160px, 40%, 364px);
    margin-right: 60px;
}

.author-card .author-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.author-card .author-info {
    flex: 1;
    color: var(--color-black);
}

.author-card .author-info h2 {
    margin: 0;
    margin-bottom: 8px;
    font-size: 24px;
}

.author-card .author-review-link {
    display: block;
    margin-top: 5px;
    color: var(--color-black);
    font-size:  14px;
    text-decoration: underline;
}

.author-card .author-review-link:hover {
    text-decoration: none;
}

.author-card .author-content {
    margin: 24px 0;
}

.author-card .author-social {
    display: grid;
    align-items: center;
    /* gap: 34px; */
    margin-top: 31px;
    grid-auto-flow: column;
    grid-auto-columns: 30px;
    grid-gap: 10px;
    grid-column-gap: 30px;
    margin-top: 27px;
}

.author-card .social-link img,
.author-card .social-link svg {
    width: 30px;
    height: 30px;
}
.author-card .social-link svg > *{
    transition: all 0.5s;
}
.author-card .social-link:hover svg > *{
    fill: var(--color-pink);
}

/*interactive-brokers style*/
.interactive-brokers {
    background-color: #fff;
    width: 100%;
    padding: 24px;
    padding-bottom: 4px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-top: 60px;
}

.interactive-brokers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 24px;
    margin-bottom: 24px;
    gap: 20px;
}
.interactive-brokers-header .media{
    width: 100%;
}
.interactive-brokers-header .media h4{
    margin-bottom: 0;
    padding: 0;
}
.interactive-brokers-header .rate-score .score {
    margin: 0;
}
.interactive-brokers-header .rate-score .score-bar {
    margin-bottom: 0;
}
.interactive-brokers-logo {
    width: 60px;
    height: 60px;
}

.interactive-brokers-details {
    text-align: right;
}

.interactive-brokers-score {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
}

.interactive-brokers-rating {
    font-size: 2.5em;
    color: #e91e63;
    margin-right: 5px;
}

.interactive-brokers-out-of {
    font-size: 1.2em;
    color: #888;
}

.interactive-brokers-total-score {
    margin: 5px 0 0 0;
    color: #888;
    font-size: 0.9em;
}

.interactive-brokers .button-wrap{
    display: flex;
    justify-content: center;
    padding-bottom: 60px;
}

.interactive-brokers-snapshot {
    background-color: #f5f5f5;
    padding: 16px 20px;
    text-align: center;
}

.interactive-brokers-snapshot p {
    font-size: 16px;
}
.interactive-brokers-snapshot p span{
    color: var(--color-pink);
}
.post-content-wrap .interactive-brokers .table-responsive {
    margin-top: 0;
}
.interactive-brokers-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.interactive-brokers-table td {
    padding: 17px 24px  ;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9em;
    color: var(--color-black);
    vertical-align: middle;
}
.interactive-brokers-table ul{
    margin: 0;
}
.wysiwyg-content .interactive-brokers-table li:before {
    width: 4px;
    height: 4px;
    top: 8px;
}



.interactive-brokers-table tr:last-child td {
    border-bottom: none;
}


/*coparisn style*/
.comparison-container {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    margin-top: 60px;
}

.comparison-card {
    border-radius: 10px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-card .logo img {
    margin: 0 auto;
    max-width: 60px;
    max-height: 60px;
    margin-bottom: 16px;
}

.comparison-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.comparison-card .features {
    list-style-type: none;
    padding: 8px 0;
    margin: 0;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 16px;
    flex: 1;
    width: 100%;
}

.comparison-card .features li {
    display: flex;
    align-items: flex-start;
    margin: 18px 0;
}
.comparison-card .features li:before{
    display: none;
}

.comparison-card .features .icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}
.comparison-card .features .icon img{
    width: 100%;
    height: 100%;
}

.comparison-card .highlight {
    color: #e91e63;
}

/*compare-table style*/
.compare-table thead th{
    border: none;
}
.compare-table tbody th{
    background-color: #f5f5f5;
}
.compare-table th,
.compare-table td{
    max-width: 130px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    word-wrap: break-word;
    padding: 24px;
    /* Enable word wrap */
    white-space: normal;
    /* Allow text to wrap to the next line */
    word-break: break-all;
    border-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.compare-table th img,
.compare-table td img{
    margin:0 auto;
}
.interest-table tbody td{
    padding: 16px 24px;
}
.interest-table tbody td,
.register-table tbody td {
    font-size: 16px;
}
.register-table tbody td{
    padding: 28px 24px;
}

@media(min-width:1300px){
    .post-content-wrap{
        -ms-flex: 0 0 61.266667%;
        flex: 0 0 61.266667%;
        max-width: 61.266667%;
    }
    .post-sidebar-wrap{
        -ms-flex: 0 0 38.733333%;
        flex: 0 0 38.733333%;
        max-width: 38.733333%;
    }
    .post-sidebar-wrap .sidebar-box {
        max-width: 371px;
        margin-left: auto;
    }
    .post-intro-content .container,
    .sticky-navtab .container,
    .post-content-sidebar-wrap .container{
        max-width: 1110px;
    }
}

@media(max-width:1199px){
    .sticky-navtab{
        top: 60px;
    }
    .navtab-list {margin: 0;}
    .post-content-wrap .wysiwyg-content h3{
        font-size: 24px;
    }
    .post-content-wrap .list-box,
    .post-content-wrap .tabs-wrap,
    .post-content-wrap .table-responsive,
    .post-content-wrap .accordion-wrap,
    .post-content-wrap .interactive-brokers,
    .post-content-wrap .comparison-container {
        margin-top: 48px;
    }
    .navtab-list li .nav-link:hover {
        color: inherit;
        background-color: inherit;
    }
    .navtab-list li .nav-link.active {
        color: var(--color-white);
        background-color: var(--color-black);
    }
}
@media(max-width:991px){
    .post-intro-content{
        padding: 50px 0;
    }
    .post-intro-content .author-info{
        row-gap: 20px;
    }
    .post-intro-content .author-info>div{width: calc(50% - 24px);}
    .post-intro-content .author-info>div:nth-child(3n):after{
        display: none;
    }
    .post-content-wrap{
        padding-right: 20px;
    }
    .author-card .author-image {
        margin-right: 30px;
    }
}

@media(min-width:768px) {
    .tabs-wrap {
        display: flex;
        padding: 24px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0, .1);
    }
    .tabs-wrap > *{
        width: 50%;
    }
}
@media(max-width:767px){
    ul.breadcrumb li{
        font-size: 14px;
    }

    .post-intro-content .image-wrap{
        display: none;
    }
    .post-intro-content .content-wrap .heading-wrap {
        display: flex;
        gap: 16px;
    }
    .post-intro-content .content-wrap .broker-logo.desktop-hide {
        display: block;
        max-height: 80px;
        max-width: 80px;
    }
    .post-intro-content .author-info{
        gap: 35px;
        row-gap: 20px;
        margin-top: 24px;
    }
    .post-intro-content .author-info>div {
        width: calc(50% - 18px);
    }
    .post-intro-content .author-info > div:not(:first-of-type):after{
        left: -18px;
    }
    .post-intro-content .author-image{
        margin-right: 10px;
    }
    .post-intro-content .author p{
        max-width: 63%;
    }
    .post-intro-content .author span{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }
    .navtab-list{
        grid-gap: 12px;
    }
    .scroll-container .btn-prev{
        left: 20px;
        display: none !important;

    }
    .scroll-container .btn-next{
        right: 20px;
        display: none !important;
    }
    .scroll-container:before, .scroll-container:after{
        width: 30px;
    }


    .accordion-wrap{
        gap: 0;
    }
    .accordion-wrap .accordion-item:not(:last-of-type) {
        margin-bottom: 16px;
    }

    .tabs-wrap .tabs-links {
        display: flex;
    }
    .tabs-wrap{
       background-color: #fff;
       width: 100%;
       border-radius: 10px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       overflow: hidden;
    }
    .tabs-wrap .tab-body {
        display: none;
    }

    .tabs-wrap .tab-body.active {
        display: block;
    }
    .tabs-wrap .tab-list{
        padding: 20px;
    }
    /* .interactive-brokers-header{
        flex-direction: column;
    } */
    .interactive-brokers .button-wrap{
        padding-bottom: 40px;
    }
    .interactive-brokers-table {
        min-width: 550px;
    }
    .post-content-wrap .table-responsive table{
        min-width: 650px;
    }
    .interactive-brokers-table td{
        padding: 15px 10px;
    }
    .post-content-wrap .table-responsive .interactive-brokers-table{
        min-width: 410px;
    }
    .post-content-wrap .interest-table table,
    .post-content-wrap .register-table table{
        min-width: 100%;
    }
    .compare-table th, .compare-table td,
    .post-content-wrap thead th{
        padding: 15px 10px;
    }
    /*.comparison-container*/
    .comparison-card .features li{
        margin: 10px 0;
        font-size: 14px;
    }
    .comparison-card .features .icon{
        width: 17px;
        height: 17px;
    }
    .comparison-card h4{
        font-size: 18px;
    }
    /*sidebar style*/
    .sidebar-box .rate-score {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        padding: 17px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, .1);
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .sidebar-box .rate-score .score {
        margin: 0;
    }
    .sidebar-box .rate-score .total-score {
        margin-bottom: 5px;
    }
     .sidebar-box .rate-score .score-bar {
        margin: 0;
    }

    /*author-card style*/
    .post-content-sidebar-wrap .author-info-wrap{
        padding: 0 0 10px;
    }
    .author-card{
        flex-direction: column;
        padding: 16px;
    }
    .author-card .author-image{
        width: 100%;
    }
    .author-card .author-info {
        margin-top: 40px;
    }



}
/*----------------------------------------------
post-intro-content section style end
-----------------------------------------------*/


.open-account-strip{z-index: 100; position: fixed; bottom: 0; background-color: var(--color-white); padding: 16px 0; width: 100%; text-align: center; border-top: 1px solid rgba(0,0,0, .1); }
.open-account-strip-item .media img{ width: 17px; margin-right: 8px; }
.open-account-strip-item .media span{ font-size: 14px; }
.open-account-strip-item{ display: flex; flex-direction: column; align-items: center; padding: 0 50px; text-align: center; }
.open-account-strip-item .cta-button{ min-width: 220px; margin-top: 8px; }
.open-account-strip-wrap{ display: flex; justify-content: center; margin: 0 -50px; }

@media(max-width:767px){
    .open-account-strip-wrap { margin: 0 -12px; }
    .open-account-strip-item .cta-button { min-width: 160px; }
    .open-account-strip-item { padding: 0 6px; }
}