@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    overflow-x: hidden;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
}

a, button, input[type="submit"] {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

a:hover {
    text-decoration: none;
    color: #c4a52d;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #c4a52d;
    font-family: "PT Serif", serif;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.section-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: #c4a52d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.white h2 {
    color: #fff;
}

h1 {
    font-size: 54px;
    line-height: 1.5;
}

h2 {
    font-size: 48px;
    line-height: 1.4;
}

h3 {
    font-size: 35px;
    line-height: 1.5;
}

h4 {
    font-size: 27px;
    line-height: 1.5;
}

h5 {
    font-size: 24px;
    line-height: 1.5;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.visible-xs {
    display: none;
}

button {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.btn-default {
    display: inline-block;
    background: #c4a52d;
    padding: 15px 35px;
    color: #fff;
    border-radius: 0px;
    min-width: 200px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #c4a52d;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
}

.btn-default.bordered {
    background: #fff;
    color: #c4a52d;
    padding: 13px 35px;
    border: 2px solid #c4a52d;
}

.btn-default:hover {
    color: #c4a52d;
    background: #fff;
    border-color: #c4a52d;
}

.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    width: 100px;
    background: #c4a52d;
    height: 4px;
    position: absolute;
    top: 100%;
    left: 0%;
}

ul.list li {
    margin: 0px 0px 15px 0px;
}

/*** PRELOADER ***/
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
    position: absolute;
    border: 2px solid #c4a52d;
    opacity: 1;
    border-radius: 0;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.img-rounded {
    border-radius: 15px;
}

.hover-animate {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.hover-animate:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.gold {
    color: #c4a52d;
}

/*** HEADER ***/
.header {
    padding: 30px 20px 0px 20px;
    z-index: 9999;
    top: 0px;
    left: 0;
    width: 100%;
    position: absolute;
}

.navbar-nav > li {
    margin: 0px 20px;
}

.navbar-nav .nav-link {
    color: #fff;
    line-height: 45px;
    padding-bottom: 5px;
    position: relative;
    transition: all .3s;
    text-transform: uppercase;
    padding: 0px 0px !important;
    font-size: 14px;
    justify-content: center;
}

.navbar-brand {
    padding: 0px !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-item > .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: #c4a52d;
}

.navbar-expand-lg .navbar-nav li {
    display: inline-block;
    vertical-align: top;
}

.navbar-brand img {
    max-height: 110px;
    margin-right: 20px;
    margin-left: 20px;
}

.navbar .menu-item-has-children::after {
    display: none;
}

.navbar {
    padding: 0px 0px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav li.dropdown:hover ul.sub-menu {
    display: block;
}

ul.sub-menu {
    left: 0px;
    top: 100%;
    min-width: 255px;
    width: 100%;
    padding: 7px 0px;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 4%);
    background: #fff;
    text-align: left;
    left: -150%;
    right: -150%;
    margin: auto;
    margin-top: 0px;
    width: calc(100% + 150px);
}

ul.sub-menu li {
    width: 100%;
    padding-bottom: 0px !important;
    position: relative;
}

ul.sub-menu li .nav-link {
    line-height: 1.4;
    transition: all .3s;
    text-transform: capitalize;
    width: 100%;
    display: inline-block;
    clear: both;
    border: 0;
    margin: 0px;
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 14px !important;
    padding: 10px 10px 10px 30px !important;
    color: #000 !important;
    border: none;
    text-transform: uppercase;
}

ul.sub-menu li:last-child::after {
    display: none;
}

.navbar-nav .nav-item ul.sub-menu li:hover:after {
    background: #000;
}

.navbar-nav .nav-item ul.sub-menu li:hover a {
    color: #c4a52d !important;
    background: none;
}

.header.fixed {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    background: #212121;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s;
    padding: 10px 0px;
}

.navbar-brand.hide {
    display: none;
}

.social-div {
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 45px;
    z-index: 5;
    text-align: center;
}

.social-div a:hover {
    background: #0a3ea3;
    color: #fff;
}

.social-div a:hover img {
    filter: brightness(1) invert(1);
}

.social-div .fc-divider {
    width: 1px;
    height: 31px;
    background: #fff;
    margin: 5px 0px;
    display: inline-block;
}

.social-div .insta {
    position: relative;
}

.social-div a {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 10px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    width: 43px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .6s ease;
    background: #fff;
    color: #2a2b2c;
    border-radius: 50%;
}

.social-div a img {
    max-width: 20px;
    margin: 0;
}

.postion-vidoe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}

.navbar-light .navbar-nav .nav-item .nav-link.menu-item-has-children {
    position: relative;
    padding-right: 15px !important;
}

.menu-item-has-children::before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: absolute;
    top: 20px;
    right: -15px;
    color: #fff;
}

.header ul.navbar-upper.navbar-nav > li {
    margin: 0 10px;
}

.header ul.navbar-upper {
    /*display: inline-flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;*/
    margin-bottom: 8px;
}

.header ul.navbar-upper li a {
    text-transform: uppercase;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid #fff;
}

.header ul.navbar-upper li.menu-item-search {
    margin-left: 70px;
}

.header .menu-item-search input {
    background: #fff;
    border: #c4a52d 1px solid;
}

.input-group-append {
    margin-left: -1px;
}

.navbar-upper .input-group .btn {
    background: #c4a52d;
    color: #000;
    border: none;
}

/**/
.banner {
    position: relative;
    height: 100vh;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: linear;
    z-index: 1;
}

.banner:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
}

