*, :before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
	color: #dcdcdc;
	font-size: 16px;
	line-height: 1.25;
	font-family: Helvetica, Arial, sans-serif;
    min-height: 100%;
    overflow: hidden;
}

.bg-mob-devices {
    background: url(../images/stars.jpg) repeat;
}

.bg-all-devices {
    background: url(../images/onyxbg.jpg) no-repeat fixed;
    background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}

::selection {
    background: #161616;
    color: #E1E8F0;
}
::-moz-selection {
	background: #161616; /* Firefox */
    color: #E1E8F0;
}
::-webkit-selection {
	background: #161616; /* Safari */
    color: #E1E8F0;
}
::-o-selection {
	background: #161616; /* Opera */
    color: #E1E8F0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px
}

::-webkit-scrollbar-track-piece {
    background-color: #010101;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
    height: 5px;
    background-color: #E1E8F0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #E1E8F0
}

::-webkit-scrollbar-thumb:horizontal:hover {
    overflow: hidden;
}

a, button, .logo, .logo-gif, .teammate a, .teammate h2, .change-lang li:hover, .portfolio-filter li, .portfolio-dropdown, input, textarea, svg, .in-page-link,
.item-overlay, .item-caption, .item-cover, .lightcase-icon-next:before, .lightcase-icon-prev:before, .lightcase-icon-close:before {
    transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    -moz-transition: 0.5s linear;
    -ms-transition: 0.5s linear;
}

.in-page-link {
    cursor: pointer;
}

.nav-anchor > nav ul > li:before {
    transition:background  0.5s linear;
    -webkit-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -ms-transition: background 0.5s linear;
}

.menu-scalable {
    transition: 1.5s ease;
    -webkit-transition: 1.5s ease;
    -o-transition: 1.5s ease;
    -moz-transition: 1.5s ease;
    -ms-transition: 1.5s ease;
}

a, a:visited, a:focus {
    color: #414141;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #E1E8F0;
    text-decoration: none;
}

.clr { 
    clear: both;
}

.col-center {
    float: none;
    margin: 0 auto;
}

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

.fullwidth {
    width: 100%;
}

#wrapper {
    opacity: 0;
}

.loader-wrap {
    height: 100%;
    height: 100vh;
    width: 100%;
    background-color: #0e0e0e;
    position: fixed;
    z-index: 110;
    font-weight: bold;
    font-size: 3em;
    color: #E1E8F0;
}

.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #659eb2;

    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #E1E8F0;

    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -ms-animation: spin 3s linear infinite;
    -o-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
 }

 .loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #008b75;

    -webkit-animation: spin 1.5s linear infinite;
    -ms-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
 }

