@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #333;
}

.container {
    margin-top: 5px;
    margin-bottom: 5px;
}

.container .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container .card::before {
    content: "";
    position: absolute;
    top: -50px;
    height: 0;
    width: 150%;
    background-color: #1369ce;
    z-index: -1;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.container .card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    transition: all 0.5s ease-in-out;
    border: none;
    box-shadow: 5px 5px 10px #1f1f1fa8,
                -5px -5px 10px #1f1f1fa8;
}

.container .card:hover::before {
    height: 150px;
}

.container .card .img-container {
    width: 250px;
    height: 250px;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.container .card:hover .img-container {
    border: 1px solid #1369ce;
}

.container .card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.container .card:hover .img-container img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.8);
}

.container .card .h3 {
    margin-bottom: 5px !important;
    font-weight: 600;
    pointer-events: none;
}

.container .card .designation {
    font-size: 0.85rem;
    letter-spacing: 2px;
    pointer-events: none;
}

.container .card ul {
    background-color: #1369ce;
    transition: all 0.5s ease-in-out;
    transform: translateY(100px);
}

.container .card:hover ul {
    transform: translateY(40px);
}

.container .card ul li {
    padding: 5px 8px;
    transition: all 0.4s;
}

.container .card ul li a {
    color: #FFF;
}

.container .card ul li:hover {
    background: #fff;
}

.container .card ul li:hover a {
    color: #1369ce;
}

.qr-code{
  max-width: 200px;
  margin: 10px;
}
.rounded-circle{
border-radius: 35%!important;
}
