@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=PT+Sans+Narrow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/*** GENERIC CSS ***/
html,body {
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
}

body {
    font-size: 16px;
    color: #555555;
}

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

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

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:#000;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
}

h1, .h1 {
    color:#fff;
    font-size:54px;
    line-height: 1.5;
}

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

h3, .h3 {
    font-size: 25px;
    line-height: 1.5;
}

h4, .h4 {
    font-size: 20px;
    line-height: 1.5;
}

h5, .h5 {
    font-size: 18px;
    line-height: 1.5;
}

p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: .05em;
    color: #767676;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

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

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

.btn-default {
    background: transparent;
    cursor: pointer;
    display: inline-block;
    color: #000e35;
    border:2px solid #000e35;
    padding: 0px 20px;
    font-weight: bold;
    line-height: 55px;
    font-size: 16px;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.btn-default.active span::before,
.btn-default.active span::after,
.btn-default:hover span::before,
.btn-default:hover span::after {
    background: #fff;
}

.btn-default.active:hover {
    background: none;
    color: #000e35;
}

.btn-default.active:hover span::before,
.btn-default.active:hover span::after {
    background: #000e35;
}

.btn-default span {
    position: relative;
}

.btn-default span::before,
.btn-default span::after {
    content: '';
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 1px;
    background: #000e35;
    transition: all .3s ease;
}

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

.btn-default.white span::before,
.btn-default.white span::after {
    background: #fff;
}

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

.btn-default.white:hover span::before,
.btn-default.white:hover span::after {
    background: #fff;
}

.btn-default span::after {
    margin-left: 8px;
    margin-right: 0px;
}

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

.btn-default-border {
    background: transparent;
    cursor: pointer;
    display: inline-block;
    color: #000e35;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    line-height: 55px;
    transition: all .3s ease-in;
    border-radius: 100px;
    padding: 0px 16px 0px 36px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
    vertical-align: middle;
    margin-left: 7px;
}

.btn-default-border:before {
    transition: all .6s cubic-bezier(.615, 0, .07, 1);
    content: '';
    position: absolute;
    z-index: -1;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #EDE8D0;
    opacity: .5;
    width: 55px;
    height: 55px;
    border-radius: 100%;
}

.btn-default-border:after {
    background: #000e35;
    transition: all .6s cubic-bezier(.615, 0, .07, 1);
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 2px;
}

.btn-default-border:hover:before {
    width: calc(100% + 30px);
    border-radius: 60px;
    opacity: 1;
}

.btn-default-border:hover:after {
    width: 60px;
    transform: translateX(-45px);
    opacity: 1;
}

/*** NORMAL BORDER BUTTON ***/
.normal-btn {
    display: inline-block;
    border: 2px solid #fff;
    font-size: 14px;
    line-height: 36px;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border-radius: 20px;
}

.normal-btn i {
    margin-right: 5px;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.normal-btn:hover {
    background: #EDE8D0;
    color: #fff;
    border-color: #EDE8D0;
}

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

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

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

.section-title {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.section-title h6 {
    display: block;
    letter-spacing: .4em;
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2 {
    color: #000e35;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 80px;
    letter-spacing: .034em;
    line-height: 1;
}

.section-title p {
}

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

/*** SIDE MENU ***/
.menu-btn {
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 3px;
    position: fixed;
    top: 0;
    right: 0;
    color: #fff;
    background: #000e35;
    width: 90px;
    height: 90px;
    text-align: center;
    padding-top: 25px;
}

.menu-btn:hover {
    color: #EDE8D0 !important;
}

.menu-btn div {
    position: relative;
    display: inline-block;
    width: 35px;
    margin-right: 0px;
    position: relative;
    top: -2px;
    vertical-align: middle;
}

.menu-btn div span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: 0.3s -webkit-transform ease;
    transition: 0.3s transform ease;
    margin: 7px 0px;
}

.side-menu {
	background:#000e35;
	position:fixed;
	top:0px;
	left:-600px;
    width: 340px;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 35px;
	overflow:hidden;
	overflow-y:auto;
    left: -100%;
}

.side-menu .logo img {
    max-height: 55px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.side-menu.intro {
	left:0px;
}

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

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

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:50px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: 17px;
    padding: 7px 0px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 500;
}

.side-menu ul.main-menu li a:hover,
.side-menu ul.main-menu li.active>a {
	background:none;
    color:#EDE8D0;
}

a.CloseBtn {
	float:right;
	color:#fff;
	font-size:26px;
	margin:10px 10px 45px 15px;
	position: relative;
    z-index: 99;
    cursor: pointer;
}

a.CloseBtn:before,
a.CloseBtn:after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu ul.main-menu.navbar-nav {
	margin-top:30px;
}

.side-menu ul.main-menu.navbar-nav li {
    margin: 0;
}

.side-menu ul.main-menu.navbar-nav li:last-child a {
    border: none;
}

.side-menu ul.main-menu.navbar-nav li a:hover {
	background:none;
    color: #EDE8D0;
}

.side-menu ul.main-menu.navbar-nav li .sub-menu a {
    padding: 10px 5px;
    font-size: 12px;
    background: #ebebeb;
    color: #000;
}

.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:hover>a {
    color: #EDE8D0 !important;
}

.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 ul.navbar-nav li a:hover {
	background:none;
    color:#000;
    border-bottom-color: rgba(11, 23, 23, .2);
}

.side-menu li.menu-item-has-children ul.sub-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: #ccc;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

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

.side-menu ul.navbar-nav li ul.sub-menu li {
    margin: 0;
}

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

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

.side-menu ul.main-menu.navbar-nav li {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}


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

header .user-icon {
    color: #fff;
    font-size: 30px;
    margin-right: 15px;
    vertical-align: middle;
}

header .logo {
    display: inline-block;
}

header .logo img {
    max-height: 40px;
}

header.fixed .logo {
    display: inline-block;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000e35;
    z-index: 99999;
    padding: 12px 0px;
    min-height: 90px;
}

.fixed .menu-btn:hover {
    color: #fff !important;
}

@media (min-width: 992px) {
.navbar-expand-lg {
    justify-content: space-between;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

}

.navbar-light .navbar-nav>.nav-item {
    margin: 0px 15px;
}

.navbar-light .navbar-nav>.nav-item>.nav-link {
    position: relative;
    color: #fff;
    font-size: 15px;
    line-height: 40px;
    padding-bottom: 5px;
    transition: all .3s;
    letter-spacing: 2px;
    font-weight: 300;
    padding: 0px 0px !important;
    text-transform: uppercase;
    font-family: "PT Sans Narrow", sans-serif;
}

.navbar-light .navbar-nav>.nav-item>.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 1px;
    background: #fff;
    transition: all .3s;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before, .navbar-light .navbar-nav>.nav-item.active>.nav-link::before {
    width: 100%;
}

header .normal-btn:hover {
    color: #000;
}

header img.logo-remax {
    max-height: 36px;
    bottom: 25px;
    right: 25px;
    z-index: 2;
}

@media only screen and (min-width:1440px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { 
    max-width: 90.56% !important;
}
}

@media only screen and (max-width:1600px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { 
    max-width: 90.56% !important;
}
}

/*** social fix ***/
.social-fix {
    position: fixed;
    width: 41px;
    top: 50%;
    transform: translateY(-35%);
    left: 23px;
    z-index: 99;
}

.social-fix a {
    display: block;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background: #000e35;
    text-align: center;
    margin: 0 auto 16px;
    line-height: 41px;
    transition: all .3s ease;
}

.social-fix a:hover {
    color: #000e35;
    background: #debf89;
}


/*** banner ***/
.banner {
    padding: 150px 0px 0px 0px;
    position: relative;
    height: inherit;
    text-align: left;
    height: 100vh;
    display: flex;
    align-items: end;
    z-index: 8;
}

.banner::after {
    background-color: transparent;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    z-index: 1;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

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

.banner .logo, .banner .logo-remax {
    margin: 10px 0px;
}

.banner .logo-remax {
    max-height: 50px;
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 2;
}

.banner .container,
.banner .container-fluid {
    position: relative;
    z-index: 2;
}

.banner .space-left {
    padding-left: 140px;
    padding-bottom: 80px;
}

.banner .btn-default {
    margin: 5px 5px;
    min-width: 160px;
}

.banner .accent-line {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 61px;
    height: 98.5%;
    width: 1px;
    background: rgba(255, 255, 255, .29);
}

.accent-line-dot {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    left: -9px;
    top: -11px;
}

.accent-line-dot:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .29);
}

.accent-line-dot:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.banner h6 {
    color: #fff;
    font-size: 24px;
    letter-spacing: .4em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.banner h1 {
    color: #fff;
    font-size:64px;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
}

.banner video {
    width: 100%;
    height: 100%;
}

/*** bg-paralax-banner ***/
.bg-paralax-banner {
    background: url(../img/bg-parallax-a.jpg) fixed top center / 100% no-repeat;
    overflow: hidden;
}

.bg-paralax-banner .banner-space {
    background: rgba(255, 255, 255, .8);
    padding-left: 90px;
    position: relative;
}


/*** Small-info ***/
.small-info {
    padding: 90px 0px;
}

.small-info .section-title {
    padding-left: 100px;
}

.small-info ul.list {
    padding-left: 0px;
    color: #000e35;
    text-align: left;
    font-size: 19px;
    letter-spacing: .05em;
    color: #767676;
    margin-bottom: 25px;
    list-style: none;
}

.small-info ul.list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #000e35;
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 0px;
}

.small-info ul.list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.small-info .call-btn {
    color: #000e35;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .05em;
}

.accent-line-main {
    position: absolute;
    z-index: 4;
    background: rgba(0, 14, 53,1);
}

.accent-line-main .section-title {
    margin-bottom: 60px;
}

.accent-line-main.white {
    background: #fff;
}

.accent-line-main.white .accent-line-dot-main:before {
    border: 1px solid rgba(255, 255, 255, .29);
}

.accent-line-main.white .accent-line-dot-main:after {
    background: #fff;
}

.left.accent-line-main {
    right: 95.4%;
    top: 90px;
    width: 1000px;
    height: 1px;
}

.center .accent-line-main {
    width: 100vw;
    right: 127%;
    top: 65%;
    background: rgba(0, 14, 53,1);
}

.left .accent-line-dot-main {
    right: -9px;
    top: -9px;
    left: initial;
}

.accent-line-dot-main {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: -9px;
    left: -9px;
}

.accent-line-dot-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 14, 53, .29);
}

.accent-line-dot-main:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 14, 53, 1);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


