

body {
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
	color: #000;
    font-family: 'Montserrat', sans-serif;
}
h1 {
	font-size: 46px;
	line-height: 50px;
	font-weight: 600;
	margin: 0;
    padding: 0;
}
h2, .project-detail h1 {
	font-size: 30px;
    line-height: 40px;
	margin: 0;
    font-weight: 600;
    padding: 0;
}
h3 {
	font-size: 28px;
	padding: 0px;
	line-height: 40px;
	font-weight: 300;
}
h4 {
	font-size: 18px;
	font-weight: 500;
	color: #665687;
	padding: 0px;
	margin: 0;
}

p {
	font-size: 24px;
    line-height: 36px;
	color: #fff;
	font-weight: 300;
	padding: 0px;
	margin: 0px;
}
a{
    opacity: 1;
    text-decoration: none;
    transition: all .2s ease;
}
a:hover, a:focus{
    color: inherit;
    opacity: .5;
    text-decoration: none;
    transition: all .2s ease;
}
ul, ol{
    list-style-type: none;
}
.white-bg{
    background: #fff;
}
.relative{
    position: relative;
}
.inner-page:after, .overlay-div:after{
    position: absolute;
    top: 0;
    left: 0;
     background: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
}
.inner-page:after{
     background: rgba(0, 0, 0, .4);
}
.img100{
  width: 100%;
}
.mt-80{margin-top: 80px !important;}
/*---------------------------------------
----------------------------------------
Loader
-------------------------------------------
--------------------------------------------*/
.loader-holder {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    z-index: 999999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/*---------------------------------------
----------------------------------------
Slider
-------------------------------------------
--------------------------------------------*/
#slider-section, .scroll-div {
    background-color: #ED3237;
    transition: all .5s ease;
}
 .carousel-inner{
    transition: all .5s ease;
}
.zinniaCarousel {
	overflow: hidden;
    position: relative;
    height: 100vh;
    transition: all .5s ease;
}
.zinniaCarousel:after{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
     left: 0;
    top: 0;
    content: '';
    background:rgba(0, 0, 0, .44);
}
.zinniaCarousel .single-carousel {
	-webkit-background-size: cover !important;
	background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
}

