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



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

body {
    font-size: 16px;
    font-family: 'Red Hat Text', sans-serif;
    color: #fff;
    background: #141414;
}

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

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

a:hover {
    text-decoration: none;
    color: inherit;
}

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:#fff;
    font-family: 'Bodoni Moda', serif;
}

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

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

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

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

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

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

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

p {
    color:#fff;
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

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

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

.visible-xs {
    display: none;
}

.btn-default.orange {
    border-color: #ccb257;
    background: #ccb257;
    color:#fff;
}

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

.btn-default {
    position: relative;
    font-weight: 600;
    border-radius: 0px;
    text-decoration: none;
    cursor: pointer;
    padding: 0px 35px;
    color: #fff;
	background:none;
	transition: all .5s;
    border: 1px solid rgb(240, 240, 240);
	overflow:hidden;
	display:inline-block;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    min-width: 230px;
    line-height: 48px;
    text-align: center;
    z-index: 1;
}

.btn-default::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #a3792c, #ccb257, #a3792c);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.btn-default:hover::before {
    opacity: 1;
}

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

.btn-default.black-btn {
    border-color:#002349;
    color:#002349;
}

.btn-default.black-btn:hover,
.btn-default.black-btn.active {
    background-image: linear-gradient(to bottom, #a3792c, #f8e9a0, #a3792c);
    border-color: #a3792c;
	color:#fff;
}

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

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

ul.bulleted {
    margin: 30px 0px 40px 0px;
    padding: 0px 0px 0px 25px;
    display: block;
}

ul.bulleted li {
    margin:0px 0px 15px 0px;
    list-style: none;
    position: relative;
}

ul.bulleted li:before {
    color: #d61616;
    speak: none;
    font:normal normal normal 20px/1 FontAwesome;
    font-style: normal;
    font-weight: 400;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    position: absolute;
    left:-25px;
    top: 2px;
}

.section-title {
    display: inline-block;
}

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

.section-title h6 {
    color:#fff;
    display: flex;
    font-weight: 300;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    white-space: nowrap;
    align-items: center;
    font-family: 'Red Hat Text', sans-serif;
}

.section-title h6::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(231, 223, 212, 0.149);
    margin-left: 6%;
}

.section-title h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
    background-image: linear-gradient(to bottom, #a3792c, #ccb257, #a3792c);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0px;
}

.section-title p {
    font-size: 16px;
    line-height: 30px;
    margin: 10px 0;
    font-weight: 400;
    color: #fff;
    opacity: .8;
    padding: 0px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.bg-red {
    background: #d61616;
}

.white-text {
    color: #fff !important;
}

.ob-cover {
    object-fit: cover;
}

/*** HEADER ***/
.header {
	position:fixed;
	top:0px;
	left:0;
	width:100%;
	z-index:99;
    transition: all .3s;
    padding: 5px 15px;
}

.header.scrolled {
    position: fixed;
    transition: 0.3s;
    z-index:99999;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #1D174A;
    box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 30%);
}

.header .menu-main {
}

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

.header.scrolled .menu-main {
    opacity: 1;
}

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


.header.scrolled .navbar-nav .nav-link, .header.scrolled .navbar-nav li:first-child a, .header.scrolled .navbar-nav li:last-child a,
.header.active .navbar-nav .nav-link {
    color: #fff;
}

.header.active .navbar-nav .socials a {
    color:#fff;
}

.header.scrolled .navbar-nav .nav-link.brdr {
    border-color: #fff;
}

.header.scrolled .navbar-nav .nav-link:hover {
    color:#fff !important;
}

/* .header.scrolled .navbar-nav .nav-link:hover:after {
    background:#fff !important;
} */
.header.scrolled .navbar-nav .nav-link:hover:after {
    background: none !important;
}
.navbar {
	padding:0;
}

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

.navbar-nav .dropdown-menu li {
    margin: 5px 0px;
}

.navbar-nav .dropdown-menu a:hover,
.navbar-nav .dropdown-menu a.active {
    color:#d80035;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 400;
    line-height: 82px;
    position: relative;
    transition: all .3s;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 13px;
    padding: 0px 15px;
}

