h1 {
    color: blue;
}

.Training-content {
    background-color: antiquewhite;
}

.contact-content {
    background-color: forestgreen;
}

/* .card{
    transition: all 0.3s;
   
}
.card:hover{
    transform: scale(1.1);
    cursor:pointer;

} */

.sub-content {
    background: #7F7FD5;
    background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);
    background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);



}

.family-card {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    padding: 30px 50px;
    background: #fff;
    cursor: pointer;
}

.family-card:hover {
    height: 320px;
}

.imgbox {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-80px);
    z-index: 1;
}

img {
    width: 100%;
    border-radius: 10px  10px 0 0;

}

.content {
    padding: 10px 20px;
    text-align: center;
    transform: translateY(-450px);
    opacity: 0;
    transition: 0.3s;
}

.family-card:hover>.content {
    opacity: 1;
    transform: translateX(-200px);
}

.img-wrap {
    overflow: hidden;
}

.img-wrap img {
    transition: all 1.5s ease;
}

.img-wrap:hover img {
    cursor: pointer;
    transform: scale(1.3);
}

.facility-content {
    background-color: bisque;
}

.icons {
    width: 80px;
}

.sub-head-content {
    background: #642B73;
    background: -webkit-linear-gradient(to right, #C6426E, #642B73);
    background: linear-gradient(to right, #C6426E, #642B73);
}

.csp-img {
    width: 220px;
}

.cash-content {
    background-color: #642B73;

}

.head-title {
    background-color: #e1be52;
    font-size: 23px;
    color: #00457c;
}


