.text {
    width: 100%;
    text-align: center;
    margin-top: 10%;
    font-size: 3em;
    color: #f1f1f1;
    font-weight: 800;
}

.menu-tab {
    width: 90px;
    height: 70px;
    position: inherit;
    float: right;
    z-index: 100;
    top: 0px;
    left: 0px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

.menu-tab div {
    width: 33px;
    height: 4px;
    background-color: #fff;
    display: block;
    margin: 5px;
    transition: all 0.6s ease-in-out;
}

.menu-tab div:nth-child(1) {
    margin-top: 20px;
}

.menu-tab.active {
    left: 345px;
    transition: all 600ms ease-in-out;
}

.menu-tab.active #one {
    -webkit-transform: translateY(9px) rotate(-135deg);
    transform: translateY(9px) rotate(-135deg);
    transition: all 0.6s ease-in-out;
    background-color: #F9B233;
}

.menu-tab.active #two {
    opacity: 0;
    transition: 0.4s ease;
}

.menu-tab.active #three {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    transition: all 0.6s ease-in-out;
    background-color: #F9B233;
}

.menu-hide {
    width: 345px;
    left: -345px;
    height: 100vh;
    position: fixed;
    z-index: 10;
border-right: #F9B233;
    top: 0px;
    transition: all 0.6s ease-in-out;
}

.menu-hide nav {}

.menu-hide nav ul {
    padding: 0;
}

.menu-hide nav ul li {
    height: 70px;
    list-style-type: none;
    text-align: center;
    line-height: 70px;
    transition: all 0.5s ease;
}

.menu-hide nav ul li:hover {
    background-color: #F9B233;
    transition: all 0.3s;
}

.menu-hide nav ul li a {
    padding: 30px 25px;
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 800;
}


.menu-hide.show {
    left: 0px;
    background-color: rgb(13, 12, 12);;
    transition: all 0.3s ease;
    border-right: #F9B233;
}