#myVideo2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    right: 0;
}

.banner .logos-wrapper .logo {
    max-height: 300px;
    margin-bottom: 30px;
}



.banner h5 {
    font-size: 45px;
    display: block;
    font-weight: 500;
    color: #fff;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.zindex {
    position: relative;
    z-index: 3;
}

.h-100vh {
    height: 100vh;
}

.banner .btn-default {
    margin: 0px 15px;
    font-weight: bold;
    border: 1px solid #fff;
    padding: 15px 20px;
    position: relative;
    transition: all .3s;
    color: #fff;
    letter-spacing: 2px;
    overflow: hidden;
    background: none;
}

.banner .btn-default:hover, .banner .btn-default.active {
    background: #c4a52d;
    color: #fff;
    border-color: #c4a52d;
}

.banner .btn-default:hover:after {
    left: 0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.img {
    display: inline-block;
    width: 100%;
    height: 100vh;
}

/**/
.properties {
    padding: 80px 0px;
}

.position > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.position .listings-img {
    position: relative;
    z-index: 1;
}

.position .listings-item::before {
    content: '';
    width: 100%;
    height: calc(100% - 50px);
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 99;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.position .listings-item::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -75px;
    background: url(../img/logo-icon.png) 50% 50% no-repeat;
    background-size: contain;
    width: 150px;
    height: 200px;
    z-index: 9999;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.position .listings-item:hover::after, .position .listings-item:hover::before {
    opacity: 1;
}

.position .listings-img canvas {
    display: block;
    width: 100%;
    min-height: 250px;
    max-height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.position .listings-img:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: transparent url(../img/fl-info-bg-a.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    pointer-events: none;
}

.position .listings-item .listings-info-main, .position .listings-item .listings-info-hover {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    padding: 0 27px;
    background-color: rgba(0, 0, 0, 0.60);
}

.position .listings-item .listings-info-hover {
    opacity: 0;
}

.position .listings-item .listings-info-main .listings-address {
    display: flex;
    list-style: none;
    width: 100%;
    color: #fff;
    margin: 0;
    padding: 0;
}

.position .listings-item .listings-info-main .listings-address li {
    width: 100%;
    overflow: hidden;
    display: block;
}

.position .listings-item .listings-info-main .listings-address li:last-child {
    text-align: right;
    width: auto;
    flex-shrink: 0;
}

.position .listings-item .listings-info-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.60);
    padding: 0 8px;
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.position .listings-item .listings-info-left .fl-address {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fl-address i {
    margin: 0 12px 0 12px;
    color: #fff;
}

.position .listings-item:hover .listings-info-main {
    opacity: 0;
    visibility: hidden;
}

.position .listings-item:hover .listings-info-hover {
    opacity: 1;
    visibility: visible;
}

.listings-img .prop-label {
    position: absolute;
    min-width: 155px;
    padding: 2px 10px;
    top: 25px;
    text-align: center;
    color: #fff;
    background: #c4a52d;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    text-transform: uppercase;
    font-size: 19px;
    z-index: 1;
}

.properties .owl-theme .owl-nav {
    margin: 0;
}

.properties .owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    background: #000;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    transition: .4s all ease;
    position: absolute;
    top: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.properties .owl-theme .owl-nav [class*=owl-] i {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 2px;
}

.properties .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: 0;
}

.properties .owl-theme .owl-nav [class*=owl-].owl-next i {
    margin-right: 0px;
    margin-left: 2px;
}

.properties .owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: #000239;
}

/**/
.why-work-with {
    background: url(../img/bg-work.jpg) no-repeat;
    background-position: center top;
    background-attachment: fixed;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-work-with:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.85);
}

