@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=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');


/*** GENERIC CSS ***/
html, body {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

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

button, a, .owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev,
input[type="submit"] {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
}

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

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: #333;
    font-family: 'Montserrat', sans-serif;
}

.section-title h6 {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .200em;
    text-transform: uppercase;
    color: #7a7a7a;
    color: #000;
    position: relative;
    margin-bottom: 0px;
    display: inline-block;
    padding-right: 95px;
}

.section-title h6::after {
    content: '';
    width: 75px;
    height: 2px;
    position: absolute;
    top: 6px;
    right: 0px;
    background: #aa1f2e;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 600;
    font-size: 60px;
    color: #000;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: .020em;
    margin-top: 0px;
}

.divider {
    width: 80px;
    height: 1px;
    background: #000;
    display: block;
    margin: 30px 0;
}

.divider.white {
    background: #fff;
}

.centered {
    margin: 30px auto !important;
}

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

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

.section-title.white h6:after {
    background: #fff;
}

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

.section-title.white p {
    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;
}

h6 {
    font-family: 'Montserrat', sans-serif;
}

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

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

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

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

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

.visible-xs {
    display: none;
}

.btn-default {
    display: inline-block;
    background: none;
    padding: 0px 25px;
    border: 2px solid #b92b33;
    font-size: 16px;
    border-radius: 0px;
    text-align: center;
    min-width: 200px;
    text-transform: uppercase;
    color: #b92b33;
    background: none;
    line-height: 56px;
    font-size: 15px;
    font-weight: 500;
}

.btn-default.whiteborder {
    background: none;
    color: #fff;
    padding: 0px 20px;
    margin: 0px 5px;
    border-color: #fff;
}

.btn-default.blackborder {
    background: none;
    color: #000;
    padding: 0px 20px;
    margin: 0px 5px;
    border-color: #000;
}

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

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

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

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

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

.btn-default.whiteactive {
    background: #fff;
    color: #b92b33;
    border-color: #fff;
}

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

.underlined::after {
    content: '';
    width: 100px;
    background: #fbba20;
    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 #fbba20;
    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: #fbba20;
}

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

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

.navbar-nav .nav-link {
    color: #fff;
    line-height: 15px;
    padding-bottom: 5px;
    position: relative;
    transition: all .3s;
    font-weight: 400;
    padding: 0px 0px !important;
    font-size: 16px;
    letter-spacing: .095em;
    text-transform: uppercase;
}

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

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

.navbar-light .navbar-nav .nav-item:hover > .nav-link:before,
.navbar-light .navbar-nav .nav-item:hover > .nav-link:after,
.navbar-light .navbar-nav .nav-item.active > .nav-link:before,
.navbar-light .navbar-nav .nav-item.active > .nav-link:after {
    left: 0 !important;
    right: 0 !important;
}

.navbar-light .navbar-nav .nav-item > .nav-link::before, .navbar-light .navbar-nav .nav-item.active > .nav-link::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 51%;
    right: 51%;
    top: -8px;
    background: #bcbfc3;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.navbar-light .navbar-nav .nav-item > .nav-link::after, .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 51%;
    right: 51%;
    bottom: -8px;
    background: #bcbfc3;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

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

.navbar-light .navbar-nav .nav-item.dropdown > .nav-link,
.navbar-light .navbar-nav .nav-item.menu-item-has-children > .nav-link {
    padding-right: 15px;
}

.navbar-light .navbar-nav .nav-item:hover > .nav-link {
    background: none !important;
    color: rgba(255, 255, 255, 1) !important;
}

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

.navbar-brand img {
    max-width: 151px;
    margin-right: 10px;
    opacity: 0;
}

.header.fixed .navbar-brand img, .header.active .navbar-brand img {
    opacity: 1;
}

.navbar {
    padding: 0px 0px;
}

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

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

ul.sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    width: fit-content;
    list-style: none outside none;
    text-align: center;
    margin: 0;
    padding: 20px 0 0 0;
    background: none;
    border: 0px;
}

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

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

