* {
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   text-decoration: none !important;
   list-style-type: none !important;
   user-select: none;
   font-family: "Poppins", sans-serif;
 }

/*  Info Cards Styling */
.content{
    width: 100%;
    padding-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    color: #000;
 }
 @media screen and (max-width: 767px){
    .content{
       padding-top: 80px;
       flex-direction: column;
    }
 }
 .card{
    width: 300px;
    height: 280px;
    background-color: #fff;
    margin: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 5px rgba(0,0,0,0.24);
    cursor: pointer;
    border: 0;
    transition: all 0.3s ease;
    background: linear-gradient(45deg , rgba(255,255,255,1) 80% , rgba(35,72,255,1) 82%);
    background-size: 450px;
 }
 .icon{
    margin: 0 auto;
    width: 100%;
    height: 80px;
    max-width: 80px;
    background: linear-gradient(90deg, rgba(126,148,255,1) 41%,rgba(0,0,0,1) 53%);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s ease;
    background-size: 200px;
 }
 .card .title{
    margin: 0;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
 }
 .card .text{
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
 }
 .card:hover{
    height: 300px;
    background-position: -80px;
 }
 .card:hover .info{
    height: 90%;
 }
 .card:hover .text{
    opacity: 1;
    max-height: 40px;
 }
 .card:hover .icon{
    background-position: -100px;
    transition: all 0.4s ease-in-out;
    color: #2348ff;
 }


/* Footer Styling */
:root {
   --color-black: #BCC7C7;
   --color-darc:#1f1f1f;
   --color-blac: #000000;
 } 
 .bg-darc{
   background-color: var(--color-darc) !important;
 }
 .text-black{
   color: var(--color-black) !important;
 }
 .text.blac{
   color: var(--color-blac) !important;
 }
 ul li a{
   color: #BCC7C7;
 }
footer{
  background-image: url(../img/pattern3.png);
}