:root {
    /** Font default */
    --font-family-default: "Poppins", sans-serif;
    --font-family-title: "freight-big-pro", serif;
    --font-family-title-alt: "freight-display-pro", serif;
    --font-size-default: 14px;
    --font-size-title: 18px;
    --font-color-default: #000000;
    --font-color-title: #6c757d;
    /** Use for input, button, and any other element */
    /*--primary: #c19a3d;*/
    --primary: #b3861c;
    --secondary: #002349;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
    /* scrollbar */
    --sb-track-color: #002349;
    --sb-thumb-color: #c19a3d;
    --sb-size: 3px;
}

/* Global */
body {
    font-family: var(--font-family-default);
    font-size: var(--font-size-default);
    background: #FFFFFF;
    color: var(--font-color-default);
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}


a {
    color: inherit;
}

a:hover {
    color: var(--primary);
}

a:hover, a:focus, .slick-slide, .slick-slide a {
    outline: none;
    text-decoration: none;
}

input, select, textarea {
    outline: none;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex:before, .flex:after {
    display: none;
}

.dir-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.dir-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse wrap;
    flex-flow: column-reverse wrap;
}

.dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}

.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.al-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.al-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ju-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ju-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ju-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ju-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ju-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

#main-wrapper {
    overflow: hidden;
}

.custom-container-full {
    padding: 0 3.75%;
}

a.btn-a, .btn-a {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #676767;
    text-transform: uppercase;
    height: 52px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
    border: none;
    transition: color var(--default-transition);
}

.btn-a:before, .btn-a:after {
    content: '';
    position: absolute;
    bottom: 0;
    transition: all var(--default-transition);
    background: #676767;
}

.btn-a:before {
    left: 0;
    right: 0;
    bottom: 1px;
    height: 1px;
}

.btn-a:after {
    width: 30px;
    height: 3px;
    left: 0;
}

.btn-a:hover:after {
    width: 100%;
    background: var(--primary)
}

.btn-a:hover:before {
    background: var(--primary)
}

a.btn-a.is-white, .btn-a.is-white {
    color: #fff;
}

.btn-a.is-white:before, .btn-a.is-white:after {
    background: #fff;
}

.btn-a.is-white:hover:before, .btn-a.is-white:hover:after {
    background: var(--primary);
}

/* header */
header.header.sticking {
    background: var(--secondary);
    padding: 16px 0 14px;
}

header.header.sticking .header-logo a {
    width: 249px;
    width: 75.686%;
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 50px 0 0;
    transition: all var(--default-transition);
}

.header-logo {
    width: 329px;
    width: 22.23%;
    font-size: 0;
}

.header-logo a {
    display: block;
    width: 100%;
    transition: width var(--default-transition);
}

.header-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.header-nav {
    flex-grow: 1;
    padding-left: 11%;
}

#nav {
    display: flex;
    flex-flow: row wrap;
    flex-grow: 1;
    justify-content: space-between;
}

#nav > li {
    position: relative;
}

#nav > li > a {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
    display: block;
    text-transform: uppercase;
    position: relative;
    padding: 15px 0;
}

#nav > li > a:before {
    content: '';
    width: 108px;
    height: 2px;
    background: var(--primary);
    left: calc(50% - 54px);
    bottom: 0;
    transform: scaleX(0);
    transition: all var(--default-transition);
    position: absolute;
    margin: auto;
    pointer-events: none;
}

#nav > li:hover > a:before, #nav > li:focus-within > a:before {
    transform: scaleX(1);
}

#nav .sub-menu {
    position: absolute;
    min-width: 250px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--default-transition);
}

#nav li:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#nav .sub-menu li {
    position: relative;
    background: rgba(0,0,0,0.7);
}

#nav .sub-menu a {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 10px 11px;
    position: relative;
}

#nav .sub-menu a:before {
    content: '';
    width: 110px;
    height: 2px;
    background: var(--primary);
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: all var(--default-transition);
    position: absolute;
    margin: auto;
}

#nav .sub-menu li:hover > a:before, #nav .sub-menu li:focus-within > a:before {
    transform: scaleX(1);
}

#nav > li > .sub-menu {
    padding-top: 13px;
    left: calc(50% - 125px);
    top: 100%;
}

.bm-menu-open {
    display: flex;
    justify-content: space-between;
    width: 26px;
    height: 17px;
    background: transparent;
    border: none;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 51px;
}

.bm-menu-open i {
    height: 3px;
    background: #fff;
    transition: all var(--default-transition);
}

