
/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}


/* General */

:root {
    --main-color: #BD9EFF;
    --main-black: #212122;
    --main-grey: #8E8E8E;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    max-width: 100vw;
    overflow-x: hidden;
}

@media screen and (max-width: 600px) {
    body {
        font-size: 15px;
    }
}

hr {
    border: none;
    height: 1px;
    background: var(--main-grey);
    opacity: 0.5;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Specialized Controls */

.LoginButton {
    width: 100%;
    max-width: 275px;
    margin-bottom: 30px;
}

.FormSubmitButton {
    margin-top: 2em;
    margin-bottom: 2em;
    width: 240px;
}

.ControlButton.CardDetailsButton,
.ControlButtonWhite.CardForwardButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    padding: 10px 50px 10px 50px;
    font-size: 0.9em;
    cursor: pointer;
    transition: 0.2s;
}

.ControlButtonWhite.CardForwardButton {
    margin-left: 20px;
}

.ControlButton.ApplyButton {
    margin-right: 2vw;
    margin-top: 35px;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    transition: 0.2s;
}

.ControlButtonWhite.ForwardButton {
    margin-top: 35px;
    width: 150px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
    transition: 0.2s;
}

.CardDetailsButton:hover,
.CardForwardButton:hover,
.ApplyButton:hover,
.ForwardButton:hover {
    opacity: 0.7;
}


/* Menu */

