.section {
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.left {
    left: 0;
    background-color: #f5f5f5;
}

.hero_text_about {
    position: relative;
    top: 10vh;
    left: 50%;
    transform: translate(-50%, -10%);
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

.left h1 {
    max-width: 100%;
    text-align: center;
}

.info_text_about{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.rtl .info_text_about {
    right: 50%;
    transform: translate(50%, -50%);
}

.left p {
    max-width: 100%;
    text-align: center;
}

.right {
    right: 0;
    background: url('../../media/book_dam.jpg') no-repeat center center;
    background-size: cover;
}

.info_text_about button{
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
}

.rtl .info_text_about button{
    position: relative;
    right: 50%;
    transform: translate(50%, 0%);
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    /*About Us*/
    .left {
        left: 0;
        width: 65%;
        background-color: #f5f5f5;
    }

    .right {
        width: 35%;
    }

    .left h1 {
        font-size: 3rem;
    }
    
    .left p {
        font-size: 1.3rem;
    }
    
    .info_text_about button{
        font-size: 2vh;
        width: 10vw;
        margin-top: 10%;
    }

}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    .left {
        width: 100%;
    }

    .right {
        width: 0%;
        display: none;
    }

    .left h1 {
        font-size: 4vh;
    }
    
    .left p {
        font-size: 2vh;
    }

    .info_text_about button{
        border-width: 1vw !important;
        margin-top: 6dvh;
    }
}