/* Overlay style */
.menuAll.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.95;
    background: #45b09a;
}

/* Overlay closing cross */
.menuAll.overlay .overlay-close {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
    border: none;
    background: url(../img/cross.png) no-repeat center center;
    text-indent: 200%;
    color: transparent;
    outline: none;
    z-index: 100;
}

/* Menu style */
.menuAll.overlay nav {
    text-align: center;
    position: relative;
    top: 30%;
    height: 60%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menuAll.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
}

.menuAll.overlay ul li {
    display: block;
    height: 20%;
    height: calc(100% / 5);
    min-height: 54px;
}

.menuAll.overlay ul li a {
    font-size: 54px;
    font-weight: 300;
    display: block;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.menuAll.overlay ul li a:hover,
.menuAll.overlay ul li a:focus {
    color: #f0f0f0;
}

/* Effects */

.container {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.container.overlay-open {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.menuAll.overlay-contentscale {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
}

.menuAll.overlay-contentscale.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    z-index: 99;
}

@media screen and (max-height: 30.5em) {
    .menuAll.overlay nav {
        height: 70%;
        font-size: 34px;
    }

    .menuAll.overlay ul li {
        min-height: 34px;
    }
}

.rodoRegulations {
    margin: 30px 0 10px 0;
}