@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url("../fonts/opensans.woff") format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url("../fonts/opensansbold.woff") format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: local('Open Sans Italic'), local('OpenSans-Italic'), url("../fonts/opensansitalic.woff") format('woff');
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

html,
body {
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    color: #292929;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

.no-overflow {
    overflow: hidden
}

::-moz-selection {
    color: white;
    background: #292929;
}

::selection {
    color: white;
    background: #292929;
}

.is-hidden {
    display: none;
}

h1 {
    font-size: 34px;
    line-height: 1.75;
}

h2 {
    font-size: 18px;
    line-height: 28px;
}

h3 {
    font-size: 18px;
    line-height: 1.5;
}

h4 {
    font-size: 18px;
    line-height: 1.75;
    margin-top: 30px;
}

h4:first-of-type {
    margin-top: 0;
}

@media screen and (max-width: 660px) {
    h4 {
        font-size: 16px;
    }
}

textarea {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
}

p {
    line-height: 1.75;
}

a {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a {
    cursor: pointer;
    color: #9d9d9d;
    text-decoration: none;
}

a:hover {
    color: #292929;
}

a:before {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.wrapper {
    max-width: 1100px;
    width: 87.5%;
    position: relative;
    margin: 0px auto;
}

.wrapper-wide {
    width: 100%;
    max-width: 1800px;
    position: relative;
    margin: 0px auto;
}

.header {
    padding: 50px 0;
    z-index: 100;
    font-size: 17px;
    position: relative;
    line-height: 30px;
}

.header .wrapper {
    height: 30px;
}

.header #tools_lv {
    display: inline-block;
}

.header #tools_lv svg {
    fill: #9d9d9d;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    float: left;
}

.header #tools_lv.hidden {
    opacity: 0;
}

.header #tools_lv:hover svg {
    fill: #292929;
}

.header nav {
    position: absolute;
    top: 0;
    right: 0;
}

.header nav a {
    margin-left: 30px;
    font-size: 16px;
    color: #9d9d9d;
}

.header nav a:hover {
    color: #292929;
}

.header nav a.current {
    color: #292929;
}

.header nav a.current:hover {
    color: #292929;
}

.header #mobile-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header #mobile-navigation.active {
    opacity: 1;
    visibility: visible;
}

.header #mobile-navigation a {
    margin-right: 15px;
    color: #a0a4a3;
    top: 2px;
    position: relative;
}

.header #mobile-navigation a:hover,
.header #mobile-navigation a.current {
    color: #292929;
}

.header #mobile-nav {
    display: none;
    position: absolute;
    top: -15px;
    right: -10px;
    z-index: 9999;
    padding: 15px;
    cursor: pointer;
}

.header #mobile-nav.toggled .bar1 {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    transform-origin: 50%;
    -ms-transform-origin: 50%;
    -webkit-transform-origin: 50%;
    margin-top: -1px;
}

.header #mobile-nav.toggled .bar2 {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transform-origin: 50%;
    -ms-transform-origin: 50%;
    -webkit-transform-origin: 50%;
    margin-bottom: -1px;
}

.header #mobile-nav span {
    display: inline-block;
    display: none;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    vertical-align: middle;
    float: left;
    margin-right: 10px;
}

.header #mobile-nav .inner {
    position: relative;
    width: 30px;
    height: 30px;
    float: left;
    vertical-align: middle;
    display: inline-block;
}

.header #mobile-nav .bar {
    width: 80%;
    height: 2px;
    position: absolute;
    background: #999999;
    left: 10%;
    -webkit-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.header #mobile-nav .bar1 {
    top: 50%;
    margin-top: -6px;
}

.header #mobile-nav .bar2 {
    bottom: 50%;
    margin-bottom: -6px;
}

@media screen and (max-width: 480px) {
    .header {
        padding: 30px 0;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .header nav {
        display: none;
    }
    .header nav a {
        font-size: 16px;
        margin-left: 15px;
    }
    .header #mobile-nav {
        display: block;
    }
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.superscript {
    font-size: .83em;
    line-height: 0.5em;
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}

.table {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.view {
    position: relative;
    padding-bottom: 4px;
    line-height: 1;
    color: #292929;
}

.view:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.25;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view:before {
        background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-repeat: repeat-x;
        opacity: 0.5;
    }
}

.view:hover {
    position: relative;
}

.view:hover:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.5;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view:hover:before {
        background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-repeat: repeat-x;
        opacity: 1;
    }
}

