@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

:root {
  --Red: hsl(0, 78%, 62%);
  --Cyan: hsl(180, 62%, 55%);
  --Orange: hsl(34, 97%, 64%);
  --Blue: hsl(212, 86%, 64%);
  --Grey-500: hsl(234, 12%, 34%);
  --Grey-400: hsl(212, 6%, 44%);
  --White: hsl(0, 0%, 98%);
}
body{
    font-size: 15px;
    background-color:var(--White);
     font-family: "Poppins", sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    max-width: 1100px;
    padding:  2rem;
    margin: auto;
}
.content .container .min-header {
   margin-top: 20px;
    align-items: center;
    text-align: center;
}
.container .min-header h2{
    font-weight: 200;
    font-size: 25px;
color: var(--Grey-400);
}
.container .min-header h1{
    font-weight: 600;
    font-size: 25px;
    color: var(--Grey-500);
}
.container .min-header p{
    padding-top: 20px;
 color: var(--Grey-400);
    line-height: 1.6;
    width: 50%;
    margin: auto;
    max-width: 500px;
}
.container .content-box{
    display: grid;
    margin-top: 3rem;
    column-gap: 30px;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
}
.container .content-box .card{
    padding: 20px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: 230px;
    border-radius: 5px;
    position: relative;
}
.container .content-box h2{
    color:var(--Grey-500);
   margin-bottom: 10px;
}
.container .content-box p{
    font-size: 14px;
    color: var(--Grey-400);
}
.container .content-box img{
    position: absolute;
    right:30px ;
    bottom: 30px;
}

.container .content-box .col-2 .box-1 {
    margin-bottom: 30px;
}
.container .content-box .col-1{
    border-top:5px solid var(--Cyan) ;
}
.container .content-box .col-2 .box-1{
      border-top:5px solid var(--Red) ;
}
.container .content-box .col-2 .box-2{
      border-top:5px solid var(--Orange) ;
}
.container .content-box .col-3 {
      border-top:5px solid var(--Blue) ;
}
@media (max-width:700px) {
    .container .content-box{
        grid-template-columns: 1fr;
    }
    .container .content-box .card{
        margin-bottom: 20px;
    }
    .container .min-header h2,.container .min-header h1{
        font-size: 21px;
    }
}