/*** SOLUTION ***/
.solutions {
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 60px 0px 0px 0px;
}

.solutions:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
    width: 75%;
}

.solutions:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    opacity: .8;
    width: 25%;
    height: 100%;
}

.solutions .bg {
    padding:60px 50px 30px 50px;
    position: relative;
    z-index: 2;
}

.solutions .section-title {
    margin-bottom: 50px;
}

.solutions .btn-default {
    margin-bottom: 15px;
    margin-right: 15px;
}

.solutions .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.solutions .img img {
    display: inline-block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.solutions h3 {
    font-size: 33px;
    font-weight: bold;
    line-height: 1.2;
}

.solutions p {
    font-size: 15px;
    line-height: 1.6;
}

.solutions .main-img {
    height: 100%;
    aspect-ratio: 1 / 1.75;
    object-fit: cover;
    object-position: center;
    border: 10px solid #debf89;
}

.awards-img {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 20px;
}

.awards-img img {
    max-height: 110px;
}

.solutions .solutions-box {
    position: relative;
}

.solutions .solutions-box .item {
    padding:0px 100px;
}

.solutions .solutions-box .text {
    background: #fff;
    padding: 50px;
    position: absolute;
    left: 50px;
    top: 25%;
    width: 50%;
}

.solutions .solutions-box .text.right {
    left:calc(50% - 50px);
    top: 25%;
    width: 50%;
}

.solutions .solutions-box figure img {
    height: 650px;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.solutions .solutions-box .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.solutions .solutions-box .owl-nav .owl-prev, .solutions .solutions-box .owl-nav .owl-next {
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    float: left;
}

.solutions .solutions-box .owl-nav .owl-next {
    float: right;
}

.solutions .solutions-box .owl-nav button {
    color: #fff;
    font-size: 42px;
    line-height: 24px;
}

.solutions .solutions-box .owl-nav button:hover {
    background: #fff;
    color:#000;
}

.solutions .btn-default {
    color: #fff;
    border-color: #fff;
}

.solutions .btn-default span::before, .solutions .btn-default span::after {
    background: #fff;
}

.solutions .btn-default:hover {
    border-color: #000e35;
}

/*** WHY WORK ***/
.why-work {
    padding: 142px 0 121px;
    position: relative;
    overflow: hidden;
}

.why-work h2 {
    margin-bottom: 80px;
}

.why-work .bg-parralax {
    top: 110px;
    right: calc(100% - 125px);
    left: -1000px;
    bottom: -121px;
    position: absolute;
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
}

.why-work .bg:before {
    content: '';
    position: absolute;
    bottom: -121px;
    left: 0;
    top: 100%;
    width: 598px;
    width: 42.113%;
    background: #f7f5ee;
    z-index: 1;
}

.why-work .bg-parralax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
    opacity: 1;
    z-index: 2;
}

.why-work .container .bg {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
}

.why-work .container .bg .row {
    position: relative;
    z-index: 2;
}

.why-work .container .bg-inner {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 3;
    text-align: center;
    background: url(../img/bg-why-work.jpg) center / cover no-repeat;
    position: relative;
    padding: 120px 70px 121px;
}

.why-work .container .bg-inner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, .8);
}

