.twoContainer{
    min-height: 800px;
    height : 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 50px 0;
    box-shadow:  rgba(20, 20, 20, 0.7) 0px 8px 12px;
}
.twoContainer .left{
    width: 50%;
    padding-right: 1vw;
    display: flex;
    align-items: end;
    justify-content: end;
}
.twoContainer .right{
    width: 50%;
    padding-left: 1vw;
    display: flex;
    align-items: start;
}
.twoContainer .contain{
    background-color: #262626;
    box-shadow:  rgba(20, 20, 20, 0.7) 0px 8px 12px;
}
.twoContainer .contain .text{
    min-height: 330px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
    justify-content: center;
}
.twoContainer .contain p{
    font-size: 1rem;
    font-family: 'Roboto', sans-serif ;
    color:#EFEFEE;
}
.twoContainer .contain .title{
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif ;
    font-weight: 300;
    text-transform: uppercase;
}
.twoContainer .contain .subtitle{
    font-size: 1.813rem;
    font-family: 'Oswald', sans-serif ;
    padding-bottom: 15px;
}
.twoContainer .contain .text p:not(.title){
    text-align: justify;
}
@media screen and (max-width:1300px) {
    .twoContainer .contain .text p.title{
        font-size:2rem
    }
    .twoContainer{
        width: 115%;
    }
}
@media screen and (max-width:1000px) {
    .twoContainer{
        flex-direction: column;
        height: auto;
        padding: 100px 20px;
    }
    .twoContainer .left{
        width: 100%;
        justify-content: center;
        padding: 0;
        padding-bottom: 20px;
    }
    .twoContainer .right{
        padding-top: 20px;
        padding: 0;
        width: 100%;
        justify-content: center;
    }
    .twoContainer .contain .text .title, .twoContainer .contain .text .subtitle{
        text-align: center !important;
    }
    .twoContainer .contain .subtitle{
        font-size: 1.5rem;
    }
}
@media (width<400px){
    .twoContainer .contain .text{
        padding: 50px 20px;
    }
}