body {
    margin: 0;
    padding: 0;
}

.about_main {
    width: 100%;
    height: 100%;
    margin: 0 0 0 96px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    overflow: auto;
}

.about_box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border: 1px solid rgb(255, 255, 255);
}

.about_image_container {
    border: 1px solid rgb(255, 255, 255);
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_image {
    width: 95%;
    height: fit-content;
}

.about_container {
    height: fit-content;
    border: 1px rgb(255, 255, 255) solid;
    padding: 25px 50px;
}

.about_phil_p, .about_serv_p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}

.about_serv_li {
    display: list-item;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    list-style-type: disc;
    
}

.about_serv_ul {
    list-style-type: disc;
    list-style-position: inside;
}

#mobile_img {
    display: none;
    width: 95%;
    height: fit-content;
}

.kouttos {
    display: none;
}

@media only screen and (max-width: 1024px){

    .about_main {
        width: 100%;
        height: 100vh;
        margin: 0;
        overflow: auto;
    }

    .about_box {
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    .about_container {
        height: fit-content;
        padding: 25px 10px;
    }

    .about_image_container {display: none;}
    .about_image {display: none;}
    #right_img {display: none;}
    
    #mobile_img {
        display: block;
        width: 100%;
        height: auto;
    }

    .kouttos {
        display: block;
        width: 100%;
        height: 90px;
    }
}

@media only screen and (max-width: 480px){
    .about_main {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .about_box {
        width: 95%;
        display: block;
    }

    .about_container {
        height: fit-content;
        padding: 25px 10px;
    }

    .about_image_container {
        display: none;
    }

    .about_phil_p, .about_serv_p, .about_serv_li {
        font-size: 16px;
        line-height: 26px;
        margin: 0;
    }

    #right_img {
        display: none;
    }
    
    #mobile_img {
        display: block;
        width: 95%;
        margin: 0 auto;
    }

    .kouttos {
        display: block;
        width: 100%;
        height: 80px;
    }
}