nav {
    height: 60px;
    width: 100%;
    padding-left: 135px;
    padding-right: 135px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

nav > div {
    align-items: center;
    display: flex;
}

nav .SiteLogo {
    padding-top: 2px;
    font-size: 0px;
}

nav .tabs {
    display: flex;
    z-index: 1000;
}

nav .tabs .tab {
    font-weight: 300;
    margin-left: 10px;
    position: relative;
    padding: 0 25px;
}

nav .tabs .tab:first-child {
    margin-left: 0;
}

nav .tabs .tab .dropdown-tab {
    border-bottom: 1px solid #f5f5f5;
    padding: 5px 10px 0px;
}

nav .tabs .tab .dropdown-tab:last-child {
    border-bottom: 0;
}

nav .dropdown {
    display: none;
    position: absolute;
    left: 0;
    width: 125%;
    background: #FFFFFF;
    padding: 5px;
    box-shadow: 10px 10px 25px 10px rgba(198, 198, 198, 0.15);
}

nav a {
    color: var(--main-black);
}

nav a:hover {
    text-decoration: none;
}

nav .dropdown a {
    display: block;
    padding: 7px 0 7px 0;
    text-align: left;
    transition: 0.2s;
}

nav .dropdown a:hover {
    margin-left: 10px;
}

nav .login_btn {
    color: var(--main-color);
    padding: 5px 30px 5px 30px;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    cursor: pointer;
    margin-left: 30px;
    font-weight: 300;
    font-size: 1em;
}

nav .lang_btn {
    color: var(--main-grey);
    margin-left: 8px;
}

nav .lang_btn.active {
    color: var(--main-black);
    cursor: text;
}

nav .tab:hover .dropdown {
    display: block
}

nav .hamburger {
    display: none
}

nav .logged-in {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-left: 20px;
    padding: 0px 20px;
    height: 100%;
    background: var(--main-color);
    color: white;
}

nav .profile-img {
    margin-right: 5px;
    display: inline-block;
    width: auto;
    height: 20px;
    transition: all .2s ease-in-out;
}

@media screen and (max-width: 1080px) {
    nav {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 960px) {
    nav {
        padding-left: 10px;
        padding-right: 10px;
    }

    nav .tabs {
        position: absolute;
        right: 0;
        top: 60px;
        width: 100%;
        min-height: 100vh;
        background: #FFFFFF;
        display: none;
        padding-bottom: 20px;
    }

    nav .tabs .tab:first-child {
        margin-left: 10px;
    }

    nav .tabs .tab {
        margin-bottom: 30px;
        text-align: center;
    }

    nav .login_btn {
        display: none;
    }

    nav .buttons {
        display: flex;
        align-items: center;

    }

    nav .hamburger {
        display: block;
        height: 30px;
        width: 30px;
        background: url('../img/layout/hamburger.svg');
        background-size: cover;
        margin-left: 25px;
    }

    nav .tabs.pressed {
        display: block;
    }

    .login_btn {
        position: absolute;
        top: 270px;
        left: 50%;
        transform: translate(-60%);
        width: 110px;
    }

    nav .login_btn.pressed {
        display: block;
    }
}


/* Main/Home */

.home header {
    width: 100%;
    height: 600px;
    background: url('../img/bg_header.jpg');
    padding-left: 135px;
    padding-top: 145px;
    background-size: cover;
}

.home header h1 {
    font-size: 2.2em;
    line-height: 150%;
    text-transform: uppercase;
    font-weight: 300;
    max-width: 700px;
}

.SearchFiltersBar {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 20px;
    width: 95%;
    max-width: 650px;
}

.SearchFiltersBar select {
    width: 100%;
    max-width: 275px;
    height: 40px;
    border: none;
    background-position: center right 20px;
    padding-left: 20px;
    padding-right: 50px;
    opacity: 0.8;
}

.home header .search_bar {
    height: 46px;
    width: 650px;
    background-color: #FFFFFF;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1fr 60px;
    margin-top: 10px;
}

.home header .search_bar input {
    border: none;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    color: var(--main-grey);
}

.home header .search_bar input::placeholder {
    color: var(--main-grey);
    font-weight: lighter;
    letter-spacing: 0.5px;
}

.home header .search_bar button {
    border: none;
    background: var(--main-color);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.home header .search_bar button:active {
    opacity: 0.7;
}

.home header .facts {
    display: flex;
    margin-top: 80px;
}

.home header .facts div {
    margin-left: 60px;
}

.home header .facts div:first-child {
    margin-left: 0;
}

.home header .facts p {
    color: var(--main-grey);
    font-weight: 300;
    line-height: 150%;
    font-size: 1em;
}

.home header .facts p:first-child {
    text-transform: uppercase;
    font-weight: 400;
}

@media screen and (max-width: 960px) {
    .home header {
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: 500px;
    }

    .home header h1 {
        margin-left: 0.5em;
        margin-right: 0.5em;
        text-align: center;
    }

    .home header .search_bar {
        margin: 0 auto;
        width: 95%;
    }

    .home header > form {
        min-width: 75%;
        max-width: 700px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .home header .facts {
        margin-top: 50px;
        max-width: 700px;
        min-width: 75%;
        justify-content: center;
    }

    .CategoryFilter {
        margin-right: 0px;
    }
}

@media screen and (max-width: 600px) {

    .SearchFiltersBar {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .SearchFiltersBar select {
        margin-right: 0;
        max-width: 100%;
    }

    .SearchFiltersBar select:last-of-type {
        margin-top: 10px;
    }
}

@media screen and (max-width: 500px) {
    .home header {
        padding-top: 50px;
        background-size: cover;
        background-position-x: -100px;
    }

    .home header h1 {
        font-size: 1.7em;
    }

    .home header .facts {
        margin-top: 50px;
    }

    .home header .facts div {
        margin-left: 40px;
    }

    .home header .facts p {
        font-size: 0.8em;
    }
}


/* Main - Hot Offers */

.home .hot_offers {
    margin-top: 100px;
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.home .hot_offers .titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .hot_offers h2 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 2em;
    color: var(--main-black);
}

.home .hot_offers .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 30px;
    max-width: 100% !important;
}

.home .card {
    box-shadow: 10px 10px 25px 10px rgba(198, 198, 198, 0.15);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.home .card .logo {
    position: absolute;
    right: 30px;
    top: 30px;
}

.home .card .title {
    margin-right: 100px;
    font-weight: 400;
    font-size: 1.1em;
    color: var(--main-black);
}

.home .card .info {
    margin-top: 5px;
    color: var(--main-grey);
    line-height: 150%;
    font-size: 0.85em;
    font-weight: 300;
}

.home .card .description {
    margin-top: 20px;
    color: var(--main-black);
    line-height: 150%;
    font-size: 0.9em;
    font-weight: 300;
}

.home .card .tags {
    margin-top: 10px;
    color: var(--main-grey);
    line-height: 150%;
    font-size: 0.9em;
    font-weight: 300;
}

.home .card .btn_group {
    display: flex;
    margin-top: 25px;
}

@media screen and (max-width: 1220px) {
    .home .hot_offers {
        width: 960px;
        margin-top: 50px;
    }

    .home .hot_offers .container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 960px) {
    .home .hot_offers {
        width: 90%;
    }

    .home .hot_offers .titles {
        display: block;
        padding-left: 10px;
    }

    .home .hot_offers .titles h2 {
        margin-left: 0;
    }

    .home .card .logo {
        display: none
    }
}

@media screen and (max-width: 500px) {
    .home .card {
        padding: 20px;
    }

    .home .card .btn_group a {
        width: 40%;
    }

    .home .hot_offers {
        width: 98%;
    }
}


/* Main - Search Filters */

.home .filters {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.home .filters h2 {
    text-transform: uppercase;
    font-weight: normal;
    font-size: 2em;
    color: var(--main-black);
}

.home .filters .filter .title {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--main-black);
    margin-top: 30px;
    margin-bottom: 20px;
}

.home .filters .filter .content {
    display: flex;
    flex-wrap: wrap;
    margin-left: -25px;
}

.home .filters .filter .content div {
    padding: 7px 20px 7px 20px;
    border-radius: 7px;
    color: var(--main-grey);
    border: 1px solid var(--main-grey);
    margin-bottom: 15px;
    margin-left: 25px;
    cursor: pointer;
    font-size: 0.9em;
    transition: 0.2s;
}

.home .filters .filter .content div:hover {
    opacity: 0.7;
}

.home .filters .filter .content div.active {
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.home .filters .range {
    width: 70%;
    height: 1px;
    -webkit-appearance: none;
    background: #BD9EFF;
}

.home .filters .range_container {
    width: 400px;
    margin-top: 30px;
}

.home .filters .title_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.home .filters .title_box .title {
    margin: 0;
}

.home .filters .total {
    color: var(--main-color);
    font-size: 1.2em;
}

.home .filters .range_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home .filters .range_box span {
    color: var(--main-grey);
    font-weight: 300;
}

.home .filters .button {
    border: none;
    background: var(--main-color);
    border-radius: 20px;
    color: #fff;
    width: 150px;
    height: 40px;
    font-size: 0.9em;
    margin-top: 35px;
    cursor: pointer;
    transition: 0.2s;
}

.home .filters .button:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1171px) {
    .home .filters {
        width: 90%;
    }
}

@media screen and (max-width: 960px) {
    .home .filters .range_container {
        width: 100%;
    }
}


/* Footer */

.futer-container {
    margin-top: 50px;
    background: #313131;
    display: flex;
    color: #FFFFFF;
}

.futer__register-item p {
    font-weight: 400;
    font-size: 1.5em;
    margin-bottom: 1em;
}

.futer__register-item {
    border: 1px solid #8E8E8E;
    border-left: none;
    padding: 48px 10vw 60px 5vw;
}

.futer__register-item:first-child {
    border-top: none;
}

.futer__register-item:last-child {
    border-bottom: none;
}

.futer__icons a {
    margin-right: 25px;
}

.futer__register-item span {
    margin-right: 1vw;
}

.contacts {
    margin-left: 3vw;
}

.contacts .SitemapHeader {
    margin-top: 2em;
    margin-bottom: 1em;
	font-size: 1.5em;
    font-weight: 400;
}

.contact-details {
    display: flex;
}

.contact-details-items p {
    margin-top: 0;
    margin-bottom: 0.5em;
    margin-right: 5vw;
    font-weight: 300;
}

.contact-details-value p {
    margin-top: 0;
	margin-bottom: 0.5em;
    margin-right: 1vw;
    font-weight: 300;
}


/* Position Details */

.header-home {
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%), url('../img/bg_header.jpg');
    background-size: cover;
    padding-left: 135px;
}


/* Position Details / Forward */

.header-job-box {
    display: flex;
    color: #212122;
}

.picture-job {
    margin-top: 145px;
    margin-left: 135px;
}

.picture-job img {
    background: #FFFFFF;
    padding: 10px 21px;
}

.des-job {
    margin-top: 145px;
    margin-left: 30px;
    margin-right: 30px;
}

.des-job-name {
    font-weight: 400;
    font-size: 2.25em;
    margin-bottom: 7px;
}

.des-job-box {
    display: flex;
}

.des-job-plase {
    margin-right: 20px;
    margin-bottom: 5px;
}

.des-job-time__box {
    display: flex;
}

.des-job-time__box img {
    width: 16px;
    margin-right: 13px;
    margin-bottom: 25px;
}

.des-job-time-of-posts {
    margin-bottom: 25px;
}

.des-job-buttons__box {
    display: flex;
    flex-wrap: wrap;
}

.des-job-buttons__box img {
    margin-left: 32px;
    margin-right: 8px;
}

.des-job-buttons__box p {
    line-height: 40px;
    width: 81px;
}

.des-job-buttons__box img {
    cursor: pointer;
}

.additional-inform__box {
    width: 100%;
    background: rgba(189, 158, 255, 0.1);
    display: flex;
    margin-top: 51px;
    margin-bottom: 50px;
}

.additional-inform__box div {
    padding: 30px;
}

.additional-inform__box div p {
    margin-bottom: 7px;
    font-weight: 400;
}

.additional-specifik {
    font-weight: 300;
    color: #BD9EFF;
}

.inform-of-job {
    display: flex;
    margin-top: 40px;
}

.inform-of-job__exposition {
    border-right: 1px solid rgba(142, 142, 142, 0.5);
    margin-left: 135px;
    padding-right: 60px;
    min-width: 56%;
}

.inform-of-job__exposition h3 {
    font-weight: 400;
    font-size: 1.5em;
    color: #212122;
}

.inform-of-job__exposition p {
    line-height: 150%;
    color: #212122;
}

.inf-job__un-list h4 {
    font-weight: 400;
    font-size: 1.125em;
    color: #000000;
}

.inf-job__un-list {
    list-style-type: none;
}


/* Position Forward */

.forward__title {
    color: #BD9EFF;
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 400;
}

.forward__box-text {
    width: 100%;
    margin-top: 60px;
    margin-left: 21px;
}

.forward__box-text input {
    margin-bottom: 15px;
    width: 270px;
    height: 45px;
}

.forward__box-text p {
    color: #8E8E8E;
    margin-bottom: 5px;
}


/* Similar Jobs Panel */

.same__jobs-right-block {
    margin-left: 60px;
}

.same__jobs-right-block p {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 30px;
}

.same__jobs-item {
    display: flex;
    width: 26vw;
    margin-right: 130px;
    margin-bottom: 30px;
}

.same__jobs-item img {
    margin-top: -30px;
    margin-right: 0px;
    width: 130px;
    height: 130px;
}

.similar-jobs__flex-box {
    display: flex;
}

.similar-jobs__flex-box div {
    font-size: 0.875em;
}

.similar-jobs__title {
    font-weight: 400;
    color: #BD9EFF;
    text-transform: uppercase;
}

.similar-jobs__id {
    font-weight: 400;
    font-size: 0.875em;
}

.similar-jobs__date {
    color: #8E8E8E;
    font-size: 0.750em;
}


/* Introduction */

.about-us {
    background: url(../img/bg_subtract.jpg) 100% 0 / 30% no-repeat;
}

.about-us__line-text {
    width: 100%;
    color: #8E8E8E;
    font-size: 1.25em;
    margin-bottom: 150px;
}

.about-us__intro-parth {
    margin: 0 auto;
    width: 55.5%;
    margin-bottom: 100px;
}

.intro__title-line {
    text-align: center;
    color: #000000;
    font-size: 2.25em;
    margin: 0 auto;
}

.intro__title-line::after {
    content: '';
    display: block;
    width: 110px;
    border: 1.5px solid #8E8E8E;
    background: #8E8E8E;
    margin: 0 auto;
    margin-bottom: 12px;
    margin-top: 8px;
}

.intro__text-parth {
    margin-bottom: 2em;
    text-align: center;
    color: #8E8E8E;
    font-size: 1.25em;
}

.technological {
    background: url(../img/bg_subtract2.jpg) 0 90px / 30% no-repeat;
    padding-bottom: 90px;
}

.techno-box {
    display: flex;
}

.techno-photos {
    position: relative;
    width: 32%;
    height: 24vw;
    margin-left: 9.4%;
    margin-right: 2em;
}

.techno-photos-top {
    position: absolute;
    z-index: 4;
    width: 69%;
    border-radius: 20px;
}

.techno-photos-bot {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
	width: 68%;
    border-radius: 20px;
}

.techno-text-parth {
    width: 45%;
}

.techno-text-parth div {
    text-align: center;
}

.techno__logo {
    text-transform: uppercase;
    color: #BD9EFF;
    font-size: 1.5em;
    font-weight: 400;
}

.techno-logo-line {
    color: #000000;
    font-size: 2.25em;
}

.techno-logo-line::after {
    content: '';
    display: block;
    width: 110px;
    border: 1.5px solid #8E8E8E;
    background: #8E8E8E;
    margin: 12px auto;
}

.techno__text {
    margin-bottom: 2em;
    color: #8E8E8E;
    font-size: 1.25em;
}

.comp__title {
    text-align: center;
    color: #BD9EFF;
    font-size: 1.5em;
    font-weight: 400;
    text-transform: uppercase;
}

.accomplishment {
    margin-top: 4em;
}

.accomplishment__box {
    display: flex;
    justify-content: space-around;
    padding: 0 11.3%;
}

.accomplishment__box div {
    border-right: 1.5px solid #8E8E8E;
    padding: 0 4.2%;
    margin-top: 30px;
}

.accomplishment__box div:last-child {
    border-right: none;
}

.comp__numeric {
    font-size: 5em;
    white-space: nowrap;
}

.comp__text {
    font-size: 1.875em;
    color: #000000;
}


/* Login / Password Reset */

.password-reset {
    width: 100%;
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
    padding-top: 74px;
    padding-bottom: 90px;
}

.pass-reset__box {
    width: 760px;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 30px;
    background: #FFFFFF;
}

.pass-reset__box-content {
    display: flex;
}

.pass-reset__box-text {
    width: 100%;
    margin: 150px auto 0 auto;
    padding-left: 21px;
}

.pass-reset__box-text p {
    color: #8E8E8E;
    margin-bottom: 5px;
    font-weight: 400;
}

.pass-reset__box-text input {
    margin-bottom: 35px;
    width: 270px;
    height: 40px;
}

.pass-reset__box-text a {
    font-size: 0.875em;
}

.pass-reset__title {
    color: #BD9EFF;
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 400;
}

.pass-reset-text {
    color: #BD9EFF;
    line-height: 19px;
    text-align: right;
}


/* Contact */

.contact-page {
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
}

.contacts-box {
    display: flex;
}

.cont-line {
    font-size: 3em;
    color: #212122;
    font-weight: 400;
}

.cont-line::after {
    content: '';
    display: block;
    border: 1px solid #8E8E8E;
    width: 110px;
    margin: 10px 0 12px -48px;
}

.contact-page__box {
    padding-top: 144px;
    margin-left: 23.1%;
    padding-bottom: 302px;
}

.contact-page__box h2 {
    color: #BD9EFF;
    margin: 0;
    margin-bottom: 12px;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 400;
}

.cont-box__item {
    margin-right: 50px;
    font-size: 1.25em;
}

.cont-box__item p {
    margin-bottom: 4px;
}


/* Registration / Profile */

.user-profile-bg {
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
    padding-top: 74px;
    padding-bottom: 90px;
}

.user-container {
    width: 80%;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    padding: 30px 50px;
}

.user-container h2 {
    margin: 0;
    margin-bottom: 25px;
    color: #BD9EFF;
    font-size: 2.5em;
}

.user-inbox-container {
    display: flex;
}

.user-left-content {
    margin-right: 114px;
}

.user-inbox-container input[type="text"],
.user-inbox-container select {
    margin-bottom: 15px;
    width: 275px;
    height: 40px;
}

.user-inbox-container p {
    color: #8E8E8E;
    font-weight: 400;
    margin-bottom: 5px;
}

.user-language-parth {
    display: flex;
    justify-content: center;
}

.user-gender-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-gender-box > div {
    display: flex;
}

.user-gender-box label {
    margin-right: 50px;
    color: #8E8E8E;
    line-height: 45px;
}

.user-language-parth select {
    margin-left: 14px;
    width: 130px;
    height: 40px;
}

.user-single {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.user-single > div {
    width: 48%;
}

.user-single select {
    margin: 0;
}

.user-add-lang-link {
    margin-bottom: 20px;
    margin-top: 15px;
}

.user__futer {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-bottom: 30px;
}

.user__futer p {
    width: 370px;
}

@media screen and (max-width: 767px) {
    .user-gender-box {
        justify-content: flex-start;
    }
}


/* Registration Compare */


/* Data Policy */

.gdpr-acceptance {
    box-shadow: 10px 10px 25px 10px rgba(198, 198, 198, 0.15);
    background-color: white;
    width: 55%;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .gdpr-acceptance {
        width: 80%;
    }
}

.gdpr-acceptance p {
    font-size: 16px;
}


/* Username and Password */

.PwdField {
    margin-bottom: 35px;
    width: 100%;
    max-width: 275px;
    height: 40px;
}


/* Static Pages */

.quality-policy {
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
}

.quality-policy-header-box {
    margin-left: 135px;
    padding-top: 104px;
}

.quality-policy-header-box h2 {
    font-weight: 500;
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #BD9EFF;
    text-transform: uppercase;
}

.quality-policy-header-box h3 {
    font-weight: 400;
    font-size: 3em;
    margin: 0;
    color: #212122;
}

.quality-policy-header-box h3::after {
    content: '';
    display: block;
    width: 110px;
    border: 1.5px solid #8E8E8E;
    background: #8E8E8E;
    margin-left: -48px;
}

.quality-policy-header-box p {
    margin-right: 43%;
    margin-top: 12px;
    line-height: 150%;
    font-size: 1.25em;
}

.quality-text-parth {
    margin-left: 135px;
    margin-right: 30px;
    font-size: 1.25em;
}

.quality-text-parth p {
    margin-bottom: 35px;
}

.quality-text-parth h2 {
    font-size: 1.25em;
    color: #212122;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 35px;
}

.services-text-parth {
    padding-bottom: 174px;
}

.services-text-parth p {
    font-size: 1.25em;
    color: #000000;
    line-height: 23px;
    width: 55%;
    margin-bottom: 10px;
}


/* Attachment Upload */

.upload {
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
    padding-top: 74px;
    padding-bottom: 90px;
}

.files-box__inf {
    display: flex;
    margin-top: 21px;
    color: #212122;
    font-weight: 400;
}

.files-box__doc-type {
    flex-shrink: 0;
	width: 150px;
}

.files-box__name-lang {
    margin-left: 25%;
    color: #BD9EFF;
}

.upload__point {
    margin-left: 9px;
    margin-right: 9px;
    margin-top: -5px;
}

.lang-document {
    display: block;
    margin-right: 1px;
}

.type-document {
    margin-right: 60px;
}

.cv-box-flex {
    display: flex;
    margin-bottom: 35px;
}

.upload__button-choosefile {
    margin-bottom: 30px;
    border: 1px solid #BD9EFF;
    border-radius: 25px;
    width: 240px;
    height: 45px;
    text-align: center;
    color: var(--main-color);
    line-height: 45px;
    cursor: pointer;
}


/* Logout */

.logout {
    background: url(../img/bg_subtract.jpg) 100% 0 / 40% no-repeat;
    padding-bottom: 279px;
}

.logout-box {
    padding-top: 104px;
    margin-left: 135px;
}

.logout-title {
    font-weight: 500;
    color: #BD9EFF;
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 12px;
}

.logout-person-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.logout-title-line {
    color: #212122;
    font-size: 3em;
    font-weight: 400;
}

.logout-title-line::after {
    content: '';
    display: block;
    width: 110px;
    border: 1.5px solid #8E8E8E;
    background: #8E8E8E;
    margin-left: -48px;
    margin-bottom: 15px;
}

.logout-person-name {
    font-size: 1.5em;
    color: #000000;
    line-height: 28px;
}

.logout__point {
    margin-top: 2px;
    margin-left: 17px;
    margin-right: 17px;
}

.logout-nickname {
    font-size: 1.25em;
    line-height: 28px;
    color: #000000;
}

.logout-warning {
    color: #000000;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 30px;
}

.confirm-buttons-box {
    display: flex;
}

.confirm-buttons-box .ControlButton {
    margin-right: 40px;
    width: 220px;
}


/* References */

.slider {
    position: relative;
    padding: 0 100px;
    padding-bottom: 20px;
}

.slider .slick-arrow {
    position: absolute;
    top: 30%;
    z-index: 10;
    font-size: 0;
    width: 30px;
    height: 100px;
    border: none;
}

.slider .slick-arrow.slick-prev {
    left: 16%;
    background: url(../img/intro/slick_arrow_left.svg) 0 0 / 100% no-repeat;

}

.slider .slick-arrow.slick-next {
    background: url(../img/intro/slick_arrow_right.svg) 0 0 / 100% no-repeat;
    right: 16%;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
}

.slider-item h2 {
    margin-top: 0.5em;
    text-align: center;
    color: #000000;
    font-size: 1.125em;
    font-weight: 400;
}

.slider-item h3 {
    text-align: center;
    font-weight: 400;
    color: #000000;
}

.slider-item p {
    max-width: 45%;
    margin: 0 auto;
    margin-top: 10px;
    text-align-last: center;
    color: #000000;
    font-size: 0.875em;
}


/* Responsive */

@media screen and (max-width: 1292px) {
    .comp__numeric {
        font-size: 4em;
    }

    .request-box-parth {
        display: block;
    }

    .request-button {
        margin-left: 0;
    }

    .same__jobs-item {
        margin-right: 30px;
    }

    .cooki {
        padding: 30px 5px 30px 10px;
    }

    .search-body {
        display: block;
    }

    .header-home {
        padding-left: 50px;
    }

    .header-header p {
        text-align: center;
    }
}

@media screen and (max-width: 1052px) {

    .inform-of-job {
        display: block;
    }

    .same__jobs {
        margin-top: 50px;
    }

    .same__jobs-right-block {
        margin-left: 135px;
    }

    .same__jobs-item {
        width: 90%;
    }

    .inform-of-job__exposition {
        border: none;
    }

    .cookie-box p {
        font-size: 1em;
    }

    .cooki-button-Accept {
        margin-left: 10px;
    }

    .lang-title {
        margin-top: 10px;
    }

    .services-text-parth p {
        width: 80%;
    }
}

@media screen and (max-width: 1000px) {
    .slider .slick-arrow.slick-prev {
        left: 10%;
    }

    .slider .slick-arrow.slick-next {
        left: 83%;
    }

    .slider .slick-arrow {
        top: 10%;
    }

    .accomplishment__box {
        padding: 0 2%;
    }

    .accomplishment__box div {
        padding-right: 2.5%;
        padding-left: 2.5%;
    }

    .header-header {
        width: 90%;
        margin: 0 auto;
    }

    .user__futer {
        justify-content: center;
    }

    .user-container h2 {
        text-align: center;
    }

    .user-language-parth select {
        width: 100%;
    }

    .services-container {
        margin-right: 20%;
    }
}

@media screen and (max-width: 940px) {
    .contact-details-value p {
        font-size: 0.8em;
        line-height: 150%;
    }

	.contact-details-items p {
        font-size: 0.8em;
        margin-right: 2vw;
        line-height: 150%;
    }

    .user-inbox-container {
        display: block;
    }

    .user-left-content {
        margin-right: 0;
    }

    .pass-reset__box {
        width: 90%;
    }

    .forward__box-text input {
        width: 90%;
    }

    .btn {
        width: 90%;
    }
}

@media screen and (max-width: 874px) {
    .grid {
        grid-template-columns: 37vw 37vw;
    }

    .container {
        width: 95%;
    }
}

@media screen and (max-width: 864px) {
    .futer__register-item {
        padding-left: 11vw;
        padding-right: 16vw;
    }

}

@media screen and (max-width: 846px) {
    .slider .slick-arrow.slick-prev {
        left: 6%;
    }

    .slider .slick-arrow.slick-next {
        left: 87%;
    }

    .quality-policy-header-box {
        margin-left: 49px;
    }

    .quality-text-parth {
        margin-left: 49px;
    }

    .header-job-box {
        display: block;
    }

    .header-job-box img {
        margin-top: 150px;
    }

    .picture-job {
        margin-left: 135px;
    }

    .des-job {
        margin-top: 50px;
        margin-left: 135px;
    }

    .des-job-time__box img {
        margin-top: 0;
    }

    .des-job-buttons__box img {
        margin-top: 0;
    }

    .picture-job {
        margin-top: 0;
    }

    .additional-inform__box {
        margin-top: 20px;
        margin-right: 30px;
    }

    .header-home {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 829px) {
    .FormSubmitButton {
        margin-top: 1.5em;
    }

    .cooki-button-Accept {
        width: 150px;
    }

    .cooki-button-Cancel {
        width: 150px;
    }
}

@media screen and (max-width: 1024px) {

    .pass-reset__box-text {
        margin: auto 0 auto -50px;
    }

    .user-left-content,
    .user-right-content {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {

    .pass-reset__box-text {
        margin: 150px auto 0 auto;
    }

    .container {
        max-width: 95%;
    }

    .SiteLogo img {
        width: auto;
        height: 40px;
    }

    .user-container {
        padding: 30px;
    }

    .user-container input,
    .user-container select {
        max-width: 100% !important;
    }

    .user-left-content,
    .user-right-content {
        text-align: left;
    }
}

@media screen and (max-width: 767px) {

	.futer-container {
        padding-bottom: 50px;
    }

    .techno-box {
        display: block;
        margin: 0 auto;
        margin-top: 30px;
    }

    .intro__title-line {
        width: 100%;
    }

    .techno-photos {
        width: 90%;
        height: 70vw;
        margin-left: 5%;
        margin-right: 5%;
    }

    .techno-text-parth {
        width: 100%;
        margin: 0 auto;
        margin-top: 17px;
        margin-bottom: 30px;
    }

    .quality-policy-header-box {
        padding-top: 134px;
    }

    .accomplishment__box {
        display: block;
    }

    .accomplishment__box div {
        border: none;
        padding: 0;
        margin: 0;
        margin-top: 45px;
        text-align: center;
    }

    .about-us__intro-parth {
        width: 100%;
        padding: 25px;
        margin: 0 auto;
    }

    .techno-logo-line {
        margin-top: 20px;
    }

    .techno__text {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .accomplishment {
        padding: 0;
        width: 100%;
        margin: 0 auto;
    }

    .slider-item p {
        font-size: 0.875em;
        max-width: 100%;
        text-align: center;
    }

    .futer-container {
        display: block;
    }

    .futer__register-item:last-child {
        border-bottom: 2px solid #8E8E8E;
    }

    .contacts {
        margin-left: 11vw;
    }

    .contacts .SitemapHeader {
        margin-top: 1.5em;
        margin-bottom: 0.75em;
    }

    .contact-details-value p {
        font-size: 1em;
        line-height: 100%;
    }

    .contact-details-items p {
        font-size: 1em;
        line-height: 100%;
    }

    .contact-page__box {
        margin-left: 49px;
    }

    .cont-box__item {
        font-size: 0.875em;
    }

    .cont-box__item {
        margin-right: 5px;
    }

    .cont-line {
        font-size: 2em;
    }

    .contacts-box {
        margin-left: -30px;
    }

    .request-contacts {
        font-size: 0.875em;
    }

    .request-input {
        width: 50%;
    }

    .request-button {
        width: 50%;
    }

    .request-input-field {
        width: 95%;
    }

    .request-box-parth {
        margin-left: 49px;
    }

    .cv-box-flex {
        font-size: 0.875em;
    }

    .upload__files-box {
        width: 90%;
        margin: 0 auto;
        font-size: 0.875em;
        margin-bottom: 30px;
    }

    .FormSubmitButton,
    .upload__button-choosefile {
        width: 50%;
        min-width: 150px;
    }

    .files-box__name-lang {
        margin-left: 15%;
    }

    .quality-policy-header-box p {
        margin-right: 30px;
        font-size: 1em;
    }

    .quality-policy-header-box h3 {
        font-size: 2em;
    }

    .quality-text-parth p {
        font-size: 0.875em;
    }

    .services-box {
        margin-left: 49px;
    }


    .services-text-parth p {
        width: 80%;
    }

    .services-title {
        font-size: 2em;
    }

    .services-container {
        margin-left: 49px;
    }

    .services-button {
        width: 90%;
    }

    .services-title-line {
        font-size: 2em;
    }

    .pass-reset__box-content img {
        display: none;
    }

    .pass-reset__title {
        font-size: 3em;
        text-align: center;
    }

    .pass-reset__box-text {
        margin-top: 30px;
    }

    .pass-reset__box {
        width: 70%;
    }

    .pass-reset__box-text a {
        margin: 0 auto;
    }

    .pass-reset__box-text input,
    .pass-reset__box-text .LoginButton {
        width: 90%;
    }

    .btn {
        width: 90%;
    }

    .forward__box-text {
        margin-top: 30px;
    }

    .forward__title {
        font-size: 2em;
    }

    .upload__files-box {
        padding-left: 20px;
    }

    .type-document input {
        margin-bottom: 10px;
    }

    .lang-document input {
        margin-bottom: 10px;
    }

    .picture-job {
        margin-left: 0px;
        text-align: right;
        padding: 0;
    }

    .picture-job img {
        margin-top: 35px;
        padding: 0;
    }

    .des-job {
        margin-left: 15px;
        margin-right: 15px;
    }

    .inform-of-job__exposition {
        margin-left: 15px;
    }

    .same__jobs-right-block {
        margin-left: 15px;
    }

    .des-job-name {
        font-size: 2em;
    }

    .additional-inform__box {
        font-size: 1em;
    }

    .additional-inform__box div {
        padding-right: 5px;
    }

    .cookie-box {
        display: block;
    }

    .cookie-box p {
        width: 95%;
    }

    .cooki-button-Accept {
        margin-top: 15px;
        margin-left: 0;
    }

    .cooki-button-Cancel {
        margin-top: 15px;
    }

    .header-home {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 563px) {
    .services-container {
        width: 80%;
    }
}

@media screen and (max-width: 469px) {
    .contact-details-value p {
        font-size: 0.8em;
        line-height: 150%;
    }

    .contact-details-items p {
        font-size: 0.8em;
        line-height: 150%;
    }

    .contacts {
        margin-left: 5vw;
    }

    .futer__register-item {
        padding-left: 5vw;
    }

    .cont-box__item {
        font-size: 0.780em;
    }

    .request-box-item {
        font-size: 0.875em;
        margin-right: 2px;
    }

    .logout-box {
        margin-left: 49px;
    }

    .description__apply {
        width: 100px;
    }

    .description__share {
        width: 100px;
    }
}


/* Position List - Single Column Results */

.jobs {
    display: grid;
    grid-template-columns: 650px 1fr;
    column-gap: 100px;
    margin-top: -100px;
    padding-left: 135px;
    padding-right: 130px;
}


.jobs .left {
    background: #FFFFFF;
    border-radius: 15px;
}

.jobs .top {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
}

.jobs .top_bar {
    margin-top: 10px;
}

.jobs .date {
    color: var(--main-color);
    font-weight: 400;
    font-size: 0.9em;
}

.jobs .sort {
    font-weight: 400;
}

.jobs .sort select {
    border: none;
    height: 40px;
    font-weight: 400;
    cursor: pointer;
}

.jobs .card {
    min-height: 275px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 10px 10px 25px 10px rgba(198, 198, 198, 0.15);
    border-radius: 15px;
    margin-top: 15px;
    padding: 25px 30px 25px 30px;
}

.jobs .filters {
    width: 80%;
    margin: initial;
    margin-top: 230px;
}

.home .jobs .range_container {
    width: 100%;
}

@media screen and (max-width: 1280px) {
    .jobs {
        grid-template-columns: 1fr;
    }

    .jobs .filters {
        width: 100%;
        margin-top: 10px;
    }
}


@media screen and (max-width: 900px) {
    .jobs {
        padding: 0;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }

    .jobs .filters {
        padding-left: 20px;
        padding-right: 20px;
    }
}

