:root {
    --accent-color: #bf0707;
    --trans: 0.5s all ease;
    --title-font: 'Playfair Display';
    --body-font: 'Lato';
}


@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/playfair-display-v37-latin-500.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/playfair-display-v37-latin-600.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/lato-v24-latin-300.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2'); 
}

@font-face {
    font-display: swap; 
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v24-latin-700.woff2') format('woff2'); 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
}

a, button {
    transition: var(--trans);
    text-decoration: none;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: visible;
}

.flush {
    padding: 0 !important;
}

.bigger-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: block;
    position: relative;
}

#header {
    transition: var(--trans);
}

#header.scrolled {
    background: #141414;
}

#header .navbar-nav li {
    margin: 0 17px;
}

#header .navbar-nav li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1em;
    transition: var(--trans);
    position: relative;
    z-index: 5;
}

#header .navbar-nav li a:hover, 
#header .navbar-nav li.current-menu-item a {
    opacity: 0.7;
}

#header ul.dropdown-menu {
    display: none;
    flex-direction: column;
    min-width: 200px;
    background: #141414;
    color: #fff;
    border-radius: 0;
    padding: 0;
    border: none;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
    opacity: 0;
}

#header .menu-item-has-children:hover ul.dropdown-menu {
    display: flex;
    opacity: 1;
}

#header .navbar ul.dropdown-menu li {
    margin: 0;
}

#header .navbar ul.dropdown-menu li a {
    display: block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.15rem;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 10px;
    transition: all .3s ease;
}

#header .navbar ul.dropdown-menu li a:hover {
    opacity: 0.7;
    color: #fff;
}

#header .navbar-brand img {
    width: 180px;
    filter: brightness(0) invert(1);
    transition: var(--trans);
    opacity: 0;
}

.home--banner {
    position: relative;
    height: 100vh;
}

@media (max-width: 768px) {
    .home--banner {
        height: 70vh;
    }
}

#myVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home--banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.home--banner .banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home--banner .inner {
    position: absolute;
    top: 50%;
    z-index: 2;
    color: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
}

.before::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
}

.home--banner .inner h1 {
    font-size: 65px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .home--banner .inner h1 {
        font-size: 36px;
    }
}

#burger-content {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
    width: 100%;
    height: 100vh;
    background-color: #0e0e0e;
    padding: 50px 60px;
    transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transform: translateX(100%);
    overflow-y: auto;
}

#burger-menu {
    display: none;
}

.otgs-development-site-front-end, .grecaptcha-badgeQ {
    display: none !important;
}

.title h2 {
    font-family: var(--title-font);
    display: inline-block;
    font-size: 65px;
    text-transform: uppercase;
}

.title span em {
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 2;
    padding-left: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: var(--body-font);
}

.title span {
    display: block;
    font-family: var(--title-font);
    font-size: 25px;
    text-align: right;
    position: relative;
    padding-top: 3px;
    letter-spacing: .05em;
    color: #999999;
}

.title.expanded span {
    margin: 0 -15px;
}

.title span::after {
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    content: "";
}

.padd-xl {
    padding: 100px 0;
}

.default {
    outline: none;
    display: inline-block;
    border: 2px solid #000;
    text-align: center;
    padding: 20px 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--body-font);
    transition: var(--trans);
    font-size: 13px;
    color: #000;
    min-width: 200px;
    background: none;
}

.default:hover {
    background: #000;
    color: #fff;
}

img {
    max-width: 100%;
}

.home--about .content p {
    font-size: 18px;
    color: #767676;
    line-height: 1.8;
}

.single-coms .title h3 {
    color: #767676;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 30px 0 24px;
    display: inline-block;
    position: relative;
}

.single-coms .title h3::after {
    display: block;
    content: "";
    background: #767676;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 28px;
    margin-left: -14px;
}

.single-coms .img span {
    display: block;
    width: 100%;
    height: 45px;
    border: 2px solid #fff;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 6;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    letter-spacing: .14em;
    max-width: 153px;
    color: #fff;
    line-height: 43px;
    transition: var(--trans);
    opacity: 0;
}

.single-coms .img {
    overflow: hidden;
}

.single-coms .img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--trans);
}

.single-coms a:hover .img img {
    transform: scale(1.1);
}

#header.scrolled .navbar-brand img {
    width: 180px;
    opacity: 1;
}

#header .navbar-brand {
    padding-left: 17px;
}

.single-grid .img img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

ul.nolist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-grid ul li {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-left: 1px solid rgba(255, 255, 255, .502);
    letter-spacing: .14em;
}

