/* If you like this, be sure to ❤️ it. */
.wrapper {
  height: 100vh;
  /* This part is important for centering the content */
  display: flex;
  align-items: center;
  justify-content: center;
  /* End center */
  background: -webkit-linear-gradient(to right, #834d9b, #d04ed6);
  background: linear-gradient(to right, #834d9b, #d04ed6);
}

.wrapper a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  background-color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  color: #585858;
  font-family: 'Roboto', sans-serif;
}

.promodal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  background: rgb(44 44 44 / 70%);
  transition: all .4s;
}

.promodal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 90%;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #d02d2c;
  }
}
.modal__close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fff;
  text-decoration: none;
    font-size:45px;
}

.has-children{max-width:14%;}
.pane{position:absolute;left:0;width:100%;box-sizing:border-box;}
.pane ul{display:inline-flex;flex-direction:row;}
.pane li{margin-right:2em;list-style-type: none;padding-top:15px;}
.pane li a{color:#e6e6e6;}
.pane ul ul{display:flex;flex-direction:column;position:relative;padding-left: 0px;}
.pane .has-children > a{margin-bottom:1em;display:block;font-weight:bold;border-bottom:1px solid;}
/*! CSS Used from: http://localhost/asssets/css/queries-metro.css ; media=all */
@media all{
@media only screen and (max-width: 1324px){
nav ul li{display:block;margin:0 0 0 0;margin-right:15px;text-align:left;background:rgba(0, 0, 0, 0);}
nav a{display:block;padding:10px;line-height:30px;}
nav ul ul{position:relative;top:0px;margin-left:4vw;}
nav ul ul li{background:rgba(21, 23, 29, 0);box-shadow:0px 0px 0px rgba(0, 0, 0, 0);}
nav ul ul ul li{position:relative;top:0px;left:0px;box-shadow:0px 0px 0px rgba(0, 0, 0, 0);}
nav ul ul li a{line-height:20px;font-weight:300;font-size:8pt;}
}
}
/*! CSS Used from: Embedded */
a{-webkit-transition:.3s all ease;-o-transition:.3s all ease;transition:.3s all ease;}
a,a:hover{text-decoration:none!important;}
.deskmenu{visibility:visible;
margin-top:17%;
}
@media screen and (max-width: 1300px){
.deskmenu{visibility:hidden;}
}

/* effect-shine */
a.effect-shine:hover {
  -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}