
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 1;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

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

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
    border-color: #fff;
}

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

.owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 100%;
}

.owl-theme .owl-nav .owl-next {
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    width: 100%;
}

.owl-theme .owl-nav [class*='owl-'] {
    font-size: 14px;
    margin: 0;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    width: 60px;
    height: 100%;
    position: absolute;
}

/*.owl-theme .owl-nav [class*='owl-']:hover {
    background-color: darken(#ff0000,10%);
}*/
.home-slider {
    transition: all 0.5s ease-in 0s;
}

.home-slider:hover .owl-controls {
    opacity: 1;
}

.owl-prev {
    background-image: url("../images/next-arrow.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-next {
    background-image: url("../images/prev-arrow.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-controls {
    transition: all 0.3s ease-in 0s;
    opacity: 0;
}
@media screen and (max-width: 1190px) {
    .project-banner-info{
        height: 203px !important;
        padding: 25px 0 !important;
    }
    .project-banner-info h2{font-size:19px;}
}
@media screen and (max-width: 650px) {
    .owl-controls {
        display: none !important;
    }
}

.touch .owl-controls {
    display: none !important;
}

@media screen and (max-width: 650px) {
    .main-area .tab-content {
        padding-bottom: 10px;
    }
}

.tab-navigation {
    background-color: #333;
}

@media screen and (max-width: 650px) {
    .tab-navigation {
        background-color: transparent;
        padding-top: 15px;
    }
}

.project-tab {
    margin-bottom: 0;
    display: table;
    display: flex;
    width: 100%;
}

.project-tab li.active a {
    background-color: #fff;
}

.project-tab li.project-tab__item {
    display: table-cell;
    text-align: center;
    flex-grow: 1;
    padding: 0;
    transition: all 0.5s ease 0s;
}

.project-tab li.project-tab__item a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    line-height:40px;
    display: block;
    letter-spacing: 1px;
    border-right: 1px solid #5c5c5c;
    padding: 0;
    transition: all 0.5s ease 0s;
}

@media screen and (max-width: 650px) {
    .project-tab li.project-tab__item a {
        color: #000;
        border-bottom: 1px solid #dcdcdc;
    }
}

.project-tab li.project-tab__item a:hover {
    background-color: #fff;
    color: #333;
    transition: all 0.5s ease 0s;
}

.project-tab li.project-tab__item:last-child a {
    border-right: none;
}

.tab-navigation.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

@media screen and (max-width: 991px) {
    .tab-navigation.sticky {
        position: relative;
    }
}

@media screen and (max-width: 850px) {
    .project-tab li.project-tab__item a {
        font-size: 14px;
    }
}

@media screen and (max-width: 650px) {
    .project-tab {
        flex-direction: column;
        background-color: #f2f2f2;
        border: 1px solid #ccc;
        border-top: 0;
    }

    .project-tab li.project-tab__item {
        display: block;
    }

    .project-tab li.project-tab__item a {
        border-right: none;
    }
}

/*.project-tab-nav {
    @media screen and (max-width:650px) {
        display: none;
    }
}*/
.drop-project {
    display: none;
}

@media screen and (max-width: 650px) {
    .project-tab-nav {
        display: block !important;
    }

    .drop-project {
        display: block;
        border: 1px solid #ccc;
        padding: 12px;
        background-color: #333;
        color: #fff;
        text-align: center;
    }
}

.drop-project i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.svg .drop-project-arrow {
    background-image: url("../images/down-arrow.svg");
}

.project-pane {
    padding: 10px 0;
}

@media screen and (max-width: 992px) {
    .project-row {
        flex-direction: column;
        margin-bottom: 15px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }

    .project-row .col-sm-8, .project-row .col-sm-4 {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .flex-reverse .col-sm-4 {
        order: 0;
    }

    .flex-reverse .col-sm-8 {
        order: -1;
    }
}

/*.project-banner {
    img {
        width: 100%;
    }
}*/
.project-banner-info {
    height: 245px;
    background-color: #f0f0f0;
    display: inline-block;
    padding: 0;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .project-banner-info {
        padding: 20px 0 !important;
        height: auto !important;
    }
}

@media screen and (max-width: 440px) {
    .project-banner-info .col-xs-6 {
        width: 100%;
        margin-bottom: 10px;
    }
}

.project-banner-info h2 {
    margin-top: 0;
}

@media screen and (max-width: 992px) {
    .project-banner-info h2 {
        font-size: 22px;
    }
}

.project-banner-info a {
    font-size: 12px;
    width: 100%;
    color:#333;
    text-decoration: none;
    text-align:center;
    text-transform:uppercase;
}
.project-banner-info .view-project-btn {
    font-size: 14px;
    width: 100%;
    display: block;
    width: 80%;
    padding: 10px;
    color: #333;
    margin: auto;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff url("../images/plus.png") no-repeat 96% center;
    border: 1px solid #e6e6e6;
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.1),0 0px 1px 0 rgba(0,0,0,0.1),0 3px 1px -2px rgba(0,0,0,0.0);
    transition: all 0.3s ease-in-out 0s;
}
.project-banner-info .pro-inquiry-btn {
    width: 100%;
    box-shadow:0 1px 1px 0 rgba(0,0,0,0.1),0 0px 1px 0 rgba(0,0,0,0.1),0 3px 1px -2px rgba(0,0,0,0.0);
}
.pro-inquiry-btn
{font-size: 14px;
 width: 100%;
 display: block;
 width: 80%;
 padding: 10px;
 color: #333;
 margin: auto;
 text-decoration: none;
 text-transform: uppercase;
 background: #fff url("../images/plus.png") no-repeat 95% center;
 border: 1px solid #e6e6e6;
 transition: all 0.3s ease-in-out 0s;
}
.project-banner-info .view-project-btn:hover,.pro-inquiry-btn:hover
{
    background: #fff url("../images/plus-hover.png") no-repeat 95% center;
    background-color:#ed3237;
    border:1px solid #ed3237;
color:#fff;    
    }
.location-icon 
{
    display:table;
    margin: auto;
    width: 20px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
}

.svg .location-icon {
    background-image: url("../images/location.svg");
}

.no-svg .location-icon {
    background-image: url("../images/location.png");
}

/* video section */
.new-videos {
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 992px) {
    .new-videos {
        padding: 10px 0;
    }
}

.video-container {
    text-align: center;
}

.video-container img {
    width: 100%;
}

.see-more-section {
    text-align: center;
}

.see-more-section a {
    border: 1px solid #ccc;
    display: inline-block;
    margin-top: -1px;
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 20px;
    transition:all 0.3s ease-in-out 0s; 
}
.see-more-section a:hover 
{
background-color:#ed3237;
border:1px solid #ed3237;
color:#fff;
}
.see-more-icon {
    display: inline-block;
    width: 14px;
    height: 13px;
    margin-left: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/plus-black.png");
}
.see-more-section a:hover .see-more-icon{background-image: url("../../images/plus-hover.png");}
.project-tab__item.active a {
    color: #333 !important;
}

#scroll-top {
    background-color: #fff;
    background-image: url("../images/top.png");
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #9a9a9a;
    bottom: 12%;
    cursor: pointer;
    display: none;
    height: 40px;
    position: fixed;
    right: 1%;
    width: 40px;
}

