* {
  margin: 0px;
  padding: 0px;
}
html {
  height: 101%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Novecento', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #171717;
  color: #aaa;
}
@media screen and (max-width: 1140px) {
  .wrapper {
    width: 90% !important;
    margin: 0px auto;
  }
}
@media screen and (max-width: 940px) {
  .wrapper {
    width: 89% !important;
    margin: 10px auto !important;
  }
  section.content {
    padding-top: 0px !important;
    /* padding-top: 150px !important; */
  }
  article {
    background: #252525;
    width: 80% !important;
    margin: 8% 10% 10% 10%;
    padding: 10% !important;
  }
  img {
  width: 120% !important; /* set the width to 100% and remove negativ margin to give white border */
  height: auto;
  margin-left: -10% !important;
  margin-right: -10% !important; 
  }
  img.right, img.left {
    display: none !important;
  }
  nav {
    padding: 25px 0 0 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 90% !important;
  }
  #nav ul li a {
    border: none !important;
  }
  header {
    float: none !important;
    clear: both;
  }
  header h1 {
    text-align: center !important;
    width: 100%;
  }
  header h1 img{
    text-align: center !important;
    width: 100%;
  }
  h1.title {
    margin-left: -20%;
    margin-right: -20%;
    font-size: 40px !important;
    margin-top: 25px !important;
  }
  nav {
    padding: 30px 0 0 0 !important;
  }
}

/* MENU */

#nav, #nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav #toggleMenu, #nav #hideMenu {
  display: none;
}

/* The main navigation bar */
#nav {
  position: relative;
  display: block;
  height: 44px;
  width: 100%; /* The menu will take the width of its container */
  border-radius: 3px;
  background: #272727;
}

#nav>li {
  display: block;
  float: left;
  position: relative;
}

/* The main navigation links */
#nav>li>a {
  /* Layout */
  display: block;
  padding: 13px 22px;
  border-color: #aaa;

  /* Typography */
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  text-decoration: none;

  /* Transitions */
  -webkit-transition: color .2s ease-in, border-top-color .2s ease-in;
  -ms-transition: color .2s ease-in, border-top-color .2s ease-in;
  -moz-transition: color .2s ease-in, border-top-color .2s ease-in;
  -o-transition: color .2s ease-in, border-top-color .2s ease-in;
  transition: color .2s ease-in, border-top-color .2s ease-in;
}

/* The hover state of the links */
#nav>li:hover>a {
  color: #fff;
  border-top-color: #fff;
}

#nav>ul.dropdown>a {
  padding-right: 28px;
}

/* The arrow indicating a dropdown menu */
.dropdown>a::after {
  position: absolute;
  display: block;
  content: "";
  height: 0;
  width: 0;
  border: 4px solid transparent;
  border-top-color: inherit;
  right: 11px;
  top: 21px;
}

/*  The submenus */
#nav ul {
  display: block;
  position: absolute;
  top: 43px;
  left: -9999px;
  opacity: 0;
  background: #272727;
  cursor: pointer;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-transition: opacity .22s ease-in;
  -ms-transition: opacity .22s ease-in;
  -moz-transition: opacity .22s ease-in;
  -o-transition: opacity .22s ease-in;
  transition: opacity .22s ease-in;
}

#nav ul li {
  display: block;
  position: absolute;
  height: 0px;
  -webkit-transition: height .15s ease-in;
  -ms-transition: height .15s ease-in;
  -moz-transition: height .15s ease-in;
  -o-transition: height .15s ease-in;
  transition: height .15s ease-in;
}

/* The submenu appears when its parent is hovered */
#nav>li:hover>ul {
  left: 0px;
  opacity: 1;
}

#nav li:hover>ul>li {
  position: relative;
  height: 31px;
}

/* The submenu links */
#nav ul li a {
  /* Layout */
  display: block;
  padding: 7px 12px 7px 22px;
  width: 130px;

  /* Typography */
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-decoration: none;
  color: #aaa;
  font-weight: 400;

  /* Border */ 
  border-left: 1px solid #171717;
  border-bottom: 1px solid #171717;
  border-right: 1px solid #171717;

  /* Background & effects */
  background: #272727;
  -webkit-transition: color .2s ease-in, border-left-color .2s ease-in;;
  -ms-transition: color .2s ease-in, border-left-color .2s ease-in;;
  -moz-transition: color .2s ease-in, border-left-color .2s ease-in;;
  -o-transition: color .2s ease-in, border-left-color .2s ease-in;;
  transition: color .2s ease-in, border-left-color .2s ease-in;;
}

/* Rounded corners for the last submenu link */
#nav ul>li:last-child>a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* Changing the link color on hover */
#nav ul li:hover>a {
  color: #fff;
}

.nav ul ul {
  display: none;
}

