/*==========  Eric Meyer's Reset  ==========*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

/*----------  BORDER-BOX RESET  ----------*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 

}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

/*==========  RESPONSIVE  ==========*/
img{
  max-width: 100%;
  height: auto;
}
.video-main {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
}

.video-main iframe,
.video-main object,
.video-main embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body{
	-webkit-text-size-adjust: none;
	background: #EDEDED;
	font-family: 'Tratto';
    font-weight: normal;
    font-style: normal;
}
header{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 80px;
	border-bottom: 1px solid #000;
}
header #logo{
	width: 100px;
}
main{
	padding: 45px;
	line-height: 1.2;
}
main p{
	width: 990px;
	font-size: 50px;
}
main p#drop{
	margin-top: 1.2em;
	animation:blink 1s infinite;
	animation-timing-function:steps(1, start);
}
@keyframes blink {
    0% { color: #000; }
    50% { color: #FF4D34; }
    100% { color: #000; }
} 
main p#drop:hover, main p#drop.open{
	color: #FF4D34;
	cursor: pointer;
	animation:blinkhover 1s infinite;
}
@keyframes blinkhover {
    from { color: #FF4D34; }
    to { color: #FF4D34; }
}
aside{
	background: #FF4D34;
	position: fixed;
	top: 80px;
	right: 0;
	width: 750px;
	height: calc(100vh - 80px - 62px);
	display: flex;
	transform: translate(680px, 0);
	transition: transform .5s;
}
aside.open{
	transform: translate(0, 0);
}
aside #header{
	width: 70px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	cursor: pointer;
}
aside #header h2{
	font-size: 36px;
	transform: rotate(-90deg);
	width: 270px;
}
aside #header #button{
	width: 42px;
	height: 42px;
	transition: all .3s;
	position: relative;
	cursor: pointer;
}
aside #header #button::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #000;
	transform: translateY(-50%);
}
aside #header #button::after{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 3px;
	height: 100%;
	background: #000;
	transform: translateX(-50%);
}
aside.open #header #button{
	transform: rotate(-45deg);
}
aside form{
	flex: 1;
	padding: 20px;
}
aside form .group-form{
	margin-bottom: 20px;
}
aside form #col2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

aside form #col2 .group-form2{
	width: 48%;
}
aside form #col2 .group-form2:last-child{
	padding-top: 1.5em;
}
aside form h3{
	margin-bottom: .5em;
}
aside form ul{
	display: flex;
	flex-wrap: wrap;
}
aside form ul li{
	width: 27%;
	position: relative;
	margin-bottom: .5em;
}
aside form ul li:nth-child(3n){
	width: 40%;
}
aside form ul li input[type="checkbox"] {
	position: absolute;
  	opacity: 0;
}
aside form ul li input[type="checkbox"] + label {
  padding: 0;
  cursor: pointer;
}
aside form ul li input[type="checkbox"] + label:before{
  content: " ";
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  text-align: center;
  line-height: 13px;
  font-size: 20px;
}
aside form ul li input[type="checkbox"]:hover + label:before, input[type="checkbox"]:checked + label:before{
  content: "\00D7";
}
aside form input[type="text"],
aside form input[type="email"],
aside form textarea{
	font-family: 'Tratto';
	-webkit-appearance: none;
    outline: 0;
    border: 1px solid #000;
    background: #FF4D34;
    width: 100%;
    height: 30px;
    padding: 0.4em;
    margin-bottom: 1em;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
aside form textarea {
    resize: none;
    height: 6em;
}
aside form button{
	-webkit-appearance: none;
    outline: 0;
    border: 1px solid #000;
    background: #fff;
    height: 30px;
    color: #FF4D34;
    padding: 0 .5em;
    cursor: pointer;
    font-size: 17px;
}
footer{
	position: fixed;
	bottom: 0;
	height: 62px;
	padding: 20px 45px;
	background: #000;
	color: #fff;
	width: 100%;
	font-size: 21px;
}
footer ul{
	display: flex;
	justify-content: space-between;
}
footer a{
	text-decoration: none;
	color: #fff;
}                                                                                                                                                                                                              


/*BEANS*/
#beans{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: transparent;
	pointer-events: none;
}
#beans .item{
	position: absolute;
	top: 30px;
	left: 50px;
	width: 100px;
	pointer-events: none;
}

/*===================================
=            MEDIA QUERY            =
===================================*/
/* Large devices (desktops, less than 1600px) */
@media (max-width: 1689px) {

}

/* Large devices (desktops, less than 1200px) - Ipad landscape*/
@media (max-width: 1199px) {
	main p{
		width: 90%;
		font-size: 40px;
	}
}

/* Medium devices (tablets, less than 992px) - Ipad portrait*/
@media (max-width: 991px) {
	header{
		height: 130px;
	}
	header #logo{
		width: 260px;
	}
	main{
		padding: 45px 120px;
	}
	footer{
		font-size: 16px;
		height: 76px;
		padding: 30px;
	}
	aside{
		transform: translate(0, calc(70vh - 76px - 60px));
		width: 100%;
		flex-direction: column;
		top: auto;
		bottom: 0;
		height: calc(70vh)
	}
	aside.open{
		transform: translate(0, 0);
	}
	aside #header{
		width: 100%;
		border: none;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		flex-direction: row;
		padding: 14px 30px;
	}
	aside #header h2 {
	    font-size: 27px;
	    transform: rotate(0deg);
	    width: auto;
	}
	aside #header #button{
		width: 30px;
		height: 30px;
	}
	aside form{
		padding: 30px 30px 120px;
		font-size: 17px;
	}
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
	header{
		height: 56px;
	}
	header #logo{
		width: 90px;
	}
	main{
		padding: 60px 45px;
	}
	main p{
		font-size: 18px;
		width: 100%;
	}
	footer{
		font-size: 8px;
		padding: 16px 20px;
		height: auto;
	}
	aside{
		transform: translate(0, calc(85vh - 40px - 36px));
		height: 85vh;
	}
	aside #header{
		padding: 10px 20px;
	}
	aside #header h2{
		font-size: 12px;
	}
	aside #header #button{
		width: 14px;
		height: 14px;
	}
	aside #header #button::before{
		height: 2px;
	}
	aside #header #button::after{
		width: 2px;
	}
	aside form{
		padding: 20px;
		padding-bottom: 60px;
		font-size: 10px;
		overflow-y: auto;
	}
	aside form ul li,
	aside form ul li:nth-child(3n) {
    	width: 50%;
	}
	aside form ul li.long{
		order: 1;
		width: 100%;
	}
	aside form ul li input[type="checkbox"] + label:before{
		margin-right: 5px;
	}
	aside form button{
		font-size: 12px;
	}
	aside form #col2 .group-form2{
		width: 100%;
	}
	aside form #col2 .group-form2:last-child{
		padding-top: 0;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {


}

/*FONTFACE*/
@font-face {
    font-family: 'Tratto';
    src: url('font/Tratto-Netto.eot');
    src: url('font/Tratto-Netto.eot?#iefix') format('embedded-opentype'),
        url('font/Tratto-Netto.woff2') format('woff2'),
        url('font/Tratto-Netto.woff') format('woff'),
        url('font/Tratto-Netto.ttf') format('truetype'),
        url('font/Tratto-Netto.svg#Tratto-Netto') format('svg');
    font-weight: normal;
    font-style: normal;
}