.why-work p {
    color: #e1e1e1;
}


/*** SERVICES ***/
.services {
    padding: 100px 0px;
    background: #000;
}

.services .section-title {
    margin-bottom: 60px;
}

.services-box {
    display: inline-block;
    width: 100%;
    height: calc(100% - 25px);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid #fff;
}

.services-box .img {
    float: left;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.services-box .img img {
    transition: all .3s;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1 / 1.2;
}

.services-box .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    z-index: 2;
}

.services-box:hover .text::before {
    opacity: 1;
}

.services-box .text:before {
    content: '';
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: -1;
    transition: all .4s;
}

.services-box .text h6 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    margin-bottom: 10px;
}

.services-box .text h3 {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: bold;
}

.services-box .text p {
    color: #fff;
    font-size: 16px;
    position: absolute;
    bottom: -150px;
    left: 30px;
    right: 30px;
    transition: all .3s;
    opacity: 0;
}

.services-box:hover .text p {
    bottom: 40px;
    opacity: 1;
}

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

.services .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    margin: 0;
    top: 50%;
    left: -110px;
    transform: translate(0px, -50%);
    width: 80px;
    height: 60px;
    background: #EDE8D0;
    background-size: 32px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    border-radius:0;
}

.services .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -110px;
    background: #EDE8D0;
    background-size: 32px;
}