.bm-menu-open i:not(.-small):not(.-full) {
    width: calc(100% - 6px);
}

.bm-menu-open i.-full {
    width: 100%;
    margin: 4px 0;
}

.bm-menu-open i.-small {
    width: 3px;
}

.bm-menu-open i.-small.ml {
    margin-left: 3px;
}

.bm-menu-open i.-small.mr {
    margin-right: 3px;
}

.bm-menu-open:hover i:nth-child(1), .bm-menu-open:hover i:nth-last-child(1) {
    width: calc(100% - 6px);
}

.bm-menu-open:hover i:nth-child(2), .bm-menu-open:hover i:nth-last-child(2) {
    width: 3px;
}

.section-title {
    font-size: 120px;
    font-family: var(--font-family-title);
    line-height: 0.916666666666667;
    font-weight: 400;
    color: #333333;
    text-align: center;
}

.section-title i {
    font-style: italic;
    color: var(--primary);
}

.section-title small {
    display: flex;
    align-items: center;
    font-size: 24px;
    letter-spacing: 0.5em;
    color: inherit;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 22px;
    line-height: 1;
}

.section-title small:before, .section-title small:after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: var(--secondary);
    margin-bottom: 2px;
}

.section-title small:before {
    margin-right: 39px;
}

.section-title small:after {
    margin-left: 23px;
}

.section-title.is-white {
    color: #fff;
}

.section-title.is-white small:before, .section-title.is-white small:after {
    background: #fff;
}

.img-wrapper {
    position: relative;
}

.img-wrapper canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-color: #dbdbdb;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--default-transition);
}

.img-wrapper:before, .img-wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all var(--default-transition);
}

.bg-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-section-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.bg-section-img.is-bw {
    filter: grayscale(1);
}

.bg-section:before, .bg-section:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.custom-slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: color var(--default-transition);
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    transition: opacity var(--default-transition);
}

.custom-slick-arrow i {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    width: 30px;
    height: 13px;
    overflow: hidden;
}

.custom-slick-arrow.slick-prev {
    left: 0;
    color: #383838;
}

.custom-slick-arrow.slick-prev i {
    transform: rotateY(180deg);
}

.custom-slick-arrow.slick-next {
    right: 0;
    color: var(--primary);
}

.custom-slick-arrow:hover {
    opacity: 0.7;
}

footer.footer {
    /* min-height: 1089px; */
    position: relative;
    /* padding: 40px 50px 49px 0; */
    padding: 2.5vw 3.125vw 3.0625vw 0;
}