@media screen and (max-width: 480px) {
    .view {
        line-height: 1;
        padding-bottom: 0;
    }
}

.view.white {
    position: relative;
}

.view.white:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.2;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view.white:before {
        background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-repeat: repeat-x;
        opacity: 0.4;
    }
}

.view.white:hover {
    color: white;
    position: relative;
}

.view.white:hover:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.5;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 50%, #fff 50%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, #fff 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view.white:hover:before {
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 75%, #fff 75%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, #fff 75%);
        background-repeat: repeat-x;
        opacity: 1;
    }
}

.view.grey {
    position: relative;
}

.view.grey:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.25;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view.grey:before {
        background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-repeat: repeat-x;
        opacity: 0.5;
    }
}

.view.grey:hover {
    color: white;
    position: relative;
}

.view.grey:hover:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.5;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .view.grey:hover:before {
        background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-repeat: repeat-x;
        opacity: 1;
    }
}

.sub-heading {
    margin: 100px 0;
    color: #9d9d9d;
    font-size: 18px;
}

.sub-heading.top {
    margin-top: 50px !important;
}

@media screen and (max-width: 480px) {
    .sub-heading {
        margin: 50px 0;
        font-size: 16px;
        line-height: 1.5;
    }
}


/* main page */

.title {
    padding: 100px 0 140px 0;
    overflow-x: hidden;
}

.title p {
    font-size: 38px;
    line-height: 1.75;
    position: relative;
}

.title p span {
    position: relative;
}

.title p span:before {
    content: '';
    width: 110%;
    position: absolute;
    top: 50%;
    left: -5%;
    margin-top: -1px;
    height: 3px;
    background: #292929;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.title p a {
    font-size: 22px;
}

.title .latest {
    font-size: 22px;
}

.title .latest span {
    font-size: 18px;
    text-decoration: uppercase;
}

.title .sub-heading {
    float: none;
    margin: 50px 0 0;
    display: inline-block;
}

.title .sub-heading:hover {
    color: #292929;
}

.title .sub-heading span {
    text-transform: uppercase;
    font-size: 16px;
}

.title_text {
    cursor: pointer;
}

@media screen and (max-width: 660px) {
    .title {
        padding: 50px 0 100px
    }
    .title p {
        font-size: 24px;
    }
}


/* about */

.about {
    padding: 120px 0 120px;
}

.about .col {
    float: left;
}

.about .col:first-child {
    width: 33.3333%;
    margin-right: 36px;
}

.about .col:last-child {
    width: calc(66.6666% - 36px);
}

.about p,
.about ul {
    color: #9d9d9d;
    font-size: 18px;
}

.about p a,
.about ul a {
    color: #9d9d9d;
    position: relative;
}

.about p a:before,
.about ul a:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.2;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 50%, #9d9d9d 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .about p a:before,
    .about ul a:before {
        background-image: -webkit-linear-gradient(top, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-image: linear-gradient(to bottom, rgba(157, 157, 157, 0) 75%, #9d9d9d 75%);
        background-repeat: repeat-x;
        opacity: 0.4;
    }
}

.about p a:hover,
.about ul a:hover {
    color: white;
    position: relative;
}

.about p a:hover:before,
.about ul a:hover:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.5;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 50%, #fff 50%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, #fff 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px;
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .about p a:hover:before,
    .about ul a:hover:before {
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 75%, #fff 75%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, #fff 75%);
        background-repeat: repeat-x;
        opacity: 1;
    }
}

.about li {
    line-height: 1.75;
}

.about li:not(.noprefix):before {
    content: '– ';
}

.icons {
    display: block;
    margin-top: 10px;
}

@media screen and (max-width: 660px) {
    .about {
        padding: 50px 0;
    }
    .about p,
    .about ul {
        font-size: 16px;
    }
    .about .col:first-child {
        margin: 10px 0px 30px 0;
        width: 100%;
    }
    .about .col:last-child {
        width: 100%;
    }
    .about .icons {
        display: none;
    }
}