.why-work-with video {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: drop-shadow(2px 4px 6px #000);
}

.why-work-with .card {
    height: 100%;
    padding: 30px 15px 20px 15px;
    display: inline-block;
    width: 100%;
}

.why-work-with .spr > div {
    margin-bottom: 25px;
}

.why-work-with h3 {
    color: #000;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    display: block;
    margin: 20px 0px 15px 0px;
    font-weight: 600;
}

.why-work-with p {
    margin: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #666666;
    color: #000;
}

.why-work-with .btn-default {
    margin: 5px 10px 5px 0px;
    font-weight: 600;
    color: #fff;
}

.why-work-with .btn-default.btn-default.bordered {
    background: #fff;
    color: #c4a52d;
}

.why-work-with .btn-default:hover {
    background: #fff;
    color: #c4a52d;
}

.why-work-with .btn-default.btn-default.bordered:hover {
    background: #c4a52d;
    color: #fff;
}

.why-work-with .hover-animate img {

    transition: 2.5s; /* Transition duration */
}

.why-work-with .hover-animate:hover img {
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); /* How many times it'll rotate = degrees÷360 */
}

/**/
.text-stats {
    padding: 95px 0px;
}

.text-stats .section-title h6 {
    margin-bottom: 25px;
}

.text-stats h3 {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
}

.text-stats .mtop {
    margin-top: 70px;
}

/**/
.get-know {
    padding: 70px 70px 170px 70px;
    background: url(../img/slider-2.jpg) -20% 50% no-repeat;
    background-size: 65% auto;
}

.get-know .section-title {
    background: rgba(245, 245, 244, 0.95);
    padding: 77px 40px;
    max-width: 680px;
    float: right;
}

.get-know .section-title p {
    padding: 0px 30px;
}

.get-know p {
    margin-bottom: 40px;
}

.get-know .btn-default {
    margin: 5px 10px;
}

.get-know .btn-default:hover {
    background: #fff;
    color: #c4a52d;
}

.get-know .btn-default.bordered:hover {
    background: #c4a52d;
    color: #fff;
}

/**/
.home-appraisal {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/bg-homeevaluation.jpg) 50% 50% no-repeat;
    background-attachment: fixed;
    background: none;
    background-size: cover;
    position: relative;
    padding: 150px 0;
    padding: 80px 40px;
    margin: 0px 0px;
}

.home-appraisal .bgs {
    background: none;
    background-size: cover;
    padding: 60px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url(../img/bg-homeevaluation.jpg) 50% 50% fixed no-repeat;
    background-size: cover;
}

.home-appraisal .section-title h6 {
    text-transform: uppercase;
    font-size: 60px;
    margin-bottom: 0;
}

.home-appraisal .section-title h2 {
    margin: 30px 0px 30px 0px;
    margin: 5px 0px 30px 0px;
}


/**/
.testi {
    padding: 120px 0px 0px 0px;
    position: relative;
    background: #000;
    background: url(../img/bg-testimonials.jpg) 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testi::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.85);
    z-index: 1;
}

.zindex {
    position: relative;
    z-index: 9;
}

.testi p {
    color: #000;
    line-height: 32px;
    margin-bottom: 40px;
}

.testi h3 {
    color: #000;
    font-size: 16px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.testi .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
    border-radius: 0px;
    border: 1px solid #30323a;
    background: none;
    margin: 0px 3px;
}

.testi .owl-theme .owl-dots .owl-dot.active span {
    background: #c4a52d;
    border: 1px solid #c4a52d;
}

.testi .mbs {
    margin-bottom: -130px;
}

