@import url("responsive.css");
@import url("../font/font.css");
@import url("margins.css");
@import url("reset.css");
@import url("assets.css");

/*------------------------ 1 Body and Core Css ------------------------*/   

#preloader svg {
		margin-top:45vh !important;
}
body{
  font-family: 'Poppins', sans-serif;
}

p{
  font-size: 18px;
  line-height: 35px;
}

.fadeffect{
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.fadeffect.show{
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;  
    -webkit-transition: all ease 0.3s;   
    -moz-transition: all ease 0.3s;    
}

.dark-bg p{
  color: #fff;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    display: table;
    height: 100%;
    background: #000;
}

#preloader svg{
    background: none;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    margin: 0 auto;
}

header{
    position: fixed;
    width: 100%;
    padding: 30px;
    z-index: 100;
}

section{
  padding: 10vh 0;
}

.midnightHeader.dark .menu .nav-icon span{
    background: #fff;
}

.midnightHeader.dark .logo{
    background: url(../logo-b.svg) left top no-repeat;
    background-size: 100%;
    width: 50px;
    height: 50px;
}

.midnightHeader.white .logo{
    background: url(../logo.svg) left top no-repeat;
    background-size: 100%;
    width: 50px;
    height: 50px;
}

.midnightInner{
    padding: 45px;
}

.home.white-bg{
    background: url(../img/home-bg.png) center center no-repeat;
    background-size: 60%;
}

.white-bg{
    background: url(../img/world-w.png) center center no-repeat;
    background-size: 60%;
}

section.contact{
    padding-bottom:0;
}

.dark-bg{
    background: url(../img/world-b.png) center center no-repeat #000;
    background-size: 60%;
}


.uptotop{
    z-index: 90;
    position: fixed;
    right: 40px;
    bottom: 20px;
    width: 70px;
    right: 0 !important;
    left: auto !important;
    opacity: 0;
    transform: translateX(100%);
    transition: all ease 0.3s;
}

@media screen and (max-width: 580px) {

  .uptotop{
      right: 20px !important;
      bottom: 20px !important;
  }

}

.uptotop .arrow{
    transform: rotate(180deg);
}

.uptotop.show{
    opacity: 1;
    transform: translateX(0%);
    transition: all ease 0.3s;
}

.uptotop span{
    font-size: 13px;
    transform: translateX(-26px) translateY(-71px) rotate(-90deg);
    opacity: 0;
    width: 70px;
    display: block;
}

.uptotop:hover span{
    transform: translateX(-26px) translateY(-41px) rotate(-90deg);
    transition: all ease 0.3s;
    opacity: 1;
}

.uptotop .midnightHeader.white .arrow {
    background: url(../img/up.svg) left top no-repeat;
    background-size: 100%;
    width: 19px;
    height: 21px;
}


.uptotop .midnightHeader.dark .arrow {
    background: url(../img/upw.svg) left top no-repeat;
    background-size: 100%;
    width: 19px;
    height: 21px;
}

.uptotop .midnightHeader.dark span {
    color: #fff;
}

.uptotop .holder{
    margin-top: calc(100vh - 180px);
    width: 23px;
    cursor: pointer;
}

.uptotop .midnightInner {
    padding: 0px;
}

/* Nav Icon */

.nav-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000;
    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:hover span:nth-child(3){
    width: 100%;
}

.nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.nav-icon span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;    
  width: 60%;
  right: 0 !important;
}

/* Full Menu When Open */

.full-open .nav-icon span {
    width: 85%; 
}

.full-open:hover span:nth-child(3){
    width: 85%;
}

.full-open .nav-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.full-open .nav-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.full-open .nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 16px;
  left: 8px;
}

.nav-icon {
    float: right;
    width: 35px;
    height: 18px;
    position: relative;
    -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;
}

/* Loader */
.loader {
  height: 32px;
  width: 32px;
  -webkit-animation: loader-1-1 4.8s linear infinite;
  animation: loader-1-1 4.8s linear infinite;
}

@-webkit-keyframes loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader-1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  clip: rect(0, 32px, 32px, 16px);
  -webkit-animation: loader-2 1.2s linear infinite;
  animation: loader-2 1.2s linear infinite;
}

