body
{
  margin: 0px;
  background: #ffffcc;
  font-size: 87.5%;
  font-family: FuturaLight;
  line-height: 1.5em;
}

h1
{
  margin: 25px 0px 15px;
  
  font-size: 1.7em;
  font-family: FuturaHeavy;
  font-weight: strong;
  text-align: center;
}

h2
{
  margin: 25px 0px 15px;
  
  font-size: 1.5em;
  font-family: FuturaHeavy;
  font-weight: strong;
  text-align: center;
}

h3
{
  margin: 25px 0px 15px;
  
  font-size: 1.4em;
  font-family: FuturaHeavy;
  font-weight: strong;
  text-align: center;
}

p 
{ 
  font-size: 1.3em; 
  font-family: FuturaLight;
  font-weight: normal;
  text-align: left;
}

a:hover
{
  text-decoration: none;
}

a
{
  color: #a32346;
  text-decoration: underline;
  font-weight: bold;
  font-family: FuturaHeavy;
}

#mainWrapper
{
  background: #ffcc99;
  border-width: 0px;
  border-top: 10px solid #ff9966;
  border-bottom: 7px solid #ff9966;
}

#logo
{
    width: 100%;
    height: auto;
}

#mainContent
{
  position: relative;
  width: 80%;
  max-width: 1024px;
  margin: 0px auto;
  padding: 30px 0px;
}

#footer
{
  position: relative;
  width: 80%;
  max-width: 1024px;
  margin: 0px auto;
  padding: 0px 0px;
  text-align: center;
  font-size: 0.86em;
}

#footerMenu
{
  margin: 0px 0px 0px;
  padding: 0px;
  list-style-type: none;
  
}

#footerMenu li
{
  display: inline;
  margin-right: 20px;
}

#footerMenu a
{
  color: #000000;
  text-decoration: none;
  font-weight: normal;
  display: inline;
}

#footerMenu a:before
{
  content: "";
}

#footerMenu a:hover
{
  text-decoration: underline;
}

fieldset
{
 border: 0px;  
}

.navbar {
  margin: 0px 0px 0px;
  padding: 0px;
  list-style: none;
  background: #ff9966;
  font-size: 0.86em;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 10px;
  background: #ffcc99;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