.footer .bg-section:before {
    content: '';
    background: rgb(252,247,243);
    background: -moz-linear-gradient(180deg, rgba(252,247,243,1) 50%, rgba(252,247,243,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(252,247,243,1) 50%, rgba(252,247,243,0) 100%);
    background: linear-gradient(180deg, rgba(252,247,243,1) 50%, rgba(252,247,243,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcf7f3",endColorstr="#fcf7f3",GradientType=1);
    height: 50%;
}

.footer-inner {
    background: rgba(0,0,0,0.8);
    min-height: 100%;
    padding: 91px 0 53px;
    overflow: hidden;
}

.footer-inner .container {
    max-width: 100%;
    padding: 0 15px;
}

.footer-content {
}

.footer-left {
    width: 576px;
    width: 44.308%;
    padding: 7px 0 0;
}

.footer-logo {
    font-size: 0;
    margin-bottom: 37px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-left h2 {
    font-size: 36px;
    font-family: var(--font-family-title);
    letter-spacing: 0.02em;
    line-height: 1;
    color: #edf1f6;
    font-style: italic;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 34px;
}

.footer-contact h2 {
    margin-bottom: 14px;
}

.footer-contact ul {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 300;
    line-height: 2.142857142857143;
}

.footer-contact ul li {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 10px;
}

.footer-contact ul li a {
    transition: color var(--default-transition);
}

.footer-contact ul li a:hover {
    color: var(--primary);
}

.footer-contact ul li i {
    min-width: 34px;
    position: relative;
}

.footer-contact ul li i.ai-font-location-c {
    font-size: 24px;
    top: 3px;
    left: -4px;
}

.footer-contact ul li i.ai-font-phone {
    font-size: 16px;
    top: 5px;
    left: 0;
}

.footer-contact ul li i.ai-font-license {
    top: 8px;
}

.footer-contact ul li i.ai-font-license:before {
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    background: url(../images/global/icon-license.png) center/contain no-repeat;
}

.footer-contact ul li span {
}

.footer-contact ul li.-smi {
    margin: 16px 0 0;
}

.footer-contact ul li.-smi a {
    font-size: 20px;
    margin-right: 35px;
}

.footer-contact ul li.-smi a:last-child {
    margin-right: 0;
}

.footer-nav {
    position: relative;
}

.footer-nav h2 {
    margin-bottom: 19px;
}

.footernav {
    display: flex;
    flex-flow: column wrap;
    max-height: 150px;
    max-width: 370px;
}

.footernav li {
    margin-bottom: 22px;
}

.footernav li a {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    transition: color var(--default-transition);
}

.footernav li a:hover {
    color: var(--primary);
}

.footer-right {
    width: 55.692%;
}

.footer-form {
    position: relative;
    padding: 74px 0 89px 88px;
}

.footer-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -18.75vw;
    bottom: 0;
    border: 1px solid #fff;
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
    border-right: 0;
    pointer-events: none;
}

.footer-form h2.section-title {
    font-size: 60px;
    margin-bottom: 41px;
    letter-spacing: 0.02em;
}
body.post-page-aios-custom-idx-broker-results-page .footer-form h2.section-title{
    color: var(--primary);
    font-style: italic;
}
.nl-field {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.nl-field.nl-field-6 {
    width: 50%;
    margin-bottom: 30px;
}

.nl-field.nl-field-12 {
    width: 100%;
}

.nl-field input, .nl-field textarea {
    display: block;
    width: 100%;
    height: 50px;
    background: transparent;
    padding: 2px 0 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.142857142857143;
    color: #fff;
}

.nl-field textarea {
    padding-top: 10px;
    padding-right: 30px;
    height: 110px;
    resize: none;
}

.nl-field .wpcf7-submit {
    position: absolute;
    right: 15px;
    bottom: 20px;
    background: transparent;
    padding: 0;
    font-size: 35px;
    color: #fff;
    border: none;
    transition: color var(--default-transition);
}

.nl-field .wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    right: 0;
    margin: auto;
}

.nl-field .wpcf7-submit:hover {
    color: var(--primary);
}

.footer-form .wpcf7 {
    position: relative;
}

.footer-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin: 10px 15px 0;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    width: auto;
    top: 25%;
}

.footer-form .wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.footer-bottom {
    padding: 32px 0 0;
}

.footer-bottom a {
    transition: color var(--default-transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    font-weight: 300;
    line-height: 1.666666666666667;
    color: #edf1f6;
    margin-bottom: 1.667em;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1222px;
    margin: 0 auto;
}

.footer-copyright p {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.666666666666667;
    color: #edf1f6;
}

.footer-icons {
    font-size: 19px;
    color: #edf1f6;
}

.footer-icons i.ai-font-eho {
    font-size: 15px;
    margin-right: 7px;
}

/* popup */
/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-bg {
    background: #333333;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.custom-popup {
    max-width: 1201px;
    margin: 30px auto;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    color: #fff;
    position: relative;
}

.cpf-img {
    width: 39.135%;
    position: relative;
    z-index: 1;
    align-self: center;
}

.cpf-img img {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 30px;
}

.cpf-form {
    width: 60.865%;
    position: relative;
}

.cpf-inner {
    position: relative;
    padding: 115px 59px 90px 51px;
}

.cpf-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: -89px;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    border: 1px solid var(--primary);
    z-index: -1;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.cpf-logo {
    text-align: center;
    font-size: 0;
    margin-bottom: 55px;
}

.cpf-logo img {
    max-width: 100%;
    height: auto;
}

.cfp-field {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.cfp-field.field-6 {
    width: 50%;
    margin-bottom: 30px;
}

.cfp-field.field-12 {
    width: 100%;
}

.cfp-field input, .cfp-field textarea {
    display: block;
    width: 100%;
    height: 50px;
    background: transparent;
    padding: 2px 0 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.142857142857143;
    color: #fff;
}

.cfp-field textarea {
    padding-top: 10px;
    padding-right: 30px;
    height: 110px;
    resize: none;
}

.cfp-field-radio {
    width: 100%;
    padding: 10px 15px 33px;
}

.cfp-field-radio .wpcf7-form-control-wrap {
    display: block;
}

.cfp-field-radio .wpcf7-form-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item {
    margin: 0 27px;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label {
    position: relative;
    display: block;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.142857142857143;
    position: relative;
    display: block;
    padding-left: 24px;
    color: #fff;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label:before, .cfp-field-radio .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    border-radius: 50%;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label:before {
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary);
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label:after {
    width: 8px;
    height: 8px;
    background: var(--primary);
    margin: 3px;
    opacity: 0;
}

.cfp-field-radio .wpcf7-form-control .wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
    opacity: 1;
}

.cpf-form form {
    position: relative;
}

.cpf-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    margin: 20px 15px 0;
    text-align: center;
    color: #fff;
}

.cpf-form .wpcf7-spinner {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 10px auto 0;
}

.cfp-field .wpcf7-form-control-wrap {
    display: block;
}

.custom-popup button.mfp-close {
    top: 50px;
    right: 50px;
}

button.mfp-close {
    font-size: 0;
    color: inherit!important;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: transparent;
    border: none;
    transition: color var(--default-transition);
}

button.mfp-close:before {
    content: "\b0241";
    font-family: agentimage !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 15px;
}

button.mfp-close:hover {
    color: var(--primary)!important;
}

/* burger menu */
body.menu-is-active {
    overflow: hidden!important;
}

.bm-menu-wrap.is-active {
    transform: translateX(0);
}

/* .bm-menu-wrap.is-active .bm-menu-inner {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.4s;
} */
.bm-menu-wrap.is-active .bm-menu-top {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
}

.bm-menu-wrap.is-active .bm-menu-center {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.6s;
}

.bm-menu-wrap.is-active .bm-menu-bottom {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.7s;
}

.bm-menu-top, .bm-menu-center, .bm-menu-bottom {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all .8s ease;
}

.bm-menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    transform: translateX(100%);
    transition: all .8s ease;
}

.bm-menu-wrap .bg-section {
    background-color: #000;
}

.bm-menu-wrap .bg-section:before {
    content: '';
    background: rgba(0,0,0,0.88);
}

.bm-menu-scroller {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* scrollbar */
.bm-menu-scroller::-webkit-scrollbar {
    width: var(--sb-size)
}

.bm-menu-scroller::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}

.bm-menu-scroller::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

@supports not selector(::-webkit-scrollbar) {
    .bm-menu-scroller {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/* scrollbar end */
.bm-menu-inner {
    /* padding: 110px 0 0; */
    padding: 90px 0 46px;
    min-height: 100%;
    position: relative;
    /* transform: translateX(300px);
        opacity: 0;
        visibility: hidden; */
    transition: all .8s ease;
}

.bm-menu-close {
    position: absolute;
    top: 74px;
    right: 64px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #fff;
    padding: 0;
    transition: color var(--default-transition);
}

.bm-menu-close:hover {
    color: var(--primary);
}

.bm-menu-top {
    position: relative;
    margin-bottom: 82px;
}

.bm-menu-logo {
    font-size: 0;
}

.bm-menu-logo img {
    max-width: 100%;
    height: auto;
}

.bm-menu-smi {
    position: relative;
}

.bm-menu-smi a {
    font-size: 27px;
    color: #fff;
    margin-left: 50px;
    transition: color var(--default-transition);
}

.bm-menu-smi a.ai-font-tiktok {
    font-size: 22px;
}

.bm-menu-smi a:first-child {
    margin-left: 0;
}

.bm-menu-smi a:hover {
    color: var(--primary);
}

.bm-menu-center {
    position: relative;
}

#bm_nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#bm_nav > li {
    position: relative;
}

#bm_nav li.bm_hide {
    display: none;
}

#bm_nav > li > a {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    transition: color var(--default-transition);
}

#bm_nav .sub-menu {
    margin-top: 29px;
}