@-webkit-keyframes spin {
   0%   { 
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}
@keyframes spin {
   0%   { 
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }
   100% {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}


#wrapper, .loader-wrap {
    transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5em;
    line-height: 1.5;
}

@media (min-width: 768px) {
   .container {
        max-width: 750px;
        margin: 0 auto;
        padding: 0;
    } 
    
    .view-till-768 {
        display: none;
    }
}

@media (min-width: 992px) {
   .container {
        max-width: 970px;
    } 
}

@media (min-width: 1200px) {
   .container {
        max-width: 1070px;
    } 
}

@media (min-width: 1500px) {
   .container {
       max-width: 1170px;
   } 

   .about-us, .services, .our-team, .our-portfolio, .contact-us {
       width: 100%;
   }
}

@media (min-width: 1700px) {
   .container {
        max-width: 1470px;
    } 
}

#wrapper {
    position: absolute;
    display: table;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

/* MENU MOBILE */

.menu-icon {
    display: none;
    position: fixed;
    top: 1.5em;
    right: 1.5em;
    z-index: 101;
}

.menu-icon:before {
    color: #659eb2;
    font-size: 2em;
    content: "\f0c9";
    background: #323232;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding: 0.3em 0.4em;
    text-align:center;
    font-family: fontawesome;
    cursor: pointer;
}

.menu-scalable {
    background: #252424;
    border-bottom: 4px solid #659eb2;
    padding: 1em;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 160px;
    width: 100%;
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    z-index: 100;
    display: none;
}

.menu-scalable.is-open {
    transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
}

.menu-scalable > ul {
    position: absolute;
    display: inline-block;
    text-transform: uppercase;
    color: #659eb2;
    font-size: 1.3em;
    list-style: none;
    text-align: left;
    width: 300px;
    padding: 1em 2em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.menu-scalable.is-open {
    transform: translateY(0%);
    -o-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
}

.menu-scalable ul > li {
    padding: 0.2em;
}

.menu-scalable > ul > li {
    cursor: pointer;
    color: #E1E8F0;
}

.menu-scalable > ul > li > ul {
    padding-left: 2em;
    padding-top: 0.5em;
    text-transform: uppercase;
}

.menu-scalable > ul > li > ul > li {
    cursor: pointer;
    color: #161616;
}

.menu-scalable > ul > li > ul > li:hover {
    opacity: 0.5;
}

.change-lang {
    position: fixed;
    right: 2em;
    top: 5em;
    color: #b3b4b3;
    list-style: none;
}

.container > .change-lang {
    display: none;
}

@media (min-width: 992px) {
    .container > .change-lang {
        display: block;
    }
    
    html[data-page=home] .container > .change-lang {
        top: 2em;
    }
}

.menu-scalable > ul > .change-lang {
    position: initial;
}

.change-lang li {
    display: inline-block;
    cursor: pointer;
}

.change-lang li:nth-child(2) {
    width: 25px;
    text-align: center;
    cursor: default;
}

.section-title {
    font-size: 2.6em;
    color: #659eb2;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5em;
    display: none;
}

/* Y_AXIS MENU */

.left-bar {
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    height: 100%;
    z-index: 100;
}

.left-bar > .y-axis {
    height: 100%;
    float: left;
}

.y-axis > .arrow {
    width: 59px;
    position: relative; 
    top: 5px;
}

.y-axis > .axis {
    width: 59px;
    height: 100%;
    background: url(../images/y-axis.png) repeat-y center;
    position: absolute;
}

.left-bar > .nav-anchor {
    float: left;
    margin-top: 5em;
}

.nav-anchor > nav ul {
    list-style: none;
    display: inline-block;
    margin-top: 2em; 
}

.nav-anchor > nav ul > li {
    padding: 1.2em 0;
    font-size: 1.2em;
    text-transform: uppercase;
}

.nav-anchor > nav ul > li a {
    color: #414141;
}

.nav-anchor > nav ul > li.active a, .change-lang li:hover, .portfolio-dropdown:hover {
    color: #E1E8F0;
    text-shadow: 0px 0px 9px #fdffe8;
    -o-text-shadow: 0px 0px 9px #fdffe8;
    -ms-text-shadow: 0px 0px 9px #fdffe8;
    -moz-text-shadow: 0px 0px 9px #fdffe8;
    -webkit-text-shadow: 0px 0px 9px #fdffe8;
}

.nav-anchor > nav ul > li:before {
    position: absolute;
    content: "";
    margin-top: 0.5em;
    left: 0.8em;
    width: 1em; 
    height: 2px;
}

.nav-anchor.sticky > nav ul > li:before {
    left: -2.3em;
    width: 1.05em;
}

.nav-anchor > nav ul > li.active:before {
    background: #659eb2;
}

.logo {
    width: 3em;
    margin-bottom: 2em;
    opacity: 0;
}

.nav-anchor.sticky {
    position: fixed;
    margin-left: 59px;
}

.nav-anchor.sticky > .logo {
    opacity: 1;
}

.main-content {
    width: 80%;
    margin: 0 auto;
}

.main-block {
    min-height: 100vh;
    position: relative;
}

.portfolio-dropdown {
    cursor: pointer;
    position: fixed;
    top: 1.5em;
    right: 1.5em;
    font-size: 1.3em;
    color: #b3b4b3;
    z-index: 101;
}

.portfolio-dropdown i {
    color: #008b75;
    font-size: 1.8em;
    line-height: 0;
    position: relative;
    top: 5px;
}

/* ABOUT */

.logo-gif {
    opacity: 1;
    width: 20%;
    padding: 2em 0.5em;
    margin: 0 auto;
}

.logo-gif.hide {
    opacity: 0;
}

.about-us {
    text-align: center;
    padding: 0.5em;
    margin: 0 auto;
    margin-left: 72px;
    padding-top: 3em;
}

@media (max-height: 580px) {
    .logo {
        display: none;
    }
}

.about-col {
    display: inline-block;
    padding: 1em;
    font-size: 1.1em;
    width: 100%;
    text-align: center;    
    vertical-align: top;
}

.about-col h1 {
    color: #659eb2;
    margin-bottom: 0.5em;
}

@media (min-width: 768px) {
    .about-col {
        width: 49%;
    }
    
    .about-col:nth-child(3) {
        width: 98%;
    }
}

@media (min-width: 1200px) {
    .about-col, .about-col:nth-child(3) {
        width: 32.5%;
    }
}

@media (min-width: 1500px) {
    .about-col {        
        padding: 1.5em;
    }
    .about-col h1 {  
        margin-bottom: 1.1em;
    }
    
    .about-col, .about-col:nth-child(3) {
        width: 32.5%;
    }
}

/* SERVICES */

.what-we-do {
    margin-left: 72px;
    padding-top: 3em;
}

.service-col {
    display: inline-block;
    width: 100%;
    padding: 1em 0.5em;;
    font-size: 1.1em;
}

.service-icon, .service-descr {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.service-icon > img {
    width: 40%;
    margin-bottom: 0.5em;
}

.service-icon {
    padding: 0.5em;
    text-align: center;
}

.service-icon h1 {
    font-size: 1.0em;
    text-transform: uppercase;
    text-align: center;
    color: #659eb2;
}

@media (min-width: 768px) {
    .service-icon {
        width: 45%;
    }

    .service-descr {
        width: 53%;
    }
}

@media (min-width: 1200px) {
    .service-col {
        width: 49%;
    }
}

/* OUR TEAM */

.our-team, .our-portfolio {
    margin-left: 72px;
    padding-top: 3em;
    text-align: center;
}

.teammate {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0.5em;
    margin-bottom: 2.5em;
}

@media (min-width: 768px) {
    .teammate {
        width: 49%;
        max-width: 250px;
    }
}

@media (min-width: 1200px) {
    .teammate {
        width: 24.5%;
        max-width: 300px;
        margin-bottom: 0;
    }
}

.teammate h2 {
    text-transform: uppercase;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

.teammate:hover h2 {
    color: #018faa;
    text-shadow: 0px 0px 5px #018faa;
    -o-text-shadow: 0px 0px 5px #018faa;
    -ms-text-shadow: 0px 0px 5px #018faa;
    -moz-text-shadow: 0px 0px 5px #018faa;
    -webkit-text-shadow: 0px 0px 5px #018faa;
}

.teammate h3 {
    line-height: 2;
    font-size: 1.1em;
}

.teammate a {
    cursor: default;
    width: 90%;
    filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(1);;
    -moz-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(1);
    -webkit-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(1);
    -o-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(1);
    -ms-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(1);
}

.teammate a > img {
    width: 100%;
}

.teammate:hover a {
    filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(0);;
    -moz-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(0);
    -webkit-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(0);
    -o-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(0);
    -ms-filter: /*saturate(3) sepia(1) hue-rotate(230deg)*/ grayscale(0);
}

/* CONTACT */

.contact-us {
    margin-left: 72px;
    padding-top: 1em;
    text-align: center;
    width: 100%;
}

.contact-form {
    display: inline-block;
    text-align: right;
    position: relative;
    width: 100%;
    background: #414141;
    background: rgba(65, 65, 65, 0.1);
    padding: 1em;
    padding-bottom: 4em;
}

.form-progress {
    color: transparent;
    display: inline-block;
    padding: 1em;
    padding-right: 2em;
}

.form-progress.alert-danger {
    color: #b94747;
}

.form-progress.alert-success {
    color: #67bb59;
}

.form-progress.alert-info {
    color: #E1E8F0;
}


.contact-form > input, .contact-form > textarea {
    display: block;
    padding: 0.5em;
    border: 0;
    color: #E1E8F0;
    border-bottom: 0.2em solid #646464;    
    background: none;
    width: 90%;
    margin: 1.5em auto;
    font-family: inherit;
    font-size: 1.15em;
}

input.has-error {
    border-color: #b94747 !important; 
}

input.no-error {
    border-color: #67bb59 !important;
}


.contact-form > textarea {
    border: 0;
    resize: none;
    background: #414141;
    background: rgba(65, 65, 65, 0.1);
}

textarea.has-error {
    background: rgba(185, 71, 71, 0.1) !important; 
}

textarea.no-error {
    background: rgba(103, 187, 89, 0.1) !important;
}


.contact-form > textarea:focus {
    background: #b94747;
    background: rgba(0, 139, 117, 0.1);
}

.submit-block, .see-more {
    display: inline-block;
    padding-right: 1.5em;
    cursor: pointer;
}

.see-more {
    margin-top: 1.5em;
}

.contact-form > .submit-block > button, .see-more > button {
    padding: 0.5em;
    text-align: center;
    border: 0;
    cursor: pointer;
    background: none;
    color: #646464;
    text-transform: uppercase;
    font-size: 1.6em;
}

.contact-form > .submit-block > button + img, .see-more > button + img {
    height: 1.2em;
}

.contact-form > .submit-block:hover > button, .see-more:hover > button {
    color: #008b75;
    text-shadow: 0px 0px 9px #008b75;
    -o-text-shadow: 0px 0px 9px #008b75;
    -ms-text-shadow: 0px 0px 9px #008b75;
    -moz-text-shadow: 0px 0px 9px #008b75;
    -webkit-text-shadow: 0px 0px 9px #008b75;
}

.contact-form > .submit-block > button:focus, .see-more:focus > button {
    outline: none;
}

.contact-form > input:focus {
    border-color: #008b75;
}

.socials {
    text-align: center;
    position: absolute;
    top: 0;
    right: -3em;
    top: 50%;
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-bottom: 1.5em;
}

.socials a > svg {
    padding: 0.3em 0;
    width: 30px;
    display: inline-block;
    fill: #414141;
}

.socials a:hover > svg {
    fill: #E1E8F0;
}

.socials-mobile {
    margin-top: 0.5em;
    display: none;
    font-size: 2em;
    color: #E1E8F0;
}

.socials-mobile a > svg {
    width: 30px;
    display: inline-block;
    fill: #E1E8F0;
}

.contact-data {
    text-align: center;
    width: 100%;
    position: relative;
    margin-top: -3em;
    background: #008b75;
    background: rgba(0, 139, 117, 0.3);
    padding: 1.5em 0em;
    display: inline-block;
}

.contact-data-block {
    width: 49%;
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 640px) {
    .contact-form {
        padding: 0;
    }
    
    .contact-data-block {
        margin: 1em 0;
        width: 100%;
    }
}

.data-icon {
    display: inline-block;
    vertical-align: middle;
    height: 2.0em;
    margin-right: 0.5em;
}

.data-text {
    display: inline-block;
    vertical-align: middle;
    color: #E1E8F0;
}

@media (min-width: 768px) {
    .contact-form, .contact-data {
        width: 500px;
    }
}

@media (min-width: 992px) {
    .contact-form {
        position: relative;
        margin-left: -6em;
    }
    
    .contact-data {
        display: block;
        margin-left: 12em;
    }
}

@media (min-width: 1200px) {
    .contact-form {
        width: 650px;
        position: relative;
        margin-left: -11em;
    }
    
    .contact-data {
        width: 600px;
        margin-left: 14em;
    }
}

@media (min-width: 1500px) {
    .contact-data {
        margin-left: 18em;
    }
}

@media (min-width: 1700px) {
    .contact-data {
        margin-left: 26em;
    }
}

/* X ASIS */

.stay-on-x {
    position: absolute;
    bottom: 0;
    width: 100%;
    right: 3em;
}

.container + .stay-on-x {
    position: relative;
}

.x-axis {
    width: 100%;
    height: 59px;
    background: url(../images/x-axis.png) repeat-x center;
    position: absolute;
    right: 91px;
}

.x-arrow {
    width: 91px;
    height: 59px;
    position: relative;
    top: 9px;
    right: 0;
    float: right;
}

/* RESPONSIVE */

@media (min-width: 1200px) and (max-width: 1499.9px) {
    .about-us, .what-we-do, .our-team, .our-portfolio, .contact-us {
        margin-left: 143px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .our-team, .our-portfolio {
        margin-left: 143px;
    }
}

@media (min-height: 630px) and (min-width: 1200px) {
    .about-us, .what-we-do, .our-team, .our-portfolio, .contact-us {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }
    
    .what-we-do, .our-team, .our-portfolio, .contact-us {
        padding-top: 0;
    }
}

.copyright {
    color: #008b75;
    position: absolute;
    right: 10em;
}

.copyright-mobile {
    color: #008b75;
    text-align: center;
    display: none;
    margin-bottom: 2.5em;
}

@media (max-width: 991.99px), (max-height: 500px) {
    .menu-icon, .menu-scalable, .section-title, .socials-mobile, .copyright-mobile {
        display: block;
    }
    
    .left-bar, .portfolio-dropdown, .portfolio-go, .stay-on-x, .copyright, .go-home, .go-home + .change-lang, .portfolio-dropdown + .change-lang, .go-back {
        display: none;
    }
    
    .main-content {
        width: 100%;
    }
    
    .about-us, .what-we-do, .our-team, .our-portfolio, .contact-us {
        margin-left: 0;
    }
    
    .logo-gif {
        opacity: 1 !important;
        width: 30%;
        margin: 0.5em;
    }
    
    .service-descr {
        text-align: center;
        font-size: 1em;
    }
    
    .about-us {
        padding-top: 0em;
    }
    
    .about-col {
        padding: 1em 0.5em;
    }
    
    .about-col h1 {
        margin-bottom: 0.5em;
    }
    
    .portfolio-dropdown {
        position: absolute;
    }
    
    .contact-form {
        padding-bottom: 1em;
    }
    
    .contact-data {
        margin: 0em auto;
        margin-bottom: 1.5em;
    }
    
    .contact-data a {
        color: #E1E8F0;
    }
    
    .portfolio-showcase {
        margin-bottom: 1em;
    }
}

@media (max-width: 768px) {
    .logo-gif {
        width: 40%;
    }
}

/* PORTFOLIO */

.without-axis {
    min-height: 100vh;
}

.go-home {
    position: fixed;
    right: 2em;
    top: 2em;
    cursor: pointer;
}


    
html[data-page=home] .go-home {
    display: none;
}

.go-home svg {
    width: 30px;
    fill: #008b75;
}

.go-home:hover svg {
    fill: #E1E8F0;
}

.portfolio-filter {
    width: 100%;
    margin: 1em auto;
    text-align: center;
}

.portfolio-filter li {
    text-align: center;
    font-size: 1.4em;
    text-transform: uppercase;
    padding: 0.5em;
    display: inline-block;
    color: #414141;
    cursor: pointer;
    display: inline-block;
}

@media(max-width: 370px) {
    .portfolio-filter li {
        font-size: 1em;
    }
}

.portfolio-filter li:hover, .portfolio-filter li.active {
    color: #659eb2;
    text-shadow: 0px 0px 9px #659eb2;
    -o-text-shadow: 0px 0px 9px #659eb2;
    -ms-text-shadow: 0px 0px 9px #659eb2;
    -moz-text-shadow: 0px 0px 9px #659eb2;
    -webkit-text-shadow: 0px 0px 9px #659eb2;
}

.portfolio-item {
    position: relative;
    width: 100%;
    float: left;
    padding: 9px;
}

.item-inner {
    display: block;
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
    cursor: pointer;
}

.item-caption {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(12,12,19, 0.61);
    color: #e4ebf3;
    padding: 1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    height: 40%;
}

.item-caption span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    padding: 1em;
}

.item-cover {
    width: 100%;
    z-index: -1;
    position: relative;
    transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.item-cover img {
    display: block;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12,12,19, 0.33);
    text-align: center;
    transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.item-inner:hover > .item-overlay, .item-inner:focus > .item-overlay {
    background: rgba(12,12,19, 0.53);
}

.item-inner:hover > .item-caption, .item-inner:focus > .item-caption {
    height: 100%;
}

.item-inner:hover .item-cover, .item-inner:focus .item-cover,
.item-inner:hover .item-overlay, .item-inner:focus .item-overlay {
    transform: scaleX(1.05) scaleY(1.07);
    -o-transform: scaleX(1.05) scaleY(1.07);
    -ms-transform: scaleX(1.05) scaleY(1.07);
    -moz-transform: scaleX(1.05) scaleY(1.07);
    -webkit-transform: scaleX(1.05) scaleY(1.07);
}

@media (min-width: 640px) {    
    .portfolio-item {
        width: 50%;
    }
}

@media (min-width: 768px) {    
    .portfolio-filter li {
        width: auto;
        display: inline-block;
    }
}

@media (min-width: 992px) {    
    .portfolio-filter li {
        min-width: 19.5%;
        padding: 0.5em 1em;
    }
    
    .portfolio-item {
        width: 33%;
        padding: 12px;
    }
}

@media (min-width: 1200px) {
    .portfolio-filter {
        width: 90%;
    }
    
    .portfolio-item {
        padding: 15px;
    }
}

@media (min-width: 1700px) {
    .portfolio-filter {
        width: 70%;
    }
    
    .portfolio-item {
        width: 25%;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .our-portfolio .portfolio-item {
        width: 50%;
    }
    
    .our-portfolio .portfolio-item:nth-child(5), .our-portfolio .portfolio-item:nth-child(6) {
        display: none !important;
    }
}

@media (max-width: 1699.99px) {
    .our-portfolio .portfolio-item:nth-child(7), .our-portfolio .portfolio-item:nth-child(8) {
        display: none !important;
    }
}

/* Lightcase */

#lightcase-overlay {
    background: #0c0c13;
}

#lightcase-info {
    width: 100%;
    text-align: center;
 }
 
 @media (min-width: 768px) {
     #lightcase-info {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        min-width: 400px;
     }
 }
 
#lightcase-info #lightcase-sequenceInfo {
    color: #008b75;
    font-size: 1em;
    text-align: center;
}

#lightcase-info #lightcase-title {
    font-size: 1.1em;
    color: #008b75;
    font-style: italic;
    margin-top: 1em;
    background: #000;
    background: rgba(0,0,0,0.64);
    padding: 0.25em 0.5em;
    display: inline-block;
}

@media (max-width: 768px) {
    #lightcase-info #lightcase-title {
        display: none !important;
    }
}
 