ul.sub-menu li a {
    line-height: 1;
    transition: all .3s;
    text-transform: capitalize;
    width: 100%;
    display: inline-block;
    clear: both;
    white-space: nowrap;
    border: 0;
    margin: 0px;
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 13px;
    padding: 10px 10px 10px 16px;
    color: #fff !important;
    border: none;
    text-transform: uppercase;
    margin-bottom: 1px;
    background-color: rgba(26, 26, 26, .75);
}

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 {
    background: #aa1f2e !important;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

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

.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.dropdown-toggle {
    position: relative;
    padding-right: 15px !important;
}

.dropdown-toggle::after {
    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: 16px;
    right: 3px;
}

.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.rt {
    margin-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 0px;
}

.header ul.rt li {
    margin-left: 25px;
}

.header .navbar-nav.rt .nav-link {
    font-size: 16px;
}

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

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

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

.header.homi .navbar-light .navbar-nav .nav-item:hover > .nav-link {
    color: #000 !important;
}


.header.homi .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #000 !important;
}

.header.active .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #fff !important;
}

.header.homi ul.rt {
    border-color: rgba(0, 0, 0, .2);
}

.header.homi .navbar-light .navbar-nav .nav-item > .nav-link::before,
.header.homi .navbar-light .navbar-nav .nav-item.active > .nav-link::before,
.header.homi .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #000 !important;
}

.header.homi .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #000 !important;
}

.header.homi.fixed .navbar-light .navbar-nav .nav-item:hover > .nav-link, .header.active.fixed .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #000 !important;
}

.header.homi.fixed ul.rt {
    border-color: rgba(255, 255, 255, .2);
}

.header.homi.fixed .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #000 !important;
}

.header.homi.fixed .navbar-light .navbar-nav .nav-item > .nav-link::before,
.header.homi.fixed .navbar-light .navbar-nav .nav-item.active > .nav-link::before,
.header.homi.fixed .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi.fixed .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #000 !important;
}

.header.homi.active .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi.active .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #000 !important;
}


.header.homi.active .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #fff !important;
}

.header.homi.active .navbar-light .navbar-nav .nav-item > .nav-link::before,
.header.homi.active .navbar-light .navbar-nav .nav-item.active > .nav-link::before,
.header.homi.active .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi.active .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #fff !important;
}

.header.homi.active .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.homi.active .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #fff !important;
}

.header.active.fixed .when-static {
    display: none;
}

.header.active .when-fixed {
    display: none;
}

.header.active .when-static, .header.active.fixed .when-fixed {
    display: inline-block;
}

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

.banner .zindex {
    padding-top: 100px;
}

.banner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: .5;
    transition-property: opacity;
    transition-timing-function: linear;
    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 .logo {
}

.banner .logo img {
    max-height: 260px;
    /* filter: brightness(0) invert(1);  */
}

.banner h2 {
    font-size: 45px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.banner p {
    color: #000;
    margin-top: 35px;
    font-size: 32px;
    font-family: 'Cinzel', serif;
}

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

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

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

.banner .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
}

.banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 8%, rgba(0, 0, 0, 0.4) 14%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0.33) 82%, rgba(0, 0, 0, 0.5) 93%, rgba(0, 0, 0, 0.5) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 8%, rgba(0, 0, 0, 0.4) 14%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0.33) 82%, rgba(0, 0, 0, 0.5) 93%, rgba(0, 0, 0, 0.5) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 8%, rgba(0, 0, 0, 0.4) 14%, rgba(0, 0, 0, 0.2) 26%, rgba(0, 0, 0, 0.2) 74%, rgba(0, 0, 0, 0.33) 82%, rgba(0, 0, 0, 0.5) 93%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#80000000', GradientType=0);
}

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

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

.owl-theme .owl-dots .owl-dot span {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #838481;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(255, 255, 255, 1);
}

/*
.slider .img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 1;
    top: auto;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
}

.slider .img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
    height: 20%;
} */


/*** ABOUT ***/
.about, .spperinfo {
    padding: 80px 0px;
    position: relative;
}

.about .bgimg, .spperinfo .bgimg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.about .bgimg img, .spperinfo .bgimg img {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
}

.about .bgimg::after, .spperinfo .bgimg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.about p {
    margin-bottom: 13px;
}

.about .row.bgs {
    margin-bottom: 60px;
}

.about .img {
    position: relative;
    /* height: 100%; */
}

.about .img::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #911b27;
    z-index: -1;
    top: 24px;
    left: -24px;
}

