body{
    margin: 0;
    font-family: "Poppins", serif;
    text-align: center;
    background-color: rgb(250, 250, 250);
}
/* main{
    display: flex;
} */
.section{
    padding-inline: 1rem;
    margin-inline: auto;
}
.section h2{
    color: #4B4B60;
}
.section p{
    color: hsl(0, 0%, 68%);
}
.reliable{
    font-weight: 200;
}

.box{
    max-width: 360px;

    background-color: white;

    display: flex;
    flex-direction: column; 
    justify-content: space-around;

    padding: 6px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0px 3px 10px 0px hsl(229, 6%, 66%);
    margin-inline: auto;
}
.box img{
    width: 64px;
    height: 64px;
    align-self: last baseline;
}
.box h3{
    color: #4B4B60;
    margin-bottom: 0;
    text-align: left;
    font-weight: 600;
}
.box p{
    margin-top: 4px;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
}
.box-1{   
    border-top: 4px solid cyan;
 }
.box-2{   
    border-top: 4px solid red;
 }
.box-3{ 
    border-top: 4px solid orange;
   }
.box-4{ 
    border-top: 4px solid blue;
   }
@media(min-width: 500px){
    .section{
        width: 490px;
    }
    .box{
        height: 250px;
    }
}
@media(min-width: 900px){
    .section{
        width: auto;
    }
    .container{
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        max-width: 1140px;
        margin-inline: auto;
    }
    .box{
        padding-inline: 1.5rem;
    }
    .box-1{  
        align-self: center;
        flex-grow: 1;
        flex-shrink: 1; 
    }
    .box-4{  
        align-self: center; 
        flex-grow: 1; 
        flex-shrink: 2; 

    }
    .sub-container{
        flex-grow: 1; 
        flex-shrink: 1; 
    }
}