.single-grid ul li:first-child {
    border-left: none;
}

.single-grid a {
    color: #fff;
}

.single-grid .price {
    font-size: 30px;
    letter-spacing: .14em;
    font-family: var(--title-font);
}

.single-grid .address {
    font-size: 16px;
    letter-spacing: .14em;
    font-family: var(--title-font);
    text-transform: uppercase;
    padding: 15px 0;
}

.single-grid .info {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    padding: 0 30px;
    z-index: 6;
}

.single-grid .img::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #020024;
    background: linear-gradient(180deg, rgb(2, 0, 36) 0%, rgba(9, 9, 121, 0) 0%, #000 100%);
    z-index: 3;
    transition: var(--trans);
    opacity: 0.5;
}

.single-grid a:hover .img::before {
    opacity: 1;
}

.title {
    margin-bottom: 40px;
}

.home--cta a {
    border: 1px solid #000;
    width: 100%;
    padding: 0 40px;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .05em;
    height: 130px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    transition: var(--trans);
    position: relative;
}

.home--cta a:hover, .home--cta a.active {
    background: #000;
    color: #fff;
}

.home--cta a:hover span, .home--cta a.active span {
    color: #fff;
}

.home--cta a::before {
    display: block;
    width: 2px;
    height: 97px;
    position: absolute;
    right: 10%;
    background: #d1d3d4;
    content: "";
    top: 50%;
}

.home--cta a span {
    font-family: var(--title-font);
    display: block;
    letter-spacing: .05em;
    color: #000;
    font-size: 23px;
    padding-top: 6px;
    transition: var(--trans);
}

.nice--form .form-control {
    width: 100%;
    background: 0 0;
    border: none;
    height: 30px;
    color: #fff;
    border-bottom: 1px solid #fff;
    outline: none;
    border-radius: 0;
    margin-bottom: 25px;
}

.nice--form .form-control::placeholder {
    color: #fff;
    text-transform: uppercase;
}

.home--contact::before {
    background: #000;
    opacity: 0.5;
}

.padd-xxl {
    padding: 200px 0;
}

.default.white {
    color: #fff;
    border-color: #fff;
}

.default.white:hover {
    background: #fff;
    color: #000;
}

.nice--form textarea.form-control {
    height: 120px;
    resize: none;
}

span.red {
    color: red;
}

.home--contact .title h2 {
    font-size: 50px;
}

.before {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home--contact .title p {
    font-size: 19px;
    padding-top: 14px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

.home--contact {
    padding: 130px 0;
    background-attachment: fixed;
}

.facebook .inner .img {
    overflow: hidden;
}

.facebook .inner .img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: var(--trans);
}

.facebook .content {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .02em;
    padding: 30px 0 0;
    font-weight: 500;
    color: #767676;
}

.facebook .inner {
    border: 1px solid #767676;
    padding: 30px;
    height: 100%;
}

.facebook .inner:hover .img img {
    transform: scale(1.1);
}

.faq-section::after {
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: #fff;
    opacity: .8;
}

.faq-section .blog-bg {
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: grayscale(1);
    z-index: -1;
}

.single--blog {
    margin-bottom: 20px;
}

.single--blog a {
    color: #000;
    display: flex;
    align-items: center;
}

.single--blog h3 {
    font-size: 23px;
    color: #000;
}

.single--blog .content {
    padding-left: 50px;
}

.single--blog .content p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: .02em;
    padding: 25px 0;
    color: #767676;
    margin: 0;
}

.single--blog .img {
    overflow: hidden;
    min-width: 400px;
    width: 400px;
}

.single--blog .img img {
    width: 100%;
    transition: var(--trans);
}

