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

/**
    Kahn  - 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("transition.css");
@import url("margins.css");
@import url("reset.css");
@import url("assets.css");
@import url("../font/font.css");


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

body{
    font-family: 'Montserrat', sans-serif;
    background-size: 100%;
    background: #171717;
}

p{
    color: #c7c7c7;
    font-size: 17px;
    line-height: 30px;
}

#loading-bar, .form-btn {
  background-color: #fff;
 }

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

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

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

.percentage {
    z-index: 100;
    color: #404040;
    opacity: 1;
    font-weight: 700;
    font-size: 120px;
    line-height: 200px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.inner {
    display: table-cell;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

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


a:focus{
    color: #fff;
}

.little-title{
    color: #fff;
    font-size: 37px;
    font-weight: 700;
    letter-spacing: -1px;
}

.sub-title{
    color: #fff;
    line-height: 34px;
    font-size: 22px;
    font-weight: 600;  
}

header .logo{    
    margin-top: 8px;
}

.logo img {
    max-height: 30px;
}

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

header nav ul li{
    float: left;
    text-align: right;
    position: relative;
    margin-right: 40px;
    line-height: 50px;
}

header nav ul li:last-child{
    margin-right: 0;
}

header nav ul li a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

header nav ul li a:hover{    
    color: #a2a2a2;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

header .submenu{
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    position: absolute;
    left: 0;
    min-width: 180px;
    background: #000;
    padding: 14px 25px;
    border-radius: 4px;    
}

header .submenu li{
    margin-right: 0;
    float: none;
    text-align: left;
    line-height: 39px;
}

header .submenu li a{
    font-weight: 500;
    font-size: 14px;
    color: #a2a2a2;
    line-height: 39px;
    display: block;
}

header .submenu li a:hover{
    color: #fff;
}

nav ul li.hassub > a:after{
    content: "\f107";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 11px;
    margin-left: 7px;
}

nav ul li > i{
    color: #fff;
    position: absolute;
    top: 21px;
    right: 0;
    transform: translateX(16px);
    font-weight: 900;
    font-size: 12px;
}

header .submenu:after{
    display: block;
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 9px;
    border-color: transparent transparent #000;
}

header nav ul li:hover > .submenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}


/* Nav Icon */

.nav-icon{
    display: none;
}


.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;
}

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

/*------------------------ Home Page ------------------------*/   


.hero{
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 5;
    position: relative;
}

/*.hero:after{    
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 11vh;
    background: linear-gradient(0deg, rgba(20,20,20,1) 0%, rgba(0,0,0,0) 100%);
}*/

.hero-title{
    font-family: 'Gilroy-Bold ☞';
    font-size: 160px;
    letter-spacing: -2px;
    line-height: 170px;
    color: #fff;
    -webkit-text-stroke: 2px #fff;
}

.hero-title span{
    color: transparent!important;
}

.hero-content{
    padding:0 90px;
    width: 100%;
}

.hero-content p{
    font-size: 30px;
    line-height: 50px;
    margin-top: 10px;
    font-weight: 500;
}

.hero-content p span{    
    color: #fff;
}

.hero  .social {
    right: 0;
    top: 0;
    position: absolute;
    top: 45%;
    transform: rotate(90deg) translateY(-120px);
    -webkit-transform: rotate(90deg) translateY(-120px);
    -moz-transform: rotate(90deg) translateY(-120px);
    z-index: 6;
}

.hero .social a:hover i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.hero .line {
    float: left;
    width: 72px;
    background: #bfbfbf;
    height: 1px;
    margin: 20px 17px;
}

.social a {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    float: left;
    margin-right: 25px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    font-weight: 600;
}

.social a.text{
    color: #fff !important;
    margin-right: 0;
}

.down-arrow{
    position: absolute;
    bottom: 60px;
    left: 80px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    z-index: 10;
}

