:root {
    --text-color: #1E1E1E;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: local('TT Firs Neue Light'), local('TT-Firs-Neue-Light'),
    url('../fonts/TTFirsNeue-Light/TTFirsNeue-Light.woff2') format('woff2'),
    url('../fonts/TTFirsNeue-Light/TTFirsNeue-Light.woff') format('woff'),
    url('../fonts/TTFirsNeue-Light/TTFirsNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: local('TT Firs Neue Regular'), local('TT-Firs-Neue-Regular'),
    url('../fonts/TTFirsNeue-Regular/TTFirsNeue-Regular.woff2') format('woff2'),
    url('../fonts/TTFirsNeue-Regular/TTFirsNeue-Regular.woff') format('woff'),
    url('../fonts/TTFirsNeue-Regular/TTFirsNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: local('TT Firs Neue Medium'), local('TT-Firs-Neue-Medium'),
    url('../fonts/TTFirsNeue-Medium/TTFirsNeue-Medium.woff2') format('woff2'),
    url('../fonts/TTFirsNeue-Medium/TTFirsNeue-Medium.woff') format('woff'),
    url('../fonts/TTFirsNeue-Medium/TTFirsNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: local('TT Firs Neue Bold'), local('TT-Firs-Neue-Bold'),
    url('../fonts/TTFirsNeue-Bold/TTFirsNeue-Bold.woff2') format('woff2'),
    url('../fonts/TTFirsNeue-Bold/TTFirsNeue-Bold.woff') format('woff'),
    url('../fonts/TTFirsNeue-Bold/TTFirsNeue-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    background: #fff;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--text-color);
}

.container-fluid {
    max-width: 992px;
}

@media (max-width: 991.98px) {

    body {
        font-size: 14px;
    }

}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    transition: all .3s;
}
header .header__wrap {
    padding: 15px 0 22px;
}
header .header__logo {
    position: relative;
    background: url(../img/logo_7.svg) no-repeat center / contain;
    width: 164px;
    height: 33px;
}
/*header .header__logo:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    background: url(../img/logo_icon_4.svg) no-repeat center / contain;*/
/*    width: 40px;*/
/*    height: 16px;*/
/*    right: -23px;*/
/*    top: 19px;*/
/*}*/
header .header__menu {
    padding-top: 14px;
}
header .header__menu a {
    position: relative;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    margin-left: 29px;
    color: var(--text-color);
    font-weight: 500;
}
header .header__menu a:hover:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #1E1E1E;
}
header.active {
    box-shadow: 0 4px 5px rgba(0, 0, 0, .35);
}
header.active .header__logo {
    background-image: url(/img/logo_5.svg);
    width: 144px;
    height: 33px;
}
header.active .header__logo:before {
    content: '';
    position: absolute;
    width: 32px;
    height: 15px;
    right: -42px;
    top: 3px;
}
header .header__menu-icon {
    background: url(/img/menu_2.svg) no-repeat center;
    width: 27px;
    height: 18px;
}
header .header__menu-icon.active {
    background: url(/img/close_2.svg) no-repeat center;
}

@media (max-width: 991.98px) {

    header {
        padding: 0 20px;
    }
    header .header__logo,
    header.active .header__logo {
        background-image: url(/img/logo_6.svg);
        width: 144px;
        height: 33px;
    }
    header .header__logo:before,
    header.active .header__logo:before {
        content: '';
        position: absolute;
        width: 32px;
        height: 15px;
        right: -42px;
        top: 3px;
    }
    header .header__wrap {
        padding: 13px 0;
    }
    header .header__mobile-menu {
        position: fixed;
        height: calc(100vh - 59px);
        top: 59px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 10;
    }
    header .header__mobile-menu .header__wrap {
        padding: 0 28px;
    }
    header .header__mobile-menu a {
        line-height: 28.63px;
        margin-left: 0;
        display: block;
        text-align: center;
    }
    header .header__menu a:hover:before {
        display: none;
    }
    header .header__wrap_m {
        padding: 13px 0;
    }
    header .header__mobile-title {
        font-size: 10px;
        line-height: 104%;
        color: rgba(240, 240, 240, .2);
        margin-bottom: 25px;
        margin-left: -1px;
        margin-top: 3px;
    }
    header .header__mobile-menu .contacts_links {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 8px;
    }
    header .header__mobile-menu .header__menu-icon {
        background: url(/img/close_2.svg) no-repeat center;
    }
    header .header__mobile-menu .contacts_links a {
        color: var(--text-color);
        margin-bottom: 0;
    }
    header .header__mobile-menu .contacts_links a:hover {
        opacity: .8;
    }
    header .header__mobile-menu .contacts_socials {
        margin-top: 20px;
    }
    header .header__mobile-menu .contacts_socials_fb {
        background: url(/img/soc_fb.svg) no-repeat center / contain;
        width: 27px;
        height: 27px;
        margin-right: 19px;
    }
    header .header__mobile-menu .contacts_socials_inst {
        background: url(/img/soc_inst.svg) no-repeat center / contain;
        width: 27px;
        height: 27px;
    }
    header .header__bottom {
        border-top: 1px solid rgba(240, 240, 240, .1);
        padding-top: 25px;
        margin-top: 25px;
    }

}


.hero {
    /*background: #1c3d77;*/
    /*height: 680px;*/
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    aspect-ratio: 1920 / 1080;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.hero__btn {
    z-index: 1;
    width: 250px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2) url(../img/play.svg) no-repeat left 29px center;
    border-radius: 35px;
    font-weight: 500;
    font-size: 16px;
    line-height: 129%;
    text-transform: uppercase;
    color: #fff;
    padding-top: 26px;
    padding-left: 71px;
    cursor: pointer;
    margin-top: 20%;
    transition: background-color .3s;
}
.hero__btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
/*.hero::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #000;*/
/*    opacity: .2;*/
/*    z-index: 2;*/
/*}*/

@media (max-width: 991.98px) {

    .hero {
        margin-top: 60px;
    }

}


.fancybox__container * {
    box-shadow: none;
    outline: none;
    border: none;
}

.fancybox__content {
    width: 100% !important;
    height: 100% !important;
}


#main__slider {
    margin-top: 105px;
    background-color: #0F0F0F;
    position: relative;
}
#main__slider .main__slider__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: calc(50% + 106px);
    top: 198px;
    line-height: 1.1em;
}
#main__slider .main__slider__items {

}
#main__slider .main__slider__item {
    font-size: 94px;
    line-height: 121px;
    color: #fff;
    padding: 228px 0 251px;
    background-size: cover;
    background-position: center;
}
#main__slider .main__slider__item__t1 {
    font-weight: 700;
}
#main__slider .main__slider__item__t2 {
    font-weight: 300;
    margin-top: -40px;
}
#main__slider .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 44px;
    width: 100%;
}
#main__slider .owl-dot span {
    width: 11px;
    height: 11px;
    border: 1px solid rgba(240, 240, 240, .2);
    display: block;
    border-radius: 50%;
    margin: 0 7px;
}
#main__slider .owl-dot.active span {
    background: #F0F0F0;
    border: 1px solid #F0F0F0;
}

