/* --------------------------------- */
/* Css Styles                        */
/*---------------------------------- */

/**
    Saian  - Portfolio Template 
    Author : Soonlabs
    Copyright 2019


/* Table of Content
==================================================

    1. Body and Core Css
    2. Home Page
    3. About Page
    4. Portfolio List
    5. News Page
    6. Contact Page
    7. Responsive
*/ 

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

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

body{
  font-family: 'Poppins', sans-serif;
}

body.dark{
    background: #000;
}

#preloader {
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 5000;
}

#preloader .logo{
  margin-bottom: 10px;
}

#preloader.loaded .loading-area {
    opacity: 0;
}

#preloader.loaded{
    visibility: hidden;
}

#preloader .loading-area {
    opacity: 1;
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #828282;
}

#preloader.loaded .left-side {
    transform: translateX(-100%);
    transition-delay: 1s;
}

#preloader .left-side {
    left: 0;
}

#preloader.loaded .right-side {
    transform: translateX(100%);
    transition-delay: 1s;
}

#preloader .right-side {
    right: 0;
}

#preloader .left-side, #preloader .right-side {
    background: #111;
    height: 100%;
    position: absolute;
    width: 50%;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: .7;
    z-index: 6;
}

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

header{
    position: absolute;
    width: 100%;
    padding: 50px 60px;
    z-index: 100;
}

nav{
    float: right;
    visibility: hidden;
    transition: all 0.3s 0.8s;
}

header.open nav{
    visibility: visible;
    transition: all 0.3s 0.0s;
}

nav ul li a{
    color: #fff;
    font-weight: 500;
    line-height: 0px;
    display: inline-block;
}

nav ul li a:hover{
    opacity: .5;
    color: #fff;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

nav ul li{
    float: left;
    margin-right: 30px;
}

nav ul li:last-child{
    margin-right: 45px;
}

header.subpage .nav-icon span {
    background: #000;
}

.dark header.subpage .nav-icon span {
    background: #fff;
}

header.subpage nav ul li a {
    color: #000;
}

.dark header.subpage nav ul li a{
    color: #fff;
}

header.subpage{
  position: relative;
  margin-bottom: 30px;
}

.subpage{
  padding-bottom: 60px;
}

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

.inner{
	margin-top: 350px;
    vertical-align: middle;
}

.hero{
    background-size: cover;
    height: 100vh;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-video:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(4, 4, 4, 0.22);
    z-index: 1;
}

.home-slider {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.home-slider img{
    width: 100%;
}

.hero .title{
    color: #fff;
    font-size: 130px;
    font-weight: 900;
    letter-spacing: -4px;
}

.hero .content{
    padding: 0 250px;    
    position: relative;
    z-index: 7;
    display: inline-block;
}

.home-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(../img/slider-1.jpg) center center no-repeat;
    background-size: cover;
}

.hero p{
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -1px;
    opacity: .8;
    line-height: 40px;
}

.hero .hello{
    max-height: 110px;
}

.social{
    margin-top: 10px;
	text-align: center;
}

.social a{
    color: #fff;
    margin-right: 5px;
}

.hero .social a:hover{
    display: inline-block;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transition: all ease 0.5s;
}

.hero .arrow{
    height: 25px;
    fill: #fff;
    margin-top: 80px;
    width: 30px;
    margin-left: 20px;
}

/* 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;
}


/* Nav Icon */  


.nav-icon {
    float: right;
    width: 34px;
    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;
}


.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    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: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;
}


/* Menu When Open */

header.open .nav-icon span{
    width: 70%; 
}

header.open .nav-icon:hover span:nth-child(3){
    width: 70%;
}

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

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

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

.activelink{
    color: rgb(255, 255, 255) !important;
}

header.fixing{
    position: fixed;
    padding: 40px;  
    background: #fff;
    display: none;
    box-shadow: 1px 1px 20px 20px rgba(153, 153, 153, 0.07);
    -webkit-box-shadow: 1px 1px 20px 20px rgba(153, 153, 153, 0.07);
    -moz-box-shadow: 1px 1px 20px 20px rgba(153, 153, 153, 0.07);
}

.dark header.fixing{
    background: #000;
}

.dark header.fixing .nav-icon span {
    background: #fff;
}

header.fixing .nav-icon span{
    background: #000;
}

header.fixing nav ul li a{
    color: #000;
}

.dark header.fixing nav ul li a {
    color: #fff;
}

.dark .activelink {
    color: rgba(255, 255, 255, 0.54) !important;
}

