.context{
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
}
.context_title{
    padding-top: 10px;
    padding-left: 10px;
    font-family:'Times New Roman';
}
.context_container{
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 20%;
}
.context_text{
    height: 320px;
    padding-left: 10px;
    font-size: 15px;
    text-align: justify;
    font-family:'Times New Roman';
    line-height: 25px;
}
.context_img{
    height: 350px;
}
.context_image_container {
    width: 70%;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.context_img{
    width: 900px;
}

@media screen and (max-width: 1200px){
    .context_container{
        width: 30%;
    }
    .context_img{
        width: 700px;
    }
    .context_title{
        font-size: 30px;
        padding-top: 10px;
        padding-left: 10px;
    }
}

@media screen and (max-width: 1000px){
    .context_container{
        width: 40%;
    }
    .context_image_container {
        width: 70%;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .context_img{
        width: 500px;
    }
    
    .context_title{
        font-size: 20px;
        padding-top: 10px;
        padding-left: 10px;
    }

    .context_text{
        font-size: 14px;
    }
}
@media screen and (max-width: 730px){
    .context_img {
        width: 300px;
        height: 150px;
    }
    .context_text{
        font-size: 13px;
    }
}
@media screen and (max-width: 600px){
    .context_img{
        width: 0px;
        display: none;
    }
    .context_image_container{
        width: 0;
    }
    .context_container{
        width: 80%;
    }
    .context_text{
        font-size: 12px;
    }
}