    .quotes {
        /* width: 80vw; */
        min-height: 400px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        z-index: 2;
        align-items: center;
    }
    
    .quotes .box {
        position: relative;
        width: 320px;
        height: 215px;
        background: #f2f2f2;
        /* overflow: hidden; */
        transition: all 0.5s ease-in;
        z-index: 2;
        padding: 15px;
        flex-wrap: wrap;
        margin-bottom: 10px;
        margin: 30px;
        justify-content: center;
        align-items: center;
        box-shadow: 20px 20px 20px rgba(76, 201, 240, 0.2);
    }
    
    .quotes .box p {
        margin: 0;
        margin-top: 30px !important;
        padding: 8px;
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
    }
    
    .quotes .box h2 {
        margin-left: 25%;
        position: absolute;
        margin: 0;
        text-align: center;
        align-items: center;
        margin-top: 10px !important;
        font-size: 1.9rem;
        margin-bottom: 10px !important;
    }
    
    .quotes .box .box-heading-underline {
        background-color: white;
        width: 113px;
        height: 1px
    }
    
    .quotes .box:hover {
        color: #f2f2f2;
        box-shadow: 20px 50px 100px rgba(0, 0, 0, 0.5);
    }
    
    .quotes .box p:hover {
        color: #f2f2f2;
        /* box-shadow: 20px 50px 100px rgba(0, 0, 0, 0.5); */
    }
    
    .quotes .bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        transition: all 0.5s ease-in;
        pointer-events: none;
        width: 100%;
        height: 200%;
        overflow: hidden;
    }
    
    .quotes .box.box2:hover,
    .quotes .box.box2:hover~.bg {
        opacity: 1;
        background: #e2a9e5;
        background: -moz-linear-gradient(-45deg, #e2a9e5 15%, #2b94e5 100%);
        background: -webkit-linear-gradient(-45deg, #e2a9e5 15%, #2b94e5 100%);
        background: linear-gradient(135deg, #e2a9e5 15%, #2b94e5 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#e2a9e5', endColorstr='#2b94e5', GradientType=1);
    }
    
    .quotes .box.box1:hover,
    .quotes .box.box1:hover~.bg {
        opacity: 1;
        background: #632c65;
        background: -moz-linear-gradient(-45deg, #632c65 15%, #56a5e2 100%);
        background: -webkit-linear-gradient(-45deg, #632c65 15%, #56a5e2 100%);
        background: linear-gradient(135deg, #632c65 15%, #56a5e2 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#632c65', endColorstr='#56a5e2', GradientType=1);
    }
    
    .quotes .box.box3:hover,
    .quotes .box.box3:hover~.bg {
        opacity: 1;
        background: #4b384c;
        background: -moz-linear-gradient(-45deg, #4b384c 15%, #da5de2 100%);
        background: -webkit-linear-gradient(-45deg, #4b384c 15%, #da5de2 100%);
        background: linear-gradient(135deg, #4b384c 15%, #da5de2 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#4b384c', endColorstr='#da5de2', GradientType=1);
    }