@import url('https://fonts.googleapis.com/css?family=K2D:300,400,700|Open+Sans:100,200,300,400,500,600,700|Roboto+Condensed:300');

:root{
	--maincolor: #212121;
	--goldcolor: #eba63f;
}

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}


html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    margin: 0;
    background: var(--maincolor);
}
header{
    width: 100%;
    display: grid;
    grid-template-columns: 200px auto 200px;
    height: 100px;
    position: absolute;
    z-index: 6;
}
header nav{
    justify-self: center;
    align-self: center;
    position: relative;
}
.goback{
	cursor: pointer;
	text-align: center;
	margin: 0 auto;
	background: #eba63f;
	color: #fff;
	display: inline-block;
	padding: 10px;
	position: relative;
}
.goback:after{
	position: absolute;
	width: 100%;
	height: 100%
	background: #212121;
	content: "";
}
header nav .link, header nav .menu{
    color: white;
    display: inline-block;
    width: 150px;
    height: 100px;
    line-height: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    background: transparent;
    text-decoration: none;
    z-index: 10;
    position: relative;
    transition: .2s ease-in-out;
    text-align: center;
}
header nav .link::after, header nav .menu::after{
    background: transparent;
    content: attr(data-link);
    position: absolute;
    height: 100px;
    width: 150px;
    top: 0;
    transition: .3s ease-in-out;
    left: 0;
}
header nav a:hover, header nav .menu:hover{
    background: rgba(255,255,255,0.2);
}
.submenu{
    height: auto;
    display: none;
    position: absolute;
    max-width: 300px;
    top: 100%;
    background: rgba(255,255,255,0.4);
    z-index: 20;
}
.submenu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.submenu ul li a{
    width: 100%;
    line-height: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    position: relative;
    color: white;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    padding: 0 8px;
    transition: all .2s ease-in-out;
    z-index: 3;
}
.submenu ul li a::before{
    content: "";
    background: var(--maincolor);
    display: inline-block;
    left: 0px;
    position: absolute;
    height: 50px;
    width: 0;
    transition: all .2s ease-in-out;
    z-index: -1;
}
.submenu ul li a:hover{
    padding: 0 16px;
}
.submenu ul li a:hover::before{
    width: 10px;
}
.submenu ul li a:focus::before{
    width: 100%;
}
.submenu ul li a:focus::before{
    width: 100%;
}
.icon{
    font-size: 100px;
    align-self: center;
    justify-self: center;
}
.logo{
    width: 80px;
		filter: drop-shadow(0px 5px 0px #212121);
    height: 80px;
}
.logo-link{
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    border: 2px solid #eba63f;
    align-self: center;
    justify-self: center;
    transition: .5s ease all;
		font-size: 0.9em !important;
}
.logo-link img{
	width: 50px;
	height: 50px;
}
.logo-link:hover{
  background: #eba63f;
}
#main{
	display: grid;
	grid-template-columns: 50% 50%;
	width: 100%;
	height: 100vh;
}
.gradient{
    width: 50%;
    height: 100vh;
    position: absolute;
    top: 0;
	left: 50%;
    background: linear-gradient(rgba(33,33,33,0.2), rgb(33,33,33, 1));
    z-index: 1;
}
.gradient#left{
    background: linear-gradient(-90deg,rgba(33,33,33,0.2), rgb(33,33,33, 1));
}
#modal{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    position: fixed;
    background: var(--maincolor);
    display: none;
    grid-template-columns: auto 100px;
    grid-template-rows: 100px auto;
}
#modal #close{
    grid-column: 2;
    grid-row: 1;
    cursor: pointer;
    font-size: 32px;
    color: var(--goldcolor);
    align-self: center;
    justify-self: center;
}
#modal #modal-name{
    grid-column: 1/3;
    grid-row: 1;
    color: white;
    text-align: center;
    line-height: 100px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}
