.about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    background-image: url(../assets/img/hands.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.about::before{
    position: absolute;
    content: "";
    background-color: white;
    width: 100%;
    height: 100%;
    opacity: .8;
}
.about h2{ 
    color: #032973;
    margin: 10px;
    text-align: center;
}
.box-content{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box-content-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    width: 90%;
}
.box-content-right ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.box-content-right ul li{
    color: black;
    width: 260px;
    text-align: center;
    margin: 5px 10px 15px 10px;
    position: relative;
    /* background-color: white; */
    padding: 10px;
    border-radius: 10px;
}
.box-content-right ul li img{
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 5px;
}
.box-content-left{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

.box-content-left p{
    color: black;
    text-align: center;
    position: relative;
}
.box-content-left:hover{
    box-shadow: 0px 0px 20px #032973;
}
.box-content-right:hover{
    box-shadow: 0px 0px 20px #032973;
}


@media (max-width: 1100px) {
}
@media (max-width: 600px) {
    .box-content-left{
        width: 100%;
    }
    .box-content-right{
        width: 100%;
    }

}
