body{
    overflow-x:hidden;
}

/*Main Navigation*/
.main-nav-container
{
  width:100%;
  max-width: 360px;
  position: fixed;
  z-index: 999;
  right:0;
  background-color:#333;
  padding:20px 0px;
  height:100%;
  transition: .5s ease-in-out;
  display: flex;
  flex-direction: row;
  top:0;
}
.main-nav-container .left-wrp
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.maj-mouse
 {
    width: 24px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 10px;
    position: relative;
    /*padding: 4px 0;*/
    overflow: hidden;
    transition: all .3s ease;
}
/*.maj-mouse:before
 {
  content: '';
  background: #fff;
  width: 2px;
  height: 0px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: maj_mouse 1.5s ease-in-out infinite;
}
@keyframes maj_mouse{
  0%{
    height: 0;
    transform: translateY(7px);
  }
  50%{
    height: 60%;
  }
  100%{
    height: 0%;
    transform: translateY(50px);
  }
}*/

.maj-mouse:before,
.maj-mouse:after{
  content: '';
  background: #fff;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
  transform-origin: bottom;
  animation: maj_mouse 1.5s ease-in-out infinite;
}
.maj-mouse:after{
    display: none;
}
.maj-mouse:before{
    transform: rotate(-45deg);
}
@keyframes maj_mouse{
  0%{
    height: 0;
    transform: translateY(7px);
  }
  50%{
    height: 60%;
  }
  100%{
    height: 0%;
    transform: translateY(50px);
  }
}
.maj-mouse.go-top{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.maj-mouse.go-top:before,
.maj-mouse.go-top:after{
    height: 10px;
    transform-origin: center;
    animation: 2s ease-in-out infinite;

}
.maj-mouse.go-top:before{
    transform: matrix(0, 1, 1, -1, -5, 15);
    animation-name: go_top_before;
}
.maj-mouse.go-top:after{
    display: block;
    transform: matrix(0, 1, -1, -1, 4, 15);
    animation-name: go_top_after;
}
@keyframes go_top_before{
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
    transform: matrix(0, 1, 1, -1, -5, 15);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: matrix(0, 1, 1, -1, -5, 5);
  }
}
@keyframes go_top_after{
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
    transform: matrix(0, 1, -1, -1, 4, 15);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: matrix(0, 1, -1, -1, 4, 5);
  }
}
* {
  margin: 0;
  padding: 0; 
}

#nav-icon {
  width: 30px;
  height: 45px;
  position: relative;
  margin: 10px 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #d3531a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}



#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
  top: 4px;
}

#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
  top: 14px;
}

#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
  top: 24px;
}

#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(1) {
  left: 3px;
  top: 7px;
}

#nav-icon.open span:nth-child(2) {
  left: calc(50% - 3px);
  top: 7px;
}

#nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon.open span:nth-child(5) {
  left: 2px;
  top: 18px;
}

#nav-icon.open span:nth-child(6) {
  left: calc(50% - 1px);
  top: 18px;
}


