:root {
    --varyDarkBlue: hsl(234, 12%, 34%);
    --grayishBlue: hsl(229, 6%, 66%);
    --primary: #012646;
    --weight1: 200;
    --weight2: 400;
    --weight3: 600;
}

.box p {
    color: var(--grayishBlue);
    font-size: 15px;
    margin: 15px 0;
}

.box {
    height: 100%;
    border-radius: 5px;
    box-shadow: 0px 30px 40px -20px var(--grayishBlue);
    padding: 30px;
    margin: 20px;  
    text-align: start;
    border-top: 3px solid #012646;
    cursor: pointer;
}

.img-icon {
    width: 64px;
    height: 64px;
    float: right;
}

@media (max-width: 951px) {
    .row1-container {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 950px) and (min-width: 450px) {
    .box {
        text-align: center;
    }
}

.card-title {
    color: var(--varyDarkBlue);
    font-weight: var(--weight3);
    margin: 15px 0;
    font-size: 22px;
}

@media (min-width: 950px) {
    .row1-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .box-down {
        position: relative;
        top: 150px;
    }
    .box {
        width: 20%;
     
    }
    .header p {
        width: 30%;
    }
}