@media (max-width: 991.98px) {

    #main__slider {
        margin-top: 60px;
        /*padding: 0 27px;*/
    }
    #main__slider .main__slider__title {
        font-size: 10px;
        margin-bottom: 270px;
        display: none;
    }
    #main__slider .main__slider__item {
        font-size: 40px;
        line-height: 52px;
        padding: 163px 0 180px;
    }
    #main__slider .main__slider__item__t2 {
        margin-top: -15px;
    }
    #main__slider .owl-dots {
        margin-top: 20px;
    }

}

#mission {
    margin-top: 78px;
    padding-bottom: 136px;
}
#mission .mission__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.20);
}
#mission .mission__text {
    line-height: 140%;
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 22px;
    text-align: justify;
}
#mission .mission__text_2 {
    font-size: 20px;
    text-transform: none;
    text-align: start;
    margin-top: 50px;
}
#mission .mission__text b {
    font-weight: 700;
}
#mission img {
    margin-top: 41px;
    max-width: 495px;
    border-radius: 15px;
    filter: grayscale(1);
}

@media (max-width: 991.98px) {

    #mission {
        margin-top: 40px;
        padding: 0 20px 40px;
        overflow: hidden;
    }
    #mission .mission__title {
        font-size: 10px;
        margin-bottom: 25px;
    }
    #mission .mission__text {
        line-height: 124.5%;
        font-size: 14px;
    }
    #mission .mission__text_2 {
        margin-top: 10px;
    }
    #mission img {
        margin-top: 20px;
    }

}

