/*
    DEMO STYLE
    https://bootstrapious.com/p/bootstrap-sidebar
*/
/* @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; */
/* @import "https://fonts.googleapis.com/css2?family=Open+Sans:300,400,500,600,700"; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap');
body {
    font-family: 'Open Sans', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
}

h2.heading {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 1em;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}



/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    display: grid;
    grid-template-rows: max-content 1fr max-content;
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#sidebarCollapse span{
    color: #fff;
}

#sidebarCollapse i{
    color: #fff;
}

/* Nav */
.navbar {
    border: none;
    border-radius: 0;
    /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
}

.navbar .navbar-brand img {
    height: 35px;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
}

.navbar-toggler {
    border-color: black;
}


.nav-button {
    display: inline-block;
    padding: 22px 18px;
    line-height: 1.62;
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
    opacity: .8;
    transition: opacity .15s ease;
    text-transform: uppercase !important;
}

.nav-button:hover {
    opacity: 1;
    color: white;
}

/* Main text block */

.careers-main {
    width: 100%;
    background: url(/static/images/careers-back.jpeg) no-repeat 0 12%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    position: relative;
    color: white;
    z-index: 1;
    overflow-y: hidden;
}

.careers-main-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.careers-main-over--dark {
    background: rgba(0, 0, 0, 0.7);
}

.careers-main-over--dots {
    background: url(/static/images/dot.png);
    background-size: 5px 5px;
}

.careers-main-content_wrap {
    z-index: 200;
    position: relative;
    padding: 80px 0 0;
}

.careers-main-top {
    margin-right: 1.69492%;
}

.careers-main-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
}

.careers-main-row--2::after {
    content: " ";
    display: block;
    clear: both;
}

.careers-main .hr {
    height: 1px;
    width: 100%;
    background-color: white;
    opacity: .3;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .careers-main {
        background-position-x: 35%;
    }
    .careers-main-top {
        width: auto;
        margin-right: 0;
    }
    .careers-main-content_wrap {
        padding-bottom: 80px;
    }

    .careers-main-row--2 {
        display: block;
    }
}

/* Accordion */
.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
}

.accordion-collapse {
    position: relative;
}

.accordion-collapse::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 36px 36px 0;
    border-color: transparent #e53f5a transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    content: " ";
    display: block;
}

.accordion-collapse h3, .accordion-collapse h4 {
    margin-bottom: 15px;
}

.apply-btn {
    padding: var(--bs-btn-padding-y) 1.45rem;
}

#vacancies_list .accordion-collapse li {
    line-height: 30px;
}

.vacancies-section-wrapper {
    flex-wrap:  wrap;
    grid-gap: 30px;
}

.vacancies-section-item {
    flex: 1;
}

@media (max-width: 768px) {
    .vacancies-section-wrapper {
        flex-direction: column;
        grid-gap: 0;
    }
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* Modal */

.modal-title {
    font-weight: 500;
}

#disclaimer-modal .modal-header {
    border: none;
}

#disclaimer-modal .modal-body {
    padding: 0 50px 50px;
}

@media (min-width: 576px) {
    #disclaimer-modal .modal-dialog {
        margin-top: 55px;
        width: 65%;
        max-width: none;
    }
}

/* ---------------------------------------------------
    FOOTER STYLE
----------------------------------------------------- */

footer {
    background: #f7f7f7;
    padding: 80px 0 77px;
    overflow: hidden;
}

.footer-column {
    align-self: baseline;
    display: grid;
    grid-gap: 16px;
    width: 17%;
    min-width: min-content;
    padding-top: 7px;
    padding-left: 58px;
    line-height: 1.3;
}

.footer-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: color .15s ease-in-out;
}

a.footer-item:hover {
    color: #e53f5a;
}

.footer-item img {
    width: 30px;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #7386D5;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
    color: #7386D5;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
   
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar .dropdown-menu{
    width: 95%;
}

a[data-toggle="collapse"] {
    position: relative;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}