.navbar-nav .dropdown>a {
    padding-right: 15px !important;
}

.navbar-nav .dropdown: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: 49%;
    right: 0px;
    color: #fff;
}

.navbar-nav .nav-link.brdr {
    /* border-left: 1px solid #fff; */
    text-align: center;
    padding-left: 30px !important;
    padding-right: 12px !important;
    font-size: 15px;
}

.navbar-nav .nav-link.brdr.lt {
    /* border-right: 1px solid #fff; */
    text-align: center;
    padding-right: 15px !important;
    padding-left: 15px !important;
    font-size: 15px;
}

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

.header .rts li {
    margin-left: 0px;
}

.navbar-nav .socials {
    display: flex;
    align-items: center;
}

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

.navbar-brand {
    padding-top: 0px;
}

.navbar-nav .dropdown-menu {
    left: -20px;
	top:99%;
    min-width: 230px;
    padding:0px;
    background: none;
	border:none;
	border-radius:0;
    padding: 0px;
	margin-top: 0;
}

.dropdown-item {
    padding: 0px 0px;
    color: #fff;
	font-size:12px;
    line-height: 40px;
	transition:all .3s;
    background-color: #ccb257;
    text-transform: uppercase;
    text-align: center;
    margin: 1px 0px;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: 'Red Hat Text', sans-serif;
}

.dropdown-item.active, .dropdown-item:active, .dropdown-item:hover {
	background:#000;
    color: #fff !important;
}

.dropdown-item:hover:before {
    width: 14px;
}

.navbar-nav .nav-item:hover .nav-link, .navbar-nav .nav-item.active .nav-link {
    color: #ccc !important;
}

/*** banner ***/
.banner {
	background-color:#191919;
	position:relative;
    overflow:hidden;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    background-position: 100%;
    background-position: 100% 19%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-top: 70px;
}

/* MOBILE */
@media (max-width: 375px) {
    .banner {
        background-image: url(../img/bg-banner-mobile.png) !important;
        background-size: 450px !important;
    }
}

@media (max-width: 480px) {
    .banner {
        background-image: url(../img/bg-banner-mobile.png) !important;
        background-size: 675px !important;
    }
}

/* MOBILE LANDSCAPE */
@media (max-width: 667px) and (orientation: landscape) {
    .banner {
        background-size: cover !important;
        height: 100vh !important;
    }
}

/* IPAD */
@media (min-width: 500px) and (max-width: 820px) {
    .banner {
        background-image: url(../img/bg-banner-mobile.png) !important;
        background-size: cover !important;
        background-position: 60% 0%;
        height: 60vh;
    }
}

/* IPAD LANDSCAPE */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1180px) and (orientation: landscape) {
    .banner {
        background-image: url(../img/bg-banner-mobile.png) !important;
    }
}

/* LAPTOP */
@media (max-width: 1440px) {
    .banner {
        background-image: url(../img/bg-banner-mobile.png) !important;
    }
}

.banner::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0.05;
    background: #000000;
    opacity: 0.1;
}

.banner h6 {
    color:#fff;
    font-family: 'Red Hat Text', sans-serif;
    font-size:25px;
    letter-spacing: 0.6em;
    text-transform: uppercase;
}

.banner h2 {
    color:#fff;
}

/* MOBILE LANDSCAPE */
@media (max-width: 667px) and (orientation: landscape) {
    .banner h2 {
        font-size: 30px;
        width: 70%;
    }
}

.banner h6 {
    color:#fff;
}

.banner p {
    color:#fff;
    font-size: 18px;
    margin: 20px 0px;
}

/* MOBILE LANDSCAPE */
@media (max-width: 667px) and (orientation: landscape) {
    .banner p {
        margin: 0;
    }
}

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

.banner .btn-default {
    margin-top: 20px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 480px) {
    .mobile-height {
        display: flex;
        flex-direction: column;
        justify-content: end;
        height: 85%;
    }
}

@media (min-width: 414px) and (max-width: 414px) {
    .mobile-height {
        height: 60%;
    }
}

@media (max-width: 375px) {
    .mobile-height {
        margin-top: 30px;
    }
}