#philosophy {
    padding-bottom: 80px;
}
#philosophy .philosophy__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.20);
}
#philosophy .philosophy_t1 {
    margin-bottom: 41px;
}
#philosophy .philosophy_t2 {
    /*margin-top: -85px;*/
}
#philosophy .philosophy_sub-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 103.5%;
    margin-bottom: 20px;
    position: relative;
    padding-left: 80px;
}
#philosophy .philosophy__text {
    font-size: 16px;
    line-height: 140%;
}
#philosophy .philosophy_t1 .philosophy_sub-title:before {
    content: '1';
    position: absolute;
    font-size: 34px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    width: 68px;
    height: 68px;
    /*border: 4px solid rgba(30, 30, 30, .1);*/
    border: 4px solid #1E1E1E;
    background: #1E1E1E;
    color: #fff;
    border-radius: 50%;
    left: -2px;
    top: -4px;
    text-align: center;
}
#philosophy .philosophy_t2 .philosophy_sub-title:before {
    content: '2';
    position: absolute;
    font-size: 34px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    width: 68px;
    height: 68px;
    /*border: 4px solid rgba(30, 30, 30, .1);*/
    border: 4px solid #1E1E1E;
    background: #1E1E1E;
    color: #fff;
    border-radius: 50%;
    left: -2px;
    top: -4px;
    text-align: center;
}
#philosophy .philosophy_t3 .philosophy_sub-title:before {
    content: '3';
    position: absolute;
    font-size: 34px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    width: 68px;
    height: 68px;
    /*border: 4px solid rgba(30, 30, 30, .1);*/
    border: 4px solid #1E1E1E;
    background: #1E1E1E;
    color: #fff;
    border-radius: 50%;
    left: -2px;
    top: -4px;
    text-align: center;
}

@media (max-width: 991.98px) {

    #philosophy {
        padding: 0 20px 60px;
    }
    #philosophy .philosophy__title {
        font-size: 10px;
        margin-bottom: 25px;
    }
    #philosophy .philosophy_t1 .philosophy_sub-title:before,
    #philosophy .philosophy_t2 .philosophy_sub-title:before,
    #philosophy .philosophy_t3 .philosophy_sub-title:before {
        font-size: 25px;
        line-height: 53px;
        width: 60px;
        height: 60px;
    }
    #philosophy .philosophy_sub-title {
        font-size: 19px;
        line-height: 103.5%;
        margin-bottom: 9px;
        max-width: 255px;
        padding-left: 70px;
        min-height: 60px;
    }
    #philosophy .philosophy__text {
        font-size: 14px;
        line-height: 124.5%;
    }
    #philosophy .philosophy_t1 {
        margin-bottom: 40px;
    }
    #philosophy .philosophy_t2 {
        margin-top: 0;
        margin-bottom: 40px;
    }

}

#marquee {
    margin-top: 17px;
}

@media (max-width: 991.98px) {

    #marquee {
        margin-top: 0;
    }
    #marquee img {
        height: 50px;
    }

}

