
/* -----------------  Custom Overlay for contact START -----------------  */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    height: 100%;
    transition: opacity .5s ease,visibility .5s ease;
    background: rgba(0,0,0,.7);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
body.open {
    overflow: hidden;
}
body.open .overlay {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}
#jobModal {
    display: none;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 50px 20px 20px;
    border: 1px solid rgb(171, 201, 48);
    width: 90%;
    max-width: 500px;
    z-index: 109;
}
body.open #jobModal {
    display: block;
    position: absolute;
}
.job-content {
    position: relative;
}
.job-content .address {
    color: rgb(171, 201, 48);
}
.job-content .btn-default {
    margin-top: 20px;
}

#jobModal .close {
    background: rgb(171, 201, 48);
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    padding: 2px 9px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}
/* -----------------  Custom Overlay for contact END -----------------  */


/* ----------------- UTILITY START -----------------  */

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .margin-mobile-auto {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ----------------- UTILITY END -----------------  */