@-webkit-keyframes loader-2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(220deg);
  }
}
@keyframes loader-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(220deg);
  }
}
.loader span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  clip: rect(0, 32px, 32px, 16px);
  border: 3px solid #111;
  border-radius: 50%;
  -webkit-animation: loader-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-3 1.2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-3 {
  0% {
    -webkit-transform: rotate(-140deg);
  }
  50% {
    -webkit-transform: rotate(-160deg);
  }
  100% {
    -webkit-transform: rotate(140deg);
  }
}
@keyframes loader-3 {
  0% {
    transform: rotate(-140deg);
  }
  50% {
    transform: rotate(-160deg);
  }
  100% {
    transform: rotate(140deg);
  }
}

#infscr-loading {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  bottom: 10px;
}

#infscr-loading img {
  display: none;
}

.site-btn{
    background: none;
    border: solid 2px #000;
    padding: 10px 41px;
    outline: 0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    min-width: 160px;
}

.site-btn:focus{
    outline: none;
    border: solid 2px #000;
}

.site-btn:hover{
    background: #000;
    color: #fff;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.dark-bg .site-btn{
    border: solid 2px #fff;
    color: #fff;
}

.dark-bg .site-btn:hover{
    background: #fff;
    color: #000;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

#full-menu {
    position: fixed;
    z-index: 999;
    padding: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    display: none;
    overflow: hidden;
    background: #000;
    opacity: 0;    
    width: 100%;
    height: 100%;
    cursor: url(../img/close-2.png), e-resize;
}

.menu-container {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.navmenu {
    list-style: none;
    margin: 0;
    clear: left;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
}
.navmenu > li {
    display: block;
    position: relative;
    margin: 0;
}
.navmenu > li > a {
  font-family: 'Gilroy-bold ☞';
    display: inline-block;
    font-size: 36px;
    line-height: 56px;
    font-weight: 600;
    color: #fff;
    transition: all 500ms ease;
    letter-spacing: 1px;
    width: 100%;
}
.navmenu > li > a:hover {
    opacity: .5;
    font-size: 40px;
    transition: all 500ms ease;
}


.menu-close {
    background: rgba(0, 0, 0, 0) url(../img/close.png) no-repeat 0px -20px;
    position: absolute;
    height: 20px;
    width: 20px;
    right: 40px;
    top: 40px;
    transition: none 1s ease 0s;
    z-index: 30;
    background-size: 100% !important;
}

.menu-close:hover{
   background: rgba(0, 0, 0, 0) url("../img/close.png") no-repeat 0px 0px;   
}


/*------------------------ 2 Home Section ------------------------*/   

.home{
    width: 100%;
    text-align: center;
    display: table;
    position: relative;
}

.home.bgimage{
    background: url(../img/home-image.jpg) center center no-repeat;
    background-size: cover;
}

.home.bgimage .icon-circle{
    border: 2px solid #fff;
}

.home.bgimage .down-icon .icon i {
    color: #fff;
}

.home.bgimage .down-icon:hover > .icon-circle {
    border: 2px solid #fff;
}

.outter {
    display: table;
    width: 100%;
    height: 100%;
}

.inner{
    display: table-cell;
    vertical-align: middle;
}

.home .text{
    font-family: Gilroy-Heavy ☞;
    font-size: 10vw; 
    letter-spacing: -5px;
    display: none;
}

.show{
    display: inline !important;
}

.home.dark-bg .text{
    color: #fff;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(60px);
    }
}

svg #wheel {
    animation: scroll ease 2s infinite;
}

.down-icon {
    margin-top: 60px;
    width: 100px;
    height: 100px;
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto 90px;
    z-index: 100;
    cursor: pointer;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 32px;
    box-sizing: border-box;
    border: 2px solid #000;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -25px;
    margin-left: -25px;
    cursor: pointer;
    z-index: 4;
}

.icon {
    width: 14px;
    height: 22px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    pointer-events: initial;
}

.down-icon.white .icon-circle{
    border: 2px solid #fff;
}

.down-icon.white:hover > .icon-circle{
    border: 2px solid rgba(255, 255, 255, 0.68);
}

.down-icon.white .icon i{
    color: #fff;
}

.down-icon:hover > .icon-circle{
    border: 2px solid #000;
}

.down-icon .icon i {
    color: #000;
}

.section-title{
    text-align: center;
    position: relative;
    font-weight: 600;
    height: 60px;
}