.list-menu-container
{
  display: flex;
  align-items: center;
}
.menu-list
{
  list-style-type: none;
  padding:0;
  margin:0;
}
.menu-list li 
{
  padding: 10px 0px;
  border-bottom:1px solid rgba(255,255,255,0.2);
  position: relative;
}
.menu-list li:last-child
{
  border:0px;
}
.menu-list li a
{
  text-decoration: none;
  color:#fff;
  font-size:20px;
  padding:10px 20px;
  text-transform: uppercase;
  /*transition: all 0.25s ease;*/
}
.menu-list ul li a:hover,.menu-list ul li a:active,.menu-list ul li a:focus
{
  text-decoration: none;
  color:#fff; 
}
.menu-list  li span
{
    position: absolute; 
    display: block;
    background-color: #fff;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}
.menu-list  li .border
{
  width: 100%;
   height: 2px; 
   bottom: 0;
    left: 0;
    right: 0;    
    background-color: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);         
 
  /*-webkit-transition-delay: 0.375s;
          transition-delay: 0.375s;*/
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.menu-list li:hover .border
{
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
          -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
/*.menu-list li:hover   a:after
{
  display: block;

}
.menu-list li a:after
{
    display: none;
    content: "";
    position: absolute;    
    height: 2px;
    background: #000;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    animation: menu_animation 0.5s ease-in-out;
    
}

@keyframes menu_animate{
  0%{
    width: 0%;
  }
  50%{
    width: 60%;
  }
  100%{
   width: 20%;
  }
}*/
.menu-transform
{
  transform: translateX(80%);
  -webkit-transform: translateX(80%);
  -moz-transform: translateX(80%);
  -ms-transform: translateX(80%);
  -o-transform: translateX(80%);
}
/*.banner-conatiner
{
  margin-bottom: 40px;
}*/
.mouse-up-down
{
  position: relative;
  position: relative;
  height: 100px;
  width: 80px;
}
.mouse-up-down #return-to-top
{
  display: none;
}
.mouse-up-down #return-to-top,.mouse-up-down .maj-mouse
{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.mouse-up-down #return-to-top
{
  top: -2px;
}

.menu-transform
{
  transform: translateX(80%);
  -webkit-transform: translateX(80%);
  -moz-transform: translateX(80%);
  -ms-transform: translateX(80%);
  -o-transform: translateX(80%);
}
/*Main Navigation*/


.navigation
{
    display:flex;
    justify-content:space-between;
}
.navigation-wrap
{
    display: flex;
    justify-content: space-between;
}

.nav-logo
{
    width:15%;
}

.nav-logo img
{
    width:100%;
}
.nav-wrapper {
    background: rgba(23,24,25,0.7);
    padding:20px 0px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    font-family: 'Oxygen-Light';
}
.navigation__checkbox {
  display: none;
}


.navigation__button {
    background-color: #b88f45;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    position: static;
    top: -10px;
    right: 6rem;
    z-index: 2000;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    text-align: center;
    cursor: pointer;
}


.navigation__background {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    position: static;
    top: -10px;
    right: 6rem;
    background: RGBA(0,0,0,0.88);
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    margin-left: -3rem;
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 0.1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 230%;
  transition: all 0.4s;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #000;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
}
.navigation__icon {
  position: relative;
  margin-top: 1.5rem;
}

.navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 2rem;
    height: 2px;
    background-color: #333;
    display: inline-block;
}

.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -8px;
}
.navigation__icon::after {
  bottom: -8px;
}
.navigation__button:hover .navigation__icon::before {
  top: -8px;
}
.navigation__button:hover .navigation__icon::after {
  bottom: -8px;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
  bottom: 0;
}
.menu-btn-wrap
{
    width:20%;
    align-items:center;
    justify-content:space-between;
}
.btn-nav
{
    min-width: 160px;
    background: #b88f45;
    border: 0;
    text-transform: uppercase;
    font-size: 17px;
    padding: 10px 10px;
    border-radius: 20px;
    font-family: 'Oxygen-Light';
    font-weight: 600;
    cursor:pointer;
    text-align: center;
}
#main-slider .owl-dots
{
	position: absolute;
    right: 3%;
    top: 45%;
    margin: 0;
}


#main-slider .owl-dots .owl-dot
{
	height: 21px;
    width: 21px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 21px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    margin: 7px 0px;
}


#main-slider .owl-dots .owl-dot span
{
	width: 11px;
	height: 11px;
	text-align: center;
    margin: 0 auto;
    line-height: 11px;
    vertical-align: middle;
}

.item-1,.item-2,.item-3,.item-4
{
	 background-image:url('../images/banner/1.png');
	 height: 100vh;
	 background-size: cover;
}
.slider-counter
{
	font-family: 'Avenir-Roman';
    position: absolute;
    bottom: 4%;
    left: 3%;
    z-index: 7;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.slide-length
{
    font-family: 'Avenir-Roman';
    position: absolute;
    bottom: 35%;
    right: 3%;
    color: #fff;
    z-index: 7;
    font-size: 22px;
}


.first-head
{    
    font-family: 'Abril Fatface';
    color:#fff;
    font-size:40px;
}

.main-head
{    
    font-family: 'Abril Fatface';
    color:#fff;
    font-size:65px;
    line-height:100px;
}

.head-desc
{
    font-family: 'Oxygen-Light';
    color: #fff;
    font-size: 20px;
    margin:30px 0px;
}

.slide-content-wrapper
{
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}


#main-slider .owl-item.active .slide-content-wrapper .first-head
{
    animation:fadeInLeftBig ease 1s both;
}

#main-slider .owl-item.active .slide-content-wrapper .main-head
{
    animation:fadeInUp ease 1s 1s both;
}

#main-slider .owl-item.active .slide-content-wrapper .head-desc
{
    animation:fadeInUp ease 1s 1s both;
}

#main-slider .owl-item.active .slide-content-wrapper .link-btn
{
    animation:flipInX ease 1.5s 2s both;
}



.common-section,.about-projects
{
    padding:70px 0px;
    position:relative;
}

.about-project:after
{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-image: url(../images/1.jpg);
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index:-1;
}


/*#project-slider .item
{
    max-height:340px;
    cursor:pointer;
}
#project-slider .item-1
{
     background-image:url('../images/1.png');     
     background-size: cover;
}

#project-slider .item-2
{
     background-image:url('../images/4.png');     
     background-size: cover;
}

#project-slider .item-3
{
     background-image:url('../images/3.png');     
     background-size: cover;
}

#project-slider .item-4
{
     background-image:url('../images/2.png');     
     background-size: cover;
}

#project-slider .item-5
{
     background-image:url('../images/3.png');     
     background-size: cover;
}*/
#project-slider .item
{
    cursor: pointer;
    position:relative;    
    overflow: hidden;
}
.project-slide-img
{
    overflow: hidden;
}
#project-slider .item img{
    transition: all 0.3s;
}


#project-slider .item:hover img
{ 
    transform:scale(1.2);
 }
.project-slide-main
{
    font-size:30px;
    color:#333;
    font-family: 'Oxygen-Light';
}

.project-slide-meta
{
    font-size:22px;
    color:#333;
    font-family: 'Oxygen-Light';
}

.project-slider-desc
{
    margin: 20px 0px;
}

.container-block
{
    position: relative;
}

.container-block::before {
 /* background-color: rgba(0, 0, 0, 0.3);*/
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
}
.container-block:hover .inner-block:before,
.container-block:hover .slider-top-right:after {
  height: 100%;
}
.container-block:hover .inner-block:after,
.container-block:hover .slider-top-right:before {
  width: 100%;
}
.container-block img {
  display: block;
  max-width: 100%;
}

.block-content {
  position: absolute;
  bottom: 10%;
  left: 10%;
  padding: 0 1rem;
}

.slider-top-right:before,
.inner-block:after {
  height: 4px;
  transition: width 0.75s ease;
  width: 0%;
}

.slider-top-right:after,
.inner-block:before {
  height: 0%;
  transition: height 0.75s ease;
  width: 4px;
}

.inner-block:before,
.inner-block:after,
.slider-top-right:before,
.slider-top-right:after {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  z-index:2;
}

.inner-block {
  font-size: 2em;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.inner-block:before {
  bottom: 0;
  left: 0;
}
.inner-block:after {
  bottom: 0;
  right: 0;
}

.slider-top-right {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-top-right:before {
  top: 0;
  left: 0;
}
.slider-top-right:after {
  top: 0;
  right: 0;
}

.project-brand
{
    font-family: 'Oxygen-Light';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    width: 137px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: RGBA(0,0,0,0.4);
    z-index: 1;
}

.project-higlight-wrap
{
    display:flex;
}

.project-slider-wrap,.project-higlight-desc
{
    width:50%;
    height:100vh;
    display:flex;
    flex-flow:column;
    justify-content:center;
}
.project-higlight-desc
{
    padding:35px;
}

#project-higlight .owl-dots
{
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    background: RGBA(0,0,0,0.3);
    display: inline-block;
    max-width: 180px;
    margin: 0 auto;
    padding: 4px;
    border-radius: 20px;
}

#project-higlight .owl-dots .owl-dot.active span
{
    background-color:#b88f45;
}

.project-higlight-head
{
    font-family: 'Abril Fatface';
    font-size:70px;
    position:relative;
    text-transform:uppercase;
}
.project-higlight-head:after
{
    content:'';
    position:absolute;
    right:-35px;
    height: 1px;
    background-color: #b88f45;
    top: 50%;
    width: 50%;
}
.project-slider-wrap
{
    position:relative;
}

.project-slider-wrap:after
{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/1.jpg);
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.project-higlight-meta
{
    font-family:'Oxygen-Light';
    font-size:16px;
}

.project-higlight-meta p:first-child
{
    margin-bottom:20px;
}

.project-slide-count 
{
    color: #b88f45;
    font-family: 'Oxygen-Light';
    position: absolute;
    bottom: 9%;
}
.project-slide-count .slider-counter-high-light
{    
    font-size:80px;
}
.project-slide-count .slide-length-high-light
{
    font-size:25px;
}


.project-amenities
{
    background-image: url(../images/background/bg-2.png);    
    background-repeat: no-repeat;
    background-size: cover;
}
.project-amenities-wrapper
{
    display: flex;
}

.amenities-desc,.amenities-gallery
{
    width:50%; 
}

.amenities-gallery img{
    width:100%;
}

.project-amenities .project-higlight-head:after
{
    display:none;
}

.amenities-desc-meta
{
    font-family: 'Oxygen-Light';
    font-size:22px;
}

.amenities-desc
{
    padding:15px;
}
.aminities-ico-wrapper 
{
    display: flex;
    flex-flow: row wrap;
    margin: 20px 0px;
    column-gap: 53px;
}
.aminities-ico-wrapper a
 {
    margin-bottom: 20px;
    text-align: center;
    padding: 7px;
    border:1px solid transparent;
}

.aminities-ico-wrapper a:hover
{
    background: #fff;
    border:1px solid #b88f45
}
.amenities-img-wrap
{
    position:relative;
    z-index:3;
    transition:all 0.5s;
    cursor:pointer;
}

.amenities-img-wrap:hover img
{
    transition:all 0.5s;
   transform:translateX(80px)
}
.amenities-img-wrap-text 
{
    font-family:'Oxygen-Light';
    position: absolute;
    font-size: 57px;
    text-transform: uppercase;
    color: #dbdbdb;
    top: 42%;
    right: -37%;
    transform: rotate(-90deg);
    z-index: -1;
}
.amenities-caps
{
    font-size: 25px;
    text-transform: uppercase;
    margin: 12px 0px;
    text-align: center;
    color: #333;
}
.gallery-meta
{
    font-family:'Oxygen-Light';
    font-size:22px;
    text-align: center;
}

.project-gallery-slider-wrap
{
    padding:30px 0px;
}
.project-gallery-slider-wrap .item
{
    cursor:pointer;
    position: relative;
    transition: transform 4s ease-in;
    overflow: hidden;
    border: 4px solid #6a6969;
}

.project-gallery-slider-wrap .item img{

    transform: scale(1.2);
}

.project-gallery-slider-wrap .item:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    content: "";
    transform:translateY(-100%);
    font-size: 25px;
    color:#fff;
   display: block;
    background-color: rgba(188, 143, 143, 0.137);
    z-index: 1;
    display:flex;
    justify-content: center;
    align-items: center;
   font-family: sans-serif;
    transition: transform .4s ease-in;
    border:4px solid white;
    justify-content: center;
    box-sizing: border-box;
}

.project-gallery-slider-wrap .item:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    content: "";
    transform:translateY(100%);
    font-size: 25px;
    color:#fff;
   display: block;
    background-color: rgba(188, 143, 143, 0.137);
    z-index: 1;
    display:flex;
    justify-content: center;
    align-items: center;
   font-family: sans-serif;
    transition: transform .4s ease-in;
    border:4px solid white;
    justify-content: center;
    box-sizing: border-box;
}
 .project-gallery-slider-wrap .item:hover::before
 {
     transform: translateY(0%);  
}
.project-gallery-slider-wrap .item:hover::after
{
    transform: translateY(0%);     
}

.project-location-meta
{
 font-family: 'Oxygen-Light';
 text-align:center;
}
.project-location-meta-head
{
    font-size:32px;
    margin-bottom:15px;
}

.project-location-meta-desc
{
    font-size:18px;
    margin-bottom:20px;
}
.project-location-distance-wrapper
{
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: center;
    font-family: 'Oxygen-Light';
    margin-bottom:50px;
}

.distnace-km
{
    font-size:72px;
    color:#bfbebe ;
}

.distance-unit
{   
    font-size: 18px;
    margin-top: -15px;
    margin-bottom: 15px;
}
.nearest-facilities
{
    width:60px;
    cursor:pointer;
   /* overflow:hidden;*/
    transition:all 0.5s;
}
.nearest-facilities img
{
    width:100%;
    transition: all 0.5s;
}
.nearest-facilities img:hover
{
    transform: translateY(-10px);
}

.iframe-wrapper iframe
{
    border:0px;
    width:100%;
    height:500px;
}

.about-project-gallery
{
    position:relative;
}

.about-project-gallery:after
{
     content: "";
    position: absolute;
    top: 0;
    height: 65.1%;
    width: 50%;
    background-image: url(../images/1.jpg);
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index:-1;
}

.gallery-section-header:after
{
    right:0;
    left:auto;
}

.footer
{
    background-color:#000;
    color:#fff;
    padding:10px 0px;
}
.footer-wrap
{
    justify-content:space-between;
    align-items:center;
}
.footer a, .footer a:hover, .footer a:active, footer a:focus {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
    text-transform: uppercase;
}
.social-icon ion-icon
{
    font-size:30px;
}
.logo {
    background: #efefef;
    padding: 20px 30px;
    margin: -10px 0px;
}

.fancybox-nav span {
    visibility: visible !important;
}

#project-slider.owl-carousel .owl-nav .owl-prev
  {
     background: url(../images/arrow-prev.png) no-repeat;
    left:0;
    width: 14px;
    height: 27px;
    position: absolute;
    font-size: 0px;
  }

   #project-slider.owl-carousel .owl-nav .owl-next
  {
     background: url(../images/arrow-next.png) no-repeat;
    right:0;
    width: 14px;
    height: 27px;
    position: absolute;
    font-size: 0px;
  }

  #project-slider .owl-nav
   {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    font-size: 0px;
}

.address{
    padding-top:30px;
}
.address p{
    font-size:18px;
}
@media only screen and ( max-width : 1024px ){

.menu-btn-wrap
{
    width:28%;
}

.btn-nav{
    min-width:150px;
    font-size:15px;
    text-align:center;
}

.main-head
{  
    font-size: 70px;
    line-height: 70px;
}

.link-btn
{
    font-size:20px;
}

.slider-counter
{
    font-size:50px;
}

.common-section, .about-projects
{
    padding:30px 0px;
}
.section-header:after
{
    width:220px;
}
.section-header
{
    font-size:50px;
}
.project-higlight-head
{
    font-size:50px;
}
.project-slide-meta 
{
    font-size:18px;
}
.project-slide-count
{
    bottom:10%;    
}
.project-higlight-meta
{
    font-size:20px;
}
.amenities-desc-meta
{
    margin: 20px 0px;
}
.amenities-img-wrap-text
{
    font-size:39px;
    right:-35%;
}
}

@media only screen and (max-width:992px)
{
    .project-higlight-wrap{

        flex-flow: column;
    }

    .project-slider-wrap, .project-higlight-desc
    {
        width: 100%;
        height:auto;
    }
    .project-slide-count
    {
        position:static;
    }

    .project-amenities-wrapper
    {
        flex-flow: column;
    }

    .amenities-desc, .amenities-gallery
    {
        width:100%;
    }
    .amenities-img-wrap-text
    {
        display:none;
    }
    .project-location-distance-wrapper
    {
        gap:50px;
    }

    .footer-link
    {       
        width: 40%;
        flex-flow: row wrap;
    }
    .social-icon
    {
        width:30%;
    }
    .logo
    {
        width:30%;
    }

    .footer-wrap
    {
        flex-flow:row wrap;
    }

    .footer a, .footer a:hover, .footer a:active, footer a:focus
    {
        margin-bottom:5px;
    }
    .about-project:after
    {
        width:100%;
    }

    .menu-btn-wrap {
    width: 32%;
    }

    .common-section, .about-projects
    {
     padding:30px 15px;
    }
    .section-header:after,.project-higlight-head:after
    {
        display:none;
    }
    .nav-logo 
    {
        width: 25%;
    }

    .head-desc
    {
        text-align: center;
    }
    .project-brand 
    {
        width: 113px;
        height: 87px;
        font-size:18px;

    }
    .project-slide-main 
    {
        font-size: 25px;
       margin-bottom: 15px;
    }
    .section-header
    {
        margin-bottom:30px;
    }
    #project-slider .owl-nav
    {
        top:25%;
    }

    #project-slider.owl-carousel .owl-nav .owl-next 
    {
    
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 0px;
        right: -50px;
    }

    #project-slider.owl-carousel .owl-nav .owl-prev 
    {
        background: url(../images/arrow-prev.png) no-repeat;
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 0px;
        left: -37px;
    }

     #project-gallery-higlight .owl-nav
    {
        top:25%;
         position:absolute;
        transform: translateY(-50%);
        width:100%;
    }

    #project-gallery-higlight.owl-carousel .owl-nav .owl-next 
    {
    
        background: url(../images/arrow-next.png) no-repeat;
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 0px;
        right: -50px;
    }

    #project-gallery-higlight.owl-carousel .owl-nav .owl-prev 
    {
        background: url(../images/arrow-prev.png) no-repeat;
        width: 30px;
        height: 30px;
        position: absolute;
        font-size: 0px;
        left: -37px;
    }
}

@media only screen and (max-width: 767px)
{
    .first-head
    {
        font-size:30px;
    }

    .main-head
    {
        font-size:50px;
        line-height:50px;
    }

    .head-desc
    {
        margin:15px 0px;
        text-align:center;
    }

    .section-header,.project-higlight-head
     {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .section-header:after,.project-higlight-head:after
    {
        display:none;
    }

    .about-project-gallery:after
    {
        height: 100%;
        width: 100%;
    }
    .project-location-distance-wrapper 
    {
  
        gap: 10%;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-flow: row wrap;
    }
    .project-location-distance-cell
    {
        width:20%;
    }
    .footer-wrap
    {
        flex-flow:column;
    }
    .footer-link
    {
        width:100%;
        flex-flow: column;
        text-align:center;
    }
    .social-icon
    {
        width:100%;
        margin:15px 0px;
        text-align:center;
        justify-content:center;
    }
    .logo
    {
        width:100%;
    }

    .logo a img
    {
        width:60%;
        margin:0 auto;
        display:block;
    }

    .footer a, .footer a:hover, .footer a:active, footer a:focus
    {
        margin-bottom:7px;
    }

    .menu-btn-wrap
    {
        width:53%;
    }

    .nav-logo 
    {
        width: 36%;
    }
    .navigation__icon::after
    {
        bottom: -8px;
    }
    .navigation__icon::before{
        top: -8px;
    }
    .btn-nav
    {
       min-width:auto;
    }

    .navigation__link:link, .navigation__link:visited
    {
        font-size:1.8rem;
    }

    .navigation__button:hover .navigation__icon::before{
        top: -10px;
    }
    .navigation__button:hover .navigation__icon::after
    {
        bottom:-10px;
    }

    .aminities-ico-wrapper
     {
        justify-content: space-between;
        column-gap: 10%;
    }
    .aminities-ico-wrapper a
    {
        width:20%;
    }
    #project-slider.owl-carousel .owl-nav .owl-next
    {
        right: -46px;
    }

    #project-slider.owl-carousel .owl-nav .owl-prev{
        left:-32px;
    }

    #project-gallery-higlight.owl-carousel .owl-nav .owl-next
    {
        right: -46px;
    }

     #project-gallery-higlight.owl-carousel .owl-nav .owl-prev{
        left:-32px;
    }

    .slider-counter
    {
        bottom:7%;
    }
    .scroll-btn
    {
        bottom:5%;
    }
    #project-gallery-higlight .owl-nav
    {
        top: 42%;
    }
}