@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100..900&display=swap');
/* CSS Document */

.work-sans-regular {
  font-family: "Work Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

* { box-sizing: border-box; }


body {
	margin: 0;
	padding: 0;
	background-color: #FFF;
	color: #000;

	font-family: "Work Sans",Helvetica, Arial, sans-serif; font-size: 20px; letter-spacing: 0.02em;
}

a, a:hover{
	cursor: text;
	text-decoration: none;
	color: #000;
}




/* XXXXXXXXXXXXXXX TYPOGRAPHY XXXXXXXXXXXXXXX */




/* XXXXXXXXXXXXXXX WELCOME XXXXXXXXXXXXXXX */


#welcome {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	
	position: relative;
}

.slide {
        z-index: 1;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        transition: opacity 2s ease-in-out;
 
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
 
        opacity: 0;
}
.slide.show { opacity: 1; }


#logo {
	margin: 0;
	padding: 0;
	
	position: fixed;
	top: 50px;
	left: 50px;
	z-index: 999;
}

#logo img { width: 40px; height: auto; }

#footer{
	padding: 0;
	padding-bottom: 25px;
	padding-left: 50px;
	padding-right: 50px;
	margin: 0;

	position: fixed;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 10px;
	z-index: 999;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 16px;
}



/*
XXXXXXX
XXXXXXXXXXXXXXX 
768 
XXXXXXXXXXXXXXX
XXXXXXX
*/


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



} /* END 768 */


/*
XXXXXXX
XXXXXXXXXXXXXXX 
1000
XXXXXXXXXXXXXXX
XXXXXXX
*/


@media only screen and (min-width: 1000px) {

	#footer{	
		position: fixed;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		font-size: 20px;
	}

} /* END 1000 */


/*
XXXXXXX
XXXXXXXXXXXXXXX 
1200
XXXXXXXXXXXXXXX
XXXXXXX
*/


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


} /* END 1200 */