body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 200;
}

.ampersand {
    font-family: 'Rokkitt', serif;
}

h1 .ampersand,
h2 .ampersand,
h3 .ampersand {
    font-weight: 600;
}

h1.page,
.h1-page {
    text-transform: uppercase;
    font-size: 1em;
    font-weight: normal;
    padding: 3px 0;
    font-family: 'Oskar One';
}

h1 {
    font-family: 'Oskar One';
    font-weight: normal;
}

h2 {
    font-size: 2em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-family: 'Oskar One';
    font-weight: normal;
}

h3 {
    font-size: 1em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-family: 'Oskar One';
    font-weight: normal;
}

h3.border-bottom {
    border-bottom: 2px solid #555;
    display: inline-block;
    padding-bottom: 20px;
}

p {
    margin: 0 0 20px 0;
}

a {
    color: inherit;
    text-decoration: underline;
}

.holder {
    width: 1200px;
    margin: 0 auto;
}


.holder.header-padding-top {
    margin-top: 120px;
}


.holder-semi {
    width: 1000px;
    margin: 0 auto;
}

.holder-semi.header-padding-top {
    margin-top: 120px;
}

.medium-holder {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

.medium-semi-holder {
    width: 860px;
    margin: 0 auto;
}

.medium-holder.header-padding-top {
    margin-top: 120px;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vertical-align {
    display: table;
    width: 100%;
    height: 100%;
}

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

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

.splash-image {
    position: relative;
    z-index: 0;
    height: 9999px;
}

.splash-image .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    z-index: -9999999;
}

.splash-image.backstretch-loaded .spinner {
    display: none;
}

.spinner {
    min-width: 30px;
    min-height: 30px;
    display: block;
    position: relative;
}


.spinner:before {
    content: 'Loading…';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -13px;
    margin-left: -13px;
}

.spinner:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 1px solid #AAA;
    border-top-color: #666;
    animation: spinnerA .6s linear infinite;
    -webkit-animation: spinnerA 1s linear infinite;
}

.spinner.white:not(:required):before {
    border: 1px solid #FFF;
    border-top-color: rgba(255, 255, 255, 0.3);
}

.spinner.small {
    min-width: 15px;
    min-height: 15px;
}

.spinner.small.before {
    width: 12px;
    height: 12px;
    margin-top: -7px;
    margin-left: -7px;
}

.logged-in #header {
    top: 50px;
}

#header {
    position: fixed;
    left: 50%;
    top: 10px;
    z-index: 9;
    font-family: 'Oskar One';
    font-weight: normal;
    font-style: normal;
}

#header .menu-header-menu-container {
    margin-left: -300px;
    width: 600px;
    background: rgba(20, 20, 20, 0.8);
    color: #FFF;
    height: 40px;
}

#header.hide-up {
    animation: 800ms fade-out-up ease-out forwards;
}


#header.show-down {
    animation: 400ms fade-in-down ease-out forwards;
}

#header .menu-header-menu-container .header-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#header .menu-header-menu-container .header-menu li {
    display: inline-block;
    width: 22%;
    text-align: center;
    font-weight: 300;
}

#header .menu-header-menu-container .header-menu li.current-menu-item {
    font-weight: normal;
}

#header .menu-header-menu-container .header-menu li.home-button {
    width: 8%;
}

#header .menu-header-menu-container .header-menu li a {
    color: #DDD;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    display: inline-block;
    line-height: 40px;

}

#header .menu-header-menu-container .header-menu li.current-menu-item a {
    color: #FFF;
}

#header .logo-button {
    position: absolute;
    left: -25px;
    top: -7px;
    height: 54px;
    width: 50px;
    z-index: 2;
    overflow: hidden;
}

#header .logo-button img {
    width: 100%;
    height: auto;
}

#hamburger-close {
    width: 50px;
    height: 40px;
    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;
    float: right;
    display: none;
}

#hamburger-close span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #FFF;
    border-radius: 1px;
    opacity: 1;
    left: 25%;
    -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;
}

#hamburger-close span:nth-child(1) {
    top: 11px;
}

#hamburger-close span:nth-child(2),
#hamburger-close span:nth-child(3) {
    top: 19px;
}

#hamburger-close span:nth-child(4) {
    top: 27px;
}

.open-menu #header .menu-header-menu-container {
    display: block;
    animation: 400ms fade-in-down ease-out forwards;
}

.open-menu #header #hamburger-close span:nth-child(1) {
    top: 28px;
    width: 0%;
    left: 50%;
}

.open-menu #header #hamburger-close span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open-menu #header #hamburger-close span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.open-menu #header #hamburger-close span:nth-child(4) {
    top: 28px;
    width: 0%;
    left: 50%;
}

.project-menu {
    line-height: 1.1em;
}

.project-menu .line {
    position: Absolute;
    left: 20px;
    border: 1px solid #CCC;
    top: 3px;
    bottom: 5px;
}

.project-menu.inactive .line {
    display: none;
}

.project-menu .section {
    position: absolute;
}

.project-menu .section:last-child {}

.project-menu .menu-text {
    margin: 0 30px 0 40px;
    font-size: 0.8em;
    color: #CCC;
}

.project-menu.inactive .menu-text,
.project-menu.inactive .block {
    display: none;
}

.project-menu .menu-text .menu-title {
    text-transform: uppercase;

}

.project-menu .active .menu-text .menu-title {
    color: #333;
    font-weight: bold;
}