.testi .owl-carousel .owl-nav button.owl-next, 
.testi .owl-carousel .owl-nav button.owl-prev {
    color: #30323a;
    border: 1px solid #30323a;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    font-size: 30px;
    line-height: 25px;
}

.testi .owl-carousel .owl-nav button.owl-next:hover, 
.testi .owl-carousel .owl-nav button.owl-prev:hover {
    background: #c4a52d;
    color: #fff;
    border: 1px solid #c4a52d;
}

.owl-carousel .owl-item img {
    filter: invert(1);
}

.img-link {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 330px;
    position: relative;
}

.img-link:after {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.img-link:hover::before {
    border-color: #fff;
    top: 0px;
    right: 0px;
}

.img-link:before {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    top: -30px;
    right: -30px;
    bottom: unset;
    left: unset;
    height: 100%;
    width: 100%;
    border: 1px solid #c4a52d;
    opacity: 0.7;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.img-link .cb-image {
    max-height: 265px;
    width: auto;
}


/*** FOOTER ***/
.footer {
    /*background:linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url(../img/bg-footer.jpeg) 50% 30% no-repeat;
    background-size: cover;*/
    background: #212121;
    padding: 165px 0px 75px 0px;
}

.footer h3 {
    font-size: 22px;
    font-weight: 600;
}

.foot-link {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.foot-link li {
    margin: 10px 0px;
}

.foot-link li a {
    color: #fff;
    text-transform: uppercase;
}

.foot-link li:hover a {
    color: #c4a52d;
}

.foot-link.no-uppercase li a {
    text-transform: none;
}

.footer p {
    color: #fff;
}

/**/

.banner .logo {
    margin-left: 0px;
}

.banner .btn-default {
    min-width: 239px;
}

.img-link:before {
    right: auto;
    top: -30px;
    left: 30px;
    width: 87%;
}

.img-link .cb-image {
    max-height: inherit;
    width: 230px;
    margin-left: 30px;
    margin-bottom: 25px;
}

.img-link:hover::before {
    right: auto;
    top: -20px;
    left: 0px;
}

.header ul.navbar-upper li a {
    align-items: end;
    justify-content: center;
    padding-bottom: 7px !important;
}

.header ul.navbar-upper li:nth-child(2) a {
    padding-bottom: 8px !important;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: #c4a52d !important;
}

.page-banner {
    height: 60vh;
    padding-bottom: 15px;
}

.page-banner .section-title h2 {
    margin-bottom: 0;
    line-height: 1;
    color: #fff;
}

.page-banner .section-title {
    display: inline-block;
    padding: 20px 35px;
}

.about.inner {
    padding: 75px 0px;
}

.about.inner .list {
    padding-left: 20px;
    font-size: 16px;
}

.about.inner .list li {
    margin-bottom: 10px;
}

.about.inner .list li::marker {
    color: #c4a52d;
    font-size: 20px;
    font-weight: 600;
}

.info-small {
    padding: 0px 0px 0px 0px;
}

.info-small .bg {
    padding: 60px 60px;
    background: #f5f2f2;
}

.info-small .section-title {
    margin: 0;
}

.about.inner .bg-form {
    background: #f8f8f8;
    padding: 50px 30px;
    border: 10px solid #c4a52d;
}

.bg-form h2 {
    font-size: 36px;
}

.bg-form .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 0px;
    margin-bottom: 15px;
    text-transform: inherit;
    letter-spacing: 0;
    appearance: auto;
}

.bg-form .form-control::-webkit-input-placeholder {
    color: #495057;
}

.bg-form .form-control:focus {
    border: 1px solid #c4a52d;
    box-shadow: none;
}

.bg-form textarea.form-control {
    height: 150px;
    resize: none;
}


/************** Free Estimation Page CSS Start ***************/
.spperinfo {
    padding: 80px 0px 80px 0px;
}

.spperinfo .section-title h6 {
}

.spperinfo .bg {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 1px rgb(255 255 255 / 40%);
    padding: 55px 50px;
}

.spperinfo .bottom-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.spperinfo .btn-info {
    border: none;
    width: 100%;
    margin-top: 15px;
    pointer-events: none;
    min-height: 106px;
    font-size: 18px;
    padding: 24px 0px;
}

.spperinfo .section-title {
    margin-bottom: 40px;
}

.spperinfo .section-title h2 {
    line-height: 1.2;
    margin: 0;
    margin-top: 0px;
}

.spperinfo .btn-info span {
    font-size: 16px;
}

.spperinfo .btn-info {
    color: #000;
    border: 1px solid #000;
    background: none;
    border-radius: 0px;
}

.spperinfo .btn-info.active {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.spperinfo p label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.spperinfo input {
    width: 100%;
    height: 60px;
    padding: 0;
    padding-left: 15px;
    color: #000;
    background: #fff;
    box-shadow: none;
    border: 1px solid #000;
    border-radius: 0;
}

.fieldset-cf7mls .cf7mls_next {
    float: right;
}

.cf7mls-btns .action-button {
    background-color: #c4a52d !important;
    border: 1px solid #c4a52d;
    color: #ffffff;
    cursor: pointer;
    margin: 25px 0px 26px;
    min-width: 100px;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all .3s;
}

.spperinfo input:focus {
    background: #fff;
    color: #000;
}

.cf7mls-btns .action-button {
    margin: 25px 0px 26px;
    position: relative;
}

.cf7mls-btns .action-button:hover {
    background-color: #000 !important;
    border-color: #000;
    color: #fff;
}

.fieldset-cf7mls .cf7mls-btns .cf7mls_back, .cf7mls_back.action-button {
    float: left;
    border: 1px solid #000 !important;
    border-radius: 0px;
    background: none !important;
    color: #000 !important;
}

.fieldset-cf7mls .cf7mls-btns .cf7mls_back:hover, .cf7mls_back.action-button:hover {
    border-color: #c4a52d !important;
    background: #c4a52d !important;
    color: #fff !important;
}

#stepper #StepTwo input {
    border: 1px solid #000;
    margin-bottom: 20px;
}

#stepper input.wpcf7-submit {
    border: 1px solid #c4a52d;
    color: #fff;
    background: #c4a52d;
    min-height: 45px;
    padding: 0px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 200px;
    margin-top: 35px;
}

#stepper input.wpcf7-submit:hover {
    border-color: #000 !important;
    background: #000 !important;
    color: #fff !important;
}

