@charset "utf-8";


body{
	background-color: #444;
	margin:10px 0 0 0;
}

address{
	font-style:normal;
}

ul {
	list-style: none;
	padding: 0;
}

a {
	text-decoration: none;
}

a:hover {
    background: rgba(255,255,255, .1);
}

header a{
	color:#222;
	font-size: 26px;
	font-weight: bold;
}

header p{
	margin-bottom:3%;
}

h1,h2,h3,h4{
	color: #555;
    font-weight: bold;
}

h1{
	font-size: 27px;
}

h2{
	font-size: 25px;
}

h3{
	font-size: 24px;
}

h4{
	font-size: 23px;
}

.logo-image{
	width: 90%;
	height: 30vw;
	background-image: url(../images/logo.jpg);
	background-position: center;
}

.container {
	display: -webkit-flex;
	display: flex;
	flex-flow: row-reverse;
}

.container-main {
	background-color: #fff;
	border-top-left-radius: 5px;
	padding: 3%;
	width: 70%;
}

section{
	overflow: hidden;
}

.right{
	float: right;
    width: 45%;
    margin: 0 0 4% 4%;
}

.left{
	float: left;
    width: 45%;
    margin: 0 4% 4% 0;
}


.sidebar {
	width:30%;
}

.sidebar-fixed {
	position: sticky;
	margin-bottom: 0;
	top: 10px;
	z-index: 1;
}

.list-home{
	color: #fff;
	background: rgba(0,0,0, .3);
	display: block;
	padding: 7px 17px;
	font-weight: bold;
}

.list-home:before,.list-others:before {
    font-family: 'Font Awesome 5 Free';
	content:'\f00c';
	font-weight: 900;
	margin: 0 3px 0 0;

}

.list-others{
	color: #aaa;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: 0 -1px rgba(0,0,0, .5);
    border-bottom: 1px solid rgba(0,0,0, .2);
    border-top: 1px solid rgba(255,255,255, .1);
    display: block;
    padding:7px 21px;
	width: 100%;
	text-indent: -1em;
	padding-left: 2em;
	font-size: 14px;
}

footer,footer a{
	color: #CCC;
	text-align: center;
}

footer{
	padding: 1%;
}



@media screen and (min-width: 769px) and (max-width: 1129px) {
	header a {
		color: #222;
		font-size: 20px;
		font-weight: bold;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 21px;
	}

	h4 {
		font-size: 20px;
	}
}


@media screen and (min-width: 481px) and (max-width: 768px) {
	header a {
		color: #222;
		font-size: 20px;
		font-weight: bold;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 22px;
	}

	h3 {
		font-size: 21px;
	}

	h4 {
		font-size: 20px;
	}
}



@media screen and (max-width: 480px) {

	header a {
		color: #222;
		font-size: 19px;
		font-weight: bold;
	}

	.container-main {
		background-color: #fff;
		border-top-left-radius: 0px;
		padding: 3%;
		width: unset;
	}

	h1{
		font-size:22px;
	}
	
	h2{
		font-size:20px;
	}

	h3{
		font-size:19px;
	}

	h4{
		font-size:18px;
	}

	.container {
		display:unset;
		display: unset;
		flex-flow: unset;
	}

	.sidebar {
		width: unset;
	}
}



@media screen and (max-width:350px) {


}


