
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');


/* ------------------------------------------------------------------------------------------------------------------------- */
/* --- MAIN - MAIN - MAIN -------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */

html, body {
	margin:						0;
	padding:					0;
	height:						100%; /* needed for container min-height */
}

body {
	font-family:				'PT Sans', sans-serif;
	font-size:					16px;
	font-weight:				400;
	color:						#2c2c2c;
	background-color:			#ffffff;

}

#main {
	min-height:					calc(100% - 342px);
	height:						auto !important;
	height:						calc(100% - 342px);
	width:						980px;
	margin:						40px auto;
	background-color:			#ffffff;
}

a {
	color:						#2c2c2c;
	text-decoration:			none;
}

a:hover {
	color:						#2c2c2c;
	text-decoration:			underline;
}


/* ------------------------------------------------------------------------------------------------------------------------- */
/* --- BASIC - BASIC - BASIC ----------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */

h1 {
	font-size:					32px;
	font-weight:				400;
	margin:						0;
}

.container {
	display:					flex;
}

.box-1 {
	text-align:					left;
}

.box-1 li {
	line-height:				24px;
	padding-bottom:				10px;
}

.box-1 a {
	color:						#c6031d;
	text-decoration:			none;
}

.box-1 a:hover {
	text-decoration:			underline;
}

.box-2 {
	text-align:					center;
	width:						410px;
	padding-left:				70px;
}

p {
	line-height:				28px;
	margin-bottom:				15px;
}

.glass_button {
	border-radius:				5px;
	border:						1px solid #ab0218;
	padding:					8px 30px;
	background-image:			linear-gradient(#e20421, #ab0218);
	box-shadow:					0px 1px 4px -2px #333;
	color:						#ffffff;
	text-shadow:				1px 1px #8e031b;
	font-weight:				400;
	font-size:					16px;
	margin:						10px;
	text-align:					center;
}


.glass_button:hover {
	background:					linear-gradient(#e93b52 10%, #e20421 40%, #ab0218);
	color:						#ffffff;
	font-weight:				400;
	font-size:					16px;
	text-decoration:			none;
}

.glass_button3:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background:					linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}



/* ------------------------------------------------------------------------------------------------------------------------- */
/* --- HEADER - HEADER - HEADER -------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */

#header {
	width:						100%;
	height:						130px;
	background-image:			linear-gradient(#d4d4d4, #eaeaea 20%);
	border-bottom:				1px solid #d4d4d4;
	text-align:					center;
}

.navbar {
	margin:						0 auto;
	width:						calc(980px - 40px);
	overflow:					hidden;
	display:					inline-block;
}

.navbar img {
	float:						left;
	padding-top:				10px;
}

.navbar a {
	float:						right;
	font-size:					16px;
	color:						#2c2c2c;
	text-align:					center;
	padding:					6px 17px;
	text-decoration:			none;
}

a.menu-top {
	margin:						50px 0 0 30px;
}

.dropdown {
	float:						right;
	margin:						50px 0 0 30px;
	overflow:					hidden;
}

.dropdown .dropbtn {
	font-size:					16px;
	font-weight:				400;
	border:						none;
	outline:					none;
	color:						#2c2c2c;
	padding:					6px 17px;
	background-color:			inherit;
	font-family:				inherit;
	margin:						0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
	border-radius:				4px;
	background-image:			linear-gradient(#e20421, #ab0218);
	color:						#ffffff;
}

.dropdown-content {
	display:					none;
	position:					absolute;
	border-radius:				4px;
	background-color:			WhiteSmoke;
	min-width:					140px;
	box-shadow:					0 8px 16px 0 rgba(0,0,0,0.2);
	z-index:					1;
}

.dropdown-content a {
	float:						none;
	color:						black;
	padding:					8px 16px;
	text-decoration:			none;
	display:					block;
	text-align:					left;
}

.dropdown-content a:hover {

	background:					lightgrey;
	color:						#2c2c2c;
}

.dropdown:hover .dropdown-content {
	display:					block;
}


/* ------------------------------------------------------------------------------------------------------------------------- */
/* --- FOOTER - FOOTER - FOOTER -------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------- */

#footer {
	width:						100%;
	height:						130px;
	background-color:			#eaeaea;
	border-top:					1px solid #d4d4d4;
}

#footer div {
	margin:						40px auto;
	width:						calc(980px - 40px);
		text-align:					center;
}

#footer img {
	padding:					10px 20px;
}