#services {
    margin-top: 83px;
    background: #F0F0F0;
    padding-bottom: 100px;
    padding-top: 102px;
}
#services .services__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.20);
}
#services .services__list {
    border-top: 1px solid rgba(240, 240, 240, .1);
}
#services .services__item {
    border-bottom: 1px solid rgba(240, 240, 240, .1);
    cursor: pointer;
    position: relative;
}
#services .services__item:before {
    content: '';
    position: absolute;
    top: 41px;
    right: 4px;
    width: 28px;
    height: 2px;
    background: var(--text-color);
}
#services .services__item:after {
    content: '';
    position: absolute;
    top: 29px;
    right: 16px;
    height: 28px;
    width: 2px;
    background: var(--text-color);
    transition: all .2s;
}
#services .services__item.active:after {
    height: 0;
    top: 40px;
    opacity: 0;
}
#services .services__item-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 103.5%;
    padding: 25px 0;
    border-top: 2px solid #fff;
}
#services .services__item:hover .services__item-title {
    opacity: .8;
}
#services .services__item-desc {
    font-size: 16px;
    line-height: 140%;
    max-width: 535px;
    display: none;
}
#services .services__item-desc_b {
    height: 26px;
}
#services .services__item.active .services__item-desc {
    font-size: 16px;
    line-height: 151.5%;
    display: none;
}

@media (max-width: 991.98px) {

    #services {
        margin-top: 60px;
        padding: 58px 20px 30px;
    }
    #services .services__title {
        font-size: 10px;
        margin-bottom: 30px;
    }
    #services .services__item-title {
        font-size: 19px;
        padding: 26px 30px 25px 0;
    }
    #services .services__item:before {
        top: 34px;
        width: 21px;
    }
    #services .services__item:after {
        top: 24px;
        right: 13px;
        height: 22px;
    }
    #services .services__item.active .services__item-desc {
        font-size: 14px;
        line-height: 124.5%;
    }

}

#job .job__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.20);
}
#job .job__list {

}
#job .job__item {
    cursor: pointer;
    margin-bottom: 64px;
    padding-left: 139px;
    position: relative;
}
#job .job__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 50px;
    background: url(../img/person.svg) no-repeat center;
}
#job .job__item:hover:before {
    opacity: .8;
}
#job .job__location {
    font-size: 14px;
    line-height: 129.5%;
    margin-bottom: 11px;
}
#job .job__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 103.5%;
    margin-bottom: 9px;
}
#job .job__name span {
    background: url(../img/arrow_left.svg) no-repeat right top / contain;
    height: 16px;
    width: 12px;
    display: inline-block;
}
#job .job__item:hover .job__name {
    opacity: .8;
}
#job .job__date {
    font-size: 14px;
    line-height: 129.5%;
    color: rgba(240, 240, 240, .3);
}

@media (max-width: 991.98px) {

    #job {
        padding: 0 20px;
        margin-top: -10px;
    }
    #job .job__title {
        font-size: 10px;
        margin-bottom: 30px;
    }
    #job .job__item {
        margin-bottom: 32px;
        padding-left: 82px;
    }
    #job .job__item:before {
        width: 64px;
        height: 64px;
        background: url(../img/person.svg) no-repeat center / 19px auto;
    }
    #job .job__location {
        font-size: 12px;
        margin-bottom: 3px;
    }
    #job .job__name {
        font-size: 20px;
        margin-bottom: 7px;
    }
    #job .job__name span {
        background-position: right top 1px;
    }
    #job .job__date {
        font-size: 12px;
    }

}