.down-arrow:hover svg{
    transform: translateY(-30px);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.down-arrow svg{
    fill: #fff;
    height: 30px;
    width: 30px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

footer{
    padding: 90px 60px;
    position: relative;
    width: 100%;
    margin-top: 60px;
}


footer .social{    
    right: 0;
}

footer .view-port{    
    left: 0;
}

footer .copyright {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    font-size: 16px;
}


.social li a {
    color: #fff;
    text-decoration: none;
    float: left;
    width: 25px;
    display: block;
    text-align: right;
}


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

.social li a:hover i{
    transform: rotate(360deg);
    transition: transform ease 0.3s;
    -webkit-transition: transform ease 0.3s;
    -moz-transition: transform ease 0.3s;
}

.view-port{
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.view-port:hover{
    transition: transform ease 0.3s;
    -webkit-transition: transform ease 0.3s;
    -moz-transition: transform ease 0.3s;
}

.view-port:before{
    content: "\f309";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    right: 0;
    left: 0;
    position: absolute;
    text-align: center;
    top: 15px;
    font-size: 19px;    
    transform: translateY(48px);
    -webkit-transform: translateY(48px);
    -moz-transform: translateY(48px);
    opacity: 0;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.view-port:hover:before{
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}


/* Showcase */

#showcase .section {
  text-align:left;
  font-size: 1.5em;
  padding: 0 120px;
  overflow: hidden;
}

#showcase .text{
    position: relative;
    z-index: 20;
    color: #fff;
    transition: padding ease 0.4s;
}

#showcase .text .title{
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
}

#showcase .text hr{
    width: 30px;
    height: 2px !important;
    border: solid 0px #FFF;
    background-color: #FFF;
    display: inline-block;
    margin-right: 5px;
    margin-top: 31px;
    padding: 0;
    vertical-align: middle;
}

a.view-project{   
    display: table;
    color: #000;
    border: solid 2px #ffffff;
    border-radius: 50px;
    line-height: 0px;
    width: 54px;
    position: relative;
    height: 54px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: #fff;
}

a.view-project:hover{    
    width: 170px;
    padding-left: 24px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a.view-project:hover span {
    display: block;
    opacity: 1;
    -webkit-transition: all ease 0.3s 0.3s;
    transition: all ease 0.3s 0.3s;
}


a.view-project:hover i {
    left: auto;
    transform: translateX(110px);
    -webkit-transition: all ease 0.3s; 
    transition: all ease 0.3s;
}

a.view-project span{  
    opacity: 0; 
    font-size: 14px;
    width: 110px;
    height: 46px;
    display: none;
    line-height: 51px;
    -webkit-transition: all ease 0.3s 0.3s;
    transition: all ease 0.3s 0.3s;
}

a.view-project i {
    font-size: 13px;
    position: absolute;
    left: 19px;
    top: 19px;
    transform: translateX(0);
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}


#showcase .text p{
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}

#showcase .section .slide-image{
    position: absolute;
    left: 0;
    top: 0;
    opacity: .7;
    width: 100%;
    height: 100%;    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#showcase .slide-overlay{
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity ease 0.4s;
}

#showcase .section.slide-anime .text{
    padding-left: 250px;
    transition: padding ease 0.5s;
}

.is-movein #showcase{
    visibility: hidden;
}

#showcase{
    visibility: visible;
}

.section.slide-anime .slide-overlay{
    opacity: 1 !important;
    transition: opacity ease 0.4s;
}

.showcase-bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 40px 60px;
    z-index: 10;
}

#showcase-counter {
    float: right;
    margin-right: 22px;
}

#showcase-number {
    left: 0px;
    line-height: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    width: 40px;
    z-index: 100;
    -webkit-transition: all 0.6s ease-in-out 0.8s;
    transition: all 0.6s ease-in-out 0.8s;
}

#showcase-number li {
    list-style: none;
    letter-spacing: 1px;
    color: #ececec;
    font-size: 40px;
    font-weight: 400;
    line-height: 38px;
    margin: 0;
    padding: 0;
    display: block;
    width: 40px;
    font-family: sans-serif;
}

#counter-outter {
    width: 85px;
    height: 30px;
    position: relative;
    bottom: 0;
    overflow: hidden;
    opacity: 1;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out 0.15s;
    -moz-transition: all 0.3s ease-in-out 0.15s;
    -o-transition: all 0.3s ease-in-out 0.15s;
    transition: all 0.3s ease-in-out 0.15s;
}