/* IPAD */
@media (min-width: 768px) and (max-width: 820px) {

}

.hero-logo-ctn {
    width: 360px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .hero-logo-ctn {
        width: 180px;
    }
}

.hero-logo-ctn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 4px 4px black);
}

/*** 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 #134db8;
    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);
}

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

.hamburger {
    background: none;
    color:#fff;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.hamburger span {
    background: none;
}

.hamburger i {
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    z-index: 915;
    position: relative;
    top: 0;
    right: 0;
    /* padding: 40px; */
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    font-size: 28px;
    padding: 0px 5px;
    text-align: center;
    width: 59px;
    line-height: 54px;
    background: #ccb257;
    margin-left: 10px;
    padding: 0px 10px;
}
/* 
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: relative;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    margin-left: 0px;
}
.hamburger span:before, .hamburger span:after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    content: '';
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.hamburger span:before {
    top: -8px;
}

.hamburger span:after {
    bottom: -8px;
}

.header.scrolled .hamburger span:before, 
.header.scrolled .hamburger span:after {
    background-color: #000;
}

.header.scrolled .hamburger span {
    background-color: #000;
} */
/**/


#menu-div.active {
    display: block;
}

#menu-div .rightside {
    padding: 0 6.5vw;
}

#menu-div {
    position: fixed;
    z-index: 125;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    background: #1D174A;
    display: none;
    z-index: 99999;
    padding: 45px 60px 25px 45px;
    padding: 0px;
    z-index: 9999999999;
    transition: all .5s ease-in-out;
}

#menu-div .close {
    font-size: 25px;
    font-weight: 300;
    z-index: 5;
    width: 59px;
    height: 54px;
    position: absolute;
    top: 19px;
    right: 41px;
    line-height: 13px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    opacity: 1;
    background: #ccb257;
    z-index: 100;
    cursor: pointer;
    text-align: center;
    padding-top: 5px;
}

#menu-div .close span {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

#menu-div ul.head {
    list-style: none;
    padding: 0;
}

#menu-div ul.head>li {
    margin-bottom: 16px;
    width: 100%;
}

#menu-div .head ul {
    padding-left: 25px;
    padding-top: 10px;
}

#menu-div .head ul li {
    display: inline-block;
    width: 100%;
    margin: 0px;
    padding: 10px 0px;
}

#menu-div .head ul li a {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #a2a2a2;
    transition: all 0.3s linear;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    text-transform: uppercase;
    position: relative;
}

#menu-div ul li a:after {
    display: block;
    content: "-";
    color: #a2a2a2;
    font-size: 35px;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate(-0, -50%);
    opacity: 0;
    transition: .3s linear;
}

#menu-div ul li a:hover::after {
    opacity: 1;
    right: 0;
}

#menu-div ul li a:hover {
    color: #ccb257;
}

#menu-div .upcoming-events {
    height: 60.549vh;
    padding: 2.813vw;
    overflow: hidden;
    position: relative;
}

#menu-div .upcoming-events::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #1D174A;
    opacity: 0.4;
}

#menu-div .heightbg1 {
    background: url(../img/expanded-info.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    width: 61.029%;
    height: 39.451vh;
    overflow: hidden;
}

#menu-div .heightbg2 {
    background: #ccb257;
}

#menu-div .heightbg1 p {
    font-size: 18px;
}

#menu-div .heightbg1 p.soci {
    font-size: 25px;
    margin-top: 20px;
}

#menu-div .heightbg1 p a {
    margin: 0px 5px;
}

#menu-div .logo {
    position: relative;
    z-index: 9;
}

#menu-div .logo img {
    max-height: 90px;
}

#menu-div .bg-img {
    width: 100%;
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s ease-in-out;
}

#menu-div .bottom-text {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    z-index: 10;
    height: 100%;
    width: 100%;
}

#menu-div h2 {
    letter-spacing: 0.02em;
    font-size: 35px;
    opacity: 0.6;
    color:#fff;
}

#menu-div .bottom-text p {
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 15px;
    margin-bottom: 8px;
}

#menu-div .bottom-text p em {
    font-style: normal;
    margin: 0 1.25vw;
}

