@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700,900&display=swap");
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    font-family: "Titillium Web", sans-serif;
    color: #1e1e24;
}

main {
    background: url(../img/bg.jpg) repeat left top;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.table {
    display: table;
    height: 100vh;
    position: absolute;
}

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

.navBar {
    background-color: #fff;
    border-right: 1px solid #f9f9f9;
    color: #fff;
    width: 50px;
    height: 100vh;
    left: 0;
    position: fixed;
    z-index: 20000;
    top: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.contactNav {
    background: #f4f4f4 url(../img/contact.png) no-repeat center center / 15px;
    font-size: 0;
    height: 50px;
    bottom: 0;
    left: 0;
    position: absolute;
    display: block;
    width: 50px;
}

.openNav {
    height: calc(100% - 100px);
    width: 100%;
    font-size: 0;
    background: url(../img/menu.svg) no-repeat center center / 10px;
}

.contactNav a {
    display: block;
    width: 100%;
    height: 100%;
}

.openNav a {
    display: block;
    width: 100%;
    height: 100%;
}

.bigLogo {
    position: fixed;
    top: 50vh;
    left: 50vw;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    z-index: 9000;
    margin-left: -75px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}
h1 span {
    font-weight: 400;
}

/*.projectTitle h1 {
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 400;
}*/

p {
    font-size: 13px;
}

.btn {
    border: 1px solid #c3c3c3;
    display: inline-block;
    padding: 10px 30px;
    font-size: 10px;
    color: #1e1e24;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 100%;
    text-align: center;

    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn:hover {
    border: 1px solid #000;
    cursor: pointer;
}

.btnBlack {
    background-color: #000;
    color: #fff;
}

#home-page {
}

#home-page .mainAbout {
    width: 50vw;
    text-align: center;
    padding-left: 0;
    position: fixed;
    font-size: 0;
    top: 0;
    z-index: 0;
    left: 0;
}

#home-page .mainAbout .inside {
    text-align: left;
    display: inline-block;
    max-width: 50%;
}

#home-page .mainAbout .inside h1 {
    margin-bottom: 40px;
}

#home-page .mainAbout .inside .fromWYSIWYG {
    margin-bottom: 40px;
}

.asideSlider {
    width: 50vh;
    z-index: 100;
    position: absolute;
    left: 50vw;
    padding-right: 50%;
}

.fromWYSIWYG {
}

.fromWYSIWYG p {
    font-size: 13px;
    line-height: 26px;
}

.asideSlider ul {
    width: 50vw;
}

.asideSlider li img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.asideSlider li {
    position: relative;
}

.asideSlider li:hover img {
    opacity: 0.7;
}

.asideSlider li:hover .legend {
    display: block;
}

.asideSlider li .legend {
    position: absolute;
    right: 30px;
    bottom: 30px;
    text-align: right;
    display: none;
}

.asideSlider li .legend h3 {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
}

.asideSlider .count {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 3;
    display: none;
    font-size: 20px;
}

.asideSlider:hover .count {
    display: block;
}

.asideSlider .count sup {
    font-size: 13px;
}

.topLogo {
    background: #1e1e24 url(../img/logo_white.svg) no-repeat center center /
        20px;
    height: 50px;
    text-align: center;
    font-size: 0;
}

.topClose {
    background: #1e1e24 url(../img/close.svg) no-repeat center center / 15px;
    height: 50px;
    text-align: center;
    font-size: 0;
}

.topLogo a,
.topClose a {
    display: block;
    height: 50px;
}

#projects-page {
}

.sect-projects,
.sect-project {
    margin: calc(10vh + 120px) 15vw 0 15vw;
    position: relative;
    z-index: 2;
}

.filters {
    margin-bottom: 30px;
}

.filters li {
    display: inline-block;
    margin-right: 20px;
}

.filters li a {
    font-weight: 200;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
}

.filters li a:after {
    content: "-";
    position: absolute;
    bottom: 2px;
    left: 0;
    font-size: 0;
    width: 0px;
    height: 1px;
    background-color: #000;
    opacity: 0.5;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    clear: both;
}

.filters li:hover a:after,
.filters li.active a:after {
    width: 100%;
}

#projects {
    width: 100%;
    display: flex;
}

#projects article {
    display: block;
    min-width: 38vh;
    margin-right: 10px;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    overflow: hidden;
    opacity: 1;
}

#projects article.hide {
    display: none;
    /* width: 0;
        min-width: 0;*/
    opacity: 0;
    animation: disapear 0.3s forwards;
}

#projects article.hide picture {
    width: 0;
}

@keyframes disapear {
    0% {
        min-width: 38vh;
    }
    30% {
        min-width: 38vh;
    }
    100% {
        min-width: 0;
        width: 0 !important;
        margin: 0;
    }
}

.projectTitle {
    position: fixed;
    top: 10vh;
    left: 15vw;
}

#projects article .hover {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    height: 100%;
    display: none;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 0 30px;
}

#projects article .hover h2 {
    font-size: 19px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#projects article .picture {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