.section-title:after{
    content: '';
    width: 45px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.dark-bg .section-title{
    color: #fff;
}

.white-bg .section-title:after{
    background: #000;
}

.motto .text{
  font-size: 26px;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: -1px;
}

.dark-bg .motto .text{
  color: #fff;
}

.motto span{
    font-size: 13px;
    color: #ffff;
    opacity: .6;
}

.white-bg .motto span{
    color: #000;
}

.subtitle{
    font-size: 25px;
    font-weight: 600;
}

.dark-bg .subtitle{
    color: #fff;
}

.wwd .feature .title{
    font-size: 17px;
    font-weight: 600;
}

.wwd .feature i{
    font-size: 30px;
    margin-bottom: 36px;
}

.wwd .feature p{
    font-size: 14px;
    line-height: 22px;
    opacity: 0.5;
    margin-top: 16px;
}

.dark-bg .wwd .feature {
    color: #fff;
	float: left;
}




/*------------------------ 3 Portfolio Section ------------------------*/  


.portfolio-item .image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;  
}

.above{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.filter-icon{
    z-index: 999;
    position: fixed;
    left: 50px;
    bottom: 40px;
    cursor: pointer;
    transform: translateX(-100%);
    transition: all ease 0.3s;
}

.filter-icon:hover svg{
    overflow: visible;
}

.filter-icon:hover svg path{
    transition: all ease 0.3s;
}

.filter-icon:hover svg path:nth-child(1) {
    -moz-transform: translate3d(-1px, -1px, 0);
    -webkit-transform: translate3d(-1px, -1px, 0);
    transform: translate3d(-1px, -1px, 0);
}

.filter-icon:hover svg path:nth-child(2) {
    -moz-transform: translate3d(1px, -1px, 0);
    -webkit-transform: translate3d(1px, -1px, 0);
    transform: translate3d(1px, -1px, 0);
}

.filter-icon:hover svg path:nth-child(3) {
    -moz-transform: translate3d(-1px, 1px, 0);
    -webkit-transform: translate3d(-1px, 1px, 0);
    transform: translate3d(-1px, 1px, 0);
}

.filter-icon:hover svg path:nth-child(4) {
    -moz-transform: translate3d(1px, 1px, 0);
    -webkit-transform: translate3d(1px, 1px, 0);
    transform: translate3d(1px, 1px, 0);
}

.filter-icon.come{
    transform: translateX(0%);
    transition: all ease 0.3s;
}

.filter-icon:hover .categories{
    opacity: 1;
    transition: all ease 0.3s;
    transform: translateX(-28px) translateY(-45px) rotate(-90deg);
}

.filter-icon .categories{
    display: block;
    transition: all ease 0.3s;
    transform: translateX(-28px) translateY(-60px) rotate(-90deg);
    font-size: 13px;
    opacity: 0;
}

.portfolio_filter{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    cursor: url(../img/close-2.png), e-resize;
    z-index: 101;
    display: table;
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.3s;
}

.portfolio_filter.show{
    visibility: visible;
    opacity: 1;
    display: table !important;
    transition: all ease 0.3s;
}

.portfolio_filter ul{
    display: table-cell;
    vertical-align: middle;
}

.portfolio_filter ul li a{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;    
    line-height: 53px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.portfolio_filter ul li a:hover{
    font-size: 35px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.portfolio_filter ul li a.select-cat{
    opacity: .5;
}

.portfolio-item img{
    width: 100%;
}

.portfolio-item{    
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
    position: relative;
	border-radius: 3px;
	border: 2px solid #eee;
	overflow: hidden;
}

.portfolio-item.zom:hover:before{
    display: none !important;  
}

.portfolio-item.zom figcaption{
    opacity: 0;
    transition: all ease 0.3ss;
}

.portfolio-item figcaption{
    position: absolute;
    bottom: 20px;
    left: 0;
	width:100%;
}

.portfolio-item:hover:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.55);
    position: absolute;
    transition: all ease 0.3s;
}


.portfolio-item:hover figcaption{
    transform: translateZ(40px) !important;
}

@media screen and (max-width: 768px){
  .portfolio-item:hover figcaption {
      transform: translateZ(0px) !important;
  }
}

.portfolio-item figcaption .title{
    font-size: 18px;
}

.portfolio-item figcaption span{
    font-size: 12px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1px;
}

.portfolio-item figcaption{
    color: #fff;
	background: rgba(0,0,0,0.9);
	padding: 7px;
}

.page-container {
    visibility: hidden;
    height:100vh;
    width: 100%;
    left:0px;
    position: fixed;
    top:0;
    z-index:100;
    -webkit-transform: scale(1.00);
    transform: scale(1.00); 
}

.page {
    cursor: pointer;
    position: absolute;
    height:100vh;
    width:100%;
    top:0;
    left:0px;
    position: fixed;
    background-position:center center;
    background-size:cover;
    background-repeat:no-repeat;
}

.grid-item:hover{
    transform: scale(1.1);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.grid-item{
    margin-bottom: 30px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
	float:left;
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero.load{
    background: #000;
}

.hero.load .hero-image{
  opacity: .7;
  transition: all ease 0.5s;
}

.hero.load .hero-content .title{
  transform: translateY(0px);
  opacity: 1;
  transition: all ease 0.5s 0.4s;
}

.hero.load .hero-content .category{
  transform: translateY(0px);
  opacity: 1;
  transition: all ease 0.5s 0.6s;
}

.hero .hero-content .category{  
    transform: translateY(30px);
    opacity: 0;
    display: block;
}

.hero .hero-content .title{  
    transform: translateY(30px);
    opacity: 0;
}

.hero.load .down-icon{
    opacity: 1;
  transition: all ease 0.5s 0.9s;
}

.hero .down-icon{
    opacity: 0;
}

header{
    opacity: 0;
}

header.load{
  opacity: 1;
  transition: all ease 0.5s;
}


.hero-image{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;    
}


.hero-content{
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100vh;
    text-align: center;
    left: 0;
    top: 0;
    display: table;
}

.hero-content .title{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.hero-content .category{
    color: #fff;
    font-weight: 500;
}

section.dark{
    background: #000;
}


section.dark .project-detail .title, section.dark .project-detail .subtitle, section.dark .project-detail p, section.dark .next-link .nav-title, section.dark .next-link .next-title {
    color: #fff;
}

.project-detail .title{
    font-size: 40px;
    font-weight: 700;
}

.project-detail .subtitle{
    font-size: 30px;
    font-weight: 700;
}

.lightbox-gallery .image img{
    width: 100%;
}

.lightbox{
    margin-bottom: 60px;
    width: 100%;
}

.next-link {
    text-decoration: none;
    overflow: hidden;
    height: 54px;
    display: inline-block;
}

.next-link .nav-title {
    color: #000;
    font-size: 33px;
    font-weight: 600;
}

.next-link .next-title {
    color: #000;
    font-size: 30px;
    font-weight: 600;
}

.next-link .next-title,
.next-link .nav-title {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
}

.next-link:hover .next-title,
.next-link:hover .nav-title {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
}

.lightbox {
  overflow: hidden;
  display: inline-block;
}

.lightbox img{
  transition:  all ease 0.3s;
  -webkit-transition:  all ease 0.3s;
  -moz-transition:  all ease 0.3s;
}

.lightbox:hover img{
  transform: scale(1.2);
  transition:  all ease 0.6s;
  -webkit-transition:  all ease 0.6s;
  -moz-transition:  all ease 0.6s;
}


.lightbox-gallery .col, .lightbox-gallery .col-1, .lightbox-gallery .col-10, .lightbox-gallery .col-11, .lightbox-gallery .col-12, .lightbox-gallery .col-2, .lightbox-gallery .col-3, .lightbox-gallery .col-4, .lightbox-gallery .col-5, .lightbox-gallery .col-6, .lightbox-gallery .col-7, .lightbox-gallery .col-8, .lightbox-gallery .col-9, .lightbox-gallery .col-lg, .lightbox-gallery .col-lg-1, .lightbox-gallery .col-lg-10, .lightbox-gallery .col-lg-11, .lightbox-gallery .col-lg-12, .lightbox-gallery .col-lg-2, .lightbox-gallery .col-lg-3, .lightbox-gallery .col-lg-4, .lightbox-gallery .col-lg-5, .lightbox-gallery .col-lg-6, .lightbox-gallery .col-lg-7, .lightbox-gallery .col-lg-8, .lightbox-gallery .col-lg-9, .lightbox-gallery .col-md, .lightbox-gallery .col-md-1, .lightbox-gallery .col-md-10, .lightbox-gallery .col-md-11, .lightbox-gallery .col-md-12, .lightbox-gallery .col-md-2, .lightbox-gallery .col-md-3, .lightbox-gallery .col-md-4, .lightbox-gallery .col-md-5, .lightbox-gallery .col-md-6, .lightbox-gallery .col-md-7, .lightbox-gallery .col-md-8, .lightbox-gallery .col-md-9, .lightbox-gallery .col-sm, .lightbox-gallery .col-sm-1, .lightbox-gallery .col-sm-10, .lightbox-gallery .col-sm-11, .lightbox-gallery .col-sm-12, .lightbox-gallery .col-sm-2, .lightbox-gallery .col-sm-3, .lightbox-gallery .col-sm-4, .lightbox-gallery .col-sm-5, .lightbox-gallery .col-sm-6, .lightbox-gallery .col-sm-7, .lightbox-gallery .col-sm-8, .lightbox-gallery .col-sm-9, .lightbox-gallery .col-xl, .lightbox-gallery .col-xl-1, .lightbox-gallery .col-xl-10, .lightbox-gallery .col-xl-11, .lightbox-gallery .col-xl-12, .lightbox-gallery .col-xl-2, .lightbox-gallery .col-xl-3, .lightbox-gallery .col-xl-4, .lightbox-gallery .col-xl-5, .lightbox-gallery .col-xl-6, .lightbox-gallery .col-xl-7, .lightbox-gallery .col-xl-8, .lightbox-gallery .col-xl-9 {
    padding-right: 30px;
    padding-left: 30px;
}

.portfolio-item.video{
    position: relative;
    width: 100%;
    overflow: hidden;
}


.portfolio-item.video figcaption{
    z-index: 10;
}

.video-wrapper {
  top: 0; right: 0; bottom: 0; left: 0;
  overflow: hidden;
}

.video-wrapper video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 1. No object-fit support: */
@media (min-aspect-ratio: 16/9) {
  .video-wrapper > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-wrapper > video { width: 300%; left: -100%; }
}
/* 2. If supporting object-fit, overriding (1): */
@supports (object-fit: cover) {
  .video-wrapper > video {
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
}

.owl-theme .owl-dots .owl-dot{
    outline: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 45px;
}
/*------------------------ Client Section ------------------------*/  

.client img{
    width: 100%;
}

.client{
    opacity: .5;
    cursor: pointer;
	float:left;
}

.client:hover{
    opacity: 1;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.white-bg .client{
    opacity: 1;
}

.testimonials .item p{
    font-size: 15px;
    line-height: 25px;
    opacity: .7;
}

.testimonials .item span{
    color: #fff;
    margin-top:30px;
}

.testimonials .owl-nav i{
    color: #fff;
    outline: 0;
    padding: 15px 30px;
    margin-top: 20px;
}

.white-bg .testimonials .owl-nav i, .white-bg .testimonials .item span{
    color: #000;
}

.testimonials .owl-nav button:focus{
    outline: 0;
}

.testimonials .owl-nav button:hover{
    background: none !important;
    opacity: .5;
    transition: all ease 0.3s;
}


/*------------------------ Contact Section ------------------------*/  

.contact .contact-info p{
    font-size: 14px;
    line-height: 28px;
}

.social a{
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin-right: 7px;
}

.social a:hover{
    font-size: 14px;
    transition: all ease 0.3s;
}


.form-inp {
    width: 100%;
    height: 45px;
    color: #000;
    border: solid 2px #000;
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 30px;
    background: #fff;
}

.contact-form textarea {
    width: 100%;
    color: #000;
    border: solid 2px #000;
    font-size: 13px;
    padding: 20px 0 0 10px;
    height: 160px;
    margin-bottom: 30px;
	background:#fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}



.form-inp::placeholder, textarea::placeholder{
    color: #000;
  font-family: 'Poppins', sans-serif;
}


.form-title {
    font-size: 21px;
    line-height: 38px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.contact .map iframe{
    width: 100%;
}



/*------------------------ Footer ------------------------*/  

footer{
    background: #171717;
    color: #fff;
    padding: 60px 20px;
}


footer .social{
    margin-left:auto;
    margin-right:auto;
}

footer .social a{
    color: #fff;
    margin-right: 45px;
    font-size: 15px;
}

footer p{
    font-size: 14px;
    line-height: 15px;
}


footer a{
    color: #fff;
    opacity: 1;
}

footer a:hover{
    color: #fff;
    opacity: .5;
    transition: all ease 0.3s;
}

footer .copyright{
    color: #ababab;
}

footer .social-icons{
    border-bottom: 1px solid rgba(119, 119, 119, 0.57);
}




/* Responsive */  

@media screen and (min-width: 1280px) {

    .container {
        width: 1300px;
    }

      
  #portfolio{
      min-height: 1200px;
  }


}

/*------------------------ Responsive ------------------------*/ 


@media screen and (max-width: 768px) {

    .hero-content .title {
        font-size: 40px !important;
    }

    .project-detail .title {
        font-size: 34px !important; 
    }

    .project-detail .title{ 
        margin-top: 0px;
    }

    p {
        font-size: 15px;
        line-height: 30px;
    }

    .contact-form{
        margin-top: 30px;
    }

    .navmenu > li > a {
        font-size: 30px;
        line-height: 40px;
    }

    .portfolio-item figcaption {
        bottom: 11px;
        left: 0px;
    }

    .portfolio-item figcaption .title {
        font-size: 19px;
    }

    .portfolio-item.video .video-wrapper{
        visibility: hidden;
    }

    .portfolio-item.video .image{
        visibility: visible !important;
    }

    .hero .video-wrapper{
        visibility: hidden;
    }

    .hero .mobile-image{
        visibility: visible !important;
    }

    .grid-item:hover {
        transform: scale(1.0) !important;
    }

    .portfolio-item:hover{
        box-shadow: none !important;
    }

    .portfolio-item:hover:before {
        background: none !important;
    }

    .portfolio-item:hover figcaption {
        transform: translateZ(0px) !important;
    }

    header .midnightInner{
        padding: 25px;
    }

    .navmenu > li > a:hover {
        opacity: 1 !important;
        transition: none !important;
    }
.navmenu > li > a {
    position: relative;
    z-index: 10000;    
    width: 100% !important;
}

.filter-icon .categories{
    display: none !important;
}


.filter-icon {
    background: #fff;
    padding: 7px;
    height: 33px;    
    bottom: 20px;
    left: 25px;
    transform: translateX(-200%);
}

.uptotop{
    display: none !important;
}

footer p {
    line-height: 23px;
}

}




@media screen and (max-width: 580px) {

.home.white-bg .text{
    font-size: 50px !important;
    letter-spacing: -1px !important;
}

.icon-circle {
    width: 30px !important;
    height: 30px !important;    
    margin-top: -18px !important;
    margin-left: -15px !important;
}
.down-icon{
    width: 30px !important;
    height: 30px !important;
    margin: 0 auto 60px !important;

}

.down-icon .icon{
    font-size: 12px !important;
}

.section-title.bottom_90, .motto.bottom_60{
    margin-bottom: 30px;
}

.section-title {
    font-size: 26px;
}

.motto .text {
    font-size: 22px;
    line-height: 35px;
}

br {
    display: none;
}

.subtitle.top_120.bottom_90{
  margin: 80px 0 60px;
}

.feature{
  margin-bottom: 30px;
  text-align:center;
}

.row.top_120.testimonials{
      margin: 15px auto;
}

.contact-info, .contact-form{
    text-align: center !important;
}

.contact .contact-info p {
    line-height: 20px !important;
}

.navmenu > li > a {
    font-size: 26px !important;
    letter-spacing: 0px !important;
}

footer .social a {
    margin-right: 20px;
    font-size: 12px;
}


.uptotop{
    width: 20px !important;
}

.filter-icon {
    left: 30px !important;
}

.hero-content .title {
font-size: 30px;
}


}

.flag{
max-width: 30px;
display: block;
margin: 10px auto 0;
}

.pull-left{
	float:left;
}


#map {
    width: 100%;
    height: 500px;
    float: left;
    margin-top: 100px;
}


.morecontent span {
    display: none;
}
.morelink {
    display: block;
}

.section_brief {
    max-width: 80%;
    margin: 40px auto 90px;
    line-height: 1.2;
	text-align: center;
}
#disclaimer_text p {
    font-size: 8px;
    line-height: 9px;
}

.counter { padding: 20px 0; border-radius: 5px; float:left}
.numscroller {
    font-size: 50px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}
.count-text { font-size: 13px; font-weight: normal;  margin-top: 10px; margin-bottom: 0; text-align: center; }
.fa-2x { margin: 0 auto; float: none; display: table; color: #4ad1e5; }

#policies {
    padding-top: 150px;
}
.policies{
	text-align:left;
}
.policies h5{
	margin-top:40px;
}
.policies ul{
	margin-left: 20px;
}
.policies p, .policies li {
    font-size: 14px;
    line-height: 18px;
}
.policies .section-title {
    text-align: left;
	margin-bottom:10px;
}
.policies .section-title::after {
	display:none;
}