#wrapper{
    position: relative;
    width: 100%;
    min-height: 45vw;
    overflow: hidden;
}

#about{
    background-color: transparent;
}

.layer{
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    overflow: hidden;
}

.layer .content-wrap{
    position: absolute;
    width: 100vw;
    min-height: 45vw;
}

.top-section .content-body{
    width: 45%;
    position: absolute;
    padding-right:50px ;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.bottom-section .content-body{
    width: 35%;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #fff;
}

.layer img {
    position: absolute;
    width: 80%;
    height: 95%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.bottom-section{
    background: #181818;
    z-index: 1;
}

.bottom-section .content-body{
    right: 2%;
}

.bottom-section h1{
    color: #5ce1e1;
}

.top-section{
    background: #5ce1e1;
    color: #181818;
    z-index: 2;
    width: 50vw;
}

.top-section .content-body{
    left: 2%;
    color: #181818;
}

.handle-one,
.handle-two{
    position: absolute;
    height: 100%;
    display: block;
    /* background-color: #5ce1e1; */
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

.skewed .handle-one,
.skewed .handle-two{
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    transform-origin: top;
}

.skewed .top-section{
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

.skewed .top-section .content-wrap{
    transform: skew(30deg);
    margin-left: 1000px;
}

.shape-optimus{
    float: right;
    width: 100%;
    height: 500px;
    shape-outside:polygon(620px 37px, 858px 80px, 105.4% 15.6%, 59.85% 138.6%,  60.55% 139.2%, 97.55% 142.8%, 141.4% 11.6%, 94.45% -21.6%, 72.1% -14.8%);
}



@media only screen and (max-width: 1290px){
    .layer .content-body{
        width: 50%;
        justify-content: center;
    }

    .layer img{
        left: 20%;
    }

    .top-section img{
        left: 80%;
    }

    .content-body .topic{
        font-size: 2rem;
        letter-spacing: .3rem;
    }

    .content-body p{
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 980px){
    .content-wrap img{
        display: none;
    }

    .layer .content-body{
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (max-width: 767px){
    #wrapper{
        display: none;
    }
}

