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


.dropdown-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 250px;
    width: 250px;
}

.dropdown-item .imgBox {
    width: 80px;
    height: 80px;
}

.dropdown-item .imgBox img {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    cursor: pointer;
}

.dropdown-item .dropdown-content {
    background: #FFF;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 1px;
    box-shadow: 0 5px 5px rgba(0,0,0,.3);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;

    transition: .3s;
    width: 100%;
    height: 50%;
}

.dropdown-item .dropdown-content::before {
    content: "";
    position: absolute;
    left: 40%;
    top: -6px;
    background: #FFF;
    width: 12px;
    height: 12px;
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-item .dropdown-content .content .name {
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 5px;
    color: #111;
}

.dropdown-item .dropdown-content .content .occupation {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: #111;
}

.dropdown-item .dropdown-content .links li {
    list-style: none;
    line-height: 20px;
}

.dropdown-item .dropdown-content .links li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.dropdown-item .dropdown-content .links li a i {
    display: inline-block;
    width: 5px;
    margin-right: 20px;
}

.dropdown-item .divider {
    margin: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.dropdown-item .dropdown-toggle {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item .dropdown-toggle::after {
      display: none;
  }


