.about{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Source Sans 3", sans-serif;
    position: relative;
    overflow: visible;
}

.about-overlay{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

.about-cube-container{
    position: absolute;
    transform: skewY(-20deg);
    right: 250px;
    bottom: 170px;
    filter: brightness(0.4);
    z-index: 1;
}

.about-cube{
    position: relative;
    width: 200px;
    height: 450px;
    display: inline-block;
    background: #318cb3;
}

.about-cube::before{
    content: '';
    position: absolute;
    left: -30px;
    width: 30px;
    height: 100%;
    background-color: #3aa4d2;
    transform-origin: right;
    transform: skewY(45deg);
}

.about-cube::after{
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #46c8ff;
    transform-origin: bottom;
    transform: skewX(45deg);
}

.rising-cube-holder{
    position: absolute;
    bottom: 0;
    overflow: hidden;
    width: 1000px;
    height: 600px;
}

.rising-cube-container{
    position: relative;
    transform: skewY(-20deg);
}

.rising-cube-container .rising-cube{
    position: relative;
    translate: calc(var(--z) * 60px) calc(var(--z) * 60px);
}

.rising-cube-container .rising-cube div{
    position: absolute;
    translate: calc(var(--x) * -70px) calc(var(--y) * -70px);
}

.rising-cube-container .rising-cube div span{
    position: relative;
    width: 50px;
    height: 50px;
    display: inline-block;
    background: #d3a200;
    transition: 1.5s;
}

.rising-cube-container .rising-cube div span::before{
    content: '';
    position: absolute;
    left: -40px;
    width: 40px;
    height: 100%;
    background-color: #deaa00;
    transform-origin: right;
    transform: skewY(45deg);
    transition: 1.5s;
}

.rising-cube-container .rising-cube div span::after{
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #ffc400;
    transform-origin: bottom;
    transform: skewX(45deg);
    transition: 1.5s;
}

.rising-cube-container .rising-cube div span.rise-cube{
    margin-top: -60px;
    margin-bottom: 60px;
    background: #bd2351;
}

.rising-cube-container .rising-cube div span.rise-cube::before{
    background: #e32c63;
}

.rising-cube-container .rising-cube div span.rise-cube::after{
    background: #f9306c;
}

.about-overlay .rising-cube-container{
    position: absolute;
    left: 25%;
    bottom: 25%;
    filter: brightness(0.4);
}

.about-overlay .code-blur{
    display: flex;
    gap: 20px;
    width: 400px;
    flex-wrap: wrap;
    margin-top: -60px;
}

.about-overlay .code-blur span{
    display: block;
    height: 12px;
    width: 100px;
    background: #fff;
    filter: blur(8px) brightness(0.6);
}

.about-overlay .code-blur span.yellow{
    background: #ffc400;
}

.about-overlay .code-blur span.blue{
    background: #46c8ff;
}

.about-overlay .code-blur span.red{
    background: #f9306c;
}

.about-overlay .code-blur span:nth-child(1),
.about-overlay .code-blur span:nth-child(6), 
.about-overlay .code-blur span:nth-child(7), 
.about-overlay .code-blur span:nth-child(17){
    width: 20px;
}

.about-overlay .code-blur span:nth-child(2),
.about-overlay .code-blur span:nth-child(8){
    width: 60px;
}

.about-overlay .code-blur span:nth-child(10), 
.about-overlay .code-blur span:nth-child(5), 
.about-overlay .code-blur span:nth-child(11){
    width: 180px;
}

.about-overlay .code-blur span:nth-child(13){
    width: 250px;
}

.about-overlay .bottom-code-blur{
    position: absolute;
    bottom: -70px;
    right: 0;
    justify-content: flex-end;
}

.about-overlay .my-pic{
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-overlay .my-pic img{
    filter: brightness(0.3);
    margin-left: -60px;
    margin-top: -200px;
    width: 400px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-overlay .my-pic::before{
    position: absolute;
    z-index: 1;
    content: '';
    height: 250px;
    width: 250px;
    background: #151515;
    margin-left: -400px;
    margin-bottom: -50px;
}

.about-overlay .my-pic::after{
    position: absolute;
    z-index: 1;
    content: '';
    height: 400px;
    width: 250px;
    background: #151515;
    margin-right: -300px;
    margin-bottom: -120px;
}

.about-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1366px;
}

.about-left{
    width: 50%;
}

.about-hd span{
    transition: 0.3s;
}

.about-left p{
    font-size: 20px;
    font-weight: 100;
    padding-top: 15px;
    letter-spacing: 1px;
}

.about-left p::before{
    position: absolute;
    content: '';

}

.about-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 45%;
}

.about-right p{
    font-size: 18px;
}