#about{
    position: relative;
}


#about h2{
    color: #0b4a93;
}

#about h6{
    font-size: 16px;
}

#about .imgabout{
    position: relative;
    right: 25px;
}

#about .btn-light {
    position: relative;
    padding: 12px 30px;
    color: #fff;
    background: #062550;
}

#about .btn-light::before {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    left: 10px;
    bottom: -10px;
    background: #062550;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#about .btn-light::after {
    content: '';
    width: 1px;
    height: 0%;
    position: absolute;
    right: -10px;
    top: 10px;
    background: #062550;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

#about .btn-light:hover:before {
    content: '';
    width: 105%;
    height: 1px;
    position: absolute;
    left: 10px;
    bottom: -10px;
    background: #062550;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#about .btn-light:hover:after {
    content: '';
    width: 1px;
    height: 110%;
    position: absolute;
    right: -10px;
    top: 10px;
    background: #062550;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


@media(min-width:992px){
    
#about .imgabout{
    position: relative;
    right: -80px;
}


#about h6{
    font-size: 18px;
}

}