@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

h1 {
	text-decoration: underline;
	text-decoration-color: #28156E;
}

h1, h2, h3 {
	text-align: center;
}

h2 {
	text-decoration: underline;
	text-decoration-color: red;
	width: 80%;
	margin: auto;
}

.navbar {
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.97);
	position: fixed;
	top: 0;
	width: 100%;
	border-bottom: 1px solid #AAAAAA;
	z-index: 99;
}

.links {
	width: 80%;
	margin: auto;
	text-align: center;
}

.navbar a img {
	width: 100px;
	height: auto;
}

.navbar a {
	float: left;
	display: block;
	color: #252525;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	transition: .3s;
	font-size: 13pt;
	margin: auto;
	margin-top: 8%;
}

.navbar .active, .sidenav .active {
	color: red !important;	
	background-color: #efefef;
}

.links a:hover {
	background-color: #ddd;
	transition: .3s;
	color: red;
}

.navbar .logo:hover {
	background: none !important;
}

.small-menu {
	display: none;
	margin-top: 50%;
}

@media (max-width: 660px) {
	.small-menu {
		display: block;
	}
	
	.big-menu {
		display: none;
	}
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #ECECEC;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	text-align: center;
	z-index: 999;
}

.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: .3s;
}

.sidenav a:hover{
	color: red;
	transition: .3s;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}

@media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
}

main {
	margin-top: 159px;
}

footer {
	margin-top: 70px;
	background-color: rgba(50,76,99,1.00);
	color: #FFF;
}

footer .inf {
	display: flex;
}

footer .copyright {
	width: 100%;
	text-align: center;
	padding: 10px 0;
	background-color: #283746;
	display: flex;
	font-size: 10pt;
}

footer .copyright p {
	width: 100%;
}

footer .copyright a {
	text-align: right;
	width: 100%;
	position: absolute;
	transform: translate(-100px, 15px)
}

@media (max-width: 680px) {
	footer .copyright a {
		position: relative;
	}
	
	footer .copyright {
		display: block;
	}
}

footer .inf .left, footer .inf .center, footer .inf .right {
	width: 33%;
	text-align: center;
}

footer .inf .right .fa {
	position: absolute;
	transform: translate(-20px, 10px);
}

footer .inf .center .fa {
	position: absolute;
	transform: translate(-25px, 8px);
}

footer .inf .left .fa {
	position: absolute;
	transform: translate(-40px, 35px);
}

footer .inf .left {
	line-height: 30px;
}

footer .inf .left a, footer .inf .center a, footer .inf .right a {
	text-decoration: none;
	color: inherit;
	line-height: 34px !important;
}

footer .contact-us {
	border: none;
	background-color: #DA251C;
	color: white;
	padding: 5px 20px;
	cursor: pointer;
	transition: .3s;
}

footer .contact-us:hover {
	transition: .3s;
	background-color: white;
	color: red;
	font-weight: bolder;
}

footer a {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 620px) {
	footer .inf .left {
		display: none;
	}
	
	footer .inf .right, footer .inf .center {
		width: 100%;
	}
}

@media (max-width: 365px) {
	footer .inf .right {
		display: none;
	}
	
	footer .inf .center {
		width: 100%;
	}
}