section{
    /*position: relative;*/
	background-color: #373538;
}

.section-inner{
    padding: 125px 0;    
    height: 100%;
    display: inline-block;
    width: 100%;
}

.align-left .section-inner{
    padding: 140px 0 110px;  
}

.normal .align-left .section-inner{
    padding: 110px 0 110px; 
}

.align-right .section-inner{
    padding: 170px 0;  
}

.normal .align-right .section-inner{
    padding: 110px 0;  
}

/* Diagonals */

.diagonals{
    position: relative;
    bottom: 0;
    left: 0;
}

.align-left .diagonals{
    transform: rotate(180deg);
}

.align-left .diagonal-left path, .align-left .diagonal-right path {
    fill: #959595 !important;
    stroke: #959595 !important;
    stroke-width: 4;
}

.dark .align-left .diagonal-left path, .dark .align-left .diagonal-right path {
    fill: #000 !important;
    stroke: #000 !important;
    stroke-width: 4;
}

.dark .portfolio_filter ul li a, .dark .news-box .news-info, .dark .news-box .title{
    color: #fff;
}

.dark .form-inp{
    border-bottom: solid 1px #fff;
}

.diagonals path{
    fill: #959595;
    stroke: #959595;
    stroke-width: 4;
}

.diagonal-left path, .diagonal-right path {
    fill: #373538;
    stroke: #373538;
    stroke-width: 4;
}

.dark .diagonal-left path, .dark .diagonal-right path {
    fill: #2c2c2c;
    stroke: #2c2c2c;
    stroke-width: 4;
}

.dark .gray-bg .diagonal-left path, .dark .gray-bg .diagonal-right path {
    fill: #2c2c2c !important;
    stroke: #2c2c2c !important;
    stroke-width: 4;
}

.dark .primary-bg .diagonal-left path, .dark .primary-bg .diagonal-right path {
    fill: #2c2c2c;
    stroke: #2c2c2c;
    stroke-width: 4;
}

.diagonal-left, .diagonal-right  {
    height: 130px;
}

.diagonal-left {
    position: absolute;
    bottom: 0;
    left: 0;
    background: none;
    z-index: 99;
    width: 23%;
}

.diagonal-right {
    position: absolute;
    bottom: 0;
    right: 0 !important;
    background: none;
    z-index: 99;
    left: auto;
    width: 77%;
}


.gray-bg{
    background: #f3f3f3;
}

.dark .gray-bg{
    background: #2d2d2d;
}

.align-right{
    text-align: right;
}

.align-right .section-title:before, .align-right .section-title:after{
    right: 0;
    left: auto;
}

.primary-bg .diagonal-left path, .primary-bg .diagonal-right path {
    fill: #373538 !important;
    stroke: #373538 !important;
    stroke-width: 4;
}

.dark .align-left.primary-bg .diagonal path{
    fill: #2d2d2d;
    stroke: #2d2d2d;
    stroke-width: 4;
}

/* Home arrow */

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.bounce {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}



/*------------------------ About ------------------------*/  

.section-title{
    font-weight: 600;
    font-size: 30px;
    display: block;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: -1px;
}

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

.dark .section-title:before, .dark .section-title:after{
    background: #fff;
}

.dark p{
    color: #fff;
}

.section-title:before{
    content: '';
    width: 30px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: 0;
}

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

.twitter{
    padding: 80px 0 60px 45px;
    width: 100%;
    min-height: 290px;
}

.twitter .link{  
    display: table;
    font-size: 70px;
    color: #c7c7c7;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.twitter .link:hover{
    color: #00acee;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.twitter .link i{  
    display: block;
}

.tweet ul{
    width: 100%;
    height: auto;
    padding: 0;
    overflow: hidden;
}

.tweet ul li{
    font-size: 25px;
    font-weight: 600;
    list-style: none;
    float: left;
    display: none;
}

.tweet ul li span.date{
    font-size: 14px;
    font-weight: 400;
}

.tweet ul li a {
    color: #a5a5a5;
}

.tweet ul li a:hover{
    color: #7b7b7b;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.tweet ul li:first-child{
    display: inline;
}

.services .item .left{
    float: left;
    width: 15%;
}

.services .item .right{
    float: right;
    width: 85%;
    padding-right: 80px;
}

.services .item i{
    font-size: 40px;
}

.dark .services .item i, .dark .tweet ul li{
    color: #fff;
}

.services .item .title{
    font-size: 17.5px;
    font-weight: 600;
}

