.white-boxes-section {
   display: flex;
   flex-flow: wrap;
}
.white-box-item {
    display: flex;
    background-color: #ffffff;
    width: 49%;
    margin-right: 1%;
    margin-bottom: 2%;
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    padding: 3%;
    border-radius: 20px;
}
.white-box-item:nth-of-type(2n) {
    margin-right: 0;
    margin-left: 1%;
}
.left-image-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 20%;
    padding-top: 20px;
}
.white-content-box {
    width: 80%;
}
.white-box-item h2 {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
}
.white-box-icon {
    display: block;
    width: 50px;
}
@media only screen and (max-width:1000px) { 
    .white-box-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }
}
@media only screen and (max-width:600px) { 
    .white-box-item {
        margin-bottom: 3.5%;
    }
}
@media only screen and (max-width:470px) { 
    .white-content-box {
        width: 100%;
    }
    .white-box-item {
        margin-bottom: 3.5%;
    }
    .white-box-item { 
    flex-direction: column;
    padding: 7%;
    }
}