.about .down {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 99;
}

.about .logo, .spperinfo .logo {
    margin-left: auto;
    max-width: 550px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: .1;
}

.about .container {
    max-width: 1300px;
}

.about .social {
    border: 2px solid #911b27;
    color: #911b27;
    font-size: 20px;
    width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    margin-right: 10px;
    border-radius: 99px;
    display: inline-block;
}

.about .social:hover {
    background: #911b27;
    color: #fff;
}

.about .img img {
    box-shadow: 6px 8px 13px 1px rgba(0, 0, 0, 0.5);
}

/*** PROPERTIES ***/
.properties {
    padding: 100px 0px;
    position: relative;
}

.properties .btn-default:hover {
    border-color: #fff !important;
    background: #fff !important;
    border: 2px solid #fff !important;
    color: #b92b33;
}

.properties .bgimg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.properties .bgimg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.8) 33%, rgba(255, 255, 255, 0.8) 63%, rgba(255, 255, 255, 1) 97%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
}

.properties .bgimg img {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: grayscale(1);
}

.properties .section-title {
    padding-left: 40px;
}

.properties .spr > div {
    padding: 0px 4px;
}

.properties .fl-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 49.6%;
}

.properties .fl-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.properties .fl-bg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #b92b33;
}

.fl-item {
    margin-bottom: 8px;
}

.fl-item a {
    display: block;
    position: relative;
}

.fl-item a {
    display: block;
    position: relative;
}

.fl-item a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0); /* IE6-9 */
}

.fl-img {
    position: relative;
    overflow: hidden;
}

.fl-img canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.fl-img img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    -webkit-transition: all 0.325s ease-in-out;
    -moz-transition: all 0.325s ease-in-out;
    -ms-transition: all 0.325s ease-in-out;
    transition: all 0.325s ease-in-out;
}

.fl-item a:hover .fl-img img {
    transform: scale(1.13);
    filter: grayscale(1);
}

.fl-desc {
    position: absolute;
    bottom: 29px;
    width: 100%;
    z-index: 4;
    padding: 0px 15px;
}

.fl-desc-inner {
    max-width: 392px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.fl-desc-col.fl-desc-right {
    max-width: 331px;
    width: 100%;
}

.fl-price {
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    margin-bottom: 3px;
}

.fl-add span {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    display: block;
}

.fl-add span span {
    font-weight: 400;
    margin-top: 2px;
}

.fl-desc-col.fl-desc-left {
    max-width: 60px;
    width: 100%;
}

.fl-magni {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid #fff;
    color: #fff;
    height: 55px;
    font-size: 19px;
    -webkit-transition: all 0.325s ease-in-out;
    -moz-transition: all 0.325s ease-in-out;
    -ms-transition: all 0.325s ease-in-out;
    transition: all 0.325s ease-in-out;
}

.fl-item a:hover .fl-magni {
    background: #c41230;
    border-color: #c41230;
}

.fp-util {
    margin-top: 0;
    opacity: 0;
    -webkit-transition: all 0.325s ease-in-out;
    -moz-transition: all 0.325s ease-in-out;
    -ms-transition: all 0.325s ease-in-out;
    transition: all 0.325s ease-in-out;
    height: 0;
}

.fp-util ul {
    margin: 0;
    padding: 0;
}

.fp-util ul li {
    display: inline-block;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    margin-right: 22px;
}

.fp-util ul li img {
    display: inline-block;
    margin-right: 4px;
}

.fl-item a:hover .fp-util {
    opacity: 1;
    margin-top: 11px;
    height: auto;
}

/**** MARKETING ****/
.marketing {
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 200px;
    background: #911b27;
    padding-top: 84px;
    position: relative;
}

.marketing .icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.marketing .icons ul li {
    margin-bottom: 10px;
    margin-right: 20px;
    display: inline-block;
}

.marketing .icons ul li a {
    font-size: 19px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    color: #7d1521;
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing .icons a span {
    top: 1px;
    position: relative;
    left: 0px;
}

.marketing .container {
    max-width: 1372px;
    margin: 0 auto;
}

.global-title {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .200em;
    text-transform: uppercase;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.global-title::after {
    content: '';
    width: 75px;
    height: 2px;
    position: absolute;
    background: #fff;
    top: 7px;
    right: 0;
}

.global-title span {
    display: block;
    font-weight: 600;
    font-size: 60px;
    color: #fff;
    letter-spacing: .020em;
    margin-top: 4px;
}

.marketing p {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 26px;
    letter-spacing: .050em;
}

.marketing .left {
    padding-left: 60px;
}

.marketing .ins p {
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    line-height: 16px;
    margin-top: 11px;
    font-family: 'Montserrat', sans-serif;
}

.am-desc-title {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .100em;
}

.am-desc-inner {
    max-width: 258px;
}

.am-desc-line {
    position: absolute;
    top: 9px;
    left: 74%;
    width: 90px;
    height: 1px;
    background: #ad5e67;
}

.am-desc-line::before {
    content: '';
    background: #ad5e67;
    height: 77px;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
}

.am-desc-line::after {
    content: '';
    background: #ad5e67;
    height: 1px;
    position: absolute;
    bottom: -76px;
    right: -16px;
    width: 17px;
}

.am-desc-2 {
    max-width: 190px;
}

.am-desc-2 .am-desc-line {
    width: 130px;
}

.am-desc-2 .am-desc-line::before {
    height: 220px;
}

.am-desc-2 .am-desc-line::after {
    bottom: -219px;
    right: -120px;
    width: 120px;
}

.marketing .middle {
    position: relative;
    padding: 0px 15px;
    left: 20px;
}

.marketing .middle .img1 {
    position: absolute;
    top: -12px;
    left: 0;
    width: 50%;
    height: 300px;
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.45);
}

.marketing .middle .img2 {
    position: absolute;
    top: 140px;
    right: 55px;
    width: 39%;
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.45);
    height: 270px;
}

.marketing .middle .img3 {
    top: 300px;
    right: 38%;
    width: 44%;
    height: 150px;
    position: absolute;
    box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.45);
}