.dark .services .item .title{
    color: #fff;
}

.services .item p{
    font-size: 13px;
    line-height: 24px;
    font-weight: 400;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    margin-left: 50px;
    float: left;
}


/*------------------------ Portfolio ------------------------*/ 

.portfolio_filter{
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.select-cat{
    font-weight: 600 !important;
}


.portfolio_filter ul{
    float: right;
}

.align-left .portfolio_filter ul{
    float: left;
} 

.portfolio_filter ul li{
    list-style: none;
    float: left;
}

.portfolio_filter ul li a{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin-right: 30px;
}

.portfolio_filter ul li:last-child a{
    margin-right: 0;
}

.portfolio-item{
    margin-bottom: 60px;
}

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

.grid-item .portfolio-item{
    position: relative;
    overflow: hidden;   
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    box-shadow: 2.5px 4.33px 111px 0px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 2.5px 4.33px 111px 0px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 2.5px 4.33px 111px 0px rgba(0, 0, 0, 0.20);
}

.grid-item .portfolio-item figcaption{
    position: absolute;
    bottom: 0;   
    text-align: left;
    color: #000;    
    left: 35px;
    bottom: 30px;
    z-index: 1;
}

.grid-item .portfolio-item figcaption .title{
    font-size: 22.5px;
    font-weight: 600;
    margin: 0;
    line-height: 17px;
}

.grid-item .portfolio-item figcaption span{
    font-size: 10px;    
    display: inline-block;
    color: #fff;
}

.grid-item.video-icon .portfolio-item:before{
    content: '\f04b';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 17px 20px;
    border-radius: 50px;
    color: #000;
}

.grid-item.link-icon .portfolio-item:before{
    content: '\f35d';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 50px;
    color: #000;
}

.grid-item.lightbox-icon .portfolio-item:before{
content: '\f03e';
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 15px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    color: #000;
}

/* Hover */

.grid-item:hover .portfolio-item:before{
    z-index: 1;
    transform: translateY(-60px);
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.grid-item:hover > .portfolio-item figcaption{
    visibility: visible;
}


.grid-item:hover .portfolio-item figcaption .title{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transition: all ease 0.3s 0.4s;
    -webkit-transition: all ease 0.3s 0.4s;
    -moz-transition: all ease 0.3s 0.4s;
    opacity: 1;
}


.grid-item .portfolio-item figcaption span{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    opacity: 0;
}

.grid-item .portfolio-item figcaption .title{
    color: #fff;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transition: all ease 0.3s 0.1s;
    -webkit-transition: all ease 0.3s 0.1s;
    -moz-transition: all ease 0.3s 0.1s;
    opacity: 0;
}

.grid-item .portfolio-item:before{
    z-index: 1;
    transition: all ease 0.3s 0.2s;
    -webkit-transition: all ease 0.3s 0.2s;
    -moz-transition: all ease 0.3s 0.2s;
}

.grid-item .portfolio-item img{
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.grid-item:hover .portfolio-item figcaption span{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    opacity: 1;
    transition: all ease 0.3s 0.53s;
    -webkit-transition: all ease 0.3s 0.53s;
    -moz-transition: all ease 0.3s 0.53s;
}

.grid-item:hover .portfolio-item img{
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.grid-item .portfolio-item:after{
    content: '';
    background: rgba(0, 0, 0, 0.70);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all ease 0.3s 0.4s;
    -webkit-transition: all ease 0.3s 0.4s;
    -moz-transition: all ease 0.3s 0.4s;
    /*transform: translateX(-100%);*/
    visibility: hidden;
    opacity: 0;
}

.grid-item:hover .portfolio-item:after{
    /*transform: translateX(0);*/
    opacity: 1;
    visibility: visible;
    transition: all ease 0.7s;
    -webkit-transition: all ease 0.7s;
    -moz-transition: all ease 0.7-s;
}

.site-btn{
    color: #fff;
    background: #000;
    padding: 15px 40px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    transition: all ease 0.4s;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;  
    font-family: 'Poppins', sans-serif;
}

.site-btn:hover:before{
    transform: translateX(0);
}

.site-btn:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: all ease 0.3s;
}

.site-btn:focus{
    outline: 0;
    color: #fff;
}

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

.dark .site-btn{
    background: #fff;
    color: #000;
}

.dark .site-btn:before{
    background: rgba(150, 150, 150, 0.18);
}

.portfolio .site-btn{
    margin-top: 30px;
    margin-right: 15px;
}

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

.project-detail .section-title{
   font-size: 50px;
   font-weight: 700;
   letter-spacing: -1px;
}

.categories-list{
    padding: 60px 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.categories-list li{
    float: left;
    list-style: none;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.dark .categories-list li{
    color: #fff;
}

.dark .categories-list {
    border-top: 1px solid #585858;
    border-bottom: 1px solid #585858;
}

.categories-list li span{
    font-weight: 600;
}

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

.dark .next-link .next-title, .dark .next-link .nav-title {
    color: #fff;
}


/*------------------------ News ------------------------*/   

.news-box{
    color: #fff;
}

.dark .news-box{
    color: #fff;
}

.news-box:hover{
    color: #e8e2e2;
}

.dark .news-box:hover{
    color: #fff;
}

.news-box .image{
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2.5px 4.33px 142px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 2.5px 4.33px 142px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2.5px 4.33px 142px 0px rgba(0, 0, 0, 0.2);
}

.news-box .image img{
    width: 100%;
}

.news-box .news-info{
    font-size: 12px;
    opacity: .7;
    margin: 22px 0 10px;
    display: inline-block;
}

.news-box .title{
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.news-box.list{
    margin-bottom:120px;
}

.news-box.list .title{
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 46px;
}

.news-box.list p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.news-box.list .news-info{
    margin-top: 40px;
    font-size: 14px;
}

.nav-links {
    margin: auto;
    padding: 0px 0px 30px;
    text-align: center;
}

.nav-links ul {
    padding: 0px;
    margin: 0px;
}

.nav-links ul li {
    display: inline-block;
    color: #000;
    padding: 0px 10px;
    font-size: 20px;
    line-height: 40px;
    font-weight: 500;
}

.nav-links ul li .current {
    font-weight: 700;
    font-size: 30px;
    vertical-align: middle;
}

.nav-links ul li a {
    color: #000;
    opacity: .5;
    vertical-align: middle;
}

blockquote {
    font-size: 22px;
    color: #000;
    font-weight: 500;
    font-style: italic;
    padding: 20px 30px;
    line-height: 40px;
    border-left: 3px #000 solid;
    margin:45px 0;
}

.dark blockquote{
    color: #fff;
    border-left: 3px #fff solid;
}

.next-link {
    text-decoration: none;
    overflow: hidden;
    height: 54px;
    display: inline-block;
    margin: 120px auto 30px;
    width: 100%;
    text-align: center;
}

.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 .nav-title {
    color: #000;
    font-size: 40px;
    font-weight: 600;
}

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

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

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

.contact-info p{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1px;    
    margin-bottom: 20px;
}

.social a:last-child{
    margin-right: 0;
}

.contact-info .social{
    margin-top: 40px;
}

.contact-info .social a{
    color: #000;
}

.secondry-title{
    display: block;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px;
}

.dark .secondry-title{
  color: #fff;
}

.form-inp{
    font-family: 'Poppins', sans-serif;
    border: 0;
    background: none;
    border-bottom: solid 1px #000;
    width: 100%;
    margin-bottom: 30px;    
    font-size: 14px;
    line-height: 45px;
}

.form-inp::placeholder{
    color: #000;
}

textarea::placeholder {
  color: #000;  
}

.dark .form-inp::placeholder{
    color: #fff;
}

.dark textarea::placeholder {
  color: #fff;  
}

.dark .contact-form textarea{
    border-bottom: solid 1px #fff;
}

.dark .contact-info .social a {
    color: #fff;
}

.contact-form textarea{
    font-family: 'Poppins', sans-serif;
    border: 0;
    background: none;
    border-bottom: solid 1px #000;
    width: 100%;
    color: #000;    
    font-size: 14px;
}

.contact-map{
    width: 100%;
}

.contact-map iframe{
    width: 100%;
    height: 400px;
}


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

.dark footer{
      background: #2b2b2b;
    border-top: 1px #4a4a4a solid;
}

footer{
    background: #000;
    padding: 70px 0;
}

.copyright p{
    font-size: 13px;
    opacity: .7;
    color: #fff;
    margin-bottom: 0;
}   

.getintouch{
    text-align: right;
}

.getintouch .title{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.getintouch p{
    font-size: 13px;
    opacity: .7;
    color: #fff;
    line-height: 15px;
    margin-bottom: 0;
}

.ftr-social{
    text-align: center;
}

.ftr-social .social{
    margin-top: 15px;
}

.ftr-social .social a{
    background: rgba(255, 255, 255, 0.15);
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    width: 41px;
    margin-right: 10px;
    font-size: 14px;
}

.ftr-social .social a:hover{
    background: rgba(255, 255, 255, 0.30);
    transform: rotate(360deg);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}




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


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

    .container {
        width: 1450px;
    }


.masonry{
    margin-right: -30px;
    margin-left: -30px;
}

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

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

    .news .row{
        margin-right: -30px;
        margin-left: -30px;
    }

}

@media screen and (min-width: 1450px) and (max-width: 1679px){

    .container {
        width: 1250px;
    }

}


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

    .hero .title {
        color: #fff;
        font-size: 90px;
        font-weight: 900;
        letter-spacing: -4px;
    }

    .hero p {
        font-size: 25px;
    }

    .diagonal-left, .diagonal-right {
        height: 90px;
    }

    .hero .content {
        padding: 0 160px;
    }

    .diagonal-left {
        width: 20%;
    }

    .diagonal-right {
        width: 80%;
    }

    .hero .arrow {
        margin-top: 100px;
    }

    .services .item .right {
        padding-right: 40px;
    }


}



/********* MIN WIDTH 1680 *********/

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

  header.fixing{
    padding: 10px;
  }

  .align-left .section-inner {
    padding: 120px 0 110px;
}

    .hero .title {
        font-size: 50px;
    }

    .hero p {
        font-size: 25px;
    }

    .diagonal-left, .diagonal-right {
        height: 90px;
    }

    .hero .content {
        padding: 0 160px;
    }

    .diagonal-left {
        width: 20%;
    }

    .diagonal-right {
        width: 80%;
    }


    .hero .arrow {
        margin-top: 100px;
    }

    .services .item .right {
        padding-left: 30px;
    }

    .align-right .section-inner {
    padding: 120px 0;
}


}



/********* MIN WIDTH 1280 *********/

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

    .hero .title {
        font-size: 90px;
    }

    .hero .content {
        padding: 0 100px;
    }

    .hero p {
        font-size: 23px;    
        line-height: 32px;
    }


}


/********* MIN WIDTH 1199 *********/

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

    .services .item .right {
        width: 80%;
    }

    .services .item .left {
        width: 20%;
    }

    .services .item .right {
        padding-right: 20px;
    }

}


/********* MIN WIDTH 1024 *********/

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

  header.subpage{
      margin-bottom: 0;
  }

    .diagonal-left, .diagonal-right {
        height: 70px;
        margin-bottom: -1px;
    }

    .news-box{
        margin-bottom: 45px;
    }

    .news-box:last-child{
        margin-bottom: 0;
    }

    .contact .section-inner {
        padding: 170px 0 100px;
    }

    .contact-info{
        order: -1;
        margin-bottom: 80px;
    }

    .hero .title {
        font-size: 65px;
    }

    .hero .hello {
        max-height: 80px;
    }

    .copyright, .getintouch{
        text-align: center;
    }

    .ftr-social {
        text-align: center;
        margin: 7px 0 32px;
    }

    .hero .content {
        padding: 0 45px;
    }

    .news-box.list:last-child {
    margin-bottom: 90px;
}

.news-box.list {
    margin-bottom: 90px;
}

}



/********* MIN WIDTH 991 *********/

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

    .categories-list li {
        height: 34px;
    }

    .categories-list {
        padding: 20px 0;
    }

    p {
      font-size: 16px;
      line-height: 32px;
  }

.lightbox .image  {
    margin-bottom: 30px;
}

}


