@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root{
    --small-font-size:0.75rem;
}
* {
    box-sizing: border-box;
    transition: .2s ease-in-out;
}
.theme_gem {
    /*line-height: 1.8;*/
    font-size: 1rem;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
}

.theme_gem a {
    text-decoration: none;
}
.theme_gem a:hover {
    text-decoration: underline;
}

.edit-group{
    display:none
}

img.theme_gem_logo_img {
    width: 224px;
    max-width: fit-content;
}

@media all and (min-width: 992px) {
    img.theme_gem_logo_img {
        width: 425px;
    }
}

header.theme_gem--header {
    background: #0a50a3e6;
    color: #fff;
    z-index: 2;
    position: relative;
}

.theme_gem_logo_img_container {
    background: #19397d;
    padding: 2rem !important;
    position: relative !important;
    margin-bottom: -8px;
    border-bottom: 5px solid #19397d;
    display: block;
}

.theme_gem--header_link {
    color: #fff;
    font-family: Roboto,sans-serif;
    font-weight: 400 !important;
    line-height: 1.42;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: var(--small-font-size);
}
.theme_gem--header_link:hover, .theme_gem--header_link:focus{
    color:#fff;
    text-decoration: none;
}
.theme_gem-nav-item .theme_gem--header_link:after {
    opacity: .3;
    content: '';
    display: block;
    width: 0;
    margin-left: 50%;
    height: 2px;
    min-height: 1.5px;
    background: #fff;
    transition: .15s ease-in-out;
    border: none;
}
.theme_gem-nav-item:hover .theme_gem--header_link:after {
    opacity: 1;
    margin-left: 0;
    width: 100%;
}

.theme_gem-header--dropdown-menu {
    opacity: 1;
    pointer-events: all;
    padding: 0.5rem 0.75rem !important;
    background: rgba(10,80,163,.9);
    box-sizing: border-box;
    transition: .2s ease-in-out;
    border-radius: 2px;
}

.theme_gem-header--dropdown-item {
    color: #fff;
    padding: 0;
    font-family: Roboto,sans-serif;
    font-weight: 400 !important;
    line-height: 1.42;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: var(--small-font-size);
}

.theme_gem-header--dropdown-item:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: underline;
}


.theme_gem_apply_btn {
    padding: 0.6rem 1.4rem !important;
    border: 2px solid #fff;
}
@media all and (min-width: 992px) {
    .theme_gem_apply_btn, .theme_gem-nav-item-phone {
        position: relative;
        top:-3px;
    }
}

.theme_gem_apply_btn:after {
    display: none !important;
}

.theme_gem_apply_btn:hover {
    background: rgba(255,255,255,.3);
}

/*footer*/
.theme_gem-footer {
    background: #19397d;
    color: #fff;
    padding-top: 5rem;
    position: relative;
    padding-bottom: 8rem;
}

@media all and (min-width: 992px) {
    .theme_gem-footer {
        padding-top: 5rem;
        position: relative;
        padding-bottom: 8rem;
    }
}

.theme_gem-footer:after{
    left: 0;
    background: #0a50a3;
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    max-width: 100vw;
    height: 0.2rem;
    top: 20px;
}

.theme_gem_carousel:after{
    left: 0;
    background: #0a50a3;
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    max-width: 100vw;
    height: 0.2rem;
    bottom: 20px;
}

.theme_gem-footer a {
    color: #fff;
    transition: .2s ease-in-out;
    text-decoration: none;
    line-height: 1.8;
}
.theme_gem-footer a:hover {
    text-decoration: underline;
}

.theme_gem_li_class{
    display: inline-block;
}