#modal #form{
    grid-column: 1/3;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    max-width: 600px;
    width: 100%;
}
form{
    width: 100%;
}
.input-model #file{
	width: 100%;
	cursor: pointer;
	color: inherit;
	font-size: 16px;
	line-height: 60px;
	height: 60px;
    padding: 0 16px;
    color: rgba(235,166,63, 0.5);
}
input[type="file"]{
	position: absolute;
	top: -2000px;
}
.input-model{
    width: 100%;
    height: 60px;
    border: 2px solid var(--goldcolor);
    position: relative;
    overflow: hidden;
    margin: 0 0 10px 0;
}
.input-model input, .input-model textarea{
    height: 60px;
    width: 100%;
    background: none;
    font-size: 16px;
    color: var(--goldcolor);
    padding: 0 16px;
    margin: 0;
    line-height: 60px;
    border: none;
    resize: none;
}
input + label, textarea + label{
    top: 18px;
    position: absolute;
    left: 16px;
    font-size: 16px;
    color: rgba(235,166,63, 0.5);
    transition: all .15s ease-in-out;
    opacity: 1;
}
input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label{
    left: -100px;
    opacity: 0;
}
#modal #form button{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 2px solid var(--goldcolor);
    background: none;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--goldcolor);
    cursor: pointer;
    transition: all .2s ease-in-out;
    font-weight: 700;
}
#modal #form button:hover{
    background: var(--goldcolor);
    color: var(--maincolor);
}
.slider{
    width: 100%;
    grid-column: 2;
    height: 100vh;
    position: relative;
}
.slide{
    width: 100%;
    height: 100vh !important;
    background-size: cover;
    background-position: 0 75%;
}
.column{
	grid-column: 1;
	height: 100vh;
	width: 100%;
	display: grid;
}
.column .text{
	width: 80%;
	align-self: center;
	justify-self: center;
}
.column .text .title{
	font-weight: 700;
	font-size: 48px;
	text-align: left;
	text-transform: uppercase;
	color: var(--goldcolor);
}
.column .text p{
	font-weight: 400;
	font-size: 18px;
	text-align: left;
	color: #f0f0f0;
}
.forward{
    writing-mode: vertical-rl;
    transform: rotateX(180deg) rotateY(180deg);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    padding: 8px;
    align-self: end;
    justify-self: center;
    grid-column: 1/3;
    text-decoration:none;
    text-transform: uppercase;
    position: absolute;
	bottom: 50px;
	left: calc(50% - 16px);
    transition: all .2s ease-in-out;
    z-index: 2;
}
.forward:hover{
    color: white;
    bottom: 40px;
}
.forward::before{
    content: "";
    position: absolute;
    left: 50%;
    top: -10%;
    width: 1px;
    height: 15px;
    background: white;
}
.universal{
	display: none;
	width: 50px;
	height: 50px;
	background: var(--goldcolor);
	color: white;
	border-radius: 50px;
	position: fixed;
	bottom: 50px;
	left: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	box-shadow: 3px 3px 5px rgba(11,11,11,0.5);
}
.universal i{
	z-index: 1000;
}
.universal::after{
	position: absolute;
	left: 25px;
	opacity: 0;
	content: "Lavora con noi";
	height: 50px;
	min-width: 250px;
	z-index: -1;
	text-align: center;
	background: var(--goldcolor);
	box-shadow: 3px 3px 5px rgba(11,11,11,0.5);
	transition:all .2s ease-in-out;
	border-radius: 0 25px 25px 0;
	text-transform: uppercase;
}
.universal:hover::after{
	left: 25px;
	opacity: 1;
}
#mobile{
    width: 100%;
    text-align: center;
    display: none;
    line-height: 100px;
    font-size: 32px;
    color: white;
}
.mobile-menu{
    width: 100%;
    position: absolute;
    min-height: 100vh;
    height: auto;
    z-index: 200;
    background: var(--maincolor);
    left: -100%;
    top: 0;
    display: grid;
    grid-template-rows: 50px auto;
    overflow: auto;
}
.mobile-close{
    align-self: center;
    justify-self: end;
    padding: 0 16px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}