.project-menu .block {
    width: 9px;
    height: 9px;
    background: #FFF;
    border: 1px solid #CCC;
    position: absolute;
    left: 15px;
    top: 2px;
    transform: scale(0.8);
    transition: 0.3s ease all;
    transform-origin: 50%;
}

.project-menu .active .block {
    border: 2px solid #333;
    transform: scale(1);
}

.project-menu .section:last-child .block {
    bottom: 3px;
    top: auto;
}

.splash-image {
    text-align: center;
    z-index: 1;
    background: #FFF;
}

.splash-image .black-bg {
    background: rgba(0, 0, 0, 0.2);
    position: Absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
}

.splash-image.show-black-bg.scrolled .black-bg {
    display: block;
    opacity: 0;
    animation: 800ms fade-in ease-out forwards;
}

.splash-image h1 {
    font-size: 1em;
}

.splash-image h1 span {
    padding: 10px 5px;
}

.splash-image h1 span.big {
    text-transform: uppercase;
    font-size: 3em;
    margin: 0;
}

.splash-image h1 span.small {
    background: #FFF;
    text-transform: lowercase;
    font-weight: 400;
    margin: 5px 0 0 0;
    font-size: 2.5em;
    display: inline-block;
    font-weight: 300;
}

.splash-image .scroll-down {
    position: absolute;
    left: 50%;
    width: 1px;
    bottom: 10px;
    color: #FFF;
}

.splash-image .scroll-down i {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 70px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    width: 70px;
    height: 70px;
    margin-left: -40px;
    cursor: pointer;
}

.splash-image.show-black-bg.scrolled .scroll-down {
    -moz-animation: 400ms fade-out ease-out forwards;
    -webkit-animation: 400ms fade-out ease-out forwards;
    animation: 400ms fade-out ease-out forwards;
}

.tag-block {
    display: inline-block;
    font-size: 0.7em;
    color: #333;
    text-decoration: none;
    padding: 3px 3px 1px 3px;
    margin: 2px;
    text-transform: uppercase;
    border: 1px solid #333;
    font-weight: bold;
}

.social-share {
    margin: 60px 0;
    line-height: 70px;
    height: 70px;
    text-transform: uppercase;
    font-size: 0.8em;
}

.social-share a {
    text-decoration: none;
}

.social-share .back-to {
    float: left;
}

.social-share .icons {
    float: right;
    margin-right: 10px;
}

.social-share .social-text {
    margin-right: 10px;
}

.social-share i {
    padding: 5px;
    color: #666;
    font-size: 15px;
}

.social-share .icons .whatsapp {
    display: none;
}

.view-pdf {
    width: 100%;
    padding: 50px 0 40px 0;
    text-align: center;
    margin: 20px auto;
    background: #EEE;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 30px;
    font-size: 0.9em;
    display: none;
    text-decoration: none;
}

.view-pdf i {
    font-size: 50px;
}


@media screen and (max-width: 1200px) {
    .holder {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1000px) {
    .holder-semi {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}


@media screen and (max-width: 860px) {
    .medium-semi-holder {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

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

    .medium-holder {
        width: 100%;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
    }

    #header {
        left: 0;
        top: 0;
        right: 0;
    }

    #header .menu-header-menu-container {
        width: 100%;
        margin-left: 0;
    }

    #header .logo-button {
        left: 50%;
        top: 0;
        height: 40px;
        width: 37px;
        overflow: visible;
    }

    #header .logo-button img {
        margin-left: -19px !important;
    }
}

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

    .splash-image h1 span.big {
        font-size: 2em;
    }

    .splash-image h1 span.small {
        font-size: 1.5em;
    }

    #header {
        height: 40px;
        background: rgba(20, 20, 20, 0.8);
    }

    #header .menu-header-menu-container {
        height: auto;
        position: absolute;
        top: 40px;
        display: none;
    }

    #header .menu-header-menu-container .header-menu li {
        display: block;
        width: 100%;
        border-top: 1px solid #444;
    }

    #header .menu-header-menu-container .header-menu li.home-button {
        display: none;
    }

    /*#header .logo-button{*/
    /*left:0 !important;*/
    /*}*/

    /*#header .logo-button img {*/
    /*margin-left: 0 !important;*/
    /*}*/

    #hamburger-close {
        display: block;
    }

    .social-share .back-to {
        float: none;
    }

    .social-share .icons {
        float: none;
    }

    .social-share .icons .whatsapp {
        display: inline-block;
    }

    .social-share .back-to {
        display: block;
        border-bottom: 1px solid #AAA;
        width: 100%;
    }

    .social-share {
        height: auto;
        text-align: center;
    }
}


.person-content>div:nth-child(1)>img:nth-child(2) {
    max-height: 525px;
    object-fit: cover;
}

.team .image {
    overflow: hidden;
}

.team .image img {
    transition: 0.3s;
}

.team .image img:hover {
    scale: 1.1;
}

.slick-track {
    display: flex;
    padding: 40px 0;
}

.gallery-holder {
    display: flex;
    position: relative;
}

.gallery-holder .slick-list {
    overflow: hidden;
    width: 100%;
}

.gallery-holder .project-image {
    height: 600px;
}

.gallery-holder .project-image.slick-slide {
    display: flex;
    justify-content: center;
    position: relative;
}

.gallery-holder .project-image.slick-slide .image-title {
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 99%, rgba(0, 0, 0, 0.5) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: .3s;
}

.gallery-holder .project-image.slick-active:hover .image-title {
    opacity: 1;
}

#single .section-gallery .gallery-holder .project-image img {
    height: 600px;
    max-width: 100%;
    object-fit: contain;
}