body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* HEADER */
.Header-area {
    background: #ffffff;
}

.Header-up > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Header-down {
    margin-top: 10px;
    padding: 10px 0 0;
    border-top: 1px solid #fff;
}
.Header-logo {
    margin: 5px 0px;
    width: 180px;
    display: flex;
    max-height: 60px;
    min-height: 30px;
    text-decoration-color: #000000;
    align-items: center;
    overflow: hidden;
}
.Header-logo img {
    max-width: 120px;
    max-height: 30px;
}
.Header-company_name {
    max-width: 150px;
    word-break: break-word;
    max-height: 60px;
    min-height: 30px;
    margin: 10px 0px;
    margin-bottom: 0px;
}
.Header-btn_menu {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.Header-btn_menu > div {
    margin: 4px 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.Header-btn_menu.active > #one {
    transform: translateY(11px) rotate(-135deg);
    transition: all 0.3s ease-in-out;
}
.Header-btn_menu.active > #two {
    opacity: 0;
    transition: 0.2s ease;
}
.Header-btn_menu.active > #three {
    transform: translateY(-11px) rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.Header-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.Header-menu > li {
    display: flex;
    align-items: center;
}
.Header-menu > li.active > a {
    background: #fff;
    color: #00a3d9 !important;
}
.Header-menu > li > a {
    display: inline-block;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease-out;
}
.Header-menu > li > a:hover {
    background: #fff;
    color: #00a3d9;
}
.Header-menu_backdrop {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.Header-menu_backdrop.active {
    top: 75px;
}

.company-text {
    color: #212529;
    text-decoration-color: #212529;
}

/* MAIN CONTAINER */
.MainContainer-area {
    padding-bottom: 10px;
    min-height: 100px;
    flex-grow: 1;
}
.job-description-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}
.job-description-desc {
    word-break: break-word;
    font-size: 14px;
}
.description-content {
    margin-top: 20px;
}
/* FOOTER */
.Footer-container {
    position: relative;
    text-align: center;
}
.Footer-up {
    background: #ffffff;
    color: #fff;
}
.Footer-up > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Footer-title {
    font-size: 16px;
}
.Footer-logo {
    display: flex;
    width: 100%;
    height: 80px;
    text-decoration-color: #fff;
    align-items: center;
    justify-content: center;
}
.Footer-socials {
    margin: 15px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
}
.Footer-socials > li > a {
    margin: 0 5px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.Footer-socials > li > a > span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #00a3d9;
    font-size: 26px;
    border-radius: 6px;
    transition: all 0.3s ease-out;
}
.Footer-socials > li > a > span:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.Footer-listMenu {
    display: flex;
    justify-content: space-evenly;
}
.Footer-listMenu > .Footer-menu {
    margin: 0;
    width: 30%;
    flex-direction: column;
}
.Footer-menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.Footer-menu > li {
    margin-bottom: 10px;
    text-align: left;
}
.Footer-menu > li > a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.Footer-menu > li > a:before {
    margin-right: 5px;
    content: "\25CF";
    position: relative;
    font-size: 5px;
}
.Footer-menu > li > a:hover {
    color: #fff;
    text-decoration: underline;
}
.Footer-options {
    margin-top: 20px;
    justify-content: space-evenly;
}
.Footer-options > li {
    width: 30%;
}
.Footer-copyright {
    padding: 5px 0;
    font-size: 14px;
    background-color: #00a3d9;
    color: #000000;
}
.Footer-copyright p {
    margin: 0;
}
#backToTop {
    position: absolute;
    top: -60px;
    left: 50%;
    width: 40px;
    height: 47.5px;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    transform: translateX(-50%);
    text-transform: uppercase;
    cursor: pointer;
}
.BackToTop-icon {
    margin-top: 10px;
    position: relative;
    display: inline-flex;
}
.BackToTop-icon:before,
.BackToTop-icon:after {
    content: "";
    position: relative;
    width: 40px;
    height: 1px;
    background: #000;
}
.BackToTop-icon:before {
    transform: translateX(3px) rotate(135deg);
}
.BackToTop-icon:after {
    transform: translateX(-3px) rotate(-135deg);
}
.Footer-copyright p {
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    .Header-area {
        width: 100%;
    }
    .Header-down {
        margin-top: 0;
        padding: 0;
        border: none;
    }
    .Header-btn_menu {
        display: inline-flex;
    }
    .Header-menu.mobile.active {
        top: 75px;
        border-top: 1px solid #fff;
    }
    .Header-menu.mobile > li > a {
        margin-bottom: 5px;
        padding: 12px 10px;
        width: 100%;
        font-size: 16px;
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .Header-menu.mobile > li:last-child > a {
        margin-bottom: 0;
    }
    .Header-menu.mobile > li:nth-last-child(2) > a {
        margin-top: 5px;
    }
    .Header-menu.mobile > li:nth-last-child(2) > a,
    .Header-menu.mobile > li:last-child > a {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .Footer-options {
        justify-content: space-evenly !important;
    }
    .Footer-listMenu > .Footer-menu,
    .Footer-options > li {
        width: calc(50% - 5px);
    }
}

@media screen and (max-width: 480px) {
    .Footer-menu > li > a {
        font-size: 14px;
    }
    .Header-menu.mobile.active {
        top: 65px;
    }
    .Header-logo {
        width: 135px;
        /* align-items: flex-start; */
        flex-direction: column;
    }
    .Footer-logo {
        display: inline-block;
        width: 130px;
        height: 60px;
    }
}

@media screen and (max-width: 375px) {
    .Footer-menu > li > a {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .Header-menu.mobile {
        padding: 20px 20px 40px;
    }
    .Footer-menu > li > a {
        font-size: 12px;
    }
}

.mw-300 {
    max-width: 300px !important;
}