@media screen and (max-width: 992px) {
    #scroll-top {
        right: 0;
        bottom: 0;
        width: 40px;
        height: 40px;
    }
}

#scroll-top:hover {
    background-color: #ececec;
}

.addlink a {
    color: #333;
    text-decoration: none;
    transition:all 0.3s ease-in-out 0s;
}

.addlink a:hover {
    color:#ed3237;
    text-decoration: none;
}

.project_logo {
    width: 30%;
}

.project-banner {
    width: 70%;
}

h2, .h2 {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    h2, .h2 {
        font-size: 18px;
        text-align: center;
    }
}

.squarefeet ul {
    padding: 0;
    margin: 0;
}

.squarefeet ul li {
    list-style: none;
    display: inline-block;
    padding: 0 30px;
    position: relative;
}

.inner_title {
    background-color: #fff;
    color: #333;
    font-size: 24px;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

@media screen and (max-width: 992px) {
    .inner_title {
        font-size: 20px;
        padding: 16px 0;
    }
    h3{font-size:18px;}
    .logo-lg {
        padding: 5px 0;
        width: 85px;
    }
}

@media screen and (max-width: 650px) {
    .inner_title {
        margin-top: 0px;
    }
}
.text-font.m-15-t.m-15-b{display: inline-block;}

.project-banner-info .view-project-btn:hover, .pro-inquiry-btn:hover{ background:#000; border-color:#000;}
.project-banner-info .view-project-btn {
	display: inline-block;
	padding: 15px 30px;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	overflow: hidden;
	position: relative;
	z-index: 9;
	margin-top: 10px;
	border:inherit;
	border:1px solid;
}
.project-banner-info .view-project-btn::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-color: #ff2d54;
    border-style: solid;
    border-width: 95px 160px;
    content: "";
    transform: rotate(360deg);
    z-index: -9;
    transition: all 1s;
    transform-origin: left;
}
.project-banner-info .view-project-btn:hover::before {
    transform: rotate(60deg);
    border-color: #f0f;
}

.see-more-section a:hover{ background:#000; border-color:#000;}
.see-more-section a {
	display: inline-block;
	padding: 15px 30px;
	background: #000;
	color: #fff !important;
	text-transform: uppercase;
	font-weight: 700;
	overflow: hidden;
	position: relative;
	z-index: 9;
	margin-top: 10px;
	border:inherit;
	border:1px solid;
}
.see-more-section a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-color: #ff2d54;
    border-style: solid;
    border-width: 95px 160px;
    content: "";
    transform: rotate(360deg);
    z-index: -9;
    transition: all 1s;
    transform-origin: left;
}
.see-more-section a:hover::before {
    transform: rotate(60deg);
    border-color: #f0f;
}

.project-tab__item{ margin-top:8px; position:relative;}
.project-tab li.active a, .project-tab li.project-tab__item a:hover{ background-color:#ff2d54; color:#fff !important;}
.project-tab__item.active{ position:relative;}
.project-tab__item.active::after{ content:""; position:absolute; left:0; height:4px; width:100%; top:-8px; transition:all 0.5s ease 0s; background:#d01d3e;}
.project-tab__item::after{ content:""; position:absolute; left:0; height:4px; width:100%; top:-8px; transition:all 0.5s ease 0s; background:#000;}
.tab-content{ margin-top:20px;}
.project-tab li.project-tab__item a{ padding:5px 0;}
.project-row:hover .project-banner-info{ background:#ff2d54;}
.project-row .project-banner-info{ transition:all 1s ease-in-out 0s;}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
.project-banner-info a i{ font-size:24px; color:#000; animation:2s ease 0s normal none infinite running bounce;}
.footer-meta__item i{ animation:2.5s ease 0s normal none infinite running wrench;}
.inner_banner .project_details_box{ border:2px dashed #ff2d54; animation:5s linear 0s normal none infinite running pulse; margin-left:25px;}

.box{
    text-align: center;
    background: #000;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
}
.box:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #ff2d54;
    opacity: 0.5;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: all 0.35s ease-in 0.3s;
}
.box:hover:before{
    top: 0;
    transition: all 0.35s ease-out 0s;
}
/*.box:after{
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    border-width: 200px 200px 0 200px;
    border-style: solid;
    border-color: #ff2d54 transparent transparent transparent;
    opacity: 0.9;
    transform: translateX(-50%);
    transition: all 0.35s ease-out 0s;
}
.box:hover:after{
    bottom: 25%;
    transition: all 0.35s ease-in 0.2s;
}*/
.box img{
    width: 100%;
    height: auto;
}
.box:hover img{
    opacity: 0.5;
}
.box .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.box .title{
    display: inline-block;
    width: 100%;
    padding: 0 30px;
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
    position: absolute;
    top: 30%;
    left: 0;
    opacity: 0;
    transition: all 0.35s ease 0.5s;
}
.box:hover .title{
    transform: translate(0, -50%);
}
.box .post{
    width: 100%;
    font-size: 15px;
    text-transform: capitalize;
    position: absolute;
    top: 57%;
    left: 0;
    opacity: 0;
    transition: all 0.35s ease 0.5s;
}
.box:hover .post{
    transform: translate(0, -50%);
}
.box .icon{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transition: all 0.35s ease 0.5s;
}
.box .icon li{
    display: inline-block;
}
.box .icon li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    font-size: 20px;
    color: #fff;
    opacity: 1;
    transition: all 0.35s ease 0.5s;
	text-decoration:none;
}
.box .icon li a:hover{
    opacity: 1;
    transition: all 0.35s ease;
}
.box:hover .title,
.box:hover .post,
.box:hover .icon{
    opacity: 1;
}

@media only screen and (max-width:990px){
    .box{ margin-bottom: 20px; }
}
/*@media only screen and (max-width:767px){
    .box:after{ border-width: 500px 500px 0 500px; }
}*/
.service-box{ text-align:center; color:#ff2d54;}
.service_wp{ padding:150px 0 200px; background-image:url(../images/poster.jpg); background-size:100% 100%; margin-top:30px;}
.box img{ height:290px;}
#location .box img{ height:auto;}
.gallery_wp .title-center.ameniti_bor h2{ border-bottom:1px solid; padding-bottom:15px; margin-bottom:20px;}
.gallery_wp .amenities_wp{ margin-bottom:30px;}


@media screen and (max-width: 991px) {
	.service_wp{ padding:0;}
}

@media screen and (max-width: 650px) {
	.footer_tital > h3{ border-bottom:1px solid; padding-bottom:15px;}
}

@media screen and (max-width: 480px) {
	.service_wp{ padding:100px 0; margin-bottom:0; margin-top:0;}
	.cshero-footer{ margin-top:-30px;}
}

@media screen and (max-width: 360px) {
	.social_media li{ margin:0 0 10px; text-align:center; width:33.33%;}
	.footer_form .internal{ margin:0 auto;}
	.download_btn a{ width:50%;}
}