.mobile-link{
    color: white;
    padding: 0 16px;
    width: 100%;
    display: block;
    height: 50px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}
.mobile-trigger{
    color: white;
    padding: 0 16px;
    min-height: 50px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    display: grid;
    grid-template-columns: auto 50px;
    cursor: pointer;
}
.mobile-trigger p{
    margin: 0;
}
.mobile-submenu{
    display: none;
    grid-column: 1/3;
    padding: 8px 0;
    min-height: 50px;
}
.post-section{
    width: 100%;
    margin: 10px auto;
    display: block;
    background: var(--maincolor);
}
@media (min-width: 1280px){
    .post-section{
        max-width: calc(100% - 200px);
    }
}
.post-section h1{
    width: 100%;
    font-size: 64px;
    color: #eba63f;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}
.posts{
    width: 100%;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.4%;
    grid-gap: 10px;
}
.post{
    display: grid;
    grid-template-rows: 100px 150px 50px;
    align-self: center;
    justify-self: center;
    width: 100%;
    height: 300px;
    border: 2px solid var(--goldcolor);
    background: transparent;
    color: #f0f0f0;
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.post.loading{
  animation: pulse 1s ease infinite;
}

.post:hover{
    background: var(--goldcolor);
    color: var(--maincolor);
}
.post h2{
    color: inherit;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    text-align: left;
    padding: 0 16px;
    align-self: center;
}
.post p{
    padding: 0 16px;
    text-overflow: ellipsis;
    font-size: 18px;
    width: 100%;
    margin: 0;
    color: inherit;
    height: 150px;
    overflow: hidden;
}
.post .tags{
    align-self: center;
    padding: 0 16px;
}
.post .tags .tag{
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    display: inline-block;
}
#button{
    display: block;
    border: 2px solid var(--goldcolor);
    color: #f0f0f0;
    grid-column: 1/4;
    width: 100%;
    height: 50px;
    text-align: center;
    background: transparent;
    font-size: 18px;
    line-height: 48px;
    font-weight: 400;
		margin-top: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease-in-out;
}
#button:hover{
    background: var(--goldcolor);
    color: var(--maincolor);
}
footer{
    margin-top: 20px;
    width: 100%;
}
.foot-section{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    height: 60px;
    display: grid;
    grid-template-columns: 50% 50%;
}
.foot-section p{
    color: white;
    text-align: center;
    align-self: center;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}