.zinniaCarousel .single-carousel {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


.carousel-fade .carousel-inner .item {
	-webkit-transition-property: opacity;
	transition-property: opacity;
}
.carousel-fade .carousel-inner .item, .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
	opacity: 0;
}
.carousel-fade .carousel-inner .active, .carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
.carousel-fade .carousel-inner .next, .carousel-fade .carousel-inner .prev, .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slider-logo{
    width: 406px;
    position: absolute;
    top: calc(50% - 71px);
    left: calc(50% - 203px);
    z-index: 3;
    transform: translateY(-50%);
}
.project-title{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}
.hamburger {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #fff;
    background-color: transparent!important;
    border-radius: 0;
    cursor: pointer;
    display: block;
    height: 15px;
    margin: 0;
    outline: 0;
    padding: 0;
    border: 0;
    pointer-events: all;
    position: fixed;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    width: 35px;
    z-index: 801;
    top: 40px;
    right: 40px;
}
.hamburger-box {
        width: 38px;
    height: 25px;
    display: inline-block;
    position: relative;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 38px;
    height: 2px;
     left: 0;
    top: 8px;
    background-color: #fff;
    border-radius: 1;
    position: absolute;
    -webkit-transition: transform .2s ease;
    transition: transform .2s ease;
}
.hamburger--squeeze .hamburger-inner {
    -webkit-transition-duration: .1s;
    transition-duration: .1s;
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}
.hamburger-inner:after, .hamburger-inner:before {
    content: "";
    display: block;
}
.hamburger-inner:before {
    top: -8.5px;
}
.hamburger-inner:after {
    bottom: -9.5px;
}
.hamburger--squeeze .hamburger-inner:before {
    -webkit-transition: top .1s ease .14s,opacity .1s ease;
    transition: top .1s ease .14s,opacity .1s ease;
}
.hamburger--squeeze .hamburger-inner:after {
    -webkit-transition: bottom .1s ease .14s,-webkit-transform .1s cubic-bezier(.55,.055,.675,.19);
    transition: bottom .1s ease .14s,-webkit-transform .1s cubic-bezier(.55,.055,.675,.19);
    transition: bottom .1s ease .14s,transform .1s cubic-bezier(.55,.055,.675,.19);
    transition: bottom .1s ease .14s,transform .1s cubic-bezier(.55,.055,.675,.19),-webkit-transform .1s cubic-bezier(.55,.055,.675,.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: .14s;
    transition-delay: .14s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
    -webkit-transition: top .1s ease,opacity .1s ease .14s;
    transition: top .1s ease,opacity .1s ease .14s;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom .1s ease,-webkit-transform .1s cubic-bezier(.215,.61,.355,1) .14s;
    transition: bottom .1s ease,-webkit-transform .1s cubic-bezier(.215,.61,.355,1) .14s;
    transition: bottom .1s ease,transform .1s cubic-bezier(.215,.61,.355,1) .14s;
    transition: bottom .1s ease,transform .1s cubic-bezier(.215,.61,.355,1) .14s,-webkit-transform .1s cubic-bezier(.215,.61,.355,1) .14s;
}

.menu-sec{
    background-color:#ED3237;
    position: fixed;
    width: 100%;
   display: none;
   height:100vh;
   z-index:5;
}

.navigation{
    position: relative;
    padding:0;
    height: 100%;
    width: 100%;
}
.navigation ul{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    transform: translate(-50%, -50%);
    list-style-type: none;
    width: 100%;
    max-width: 1000px;
}
@keyframes fadeIn { from { transform: translateY(0px);  opacity:0; } to { transform: translateY(-25px); opacity: 1; } }
.navigation ul li {
    transition: .2s all ease;
    animation:fadeIn ease-in 1;
    animation-fill-mode:forwards;
    animation-duration:.3s;
    opacity: 0;
    color: #fff;
    float: left;
}
.navigation ul li a{
    color: #fff;
    font-size: 59px;
    position: relative;
    line-height: 100px;
    padding-right: 62px;
    text-transform: uppercase;
 font-weight: 600;
    letter-spacing: 2px;
}
.navigation ul li:last-child a{
    padding-right: 0;
}
.navigation ul li:last-child a:after{
    display: none;
}
.navigation ul li a:after{
    content: '';
    position: absolute;
    right: 30px;
     top: -5px;
    background-color: #6ea9ce;
    height: 90px;
    width: 1px;
}
.navigation ul li a:hover, .navigation ul li a:focus{

    opacity: .5;
}
.navigation ul li:nth-child(1) {
    animation-delay: .1s;
}
.navigation ul li:nth-child(2) {
    animation-delay: .3s;
}

.navigation ul li:nth-child(3) {
     animation-delay: .5s;
}

.logo-holder{
    position: fixed;
    left: 50px;
    width: 150px;
    top: 30px;
    z-index: 99;
    display: none;
}

.show_logo, .show_logo2, .logo-holder.inner_page{
    display: block !important;
}
 .show_logo2{
    
     opacity: .3;
}
.slide-down{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.header-bg{
    height: 110px;
    position: fixed;
    background-color: #fff;
    z-index: 999;
    width: 100%;
}
.white-title h2{color: #fff; white-space: nowrap;}
#second-section, #fourth-section{
    height: 100vh;
    background-image: url(../images/home-sec-2-img.png);
    background-size: cover;
    background-position: center;

}
.hero__logo{
    -webkit-animation-name:fadeOutUpHeroLogo;
    animation-name:fadeOutUpHeroLogo;
    -webkit-animation-duration:.5s;
    animation-duration:.5s;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both
}
@-webkit-keyframes fadeOutUpHeroLogo{0%{opacity:1;-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}75%{opacity:.2;-webkit-transform:translateY(-15%) scale(1.02);transform:translateY(-15%) scale(1.02)}to{opacity:0;-webkit-transform:translateY(-15%) scale(1.03);transform:translateY(-15%) scale(1.03)}}@keyframes fadeOutUpHeroLogo{0%{opacity:1;-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}75%{opacity:.2;-webkit-transform:translateY(-15%) scale(1.02);transform:translateY(-15%) scale(1.02)}to{opacity:0;-webkit-transform:translateY(-15%) scale(1.03);transform:translateY(-15%) scale(1.03)}}@-webkit-keyframes fadeInDownHeroLogo{0%{opacity:0;-webkit-transform:translateY(-5%) scale(1.03);transform:translateY(-5%) scale(1.03)}to{opacity:1;-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}}@keyframes fadeInDownHeroLogo{0%{opacity:0;-webkit-transform:translateY(-5%) scale(1.03);transform:translateY(-5%) scale(1.03)}to{opacity:1;-webkit-transform:translate(0) scale(1);transform:translate(0) scale(1)}}



#third-section{
    height: 100vh;
}
.content-holder{
    max-width: 1005px;
    width: 100%;
    margin: auto;
    padding: 0px 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content-holder h2{
    font-size: 34px;
    color: #000000;
    font-weight: 300;
    line-height: 50px;
}
footer{
    background-color: #ED3237;
    color: #fff;
    padding: 80px 35px 65px;
    font-size: 18px;
}
footer p, footer a{
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}
footer p{
    margin-bottom: 15px;
}
footer .copy-right p{
    font-size: 12px;
    margin-bottom: 0px;
color:#ffffff;
}
footer .col-md-4{
    max-width: 295px;
}
.copy-right{
    margin-top: 65px;
}


.inner-page{
    min-height:100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
position: relative;
}
.inner-content{
    max-width: 950px;
    padding: 0 50px;
    margin: auto;
    width: 100%;
    z-index: 3;
     position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-content p{
    margin-bottom: 50px;
}
.inner-content p.link-to-page , .inner-content p.link-to-page a{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
    line-height: 30px;
}
#about-page{
    background-image: url(../images/about-bg.jpg);
}
#about-page.overlay-div:after {
    background: rgba(0, 0, 0, .53);
}
#contact-page{
    background-image: url(../images/contact-bg.jpg);
}
#contact-page.overlay-div:after {
    background: rgba(0, 0, 0, .59);
}
#contact-page h1{
    margin-bottom: 40px;
    color: #fff;
}
.form-holder{
    width: 615px;
}
.form-group{
       width: calc(50% - 8px);
     display: inline-grid;
    margin: 5px 3px;
}
label.error {
    color: #e68a7a;
    font-size: 12px;
}
.form-group.message-holder{
    width: calc(100% - 8px)
}
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group textarea{
    padding: 15px 25px;
    border: 0px;
    display: block;
    color: #111111;
    font-weight: 400;
     width: 100%;
    font-size: 18px;
    line-height: 25px;
}
.alert-success {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    border-color: transparent;
}
.alert-danger {
    color: #ff0500;
    background-color: rgba(0, 0, 0, 0.6);
    border-color: transparent;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #111111;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #111111;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #111111;
}
.form-group textarea{
    height: 220px;
}
.form-group input[type="submit"]{
    padding: 20px 58px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1em;
    width: 191px;
    color: #fff;
    border: 0px;
    text-transform: uppercase;
    outline: 0px;
    background-color: #ED3237;
    transition: all .2s ease;
}

