/*
* Box Theme
* Created by : Ahmed Eissa
* website : www.ahmedessa.net
* behance : https://www.behance.net/3essa
*/


/* Table of Content
==================================================
	- Google fonts & font family -
	- General -
    - typography -
    - Preloader -
	- Header -
    - box intro section -
    - Portfoilo section -
    - Footer -
    - About page -
    - Services page -
    - contact page -
    - Portfolio single page -
    - Responsive media queries -
*/


/* Google fonts & font family
==================================================*/

@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700);

/* General
==================================================*/

html
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #888;
    opacity: 1;
    transition: 1.5s opacity;
}

body.fade {
    opacity: 0;
    transition: none;
}

.unselectable {
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.no-padding [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.main-container {
    padding: 100px 0px 0px 0px;
	margin: 0px auto;
}

.center {
    text-align: center;
}

a {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.uppercase {
    text-transform: uppercase;
}

.h-30 {
    height: 30px;
    position: relative;
}

.h-30-2 {
    height: 30px;
    position: relative;
    margin: 0px;
}

.h-10 {
    height: 10px;
}

.color {
    color: #ffbf00;
    font-size: 50px;
}


/* container 1
==================================================*/

#container1 {
    position: relative;
    max-width:100%;
	margin: 0px 3px 0px -3px;
}

#container2 {
    position: relative;
    max-width:100%;
	margin: 0px 3px 0px -3px;
}

#container3 {
    position: relative;
    max-width:100%;
	margin: 0px 3px 0px -3px;
}

#container4 {
    position: relative;
    max-width:100%;
	margin: 0px 3px 0px -3px;
}

/* typography
==================================================*/

h1 {
    color: #393939;
    font-size: 60px;
    text-transform: uppercase;
}

h3 {
    color: #393939;
}

h5 {
    color: #ffbf00;
}

h7 {
    color: #60606e;
}
.col-md-12 h3 {
	font-size: 30px;
	font-weight: normal;
	margin-top: -5px;
}
.col-md-12 h5 {
    font-size: 20px;
    font-weight: normal;
}
.col-md-12 h7 {
    font-size: 15px;
    font-weight: normal;
} 
.col-md-6 h5 {
	font-size: 18px;
	font-weight: normal;
	margin-top: 10px;
}
.col-md-6 h3 {
	margin-top: -5px;
	font-size: 30px;
	font-weight: normal;
}


/* preloader
==================================================*/

#preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    /* change if the mask should be a color other than white */
    z-index: 1000;
    /* makes sure it stays on top */
}

.pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffbf00;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0);
    }
    50% {
        -webkit-transform: scale(1.0);
    }
	}

@keyframes bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        }
        }

/* header
==================================================*/

