* {
    padding: 0;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    z-index: 2;
    transition: 0.6s;
}

.showcase header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo a {
    text-decoration: none;
    color: white;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
  }

.mid {
    font-size: 20px;
    width: 1200px;
    max-width: 200%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social {
    position: absolute;
    z-index: 10;
    justify-content: space-between;
    align-items: center;
    display: flex;
    transform: translateY(75px);
}

.social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-right: 1px;
    transform: scale(0.65);
    transition: 0.5s;
}

.social li a:hover {
    transform: scale(0.7) translateY(-12px);
}

/*side menu styling*/
.showcase.active {
    right: 300px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url('ham.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.toggle.active {
    background: url('hamclose.png');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}

.menu {
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center; /*vertical*/
    justify-content: center; /*horizontal*/
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #111;
}

.menu ul li a:hover {
    color: grey;
}
/*side menu style end*/

@media screen and (max-width: 600px)
{
    .showcase header{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 40px 50px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mid{
        font-size: 16px;
        width: 1200px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .social {
        transform: translateY(60px);
    }
    .logo img {
        height: 50px;
        width: auto;
    }
}