/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


.container {
    margin-top: 80px;
}

.container3 {
    margin-top: auto;
}

.container .col-lg-4 {
    display: flex;
    justify-content: center;
}

.cardSICEP {
    width: 300px;
    height: 450px;
    transform-style: preserve-3d;
    perspective: 300px;
    border: none;
    background-color: inherit;
}

.cardSICEP .face {
    position: absolute;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);*/
    transform-style: preserve-3d;
    transition: 0.5s;
    backface-visibility: hidden;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    
}

.cardSICEP .face.front-face,
.cardSICEP .face.back-face {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cardSICEP .face.front-face .profile {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit:inherit;
}

.cardSICEP .face.front-face .name {
    letter-spacing: 2px;
    color: #004683;
}

.cardSICEP .face.front-face .designation {
    font-size: 0.8rem;
    color: #004683;
    letter-spacing: 0.8px;
}

.container .social-icons {
    color: #004683;
}



@media(max-width: 991.5px) {
    .col-lg-4 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}