.am-desc-3 {
    max-width: 361px;
    margin-top: 80px;
    position: relative;
    left: 0px;
}

.am-desc-3 .am-desc-line {
    left: -36px;
    width: 27px;
}

.am-desc-3 .am-desc-line::before {
    left: 0;
    height: 123px;
}

.am-desc-3 .am-desc-line::after {
    bottom: -123px;
    right: 26px;
    width: 17px;
}

.marketing .down h4 {
    text-align: center;
    font-family: 'Red Hat Display';
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 34px;
    margin-bottom: 0px;
}

.marketing .down p {
    color: #fff;
    letter-spacing: .050em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    margin-top: 5px;
}

.marketing .icons {
    width: 120px;
}

/*
.marketing .icons a {
    font-size: 19px;
    width: 36px;
    line-height: 36px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    justify-content: center;
    align-items: center;
    color: #7d1521;
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
	margin-bottom: 10px;
	margin-right: 20px;
	text-align: center;
} */

.am-desc-smi-item .icons:hover {
    background: #7d1521;
    color: #fff;
}


/**** Testimonials ****/
@font-face {
    font-family: 'Sophia Bella DEMO';
    src: url('../fonts/Sophia Bella DEMO.ttf') format('truetype');
}

.testimonials {
    background: #000 url(../img/moulin.webp) repeat;
    padding: 70px 0px;
}

.testimonials .stars {
    color: #f0ad3a;
    font-size: 24px;
    margin-bottom: 25px;
    display: inline-block;
}

.testimonials h2 {
}

.testimonials .bg {
    padding: 0px 70px;
}

.testimonials p {
    color: #fff;
}

.testimonials h5 {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.testimonials h5 img {
    border-radius: 50%;
    width: 76px !important;
    height: 76px !important;
    object-fit: cover;
    margin-right: 15px;
}

.testimonials .owl-theme .owl-nav .owl-prev {
    position: absolute;
    top: 10%;
    left: 0px;
    color: #fff;
    font-size: 65px;
}

.testimonials .owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 10%;
    right: 0px;
    color: #fff;
    font-size: 65px;
}

.testimonials .owl-theme .owl-nav button:hover {
    background: none !important;
}