#StepThree p {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}


#StepOne.active, #StepTwo.active, #StepThree.active {
    display: block !important;
}

.spperinfo.alert h4 {
    font-size: 24px;
    line-height: 1.5;
    color: #000;
}

.spperinfo.alert label {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

#stepper.alert span.wpcf7-list-item input {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 10px;
}

#stepper.alert span.wpcf7-list-item {
    display: inline-block;
    width: 48%;
    text-align: left;
}

.spperinfo.alert input {
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #000 !important;
}

.spperinfo.alert input.wpcf7-submit {
    border: 1px solid #c4a52d !important;
    color: #fff !important;
    background: #c4a52d !important;
}

.spperinfo P {
    white-space: inherit;
}

#stepper.alert #StepTwo input {
    margin-bottom: 0px;
}

div#StepThree .white-box {
    padding: 15px 15px;
}

.spperinfo .section-title h2:after {
    opacity: 0;
}

/************** Free Estimation Page CSS End ***************/

/************** Calculator Page CSS Start ***************/
.newinfo {
    padding: 80px 0px;
    overflow: hidden;
    background: url(../img/bg-mortgage.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.newinfo.welcometex {
    background: url(../img/bg-welcometax.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.newinfo .bg {
    border-radius: 10px;
    box-shadow: 0px 0px 15px 1px rgb(255 255 255 / 40%);
    padding: 55px 50px;
    background: rgba(245, 245, 244, 0.95);
}

#payment-calc .rh-calc-main .rate-selector, .ratehub-calc #calc_extension .section-content h4, .ratehub-calc #calc_extension .rate-risk .ledger-items li:first-child + li, #payment-calc .rh-calc-main .rate-selector, #afford-output .rate-selector {
    color: #c4a52d !important;
}

.ratehub-calc #calc_extension .amortization tbody .highlight td, .ratehub-calc #calc_extension .amortization tbody .highlight th, #afford-input tbody .afford-submit a, .rh-rate-selector table.rate-display td:first-child + td + td a, .ratehub-calc .go, .ratehub-calc .get-details, #afford-input tbody .afford-submit a, #payment-calc .calc-tip-middle, #payment-calc .calc-tip-top, #payment-calc .calc-tip-bottom {
    background: #c4a52d !important;
}

#payment-calc .calc-tip-nib {
    display: none !important;
}

.newinfo .iframCode h2 {
    margin-bottom: 0px !important;
}

.ratehub-calc #calc_extension .section-title:after, .ratehub-calc #calc_extension .section-title:before {
    background: none;
}

