body,html{
    background-color: #b152f9;
    
}
.Wrapperapp {
    width:100%;
    height: 100vh;
}
.Wrapperapp iframe {
    position:relative;
    width: 100%;
    height: 100vh;
    max-width:100%;

}
@media only screen and (orientation:portrait){
  .Wrapperapp {  
    height: 60vh;
     width: 100%; 
  }
  
  .Wrapperapp iframe {
    position:relative;
    width: 100%;
    height: 60vh;
    max-width:100%;

}
}
.header {
  background-color: transparent;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: absolute;
  /*height:100vh;
  width: 100%;
  background-size: cover;*/
  background-position: center;
  left:12%;
  top:3vw;
  z-index:9999999;
}

.header ul {
	position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #ffffff5e;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  color:#fff;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #040404;
}



/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: left;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  background-color:#f3f3f382;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
.category.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
    text-align: center;
}
.category.item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.category.item h3 {
    margin-top: auto;
}