/*** CONTACT FORM ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/old-town.jpg) 50% 50% fixed no-repeat;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
}

.contact h6, .contact h2, .contact p {
    color: #fff;
}

.contact .form-box {
    margin-top: 25px;
    text-align: left;
}

.contact label {
    color: #fff;
    text-transform: uppercase;
}

.contact .form-control {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b9b9b9;
    background: transparent;
    color: #fff !important;
    font-size: 14px;
    text-transform: initial;
    letter-spacing: 0;
    height: 35px;
    outline: none;
    padding-top: 10px;
    border-radius: 0px;
    margin-bottom: 35px;
}

.contact .form-control:focus {
    background: transparent;
    outline: 0px;
    box-shadow: none;
    border-color: #fff;
}

.contact textarea {
    height: 70px;
    resize: none;
}

.contact input[type="submit"] {
    background-color: transparent;
    color: #fff;
    display: inline-block;
    border: 1px solid #fff;
}

.contact input[type="submit"]:hover {
    background: #000;
    border-color: #000;
}

.contact textarea.form-control {
    height: auto;
}


/*** FOOTER ***/
.footer {
    padding: 80px 0px 0px 0px;
    background: #fff;
}

.footer p {
    color: #000;
}

.footer-col {
    position: relative;
    padding: 0px 15px;
}

.footer-col::after {
    content: '';
    width: 1px;
    height: 215px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #373737;
    right: 0;
}

.footer-col.footer-col-four::after {
    opacity: 0;
}

.footer .container {
    max-width: 1296px;
}

.footer-top {
    max-width: 1296px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-col.footer-col-one {
    max-width: 300px;
    width: 100%;
    position: relative;
}

.footer-col.footer-col-two {
    max-width: 305px;
    width: 100%;
    padding-left: 20px;
}

.footer-col.footer-col-three {
    max-width: 325px;
    width: 100%;
    padding-left: 20px;
}

.footer-col.footer-col-four {
    max-width: 362px;
    width: 100%;
}

.footer .royal-logo img {
    max-height: 100px;
}

.footer .footer-logo img {
    max-height: 150px;
}

.footer .sutton-logo {
    display: inline-block;
    padding-top: 30px;
}

.footer .sutton-logo img {
    max-height: 90px;
}

.footer .logoexp {
    display: inline-block;
    margin-top: 10px;
}

.footer .logoexp img {
    max-height: 50px;
}

.footer ul {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin-bottom: 0px;
    width: 48%;
}

.footer ul li a {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .050em;
    -webkit-transition: all .325s ease-in-out;
    -moz-transition: all .325s ease-in-out;
    -ms-transition: all .325s ease-in-out;
    transition: all .325s ease-in-out;
}

.footer .social-link {
    font-weight: 400;
    color: #000;
    transition: all .3s;
    display: flex;
    align-items: center;
    text-align: left;
}

.footer-contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}

.footer-contact-item:nth-child(3) span {
    min-width: 16px;

}

.footer-contact-item:first-child {
    margin-right: 26px;
}

.footer-contact-item:first-child, .footer-contact-item:nth-child(2) {
    display: inline-block;
}

.footer .links a {
    color: #000;
    font-size: 18px;
    margin-right: 10px;
}

.footer-contact-item {
    color: #000;
}

.footer-contact-item a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .050em;
    color: #000 !important;
}

.footer-contact-item.social a {
    font-size: 18px;
    margin-right: 25px;
}

.footer-contact-item span {
    color: #000;
    font-size: 16px;
    margin-right: 5px;
}

.footer-contact-item:nth-child(3) span {
    font-size: 16px;
}

.footer .links a:hover,
.footer-contact-item a:hover,
.footer a:hover {
    color: #ff6e6c !important;
}

.footer .line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    width: 100%;
    padding: 0 150px;
}

.footer .line p {
    display: block;
    text-align: center;
    color: #000;
    padding: 30px 0 10px 0;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.02em;
}

.footer .inf p {
    color: #000;
    margin-top: 60px;
    font-size: 14px;
}

.footer .copy p {
    color: #000;
    border-top: 1px solid #363636;
    padding: 20px 0;
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 0;
}

.footer .copy p span {
    color: #ff6e6c;
}

.footer .copy p img {
    width: 130px;
    padding-left: 10px;
}

.footer .agent-contact-infos h6 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .020em;
    margin-bottom: 5px;
}

