.mahou {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 5;
}

.mahou.end {
  opacity: 0;
}

.mahou .circle {
  position: absolute;
  height: 80vmin;
  width: 80vmin;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.6s cubic-bezier(1, 0, 1, 1);
  transition: all 0.6s cubic-bezier(1, 0, 1, 1);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}

.mahou .circle.start {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.mahou .circle_cont {
  -webkit-animation: rotate infinite 20s linear;
  animation: rotate infinite 20s linear;
  border-radius: 50%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mahou img {
  width: 100%;
  border-radius: 50%;
}

.mahou .main {
  position: relative;
  z-index: 2;
}

.mahou .glow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mahou .circle:not(.anim):hover .glow {
  opacity: 0.5;
}

.mahou .circle.anim .circle_cont {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.mahou .circle.anim .glow {
  -webkit-animation: glow 2s forwards ease-in-out;
  animation: glow 2s forwards ease-in-out;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

body {
  background: #000;
}

header {
  display: none;
}

.menu_select {
  position: relative;
  z-index: 1;
}

@font-face {
  font-family: ff;
  src: url("fonts/PerfectDarkBRK.eot");
  src: url("fonts/PerfectDarkBRK.eot?#iefix") format("embedded-opentype"), url("fonts/PerfectDarkBRK.woff") format("woff"), url("fonts/PerfectDarkBRK.ttf") format("truetype");
}

.menu_select h2 {
  font-family: ff;
  text-align: center;
  font-size: 50px;
  margin-top: 20px;
  color: rgb(13, 79, 155);
  text-shadow: 3px 3px #ddd,
    -3px 3px #ddd,
    3px -3px #ddd,
    -3px -3px #ddd;
}

@media (max-width: 768px) {
  .menu_select h2 {
    font-size: 30px;
    text-shadow: 2px 2px #ddd,
    -2px 2px #ddd,
    2px -2px #ddd,
    -2px -2px #ddd;
  }
}

.menu_select li {
  float: left;
  width: 30%;
  height: 100px;
  box-sizing: border-box;
  border: 3px solid #d8d9dd;
  border-radius: 10px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: rgb(13, 79, 155);
  background: -moz-linear-gradient(-45deg, rgb(13, 79, 155) 0%, rgb(0, 0, 54) 100%);
  background: -webkit-gradient(left top, right bottom, color-stop(0%, rgb(13, 79, 155)), color-stop(100%, rgb(0, 0, 54)));
  background: -webkit-linear-gradient(-45deg, rgb(13, 79, 155) 0%, rgb(0, 0, 54) 100%);
  background: -o-linear-gradient(-45deg, rgb(13, 79, 155) 0%, rgb(0, 0, 54) 100%);
  background: -ms-linear-gradient(-45deg, rgb(13, 79, 155) 0%, rgb(0, 0, 54) 100%);
  background: linear-gradient(135deg, rgb(13, 79, 155) 0%, rgb(0, 0, 54) 100%);
}

@media (max-width: 768px) {
  .menu_select li {
    font-size: 14px;
    height: 60px;
    margin-bottom: 30px;
    border-radius: 5px;
  }
}

.menu_select li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}

.menu_select li span {
  vertical-align: middle;
}

.menu_select li:nth-child(3n+1) {
  clear: both;
}

.menu_select li:nth-child(3n+2) {
  margin-left: 5%;
  margin-right: 5%;
}

.menu_select .cursor {
  position: absolute;
  cursor: pointer;
  border-radius: 10px;
  background: white;
  background-clip: content-box;
  opacity: 0.5;
  border: 3px solid transparent;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .menu_select .cursor {
    border-radius: 5px;
  }
}

.container {
  position: relative;
  padding: 50px 5% 0;
}

@media (max-width: 768px) {
  .container {
    padding-top: 30px;
  }
}

.anim-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000;
/*
  -webkit-animation: gradient-move 15s linear forwards infinite;
  -moz-animation: gradient-move 15s forwards infinite;
*/
/*  animation: gradient-move 5s linear infinite;*/
}

@-webkit-keyframes gradient-move {
  0% {
		background-position: 0% 50%
	}
	100% {
		background-position: 150% 50%
	}
}

@keyframes gradient-move {
  0% {
		background-position: 0% 50%
	}
	100% {
		background-position: 100% 50%
	}
}