.about-page-cover-pic{
    width: 100%;
    height: 350px;
    position: relative;
}
.about-page-cover-pic::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
}
.about-page-cover-pic img{
    height: 100%;
    width: 100%;
}
.foreground{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.right{
    /* background-color: white; */
    min-height: 500px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    margin: auto;
    box-shadow: 0px 0px 2px 2px rgb(192, 192, 192);
}
.box{
    height: 100%;
    padding: 20px;
    
}
.box{
    background-color: #fff;
}
.box p{
    text-align: center;
}
.box:nth-child(1)
{
    background-color: #ff0435;
}
.box:nth-child(4)
{
    background-color: #363636;
}
.logo{
    height: 50px;
    width: 50px;
}
.box .logo-container{
    height: fit-content;
    width: fit-content;
    padding: 10px;
    background-color: white;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
}
.box:nth-child(2) .logo-container,.box:nth-child(3) .logo-container
{
    background-color: #ff0435;
}
.box:nth-child(1) .box-content, .box:nth-child(4)  .box-content
{
    color: #fff;
}
.color-light{
    color: white;
}
.right h5 , .right p{
    text-align: center;
}

@media only screen and (max-width: 480px) {
     .right{
         width: 100%;
         justify-content: center;

     }
     .right h5 , .right p{
        font-size: smaller;
    }
  }