.services .owl-theme .owl-nav [class*=owl-] img {
    filter: invert(1);
}

.services-carousel .services-box {
    background: #fff;
    padding: 30px 15px;
    height:345px;
    margin-top: 30px;
}

.services-carousel .services-box img {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.services-carousel .services-box h3 {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.services-carousel .services-box p {
    color: #000;
    font-size: 15px;
}



/*** awards-section ***/
.awards-section {
    background: #000;
    padding: 120px 0px;
}

.awards-section .section-title {
    padding-left: 80px;
    padding-right: 80px;
}

.awards-section .section-title h2 {
    font-size: 35px;
    color: #fff;
}

/*** services-slider ***/
.services-slider {
    padding: 120px 0px;
    background-color: #f7f5ee;
    position: relative;
    overflow: hidden;
}

.services-slider:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .7;
    width: 75%;
}

.services-slider:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 100px;
    background: #000e35;
    width: 30%;
}

.services-slider .section-title {
    padding-left: 80px;
    padding-right: 80px;
    margin-bottom: 40px;
}

.services-slider .left.accent-line-main {
    top: 40px;
}

.services-slider .section-title h2 {
    font-size: 35px;
}

.services-slider .owl-theme .owl-nav {
    margin: 0;
}

.services-slider .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    margin: 0;
    top: 50%;
    left: -110px;
    transform: translate(0px, -50%);
    width: 80px;
    height: 60px;
    background: #EDE8D0;
    background-size: 32px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    border-radius:0;
}