.box-header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
	background-color: rgba(255, 255, 255, 0.8);
   	height: 50px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.box-header {
    height: 55px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.box-header {
    -webkit-transition: background-color 0s;
    transition: background-color 0s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visiility: 0 0 0 hidden;
    backface-visibility: hidden;
}

.box-header.is-fixed {
    position: fixed;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}

.box-header.is-visible {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.box-header.menu-is-open {
    background-color: rgba(255, 255, 255, 0.96);
}

.box-logo {
    display: inline;
    padding: 15px;
}

.header-logo {
    display: inline-flex;
    padding: 0px 0px 0px 15px;
    height: 40px;
}

.box-primary-nav-trigger {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #fff;
}

.box-primary-nav-trigger .box-menu-text {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    display: none;
}

.box-primary-nav-trigger .box-menu-icon {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 18px;
    height: 2px;
    background-color: #000;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    list-style: none;
}

.box-primary-nav-trigger .box-menu-icon::before,
.box-primary-nav-trigger .box-menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    right: 0;
    -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
    -webkit-transition: top .3s, background-color 0s, -webkit-transform .3s;
    transition: top .3s, background-color 0s, -webkit-transform .3s;
    transition: transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s, -webkit-transform .3s;
}

.box-primary-nav-trigger .box-menu-icon::before {
    top: -5px;
}

.box-primary-nav-trigger .box-menu-icon::after {
    top: 5px;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked {
    background-color: rgba(255, 255, 255, 0);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before,
.box-primary-nav-trigger .box-menu-icon.is-clicked::after {
    background-color: #393939;
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.box-primary-nav-trigger .box-menu-icon.is-clicked::after {
    top: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.box-primary-nav-trigger {
    width: 40px;
    background-color: transparent;
    line-height: 30px;
    left: auto;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-primary-nav-trigger .box-menu-text {
    display: inline-block;
}

.box-primary-nav-trigger .box-menu-icon {
    left: 1em;
    right: auto;
    -webkit-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
}

.box-primary-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2;
    text-align: center;
    padding: 150px 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    list-style: none;
}

.box-primary-nav li {
    font-size: 18px;
    font-weight: 300;
	color: #ffbf00;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: .2em 0;
    text-transform: capitalize;
}

.box-primary-nav a {
    display: inline-block;
    padding: .4em 1em;
    border-radius: 0.25em;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    text-transform:uppercase;
}
.box-primary-nav a:focus {
    outline: none;
}

.no-touch .box-primary-nav a:hover {
    text-decoration: none;
    color: #ffbf00;
}

.box-primary-nav .box-label {
    color: #ffbf00;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    margin: 2.4em 0 .8em;
}

.box-primary-nav .box-social {
    display: inline-block;
    margin: 10px .4em;
}

.box-primary-nav .box-social a {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 30px
}

.box-primary-nav.is-visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/* box-intro
==================================================*/

.box-intro {
    text-align: center;
    display: table;
    height: 50vh;
    width: 100%;
}

.box-intro .table-cell {
    display: table-cell;
    vertical-align: middle;
	margin: 0px auto;
}

.box-intro em {
	font-style: normal;
	text-transform: uppercase;
	font-size: 145px;
}

b i:last-child {
    color: #ffbf00 !important;
}

.box-intro h5 {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    line-height: 1.7;
	font-size: 30px;
}


/* mouse effect */
.mouse {
    display: none;
	position: absolute;
    width: 25px;
    height: 45px;
    bottom: 150px;
    left: 50%;
    margin-left: -12px;
    border-radius: 25px;
    border: 2px solid #888;
    -webkit-animation: intro 1s;
    animation: intro 1s;
}

.scroll {
    display: none;
    width: 6px;
    height: 6px;
    margin: 6px auto;
    border-radius: 4px;
    background: #999;
    -webkit-animation: finger 1.5s infinite;
}

@-webkit-keyframes intro {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
	}

@keyframes intro {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
	}

@-webkit-keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}


/* text rotate */

.box-headline {
    font-size: 130px;
    line-height: 1.0;
	margin: 0px auto;
}

.box-words-wrapper {
    display: inline;
    position: relative;
}

.box-words-wrapper b {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.box-words-wrapper b.is-visible {
    position: relative;
}

.no-js .box-words-wrapper b {
    opacity: 0;
}

.no-js .box-words-wrapper b.is-visible {
    opacity: 1;
}

/* portfolio section
==================================================*/

.portfolio .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
	font-size: 17px;
}

.portfolio .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 15px;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus {
	color: #ffbf00;
}

.portfolio .categories-grid .categories ul li a.active {
	background-color: #ffbf00;
    padding-right: 20px;
	padding-left: 20px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

.portfolio_filter {
    padding-left: 0;
}

.portfolio_item {
    position: relative;
    overflow: hidden;
    display: block;
}

.portfolio_item .portfolio_item_hover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.portfolio_item .portfolio_item_hover .item_info {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 100%;
    font-weight: bold;
}

.portfolio_item .portfolio_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 16px;
	letter-spacing: .05em;
	text-transform: uppercase;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
    opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em {
    font-style: normal;
    display: inline-block;
    background-color: #ffbf00;
    padding: 5px 20px;
    border-radius: 25px;
    color: #333;
    margin-top: 10px;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    -webkit-transition: all .3s ease-in-out .3s;
    transition: all .3s ease-in-out .3s;
    opacity: 0;
    font-size: 10px;
    letter-spacing: 1px;
}

.portfolio_item:hover .portfolio_item_hover {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span {
    opacity: 100;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.portfolio .categories-grid .categories ul li {
    float: left;
}

.portfolio .categories-grid .categories ul li a {
    padding: 0 15px;
    -webkit-transition: all .1s ease-in-out .1s;
    transition: all .1s ease-in-out .1s;
}

.portfolio_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
}

.portfolio-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
}


/* footer
==================================================*/

footer {
    padding: 30px 0;
    text-align: center;
    background: #fff;
}

.copyright {
    color: #999;
    margin-bottom: 10px;
	margin-top: 35px;
	font-size: 12px;
}

footer img {
    margin: 0 auto;
}


/* back to top
==================================================*/

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 20px;
    line-height: 40px;
    font-size: 20px;
    right: 20px;
    text-align: center;
    color: #fff;
    background: #ffbf00;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .5s 0s, visibility 0s .5s;
	z-index: 999;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity 1s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover,
.no-touch .cd-top:focus {
    background-color: #ffbf00;
    opacity: 1;
    color: #fff;
}


/* About page
==================================================*/

.top-bar {
    color: #333;
    padding: 150px 0 150px;
    background: -webkit-linear-gradient( rgba(255, 255, 255, .5), rgba(255, 255, 255, .0)), url(../img/jpeg/background_v02.jpg);
    background: linear-gradient( rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url(../img/jpeg/background_v02.jpg);
    background-size: contain;
	background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: #393939;
    line-height: 50px;
}

.top-bar p {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #777;
}

.top-bar p a {
    color: #777;
}

.top-bar p a:hover,
.top-bar p a:focus {
    color: #555;
    text-decoration: none;
}

.social-ul {
    list-style: none;
    display: inline-block;
    padding-left: 0;
}

.social-ul li {
    margin: 0 10px;
    float: left;
}

.social-ul li a {
    font-size: 25px;
    color: #555;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.social-ul li a:hover {
    color: #888;
}


/* Services page
==================================================*/

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

.service-box {
    margin-bottom: 30px;
}

.service-box h3 {
    margin-top: 0;
}


/* contact page
==================================================*/

.details-text i {
    margin-right: 10px;
}

.textarea-contact {
    height: 200px;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, .1);
    position: relative;
	
}

.textarea-contact textarea {
    height: 100%;
    width: 100%;
    border: 0;
    padding: 20px;
    background-color: transparent;
    float: left;
    z-index: 2;
    font-size: 14px;
    color: #9a9a9a;
    resize: none;
}

.textarea-contact > span {
    position: absolute;
    top: 20px;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    text-transform: uppercase;
    color: #cdcdcd;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1;
}

.input-contact {
    height: 40px;
    width: 100%;
    border: solid 1px rgba(0, 0, 0, .1);
    position: relative;
    margin-bottom: 30px;
}

.input-contact input[type="text"] {
    height: 100%;
    width: 100%;
    border: 0;
    padding: 0 20px;
    float: left;
    position: relative;
    background-color: transparent;
    z-index: 2;
    font-size: 14px;
    color: #9a9a9a;
}

.input-contact > span {
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    text-transform: uppercase;
    color: #cdcdcd;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    z-index: 1;
}

.input-contact > span.active,
.textarea-contact > span.active {
    color: #ffbf00;
    font-size: 10px;
    top: 0px;
    left: 5px;
    background-color: #fff;
    padding: 5px;
}

input:focus,
textarea:focus {
    outline: none;
}

.contact-info {
    margin-top: 40px;
	padding-left: 0px;
}

.contact-info i {
    height: 30px;
    width: 30px;
    display: inline-block;
    background: #ffbf00;
    text-align: center;
    line-height: 33px;
    margin-right: 10px;
    color: #fff;
    font-size: 21px;
}

.contact-info p {
    display: inline-block;
    margin-right: 30px;
}

.btn-box {
    background: #ffbf00;
    padding: 10px 50px;
    border-radius: 0;
    color: #fff;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-box:hover,
.btn-box:focus {
    background: #F5B700;
    color: #fff;
}


/* single project page
==================================================*/

.cat-ul {
    padding-left: 0;
    list-style: none
}

.cat-ul li i {
    margin-right: 10px;
    color: #ffbf00;
}


/* video css
==================================================*/
.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:0px;
	height:0;
	overflow:hidden;
}

.video-container video, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
}

/* video css
==================================================*/
.video-container-small {
    position:relative;
    padding-bottom:56.25%;
    padding-top:0px;
    height:0;
    overflow:hidden;
}

.video-container-small video, .video-container-small object, .video-container-small embed {
    top:0;
    left:0;
    width:50%;
    height:50%;
}

/* Responsive media queries
==================================================*/
@media (max-width: 1800px) {
    .box-intro {
        height: 75vh;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }
     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 20px;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1368px) {
    .box-intro {
        height: 65vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 100px;
    }
    .box-intro h5 {
        font-size: 18px;
        margin-top: 0;
    }
    .portfolio .categories-grid .categories ul li {
        font-size: 15px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 15px;
        line-height: 1.25em;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 10px;
    }

    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .box-intro em {
        text-transform: uppercase;
        font-size: 100px;
    }
    .portfolio .categories-grid span {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    .portfolio .categories-grid .categories ul li a {
        margin-left: 0;
    }
    .col-md-6 h3 {
        margin-top: 30px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

    /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 18px;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1024px) {
    .box-intro {
        height: 70vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 85px;
    }
    .box-intro h5 {
        font-size: 18px;
        margin-top: 0;
    }
    .portfolio .categories-grid .categories ul li {
        font-size: 15px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 15px;
        line-height: 1.25em;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 10px;
    }

    .copyright {
        font-size: 12px;
    }
}

@media only screen and (max-width: 992px) {
    .box-intro em {
        text-transform: uppercase;
        font-size: 85px;
    }
    .box-headline {
        font-size: 100px;
    }
    .box-intro h5 {
        font-size: 20px;
    }
    .box-primary-nav a {
        padding: 5px 1em;
        font-size: 15px;
    }
    .box-primary-nav {
        padding: 80px 0 0;
    }
    .box-primary-nav .box-social a {
        font-size: 23px;
    }
    .top-bar h1 {
        font-size: 40px;
        line-height: 30px;
    }
    .portfolio .categories-grid .categories ul li {
        font-size: 15px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }
}

@media only screen and (max-width: 820px) {
    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 70px;
    }
}

@media only screen and (max-width: 768px) {
    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 65px;
    }
    .box-intro h5 {
        font-size: 18px;
        margin-top: 0;
    }
    .top-bar h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .categories {
        display: inline-block;
        width: 100%;
        padding: 0px 10px 0px 10px;
    }
    .portfolio .categories-grid .categories ul li {
        font-size: 18px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 15px;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 10px;
    }

    .copyright {
        font-size: 12px;
    }
}

@media only screen and (max-width: 736px) {
    .box-intro {
        height: 100vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 60px;
    }

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

    .box-intro {
        height: 100vh;
    }    
    .box-intro em {
        font-size: 55px;
    }
    .box-intro h5 {
        font-size: 15px;
    }
    .top-bar h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .categories {
        display: none;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 15px;
        line-height: 1.5em;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        display: none;
    }
    .copyright {
        font-size: 10px;
    }
}

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

    .box-intro {
        height: 65vh;
    }
    .box-intro em {
        font-size: 50px;
    }
    .box-intro h5 {
        font-size: 15px;
    }
    .top-bar h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .categories {
        display: inline-block;
        width: 100%;
        padding: 0px 10px 0px 10px;
    }
    .portfolio .categories-grid .categories ul li {
        font-size: 13px;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 12px;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        font-size: 8px;
    }
    .copyright {
        font-size: 10px;
    }
}

@media only screen and (max-width: 430px) {
    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 32px;
    }
}

@media only screen and (max-width: 414px) {
    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 32px;
    }
}

@media only screen and (max-width: 390px) {
    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 32px;
    }
    .categories {
        display: none;
    }
}

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

    .box-intro {
        height: 50vh;
    }    
    .box-intro em {
        text-transform: uppercase;
        font-size: 32px;
    }
    .box-intro h5 {
        font-size: 15px;
    }
    .top-bar h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .categories {
        display: none;
    }

    /* mouse effect */
    .mouse {
        display: none;
    }

     /* portfolio hover text */
    .portfolio_item .portfolio_item_hover .item_info span {
        font-size: 10px;
        line-height: 1.5em;
    }
    .portfolio_item .portfolio_item_hover .item_info em {
        display: none;
    }
    .copyright {
        font-size: 10px;
    }
}