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

* {
  margin: 0;
  padding: 0;
}

body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
.row-10 {
	padding-bottom: 10px;
}
.row-20 {
	padding-bottom: 20px;
}
.row-30 {
	padding-bottom: 30px;
}
/* Text */

h1 {
	color: #FFF;
	font-size: 62px;
	padding-bottom: 20px;
}
.dark-h1 {
	color: black;
}
p {
	font-size: 18px;
}
.white-text {
	color: #FFF;
}

/*navigation*/
.nav-menu {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 100px;
	background-color: #BD0E11;
	position: fixed;
	width: 100%;
	vertical-align: middle;
	display: table-cell;
	z-index: 1;
}
.nav-menu li {
	display: inline-block;
	margin-right: 20px;
	margin-left: 20px;
}
.nav-menu li img {
	vertical-align: middle;
}
.nav-menu li a {
	text-decoration: none;
	color: white;
}
.nav-menu li a:hover {
	color: #9a9dd0;
}
.page-active {
	text-decoration: underline;
}

/*banner*/
.main-banner {
	background-image: url("../img/img-test.jpg");
	background-color: black;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 1000px;
	overflow: hidden;
}
.banner-content {
	position: absolute;
	margin-top: 450px;
	margin-left: 100px;
	background-color: #BD0E11;
	padding: 30px;
	border-radius: 20px;
}

/* left-right alignment*/
.left-sided-content {
	float: left;
	margin-left: 100px;
	margin-right: 50px;
	width: 60%
}
.right-sided-picture {
	width: 30%;
	float: right;
}
.right-sided-picture img {
	width: 70%;
}

.right-sided-content {
	float: right;
	width: 60%
}
.left-sided-picture {
	margin-left: 50px;
	margin-right: 50px;
	width: 30%;
	float: left;
}
.left-sided-picture img {
	width: 70%;
}