#projects article:hover .picture {
    opacity: 0.2;
}

#projects article:hover .hover {
    display: table;
}

#projects article .picture img {
    display: block;
    width: 100%;
}

.nextArrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.nextArrow img {
    width: 20px;
}

main#projects-page:after,
main#project-page:after {
    display: block;
    content: ".";
    background-color: #fff;
    bottom: 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 30;
}

.projectsNav {
    position: fixed;
    right: 0;
    top: 0;
    overflow-y: scroll;
    height: 100vh;
    background-color: #fff;
    padding: 5px;
    z-index: 10;
}

.projectsNav img {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    opacity: 0.2;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.projectsNav img:hover {
    opacity: 1;
}

.projectsVisuals {
    margin-right: 200px;
}

.projectsVisuals ul {
    display: flex;
}

.sect-project {
    display: flex;
    margin: calc(10vh) 15vw 0 15vw;
}

.aboutProject {
    min-width: 45vw;
    display: block;
    padding-right: calc(15vw - 50px);
}

.aboutProject .table {
    height: 80vh;
    position: relative;
}

.aboutProject .wrapTitle {
    margin-bottom: 20px;
}

.aboutProject .wrapTitle h5 {
    font-size: 13px;
    font-style: italic;
    font-weight: 200;
}

.projectsVisuals img {
    height: 80vh;
    margin-right: 20px;
}

#projects-page,
#project-page {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    overflow: hidden;
    height: 100vh;
}

#contact-page {
    height: 100vh;
    display: flex;
}

#contact-page .sect-contact {
    width: 80vw;
    background-color: #fff;
    padding: 0px 160px 0px 160px;
}

#contact-page .sect-contact .table {
    position: relative;
    width: 100%;
}

#contact-page .sect-contactWrap {
    display: flex;
}

#contact-page .form {
    padding: 0 90px 0 0;
    min-width: 70%;
    align-self: center;
}

#contact-page .addresses {
    align-self: center;
}

.form .line {
    margin-bottom: 30px;
}

#contact-page .sect-contact h1 {
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 400;
}

.contactPicture {
        width: 20vw;
    background: url(../img/bgContact.png) no-repeat right center / cover;
    height: 100vh;
}

address {
    margin-bottom: 30px;
    font-size: 13px;
    font-style: normal;
    margin-top: 40px;
}

address h6 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}

/* forms */

.input {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #7d7d7d;
}

label,
input {
    transition: all 0.2s;
    touch-action: manipulation;
}

input {
    font-size: 16px;
    border: 0;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    cursor: text;
    padding: 13px 28px 11px 0px;
    font-weight: 100;
}

input:focus,
.inputTyping input {
    outline: 0;
    border-radius: 0;
}

.inputValid input:not(:placeholder-shown) + label {
    color: #00876c;
}

.inputError input:not(:placeholder-shown) + label {
    color: #d92b48;
}

.inputOutline input {
    width: 100%;
    background-color: #fff;
    border: 1px solid #7d7d7d;
    border-radius: 4px;
    padding: 20px 15px;
}

label {
    line-height: 16px;
    font-size: 13px;
    font-weight: 200;
    color: #a2a2a2;
}

.inputOutline input::-webkit-input-placeholder {
    opacity: 1;
}

input:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translate(0, 2.125rem) scale(1.1);
    transform-origin: 0 14px;
}

::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

input:focus::-webkit-input-placeholder {
    opacity: 1;
}

input:not(:placeholder-shown) + label,
input:focus + label {
    transform: translate(0px, 8px) scale(1);
    cursor: pointer;
}

.infoInput {
    margin-left: 30px;
    font-size: 12px;
    text-align: left;
}

.select {
    border: 1px solid #a4a4a4;
    background: #fff url(../img/arrowSelect.png) no-repeat right 20px center /
        10px;
    display: block;
    width: 100%;
    font-size: 14px;
}

.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    width: 100%;
    border: none;
    margin: 0;
    background: transparent;
    font-size: 15px;
    padding: 10px 20px;
}

.submitLine {
    margin-top: 40px;
}

.forBubble {
    display: none;
}