#bm_nav .sub-menu li {
    margin-bottom: 20px;
}

#bm_nav .sub-menu a {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: #b3b3b3;
    text-transform: uppercase;
    transition: color var(--default-transition);
}

#bm_nav > li > a:hover, #bm_nav .sub-menu a:hover {
    color: var(--primary);
}

.bm-menu-bottom {
    border-top: 1px solid rgba(255,255,255,0.5);
    margin: 77px 0 0;
    padding: 47px 0;
}

.bm-contact {
}

.bm-contact li {
}

.bm-contact li a {
}

.bm-contact {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #b3b3b3;
    font-weight: 300;
    line-height: 2.142857142857143;
}

.bm-contact li {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 10px;
}

.bm-contact li a {
    transition: color var(--default-transition);
}

.bm-contact li a:hover {
    color: var(--primary);
}

.bm-contact li i {
    min-width: 34px;
    position: relative;
}

.bm-contact li i.ai-font-location-c {
    font-size: 24px;
    top: 3px;
    left: -4px;
}

.bm-contact li i.ai-font-phone {
    font-size: 16px;
    top: 5px;
    left: 0;
}

.bm-contact li i.ai-font-envelope-f {
    font-size: 11px;
    top: 11px;
}

.bm-contact li i.ai-font-license {
    top: 8px;
}