.ratehub-calc #calc_extension .section-title::after {
    position: relative;
    right: auto;
    top: auto;
    content: "\f078";
    background: none;
    height: 22px;
    width: auto;
    margin-left: 7px;
}

.ratehub-calc .rh-calc-main .col1 {
    color: #000 !important;
    font-weight: 500 !important;
}

#payment-calc .calc-tip-wrapper {
    z-index: 99 !important;
}

.rh .popover .popover-title {
    background: #c4a52d !important;
}

.ratehub-calc #calc_extension .amortization tbody .highlight td, .ratehub-calc #calc_extension .amortization tbody .highlight th {
    border: 1px solid #c4a52d;
    background-color: #c4a52d !important;
}

.ratehub-calc #calc_extension .rate-risk thead th, .ratehub-calc #calc_extension .amortization thead th,
.ratehub-calc #calc_extension .rate-risk table th:first-child {
    background-color: #c4a52d;
}

/************** Calculator Page CSS End ***************/


.contact-info {
    padding: 100px 0px;
}

.contact-info {
    padding: 0;
}

.contact-link {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-left: 15px;
}

.contact-link a, .contact-link .fa {
    font-size: 22px;
}

.contact-link li {
    margin: 10px 0px;
}

.contact-link li a {
    color: #000;
    display: flex;
    font-size: 20px;
    align-items: start;
}

.contact-link .fa {
    border: 1px solid #c4a52d;
    background: #c4a52d;
    border-radius: 100%;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
}

.contact-link li:hover a {
    color: #000;
}

