/* .prlx_cont {
    height: 100vh;
    overflow: hidden auto;
    perspective: 100px;
}

.prlx {
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
}

.prlx .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.prlx .layer.back {
    transform: translateZ(-300px) scale(4);
}

.prlx .layer.front {
    width: 50%;
    transform: translateZ(-150px) scale(2.5);
}
*/

.content {
    padding-top: 200px;
}

.wrapper {
    position: relative;
}

.company_img {
    position: absolute;
    top: 100px;
    width: 45%;
    z-index: 2;
}

.company_text {
    position: relative;
    width: 60%;
    margin-left: 40%;
    margin-bottom: 60px;
    padding: 20px 20px 20px 100px;
    background: #FFF;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 10%);
    z-index: 1;
}

.company_text p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    .content {
        padding-top: 240px;
    }
    .company_text {
        width: 100%;
        margin-left: 0;
        padding: 90px 20px 20px 20px;
    }
    .company_text p {
        font-size: 18px;
    }
    .company_img {
        top: unset;
        bottom: calc(100% - 70px);
        left: 50%;
        transform: translateX(-50%);
        width: unset;
        height: 180px;
    }
}