/* CSS Document */
body,html{
	background-color: antiquewhite;
	margin: 0;
	padding: 0;
}

.wrapper-first{
	width: 100vw;
	height: 100vh;
	position: relative;
	background-color: antiquewhite;
	max-width: 100%;
}

.background-spin{
	position: absolute;
	z-index: 0;
	width: 99vw;
	height: 100vh;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
}

.bg-spin_img{
	opacity: 0.1;
	display: inline-block;
	top: -85%;
	left: -10vw;
	position: relative;
	width: 120vw;
	-webkit-animation:spin-bg 850s linear infinite;
    -moz-animation:spin-bg 850s linear infinite;
    animation:spin-bg 850s linear infinite;
}

@-moz-keyframes spin-bg { 100% {transform-moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin-bg { 100% {transform-webkit-transform: rotate(-360deg); } }
@keyframes spin-bg { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

.main-logo{
	position: relative;
	top: 15vh;
	height: 45vh;
	width: 100%;
	text-align: center;
	background-color: none;
}

img.main-logo_img{
	position: relative;
	height: 100%;
	-webkit-animation:spin 150s linear infinite;
    -moz-animation:spin 150s linear infinite;
    animation:spin 150s linear infinite;
}

@-moz-keyframes spin { 100% {transform-moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% {transform-webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.clari-logo{
	position: relative;
	top: 15vh;
	height: 30vh;
	width: 100%;
	text-align: center;
	background-color: none;
}

img.clari-logo_img{
	position: relative;
	height: 65%;
}

.clari-logo_title{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 3em;
	font-weight: 200;
	line-height: 0;
}

@media screen and (max-width: 1000px){
	.clari-logo_title{
		font-size: 2em;
		font-weight: 300;
	}
}

.wrapper-second{
	width: 100vw;
	height: 100vh;
	position: relative;
	background-color: #fff;
	max-width: 100%;
}

p.title{
	font-family:  Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	color:#FFCD61;
	font-weight: 600;
	font-size: 1em;
	background-color: #444444;
	text-align: center;
}

.infobox-1{
	position: relative;
	margin: 0 auto;
	top: 5em;
	width: 50%;
	height: 60%;
	text-align: justify;
	font-family: williams-caslon-text, serif, Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	font-weight: 400;
	font-size: 1.1em;
	text-decoration: none;
	background-color: none;
}

.infobox-1 a:link,a:visited,a:hover,a:active{
	font-family:  Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	color:burlywood;
	font-weight: 600;
	font-size: 0.9em;
	
}

img.infobox-1-img{
	position: relative;
	width: 100%;
	height: 18em;
	object-fit: cover;
	object-position: bottom;
}

b{
	font-family:  Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	color:#000;
	font-weight: 600;
	font-size: 0.9em;
}

@media screen and (max-width: 1000px){
	.wrapper-second{
		height: auto;
		min-height: 100vh;
	}
	.infobox-1{
		top:1em;
		width: 90%;
	}
	img.infobox-1-img{
		height: 10em;
	}
}

.bt {
	position: absolute;
	top: 80%;
	left: 50%;
}

.bt2 {
	position: absolute;
	bottom: 5%;
	left: 50%;
}

#btn {
	border-radius: 100%;
	height: 6em;
	width: 6em;
	border: none;
	background-image: url('../img/button/arrow.png');
	background-size: 70%;
	background-position: center 2.5em;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,0.0);
	position: relative;
	transition: 0.2s;
	transform: 0.2s;
	top: -80%;
	left: -50%;
	color: none;
	cursor: pointer;
	z-index: 2;
}

#btn-text {
	bottom: -25.5em;
	position: relative;
	text-align: center;
	font-family: Arial Black;
	font-size: 1em;
	width: 100%;
	color: #CDCDCD;
}

#btn2 {
	border-radius: 100%;
	height: 6em;
	width: 6em;
	border: none;
	background-image: url('../img/button/arrow.png');
	background-size: 70%;
	background-position: center 2.5em;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,0.25);
	position: relative;
	transition: 0.2s;
	transform: 0.2s;
	top: -80%;
	left: -50%;
	color: none;
	cursor: pointer;
	z-index: 2;
}

/* FONTS
WilliamsCaslonText Italic

	font-family: williams-caslon-text, serif;
	font-weight: 400;
	font-style: italic;


WilliamsCaslonText Regular

	font-family: williams-caslon-text, serif;
	font-weight: 400;
	font-style: normal;


WilliamsCaslonText Bold Italic

	font-family: williams-caslon-text, serif;
	font-weight: 700;
	font-style: italic;


WilliamsCaslonText Bold

	font-family: williams-caslon-text, serif;
	font-weight: 700;
	font-style: normal;

*/