@charset "utf-8";


#slide {
position: relative;
width: 100%;
height: 640px;
}

#slide .imgslide {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
width: 100%;
transition: all 1s ease-in;
opacity: 1;
}

#slide .imgslide.fadeout {
opacity: 0;	
transition: all 1s ease-in;
}

#slide .descslide {
position: absolute;
width: 1140px;
height: auto;
left: calc(50% - 570px);
/*top: 100px;*/
top: 0;
margin: auto;
z-index: 50;
}

#slide .descslide p {
width: 500px;
margin: 1em auto 0 auto;
padding: 1em;
font-family: 'Oswald', sans-serif;
background-color: var(--clr2);
color: #fff;
font-size: 1.5em;
line-height: 1.2em;
text-transform: uppercase;
text-align: center;
}


/*
h1 {
font-size: 4em;
font-weight: 400;
color: #fff;
}
*/


h1 {
margin: 2em 0 1em 0;
font-size: 2em;
font-weight: 500;
color: #333;
}

h1::after {
display: block;
content: '';
width: 2.7em;
height: 3px;
margin-top: 0.5em;
background-color: var(--clr1);
}





#intro {
width: 1560px;
margin: auto;
padding: 0;
padding-bottom: 5em;
}

#intro p {
margin-top: 0;
/*margin-bottom: 2.5rem;*/

/*font-size: .875em;*/
font-size: 1em;
font-weight: 400;
color: #696969;
text-align: left;
}


#bottom {
width: 100%;
text-align: center;
}





@media only screen and (min-width: 1200px) and (max-width: 1599px) {

	#intro {
	width: 1200px;
	}

}


@media only screen and (min-width: 992px) and (max-width: 1199px) {

	#intro {
	width: calc(100% - 2em);
	padding: 0 1em;
	}

}


@media only screen and (min-width: 768px) and (max-width: 991px) {

	h1 {
	font-size: 2.5em;
	}

	#intro {
	width: calc(100% - 2em);
	padding: 0 1em;
	}

}


@media only screen /*and (min-width: 576px)*/ and (max-width: 767px) {

	h1 {
	font-size: 2.5em;
	}

	#intro {
	width: calc(100% - 2em);
	padding: 0 1em;
	}

}


/*@media only screen and (max-width: 575px) {

}
*/




