* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    text-decoration: none;
}



.returnToggle {
position: absolute;
bottom: 40px;
right: 0;
z-index: 10;
 
  cursor: pointer;

}

.returnToggle p {
     background-color: rgba(239, 245, 245, .8);
  border-radius: 10px 0 0 10px;
  box-shadow: 5px 8px 15px rgba(0, 0, 0, .45);
  padding: 32px 8px;
    text-align: center;
    color: rgb(108, 166, 171);
    font-weight: 400;
    font-size: 16px;
}

.returnToggle :hover {
    background-color: rgb(239, 245, 245);
}






.showcase {
position: absolute;
right: 0;
padding: 80px;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: space-between;
align-items: center;
background: #111;
color: #fff;
z-index: 2;

}

.showcase.active {
    right: 300px;
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: .8;
}
.text h2 {
font-size: 4.25rem;
font-weight: 800;
line-height: 4.25rem;
text-transform: uppercase;
}

.text h3 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 3.4rem;
    text-transform: uppercase;
    }

    .text p {
        padding: 30px 0px;
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1.5;
        max-width: 700px;
    }

    .text a {
        display: inline-block;
        padding: 8px 30px;
        margin-top: 8px;
        font-size: 1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #111;
        background-color:rgba(256, 256, 256, .65);
        cursor: pointer;
        transition: 0.2s;
        
    }

    .text a:hover {
        letter-spacing: 6px;
    }

    .social {
        position: absolute;
        bottom: 20px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social li {
        list-style: none;
    }

    .social li a {
        display: inline-block;
        filter: invert(1);
        /* margin-right: 10px; */
        transform: scale(40%);
        transition: .3s;
    }
    .social li a:hover {
        transform: scale(40%) translateY(-15px);
        
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #03a9f4;
    mix-blend-mode: overlay;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    
}

.toggle {
    position: relative;
    height: 60px ;
    width: 60px;
    background: url('menuHamburger.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}
.toggle.active {
    background: url('menuX.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    cursor: pointer;

}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    color: #111;
    font-size: 24px;
}

.menu ul li a:hover {
    color: #03a9f4;
}

@media (max-width: 700px) {
    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3rem;
    }

    .text h3 {
        font-size: 2rem;
    }
}