.services-slider .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -110px;
    background: #EDE8D0;
    background-size: 32px;
}

.services-slider .owl-theme .owl-nav [class*=owl-] img {
    filter: invert(1);
}

.serviceslide-box {
    display: inline-block;
    width: 100%;
    border: 6px solid #000;
    float: left;
}

.serviceslide-box .text {
    padding: 20px 30px;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.serviceslide-box .img {
    float: left;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.serviceslide-box .img img {
    width: 100%;
    object-fit: cover;
    transition: all .3s;
}

.serviceslide-box:hover .img img {
    transform: scale(1.1);
}

.serviceslide-box .img:before {
    content: '';
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 1;
    transition: all .4s;
}

.serviceslide-box .img img {
    aspect-ratio: 1 / 1.2;
    width: 100%;
    object-fit: cover;
}

.serviceslide-box h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.1;
    margin-top: 15px;
    font-weight: 600;
}

.serviceslide-box p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.serviceslide-box h3 a {
    color: #fff;
}

/*** SMALL CTA ***/
.small-cta {
    padding: 80px 0px;
    background-color: #f7f5ee;
}

.small-cta .section-title {
    margin: 0px;
}

.small-cta .btn-default {
    margin: 10px 10px;
}



/*** ABOUT ***/
.about {
    background: #fff;
    background: url(../img/bg-parallax-b.jpg) fixed center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .7;
    width: 75%;
}

.about:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    opacity: .5;
    width: 25%;
    height: 100%;
}

.about .bg {
    padding: 30px 0px 120px 50px;
    background: #FFF;
    position: relative;
    z-index: 2;
}

.about .bg:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(100% - 0px);
    width: 215px;
    height: 131px;
    background: rgba(247, 245, 238, 0.8);
}

.about .section-title {
    padding-left: 80px;
    margin-bottom: 50px;
}

.about .bigtext {
    color: #f7f5ee;
}

.about .btn-default {
    margin-top: 20px;
}

.about .text {
    padding-bottom: 70px;
}

.about .img {
    position: relative;
    z-index: 3;
}

.about .img img {
    position: relative;
    z-index: 3;
    bottom: -20px;
    right: -20px;
}

.about .img:after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: calc(100% - 641px);
    width: 846px;
    height: 120px;
    background: #f7f5ee;
    z-index: 1;
}

.imgstyle {
    position: relative;
    padding-top: 15px;
    margin-bottom: 15px;
    display: inline-block;
    text-align: center;
    border: 2px solid #112132;
}

.imgstyle img {
    width: 90%;
    position: relative;
    z-index: 2;
}

/*** PROPERTIES ***/
.properties {
    padding: 70px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.properties .bg-parallax {
    position: absolute;
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    height: 875px;
    width: 40%;
    left: calc(100% - 131px);
    bottom: 0;
}

.properties .bg-parallax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
}

.properties .custom-nav {
    background-color: #f7f5ee;
    padding: 25px 20px;
}

.properties .custom-nav button {
    background: none !important;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
}

.properties .custom-nav button .fa {
    border: 2px solid #EDE8D0;
    min-width: 30px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 16px;
}

.properties .custom-nav button.owl-next .fa {
    padding-left: 3px;
}

.properties .container {
    position: relative;
    z-index: 2;
}

.properties .section-title {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.properties .section-title p {
    font-size: 16px;
    color: #939598;
}

.properties .item {
    padding: 0px 15px;
}

.listingbox {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #939598;
    position: relative;
    transition: all .3s;
    float: left;
}

.listingbox .img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    float: left;
}

.listingbox .img .label {
    border-radius: 0;
    padding: 7px 10px;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    margin-top: 10px;
    background-color: #EDE8D0;
    color: #fff;
}

