@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%);

    --Very-Dark-Blue: hsl(234, 12%, 34%);
    --Grayish-Blue: hsl(229, 6%, 66%);
    --Very-Light-Gray: hsl(0, 0%, 98%);
}
body{
    padding: 10px 20px;
    font-size: 15px;
    font-family:"Poppins";
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--Very-Light-Gray);
}
/* - Mobile: 375px
- Desktop: 1440px */
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px;
}
.container .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    max-width: 500px;
}
.container .text h3:nth-child(1){
    font-weight: 200;
    color: var(--Very-Dark-Blue);
    letter-spacing: 2px;
    font-size: 25px;
}
.container .text h3:nth-child(2){
    font-weight: 600;
    color: var(--Very-Dark-Blue);
    letter-spacing: 2px;
    font-size: 25px;
}
.container .text p{
    color: var(--Grayish-Blue);
    text-align: center;
    line-height: 2;
}
.container .boxs{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
/*     --Red: hsl(0, 78%, 62%);
    --Cyan: hsl(180, 62%, 55%);
    --Orange: hsl(34, 97%, 64%);
    --Blue: hsl(212, 86%, 64%); */
.container .boxs .item{
    background-color: #ffffff;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0px 7px 10px #979797;;    
    padding: 20px;
    height: 200px;
    overflow: hidden;
}
.container .boxs .item:nth-child(1) {
    border-top: 5px solid var(--Red);
}
.container .boxs .item:nth-child(3) {
    border-top: 5px solid var(--Blue);
}
.container .boxs .center .item:nth-child(1){
    border-top: 5px solid var(--Cyan);
}
.container .boxs .center .item:nth-child(2){
    border-top: 5px solid var(--Orange);
}
.container .boxs .item p{
    color: var(--Grayish-Blue);
    /* text-align: center; */
    line-height: 1.6;
    padding-bottom: 20px;
}
.container .boxs .item h4{
    font-weight: 600;
    color: var(--Very-Dark-Blue);
    line-height: 2;
    font-size: 25px;
}
.container .boxs .item footer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.container .boxs .item footer img{
    width: 40px;
}
.container .boxs .center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
@media(max-width:375px){
    .container .text h3{
        font-size: 22px;
    }
}