.about {
    height: 100vh;
    width: 100%;
    background-color: #191919;
    position: relative;
    overflow: hidden;
    display: flex;
}
.about .col1, .col2{
    height: 99.5%;
    width: 50%;
}
.about .col1{
    background-image: url(about.jpg);
    background-size: cover;
    margin-left: 6vw;
    height: 100vh;
}
.about .col2{
    margin-right: 7vw;
}
.info1, .info2{
    height: 80vh;
    width: 80%;
    border: 5px solid #121212;
    border-radius: 50px;
    margin: 10%;
    background-color: #121212;
    opacity: 0.9;
}
.info1 h3, .info2 h3{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin: 10vh 7vh;
}
.info1 p, .info2 p{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin: 7vh;
}
.about h3 span{
    color: yellow;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.about p span{
    color: yellow;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
.info1{
    display: none;
}
@media (max-width:1000px){
    .about .info1{
        display: block;
    }
    .about .col2{
        display: none;
    }
    .about .col1{
        width: 100%;
        margin: 0 6vw;
    }
    .about .info1 h3{
        margin: 10vh5vh;
        font-size: 3rem;
    }
    .about .info1 p{
        margin: 0 5vh;
        font-size: 3vw;
    }
    
}
@media (max-width:700px){
    .about .info1 h3{
        margin: 8vh 5vh;
        font-size: 5vw;
    }
    .about .info1 p{
        margin: 8vh 5vh;
        font-size: 3vw;
    }
}
@media (max-width:500px){
    .about .col1{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .about .info1 h3{
        margin: 0vh 3vh;
        margin-top: 5vh;
        font-size: 8vw;
    }
    .about .info1 p{
        margin: 5vh 3vh;
        font-size: 2.5vh;
        line-height: 1.2rem;
    }
}