.listingbox .img img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.listingbox .text {
    padding: 15px 20px 10px 20px;
    position: absolute;
    top: calc(100% - 100px);
    left: 10%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    max-width: 80%;
    transition: all .3s;
}

.listingbox:hover .text {
    top: 25%;
}

.listingbox h4 {
    color: #fff;
    margin: 0px;
    font-size: 24px;
    text-transform: unset;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.listingbox h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0px 0px 25px 0px;
}

.listingbox p {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 15px;
    line-height: 1.5em;
    color: #fff;
}

.btn_pieces {
    width: 23px;
    padding: 4px 0 5px 20px;
    font-size: 13px;
    margin: 1px 10px 0 0;
    background: url(../img/btn_pieces.png) no-repeat 0 3px;
    float: left;
}

.btn_chamb {
    width: 20px;
    padding: 4px 0 5px 25px;
    font-size: 13px;
    margin: 0 10px 0 0;
    background: url(../img/btn_chamb.png) no-repeat 0 6px;
    float: left;
}

.btn_salleb {
    width: 20px;
    padding: 4px 0 5px 21px;
    font-size: 13px;
    margin: 0 10px 0 0;
    background: url(../img/btn_salleb.png) no-repeat 0 2px;
    float: left;
}

.btn_salle_eau {
    width: 20px;
    padding: 4px 0 5px 21px;
    font-size: 13px;
    margin: 0 10px 0 0;
    background: url(../img/btn_salle_eau.png) no-repeat 0 2px;
    float: left;
}

.list-icons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: flex;
    flex-flow: wrap;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    row-gap: 10px;
    list-style: none;
    padding: 0;
}

.list-icons li {
    padding: 0px 20px;
    font-size: 17px;
    color: #fff;
    border-right: 2px solid #fff;
}

.list-icons li:last-child {
    border: none;
}

.list-icons li img {
    filter: invert(1);
    display: inline-block;
    opacity: .5;
}

.listingbox:hover .img img {
    transform: scale(1.1);
    filter: grayscale(1);
}

.listingbox:hover .list-icons li img {
    opacity: 1;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

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

.properties .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    margin: 0;
    top: 50%;
    left: -12px;
    transform: translate(0px, -50%);
    width: 80px;
    height: 60px;
    background: #EDE8D0;
    background-size: 32px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    border-radius:0;
}

.properties .owl-theme .owl-nav [class*=owl-].owl-next {
    left: auto;
    right: -12px;
    background: #EDE8D0;
    background-size: 32px;
}

.properties .owl-theme .owl-nav [class*=owl-] img {
    filter: invert(1);
}

.properties .link {
    display: block;
    font-size: 16px;
    color: #939598;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 20px;
    border-top: 1px solid #636363;
    position: relative;
}

.properties .link:hover {
    color: #000;
    background: #EDE8D0;
}

.properties .left .link {
    border-right: 1px solid #636363;
}

.properties .btn-filled {
    position: relative;
    top:28px;
    z-index:999;
}

.properties .btn-filled:hover {
    color: #000;
    background: #fff;
}

/*** TESTIMONIALS ***/
.testimonials {
    background: url(../img/bg-testi.webp) 50% 50% no-repeat;
    background-size: cover;
    padding: 70px 0px;
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    padding-left: 80px;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

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

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #EDE8D0;
    opacity: 1;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span,
.testimonials .owl-theme .owl-dots .owl-dot:hover span {
    background: #000e35;
    opacity: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #939598;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    margin: 1px 5px;
    opacity: .5;
    margin-top: 40px;
}

.testimonials .bg {
    min-height: 590px;
    background: url(../img/bg-testi.jpg) center / cover no-repeat;
    position: relative;
    margin-top: 55px;
    text-align: center;
    padding: 83px 6.198% 62px;
}

.testimonials .bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 36, 36, .8);
}

.testimonials .bg .row {
    position: relative;
    z-index: 1;
}


.testi-box {
    text-align: left;
    padding: 0px 30px;
}

