body{
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.footer-links a {
    color: #FFDD4A !important;
}

.cont .card .box{
    position:static;
}

.cont .card .box{
    height:100%;
}

.cont .card .box .content{
    height:100%;
}

.cont .card .box .content h4{
    color: #000;
}

.cont .card .box .content p{
    font-family:inherit !important;
}

.cont .card .box{
    border-radius:4px;
}

.cont .card .box .content i {
    font-size:40px;
}

.cont .card:hover .box .content i{
    color: #fff;
}

.cont.flex-4{
 align-items: stretch;   
}

.cont.flex-4 .card{
    height: auto;
    min-height:400px;
    width:340px;
}

   .cont.b-c {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
     .cont.b-c .card {
            background-color: #ffffff;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 42%;
            transition: box-shadow 0.3s;
            height: auto;
        }
        .cont.b-c .card:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .cont .card .box .content {
            padding: 20px;
        }
        .cont.b-c .card .box .content h4,
        .cont.b-c .card .box .content p {
            margin: 0 0 10px;
            color: #000;
        }
        .cont.b-c .fa {
            margin-right: 8px;
        }
        
        .cont.b-c  .card .box{
            background: #fff;
        }
        
        .cont .card .box .content i{
            display:block;
        }
        
        .card {
    /* Other styles */
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15) !important;
    /* ... */
}
.card:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.25) important;
}

.cont .card:hover .box{
    transform:none;
}

.cont.b-c .card:hover .box .content i {
     color: #000;
}

.cont .card:hover .box .content p{
    font-size: inherit;
    font-weight:inherit;
}

.cont.b-c, .cont.flex-4{
    max-width:81vw;
    margin-left:auto;
    margin-right:auto;
}


@media screen and (max-width:991px){
    .cont.b-c .card{
        width:auto;
    }
}