#menu-div .bottom-text span {
    font-weight: 300;
    color: #cccccc;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-size: 13px;
    display: block;
    padding-top: 0.8vw;
}

#menu-div ul.head>li>a {
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: 'Bodoni Moda', serif;
    display: inline-block;
    width: 100%;
    margin-bottom: 13px;   
	position: relative;
}

#menu-div ul.head>li>a:hover {
    color: #ccb257;
}

#menu-div .social ul li a {
    color: #fff;
}

#menu-div .sidebar-logo img{
	max-width:50%;
}

/**/
.about {
    position: relative;
    background: #1D174A;
    padding: 70px 0px;
}

.img-box {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 600px;
    width: 100%;
}

.about-img-bg {
    display: block;
    width: 29.875vw;
    height: 34.5vw;
    position: absolute;
    left: -12vw;
    top: 0;
    z-index: -1;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    opacity: .15;
}

.about .img-about img {
    max-height: 63px;
}

.about .img-about h4 {
    color:#fff;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 0;
}

.about .img-about p {
    font-size: 16px;
    text-transform: uppercase;
}

.about-area-bg {
    display: block;
    width: 29.875vw;
    height: 36.5vw;
    position: absolute;
    right: 0;
    bottom: -10vw;
    z-index: 0;
    background-size: 106%;
    background-repeat: no-repeat;
    background-position: 0 0;
    opacity: .15;
}

.about hr {
    border-color:#fff;
    opacity: .2;
    margin: 100px 0px 80px 0px;
}

/**/

.listing {
    padding: 70px 0px;
}

.listing-box {
    position: relative;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.listing-box canvas {
    display: inline-block;
    position: relative;
    height:40vw;
    height: 31vw;
    -webkit-background-position: center;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: #808080;
    float: left;
    width: 100%;
}

.listing-box .img {
    z-index: 2;
}

.listing-box .img:before {
    content: '';   
    /* background: linear-gradient(0deg,rgba(25,25,25,.85) 10.45%,rgba(25,25,25,0)); */
    background: rgba(25,25,25,.4);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.listing-box .text {
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    padding: 25px;
    z-index: 2;
}

.listing-box .address, .listing-box .address-tag {
    max-width: 70%;
    margin: 0;
    letter-spacing: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color:#fff;
    line-height: 1.2;
    font-size: 29px;
}

.listing-box .btn-default {
    padding: 0px 18px;
}

.listing-box .details {
    padding: 0;
    margin: 0;
}

.listing-box .details li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-right: 35px;
}

.listing-box .name {
    position: absolute;
    top: 15px;
    left: 25px;
    z-index: 2;
    color:#fff;
    text-transform: uppercase;
}

.listing-box .price {
    color:#fff;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.listing-box .bottom-info {
    display: inline-block;
    width: 100%;
    padding: 30px 25px;
    background: #252525;
    transition: all .3s;
}


.listing-box .bottom-info p {
    margin: 5px 0px;
}

.listing-box:hover .bottom-info {
    background: #ccb257;
}


/**/
.testimonials {
    padding:70px 0px;
    background: #1D174A;
}

.testimonials .owl-item {
    filter: grayscale(100%);    
    transform: scale(0.9);
}

.testimonials .owl-item.center {
    filter: grayscale(0);
    transform: scale(1);
}

.testimonials .space {
    border: 5px solid #ccb257;
    opacity: 1;
    padding: 2.5vw 3.75vw;
}

.testimonials p {
    font-size: 16px;
}

.testimonials h4 {
    color:#ccb257;
    font-size: 22px;
    text-transform: uppercase;
}

.testimonials .owl-carousel .owl-nav button.owl-prev {
    left: 22vw;
}

/* IPAD */
@media (min-width: 768px) and (max-width: 820px) {
    .testimonials .owl-carousel .owl-nav button.owl-prev {
        left: 8vw;
    }
}

.testimonials .owl-carousel .owl-nav button.owl-next {
    right: 22vw;
}

/* IPAD */
@media (min-width: 768px) and (max-width: 820px) {
    .testimonials .owl-carousel .owl-nav button.owl-next {
        right: 8vw;
    }
}


.testimonials .owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 42px;
    background: transparent;
    border: none;
}

