/* index */
body#index {
  background-image: url('../img/bg_landingpage.png');
  background-position: 50% 50%;
  background-size: cover;
}
.content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.img-date {
  max-width: 60%;
}
.content .menu {
  position: relative;
}
.content .menu a:link,
.content .menu a:visited,
.content .menu a:hover,
.content .menu a:active {
  line-height: 66px;
  width: 172px;
  display: inline-block;
  transform: skewY(4deg);
  position: relative;
  z-index: 1;
}
.content .menu a:before{
  z-index: -1;
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
}

.content .menu a:hover:before{
  width: 100%;
  animation: activeBtn .15s linear;
}

.content .menu a span {
  transform: skewY(-4deg);
  display: inline-block;
  z-index: 1;
}
.content .menu a:nth-child(1) {
  background-color: #FF0084;
  z-index: 0;
  right: -10px;
}
.content .menu a:nth-child(1):before {
  background-color: #FF339C;
}
.content .menu a:nth-child(1) span {
  color: #FFF;
}
.content .menu a:nth-child(2) {
  background-color: #FFF;
  z-index: 1;
  top: 42px;
}
.content .menu a:nth-child(2):before {
  background-color: #E6EBF2;
}
.content .menu a:nth-child(2) span {
  color: #234C91;
}
.content .menu a:nth-child(3) {
  background-color: #45B1DB;
  z-index: 0;
  left: -10px;
  top: 84px;
}
.content .menu a:nth-child(3):before {
  background-color: #5abadf;
}
.content .menu a:nth-child(3) span {
  color: #FFF;
}


.mobile-menu {
  display: none;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.mobile-menu a:link,
.mobile-menu a:visited,
.mobile-menu a:hover,
.mobile-menu a:active {
  line-height: 60px;
  display: inline-block;
  position: relative;
  width: 33.33333%;
  float: left;
  text-align: center;
}
.mobile-menu a span {
  display: inline-block;
}
.mobile-menu a:nth-child(1) {
  background-color: #FF0084;
}
.mobile-menu a:nth-child(1) span {
  color: #FFF;
}
.mobile-menu a:nth-child(2) {
  background-color: #FFF;
}
.mobile-menu a:nth-child(2) span {
  color: #234C91;
}
.mobile-menu a:nth-child(3) {
  background-color: #45B1DB;
}
.mobile-menu a:nth-child(3) span {
  color: #FFF;
}


@media (max-height: 768px) {
  .content {
    top: -42px;
  }
}
@media (max-width: 768px) {
  .content .menu a:link,
  .content .menu a:visited,
  .content .menu a:hover,
  .content .menu a:active {
    line-height: 66px;
    width: 130px;
    display: inline-block;
    transform: skewY(4deg);
    position: relative;
  }
}

@media (max-width: 576px) {
  .mobile-menu {
    display: block;
  }
  .content .menu {
    display: none;
  }
}

@keyframes activeBtn {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}