.sponbody {
    margin: 0;
    padding: 0;
    min-height: 0vh;
    display: flex;
    justify-content: center;
    align-items: center;   
    font-family: sans-serif;
  ; 
}

.spn{
    text-align: center;
    font-size: 50px;
    font-weight: 500;
}

.sponsors{
  
    width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sponsors .card {
    position: relative;
    border-radius: 10px;
}

.sponsors .card .icon1 {
    
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    transition: 0.7s;
    z-index: 1;
    
}

.icon1 img{
    width: 180px;
    height: 190px;
    padding-top: 10px
}

.sponsors.card:nth-child(1) .icon1 {
    background: #0f0200;
}

.sponsors .card:nth-child(2) .icon1 {
    background: #000508;
}

.sponsors .card:nth-child(3) .icon1 {
    background: rgb(0, 0, 0);
}


/* .sponsors .card .icon1 .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    transition: 0.7s;
    color: #fff;
} */

/* i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    transition: 0.7s;
    color: #fff;
} */

.sponsors .card .face {
    width: 300px;
    height: 200px;
    transition: 0.5s;
}

.sponsors .card .face.face1 {
    position: relative;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.sponsors .card:hover .face.face1{
    background: #0c0004;
    transform: translateY(0px);
}

.sponsors .card .face.face1 .content {
    opacity: 1;
    transition: 0.5s;
}

.sponsors .card:hover .face.face1 .content {
    opacity: 1;
}

/* .sponsors .card .face.face1 .content i{
    max-width: 100px;
} */

.sponsors .card .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 15px 35px rgba(0,0,0,1);
    transform: translateY(-100px);
}

.sponsors .card:hover .face.face2{
    transform: translateY(0);
}

.sponsors .card .face.face2 .content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #414141;
}

.sponsors .card .face.face2 .content h3 {
    margin: 0 0 10px 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    text-align: center;
    color: #414141;
} 

.sponsors a {
    text-decoration: none;
    color: #414141;
}