/* footer */

.footer {
    padding: 50px 0;
    float: left;
    width: 100%;
    z-index: 100;
    position: relative;
    color: #9d9d9d;
}


/*.footer .links {
    display: block;
    margin-top: 10px;
}*/

.footer a {
    color: #9d9d9d;
    /*margin: 0 20px 0 0;*/
}

.footer a:hover,
.footer a.current {
    color: #292929;
}

.footer .copy {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 0;
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 50px 0 !important;
        font-size: 14px;
    }
    .footer .copy {
        position: static;
        margin-top: 30px;
    }
}

.page-about {
    height: 100%;
    position: relative;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAAAAACMmsGiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUCB1jUlGRkWH6CQRMf//y8oJZAFUaCmUwcfODAAAAAElFTkSuQmCC');
    color: white;
    min-height: 850px;
}

@media screen and (max-width: 660px) {
    .page-about {
        min-height: 1070px;
    }
}

.page-about .header a:hover,
.page-about .footer a:hover {
    color: white !important;
}

.page-about #tools_lv:hover svg {
    fill: white !important;
}

.page-about .footer {
    position: absolute;
    bottom: 0;
}

.page-about .current {
    color: white !important;
}

.e-mail:before {
    content: "\0069\006e\0066\006f";
}

.e-mail:after {
    content: "\0040\0074\006f\006f\006c\0073\002e\006c\0076";
}

.e-mail-privacy:before {
    content: "\0070\0072\0069\0076\0061\0063\0079";
}

.e-mail-privacy:after {
    content: "\0040\0074\006f\006f\006c\0073\002e\006c\0076";
}

.e-mail-service:before {
    content: "\0073\0065\0072\0076\0069\0063\0065";
}

.e-mail-service:after {
    content: "\0040\0074\006f\006f\006c\0073\002e\006c\0076";
}

.contact-form {
    display: block;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 10px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
}

.contact-form button {
    text-transform: uppercase;
    outline: 0;
    background: #4CAF50;
    width: 150px;
    border: 0;
    padding: 12px;
    color: white;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

.contact-form button:not(.button-disable):hover,
.contact-form button:not(.button-disable):active,
.contact-form button:not(.button-disable):focus {
    background: #43A047;
}

.contact-form .loadingSpinner {
    border: 4px solid #FFF;
    border-top-color: transparent;
    border-left-color: transparent;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    border-radius: 50%;
    animation: loadingSpinner 0.7s infinite linear;
    -webkit-animation: loadingSpinner 0.7s infinite linear;
}

.contact-form button {
    position: relative;
}

.contact-form .button-disable {
    cursor: not-allowed;
    pointer-events: none;
}

.contact-form button .loadingSpinner {
    margin-top: -14px;
    margin-left: -14px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.contact-form .captcha {
    margin-bottom: 10px;
}

.contact-form .captcha img,
.contact-form .captcha input {
    display: inline-block;
    vertical-align: middle;
}

.contact-form .captcha img {
    height: 35px;
    margin-top: -10px;
}

@keyframes loadingSpinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loadingSpinner {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.fill,
.overlay,
.portfolio .item .background,
.portfolio .item:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.portfolio .item {
    width: 33.33%;
    height: 50vh;
    max-height: 600px;
    position: relative;
    text-align: left;
    background: rgba(41, 41, 41, 0.05);
    float: left
}

.portfolio .item .background {
    z-index: 1;
    background-size: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 1
}

.portfolio .item.hidden .background {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0)
}

.portfolio .item:nth-child(1) .background {
    background-position: 70%
}

.portfolio .item:nth-child(2) .background {
    background-position: center
}

.portfolio .item .info {
    z-index: 3;
    position: absolute;
    bottom: 50px;
    left: 50px
}

@media screen and (max-width: 1000px) {
    .portfolio .item {
        width: 100%
    }
    .portfolio .item .info {
        left: 6.25%
    }
    .portfolio .item .background {
        background-position: center
    }
    .portfolio .item:nth-child(1) .background {
        background-position: center
    }
}

.portfolio .item .info,
.portfolio .item:after {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0
}

.portfolio .item h4 {
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.8)
}

.portfolio .item p {
    color: #9d9d9d
}

.portfolio .item:not(.hidden):hover .info,
.portfolio .item:not(.hidden):hover:after {
    opacity: 1
}

.portfolio .item:after {
    content: '';
    z-index: 2;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.4)), color-stop(100%, rgba(255, 255, 255, 0.8)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#66ffffff', endColorstr='#ccffffff', GradientType=0)
}

