.abourusarea{
    width:100%;
    background-color: white;
    padding: 80px 0 40px;
}
.aboutcontent{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top:50px;
}
.aboutleft{
    width:50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.aboutright{
    width:45%;
}
.aboutright img{
    width:100%;
}
.aboutdesc{
    width: 100%;
    padding:5px;
    font-size:16px;
}
.aboutdesc p{
    line-height: 26px;
}

.aboutbutton{
    color: #fff;
    font-size: 17px;
    background: #FF3C00;
    padding: 10px 20px;
    border: 1px solid #FF3C00;
    border-radius: 5px;
    transition: .3s;
    text-transform: capitalize;
}
.aboutbutton:hover{
    background:white;
    color:#FF3C00;
    border: 1px solid #FF3C00;
}

.aboutinfo{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    margin-top: 60px;
    align-items: center;
}
.aboutitem{
    width: 24%;
    height: 50px;
    font-size: 14px;
    text-align:center;
}
.aboutitem div:nth-child(1){
    font-size: 36px;
    font-weight: bold;
    color:#14345f;
    width: 100%;
}
.aboutitem div:nth-child(2){
    width: 100%;
}
.abouthline{
    height: 50px;
    width: 2px;
    background: #ccc;
}

@media screen and (max-width: 700px) {
    .aboutcontent{
        display: flex;
        flex-direction: column-reverse;
    }
    .aboutleft{
        width:100%;
    }
    .aboutright{
        width: 100%;
    }
    .aboutitem div:nth-child(1){
        font-size: 30px;
    }
}