#logo_main {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 40px;
  left:50%;
  margin-left:-100px;
}

#responsiveNavContainer {
  width: 100%;
  max-width: 300px;
  height: 530px;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
}

#responsiveNav {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 0px;
  font-size: 19px;
  font-family: SansationLight, Verdana, Geneva, sans-serif;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 230%;
  display: none;
  
  background: #FFFFFF; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#FFFFFF, #FFFFFF 93%, #DDDDDD); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#FFFFFF, #FFFFFF 93%, #DDDDDD); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#FFFFFF, #FFFFFF 93%, #DDDDDD); /* For Firefox 3.6 to 15 */
  background: linear-gradient(#FFFFFF, #FFFFFF 93%, #DDDDDD); /* Standard syntax */
}

ul.topnav {    
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

ul.topnav li {
  font-size: 19px;
  font-family: SansationLight, Verdana, Geneva, sans-serif;
  letter-spacing: 0.15em;
}

.spacer {
  color: #E10F66;
  margin-top:-2px;
  margin-left:10px;
  margin-right:10px;
}

.menuItemOnRightSide {
  float: left;
}

.menuItemOnLeftSide {
  float: right;
}

.navigation_buttons {
  font-family: SansationLight, Verdana, Geneva, sans-serif;
  width: 41px;
  height: 41px;
  position: absolute;
  top: 20px;
  border-radius: 41px;
  border: 1px solid #B0B0B0;
  background-color: #FFFFFF;
  text-align: center;
  line-height: 41px;
  cursor: pointer;
  font-size: 13px;
}

#button_language {
  left: 20px;
}

#button_language1 {
  left: 20px;
  display: none;
  background-color: #B0B0B0;
  color: #FFFFFF;
}

#button_language2 {
  left: 20px;
  top: 65px;
  display: none;
  background-color: #B0B0B0;
  color: #FFFFFF;
}

#button_openMenu {
  right: 20px;
  display: none;
}

#button_openMenu span {
  position: absolute;
  background-color: #B0B0B0;
  left: 12px;
  width: 17px;
  height: 1px;
  transition-timing-function: cubic-bezier(0.8, 0.4, 0.3, 1.4);
  transition-duration: 700ms;
  display: none;
}

#button_openMenu span:nth-child(1) {
  top: 14px;
}

#button_openMenu span:nth-child(2) {
  top: 20px;
  opacity:1;
}

#button_openMenu span:nth-child(3) {
  top: 26px;
}

#button_openMenu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
  left: 9.5px;
  width: 22px;
}

#button_openMenu.open span:nth-child(2) {
  opacity:0;
}

#button_openMenu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 9.5px;
  width: 22px;
}

@media screen and (max-width:1000px) {
  ul.topnav li {
    display: none;
  }
  #button_openMenu {
    display: block;
  }
  #button_openMenu span {
    display: block;
  }
  #responsiveNav {
    display: block;
  }
}