/********* MIN WIDTH 768 *********/

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


header.subpage nav ul li a {
    color: #fff;
}

  header.fixing {
    padding: 30px;
}

.align-left .section-inner {
    padding: 110px 0 90px;
}

.align-right .section-inner {
    padding: 120px 0;
}

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

  .project-detail .section-title {
      font-size: 30px;
  }

  .categories-list li {
      height: 28px;
      text-align: left;
      font-size: 14px;
  }

  .next-link .nav-title {
    font-size: 30px;
}

  header{
    padding: 40px;
  }

  header nav{
    float: none;
    width: 100%;
    background: #000;
    margin-top: 20px;
    display: none;
  }

  nav ul {
    list-style: none;
    position: relative;
    left: 0;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
  }


  header.fixing nav ul{
      padding-right: 0;
      text-align: center;
  }


  nav ul li{
      width: 100%;
      padding: 12px 0px;
      border-bottom: solid 1px #2d2d2d;
}

header.fixing nav ul li{
      border-top: solid 1px #dfdfdf;
      border-bottom: 0;
}

  header.fixing nav{
    background: #fff;
    margin-top: 0;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    margin-top: 23px;
  }

  .dark header.fixing nav{
    background: #000;
  }

  .dark header.fixing nav ul li{
      border-top: solid 1px #333333;
   }

  .tweet ul li {
      font-size: 20px;
  }

  .twitter .link{
      margin-bottom: 30px;
  }

