@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=News+Cycle:wght@400;700&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,600,0,0);

body {
    margin: 0px;
    font-family: "Barlow Semi Condensed", sans-serif;
}

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

.material-symbols-outlined {
    vertical-align: middle !important;
    margin-top: -3px !important;
}

.material-symbols-outlined::after {
    content: attr(icon);
}

nav {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
    width: 100%;
    height: 120px;
    background-image: linear-gradient(rgba(0, 0, 0, .51), transparent);
}

nav.scnd {
    background: #fff !important;
    background-image: unset;
}

nav.scnd img {
    filter: invert(1);
}

nav.scnd ul li {
    color: #000;
    background-image: linear-gradient(#000, #000);
}

nav.scnd ul li:hover {
    color: #000;
}

nav img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 150px;
}

nav ul {
    position: absolute;
    padding: 0px;
    list-style: none;
    margin: 0px;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    display: flex;
    text-transform: uppercase;
    grid-gap: 20px;
}

nav ul li {
    padding: 5px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer !important;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition: color 0.3s, background-size 0.3s, background-position 0s 0.3s;
}

nav ul li:hover {
    background-position: 100% 100%; /*OR bottom right*/
    background-size: 100% 2px;
    color: #dbdad3;
}

/* NAV ICON */

nav .navIcon {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
    display: none;
}

.icon-line1, .icon-line2, .icon-line3 {
    width: 20px;
    height: 2px;
    border: none;
    background-color: #fff;
    margin: 4px 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    outline: 0;
    right: 0px;
    text-align: left;
}

.icon-line2 {
    width: 15px;
}

.icon-line3 {
    width: 10px;
}

.navOpen .icon-line1 {
    -webkit-transform: rotate(-45deg) translate(-5.5px, 4.5px);
        -ms-transform: rotate(-45deg) translate(-5px, 4.5px);
        transform: rotate(-45deg) translate(-4.5px, 4px);
     width: 20px;
}

.navOpen .icon-line2 { width: 0; }

.navOpen .icon-line3 {
    -webkit-transform: rotate(45deg) translate(-5.5px, -6.5px);
        -ms-transform: rotate(45deg) translate(-5px, -5.5px);
        transform: rotate(45deg) translate(-4.5px, -4.5px);
     width: 20px;
}


.pageScreen {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.pageScreen.image::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-image: url('../img/IMG_3481.jpg');
    opacity: 0.8;
    z-index: 1;
}

.pageScreen .menu {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px;
    margin: 0px;
    list-style: none;
    z-index: 2;
    cursor: pointer;
}

.pageScreen .menu li {
    display: table;
    margin-bottom: 20px;
    font-size: 65px;
    font-family: 'Bebas Neue';
    padding: 0px 0px;
    color: #ECEBE6;
    background-image: linear-gradient(#ECEBE6, #ECEBE6);
    background-position: 100% 100%;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    transition: color 0.3s, background-size 0.3s, background-position 0s 0.3s;
}

.pageScreen .menu li:hover {
    background-position: 0% 100%; /*OR bottom right*/
    background-size: 0% 2px;
    color: #dbdad3;
}

.pageScreen.image::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    /* you can control opacity of noise  */
    opacity: .02;  
    z-index: 1;
    pointer-events: none;
    background: url('https://www.laprodium.com/img/noise.gif') ;
}

.page_title {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 90;
    margin: 0px;
    color: #fff;
    transform: translate(-50%, -50%);
    /*text-shadow: 0px 0px 20px rgba(0,0,0,0.1);*/
    text-align: center;
}

.page_title h2 {
    margin: 0px auto;
    font-size: 90px;
    font-family: 'Bebas NEUE';
    
    letter-spacing: 1px;
}

.page_title p {
    font-size: 18px;
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: 400;
    margin: 10px auto;
}

.page_title button {
    margin-top: 20px;
}

.selector.skew {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: -10%;
}

.selector {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


.select_type {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1;
    
}

.selector.skew .select_type {
    position: relative;
    width: 153%;
    height: 100vh;
    background-color: #000;
    z-index: 1;
    
}

.selector.skew .select_type:nth-child(1) {
    clip-path: polygon(0% 0%, 65.75% 0%, 100% 100%, 0% 100%);
}
.selector.skew .select_type:nth-child(2) {
    clip-path: polygon(0% 0%, 65.75% 0%, 100% 100%, 29.75% 100%);
}
.selector.skew .select_type:nth-child(3) {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 29.75% 100%);
}

.selector.skew .select_type:nth-child(1).image::before {
    opacity: 0.4;
}

