* {
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #1C1E1D;
    color: inherit;
}

ul {
    list-style: none;
}

.colorTheme {
    color: #C62244;
}

.indent {
    text-indent: 2rem;
    line-height: 36px;
}

.job-title-noBorder {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.arrow-bottom {
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: #231815 transparent transparent;
    margin-top: 8px;
}

.arrow-top {
    width: 0;
    height: 0;
    border: 8px solid;
    border-color: transparent transparent #231815;
    margin-bottom: 8px;
}

#recruite li {
    margin-bottom: 10px;
}

.job-block {
    display: block;
    animation: showIndex 2s;
}

.job-hidden {
    display: none;
}

@keyframes showIndex {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}