#articles {

}
#articles .articles__title {
    font-weight: 500;
    font-size: 14px;
    color: #3C3C3C;
}
#articles .articles__list {

}
#articles .articles__item {
    cursor: pointer;
}
#articles .articles__item_left {
    margin-right: 35px;
}
#articles .articles__item_right {
    margin-left: 35px;
}
#articles .articles__photo {
    height: 180px;
    background-size: cover;
    background-position: center;
}
#articles .articles__date {
    font-size: 14px;
    line-height: 129.5%;
    color: rgba(240, 240, 240, .3);
    margin: 47px 0 20px;
}
#articles .articles__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 103.5%;
    margin-bottom: 14px;
}
#articles .articles__name span {
    background: url(../img/arrow_left.svg) no-repeat right top / contain;
    height: 16px;
    width: 12px;
    display: inline-block;
}
#articles .articles__item:hover .articles__name {
    opacity: .8;
}
#articles .articles__desc {
    font-size: 16px;
    line-height: 151.5%;
}

@media (max-width: 991.98px) {

    #articles {
        margin-top: 24px;
        padding: 0 20px;
    }
    #articles .articles__title {
        font-size: 10px;
        margin-bottom: 30px;
    }
    #articles .articles__photo {
        height: 140px;
    }
    #articles .articles__date {
        font-size: 12px;
        line-height: 129.5%;
        margin: 18px 0 16px;
    }
    #articles .articles__name {
        font-size: 20px;
        margin-bottom: 11px;
    }
    #articles .articles__name span {
        background-position: right top 1px;
    }
    #articles .articles__desc {
        font-size: 14px;
        line-height: 124.5%;
    }
    #articles .articles__item_left {
        margin-right: 0;
        margin-bottom: 35px;
    }
    #articles .articles__item_right {
        margin-left: 0;
    }

}

#contacts {
    padding: 97px 0 73px
}
#contacts .contacts__title {
    font-weight: 500;
    font-size: 14px;
    color: rgba(30, 30, 30, 0.20);
}
#contacts .contacts_links {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
}
#contacts .contacts_links a {
    color: var(--text-color);
    margin-bottom: 8px;
}
#contacts .contacts_links a:hover {
    opacity: .8;
}
#contacts .contacts_socials {
    margin-top: 40px;
}
#contacts .contacts_socials_fb {
    background: url(/img/soc_fb.svg) no-repeat center / contain;
    width: 27px;
    height: 27px;
    margin-right: 19px;
}
#contacts .contacts_socials_inst {
    background: url(/img/soc_inst.svg) no-repeat center / contain;
    width: 27px;
    height: 27px;
}
#contacts .contacts_socials a:hover {
    opacity: .8;
}

@media (max-width: 991.98px) {

    #contacts {
        padding: 70px 0 200px
    }
    #contacts .contacts__title {
        font-size: 10px;
        margin-bottom: 25px;
    }
    #contacts .contacts_links {
        margin-bottom: 0;
    }
    #contacts .contacts_links a {
        margin-bottom: 11px;
    }
    #contacts .contacts_socials {
        margin-top: 14px;
    }

    #contacts {
        padding: 70px 0;
    }

}

footer {
    background-color: #1E1E1E;
    padding: 64px 0 60px;
    position: relative;
}
footer:after {
    content: '';
    position: absolute;
    background: url(../img/umb2.png) no-repeat center / contain;
    width: 317px;
    height: 217px;
    left: calc(50% - 223px);
    bottom: 0;
}
footer .footer__logo {
    position: relative;
    background: url(../img/logo_8.svg) no-repeat center / contain;
    width: 176px;
    height: 36px;
}
footer .footer__copy {
    font-size: 12px;
    line-height: 129.5%;
    color: rgba(240, 240, 240, .2);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 24px;
}
footer .footer__menu a {
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    text-decoration: none;
    margin-left: 26px;
}
footer .footer__menu a:hover {
    opacity: .8;
}