.testi-box.b-right {
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.testi-box .testi-qoute {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 188.72px;
    line-height: 120px;
    height: 45px;
    color: #ede0cf;
    font-style: normal;
    margin-bottom: 25px;
}

.testi-box .testi-qoute:before {
    content: '\201C';
}

.testi-box .testi-date {
    color: #e1e1e1;
    margin-bottom: 28px;
    font-size: 18px;
    letter-spacing: 1px;
}

.testi-box p {
    color: #e1e1e1;
    font-size: 24px;
    font-size: 18px;
    letter-spacing: 1px;
}

.testi-box h6 {
    color: #e1e1e1;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.testimonials .custom-nav {
    padding: 25px 20px;
    margin-top: 30px;
}

.testimonials .custom-nav .btn-default {
    margin: 5px 5px;
}

.testimonials .custom-nav button {
    color: #EDE8D0;
    background: none !important;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
}

.testimonials .custom-nav button .fa {
    border: 2px solid #EDE8D0;
    min-width: 30px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 16px;
    margin: 0px 5px;
}

.testimonials .custom-nav button.owl-next .fa {
    padding-left: 3px;
}



/*** NEIGHBORHOODS ***/
.neighborhoods {
    padding: 70px 0px 90px 0px;
    background: #f7f5ee;
    position: relative;
    overflow: hidden;
}

.neighborhoods .bg-parallax {
    position: absolute;
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    height: 875px;
    width: 40%;
    left: calc(100% - 131px);
    bottom: 0;
}

.neighborhoods .bg-parallax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
}

.neighborhoods .container,
.neighborhoods .container-fluid {
    position: relative;
    z-index: 2;
} 

.neighborhoods .section-title {
    padding-left: 80px;
}

.neighborhoods .section-title hr {
    border-color: #000e35;
}

.neighborhoods .spr>div {
    padding: 0px 15px;
}

.imgstyle2 {
    position: relative;
    display: inline-block;
    width: 100%;
    background: #000000;
    overflow: hidden;
}

.imgstyle2:hover>img {
    transform: scale(1.1);
}

.imgstyle2 img {
    height: 435px;
    box-shadow: 0 30px 30px rgb(0 0 0 / 10%);
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;
    z-index: 2;
}

.imgstyle2:hover img {
    opacity: .5;
    /* height: 455px; */
    box-shadow: 0 30px 30px rgb(0 0 0 / 30%);
}

.imgstyle2:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: 3;
}

.imgstyle2 h3 {
    position: absolute;
    bottom: 0;
    margin: 0;
    z-index: 5;
    top: 0;
    right: unset;
    display: flex;
    align-items: flex-end;
    padding: 0 30px 30px;
    color: #fff;
    text-shadow: 0 20px 20px rgb(0 0 0 / 7%);
    font-weight: bold;
    width: 100%;
    line-height: 1.1;
    pointer-events: none;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 34px;
}

.neighborhoods .owl-theme.custom-nav {
    float: right;
    margin-top: 30px;
}

.neighborhoods .owl-theme.custom-nav button {
    background: #000e35;
    padding: 15px 25px;
    border-radius: 20px 0px 0px 20px;
}

.neighborhoods .owl-theme.custom-nav button:last-child {
    border-radius: 0px 20px 20px 0px;
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.neighborhoods .owl-theme.custom-nav button:hover {
    background: #000 !important;
}

.neighborhoods .btn-default {
    margin-top: 35px;
}




/*** BLOG ***/
.blog-title {
    padding: 40px 0px;
}

.blog-title .section-title {
    padding-left: 80px;
    padding-right: 80px;
}


.blog {
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    position: relative;
    margin-bottom: 120px;
}

.blog .bgbox {
    position: absolute;
    left: 0px;
    bottom: -120px;
    height: 120px;
    background: #f7f5ee;
    width: 40%;
    bottom: -120px;
}

.blog:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
    width: 75%;
}

.blog:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
    opacity: .8;
    width: 25%;
    height: 100%;
}

.blog .bg {
    padding: 30px 50px;
    background: #FFF;
    position: relative;
    z-index: 2;
}