.lightcase-icon-prev:before, .lightcase-icon-next:before, .lightcase-icon-close:before {
    content: '';
    height: 32px;
    width: 32px;
}
 
.lightcase-icon-next:before {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDMxLjU0NiAzMS41NDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMxLjU0NiAzMS41NDY7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzAuMTcxLDE2LjY2SDAuODg4QzAuMzk3LDE2LjY2LDAsMTYuMjYzLDAsMTUuNzczYzAtMC40OSwwLjM5Ny0wLjg4OCwwLjg4OC0wLjg4OGgyOS4yODMgICAgYzAuNDksMCwwLjg4OCwwLjM5NywwLjg4OCwwLjg4OEMzMS4wNTksMTYuMjYzLDMwLjY2MSwxNi42NiwzMC4xNzEsMTYuNjZ6IiBmaWxsPSIjMDA4Yjc1Ii8+Cgk8L2c+Cgk8Zz4KCQk8cGF0aCBkPSJNMTUuNTI5LDMxLjMwMmMtMC4yMzIsMC0wLjQ2NC0wLjA5MS0wLjYzOC0wLjI3MWMtMC4zNDEtMC4zNTItMC4zMzItMC45MTQsMC4wMjEtMS4yNTUgICAgbDE0LjQ3MS0xNC4wMDRMMTQuOTEyLDEuNzY4Yy0wLjM1Mi0wLjM0LTAuMzYxLTAuOTAyLTAuMDIxLTEuMjU1YzAuMzQyLTAuMzUyLDAuOTAyLTAuMzYsMS4yNTUtMC4wMmwxNS4xMywxNC42NDIgICAgYzAuMTczLDAuMTY3LDAuMjcsMC4zOTcsMC4yNywwLjYzOGMwLDAuMjQtMC4wOTcsMC40Ny0wLjI3LDAuNjM3bC0xNS4xMywxNC42NDNDMTUuOTc0LDMxLjIxOSwxNS43NTEsMzEuMzAyLDE1LjUyOSwzMS4zMDJ6IiBmaWxsPSIjMDA4Yjc1Ii8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
 
.lightcase-icon-prev:before {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDMxLjA1OSAzMS4wNTkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMxLjA1OSAzMS4wNTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzAuMTcxLDE2LjQxNkgwLjg4OEMwLjM5OCwxNi40MTYsMCwxNi4wMiwwLDE1LjUyOWMwLTAuNDksMC4zOTgtMC44ODgsMC44ODgtMC44ODhoMjkuMjgzICAgIGMwLjQ5LDAsMC44ODgsMC4zOTgsMC44ODgsMC44ODhDMzEuMDU5LDE2LjAyLDMwLjY2MSwxNi40MTYsMzAuMTcxLDE2LjQxNnoiIGZpbGw9IiMwMDhiNzUiLz4KCTwvZz4KCTxnPgoJCTxwYXRoIGQ9Ik0xNi4wMTcsMzEuMDU5Yy0wLjIyMiwwLTAuNDQ1LTAuMDgzLTAuNjE3LTAuMjVMMC4yNzEsMTYuMTY2QzAuMDk4LDE1Ljk5OSwwLDE1Ljc3LDAsMTUuNTI5ICAgIGMwLTAuMjQsMC4wOTgtMC40NzEsMC4yNzEtMC42MzhMMTUuNCwwLjI1YzAuMzUyLTAuMzQxLDAuOTE0LTAuMzMyLDEuMjU1LDAuMDJjMC4zNCwwLjM1MywwLjMzMSwwLjkxNS0wLjAyMSwxLjI1NUwyLjE2MywxNS41MjkgICAgbDE0LjQ3MSwxNC4wMDRjMC4zNTIsMC4zNDEsMC4zNjEsMC45MDIsMC4wMjEsMS4yNTVDMTYuNDgsMzAuOTY4LDE2LjI0OSwzMS4wNTksMTYuMDE3LDMxLjA1OXoiIGZpbGw9IiMwMDhiNzUiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K)
}

