@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');
*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
	margin: 0;
	background: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: 800;
}

.container {
	width: 80%;
	margin: 0 auto;
}

header {
  background: #000;
}

header::after {
  content: '';
  display: table;
  clear: both;
}

.logo {
  float: left;
  margin: 10px 25px;
}

nav {
  background: #000;
  height: 120px;
  width: 100%;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}

nav a:hover {
  color: #F36C24;
}

nav a:hover::before {
  width: 100%;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

div.hero {
	background-image: url("../img/bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000;
	opacity: 1;
	padding: 40px 0;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	position: relative;
}

h1 {
	color: #fff;
	font-family: 'Work Sans', sans-serif;
	font-size: 1.7em;
	text-align: center;
	opacity: 100%;
	z-index: 1;
}

div.content {
	background: #FFFFFF;
	padding: 45px 0;
}

div.content p {
	font-family: questrial;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	
	margin: auto;
	width: 66%;
}

div.content li {
	font-family: questrial;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	
	margin: auto;
	width: 66%;
}

div.content table {
	padding: 25px 50px;
}

div.content td.activities {
	padding: 25px;
	display: inline-table;
}

div.content td.activities a {
	color: inherit;
	text-decoration: none;
}

div.content p a {
    text-decoration: underline;
    color: #F36C24
}

div.content table img.bottom {
	opacity: 45%;
	max-width: 70%;
	display: inherit;
}

.color-overlay {
	width: 100%;
	height: 100%;
	background: #411903;
	background-blend-mode:color;
	opacity: .78;
	position: absolute;
}

.responsive {
  width: 40%;
  height: auto;
  position: inherit;
}

.intro {
  color: #fff;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 24px;
}

ol {
    margin-left: 75px;
}

footer {
	background: #191A1C;
	position: relative;
}

footer table {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer td {
  display: inline-block;
  margin: 0 80px;
  padding-bottom: 5px;
  text-align: justify;
  vertical-align: middle;
}

footer table tr td p {
	font-family: 'Open Sans', sans-serif;
	color: #8C8C8C;
	align-items: stretch;
	font-size: 14px;
}

@media (max-width: 1189px){
	.logo {
		margin: 10px 25px;
	}
	
	.container {
	width: 100%;
	margin: 10px auto;
	}
	
	header ul li a {
		font-size: 14px;
	}
	
	footer table tr td {
		margin: auto 25px;
		max-width: none;
	}
}

@media (max-width: 1018px) {
	header ul li a {
		font-size: 12px;
	}
}

@media (max-width: 942px) {
	header ul li a {
		font-size: 10px;
	}
}

@media (max-width: 866px){
	.intro {
		font-size: 18px;
	}
	
	footer table tr td p {
		margin: auto;
		max-width: none;
		font-size: 10px;
	}
	
  .checkbtn {
    display: block;
  }
	
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #F36C24;
    top: 120px;
    left: -100%;
    text-align: center;
    transition: all .5s;
	z-index: 5;
  }
	
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
	
  nav ul li a {
    font-size: 20px;
  }
	
  nav a:hover,a.active {
    background: none;
    color: #003D6C;
  }
	
  #check:checked ~ ul {
    left: 0;
  }
}

@media (max-width: 689px) {
  .checkbtn {
    display: block;
  }
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #F36C24;
    top: 90px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover,a.active{
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul{
    left: 0;
  }
	
  footer td {
	  display: block;
	  margin: 0 80px;
	  padding-bottom: 25px;
	  text-align: justify;
	  vertical-align: middle;
  }
	
  footer table tr td p {
	  font-size: 14px;
	  align-content: center;
  }
}