.about {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 5rem 0;
    overflow: hidden;
}



.about01 {
    width: 20%;
    height: 100%;

    transition: .5s;
    transform: translateY(-100px);
    opacity: 0;
}
.about01.active {
    transform: translateY(0);
    opacity: 1;
}
.about01 p {
    padding-left: 5rem;
    background: linear-gradient(180deg, rgba(64,29,1,1), rgba(156,90,38,1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 10rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}



.about02 {
    width: 40%;
    height: auto;
}
.about02 p:nth-child(1) {
    padding-bottom: 1rem;
    margin-right: 16rem;

    border-bottom: solid 5px #6e3201;

    font-size: 4.8rem;
    font-weight: 600;
    line-height: 1.5;
}
.about02 p:nth-child(2) {
    margin-right: 16rem;
    margin-top: 3rem;

    line-height: 2.5;
} 



.about03 {
    width: 40%;
    height: 100vh;
}
.about03 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





@media screen and (max-width: 1100px) {
    .about02 p:nth-child(1) {
        margin-right: 10rem;
        font-size: 4.2rem;
    }
    .about02 p:nth-child(2) {
        margin-right: 10rem;
    } 
}





@media screen and (max-width: 900px) {
    .about {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        height: auto;
        margin: 5rem 0;
        overflow: hidden;
    }



    .about01 {
        position: absolute;
        top: 0;
        left: 0;
        width: 400px;
        height: 100%;
    }
    .about01 p {
        padding-left: 0;
        font-size: 7rem;
        font-weight: 700;
        text-align: center;
        line-height: 60px;
        letter-spacing: 3px;
        text-transform: uppercase;
        writing-mode: vertical-rl;
    }



    .about02 {
        position: absolute;
        top: 50px;
        right: 0;
        max-width: 500px;
        height: auto;
    }
    .about02 p:nth-child(1) {
        margin-right: 5rem;
        font-size: 3rem;
    }
    .about02 p:nth-child(2) {
        margin-right: 5rem;
    }



    .about03 {
        width: 100%;
        height: 600px;

        margin-top: 500px;
        margin-left: 0;
    }
    .about03 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
}





@media screen and (max-width: 520px) {
    .about01 p {
        font-size: 6.4rem;
    }


    
    .about02 {
        position: absolute;
        top: 50px;
        right: 0;
        width: 300px;
        height: auto;
    }
    .about02 p:nth-child(1) {
        margin-right: 4rem;
        
        border-bottom: solid 3px #2f6b45;

        font-size: 24px;
        line-height: 1.7;
    }
    .about02 p:nth-child(2) {
        margin-right: 4rem;
        margin-top: 2rem;
    }
}