.selector.skew .select_type:nth-child(2).image::before {
    opacity: 0.4;
}

.selector.skew .select_type:nth-child(3).image::before {
    opacity: 0.4;
}

.selector.skew .select_type .center {
    position: absolute;
    left: 25%;
    bottom: 250px;
    z-index: 1;
}

.select_type .center {
    position: absolute;
    left: 5%;
    bottom: 50px;
    z-index: 1;
}

.select_type .center h2 {
    font-size: 70px;
    margin: 0px auto;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
}

.select_type .center p {
    font-size: 14px;
    margin: 0px auto;
    color: #fff;
    font-weight: 400;
}


button {
    font-size: 14px;
    font-weight: 500;
    padding: 15px 60px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    font-family: "Barlow Semi Condensed", sans-serif;
    text-transform: uppercase;
    transition: 0.4s;
}

button:hover {
    background-color: #fff;
    color: #000;
}

.select_type:hover.image::before {
    transform: scale(1.05);
    opacity: .8 !important;
}

.select_type.image::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-image: var(--image);
    opacity: 0.7;
    z-index: 1;
    transition: 1s;
}

.select_type.image::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    /* you can control opacity of noise  */
    opacity: .03;  
    z-index: 1;
    pointer-events: none;
    background: url('https://www.laprodium.com/img/noise.gif') ;
}

.pageContent {
    position: relative;
    display: block;
        width: 100%;
}

.container {
    margin: 50px auto;
    padding: 50px;
}

/* PORTFOLIO PHOTO */

._maxw {
    position: relative;
    width: 80%;
    max-width: 1600px;
    margin: 0px auto;
}

.photo_portfolio {  
    -webkit-column-count: 3; 
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
    grid-gap: 0px;
    grid-row-gap: 0px;
}

.photo_portfolio .tile {
        position: relative;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    z-index: 5;
    overflow: hidden;
}

.photo_portfolio .tile img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: -5px;
    overflow: hidden;
    transition: 0.4s;
}


.photo_portfolio .tile:hover img {
    transform: scale(1.05);
}
/*
@media screen and (max-width: 850px) {
    .pageScreen {
        height: inherit;
    }
    .selector.skew {
        position: relative;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        left: 0px;
    }
    .selector.skew .select_type {
        width: 100%;
        height: 50vh;
    }
    .selector.skew .select_type:nth-child(1) {
        clip-path: polygon(0% 0%, 100% 0%, 100% 81.5%, 0% 100%);
        
    }
    .selector.skew .select_type:nth-child(2) {
        clip-path: polygon(0% 18%, 100% 0%, 100% 81.5%, 0% 100%);
        top: -20%;
    }
    .selector.skew .select_type:nth-child(3) {
        clip-path: polygon(0% 18%, 100% 0%, 100% 100%, 0% 100%);
        top: -40%;
    }
    
    .selector.skew .select_type .center {
        position: absolute;
        left: 5%;
        bottom: 50%;
        transform: translateY(50%);
        z-index: 1;
    }
    
    .selector.skew .select_type .center h2 {
        font-size: 50px;
    }
    nav ul {
        display: none;
    }
}*/

.popup {
    position: fixed;
    bottom: 30px;
    width: 95%;
    left: 50%;
    transform: translate(-50%);
    background-color: #ECEBE6;
    z-index: 99;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
    display: flex;
}

.popup .title {
    font-size: 40px;
    flex-grow: 1;
    color: #000;
    font-family: 'Bebas Neue';
}

.popup .menu {
    padding: 0px;
    margin: 0px;
    list-style: none;
    z-index: 2;
    cursor: pointer;
    display: flex;
    grid-gap: 20px;
    align-items: center;
}

.popup .menu li {
    display: block;
    font-size: 16px;
    font-family: 'Bebas Neue';
    padding: 3px 0px;
    color: #00;
    background-image: linear-gradient(#000, #000);
    background-position: 100% 100%;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    transition: color 0.3s, background-size 0.3s, background-position 0s 0.3s;
}

.popup .menu li:hover {
    background-position: 0% 100%; /*OR bottom right*/
    background-size: 0% 2px;
    color: #dbdad3;
}

@media screen and (max-width: 850px) {
    .pageScreen .menu {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
    }
    .pageScreen .menu li {
        font-size: 40px;
        text-align: center;
    }
    
    nav ul {
        display: none;
    }
    
    nav .navIcon {
        display: block;
    }
    .page_title h2 {
    font-size: 70px;
}
    .photo_portfolio {  
        -webkit-column-count: 1; 
    -moz-column-count: 1;
    column-count: 1;
}