.col-3 {
    width: calc(33.33% - 32px);
    margin: 0 48px 0px 0;
    float: left
}

.col-3:nth-child(3n) {
    margin-right: 0
}

.col-2 {
    width: calc(50% - 24px);
    margin: 0 48px 0px 0;
    float: left
}

.col-2:nth-child(2n) {
    margin-right: 0
}

@media screen and (max-width: 890px) {
    .col-2 {
        width: 100%;
        margin: 0
    }
    .col-2:last-child {
        margin-bottom: 0
    }
}

.work-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.work .image {
    width: 100%;
    position: relative;
    margin-top: 100px;
    background-size: cover
}

.work .image:last-of-type {
    margin-bottom: 0
}

.work .image:first-of-type {
    margin-top: 0
}

.work .image:hover .overlay {
    opacity: 1
}

.work .image .slides {
    width: 100%;
    height: 100%
}

.work .image .slides li {
    width: 100%;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.2)
}

.work .image .slides li.shorter:before {
    padding-top: 62.7%
}

.work .image .slides li:before {
    content: '';
    display: block;
    padding-top: 72.7%;
}

.work .image .overlay {
    background: rgba(0, 0, 0, 0.94);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #9d9d9d
}

.work .image .overlay h2 {
    color: white;
    margin-bottom: 15px
}

.work .image .text {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px
}

@media screen and (max-width: 640px) {
    .work .image {
        margin-top: 0
    }
}

.work .description {
    padding: 50px 0 50px 0
}

.work .description h2 {
    display: inline-block;
    vertical-align: top
}

.work .description span {
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9d9d9d;
    display: block
}

.work .description p {
    color: #9d9d9d
}

.work .description a {
    color: #292929;
    opacity: 0.5;
    display: inline-block;
    position: relative;
}

.work .description a:not(.nobg):before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -2px;
    opacity: 0.25;
    left: 0;
    background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 50%, #292929 50%);
    background-repeat: repeat-x;
    background-size: 2px 2px;
    background-position: 0 0px
}

@media not all,
only screen and (min-resolution: 2dppx),
only screen and (-webkit-min-device-pixel-ratio: 2) {
    .work .description a:before {
        background-image: -webkit-linear-gradient(top, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0) 75%, #292929 75%);
        background-repeat: repeat-x;
        opacity: 0.5
    }
}

.work .description a:hover {
    opacity: 1
}

.work .description .col-3:last-child {
    text-align: right
}

.work .description .col-3.last {
    text-align: left
}

@media screen and (max-width: 640px) {
    .work .description {
        padding: 30px 0 50px 0
    }
}

@media screen and (max-width: 480px) {
    .work .description h2 {
        font-size: 18px
    }
    .work .description span {
        font-size: 10px;
        line-height: 2
    }
    .work .description a {
        font-size: 14px
    }
}

@media screen and (max-width: 750px) {
    .work .col-3 {
        width: calc(100%);
        margin: 0 0px 20px 0
    }
    .work .col-3:nth-child(3n) {
        margin-right: 0px
    }
    .work .col-3:nth-child(2n) {
        margin-right: 0px
    }
    .work .col-3:last-child {
        margin-bottom: 0;
        text-align: left !important
    }
}

.notify {
    margin: 10px 0px;
    padding: 12px;
    border-radius: .2em;
}

.notify-info {
    color: #00529B;
    background-color: #BDE5F8;
}

.notify-success {
    color: #4F8A10;
    background-color: #DFF2BF;
}

.notify-warning {
    color: #9F6000;
    background-color: #FEEFB3;
}

.notify-error {
    color: #D8000C;
    background-color: #FFBABA;
}

.notify i {
    margin: 10px 22px;
    font-size: 2em;
    vertical-align: middle;
}
