*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'poppins', sans-serif;
    transition: all 0.3 linear;
}


.card-container{
    width: 100%;
    height: 65vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box{
    width: 30%;
    height: 60%;
    padding: 20px;
    /* padding-top: 80px; */
    margin: 9px;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 3px 5px rgb(0 0 0);
    overflow: hidden;
    z-index: 0;
    position: relative;
      background: rgba(196, 196, 196, 0.1);
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  backdrop-filter: blur(4px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.box h3{
    font-size:35px;
    padding: 20px 0;
    color: #444;
}
.box p{
    font-size: 15px;
    color:black
}

.box button{
    background-color: #333;
    font-size: 17px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 20px;
    padding: 10px;
    color: white;
}

.box button:hover{
    letter-spacing: 2px;
    opacity: 0.8;
}
/* 
.box::before{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.box::after{
    width: 100%;
    height: 100%;
    background-color: red;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    clip-path: circle(15% at 90% 10%);
    transition: 0.2s;
} */

.box .count{
    position: absolute;
    top: 15px;
    right: 30px;
    font-size:50px;
    font-weight:bolder;
    color:#fff;
}
.box a{
    align-items: center;
    display: flex;
    justify-content: center;
}
.box a img{
    position:absolute;
    -webkit-transition: opacity .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}
.box a .down{
    height: 100%;
    width: 100%;
    opacity:0;
}
.box a .down:hover{
    opacity: 1;
    z-index: 100;
}
.box:nth-child(1):after{
    background-color: #4285F4;

}
.box:nth-child(2):after{
    background-color: #EA4335;

}
.box:nth-child(3):after{
    background-color: #FBBC05;

}
.box:nth-child(4):after{
    background-color: #34A853;

}
.box:nth-child(5):after{
    background-color: #4285F4;

}
.box:hover::after{
    clip-path: circle(100%);
}

.box:hover h3{
    color:#fff;
}

.imagecontain img{
    width: 100%;
}


@media screen and (max-width: 1400px)
{
    .home2{
        height: 100vh;
    }
    .box{
        width: 24%;
    }

}
@media screen and (max-width: 900px){
    .box{
        width: 32%;
        height:58%;
    }
    .home2{
        height: 140vh;
    }
}
@media screen and (max-width: 600px){
    .box{
        width: 100%;
        height:58%;
    }
    .home2{
        height: 225vh;
    }
    .box h3{
        font-size:25px;
    }
}
@media screen and (max-width: 400px){
    .box{
        width: 100%;
        height:43%;
    }
    .home2{
        height: 170vh;
    }
    .box h3{
        font-size:25px;
    }
}