.navContent {
    background: #1e1e24 url(../img/bg.png) repeat left center;
    color: #fff;
    transform: matrix(1, 0, 0, 1, -1300, 0);
    width: 900px;
    height: 100vh;
    padding: 0 0 0 170px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.navOpen .navContent {
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.navOpen main {
    position: absolute;
    transform: matrix(1, 0, 0, 1, 900, 0);
    top: 0;
}

.navContent nav a {
    color: #fff;
    font-size: 50px;
}

.navContent nav li {
    position: relative;
}

.navContent nav li a {
    display: inline-block;
    position: relative;
}

.navContent .wrapAllNav .table {
    width: 100%;
    position: relative;
}

.navContent nav li a:after {
    content: "-";
    position: absolute;
    bottom: 10px;
    left: 0;
    font-size: 0;
    width: 0px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    clear: both;
}

.navContent nav li:hover a:after,
.navContent nav li.active a:after {
    width: 100%;
}

.navContent nav {
    width: 50%;
}

.wrapNav {
    display: flex;
    align-items: center;
}

.navContent {
    position: fixed;
    z-index: 20;
}

.navContent address * {
    color: #fff;
}

.navContent address p {
    opacity: 0.8;
}

.navContent .social {
}

.navContent .social {
    position: absolute;
    right: 20px;
    top: 20px;
}

.navContent .social li img {
    height: 15px;
}

.navContent .social li {
    display: inline-block;
    margin-left: 10px;
}

.navContent .navBarContent {
    border-right: 1px solid #f9f9f9;
    color: #fff;
    width: 50px;
    height: 100vh;
    left: 0;
    position: absolute;
    z-index: 20000;
    top: 0;
}

.navContent .lang {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.navContent .lang li a {
    position: relative;
}

.navContent .lang li a:after {
    content: "-";
    position: absolute;
    bottom: 2px;
    left: 0;
    font-size: 0;
    width: 0px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    clear: both;
}

.navContent .lang li:hover a:after,
.navContent .lang li.active a:after {
    width: 100%;
}

.navContent .lang li {
    display: inline-block;
    margin-left: 6px;
}

.navContent .lang li a {
    color: #fff;
    font-weight: 100;
    font-size: 13px;
}

.navOpen .navBar {
    left: -50px;
}

.navContent .navBarContent {
    border-right: 0;
}

.navContent .openNav {
    background: url(../img/menu_white.svg) no-repeat center center / 10px;
}

.navOpen .bigLogo {
    opacity: 0.7;
}

@media only screen and (max-width: 1025px) {
    body {
        overflow-x: hidden;
    }
    .bigLogo {
        display: none;
    }
    .table {
        position: relative;
        height: auto;
    }
    .navContent .wrapAllNav .table {
        height: 100vh;
    }
    #home-page .mainAbout {
        width: 100vw;
        position: relative;
        left: 0;
        padding: 80px 0;
    }
    .asideSlider {
        width: 100vw;
        overflow-y: auto;
        z-index: 100;
        position: relative;
        left: 0;
        padding: 0 30px 0 80px;
    }
    .asideSlider ul {
        width: 100%;
    }
    .asideSlider .count {
        display: none !important;
    }
    .asideSlider li {
        margin-bottom: 20px;
    }
    .asideSlider li .legend, #projects article .hover{
		
		    display: block !important;
			width: 100%;
			left: 0;
			right: 0;
			padding: 20px;
			bottom: 0;
		background: rgba(255,255,255,0.66);
		
    }
    .navContent {
        width: 100vw;
        height: 100vh;
    }
    .navContent .social li img {
        height: 25px;
    }
    .navContent .social li {
        margin-left: 10px;
        margin-right: 10px;
    }
    .navContent .social {
        position: absolute;
        text-align: center;
        margin-top: 40px;
        right: 0;
        width: 100%;
    }
    .navContent .addresses {
        display: none;
    }
    .navContent nav {
        width: 100%;
    }
    .navOpen .navContent {
        padding-left: 0;
        text-align: center;
    }
    .navContent .lang {
        position: absolute;
        bottom: 0;
        width: 100%;
        margin-bottom: 50px;
        left: 0;
    }
    .navContent .lang li a {
        font-size: 20px;
        margin: 0 10px;
    }
    .navOpen {
        overflow: hidden;
    }
    .nextArrow {
        display: none;
    }
    #projects {
        display: block;
    }
    .sect-project {
        display: block;
    }
    #projects article {
        min-width: 100%;
    }
    #projects-page,
    #project-page {
        overflow: visible;
    }
    .projectTitle {
        position: fixed;
        top: 0;
        left: 50px;
        background-color: #fff;
        z-index: 10;
        padding: 30px 30px 0;
        width: 100%;
    }
    main#projects-page:after,
    main#project-page:after {
        display: none;
    }
    .sect-projects,
    .sect-project {
        margin: 150px 30px 30px 80px;
    }
    .sect-project {
        margin-top: 30px;
    }
    .projectsNav {
        display: none;
    }
    .aboutProject {
        min-width: 0;
        padding-right: 0;
    }
    .aboutProject .table {
        height: auto;
        padding-bottom: 30px;
    }
    .projectsVisuals {
        margin: 0;
    }
    .projectsVisuals ul {
        display: block;
    }
    .projectsVisuals ul img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    #contact-page .sect-contact {
        width: 100%;
        float: none;
        display: block;
        padding: 50px 30px 50px 80px;
    }
    #contact-page .sect-contactWrap {
        display: block;
        float: none;
    }
    .contactPicture {
        display: none;
    }
    #contact-page .form {
        padding: 0;
    }
    .btnBlack {
        width: 100% !important;
        display: block;
        max-width: 100%;
    }
    #projects article .hover {
     top: auto;
    height: auto;
}
    
    #projects article .picture {
        opacity: 1 !important;
    }
    #home-page .mainAbout .inside {
        text-align: left;
        padding: 0 30px 0 80px;
        width: 100%;
        max-width: 100%;
    }
}