.contact-link li:hover .fa {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

.contact-info .form-control {
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0px;
    margin-bottom: 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact-info textarea.form-control {
    height: 100px;
    resize: none;
}

.contact-info .form-control:focus {
    border: 1px solid #c4a52d;
    box-shadow: none;
}

.contact-info .rt figure {
    height: 100%;
    min-height: 400px;
}

.map iframe {
    float: left;
}

.testi .owl-theme .owl-nav [class*=owl-] span {
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 8px;
}

.testi .owl-theme .owl-nav [class*=owl-].owl-prev span {
    padding-right: 2px;
}

.testi .owl-theme .owl-nav [class*=owl-].owl-next span {
    padding-left: 2px;
}

.footer {
    padding: 75px 0px 75px 0px;
}


.footer.career-footer {
    padding: 165px 0px 75px 0px;
}

.footer.home {
    padding: 165px 0px 75px 0px;
}

.joinus {
    padding: 80px 0px 90px 0px;
}

.joinus .form-control {
    width: 40%;
    height: 57px;
    background: #fff;
    border: 1px solid #fff;
    border-right: none;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.375px;
    color: #000;
    padding: 0 15px;
}


.joinus .form-control:focus {
    outline: none;
    box-shadow: none;
}

.joinus button {
    /* border: 1px solid #fff;
    height: 57px;
    width: 100%;
    background: #000;
    display: block;
    color: #fff;
    font-size: 30px; */
}

.imgjoin {
    max-height: 400px;
}

.joinus .center {
    margin-top: 40px;
}

.joinus .center input {
    display: inline-block;
    box-shadow: 0px;
    border: 1px solid #c4a52d;
}

.header.innerheader {
    z-index: 999;
    position: relative;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s;
    padding: 10px 10px;
}

.section-title h6 {
    font-size: 30px;
}

.teamsection {
    padding: 30px 0px 100px 0px;
}

.teambox {
    margin-bottom: 70px;
}

.teambox .imgbox {
    display: inline-block;
    width: 80%;
    position: relative;
    margin-bottom: 20px;
}

.teambox:hover .imgbox::before {
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}


.teambox .imgbox:after {
    content: '';
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.teambox .imgbox:hover:after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.teambox .imgbox:before {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    top: -20px;
    right: -20px;
    bottom: unset;
    left: unset;
    height: 100%;
    width: 100%;
    border: 1px solid #c4a52d;
    opacity: 0.7;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.teambox h6 {
    margin-bottom: 2px;
    font-size: 20px;

}

.contact-link .fa {
    border: none;
    background: none;
    min-width: 22px;
    height: 35px;
    line-height: 35px;
    color: #c4a52d;
    margin-right: 10px;
}

.contact-link li:hover .fa {
    border: none;
    background: none;
    color: #000;
}

.teambox .contact-link li {
    display: inline-block;
    margin: 0;
}

.team-details {
    padding: 240px 0px 70px 0px;
}

.properties .section-title {
    border: 2px solid #c4a52d;
    padding: 20px 10px 0px 10px;
    margin-bottom: 35px;
}

.properties .section-title h6 {
    margin: 0;
}

.bg-form textarea.form-control {
    height: 85px;
}

.bg-form .form-box h5 {
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info .bgs {
    background: rgba(245, 245, 244, 0.95);
    padding: 90px 54px;
    display: inline-block;
    position: relative;
    right: -95px;
    z-index: 9;
}

.contact-info .bgblack {
    background: #000;
    background: rgba(0, 0, 0, 0.8);
    padding: 45px 140px 95px 140px;
}

.contact-info.bg-beige {
    background-color: #f5f2f2;
    padding: 100px 0px;
}

.contact-info .bg-grey {
    background: rgba(245, 245, 244, 0.95);
    padding: 145px 140px 95px 140px;
}

.contact-info .bg-grey label,
.contact-info.bg-beige label {
    color: #000;
}

.contact-info label {
    color: #fff;
}

.bg-form .form-box h5 {
    font-size: 24px;
    color: #231f20;
    letter-spacing: .1em;
}

.bg-form .form-control {
    width: 100%;
    height: 60px;
    margin: 0 0 40px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    background: transparent;
    font-size: 16px;
    color: #000;
    display: inline-block;
    vertical-align: top;
    outline: none;
    appearance: none;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
}

.bg-form textarea.form-control {
    height: 150px;
}

.bg-form .form-control:focus {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

body {
}

body.home,
body.homi {
    padding-top: 0px;
}

.header.innerheader {
    position: fixed;
    background: #212121;
}

.contact-info .bgimg {
    background: url(../img/bg-contact-pic.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.contact-info .aligntext {
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
}


a.listings-item {
    margin-bottom: 30px;
}

.findhome {
    padding: 100px 0px 30px 0px;
    overflow: hidden;
}

.findhome .bgs {
    padding: 60px 40px;
    align-items: center;
    background: url(../img/bg-form.jpg) right center no-repeat;
    background-size: cover;
    position: relative;
}

.findhome .container {
    max-width: 1400px;
}

.findhome .bgs::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000 20%, transparent);
}

.findhome .bgs::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    top: 50px;
    right: -45px;
    width: 44.673%;
    background: url(../img/accent-bg.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.findhome .bgs:hover::after {
    border-color: #fff;
    top: 0px;
    right: 0px;
}

.findhome .field-group {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.findhome .field-half {
    width: 45%;
    margin-right: 17px;
}

.findhome label {
    text-transform: uppercase;
    color: #fff;
    display: block;
}

.findhome .form-control::-webkit-input-placeholder {
    color: #fff;
}

.findhome .form-control {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #fff;
    width: 100%;
    color: #fff;
}

.findhome option {
    color: #000;
}

.findhome .btn-default {
    width: 100%;
    padding: 21px 35px;
}

.section-title.pagetitle {
    border: 2px solid #c4a52d;
    padding: 20px 10px 0px 10px;
    margin-bottom: 35px;
}

.get-know.joinsection .section-title p {
    padding: 0px 0px;
}

.get-know.joinsection .section-title .btn-default {
    margin: 0;
}

.get-know.joinsection {
    padding: 7px 70px;
    padding: 40px 70px;
    background: url(../img/img-joinus.jpg) 100% 0% no-repeat;
    background-size: 65% auto;
    background-size: 72% auto;
}

.contact-info.bgblack {
    background: #000;
    padding: 100px 0px 0px 0px;
}

#stepper.bgs {
    background: url(../img/bg-homevaluation.jpg) 100% 50% no-repeat;
    background-size: cover;
}

#stepper.bgs .bg {
    background: rgba(255, 255, 255, 0.8);
}


.findhome {
    overflow: hidden;
}

.findhome .section-title h2 {
    line-height: 1.1;
}

.findhome .bgs .row {
    position: relative;
    z-index: 9;
}

.findhome .bgs::after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    top: 50px;
    right: -45px;
    width: 44.673%;
    background: none;
    background-size: cover;
    z-index: 0;
    width: 100%;
    top: -20px;
    right: -20px;
    bottom: unset;
    left: unset;
    height: 100%;
    width: 100%;
    border: 2px solid #c4a52d;
    opacity: 0.7;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
}

.properties .findhome .section-title {
    border: none;
    padding: 0px;
    margin-bottom: 0px;
}

.aboutget .spr {
    padding: 100px 15px;
}

.get-know.joinsection .section-title {
    padding: 20px 20px;
    padding: 30px;
    max-width: 780px;
}

.contact-info .mbs {
    margin-bottom: -130px;
}

.get-know.buysell {
    background: url(../img/img-buysell.jpg) -20% 50% no-repeat;
    background-size: 65% auto;
    margin-top: 170px;
}

.get-know.buysell .section-title {
    padding: 20px 20px;
    float: none;
}


#stepper.alert {
    background: url(../img/bg-alerts.jpg) 100% 50% no-repeat;
    background-size: cover;
    margin-bottom: 0;
    border: none;
}

#stepper.alert .bg {
    background: rgba(255, 255, 255, 0.8);
}

.properties.inner, .newinfo {
    padding-top: 170px;
}

.about.inner {
    padding-top: 130px;
}

.about.inner {
    padding-top: 40px;
}

#stepper.bgs, #stepper.alert {
    padding-top: 170px;
}

.get-know.joinsection {
    padding-top: 170px;
}

.contact-info .bgblack {
    padding-top: 170px;
}

.aboutget .spr {
    padding: 30px 50px;
    background: rgba(245, 245, 244, 0.8);
    margin-top: 70px;
    margin-bottom: 70px;
}

.get-know.aboutpage {
    background: url(../img/slider-2.jpg) 120% 0% no-repeat;
    background-size: 65% auto;
    padding-top: 180px;
    padding-bottom: 50px;
}

.get-know.aboutpage .section-title p {
    margin-bottom: 0px;
}

.get-know.aboutpage.sdoption .section-title p {
    margin-bottom: 20px;
}

.get-know.homi {
    padding: 70px 70px 70px 70px;
}

.get-know.homi .section-title {
    padding: 20px 40px;
    float: none;
}

.text-stats p {
    font-size: 18px;
}

.ratehub-calc .calc-social-icons {
    display: none;
}

li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}

li.menu-item-has-children > ul.sub-menu > li {
    position: relative;
}

li.menu-item-has-children > ul.sub-menu > li > ul.sub-menu {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
}

li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover > ul.sub-menu {
    display: block !important;
}

ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1000;
    float: left;

}