.theme_gem_ul_class {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.theme_gem-hr_white {
    border-top: 1px solid #fff;
    opacity: 1;
}
.theme_gem-footer_link {
    font-size: 1rem;
}
.theme_gem-footer-social-links {

    padding-top: 2rem;
}
@media all and (min-width: 992px) {
    .theme_gem-footer-social-links {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
}

.theme_gem-footer-social-links img {
    max-width: 27px;
    height: 27px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    opacity: 1;
}
.theme_gem-footer-social-links img:hover {
    opacity: .6;
}
.theme_gem-footer-social-links li {
    margin: 0 4px 0 0;
    padding: 0;
    ist-style: none;
}

.theme_gem-footer-social-links  a:last-child {
    margin-right: 0;
}
.theme_gem-footer-social-links  a {
    padding: 0.3rem;
    display: block;
    margin-right: 4px;
}


#return-to-top {
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-shadow: -2px 2px 10px rgba(0,0,0,.1);
    box-sizing: content-box;
    text-align: center;
    position: fixed;
    z-index: 9999;
    right: 3%;
    bottom: 0;
    background-color: #f0f0f0;
    border: 4px solid #19397d;
    color: #19397d;
    transition: .3s linear;
    opacity: 0;
}

#return-to-top:hover {
    color: #fff;
    background-color: #0a50a3;
    border-color: #0a50a3;
    transition: .15s linear;
}

#return-to-top.shown {
    opacity: .95;
    bottom: 60px;
}

/* home page .slider:after */
.theme_gem_carousel{
    color:#fff;
}
.theme_gem_carousel-item {
    height: 722px;
    background-size: cover !important;
    background-position: center !important;

    align-items: center;
}
.theme_gem_carousel-item.active {
    display: flex;
}

/*.theme_gem_carousel .container {*/
/*    padding-top: 13rem;*/
/*    padding-bottom: 9rem;*/
/*}*/

.theme_gem_carousel .hiddenWhileScroll {
    opacity: 0;
    pointer-events: none;
    transition: .4s ease-in-out;
}