.twitter {
    padding: 50px 0 60px 45px;
}

.news-box.list .title {
    font-size: 28px;
    line-height: 40px;
}

}

/********* MIN WIDTH 580 *********/

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

    blockquote {
        font-size: 20px;
        color: #000;
        font-weight: 500;
        font-style: italic;
        padding: 17px 19px;
        line-height: 28px;
        border-left: 3px #000 solid;
        margin: 45px 0;
    }

    .form.top_120{
        margin-top: 70px;
    }

    .row.lightbox.top_60.bottom_60{
        margin-bottom: 0;
        margin-top: 35px;
    }

    .next-link {
      text-decoration: none;
      overflow: hidden;
      height: 54px;
      display: inline-block;
      margin: 60px auto 0px;
      width: 100%;
      text-align: center;
  }

    .secondry-title {
      display: block;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -1px;
  }

    .social {
        margin-top: 20px;
    }

  .portfolio-item {
      margin-bottom: 30px;
  }

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

    .section-title:after {
        width: 37px;
    }

    .section-title:before {
        width: 20px;
    }

    br{
        display: none;
    }

    .hero .title {
        font-size: 27px;
        letter-spacing: 0;
    }

    .hero p {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0;
    }

    .hero .hello {
        max-height: 40px;
        margin-bottom: 10px;
        margin-top: 90px;
    }

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

    header {
        padding: 23px 20px;
    }

    .diagonal-left, .diagonal-right {
        height: 36px;
    }

    .hero .content {
        padding: 0 30px;
    }

    .portfolio_filter ul{
        float: none;
        width: 100%;
        text-align: right;
    }

    .portfolio_filter ul li{
        width: 50%;
    }

    .portfolio_filter ul li a{
      margin-right: 0px;
      line-height: 34px;
    }

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

  .contact-info p br{
      display: block;
  }