.center-div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** PAGE BANNER ***/
.page-banner {
    height: 60vh;
}

/*** CONTACT ***/
.contact-page .footer-contact-item a, .contact-page .footer-contact-item span {
    color: #000 !important;
    font-size: 18px !important;
}

.contact-page .footer-contact-item:first-child, .contact-page .footer-contact-item:nth-child(2) {
    display: flex;
}

.contact-page .footer-contact-item.fts {
    align-items: start;
}

.contact-page .footer-contact-item.fts span {
    margin-top: 5px;
}

.contact-page .footer-contact-item {
    align-items: center;
}

.contact-page .section-title h6 {
    font-size: 20px;
}

.contact-page .footer-contact-item span {
    min-width: 22px !important;
}

.contact-page .form-control {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #000;
    background: transparent;
    color: #000 !important;
    font-size: 14px;
    text-transform: initial;
    letter-spacing: 0;
    height: 35px;
    outline: none;
    padding-top: 10px;
    border-radius: 0px;
    margin-bottom: 35px;
}

.contact-page .form-control:focus {
    background: transparent;
    outline: 0px;
    box-shadow: none;
    border-color: #000;
}

.contact-page textarea {
    height: 70px;
    resize: none;
}

.contact-page textarea.form-control {
    height: auto;
}

.contact-page .spacelr-70 {
    padding-right: 50px;
}

.contact-page {

}


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

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

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

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

.buysell {
    background: #000;
    padding: 65px 60px;
}

.buysell p {
    color: #fff;
}

#buyer-form {
    padding: 0px;
}

.buysellform .bg-form {
    background: none;
    padding: 50px 60px;
    border: none;
}

.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 select.form-control {
    height: 60px;
}

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

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

.info-small {
    padding: 0px 0px 0px 0px;
    color: #fff;
    background: #000;
}

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

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


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

.spperinfo .bg {
    border-radius: 10px;
    background: #f3f3f3;
    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: #b92b33 !important;
    border-color: #b92b33 !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;
}

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

.cf7mls-btns .cf7mls_next.action-button, .cf7mls-btns .cf7mls_back.action-button {
    background-color: #b92b33 !important;
    border-color: #b92b33!important;
    color: #fff!important;
    margin: 40px 0 0 0!important;
    padding: 0 15px!important;
}

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

.cf7mls #cf7mls-back-btn-cf7mls_step-3 {
    position: absolute;
    bottom: 135px;
}

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


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

#StepTwo, #StepThree {
    display: none;
}

#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;
    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 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;
}

/**/

.cf7mls_next.action-button,
.cf7mls_back,
.cf7mls_next, .spperinfo input.wpcf7-submit {
    background-color: #0073aa;
    border: 0 none;
    border-radius: 3px;
    color: #b92b33;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    padding: 0px 15px;
    border: 2px solid #b92b33;
    border-radius: 0px;
    font-weight: 500;
    text-align: center;
    line-height: 56px;
    min-width: 200px;
    text-transform: uppercase;
    background: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spperinfo input.wpcf7-submit {
    height: 58px;
    width: auto;
    margin-top: 15px;
    color: #fff;
    background: #b92b33 !important;
    border: none !important;
}

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

.cf7mls_next:hover, .cf7mls_next.active {
    color: #fff !important;
    background: #b92b33 !important;
    border-color: #b92b33 !important;
}

.cf7mls_back {
    color: #fff;
    background: #000;
    border-color: #000;
}

.cf7mls_back.action-button:hover,
.cf7mls_back:hover,
.cf7mls_back.action-button.active {
    color: #fff !important;
    background: #b92b33 !important;
    border-color: #b92b33 !important;
    opacity: 1;
}

.spperinfo .bg {
    background: #ebebeb;
    background: none;
}

.navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link {
    color: #f5de68 !important;
}

.navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link:before {
    width: 100%;
}


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

/************* Calculator Page CSS Start **************/
.newinfo {
    padding: 80px 0px;
    overflow: hidden;
}

#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: #000 !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: #000 !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: #000 !important;
}

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

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

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

.page-banner {
    padding-left: 20px;
}

#buyer-form.buysellform, .buysellform {
    padding: 40px 0px;
}

#buyer-form.buysellform .section-title, .buysellform .section-title {
    margin-bottom: 70px;
}

