.site-center {
  position: fixed;
  max-width: 1920px;
  top: 0px;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid #343a40;
}

@media (min-width: 1920px) {
  .site-center {
    margin:0 auto;
  }
}

.header {
  color: #e8b333;
	background-color: #000000;
  padding-bottom: 5px;
	padding-top: 5px;
}

.header img {
}
a:link {
  color: #e8b333;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #e8b333;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: ##5694FC;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: ##5694FC;
  background-color: transparent;
  text-decoration: none;
}


.burger{
  position: absolute;
    top: 30px;
    right: 25px;
    color: #e8b333;
}
.main {
  position:absolute; top:135px; width:100%; height:100%; overflow-y:scroll;
	padding-top: 15px;
}

.burger {
  display: inline-block;
  border: 0;
  outline: 5px;
  padding: 0;
  cursor: pointer;
  border-bottom: 4px solid currentColor;
  width: 30px;
  transition: border-bottom 1s ease-in-out;
  -webkit-transition: border-bottom 1s ease-in-out;
  z-index: 1000;
}
.burger::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.burger:before {
  content: "";
  display: block;
  border-bottom: 4px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger:after {
  content: "";
  display: block;
  border-bottom: 4px solid currentColor;
  width: 100%;
  margin-bottom: 5px;
  transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger-check {
  display: none;
  z-index: 1000;
}
.burger-check:checked ~ .burger {
  border-bottom: 4px solid transparent;
  transition: border-bottom 0.8s ease-in-out;
  -webkit-transition: border-bottom 0.8s ease-in-out;
}
.burger-check:checked ~ .burger:before {
  transform: rotate(-405deg) translateY(1px) translateX(-3px);
  -webkit-transform: rotate(-405deg) translateY(1px) translateX(-3px);
  transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.burger-check:checked ~ .burger:after {
  transform: rotate(405deg) translateY(-4px) translateX(-5px);
  -webkit-transform: rotate(405deg) translateY(-4px) translateX(-5px);
  transition: transform 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
}
.navigation {
  position: absolute;
  top: 73px;
  right: 25px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
.navigation a {
  color: #e8b333;
}
.navigation small {
  font-size: 14px;
}
.navigation ul {
  position: relative;
  z-index: 1000;
  margin: 0;
  padding: 1px;
  max-height: 100vh;
  border: 1px solid #CCC;
  background-color: #000000;
  box-shadow: #CCC -15px 5px 0;
  overflow-y: auto;
}
.navigation li {
  list-style: none;
  font-size: 25px;
  padding: 0px 0;
}
.navigation li a {
  text-decoration: none;
}
.navigation li a:hover {
  text-decoration: underline;
}
.burger-check:checked ~ .navigation {
  max-height: 500px;
  transition: max-height 0.5s ease-in-out;
}