.lightcase-icon-close:before {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDMxLjA1OSAzMS4wNTkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMxLjA1OSAzMS4wNTk7IiB4bWw6c3BhY2U9InByZXNlcnZlIiB3aWR0aD0iMzJweCIgaGVpZ2h0PSIzMnB4Ij4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzAuMTcxLDMxLjA1OWMtMC4yMjYsMC0wLjQ1NC0wLjA4Ny0wLjYyNy0wLjI2TDAuMjYsMS41MTVjLTAuMzQ3LTAuMzQ2LTAuMzQ3LTAuOTA4LDAtMS4yNTUgICAgczAuOTA4LTAuMzQ3LDEuMjU1LDBsMjkuMjg0LDI5LjI4NGMwLjM0NywwLjM0NywwLjM0NywwLjkwOCwwLDEuMjU1QzMwLjYyNSwzMC45NzIsMzAuMzk5LDMxLjA1OSwzMC4xNzEsMzEuMDU5eiIgZmlsbD0iIzAwOGI3NSIvPgoJPC9nPgoJPGc+CgkJPHBhdGggZD0iTTAuODg4LDMxLjA1OWMtMC4yMjgsMC0wLjQ1NC0wLjA4Ny0wLjYyOC0wLjI2Yy0wLjM0Ny0wLjM0Ny0wLjM0Ny0wLjkwOCwwLTEuMjU1TDI5LjU0NCwwLjI2ICAgIGMwLjM0Ny0wLjM0NywwLjkwOC0wLjM0NywxLjI1NSwwYzAuMzQ3LDAuMzQ3LDAuMzQ3LDAuOTA5LDAsMS4yNTVMMS41MTUsMzAuNzk5QzEuMzQyLDMwLjk3MiwxLjExNSwzMS4wNTksMC44ODgsMzEuMDU5eiIgZmlsbD0iIzAwOGI3NSIvPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
}

@media (min-width: 992px) {
    a[class*=lightcase-icon-].lightcase-icon-prev {
        left: 55px;
    }
    a[class*=lightcase-icon-].lightcase-icon-next {
        right: 55px;
    }
}

#lightcase-overlay {
    cursor: default !important;
}

.lightcase-icon-next:hover:before, .lightcase-icon-prev:hover:before, .lightcase-icon-close:hover:before {
    opacity: 0.44;
}

@media (max-height: 650px) and (min-width: 992px) {
    #lightcase-case {
        margin-top: 0 !important;
        top: 6% !important;
    }
}