.buysell .btn-default:hover,
.buysell .btn-default.active,
.info-small .btn-default:hover,
.info-small .btn-default.active {
    /* background: #fff;
    color: #b92b33;
    border-color: #fff; */
}

.about .container {
    max-width: 1300px;
}

.page-banner .container.normals {
    max-width: 1300px;
}

.page-banner {
    padding-left: 0;
}

.page-banner .spr {
    max-width: 1300px;
}

.page-banner .spr > div {
    padding: 0px 4px;
}


.page-banner.buysell {
    padding-left: 60px;
}

.page-banner .container.normal {
    max-width: 1170px;
}

.spperinfo.alert label {
    font-weight: 700;
    margin-bottom: 20px;
}


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;
}

.navbar-light .navbar-nav .nav-item.current-menu-item > .nav-link:before,
.navbar-light .navbar-nav .nav-item.current-menu-item > .nav-link:after {
    left: 0 !important;
    right: 0 !important;
}


.navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link:before, .navbar-light .navbar-nav .nav-item.current-menu-parent > .nav-link:after {
    width: 100%;
    left: 0;
    right: 0;
}

.navbar-light .navbar-nav .nav-item ul.sub-menu li:hover .nav-link {
    background: #aa1f2e !important;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.navbar-light .navbar-nav .nav-item ul.sub-menu li .nav-link:before,
.navbar-light .navbar-nav .nav-item ul.sub-menu li .nav-link:after {
    display: none;
}

.navbar-light .navbar-nav .nav-item ul.sub-menu li.current_page_item > .nav-link {
    background: #aa1f2e !important;
    color: #fff !important;
}

.navbar-light .navbar-nav .nav-item ul.sub-menu li .nav-link {
    line-height: 1;
    transition: all .3s;
    text-transform: capitalize;
    width: 100%;
    display: inline-block;
    clear: both;
    white-space: nowrap;
    border: 0 !important;
    margin: 0px;
    width: 100%;
    position: relative;
    font-weight: 400 !important;
    font-size: 13px;
    padding: 10px 10px 10px 16px !important;
    color: #fff !important;
    border: none;
    text-transform: uppercase;
    margin-bottom: 1px;
    background-color: rgba(26, 26, 26, .75);
    letter-spacing: 0 !important;
}

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;
}

.wpcf7 form .wpcf7-response-output {
    display: inline-block !important;
}

.header.homi.fixed .navbar-light .navbar-nav .nav-item:hover > ul.sub-menu li .nav-link,
.header.active.fixed .navbar-light .navbar-nav .nav-item > ul.sub-menu li .nav-link {
    color: #fff !important;
}

.contact textarea.form-control,
.contact-page textarea.form-control {
    height: 60px;
}

section.contact .wpcf7-response-output {
    color: #fff !important;
}

#StepTwo, #StepThree {
    display: block;
}

.header.homi.fixed .navbar-light .navbar-nav .nav-item:hover > ul.sub-menu li .nav-link,
.header.active.fixed .navbar-light .navbar-nav .nav-item > ul.sub-menu li .nav-link,
.header.homi .navbar-light .navbar-nav .nav-item > ul.sub-menu li .nav-link {
    color: #fff !important;
}

.properties .fl-bg::after {
    background-color: rgba(170, 31, 46, .93);
}

.properties .fl-bg::after {
    background-color: rgba(185, 43, 51, .93);
}


section.header.inner-header {
    background: #fff !important;
}

.header.inner-header .navbar-light .navbar-nav .nav-item > .nav-link {
    color: #000 !important;
}

.header.inner-header .navbar-light .navbar-nav .nav-item > .nav-link::before,
.header.inner-header .navbar-light .navbar-nav .nav-item.active > .nav-link::before,
.header.inner-header .navbar-light .navbar-nav .nav-item > .nav-link::after,
.header.inner-header .navbar-light .navbar-nav .nav-item.active > .nav-link::after {
    background: #000 !important;
}

.header.inner-header .navbar-light .navbar-nav .nav-item ul.sub-menu .nav-link {
    color: #fff !important;
}

.header.inner-header .when-static {
    display: none !important;
}

.header.inner-header .when-fixed {
    display: inline-block !important;
}