/* Styling for mobile devices */
@media screen and (max-width: 768px) {
  #nav {
    width: 100%;
    max-width: 768px;
    height: auto;
  }

  #nav li {
    float: none;
    padding: 0 10px;
    display: none;
  }

  #nav>li>a {
    padding: 8px 10px;
  }

  .dropdown>a::after {
    display: none;
  }

  #nav ul {
    position: relative;
    top: 0px;
    left: 0px;
    right: auto;
    opacity: 1;
    clear: both;
  }

  #nav ul li, #nav>li:hover>ul>li {
    height: auto;
    position: relative;

  }

  #nav ul li a {
    padding: 5px 10px;
    width: auto;
  }

  #nav #toggleMenu {
    display: block;
  }

  #nav #toggleMenu>a, #nav #hideMenu>a {
    padding: 13px 10px;
    z-index: 1;
  }

  #nav:target li {
    display: block;
  }

  #nav:target #toggleMenu {
    display: none;
  }

  #nav:target #hideMenu {
    display: block;
    background: rgba(0, 0, 0, .3);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
  }

  #nav #hideMenu>a {
    color: #fff;
  }

  #toggleMenu>a::after, #hideMenu>a::after {
    position: absolute;
    content: "";
    right: 20px;
    top: 16px;
    height: 3px;
    width: 20px;
    border-top: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    z-index: 1;
  }

  #toggleMenu>a::before, #hideMenu>a::before {
    position: absolute;
    content: "";
    right: 20px;
    top: 23px;
    height: 3px;
    width: 20px;
    border-bottom: 2px solid #aaa;
    z-index: 1;
  }

  #hideMenu>a::after, #hideMenu>a::before {
    border-color: #fff;
  }

}

/* MAIN PAGE */

.wrapper {
  width: 1140px;
  margin: 50px auto;
}

header img {
  max-height: 110px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
img {
  width: 140%;
  height: auto;
  margin-left: -20%;
  margin-right: -20%;
  /* margin-top: 28px;
  margin-bottom: 28px; */
}
a {
  color: #DD574C;
  text-decoration: none;
}
a,
a:hover,
a:active,
a:visited {
  outline: 0px;
}
a:hover {
  color: #555;
}
img {
  outline: 0;
  border: 0;
}
hr {
  color: #eee;
  border: none;
  background: #eee;
  background-color: #eee;
  height: 1px;
  margin: 10px 0 10px 0;
}
img.right {
  width: 40% !important;
  height: auto !important;
  margin: 16px -80px 30px 20px;
  float: right;
  display: block;
}
img.left {
  width: 40% !important;
  height: auto  !important;
  margin: 16px 20px 30px -80px;
  float: left;
  display: block;
}

h1 {
  font-size: 30px; /* 34px for big title font */
  line-height: 40px;
  color: #555;
  margin-bottom: 20px;
  padding-top: 30px;
}
h2 {
  font-size: 28px;
  font-weight: normal;
  color: #DD574C;
  margin-bottom: 21px;
  padding-top: 30px;
}
h3 {
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #555;
  padding-top: 30px;
  margin-bottom: 21px;
}
h4 {
  color: #DD574C;
  font-weight: normal;
  font-size: 20px;
  color: #555;
  padding-top: 30px;
  margin-bottom: 21px;
}
h5 {
  color: #DD574C;
  font-weight: normal;
  font-size: 16px;
  padding-top: 30px;
  margin-bottom: 21px;
}
h6 {
  color: #DD574C;
  font-weight: 700;
  font-size: 13px;
  padding-top: 30px;
  margin-bottom: 21px;
}
p {
  margin-top: 20px;
  margin-bottom: 20px;
}
ul {
  margin-left: 20px;
  padding-bottom: 30px;
  list-style-type: square;
}
ul ul {
  margin-left: 20px;
}

.text ul p:first-child {
  /* color: #aaa;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  border-top: none;
  border-bottom: none; */
}
blockquote {
  font-style: italic;
  font-weight: 400;
  color: #999;
  font-size: 22pt;
  /* margin-left: 30px;
  margin-right: 30px; */
  padding: 20px 30px;
  text-align: center;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee;
}
em {
  font-style: italic;
  font-weight: 400;
}
code {
  background-color: rgba(255,255,255,0.2);
  padding: 0.1em;
  font-style: normal;
  color: #bababa;
}
/* Flexible iFrame */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,   
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
header {
  float: right;
  width: 100%;
  display: block;
  padding-bottom: 20px;
}
header h1 {
  font-size: 28px
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 0;
}
header h1 a {
  color: #333;
}
header h1 a:hover {
  color: #444;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: .07s ease-in;
  -moz-transition: .07s ease-in;
  -o-transition: .07s ease-in;
  transition: .07s ease-in;
}

h1.title {
  font-family: 'Novecento', Helvetica, Arial, sans-serif;
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  color: #555;
  text-align: center;
  margin-top: 0px;
  padding: 0 0 15px 0;
}
.nav-menu {
  margin: 0 0 20px 0;
}
article {
  background: #252525;
  width: 60%;
  margin: 0 auto;
  /* padding: 40px 228px 60px 228px; */
  padding: 8% 20% 10% 20%;
  float: right; 
  border-radius: 3px;
}
article.home {
  padding: 6% 20% 10% 20%;
}
.context, .text {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.context p {
  font-size: 18px; 
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0px;
  float: left;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.text p:first-child {
  /* color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  margin: -15px 0 25px 0;
  padding: 20px 0;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee; */
}
.text {
  font-size: 16px; 
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0px;
  float: left;
  width: 100%;
}
.text a {
  font-weight: 700;
  font-style: bold;
}
section.content {
  /* margin-top: 120px; */
  padding-top: 20px; /* For image logo edit this value to 40px */
  float: right;
  width: 100%;
}
footer {
  padding-top: 20px;
  margin-top: 10px;
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  clear: both;
}
footer a {
  color: #777;
}
footer a:hover {
  color: #fff;
}
x {
  width: 10%; /* set the width to 100% and remove negativ margin to give white border */
  height: auto;
  margin-left: -10%;
  margin-right: -10%;
}  