.single--blog .content span {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.single--blog:last-child {
    margin-bottom: 0;
}

.blog--wrapper {
    padding-left: 30px;
}

.single--blog a:hover .img img {
    transform: scale(1.1);
}

footer .logo img {
    width: 260px;
}

footer .agency img {
    width: 200px;
}

footer .contact a {
    display: block;
    color: #000;
    margin-bottom: 10px;
}

footer .contact a i {
    margin-right: 10px;
}

footer .logo {
    margin-bottom: 40px;
}

footer .socials a {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    text-align: center;
    font-size: 21px;
    margin: 0 6px;
    background: #000;
    color: #fff;
    display: inline-block;
    line-height: 47px;
    transition: var(--trans);
}

footer .socials a:hover {
    background: var(--accent-color);
}

footer .links a {
    display: block;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

footer .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .copyrights p {
    margin: 0;
}

footer .subtitle {
    margin-bottom: 20px;
}

.default.fill-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.default.fill-white:hover {
    background: transparent;
    color: #fff;
}

.home--banner .btn-wrapper a {
    margin-right: 20px;
}

.swiper-button-next, .swiper-button-prev {
    outline: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    display: block;
    z-index: 1000;
    overflow: hidden;
    min-width: 100px;
    min-height: 50px;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.4s all ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--accent-color);
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.img-border:before, .img-border-left:before {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    top: -30px;
    right: -30px;
    height: 100%;
    border: 1px solid var(--accent-color);
    opacity: 0.7;
    transition: 0.4s ease-out;
}

.social-right {
    position: fixed;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 35px;
    z-index: 999;
    text-align: center;
}

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

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

.social-right a:hover {
    background: var(--accent-color);
    color: #fff;
}

.home--banner .agency-logo {
    margin-top: 25px;
    z-index: 2;
}

.home--banner .agency-logo img {
    width: 250px;
}

.padd-lg {
    padding: 60px 0;
}

.p-row .single-grid:first-child .img img {
    height: 550px;
}

.ip-banner::before {
    background: #000;
    opacity: 0.2;
}

.ip-banner {
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ip-banner h1 {
    color: #fff;
    position: relative;
    font-size: 60px;
    text-transform: uppercase;
}

.coords a {
    font-size: 20px;
    font-weight: 300;
    color: #767676;
    line-height: 1.8;
    margin-right: 20px;
}

.coords a i {
    margin-right: 10px;
}

.custom-container {
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: block;
}

.contact-page input, .contact-page select, .contact-page textarea {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    border-radius: 0;
    background: 0 0;
    display: block;
    width: 100%;
    height: 51px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(28, 28, 28, .2);
    margin-bottom: 15px;
}

.contact-page textarea {
    padding-top: 10px;
    height: 85px;
    resize: none;
}

.contact-page .inner {
    max-width: 600px;
    margin: 0 auto;
}

.buysell p {
    font-size: 18px;
    color: #767676;
    line-height: 1.8;
}

.buysell li {
    font-size: 18px;
    color: #767676;
    margin-bottom: 5px;
    line-height: 1.8;
}

.forms input, .forms select, .forms textarea {
    appearance: none;
    outline: none;
    border: none;
    border-radius: 0;
    background: 0 0;
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(28, 28, 28, .2);
    margin-bottom: 15px;
}

.forms textarea {
    padding-top: 10px;
    height: 115px;
    resize: none;
}

/*** NEW HEADER CSS **/
/*** Mega menu ***/
.menu-btn {
	display:inline-block;
    text-align: center;
    border-radius: 0px;
    padding: 14px 25px;
    border: 1px solid #fff;
    line-height: 1.45;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-btn .fa {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
    margin-right: 5px;
    font-size: 14px;
}

.menu-btn:hover {
    border: 1px solid #fff;
    background: #fff;
    color:#000;
    cursor: pointer;
}

.menu-btn:hover .fa {
    color: #000;
}

.side-menu {
	position:fixed;
    top: -130%;
	left:0%;
    width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	height:100%;
	z-index:999999;
    pointer-events: none;
}

.side-menu .bgblack {
    height: 100vh;
    background: #000;
    padding: 25px 90px;
}

.side-menu .img {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.side-menu.intro .img {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 0.6s, -webkit-transform 0.8s;
    transition: opacity 0.6s, transform 0.8s;
}

.side-menu .img img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.side-menu.intro {
	top:0;
	margin-top:0%;
    pointer-events: auto;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
    margin-bottom: 10px;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
	height:100%;
	width:100%;
    padding-left: 40px;
    padding-right: 40px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-transition: all .25s;
    transition: all .25s;
    cursor: pointer;
	color:#fff;
	width: 100%;
    padding: 0;
    line-height: 1.15;
    font-weight: 300;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-family: var(--body-font);
    text-transform: uppercase;
    font-size: 24px;
}

@media (max-width: 991px) {
    .side-menu ul.main-menu li a {
        font-size: 18px;
    }
}

.side-menu ul.main-menu li a:hover {
    color: #fff;
    padding-left: 15px;
}

a.CloseBtn {
	float:right;
    background: none;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #fff;
}

a.CloseBtn:hover {
    background: #fff;
    color: #fff;
}

a.CloseBtn:hover img {
    filter: invert(0) brightness(0);
}

a.CloseBtn img {
    width: 18px;
}

.side-menu ul li .dropdown-menu a {
    padding: 15px 0px;
    font-size: 16px;
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #000;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu li.menu-item-has-children ul.dropdown-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
    border:0px;
    border-radius: 0px;
}

.side-menu li.menu-item-has-children ul.dropdown-menu li {
    margin-bottom: 0;
}

.side-menu li.menu-item-has-children ul.dropdown-menu li a {
    color: #000;
    padding-left: 20px;
    font-weight: 500;
}

.side-menu li.menu-item-has-children ul.dropdown-menu li a:hover {
    background: #000 !important;
    color: #fff!important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul li ul.sub-menu li:hover a,
.side-menu ul li ul.sub-menu li.current_page_item>a {
    background: #fff !important;
    color: #000 !important;
}

.side-menu ul li.current ul.dropdown-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul li {
    margin: 0;
    padding: 0;
}

.small-side-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 991px) {
    .small-side-menu {
        margin-bottom: 20px;
    }
}

.small-side-menu a {
    font-size: 18px;
    color: #fff;
    transition: all .3s ease;
}

.small-side-menu a:hover {
    color: #bf0707;
}

.side-menu-contact-ctn {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* @media (max-width: 991px) {
    .side-menu-contact-ctn {
        flex-direction: row;
        justify-content: start;
    }
} */

.side-menu-contact h5 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 991px) {
    .side-menu-contact h5 {
        font-size: 16px;
        margin: 0;
    }
}

.side-menu-contact a {
    font-size: 18px;
    color: #bf0707;
    transition: all .3s ease;
}

@media (max-width: 991px) {
    .side-menu-contact a {
        font-size: 14px;
    }
}

.side-menu-contact a:hover {
    text-decoration: underline;
}


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

.header .logo img {
    filter: brightness(0) invert(1) drop-shadow(2px 4px 6px #000);
    max-width: 150px;
}

.header ul {
    display: flex;
    font-size: 13px;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.header ul li {
    margin-right: 15px;
}

.header ul li a {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 6px 12px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    display: inline-block;
}

.header ul li a:hover {
    color:#000;
}

.header ul li.call-cta a {
    padding: 14px 25px;
    border-radius: 0px;
    background: #fff;
    color:#000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.header ul li.call-cta a:hover {
    background: none;
    color:#fff;
}


/*** BANNER ***/
.home--banner .inner {
    text-align: center;
}

/*** NEW HEADER RESPONSIVE ***/
@media only screen and (max-width: 991px) {
.menu-btn {
    font-size: 12px;
    padding: 9px 10px;
    float: right;
}

.menu-btn .fa {
    margin: 0;
}

.menu-btn span {
    display: none;
}

.header .text-center {
    text-align: left !important;
}    
}

@media only screen and (max-width: 767px) {
.side-menu .bgblack {
    height: 100vh;
    background: #000;
    padding: 25px 0px;
}

.side-menu.intro .img {
    display: none;
}

a.CloseBtn {
    width: 60px;
    height: 60px;
    margin-right: 25px;
}

.side-menu ul li .dropdown-menu a {
    font-size: 16px !important;
}
}


@media only screen and (min-width: 768px)and (max-width: 991px) {
.side-menu .bgblack {
    padding: 25px 0px;
}

a.CloseBtn {
    width: 60px;
    height: 60px;
    margin-right: 25px;
}

.side-menu ul li .dropdown-menu a {
    font-size: 16px !important;
}
}

@media only screen and (min-width: 992px)and (max-width: 1199px) {
.header {
    padding: 30px 10px;   
}

.header ul li a {
    font-size: 11px;
    padding: 6px 2px;
}

.header ul li.call-cta a {
    padding: 10px 7px;
}

.side-menu .bgblack {
    padding: 25px 40px;
}
}

/* BANNER CTA */
.banner--cta .img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner--cta .img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner--cta .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.banner--cta a:hover .img img {
    transform: scale(1.1);
}

.banner-cta-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.banner-cta-title h3 {
    color: #fff;
}

/* faq page */
.faq-section {
    padding: 80px 0;
    min-height: 700px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
}

.faq-section .accordion-button {
    font-size: 20px;
    color: #000;
    background: transparent;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body p {
    font-size: 18px;
    color: #767676;
    line-height: 1.8;
}

.home--contact .nice--form {
    background: #141414ed;
    padding: 50px;
    border-radius: 5px;
}

.header ul.contact-info {
    font-family: var(--title-font);
}