.foot-section p a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}
#slider-mob{
    display: none;
}
.art{
    height: auto !important;
    min-height: 100vh;
}
#artists{
		margin-top: 130px;
    grid-column: 1/3;
    justify-self: center;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 300px 300px 300px 300px;
		grid-row-gap: 100px;
}
.teach{
	margin-top: 130px;
	grid-column: 1/3;
	justify-self: center;
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: 300px 300px 300px 300px;
	grid-row-gap: 100px;
}
.artist-box{
	padding: 30px;
	color: var(--goldcolor);
	text-align: justify;
}
.artist-box .title{
	text-align: center;
	font-size: 3.4em;
	font-family: 'Open Sans', sans-serif;
	font-weight: lighter;
	letter-spacing: 5px;
	margin-top: 100px;
	margin-bottom: 100px;
}
.artist-box .boxed{
	display: flex;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
	flex-wrap: wrap;
}
.artist-box .boxed .in{
	width: 60%;
	margin: 40px;
}
.artist-box .boxed .part{
	display: flex;
	justify-content: flex-end;
	text-align: right;
}
.artist-box .image{
	min-width: 400px;
	min-height: 600px;
	max-height: 1400px;
	max-width: 500px;
	margin-top: 35px;
	background-size: cover !important;
}
.artist{
	border: 2px solid #222;
	filter: grayscale(100%);
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 300px;
	align-self: center;
  position: relative;
	transition: .5s all ease;
}
.artist:hover{
	filter: grayscale(0%);
}
.artist .role, .artist .name{
	font-family: 'Roboto Condensed', sans-serif !important;
	background: #000;
	color: white;
	position: absolute;
	bottom: -40px;
	width: 100%;
	padding: 10px;
	text-align: center;
}
.artist .name{
	top: -40px !important;
	height: 40px;
}
.artist .fore{
    width: 100%;
    height: 100%;
    position: absolute;
}
.artist .info{
    position: absolute;
    display: grid;
    height: 100%;
    top: -100%;
    width: 100%;
		background: rgba(0,0,0,0.85);
    transition: all .2s ease-in-out;
}
.artist:hover .info{
    top: 0;
}
#artists .title{
    color: var(--goldcolor);
    text-align: center;
    font-size: 72px;
    grid-column: 1/5;
		font-size: 3.4em;
		font-family: 'Open Sans', sans-serif;
		font-weight: lighter;
		letter-spacing: 10px;
}
.info h1{
    color: white;
    text-align: center;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 32px;
    text-shadow: 0 2px 5px rgba(33,33,33,0.2);
    letter-spacing: 2px;
}
.info p{
    color: white;
    text-align: center;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
#text{
    width: 100%;
    max-width: 900px;
    margin: 0px auto;
    padding: 100px 0 0 0;
    width: 100%;
    max-width: 900px;
    max-height: 70%;
    margin: 0px auto;
    padding: 100px 0 0 0;
    overflow: scroll;
    border: 2px solid #eba63f;
}
#text h1{
    margin: 0;
    width: 100%;
    font-size: 64px;
    color: #eba63f;
    font-weight: 300;
    text-transform: uppercase;
}
#text p{
    color: white;
    font-size: 18px;
    white-space: pre-line;
}
#text p span{
    font-size: 24px;
    color: #eba63f;
    margin: 10px 0 ;
}
.form-section{
    grid-column: 1/3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin: 0 auto 15px auto;
}
.form{
    width: 100%;
    align-self: center;
    justify-self: center;
}
#contact{
    align-self: start;
    justify-self: center;
}
.form-section h1{
    width: 100%;
    font-size: 72px;
    color: #eba63f;
    font-weight: 300;
    text-align: center;
    margin: 100px auto 20px;
}
.input-model{
    width: 100%;
    height: 60px;
    border-bottom: 2px solid #eba63f;
    position: relative;
    overflow: hidden;
    margin: 0 0 10px 0;
}
.input-model input, .input-model textarea{
    height: 60px;
    max-width: 800px !important;
    background: none;
    font-size: 16px;
    color: #eba63f;
    padding: 0 16px;
    margin: 0;
    line-height: 60px;
    border: none;
    resize: none;
}
input + label, textarea + label{
    top: 18px;
    position: absolute;
    left: 16px;
    font-size: 16px;
    color: rgba(235,166,63, 0.5);
    transition: all .15s ease-in-out;
    opacity: 1;
}
.input-model textarea{
	height: 300px !important;
}
input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label{
    left: -100px;
    opacity: 0;
}
.form form button{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 2px solid #eba63f;
    background: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #eba63f;
    cursor: pointer;
    transition: all .2s ease-in-out;
    font-weight: 700;
}
.form form button:hover{
    background: #eba63f;
    color: #111E6C;
}
@media (max-width: 1180px){
    header{
        grid-template-columns: 100px auto 100px;
    }
    header nav, .downbar{
        display: none;
    }
    .gradient{
        left: 0;
        width: 100%;
        grid-column: 1;
    }
    #mobile{
        display: block;
    }
    .forward{
        z-index: 1;
        display: none;
    }
    .universal{
        left: calc(50% - 25px);
        z-index: 5;
    }
    .universal::after{
        display: none;
    }
    .slide{
        background-position: 50% 50%;
    }
    #main{
        display: grid;
        grid-template-columns: 100%;
    }
    #artists{
        grid-column: 1;
        display: grid;
        grid-template-columns: 50% 50%;
        max-width: 700px;
    }
    #artists .title{
        margin-bottom: 30px;
    }
    .post-section h1, .form-section h1, .text .title, #artists .title{
        font-size: 48px;
        text-align: center;
    }
    .posts{
        display: block;
    }
    .post{
        margin: 0 auto 10px;
        max-width: 400px;
    }
    #button, .form{
        max-width: 400px;
        margin: 0 auto;
    }
    .form-section{
        display: block;
    }
    .form-section img{
        display: none;
    }
    .foot-section{
        display: block;
        max-width: 400px;
    }
    .mobile-menu{
        display: block;
    }
    .mobile-close{
        text-align: right;
        padding: 16px;
    }
    .column .text {
        grid-column: 1;
        z-index: 5;
    }
    .column .text .title{
        font-size: 48px;
        z-index: 5;
        text-align: center;
    }
    .column .text p{
        text-align: center;
        z-index: 5;
    }
    #slider-mob{
        display: block;
        position: absolute;
        grid-column: 1;
    }
    .form{
        max-width: 400px;
        margin: 0 auto;
    }
    .form-section{
        display: block;
    }
    .foot-section{
        display: block;
        max-width: 400px;
    }
}
.boxed ul{
	padding: 0;
	font-size: 2em;
}
@media (max-width: 1200px){
	.boxed .in{
		margin: 0 !important;
		width: 100% !important;
	}
}
@media (max-width: 600px){
		.boxed ul li{
			padding: 0;
			font-size: .8em !important;
			margin-left: 15px !important;
			margin-right: 15px !important;
		}
		.boxed{
			padding: 0 !important;
			width: 100%;
		}
		.boxed p{
			margin-top: -80px !important;
		}
		.artist-box{
			padding-top: 50px;
		}
		.artist-box .soc ul{
			font-size: 1.5em;
		}
		.artist-box .soc ul li{
			margin: 0;
			margin-left: 10px !important;
			margin-right: 10px !important;
		}
    #slider-mob{
        display: block;
        position: absolute;
        grid-column: 1;
    }
    #modal{
        grid-template-columns: auto 50px;
        grid-template-rows:50px auto ;
    }
    #modal #close{
        font-size: 16px;
    }
    #modal #form{
        max-width: 300px;
    }
    #modal #modal-name{
        grid-column: 1;
        padding-left: 8px;
        line-height: 50px;
    }
    #artists{
        grid-column: 1;
        display: block;
    }
    #artists .title{
        margin-bottom: 30px;
    }
    .post-section h1, .form-section h1,.column .text .title, #modal #modal-name{
        font-size: 16px;
        text-align: center;
        width: 100%;
    }
    .column .text {
        grid-column: 1;
        z-index: 5;
    }
    .column .text .title{
        font-size: 48px;
        z-index: 5;
    }
    .column .text p{
        display: none;
    }
    .post{
        margin: 0 auto 10px;
        max-width: 300px;
    }
    #button, .form{
        max-width: 300px;
        margin: 0 auto;
    }
    .foot-section{
        display: block;
        max-width: 300px;
    }
    .text{
        max-width: 300px;
    }
    .text p{
        color: white;
        font-size: 16px;
        white-space: pre-line;
    }
    .text p span{
        font-size: 18px;
        margin: 10px 0 ;
    }
    #text{
        max-width: 300px;
    }
    #text p{
        color: white;
        font-size: 16px;
        white-space: pre-line;
    }
    #text p span{
        font-size: 18px;
        margin: 10px 0 ;
    }
}
