/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background: rgba(0,0,0,1);
    z-index: 9999;
}

/* Inner */
.popup-inner {
    background: #000;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
}

@media only screen and (max-width: 1280px) and (min-width: 1024px) {
    .popup-inner {
        width: 90%;
    }
}
@media only screen and (max-width: 1023px) {
    .popup-inner {
        width: 80%;
    }
}

/* Close Button */
.popup-close {
    width:16px;
    height:16px;
    display:inline-block;
    background: url("../../images/icon_close.png") no-repeat center;
    background-size: cover !important;
    position:absolute;
    top:0;
    right:0px;
    cursor: pointer;
    transition: all .25s ease;
}
.popup-close:hover {
    background: url("../../images/icon_close_hover.png") no-repeat center;
}

/* Popup Image */
.team-item a {
    display: block;
}
.team-item a:hover h3.team-member_title {
    color: #d60b0b;
    transition: all .25s ease;
}
.employee-image {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.employee-popup-img {
    padding-right: 45px !important;
}
@media screen and (max-width: 991px) {
    .employee-popup-img {
        padding-right: 0 !important;
    }
    .employee-popup-img {
        margin-bottom: 24px;
    }
}

/* Phune Nav Underline */
.link-11 {
    text-decoration: none;
}