header.fixing{
    padding: 20px;
}

.align-left .section-inner {
    padding: 97px 0 90px;
}

.align-right .section-inner {
    padding: 100px 0;
}

.tweet ul li {
    font-size: 17px;
}

.twitter {
    padding: 50px 0 30px 24px;
}

.news-box.list .title {
    font-size: 20px;
    line-height: 28px;
}

.news-box .title {
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
}

.hero {
height: 80vh;
}

}



/********* MOBILE LANDSCAPE *********/

@media screen and (min-device-width: 481px) 
 and (max-device-height: 450px) 
 and (orientation: landscape) {

header {
    padding: 30px 20px;
}

.hero .title {
    font-size: 40px;
    letter-spacing: -1px;
    margin-top: 10px;
}

.hero p {
    font-size: 19px;
    line-height: 26px;
}

.hero .hello {
    max-height: 50px;
}

.down-icon{
    display: none;
}

.align-left .section-inner {
    padding: 100px 0 40px;
}

.tweet ul li {
    font-size: 22px;
    line-height: 28px;
}

.contact .section-inner {
    padding: 110px 0 100px;
}

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

.next-link .nav-title {
    font-size: 30px;
}

.next-link {
    margin: 60px auto 0px;
}

.categories-list li {
    text-align: left;
}

.news-box.list .title {
    font-size: 32px;
    line-height: 40px;
}

.form.top_120{
    margin-top: 60px;
}


}



@media screen and (min-device-width: 1366px) 
 and (max-device-height: 1024px) 
 and (orientation: landscape) {

  .tweet ul li {
      font-size: 22px;
  }

  .align-left .section-inner {
      padding: 120px 0 70px;
  }

  .align-right .section-inner {
      padding: 140px 0;
  }

  .news-box.list .title {
      font-size: 34px;
  }

}


@media screen and (max-device-width: 667px) 
 and (orientation: landscape) {

header {
    padding: 30px 20px;
}

.hero .title {
    font-size: 40px;
    letter-spacing: -1px;
    margin-top: 10px;
}

.hero p {
    font-size: 19px;
    line-height: 26px;
}

.hero .hello {
    max-height: 50px;
}

.down-icon{
    display: none;
}

.diagonal-left, .diagonal-right {
height: 40px;
margin-bottom: -1px;
}


}










