.nav-container {
    display: none;
}

.nav-container-3 {
    display: none;
}

.nav-container-2 a p {
    font-size: 2.2rem;
}

.menu-btn {
    display: block;

}
.nav-container-2{
    padding-left: 25px;
}
@media(max-width: 820px) {
    .nav-container-2 a p{

        /* visibility: hidden; */
        font-size:20px;
        /* font-size: 1rem; */
        /* margin: 1rem; */
        /* width: 200px;
        height: 200px; */
        /* text-decoration: ; */
    }
  }



@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');



#active:checked~.wrapper {
    clip-path: circle(75%);
}

.menu-btn {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 10px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(-135deg, #5b0956, #4d0b49);

    transition: all 0.3s ease-in-out;
}

#active:checked~.menu-btn {
    background: rgb(255, 255, 255);
    color: #0352a8;
}

#active:checked~.menu-btn i:before {
    content: "\f00d";
}

.wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(3, 1, 41, 1) 28%, rgba(69, 15, 145, 1) 79%, rgba(88, 5, 139, 1) 100%);
    clip-path: circle(25px at calc(100% - 45px) 45px);
    transition: all 0.3s ease-in-out;
}

.wrapper ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.wrapper ul li {
    margin: 15px 0;
}

.wrapper ul li a {
    color: none;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: #fff;
    position: relative;
    line-height: 50px;
    transition: all 0.3s ease;
}

.wrapper ul li a:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 50px;
    left: 0;
    border-radius: 50px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s ease;
}

.wrapper ul li a:hover:after {
    transform: scaleY(1);
}

.wrapper ul li a:hover {
    color: #4d083b;
}

input[type="checkbox"] {
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    width: 100%;
    color: #202020;
}

.content .title {
    font-size: 40px;
    font-weight: 700;
}

.content p {
    font-size: 35px;
    font-weight: 600;
}

nav {
    background: rgb(0, 0, 0);
    height: 80px;
    width: 100%;
}

video {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: -1;
}