.testimonials .owl-carousel .owl-nav button:hover {
    background: none;
}

.testimonials.inner .space {
    border-width: 1px;
    margin-bottom: 0;
    height: 100%;
    align-items: center;
    display: flex;
    text-align: center;
    padding: 60px 3.75vw;
}

.testimonials.inner .bts>div {
    margin-bottom: 35px;
}

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

.pagination ul li {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

.pagination ul li+li {
    border-left: 1px solid #898989;
}

.pagination ul li:last-child {
    border: none;
    margin-left: 10px;
}

.pagination ul li:last-child a {
    font-size: 24px;
    color: #fff;
    background: #ccb257;
    min-width: 46px;
    line-height: 44px;
}

.pagination ul li a {
    display: inline-block;
    color: #fff;
    color: #898989;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    transition: all .3s;
}

.pagination ul li a:hover,
.pagination ul li a.active {
    color: #ccb257;
    background: none;
}


/**/
.contact-form {
    position: relative;
    padding: 100px 0;
}

.contact-form .section-title p {
    letter-spacing: 1px;
}

.contact-form .form-control,
.contact-form .form-control::-webkit-input-placeholder  {
    color:rgba(255, 255, 255, 0.502);
    border-color: rgba(255, 255, 255, 0.502);
}

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

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

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.025em;
    color: rgba(255, 255, 255, 0.502);
    border: 1px solid rgba(255, 255, 255, 0.502);
    background: none;
    font-weight: 400;
    height: 48px;
    outline: 0;
    line-height: 1.5;
    padding: 10px 20px;
    border-radius: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

textarea.form-control {
    height: 150px;
    resize: none;
    padding: 10px 20px;
}

.form-control:focus {
    background: none;
    outline: none;
    color:#fff;
    box-shadow: none;
}

.btn-submit {
    position: absolute;
    right: 36px;
    bottom: 21px;
    color: #ccb257;
    font-size: 35px;
    background: none;
    padding: 0;
}

.btn-submit:hover {
    color:#fff;
}

/**** FOOTER ****/
.footer {
    background:url(../img/footer-bg.jpg) left top no-repeat;
    background-size: cover;
    position: relative;
}

.footer:after {
    display: block;
    content: "";
    background-color: rgba(29, 23, 74, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.logo-f {
    height: 70px;
    height: 90px;
    object-fit: contain;
    margin: 0px 20px;
}

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

.footer h3,.footer p,.footer p a {
    color:#fff;
}

.footer h3 {
    line-height: 1.4;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer .logo h2 {
    color:#fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer p {
    margin-top: 30px;
    font-size: 14px;
}

.footer p.sm {
    margin-top: 30px;
    margin-bottom: 2px;
    font-size: 12px;
}

.footer p i {
    margin-right: 5px;
    margin-left: 10px;
    font-size: 13px;
    color:#ccb257;
}

.footer p span {
    display: inline-block;
    margin:0px 10px;
}

.footer a:hover {
    color: #ccb257;
}

.footer p.subs {
    font-size: 14px;
    line-height: 1.4;
}

.footer .links {
    list-style: none;
    padding: 0;
    margin: 40px 0px 20px 0px;
    border-top: 1px solid #ccb257;
    padding-top: 50px;
}

.footer .links li {
    display: inline-block;
    margin: 7px 5px;
}

.footer .links li a {
    display: inline-block;
    margin: 0px 10px;
    color:#ccb257;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 14px;
}

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

.footer .copy {
    padding-bottom: 30px;
}

.footer .copy p {
    font-size: 12px;
    color: #fff;
    margin-top: 30px;
}

.footer .copy img {
    width: 125px;
}

.social_icons {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    list-style: none;
    margin: 25px 0px 0px 0px;
    padding: 0;
    justify-content: center;
}

.social_icons li {
    padding: 0;
    margin: 0 15px;
}

.social_icons li a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
}

.social_icons li:hover a {
    color: #ccb257;
}

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

.fullheight {
    position: relative;
    z-index: 9;
    background: rgba(0,0,0,.5);
    margin: 0 auto;
    height:100vh;
}

.side-follow-us {
    position: fixed;
    z-index: 10;
    top: 30%;
    right: 45px;
}

.side-follow-us ul {
    padding-left: 0;
}

.side-follow-us ul li.inti {
    list-style: none;
    font-size: 18px;
}

.side-follow-us ul li {
    list-style: none;
    font-size: 18px;
    text-align: center;
}

.side-follow-us ul li .divider {
    width: 1px;
    margin: 0 auto;
    background: #ccb257;
    width: 1px;
    height: 62px;
}

.side-follow-us ul li:not(:last-child) {
    margin-bottom: 20px;
}

.side-follow-us ul li a {
    color: #fff;
}

.side-follow-us ul li a:hover {
    color: #ccb257;
}

.side-follow-us ul li .fol-calendar {
    color: #fff;
    display: inline-block;
    width: 48px;
    line-height: 48px;
    background: #ccb257;
    border-radius: 50%;
    text-align: center;
}

.side-follow-us ul li .fol-calendar:hover {
    color: #fff;
}

.instagram {
    padding: 70px 0px 70px 0px;
}

.insta {
    display: flex;
    align-items: center;
}

.insta a {
    margin: 0px 4px;
}

.insta a img {
    width: 100%;
}

/*** PAGE BANNER ***/
.page-banner {
    background:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../img/modern-living-room-style.jpg) 50% 50% no-repeat;
    background-size: cover;
    height: 60vh;
}

.page-banner h2 {
    color:#fff;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
}

.contact-info {
    padding: 90px 0px;
    position: relative;
    overflow: hidden;
}

.contact-info .about-img-bg {
    left: -3vw;
    top: 60px;
}

.contact-info .social p {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    text-align: left;
}

.contact-info .social p i {
    border: 1px solid #ccb257;
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 33px;
    font-size: 20px;
    color: #ccb257;
    margin-right: 20px;
}

.contact-info .social p a {
    color: #fff;
    display: flex;
    align-items: center;
}

.contact-info .social p a:hover {
    color:#ccb257;
}

.contact-info .section-title h2 {
    font-size: 29px;
}

.contact-info .form-control {
    color:#fff;
    padding: 15px 15px;
    font-size: 12px;
}

.contact-info textarea.form-control {
    height: 120px;
    margin-top: 0;
}

.contact-info .icons {
    margin-top: 30px;
}

.contact-info .icons a {
    margin-right: 20px;
}

.contact-info .icons a:hover {
    color:#ccb257;
}

.map iframe {
    float: left;
    -webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
}

.footer.inner {
    padding-top: 70px;
}

.team {
    padding: 40px 0px 70px 0px;
}

.team .img {
    display: inline-block;
    width: 100%;
    position: relative;
    transition: all .3s;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-box figure {
    margin-bottom: 0px;
    overflow: hidden;
    height: 450px;
    border: 5px solid #fff;
    transition: all .3s;
}

.team-box a:hover figure {
    filter:grayscale(100%);
}

.team-box .btn-default {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -50%;
    width: 70%;
    transform: translate(-50%, 0);
    transition: all 0.4s ease-in-out;
}

.team-box .img:hover .btn-default {
    bottom: 60px;
}

.team-box h5 {
    color:#fff;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.05em;
    font-family: 'Red Hat Text', sans-serif;
}

.team-box p {
    color:#fff;
    font-size: 13px;
}

.team-box .designation {
    color: #6d717a;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 17px;
    margin-top: 11px;
}

.team-box .text p a {
    display: inline-block;
    margin: 4px 0px;
    width: 100%;
    font-size: 15px;
}

.team-box p a:hover {
    color:#ccb257;
}

.slider-arrows.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -80px;
    font-size: 82px;
    background: none !important;
    border: none;
}

.slider-arrows.owl-carousel .owl-nav button.owl-prev {
    left: -90px;
}

.slider-arrows.owl-carousel .owl-nav button.owl-next {
    right: -90px;
}

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

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

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

.about.inner .list p {
    font-size: 15px;
}

.info-small .section-title h2 {
    font-size: 50px;
    margin-bottom: 20px;
}






