@charset "utf-8";

/*-----------------------------------------------
    index
-----------------------------------------------*/
.bgGradient {
    position: relative;
    overflow: visible;
    border-radius: 10rem;
}

.bgGradient::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #fffdfd 15%, #d8e5f7 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -999;
    pointer-events: none;
}

.sectionSubTitle:before {
    background-color: var(--textColor);
}

@media only screen and (max-width:1215px) {
    .bgGradient::before {
        background-image: linear-gradient(to bottom right, #fffdff 15%, #d8e5f7 100%);
    }
}

/*-----------------------------------------------
    index
-----------------------------------------------*/

.secCareerEntry{
    display: none;
}
#footer {
    padding: 14.8rem 0 20rem;
}
@media only screen and (max-width:1215px) {
    #footer {
        padding: 1rem 0 10rem;
    }
}