.bm-contact li i.ai-font-license:before {
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    background: url(../images/global/icon-license.png) center/contain no-repeat;
}

.bm-contact li span {
}

/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
	background: #000;
}

.ip-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    min-height: 250px;
    background-color: var(--dark);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ip-banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ip-banner h1 {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.ip-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar, #content-full {
    min-height: 500px;
    margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
    width: 77.08%;
}

#content-full #content {
    width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
    width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
    padding-left: 15px;
    padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
    margin-left: -15px;
    margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4, aside h4, #content p, aside p, #content blockquote, aside blockquote, #content ul, aside ul, #content fieldset, aside fieldset, #content form, aside form, #content ol, aside ol, #content dl, aside dl, #content dir, aside dir, #content menu, aside menu {
    line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .archive-title, #content .entry-title {
    /* font-size: 120px;
    font-family: var(--font-family-title);
    line-height: 0.916666666666667;
    font-weight: 400;
    color: #333333;
    line-height: 1;
    margin: 0 0 30px; */
}

#content .archive-title i, #content .entry-title i {
    font-style: italic;
    color: var(--primary);
}

#content .archive-title span, #content .entry-title span {
    display: flex;
    align-items: center;
    font-size: 24px;
    letter-spacing: 0.5em;
    color: inherit;
    font-family: var(--font-family-default);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 22px;
    line-height: 1;
}

#content .archive-title:before, #content .entry-title:before, #content .archive-title:before, #content .entry-title:after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: var(--secondary);
    margin-bottom: 2px;
    display: none;
}

.section-title span:before, #content .archive-title:before, #content .entry-title:before {
    margin-right: 39px;
}

.section-title span:after, #content .archive-title:after, #content .entry-title:after {
    margin-left: 23px;
}

/* Styles for category/archive/search/etc subheadings (h2) */
body #pojo-a11y-toolbar {
    bottom: 0 !important;
    top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
    top: auto !important;
    bottom: 0 !important;
}

button:focus-visible, a:focus-visible {
    outline-style: solid !important;
    outline-width: 5px !important;
    outline-color: red !important;
    transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast, #pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display: none !important;
}

.container.custom-container {
    padding: 0 15px;
}

#main-wrapper {
	background: #000;
}
main, #inner-page-wrapper {
	background: #fff;
}
#inner-page-wrapper {
	margin-bottom: 0;
	padding-bottom: 30px;
}

body.post-page-aios-custom-idx-broker-results-page #IDX-resultsDisclaimer,
body.post-page-aios-custom-idx-broker-details-page #IDX-resultsDisclaimer{
    font-size: 14px;
    line-height: 1.666666666666667;
    font-weight: 300;
}
body .ui-dialog .ui-dialog-title {
    font-family: var(--font-family-title);
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    font-size: 26px;
    letter-spacing: 0.020em;
}
body .ui-dialog #IDX-registrationContent{
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 2.143;
    color: #676767;
}
@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1367px) {
    .custom-container {
        width: 1330px;
    }
}