.theme_gem_carousel  h1 {
    font-size: 3.125rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.theme_gem_carousel  span.text {
    line-height: 1.4;
    color: #fff;
    margin-top: .3rem;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1.063rem;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
}

.theme_gem_carousel .slider-controls {
    display: inline-block;
    margin-right: .5rem;
    padding-left: 0;
}

.theme_gem_carousel .slider-controls li {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    width: 3.6rem;
    height: 3.6rem;
    line-height: 3rem;
    font-size: 1.1rem;
    border-radius: 50%;
    text-align: center;
    border: .3rem solid #fff;
    position: relative;
    margin-left: 1rem;
}

.theme_gem_carousel .slider-controls li.active {
    background: rgba(255,255,255,.35);
}

.theme_gem_carousel .slider-controls li:before {
    cursor: default;
    position: absolute;
    content: '';
    width: 1.8rem;
    height: 4px;
    background: #fff;
    right: 100%;
    top: 50%;
    margin-top: -.1rem;
}

.theme_gem_carousel .slider-controls li:first-child {
    margin-left: 0;
}

.theme_gem_carousel .slider-controls li:first-child:before {
    display: none;
}

.theme_gem_carousel .step {
    display: inline-block;
    margin-bottom: .3rem;
    font-weight: 900;
    font-size: 1.688rem;
    line-height: 1.86;
    letter-spacing: .073rem;
}

.theme_gem_carousel .slider-icon {
    margin-top: 1rem;
}
.theme_gem_btn-empty_d {
    color: #636466;
    border-color: #636466;
    background: 0 0;
}
.theme_gem_btn-custom {
    color: #0a50a3;
    background: #fff;
    border-color: #fff;
}
.theme_gem_btn-custom, .theme_gem_btn-empty_d {
    display: inline-block;
    text-align: center;
    width: unset;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    border-width: 3px;
    border-style: solid;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    font-family: Roboto,sans-serif;
    line-height: 1.4;
    letter-spacing: .2em;
    text-decoration: none;
}

.theme_gem_btn-custom:hover {
    background: rgba(255,255,255,.75);
    color: #0a50a3;
    border-color: #fff;
    text-decoration: none !important;
    opacity: 1;
}
.theme_gem_btn-empty_d:hover {
    color: #636466;
    border-color: #636466;
    background: rgba(99,100,102,.3);
    text-decoration: none !important;
    opacity: 1;
}

.theme_gem_phone_content {
    margin-top: 2rem;
}

.theme_gem_phone_content_bg {
    background-position: left center;
    background-repeat: no-repeat !important;
}
@media all and (min-width: 992px) {
    .theme_gem_phone_content_bg {
        background: url(/dev/themes/golden_empire/img/iphone4s.png);
        height: 690px;
    }

}

.theme_gem_h {
    font-family: Roboto,sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 900;
    color: #0a50a3;
    line-height: 1.4;
}
.theme_gem_h2 {
    margin-bottom: 0.6rem;
    color: #58595b;
    font-family: Roboto,sans-serif;
    margin-top: 0;
    font-weight: 900;
    line-height: 1.4;
    font-size: 2.3rem;
}
.theme_gem_h3 {
    margin-bottom: 0.6rem;
    color: #58595b;
    font-family: Roboto,sans-serif;
    margin-top: 0;
    font-weight: 900;
    line-height: 1.4;
    font-size: 1.5rem;
}

.theme_gem-officers_h3 {
    font-size: 1.1rem;
}
.theme_gem_text {
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Open Sans',sans-serif;
    font-weight: 600;
}

/* home page sectio categories */

.theme_gem_cat_bg {
    background: url(/dev/themes/golden_empire/img/bg_houses.jpg);
    background-color: #0a50a3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.categories {
    min-height: 650px;
    display: flex;
    position: relative;
}

section.categories .bg-image {
    background: #0a50a3;
}

section.categories .bg-image img {
    opacity: .15;
}

section.categories .container {
    display: flex;
}
@media (max-width:1000px) {
    section.categories .container {
        flex-direction: column;
    }
}

section.categories .nav-tabs {
    position: relative;
    border: 0 solid;
    flex-shrink: 0;
    width: 20rem;
    background: #19397d;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

section.categories .nav-tabs:after,
section.categories .nav-tabs:before {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    position: absolute;
    left: 0;
    background: #19397d;
}

section.categories .nav-tabs:before {
    top: 100%;
}

section.categories .nav-tabs:after {
    bottom: 100%;
}
@media (min-width:980px) and (max-width:1199px) {
    section.categories .nav-tabs {
        width: 15rem;
    }
}

section.categories .nav-tabs li {
    box-sizing: content-box;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    border-bottom: .3rem solid #fff;
}

section.categories .nav-tabs li:last-child {
    border: 0 solid;
}

section.categories .nav-tabs li a {
    cursor: pointer;
    border-radius: 0;
    width: unset;
    transform: all .2s ease-in;
    text-transform: uppercase;
    display: block;
    border: 0 solid;
    height: 6rem;
    line-height: 6rem;
    margin: 0;
    padding: 0;
    color: #fff;
}

section.categories .nav-tabs li a img {
    margin-right: .3rem;
}

section.categories .nav-tabs li a:active,
section.categories .nav-tabs li a:focus,
section.categories .nav-tabs li a:hover {
    outline: 0;
    width: 100%;
    background: rgba(255,255,255,.05);
}

section.categories .nav-tabs li a.active {
    border: 0 solid;
    color: #fff;
    background: rgba(255,255,255,.1);
    cursor: pointer;
}

section.categories .nav-tabs li a.active:hover {
    background: rgba(255,255,255,.05);
}

section.categories .tab-content {
    background: rgba(255,255,255,.8);
    margin: 2rem 0;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

section.categories .form-description {
    display: flex;
    flex-wrap: wrap;
}

section.categories .form-description span {
    text-transform: uppercase;
    width: 100%;
    flex-grow: 1;
    margin-bottom: .5rem;
    font-size: calc(1rem * 1.235);
    font-weight: 900;
}

/* section.categories .form-description h5 {
  text-transform: uppercase;
  width: 100%;
  flex-grow: 1;
  margin-bottom: .5rem;
} */

section.categories .form-description .contact-item {
    min-width: calc((100% - 2rem)/ 3);
    margin-right: 1rem;
    position: relative;
    padding-left: 1.5rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    color: #58595b;
    line-height: 1.4;
}

section.categories .form-description .contact-item:nth-child(4n) {
    margin-right: 0;
}

section.categories .form-description .contact-item.long {
    width: 65%;
}

section.categories .form-description .contact-item:before {
    position: absolute;
    left: 0;
    top: .25rem;
    content: '';
    display: block;
    width: .8rem;
    height: .8rem;
    background: #0a50a3;
}

section.categories .tab-categories .content-block-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -1rem;
    margin-top: -1rem;
}

section.categories .tab-categories .categories-textitem,
section.categories .tab-categories .row-item {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 47%;
    position: relative;
    padding-left: 3.5rem;
    font-weight: 400;
    font-size: .85rem;
    line-height: 1.6;
}


section.categories .tab-categories.ccpa-tab .row-item {
    width: 100%;
}

section.categories .tab-categories .categories-textitem *,
section.categories .tab-categories .row-item * {
    position: static;
}

section.categories .tab-categories .categories-textitem .edit-group,
section.categories .tab-categories .row-item .edit-group {
    position: absolute;
}
@media (max-width:767px) {
    section.categories .tab-categories .categories-textitem,
    section.categories .tab-categories .row-item {
        width: 85%;
    }
}

section.categories .tab-categories .categories-textitem img,
section.categories .tab-categories .row-item img {
    width: 2.5rem;
    left: 0;
    top: .6rem;
    position: absolute;
}

section.categories .tab-categories .categories-textitem h6,
section.categories .tab-categories .row-item h6 {
    text-transform: uppercase;
    margin-bottom: .3em;
}

section.categories .tab-categories .categories-textitem a,
section.categories .tab-categories .row-item a {
    text-transform: uppercase;
    font-weight: 600;
    color: #0a50a3;
}

section.categories:before {
    z-index: 0;
    top: 1.8rem;
}

section.categories:after {
    z-index: -1;
    bottom: 2rem;
}
@media (max-width:1000px) {
    section.categories .nav-tabs {
        width: unset;
        padding: 1rem;
        margin: 1rem 0 -2rem;
    }

    section.categories .nav-tabs:after,
    section.categories .nav-tabs:before {
        height: 100%;
        width: .5rem;
        top: 0;
        right: unset;
        left: unset;
        bottom: unset;
    }

    section.categories .nav-tabs:before {
        left: 100%;
    }

    section.categories .nav-tabs:after {
        right: 100%;
    }

    section.categories .nav-tabs li a {
        height: unset;
        line-height: 1;
        margin: 0;
        padding: 1rem;
    }

    section.categories:after,
    section.categories:before {
        display: none;
    }
}
.theme_gem_ccpa_a {
    font-size: 0.95rem;
}

/* home page calc block */
section.calculators .container {
    padding-bottom: 4rem;
    padding-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.calculators .mc-label h2 {
    color: #0a50a3;
    font-family: Roboto,sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.33;
    letter-spacing: .087rem;
    padding-left: 2rem;
}
@media (max-width:1300px) {
    section.calculators .mc-label  {
        padding-left: 0;
        margin-right: -1rem;
    }
}
@media (max-width:1091px) {
    section.calculators .container {
        flex-direction: column;
    }

    section.calculators .mc-label {
        padding-bottom: 2rem;
        font-size: 2.5rem;
    }

    section.calculators .arrow {
        margin-top: .5rem;
    }

    section.calculators .arrow:before {
        transform: rotate(90deg);
    }

    section.calculators .arrow:hover:before {
        height: 0;
        width: 2.688rem;
    }
}

section.calculators li,
section.calculators ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section.calculators .mc-list {
    font-size: .9rem;
    display: flex;
}
@media (min-width:1092px) {
    section.calculators .mc-list {
        margin-left: auto;
        margin-right: 0;
        padding-left: 2rem;
    }
}
@media (max-width:700px) {
    section.calculators .mc-list {
        width: 90%;
        flex-direction: column;
    }
}

section.calculators .mc-list li {
    text-align: center;
    padding: 0 1rem 2rem;
}
@media (min-width:700px) {
    section.calculators .mc-list li {
        padding: 0 1rem;
    }
}

section.calculators .mc-list li:last-child {
    padding-bottom: 0;
}

section.calculators .mc-list li > * {
    margin-top: .5em;
}

section.calculators .mc-list li > :first-child {
    margin-top: 0;
}

section.calculators .mc-list li h3 {
    text-transform: uppercase;
    color: #58595b;
    font-weight: 700;
    font-size: 1rem;
}

section.calculators .mc-list li .mc-text {
    text-align: left;
    font-weight: 400;
    font-size: .85rem;
    line-height: 1.6;
}

section.calculators .mc-list li .mc-text * {
    margin: 0;
}

.arrow {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding: 1rem 0;
    color: transparent;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    white-space: nowrap;
    transition: .2s ease-in-out;
}

.arrow a {
    color: transparent;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1rem;
    margin-left: -1.344rem;
    display: block;
    width: 2.688rem;
    height: 2rem;
    background: url("/dev/themes/golden_empire/img/Arrow.png") 50% 50% no-repeat;
    transition: .2s ease-in-out;
}

.arrow.down:before {
    transform: rotate(90deg);
}

.arrow.down:hover:before {
    height: 0;
    width: 2.688rem;
}

.arrow:hover,
.arrow:hover a {
    color: #0a50a3;
}

.arrow:hover:before {
    opacity: 0;
    width: 0;
}

.theme_geme_color_black {
    color:#1c1c1c;
}
/* reviews block */

section.testimonials {
    padding: 5rem 0;
    background: #f0f0f0;
}

section.testimonials h2 {
    margin-bottom: 1em;
    color: #0a50a3;
    font-size: calc(1rem * 1.235* 1.235* 1.235);
}

section.testimonials .testimonials-body {
    display: flex;
    flex-direction: row;
}

section.testimonials .testimonials-list {
    width: 55%;
}

section.testimonials .testimonials-mark {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    padding: 1rem 0;
}

section.testimonials .testimonials-mark .number {
    color: #7d7e7f;
    font-family: 'Open Sans',sans-serif;
    font-size: 13.313rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -1.02rem;
    line-height: 1;
}

section.testimonials .testimonials-mark .number * {
    padding: 0;
    margin: 0;
}

section.testimonials .testimonials-mark .stars {
    font-size: 2rem;
    color: #0a50a3;
}

section.testimonials .testimonials-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

section.testimonials .testimonial-item {
    width: 100%;
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
}

section.testimonials .testimonial-item:after {
    font-size: 2.8rem;
    line-height: 1;
    text-align: center;
    content: '. . . .';
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    color: #0a50a3;
    top: 100%;
    margin-top: -1rem;
}

section.testimonials .testimonial-item:nth-last-child(2) {
    margin-bottom: 1rem;
}

section.testimonials .testimonial-item:nth-last-child(2):after {
    display: none;
}

section.testimonials .testimonial-item .signature {
    text-transform: uppercase;
    color: #0a50a3;
    font-weight: 600;
    margin-top: .9rem;
}

section.testimonials .testimonial-item .signature span:before {
    display: inline;
    content: ' | ';
}
@media (max-width:979px) {
    section.testimonials .testimonials-body {
        flex-direction: column-reverse;
    }

    section.testimonials .testimonials-list,
    section.testimonials .testimonials-mark {
        width: 100%;
    }

    section.testimonials .testimonials-mark .number {
        font-size: 9rem;
    }
}
/* blog */
.theme_gem-blog--img img {
    max-height: 219px;
    object-fit: cover;
}

/**
Loan officer index
 */
.theme_gem-officers img {
    max-width: 100%;
    min-height: 306px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.lo-contact {
    font-weight: 400;
    font-size: 0.9rem;
}

.lo-contact a {
    color: var(--bs-body-color);
}

.lo-contact.licenses {
    margin-top: 1rem;
    text-transform: lowercase;
}
/* Branch */

.btn-primary-flat {
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    font-family: Roboto,sans-serif;
    line-height: 1.4;
    letter-spacing: .2em;
    border-radius: 0;
}
.btn-primary-flat:hover {
    text-decoration: none !important;
}

.theme_gem_branch_index h3 {
    font-family: Roboto,sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 900;
    color: #58595b;
    line-height: 1.4;
    font-size: 20px;
}
.theme_gem_branch_index_a {
    color: var(--bs-body-color);
}

.theme_gem_branch_index_media-block {
    margin-bottom: 3rem;
}
.theme_gem_branch_index_contact {
    margin-bottom: 0.5rem;
}
.theme_gem_branch_index_view-detail.view-detail .btn {
    margin-bottom: 0.5rem;
}

/**
 Branch home
 */

.branch-header, .lo-header {
    padding-top: 10rem;
    padding-bottom: 3rem;
    background: url(/dev/themes/golden_empire/img/branch_header.jpg) 0 0/cover, #19397D;
    position: relative;
    background-size: cover;
    background-size: cover !important;
    background-position: top left !important;
}

.branch-header h1, .lo-header h1 {
    color: #fff;
    line-height: 1.2;
    letter-spacing: .084rem;
    margin-bottom: 0.3em;
}
.branch-header .text, .lo-header .text {
    color: #fff;
    font-family: 'Open Sans',sans-serif;
    font-size: 1.063rem;
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: .022rem;
}
.branch-header  .socials {
    margin: 0;
    padding: 0;
    color: #fff;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.branch-header .socials {
    margin: 0;
    padding: 0;
    color: #fff;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.branch-header .socials li {
    margin: 0 4px 0 0;
    padding: 0;
}

.branch-header .socials li:last-child {
    margin-right: 0;
}

.branch-header .socials a {
    padding: .3rem;
    display: block;
    margin-right: 4px;
}

.branch-header .socials a:last-child {
    margin-right: 0;
}

.branch-header .socials img {
    max-width: 27px;
    height: 27px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.branch-header .socials img:hover {
    opacity: .6;
}

.branch-header .socials img:active,
.branch-header .socials img:focus {
    opacity: 1;
}

@media all and (min-width: 992px) {
    .theme_gem_branch {
        margin-top: -125px;
    }
    .branch-header:before {
        left: 0;
        background: #0a50a3;
        display: block;
        content: '';
        position: absolute;
        max-width: 100vw;
        width: 100%;
        height: .2rem;
        bottom: 20px;
    }
}
@media all and (max-width: 991px) {
    .branch-header {
        padding-top: 2rem !important;
        background-position: left !IMPORTANT;
    }
}

/**
Lo home
 */

.theme_gem_lo_img img {
    max-width: 100%;
}

.theme_gem_lo_card.lo-card-v2 {
    padding: 3rem;
    width: 100%;
    max-width: 100%;
}
.theme_gem_lo_block {
    background: #ccc;
}

.theme_gem_lo_card {
    background-color: #333333;
    color: #fff;
    border: 1rem solid #fff;
}

.theme_gem_lo_card a {
    color: #fff;
}

.theme_gem_lo_card .lo-title {
    border-bottom: 2px solid #fff;
    width: 100%;
    display: block;
    padding-bottom: 0.5rem;
}

.theme_gem_lo_img1 img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    left: calc(50% + 85px);
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.theme_gem_lo_img img {
    border-bottom-right-radius: 50%;
    border-top-right-radius: 50%;
    border-width: 1rem;
    border-style: solid;
    border-left-style: none;
    border-color: white;
    min-height: 480px;
    object-fit: cover;
}

/**
cta section
 */
section.cta {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0;
    color: #fff;
}

.theme_gem-cta-bg-image {
    background: url(/dev/themes/golden_empire/img/bg_pair.jpg) #0a50a3 no-repeat;
    background-size: cover;
}

section.cta .bg-image img {
    opacity: 0.5 !important;
}

section.cta .bg-image img {
    opacity: .25;
}

section.cta .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.cta .cta-text {
    font-size: 2.8rem;
    margin: auto;
    text-align: center;
    padding: 0 1.2rem;
    line-height: 1.2;
}

section.cta .cta-text h1 {
    color: #fff;
}

section.cta .cta-text span {
    color: #fff;
    line-height: 1.4;
    font-family: Roboto,sans-serif;
    font-weight: 900;
    font-size: calc(1rem * 1.235* 1.235* 1.235* 1.235* 1.235);
}

section.cta .btn-empty {
    padding: .8rem;
    min-width: 10rem;
}
@media (max-width:767px) {
    section.cta .cta-content {
        flex-direction: column;
    }

    section.cta .btn-empty {
        margin-top: 2rem;
        transform: scale(1.2);
    }
}
section.cta .cta-text {
    background: #19397d;
    padding: 25px;
}
section.cta .btn-empty {
    padding: .8rem;
    min-width: 10rem;
    background-color: #19397D;
}

.btn-empty {
    display: inline-block;
    text-align: center;
    width: unset;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
    border: 3px solid transparent;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    font-family: Roboto,sans-serif;
    line-height: 1.4;
    letter-spacing: .2em;
}

.btn-empty {
    color: #fff;
    border-color: #fff;
    background: 0 0;
}

.btn-empty:active,
.btn-empty:focus {
    color: #fff;
    background: rgba(255,255,255,.3);
}

.btn-empty:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,.3);
}

/**
Calcs
 */
.calculators .form-group.dollars label:after {
    content: "$";
    pointer-events: none;
    position: absolute;
    left: 10px;
    top: auto;
    bottom: -35px !important;
    font-size: 20px;
    font-weight: bold;
}