/**********************************************************************************
  ********************************* HOME ********************************************
  ***********************************************************************************/
#cover-img {
    height: 75vh;
    position: relative;
}

#home {
    height: 70%;
    background: none;
}

.home-image {
    position: absolute;
    top: auto;
    left: auto;
    transform: none;
    height: 100% !important;
    width: 100%;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.home-content {
    width: 100%;
    height: 100%;
    display: table;
}

.home-content-inner {
    display: table-cell;
    vertical-align: middle;
}

.home-heading {
    color: white;
    font-weight: 500;
    font-size: 3.8rem;
    text-transform: capitalize;
    margin: 0;
    display: inline-block;
}

.home-heading:after {
    content: "";
    border-radius: 15px;
    height: 5px;
    width: 20%;
    background: var(--dark);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.home-desc {
    color: white;
    font-weight: 500;
    font-size: 3rem;
    margin: 20px 0 30px;
    display: inline-block;
}

.sider-page-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 45%;
    transform: translate(-50%, -50%);
}

.sider-page-content .tag-line {
    position: absolute;
    top: 50%;
    width: 100%;
    height: fit-content;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.sider-page-content .tag-line h1 {
    font-weight: bold;
    margin: 0;
}

.sider-page-content .top-cover {
    position: absolute;
    top: 0;
    left: 50%;
    width: 42%;
    transform: translateX(-50%);
    height: 35%;
    border: 4px solid var(--dark);
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: end;
}

.sider-page-content .top-cover h3 {
    color: #fff;
    text-transform: uppercase;
}

.sider-page-content .bottom-cover {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 42%;
    transform: translateX(-50%);
    height: 35%;
    border: 4px solid #fff;
    border-top: none;
    display: flex;
    justify-content: center;
}

/*************************************************
  *********** CAREERS ****************
  ****************************************/
.careers {
    background: #ebebeb;
}

.career-card {
    background-color: #ebebeb;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
}

.career-title p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.career-title h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.career-details {
    margin: 20px 0;
}

.career-detail {
    display: flex;
    align-items: center;
}

.career-detail p {
    margin: 0;
    margin-left: 10px;
}

.career-title>div {
    position: relative;
}

.career-title>div ::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 1.5px;
    background-color: var(--dark);
}

@media (max-width: 1200px) {
    .sider-page-content {
        width: 45%;
        height: 45%;
    }
}

@media (max-width: 600px) {
    .sider-page-content {
        width: 100%;
    }

    .sider-page-content .top-cover {
        width: 50%;
    }

    .sider-page-content .bottom-cover {
        width: 50%;
    }
}

.fs20 {
    font-size: 20px;
}