.form-group input[type="submit"]:hover{
    transition: all .2s ease;
    background-color: #589fcb;
}

.homePproject_link{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.homePproject_link:hover{
    opacity: 1;
}
/*----------------------------------
----------------------------------
Project
------------------------------
--------------------------------*/
.addblack .hamburger-inner, .addblack .hamburger-inner:after, .addblack .hamburger-inner:before{
    background-color: #000;
}

.project-head{
    padding: 170px 15px 60px 50px;
}
.project-head ul{padding: 0;}
.project-head ul li{
    display: inline-block;
    margin: 15px 0; 
    font-size: 18px;
    font-weight: 400;
    line-height: 1em;
    padding-right: 15px;
padding-left:3px;
    position: relative;
  text-transform: uppercase;
    letter-spacing: 3px;
}
.project-head ul li:after{
    content: '/';
    position: absolute;
    right: 0px;
    top: 0;
    color: #ED3237;
}
.project-head ul li:last-child:after{
    display: none;
}
.project-head ul li a.current{
    font-weight: 600;
    opacity: 1;
}
.project-head ul li a{
    color: #ED3237;
}
.project-head ul li a:hover{
    color: #ED3237;
}
.grid-holder{
    position: relative;
    width: calc(33.33% - 2px);
    float: left;
    overflow: hidden;
margin-top: 2px;
	margin-right:2px;
}
.grid-holder img{
    width: 100%;
}

.grid-link{
    display: block;
}
.grid-link:hover{
    opacity: 1;
}
.grid-link h2{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    white-space: nowrap;
text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 25px;
}
.grid-link:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    opacity: 0;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    transition: all .2s ease;
}
.grid-link:hover:after, .grid-link:hover h2 {
    opacity: 1;
    transition: all .2s ease;
}
#project-content{
    padding: 90px 125px 220px 275px;
    
}
#project-content p.detail{
    padding: 40px 90px 90px ;
    text-align: left;
    font-size: 25px;
    line-height: 36px;
    color: #000000;