input.wpcf7-form-control.wpcf7-not-valid {
    border-bottom: 2px solid #f00 !important;
}

span.wpcf7-not-valid-tip {
    display: none;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    display: inline-block !important;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
    display: inline-block !important;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
    display: none !important;
}

.contact-info.bgblack .wpcf7 form .wpcf7-response-output, section.contact-info .wpcf7 form .wpcf7-response-output {
    color: #fff;
}

/** Logos Homepage **/

.logos-wrapper{
    display: flex;
    justify-content: center;
    column-gap: 40px;
}




.nowrap{
    white-space: nowrap;
}


@media (min-width: 1100px) and (max-width:1400px){
    .navbar-brand img{
        max-height: 90px;
    }

    .header .nav-item{
        margin: 0 12px !important;
    }

    .header .nav-link {
        font-size: 12px !important
    }
    ul.sub-menu li .nav-link{
         font-size: 12px !important
    }
}

@media (min-width: 992px) and (max-width:1100px){
    .navbar-brand img{
        max-height: 60px !important;
    }

    .navbar-brand img:first-of-type{
        margin-right: 0;
    }

    .header .nav-item{
        margin: 0 12px !important;
    }

    .header .nav-link {
        font-size: 12px !important
    }
     ul.sub-menu li .nav-link{
         font-size: 12px !important
    }
}


.absoluteLogo{
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    max-height: 200px;
}