@media only screen and (max-width: 1366px) {
    #bm_nav > li > a {
        font-size: 30px;
    }

    .section-title, #content .archive-title, #content .entry-title {
        font-size: 100px;
    }

    .section-title small, #content .archive-title span, #content .entry-title span {
        font-size: 20px;
        letter-spacing: 0.4em;
    }

    .footer-form {
        padding-left: 8%;
    }

    .footer-form h2.section-title {
        font-size: 50px;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    #bm_nav > li > a {
        font-size: 23px;
    }

    #bm_nav .sub-menu a {
        font-size: 14px;
    }

    .header-nav {
        padding-left: 5%;
    }

    .section-title, #content .archive-title, #content .entry-title {
        font-size: 80px;
    }

    .section-title small:before {
        margin-right: 20px;
    }

    .section-title small:after {
        margin-left: 20px;
    }

    .footer-contact ul {
        font-size: 12px;
    }

    .footer-form h2.section-title {
        font-size: 43px;
    }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    *[class*="col-md"] {
        width: 100%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-2 {
        width: 16.66666666%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-5 {
        width: 41.66666666%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    /* The following are used on inner pages. Please edit carefully. */
    .inner {
        width: 100%;
    }

    #content-sidebar, #content-full {
        width: 100%;
    }

    .outer {
        width: 100%;
        min-width: 100%;
    }

    #content-sidebar #content {
        width: 100%;
    }

    #nav {
        display: none;
    }

    .header-nav {
        padding-left: 0;
        justify-content: flex-end;
    }

    .header-logo {
        width: 240px;
        max-width: calc(100% - 50px);
    }

    header.header.sticking .header-logo a {
        width: 100%;
    }

    header.header, header.header.sticking {
        background: var(--secondary);
        padding: 12px 0;
    }

    .bm-menu-inner {
        padding: 50px 0 10px;
    }

    .bm-menu-close {
        top: 15px;
        right: 15px;
    }

    .bm-menu-top {
        margin-bottom: 50px;
    }

    .bm-menu-smi {
        display: none;
    }

    .bm-menu-logo {
        margin: 0 auto;
        max-width: 100%;
    }

    #bm_nav > li {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    #bm_nav .sub-menu {
        margin-top: 10px;
    }

    #bm_nav .sub-menu li {
        margin-bottom: 10px;
    }

    .bm-menu-bottom {
        margin-top: 0;
        padding: 20px 0;
    }

    .bm-contact li {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .bm-menu-open {
        margin-left: 0;
    }

    .cpf-img {
        width: 100%;
    }

    .custom-popup {
        max-width: 500px;
    }

    .cpf-img img {
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0;
    }

    .custom-popup button.mfp-close {
        top: 15px;
        right: 15px;
        color: var(--secondary) !important;
    }

    .custom-popup button.mfp-close:hover {
        color: var(--primary) !important;
    }

    .cpf-form {
        width: 100%;
    }

    .cpf-inner {
        padding: 60px 5% 70px;
    }

    .cpf-inner:before {
        left: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0;
    }

    .cpf-logo img {
        width: 280px;
    }

    .cfp-field.field-6 {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-title, #content .archive-title, #content .entry-title {
        font-size: 50px;
    }

    .section-title small, #content .archive-title span, #content .entry-title span {
        letter-spacing: 0.3em;
        margin-bottom: 10px;
    }

    .section-title small:before {
        margin-right: 10px;
    }

    .section-title small:after {
        margin-left: 10px;
    }

    footer.footer {
        padding: 0;
    }

    .footer-inner {
        padding: 60px 0;
    }

    .footer-left {
        width: 100%;
        padding: 0;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        width: 340px;
    }

    .footer-contact ul {
        font-size: 14px;
    }

    .footer-left h2 {
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-nav {
        margin-bottom: 40px;
    }

    .footernav {
        margin: 0 auto;
        max-height: initial;
        text-align: center;
    }

    .footer-right {
        width: 100%;
    }

    .footer-form {
        padding: 70px 8%;
    }

    .footer-form:before {
        right: 0;
        border-radius: 40px;
        border: 1px solid #fff;
    }

    .footer-copyright {
        flex-flow: column;
        text-align: center;
    }

    .footer-icons {
        margin-top: 10px;
    }

    #pojo-a11y-toolbar {
        display: none;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    *[class*="col-sm"] {
        width: 100%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-2 {
        width: 16.66666666%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-5 {
        width: 41.66666666%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-12 {
        width: 100%;
    }

    .ip-banner .container {
        width: 100%;
    }

    .bm-menu-inner .container {
        width: 100%;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .section-title, #content .archive-title, #content .entry-title {
        font-size: 40px;
    }

    .section-title small, #content .archive-title span, #content .entry-title span {
        font-size: 14px;
        letter-spacing: 0.1em;
    }

    .cfp-field-radio .wpcf7-form-control .wpcf7-list-item {
        margin: 0 10px;
    }

    a.btn-a, .btn-a {
        letter-spacing: 0.1em;
    }

    .footer-contact ul li span {
        max-width: calc(100% - 34px);
    }

    .nl-field.nl-field-6 {
        width: 100%;
        margin-bottom: 10px;
    }

    .bm-contact {
        font-size: 13px;
        letter-spacing: 0;
    }

    .bm-contact li i.ai-font-envelope-f {
        top: 9px;
    }
}