@media (max-width: 991.98px) {

    footer {
        padding: 70px 20px 28px;
    }
    footer:after {
        content: '';
        position: absolute;
        background: url(../img/umb.png) no-repeat center / contain;
        width: 275px;
        height: 241px;
        left: calc(50% - 133px);
        top: -185px;
    }
    footer .footer__logo {
        width: 63px;
        height: 39px;
    }
    footer .footer__logo:before {
        width: 19px;
        height: 9px;
        right: -15px;
        top: 13px;
    }
    footer .footer__copy {
        font-size: 8px;
    }
    footer .footer__menu a {
        font-size: 8px;
        line-height: 169%;
        margin-left: 0;
    }

    footer:after {
        background: none;
    }

}

#article_modal .modal-dialog,
#job_modal .modal-dialog {
    max-width: 900px;
}
#article_modal .article_modal__header,
#job_modal .job_modal__header {
    background: #191919;
    padding: 70px;
}
#job_modal .job_modal__header {
    padding: 70px 70px 70px 190px;
}
#job_modal .job_modal__header:before {
    content: '';
    position: absolute;
    top: 45px;
    left: 50px;
    width: 110px;
    height: 110px;
    border: 1px solid #282828;
    border-radius: 50px;
    background: #0F0F0F url(../img/person.svg) no-repeat center;
}
#article_modal .modal__title,
#job_modal .modal__title {
    font-weight: 700;
    font-size: 34px;
    line-height: 103.5%;
    margin-bottom: 13px;;
}
#article_modal .modal__date,
#job_modal .modal__date {
    font-size: 18px;
    line-height: 129.5%;
    color: rgba(240, 240, 240, .3);
}
#job_modal .job__location {
    font-size: 18px;
    line-height: 129.5%;
    margin-right: 17px;
}
#job_modal .job__date {
    line-height: 129.5%;
    color: rgba(240, 240, 240, .3);
}
#article_modal .modal__close,
#job_modal .modal__close {
    background: url(/img/close_2.svg) no-repeat center;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    z-index: 1;
    cursor: pointer;
}
#article_modal .modal-body img,
#job_modal .modal-body img {
    margin-bottom: 50px;
}
#article_modal .modal-body,
#job_modal .modal-body {
    background-color: #fff;
    margin: 70px 26px 70px 70px;
    padding: 0 65px 0 0;
    font-size: 20px;
    line-height: 138.5%;
    color: #0F0F0F;
}
#article_modal .modal-body::-webkit-scrollbar,
#job_modal .modal-body::-webkit-scrollbar {
    width: 10px;
}
#article_modal .modal-body::-webkit-scrollbar-track,
#job_modal .modal-body::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #F0F0F0;
}
#article_modal .modal-body::-webkit-scrollbar-track:hover,
#job_modal .modal-body::-webkit-scrollbar-track:hover {
    background-color: #F0F0F0;
}
#article_modal .modal-body::-webkit-scrollbar-track:active,
#job_modal .modal-body::-webkit-scrollbar-track:active {
    background-color: #F0F0F0;
}
#article_modal .modal-body::-webkit-scrollbar-thumb,
#job_modal .modal-body::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #0F0F0F;
}
#article_modal .modal-body::-webkit-scrollbar-thumb:hover,
#job_modal .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: #0F0F0F;
}
#article_modal .modal-body::-webkit-scrollbar-thumb:active,
#job_modal .modal-body::-webkit-scrollbar-thumb:active {
    background-color: #0F0F0F;
}

@media (max-width: 991.98px) {

    #article_modal .article_modal__header, #job_modal .job_modal__header {
        padding: 20px 60px 20px 20px;
    }
    #article_modal .modal__title, #job_modal .modal__title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    #article_modal .modal__date, #job_modal .modal__date {
        font-size: 13px;
    }
    #article_modal .modal-body, #job_modal .modal-body {
        margin: 20px 10px 20px 20px;
        padding: 0 20px 0 0;
        font-size: 14px;
    }
    #job_modal .job_modal__header:before {
        display: none;
    }
    #job_modal .job__location {
        font-size: 14px;
        margin-right: 10px;
    }

}