.blog .section-title {
    margin-bottom: 50px;
}

.blog-box {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.blog-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.blog-img {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background: #000;
}

.blog-img  img {
    transition: all .3s;
    aspect-ratio:  1 / .6;
    width: 100%;
    object-fit: cover;
}

.blog-img:hover img {
    opacity: .5;
}

.blog-box h3 {
    font-weight: bold;
    margin: 10px 0px;
    line-height: 1.3;
}

/*** CONTACT FORM ***/
.contact-form {
    padding: 90px 0px;
    background: url(../img/bg-contact.jpg) 50% 50% no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    margin-bottom: 120px;
}

.contact-form .bg-parallax {
    position: absolute;
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    height: 100%;
    width: 10%;
    left: 0px;
    bottom: -120px;
    z-index: 3;
}

.contact-form .bg-parallax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
}

.contact-form .container,
.contact-form .container-fluid {
    position: relative;
    z-index: 4;
} 

.contact-form:after {
    content: '';
    position: absolute;
    left: 120px;
    top: 100%;
    height: 120px;
    background: #f7f5ee;
    width: 37%;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url(../img/overlay-git.png) top left / auto 100% repeat-x;
    z-index: 1;
}

.contact-form .section-title {
    padding-left: 80px;
    padding-right: 80px;
}

.contact-form .logo {
    height: 60px;
    filter: brightness(1) invert(1);
}

.contact-form .container {
    position: relative;
    z-index: 3;
}

.contact-form .btn-default {
    margin-top: 20px;
}

.form-control {
    background: rgba(0, 0, 0, .4);
    border: 0px;
    border-radius: 0px;
    padding: 20px 22px;
    font-size: 14px;
    letter-spacing: .24em;
    margin-bottom: 18px;
    height: 62px;
    color: #fff;
    text-transform: uppercase;
}

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

.form-control:focus {
    color: #fff;
    outline: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, .4);
}

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

.contact-form h5 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 0px 0 15px;
}

.contact-form .btn-default {
    position: absolute;
    right: 35px;
    bottom: 40px;
}

/*** contact-details ***/
.contact-details {
    background: #000e35;
    padding: 70px 0px;
    background: #f7f5ee;
    position: relative;
    overflow: hidden;
}

.contact-details .bg-parallax {
    position: absolute;
    background: url(../img/bg-parallax-b.jpg) fixed top center / cover no-repeat;
    height: 875px;
    width: 40%;
    left: calc(100% - 131px);
    bottom: 0;
}

.contact-details .bg-parallax:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #070707;
    opacity: .8;
}

.contact-details .container, .contact-details .container-fluid {
    position: relative;
    z-index: 2;
}

.contact-details .icon {
    color: #000e35;
    font-size: 24px;
    display: block;
    margin: 0 auto 30px;
}

.contact-details h3 {
    color: #000e35;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-details p {
    line-height: 1.7em;
    color: #000e35;
    font-size: 16px;
}

.contact-details p a {
    color: #000e35;
}

.contact-details .social a {
    display: inline-block;
    color: #fff;
    background: #000;
    border-radius:50%;
    font-size: 22px;
    text-align: center;
    width: 40px;
    line-height: 40px;
}

.contact-details .social a:hover {
    color: #fff;
    background: #000;
}

.contact-details p a:hover {
    color: #000e35;
}

/*** FOOTER ***/
footer {
    padding: 75px 0px 45px 0px;
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../img/bg-footer.jpg) 50% 50% no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

footer ul {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 30px 0px;
    margin: 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

footer ul li {
    display: inline-block;
    margin: 10px 10px;
}

footer ul li a {
    display: inline-block;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
}

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

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

footer .logo .remax {
    max-height: 70px;
}

footer .logo a {
    margin: 0px 15px;
    display: inline-block;
}

footer h3 {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}

footer p {
    color: #fff;
    font-size: 14px;
}

footer li:hover a {
    color: #fff;
}

footer .copy p {
    color: #fff;
    margin-top: 45px;
}

footer .copy img {
    max-height: 40px;
    margin-left: 5px;
}