font-weight: 400;
}
#project-content img{
    width: 100%;
    margin-bottom: 50px;
}
.project-detail h1 {
    color: #fff;
	font-size: 47px;
}
.project-summary{
      padding: 0px 50px 0px 90px;
}
.project-summary h2, .project-summary a.next-project{
    color: #ED3237;
    font-size: 22px;
    margin-bottom: 40px;
	font-weight:400;
}
.project-summary p{
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #000;
}
.project-summary p span{
    font-weight:600 ;
     min-width: 220px;
    display: inline-block;
}
.project-summary p.minw290 span{
    min-width: 290px;
}
.project-summary  a.next-project{
    font-weight:600 ;
    margin-bottom: 0;
     display: inline-block;
    position: relative;
}
p.bottomLine{
        margin-top: 50px;
    margin-bottom: 80px;
    font-size: 14px;
    line-height: 20px;
    font-style: italic;
    
}
.project-summary a.next-project:after{
    position: absolute;
    content: '';
    width: 42px;
    height: 24px;
    left: 160px;
     top: 1px;
    background-image: url(../images/next-project.png);
    background-size: cover;
    transition: all .2s ease;
}
.project-summary a.next-project:hover:after{
    left: 170px;
    transition: all .2s ease;
}
.project_video_holder{
    margin-bottom: 50px;
}
.project_video_holder, .project_video{
    width: 100%;
    position: relative;
}
.project_video_holder img{
    margin-bottom: 0 !important;
}
.project_video_holder:after{
        content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .34);
    top: 0;
    left: 0;
    position: absolute;
}
.play_icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}
.popup-holder {
  position: relative;
    background: transparent;
  padding: 0px;
  width: 80%;
  margin: 0 auto;
}
.popup-holder video{
    width: 100%;
}
.mfp-close-btn-in .mfp-close {
    color: #686868;
    border-radius: 50%;
    background-color: #fff;
    top: -22px;
    right: -22px;
}
/* 
====== Zoom effect ======
*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}


@media (max-width: 1279px) {
    #project-content {
    padding: 90px 100px 220px 230px;
}
    
    #project-content p.detail {
    padding: 40px 00px 90px;

    }
    .project-summary{
        padding: 0;
    }
    .navigation ul{
        max-width: 750px;
    }
    .navigation ul li a {
    font-size: 40px;
    }
    .navigation ul li a:after{
        height: 70px;
    }
}
@media (max-width: 991px) {
    .navigation ul {
    max-width: 650px;
}
    .navigation ul li a {
    font-size: 34px;
}
    .navigation ul li a:after {
    height: 60px;
}
}

@media (max-width: 767px) {
    h1 , .project-detail h1{
    font-size: 32px;
    }
.slider-logo {
    width: 250px;
    top: calc(50% - 44px);
    left: calc(50% - 125px);
}
    #project-content {
    padding: 40px 50px 100px 50px;
}
   
    .grid-holder {
    width: calc(50% - 2px);
    }
    .form-holder {
    width: auto;
}
    .form-group, .form-group.message-holder {
    width: calc(100% - 2px);
    margin: 5px 1px;
}
   .inner-content {
    padding: 150px 50px;
}
    
.inner-content {
   
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0%, 0%);
}
    
   .inner-content p{
       font-size: 20px;
       line-height: 28px;
   }
   
    .slider-logo img{
        width: 100%;
    }
    
    .content-holder h2 {
    font-size: 26px;
    line-height: 36px;
}
    .navigation ul {
    padding: 50px;
}
    .navigation ul li a:after{
        display: none;
    }
    .navigation ul li {
    float: none;
        text-align: center;
    }
    .navigation ul li a{
        padding-right: 0;
    }
    .project-head ul li {
    font-size: 14px;
    }
    .project-summary p span {
    
     display: block; 
    min-width: 100%;
    }
}
@media (max-width: 480px) {
    .inner-content p {
    font-size: 16px;
    line-height: 24px;
}
    .inner-content {
    padding: 150px 15px;
    }
    .inner-content p.link-to-page, .inner-content p.link-to-page a {
    font-size: 18px;
    }
    .logo-holder {
    left: 15px;
    top: 25px;
    }
    .hamburger{
        right: 15px;
    }
     .navigation ul {
    padding: 15px;
}
    
    .project-detail h1{
        width: 340px;
    }
    p, #project-content p.detail{
        font-size: 20px;
        line-height: 28px;
    }
       #project-content {
    padding: 50px 15px 150px;
}
    #project-content p.detail {
    padding: 40px 00px 60px;
}
    #project-content img {
    margin-bottom: 15px;
}

    .content-holder {
    padding: 0px 15px;
    }

.project-head {
    padding: 130px 15px 30px  15px;
}
footer {
    padding: 80px 0 65px;
    }
.grid-link h2 {
    font-size: 18px;
    line-height: 20px;
}
    #project-content {
    padding: 50px 15px 150px;
}
    .header-bg{
    height: 100px;
    }
}