#counter-total {    
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 16px;
    font-weight: 400;
    right: 0;
    width: 88px;
    line-height: 13px;
    position: absolute;
    bottom: 0;
    text-align: right;
    font-family: sans-serif;
    opacity: .6;
}

#counter-outter:before {    
    background-color: rgba(255, 255, 255, 0.65);
    content: "";
    height: 18px;
    right: 30px;
    opacity: 1;
    position: absolute;
    bottom: -1px;
    width: 1px;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li:hover a.active span {
    height: 2px;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    height: 2px;
    right: 0 !important;
    left: auto;
}

#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
    height: 2px;
}

#fp-nav.right {
    right: 50px;
    z-index: 1;
}


/*------------------------ 3. About Page ------------------------*/   


.page-hero{
    padding: 240px 0 60px;
    font-size: 80px;
    color: #fff;
    font-weight: 700;
}

.page-hero:before{
    content: '';
    position: absolute;
    background: #fff;
    width: 1px;
    height: 70px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 140px;
}

.about-sub{
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    font-weight: 700;
}

.about p{
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.clients{
    background: #000;
    -webkit-box-shadow: 0px 50px 70px -40px rgba(0,0,0,0.95);
    box-shadow: 0px 50px 70px -40px rgba(0,0,0,0.95);
}

.clients .client img{
    width: 100%;
    opacity: .5;
}

.clients .client {
    border-radius: 6px;
    overflow: hidden;
    padding: 36px 0;
    cursor: pointer;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

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

.wwd{
    padding: 0 4%;
}

.wwd .service {    
    padding: 60px 0;
}

.wwd .service i{
    color: #fff;
    font-size: 30px;
}

.wwd .service .title{
    color: #fff;
    margin-top: 30px;
    font-weight: 600;
    font-size: 18px;
}

/*------------------------ 4. Portfolio List ------------------------*/   


.portfolio{
    padding-top: 90px;
}

.portdet{
    position: relative;
    width: 100%;
    left: 0;
    display: inline-block;
    padding-bottom: 30px;   
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.portdet:hover{
    padding-bottom: 0px;
    padding-top: 60px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.portdet .title:after{
    content: '';
    width: 30px;
    height: 45px;
    background: #6f6f6f;
    position: absolute;
    left: 71px;
    margin-top: 105px;
}

.portdet:hover .title:after{
    visibility: hidden;
}

.portdet img{
    width: 100%;
    opacity: 0;
    float: left;
    transform: scale(.1);
}

.portdet figure{
    height: 270px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}  

.portdet figure img{
    position: absolute;
    top: 0;
    left: 0;
} 

.portdet:hover figure{
    height: 360px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.portdet figure figcaption{
    position: absolute;
    padding: 120px 70px;    
    width: 100%;
    text-align: left;
}

.portdet figure figcaption .title{
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.portdet:hover figure figcaption .title{
    transition: all ease 0.5s 0.2s;
    -webkit-transition: all ease 0.5s 0.2s;
    -moz-transition: all ease 0.5s 0.2s;
}

.portdet figure figcaption span{
    visibility: hidden;
    transform: translateY(30px);
    margin: 15px 0;
    display: inline-block;
    padding: 0;
    float: left;
    color: #fff;
}

.portdet:hover > figure figcaption span{
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all ease 0.5s 0.2s;
    -webkit-transition: all ease 0.5s 0.2s;
    -moz-transition: all ease 0.5s 0.2s;
}

.portdet figure figcaption span:after{
    margin-left: 10px;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    content: "\f30b";
    font-size: 12px;
    color: #fff;
    opacity: .6;
}

.portdet:hover > figure img{
    opacity: 1;
    transform: scale(1.0);
    transition: all ease 0.3s;
}

.portdet.bu img{
    transform: scale(1.0);}

.cover-image{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.cover-image img{
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

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

.wrapper{
    position: absolute;
    width: 100%;
}

.wrapper.change-in{
    position: absolute;
    width: 100%;
}

.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;
}

/* Single Portfolio */

.cover-image{
    position: relative;
}

.port-close{
    position: absolute;
    right: 40px;
    top: 40px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    opacity: .6;
    z-index: 10;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

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

.port-close:before, .port-close:after{
    content: '';
    width: 2px;
    height: 26px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;

}

.port-close:before{
    transform: rotate(135deg);
}

.port-close:after{
    transform: rotate(-135deg);
}

.port-title{
    width: 100%;
    text-align: center;
}

.port-title .title{
    font-size: 90px;
    font-weight: bold;
    color: #fff;
}

.port-title p{
    font-size: 18px;
    opacity: .7;
    color: #fff;
    line-height: 30px;
}

.portcont .image img{
    width: 100%;  
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

.portcont .image{
    overflow: hidden;
}

.portcont:hover .image.dark img{
    transform: scale(1.1);
    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%); 
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;   
}

.portcont:hover .text .title{
    transform: translateX(30px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont:hover .text p{
    transform: translateX(30px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont .text{
    z-index: 1;
    position: relative;
}

.portcont .text .title{
    color: #fff;
    font-size: 68px;
    font-weight: 700;
    width: 150%;
    letter-spacing: -1px;
    transform: translateX(-90px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont .text p{
    margin-top: 15px;
    transform: translateX(60px);
    line-height: 30px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont.left .text .title{
    transform: translateX(90px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont.left .text p{
    transform: translateX(0);
    line-height: 30px;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s; 
}

.portcont.left:hover .text .title, .portcont.left:hover .text p{
    transform: translateX(30px);
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;     
}

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

.portcont:hover .image.dark{
    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%);      
}

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

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

.dark:hover{
    -webkit-filter: grayscale(0%); 
    filter: grayscale(0%);  
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;       
}

.dark{
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);        
}

.lightbox{
    overflow: hidden;
}


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

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

.next-link .next-title {
    color: #fff;
    font-size: 34px;
    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(-130%);
    -webkit-transform: translateY(-130%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
}

.information {
    margin-left:auto;
    margin-right: auto;
    float: none;
    display: inline-block;
    padding: 0;
    width: auto;
}

.information li {
    float: left;
    list-style: none;
    margin-right: 35px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

.information li:last-child{
    margin-right: 0;
}

.information li span {
    font-weight: 600;
    color: #fff;
}

.outter{
    display: table;
}

.cover-image .cover-inner{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: table;
    background: rgba(0, 0, 0, 0.3);
}

.cover-image .cover-inner .port-title{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.cover-image .port-title p{
    opacity: 1;
}

.cover-image .port-title .title{
    color: #fff !important;
}

/* Masonry */
.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: 1;
    position: fixed;
    left: 60px;
    bottom: 140px;
    cursor: pointer;
    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;
    color: #fff;
}

.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.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: 6px;
    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;
    top: 20px;
    right: 25px;
    text-align: right;
}

.grid-item .portfolio-item:before{
/*    content: '';*/
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.35);
    position: absolute;
    transition: all ease 0.3s;
    opacity: 0;
}

.grid-item:hover .portfolio-item:before{
    transition: all ease 0.3s;
    opacity: 1;
}

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

.portfolio-item figcaption .title{
    font-size: 28px;
    font-weight: 600;
}

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

.portfolio-item figcaption{
    color: #fff;
}

.dark-text .portfolio-item figcaption span, .dark-text .portfolio-item figcaption .title{
    color: #000;
}

/*.grid-item.dark-text:hover .portfolio-item figcaption span, .grid-item.dark-text:hover .portfolio-item figcaption .title{
    color: #fff;
}*/

.portfolio-item:hover{
  box-shadow: rgba(0, 0, 0, 0.30) -1px 20px 80px 0px;
}

.grid-item:hover{
    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;
}

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

/* Single Portfolio Three */

.portfolio-three{
    padding-top: 150px;
}

.title-type3 {
    font-size: 60px;
    line-height: 65px;
    font-weight: 900;
    color: #fff;
}


/*------------------------ 5. News Page ------------------------*/

.anews{
    display: block;
    margin-top: 45px;
    border-radius: 6px;
    overflow: hidden;
}

.anews figure img{
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease 0.2s;
    -webkit-transition: opacity ease 0.2s;
    -moz-transition: opacity ease 0.2s;
    position: absolute;
    left: 0;
    top: 0px;
}

.anews figure {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.anews figure figcaption .title{
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 60px;
}

.anews figure figcaption .date{
    font-size: 15px;
    font-weight: 400;
    margin-top: 14px;
    display: block;
    color: rgba(255, 255, 255, 0.6);
}

.anews figure figcaption{
    position: absolute;
    top: 0;
    text-align: left;
    padding: 0px 45px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;    
    text-align: center;
    width: 100%;
}

/* Pagination */

.nav-links {
    margin: auto;
    border-top: solid 1px #333333;
    padding: 80px 0px 0px;
}

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

.nav-links ul li {
    display: inline-block;
    color: #FFFFFF;
    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: #FFFFFF;
    opacity: .5;
    vertical-align: middle;
}

.nav-links ul li a:hover{
    opacity: 1;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
}

/* News Hover */

.anews:hover{    
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.anews:hover > figure img{
    opacity: 1;
    visibility: visible;
    transition: opacity ease 0.5s 0.3s;
    -webkit-transition: opacity ease 0.5s 0.3s;
    -moz-transition: opacity ease 0.5s 0.3s;    
    -webkit-transition: top ease 0.4s;
}

.anews:hover > figure figcaption {
    padding: 123px 45px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.anews:hover > figure {
    height: 400px;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.article-image{
    border-radius: 6px;
    overflow: hidden;
}

.article-image img{
    width: 100%;
}

.blog-categories {
    font-size: 13px;
    text-decoration: underline;
}

.blog-categories a {
    margin-right: 5px;  
    color: #fff;
    font-weight: 500;
}

.blog-title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 60px;
}

.blog-info {
    font-size: 14px;
    font-weight: 500;
    margin-top: 14px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

blockquote {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    padding: 30px;
    line-height: 40px;
}

/*Comments*/

.article-comments .comment {    
    border-bottom: solid 1px #383838;
    padding-bottom: 30px;
}

.article-comments .comment figure img {
    width: 100%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
}

.article-comments .comment-content .title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
}

.article-comments .comment-content .date {
    color: #505050;
    font-size: 12px;
}

.article-comments .comment-content p {
    color: #818080;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 4px;
}

.article-comments .comment-content .reply {
    font-size: 12px;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}

.article-comments .comment-content .reply:before {
    content: "\f3e5";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    margin-right: 7px;
    font-size: 10.5px;
}

.article-comments .comment:last-child {
    border: none;
}

.article-comments .comment.reply {
    padding-left: 30px;
}

/* sidebar */

.widget-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.recent-post ul li {
    list-style: none;
}

.recent-post ul li a {
    border-bottom: 1px solid #2d2d2d;
    width: 100%;
    display: block;
    padding: 15px 0;
    transition: all ease 0.3s;
}

.recent-post ul li:last-child a{
    border: none;
}

.recent-post .title {
    font-size: 14px;
    line-height: 20px;
    color: #989898;
}

.recent-post ul li span {
    color: #b8b8b8;
    font-size: 12px;
}

.categories ul li {
    list-style: none;
}

.categories ul li a {
    color: #9a9a9a;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #2d2d2d;
    display: block;
    transition: all ease 0.3s;
}


.categories ul li:last-child a{
    border: none;
}

.sidebar{
    display: inline-table;
    background: #000;
    padding: 30px;
}

.blog-article{
    padding-right: 40px;
}



/*------------------------ 6. Contact ------------------------*/   

.subtitle{
    font-size: 26px;
    color: #fff;
    font-weight: 600;
}

.form-inp {
    width: 100%;
    height: 45px;
    border: 0;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.4);
    font-size: 13px;
    padding-left: 10px;
    margin-bottom: 15px;
    background: none;
}

.contact-form textarea {
    width: 100%;
    border: 0;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.4);
    font-size: 13px;
    padding: 20px 0 0 10px;
    height: 119px;
    margin-bottom: 15px;
    background: none;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.form-inp:focus {
    border-bottom: solid 1px #fff !important;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.contact-form textarea:focus {
    border-bottom: solid 1px #fff !important;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
}

.form-btn {
    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;
    margin: 60px auto 0;
    display: block;
    cursor: pointer;
}

.form-btn:hover{
    opacity: .8;
}

.form-title{
    font-size: 32px;
    color: #fff;
    font-weight: 600;text-align: center;
}

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

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


/*------------------------ 7. Responsive ------------------------*/   



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

    .container {
        width: 1450px;
    }

    .zoom.col, .zoom.col-1, .zoom.col-10, .zoom.col-11, .zoom.col-12, .zoom.col-2, .zoom.col-3, .zoom.col-4, .zoom.col-5, .zoom.col-6, .zoom.col-7, .zoom.col-8, .zoom.col-9, .zoom.col-lg, .zoom.col-lg-1, .zoom.col-lg-10, .zoom.col-lg-11, .zoom.col-lg-12, .zoom.col-lg-2, .zoom.col-lg-3, .zoom.col-lg-4, .zoom.col-lg-5, .zoom.col-lg-6, .zoom.col-lg-7, .zoom.col-lg-8, .zoom.col-lg-9, .zoom.col-md, .zoom.col-md-1, .zoom.col-md-10, .zoom.col-md-11, .zoom.col-md-12, .zoom.col-md-2, .zoom.col-md-3, .zoom.col-md-4, .zoom.col-md-5, .zoom.col-md-6, .zoom.col-md-7, .zoom.col-md-8, .zoom.col-md-9, .zoom.col-sm, .zoom.col-sm-1, .zoom.col-sm-10, .zoom.col-sm-11, .zoom.col-sm-12, .zoom.col-sm-2, .zoom.col-sm-3, .zoom.col-sm-4, .zoom.col-sm-5, .zoom.col-sm-6, .zoom.col-sm-7, .zoom.col-sm-8, .zoom.col-sm-9, .zoom.col-xl, .zoom.col-xl-1, .zoom.col-xl-10, .zoom.col-xl-11, .zoom.col-xl-12, .zoom.col-xl-2, .zoom.col-xl-3, .zoom.col-xl-4, .zoom.col-xl-5, .zoom.col-xl-6, .zoom.col-xl-7, .zoom.col-xl-8, .zoom.col-xl-9 {
        padding-right: 30px;
        padding-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;
    }

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


}


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

    .hero-title{
        font-size: 140px;
        line-height: 140px;
    }


}

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

    .hero-title{
        font-size: 120px;
        line-height: 120px;
    }


}

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

header .submenu{
    border: solid 1px rgba(80, 79, 79, 0.92);
}


}

@media only screen and (min-width: 1025px) {
    header nav{
        display: block !important;
    }
}

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

    header .submenu{
        border:none;
    }

    .anews figure figcaption .title, .blog-title {
        font-size: 36px;
        line-height: 50px;
    }

    .form-title {
        font-size: 29px;
    }

    .about-sub {
        font-size: 32px;
        line-height: 46px;
    }

    .about p {
        font-size: 22px;
    }

    .page-hero {
        padding: 240px 0 30px;
    }

    footer{
        margin-top: 0;
    }

    header .logo{
        margin-top: 0;
    }

    header nav ul li {
        float: none;
    }

    header nav ul li {
        margin-right: 0;
    }

    .submenu{
        position: relative;
        opacity: 1;
        transform: translateY(0);
    }

    header .submenu li a {
        text-align: right;
    }

    header .submenu{
        position: relative;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    nav{
        display: none;
        left: 0;
        position: absolute;
        width: 100%;
        padding: 45px;
        text-align: center;
        background: #000;    
        top: 70px;
    }

    header nav ul li, header .submenu li a {
        text-align: center;
    }

    header .submenu{
        padding: 0;
    }

    nav {
        padding: 15px;
    }

    header nav ul li{
        line-height: 40px;
    }
    header .submenu li a {
        line-height: 34px;
    }

    .nav-icon{
        display: block;
    }

    .home .home-content .title {
        font-size: 60px;
    }

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

    #showcase .section {
        padding: 0 60px;
    }

    #showcase .text .title {
        font-size: 64px;
    }

    #showcase .section.slide-anime .text{
        padding-left: 90px;
        transition: padding ease 0.5s;
    }

    .showcase-bottom .social{
        display: inline-block;
    }

}
/* Max Width 991 */

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

   .home .home-content .title {
        font-size: 56px;
    }

    .clients .client {
        padding: 0px 0;
    }

    .page-hero {
        font-size: 70px;
    }

    .about-sub {
        font-size: 32px;
    }

    .page-hero {
        padding: 236px 0 30px;
    }

    .portdet img {
    opacity: 1;
    top: 0 !important;
    transform: scale(1);
}

    .portdet figure{
    height: 360px;
    }

    .portdet figure figcaption span {
        visibility: visible;
        transform: translateY(0px);
    }

    .portdet{
        padding: 0 0 60px !important;
    }

    .portdet .title:after{
        visibility: hidden;
    }

    .portdet figure figcaption .title {
        font-size: 45px;
    }

    .anews figure img{
        display: none;
    }

    .anews figure {
        min-height: 240px !important;
    }

    .anews figure figcaption {
        padding: 0px 45px !important;
    }

    .anews figure figcaption .title {
        font-size: 30px;
        line-height: 47px;
    }

    .blog-title {
        font-size: 30px;
        line-height: 46px;
    }

    .portcont .text .title, .portcont .text p{
        transform: translateX(0px) !important;
    }

    .portcont .text .title{
        width: auto;
    }

    .portcont{
        display: flex;
        flex-direction: column;
    }

    .portcont .image{
        order:1;
    }

    .portcont .text{
        order:2;
    }

    .lightbox {
        margin-bottom: 30px;
        display: block;
    }

    .port-title .title {
        font-size: 60px;
    }

    .hero-title {
        font-size: 70px;
        line-height: 80px;
    }

    .hero-content p {
        font-size: 25px;
        line-height: 40px;
        margin-top: 20px;
    }

    .hero-content {
        padding: 0 60px;
    }

}


/* Max Width 767 */

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

    .portdet:last-child{
        margin-bottom: 0 !important;
    }

    .load-more{        
        margin-bottom: 60px;
    }

     #showcase .text .title {
        font-size: 50px;
    }

    #showcase-counter {
         margin-right: 0px; 
    }

    .home .home-content .title {
        font-size: 45px;
    }

    .home .home-content .hello {
        font-size: 36px;
    }

    .view-port {
        color: #fff;
        font-weight: 600;
        font-size: 17px;
    }

    .about-sub {
        font-size: 28px;
        line-height: 45px;
    }

    .page-hero {
        padding: 236px 0 20px;
    }

    .home-content {
        padding: 0 30px;
    }

    .home .social, .home .view-port {
        padding: 30px;
    }

    .comment.reply {
    padding-left: 0 !important;
}

    .comment figure img {
        display: none;
    }

    .portdet figure figcaption .title {
        font-size: 28px;
    }

    .anews figure figcaption .title {
        font-size: 25px;
        line-height: 42px;
    }

    .anews figure {
        min-height: 170px !important;
    }

    footer {
        margin-top: 45px;
    }

    .blog-title {
        font-size: 26px;
        line-height: 42px;
    }

    .subtitle {
        font-size: 24px;
    }

    .portcont .text {
        text-align: center;
    }

    .portcont .text .title {
        font-size: 50px;
    }

    .portcont .text .title.top_90, .row.portcont.left.top_120.bottom_120, .row.portcont.top_120{
        margin-top: 45px;
    }

    .next-link.pagelink.top_120.bottom_90{
        margin-top: 60px;
    }

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

    .next-link .next-title, .next-link .nav-title {
        transform: translateY(0) !important;
        -webkit-transform: translateY(0) !important;
    }

    .port-title .title {
        font-size: 60px;
    }

    .information li {
        float: none;
        line-height: 27px;
    }

    .port-title .title {
        font-size: 50px;
        margin-bottom: 0;
    }

    .view-port:before {
        content: "";
    }

    .view-port{
        color: #fff !important;
    }

    .portwrap {
        min-height: auto;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero .social {
        transform: rotate(90deg) translateY(-140px);
        -webkit-transform: rotate(90deg) translateY(-140px);
        -moz-transform: rotate(90deg) translateY(-140px);
        z-index: 6;
    }

    header {
        padding: 40px 40px;
    }

    .down-arrow {
        bottom: 50px;
        left: 50px;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 33px;
    }
    footer {
        padding: 30px;
        display: inline-block;
    }


}


/*max Width 576px */

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


    .anews:first-child{
            margin-top: 15px !important;
        }

footer {
    background: black;
    position: relative;
    z-index: 1;
    text-align: center;
}

footer .copyright {
    font-size: 14px;
    line-height: 21px;
    margin: 0 auto;
    display: block;
    float: none !important;
}

footer .social {
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    float: none !important;
}

footer .social li a{
    margin: 0;
    width: auto;
    margin-right: 8px;
}

    .page-hero {
        font-size: 50px;
    }
    .about-sub {
    font-size: 25px;
    line-height: 41px;
    }

    .about p {
        font-size: 18px;
    }

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

    .home .home-content .hello {
        font-size: 22px;
        line-height: 46px;
    }

    .home .home-content hr {
        border: solid 2px #fff;
        width: 20px;
        float: left;
        margin: 32px 0 0 5px;
    }

    .social li a {
        width: 40px;
    }

    .portdet figure {
        height: 280px !important;
    }

    .portdet figure figcaption {
        padding: 98px 70px;
    }

    .portdet figure figcaption span {
        font-size: 13px;
    }

    .anews figure figcaption .title {
        font-size: 20px;
        line-height: 32px;
    }

    .anews figure {
        min-height: 160px !important;
    }

    figure {
        margin: 0 0 0;
    }

    .anews figure figcaption .date {
        font-size: 13px;
    }

    .blog-title {
        font-size: 22px;
        line-height: 36px;
    }

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

    .port-title .title {
        font-size: 40px;
    }

    .portcont .text .title {
        font-size: 32px;
    }

    .little-title {
        font-size: 32px;
    }

    header {
        padding: 25px;
    }

    .demo{
        display: none;
    }

    .page-hero:before {
        height: 50px;
        top: 120px;
    }

    .information li {
        margin-right: 0;
    }


    .page-hero {
        padding: 206px 0 25px;
        font-size: 45px;
    }

    .percentage {
        font-size: 80px;
    }

    .portdet {
        padding:0 !important;
    }

    .hero-title {
        font-size: 38px;
        line-height: 45px;
        letter-spacing: 0px;
        -webkit-text-stroke: 1px #fff;
    }

    .hero .social, .hero-content p br{
        display: none;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 30px;
        margin: 0;
    }

    .next-link {
        margin-top: 45px;
    }

.title-type3 {
    font-size: 36px;
    line-height: 45px;
}

.col-lg-6.top_90.bottom_60.zoom{
    margin-top: 30px;
}

.col-lg-4.top_90.bottom_60.zoom{
    margin-top: 0px;
    margin-bottom: 0px;
}

    .down-arrow {
        bottom: 30px;
        left: 40px;
    }

    .footer .social{
        padding: 0 !important;
        float: none !important;
        margin: 0 auto;
        display: inline-block;
        margin-bottom: 7px;
    }

    footer {
        padding: 50px 0;
    }

    .social li a {
        width: 30px;
    }

    .filter-icon {
        left: 30px;
        bottom: 60px;
    }

      #showcase .text .title {
        font-size: 23px;
    }

    #showcase .section {
        padding: 0 40px;
    }

    .showcase-bottom {
        padding: 20px;
    }

    .showcase-bottom .social a {
        margin-right: 14px;
    }

    .showcase-bottom .social a {
        margin-right: 11px;
    }

    #counter-outter {
        height: 25px;
    }

    #showcase-number li {
        font-size: 30px;
    }

    #counter-outter {
        width: 77px;
    }

    #fp-nav.right {
        right:25px;
    }

    #showcase .text p {
        font-size: 15px;
        margin-bottom: 0;
    }

    #showcase .text hr {
        width: 16px;
        margin-right: 0px;
    }

    #showcase .section.slide-anime .text{
        padding-left: 30px;
    }


}

