@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    background-clip: content-box !important;
}

::-webkit-scrollbar-thumb:hover {}

::-webkit-scrollbar-track {
    border-radius: 10px !important;
}

html,
body {
    scrollbar-width: thin !important;
    scrollbar-width: 10%;
}

html {
    font-family: "Open Sans", sans-serif;
}

.container {
    width: 60%;
    margin: auto;
}

.vacancy__page__title_bg {
    background-image: url('./../it/images/vacancy.jpg');
    height: 172px;
    background-position: center;
    background-size: cover;
    margin-bottom: 50px;
}

.vacancy__page__title_bg .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.vacancy__page__title_bg h1 {
    font-size: 32.2px;
    font-weight: 600;
    line-height: 35.42px;
    letter-spacing: 5px;
    text-align: left;
}

.vacancy__wrapper {
    width: 60%;
    margin: 0 auto;
}

.vacancy__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.vacancy__header .vacancy__types__filter {
    background-color: #F5F5F5;
    width: 100%;
    margin: 20px auto;
    padding: 12px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.vacancy__header .vacancy__types__filter input[type='text'] {
    width: 100%;
    border: none;
    background-color: #F5F5F5;
    /* font-family: Poppins; */
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.vacancy__header .vacancy__types__filter input[type='text']:focus {
    border: none;
    outline: none;
}

.search__icon__div {
    width: 80px;
    background-color: #DA0903;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancy__header .vacancy__types__filter input[type='submit'] {
    background-color: #DA0903;
    background-image: url('./../it/images/Search.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: none;
    width: 20px;
    text-indent: -9999px;
}

.vacancy__header .vacancy__types__filter input[type='submit']:hover {
    cursor: pointer;
}

.vacancy__body {
    width: 100%;
}

.vacancy__card {
    margin-bottom: 10px;
    border: 1px solid #cbcaca;
    padding: 10px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.job__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.job__type {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    padding: 0;
    margin: 0;
}

.job__created_at {
    font-size: 10px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.ex__details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ex__details p {
    margin-right: 10px;
    margin-top: 0;
    padding-top: 0;
}

.ex__details p span i {
    color: #7C7C7C;
    margin-right: 3px;
}

.span__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ex__details p i.fa-circle {
    font-size: 7px;
    line-height: 100%;
    margin-right: 10px;
}

.ex__details__i {
    display: flex;
    align-items: center;
}

.vacancy__salary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    min-height: 124px;
}

.vacancy__salary p.salary_p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    color: #DA0903;
}

.vacancy__salary p.salary_p span {
    color: #3B3B3B;
    font-size: 14px;
    font-weight: 400;
}

.vacancy__salary p.more_p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
    color: #fff;
    background-color: #DA0903;
    padding: 4px 20px 4px 20px;
    gap: 12px;
    transition: all ease .4s;
}

.vacancy__salary p.more_p:hover {
    box-shadow: 1px 1px 10px rgb(159, 159, 159);
    cursor: pointer;
}

.vacancy__modal__wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all ease .1s;
    visibility: hidden;
    z-index: 10000;
}

.vacancy__more__modal {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    right: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease .3s;
    box-shadow: -5px 0 10px rgba(159, 157, 157, 0.5);
    /* Left side shadow */
}

.vacancy__more__modal.active {
    width: 450px;
    opacity: 1;
    visibility: visible;
}

.do__request {
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    right: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease .3s;
    box-shadow: -5px 0 10px rgba(159, 157, 157, 0.5);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    /* Left side shadow */
}

.do__request.active {
    width: 450px;
    opacity: 1;
    visibility: visible;
}

.for__close__icon.active {
    width: 500px;
    opacity: 1;
    visibility: visible;
}

.for__close__icon {
    background-color: #fff;
    position: absolute;
    top: 20px;
    overflow: hidden;
    right: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease .3s;
    box-shadow: -5px 0 10px rgba(159, 157, 157, 0.5);
    z-index: 1;
    padding: 10px;
    border-radius: 20px 0 0 20px;
}

.for__close__icon i {
    font-size: 28px;
    color: #DA0903;
}

.for__close__icon i:hover {
    cursor: pointer;
}

.vacancy__modal__wrapper.active {
    visibility: visible;
}

.vacancy__more__modal {
    padding: 20px 10px;
}

.vacancy__more__modal .modal__title {
    text-align: center;
    margin-bottom: 10px;
}

.modal__content {
    height: calc(100vh - 150px);
    overflow: auto;
    transition: all ease .4s;
}

.modal__title h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    padding: 0;
    margin: 0;
}

.modal__title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    padding: 0;
    margin: 0;
}

.modal__content.active {
    height: calc(100vh - 150px);
    overflow: auto;
}

.send__req {
    display: block;
    background-color: #DA0903;
    color: #fff;
    padding: 15px 40px;
    text-align: center;
    transition: all ease .4s;
}

.send__req:hover {
    cursor: pointer;
    box-shadow: 1px 1px 10px rgb(159, 159, 159);
}

.download__req {
    display: block;
    background-color: #DA0903;
    color: #fff !important;
    padding: 15px 40px;
    width: 100%;
    text-align: center;
    transition: all ease .4s;
}

.min_screen_close_icon {
    z-index: 1000;
    position: absolute;
    top: 20px;
    color: #DA0903;
    left: 20px;
    font-size: 16px;
    display: none !important;
}

.min_screen_close_icon:hover {
    cursor: pointer;
}

.req_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 23.4px;
    text-align: left;
}

.req_text a {
    color: #DA0903;
}

.download__req:hover {
    cursor: pointer;
    box-shadow: 1px 1px 10px rgb(159, 159, 159);
}

.more__job__content {
    display: flex;
    align-items: center;
}

.more__job__content p {
    font-size: 13px;
    font-weight: 500;
    line-height: 23.4px;
    text-align: left;
    padding: 10px 0;
}

.more__job__content p:hover {
    cursor: pointer;
}

i.fa-window-close {
    display: none;
}

@media screen and (max-width: 620px) {
    .vacancy__page__title_bg .container {
        justify-content: flex-start;
        width: 100%;
    }
    .vacancy__wrapper {
        width: 100%;
    }
    .vacancy__body {
        width: 100%;
    }
    .vacancy__card {
        margin-bottom: 10px;
        flex-direction: column;
    }
    .ex__details {
        flex-direction: column;
        align-items: flex-start;
    }
    .ex__details__i {
        display: flex;
        align-items: center;
    }
    .vacancy__salary {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        min-height: auto;
        width: 100%;
    }
    .vacancy__more__modal.active {
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
    i.fa-window-close {
        display: block;
        position: absolute;
        top: 10px;
    }
    i.fa-window-close:hover {
        cursor: pointer;
    }
}

@media screen and (max-width: 980px) {
    .vacancy__page__title_bg .container {
        width: 100%;
    }
    .vacancy__wrapper {
        width: 100%;
        padding: 0 10px;
    }
    .vacancy__body {
        width: 100%;
    }
    .search__icon__div {
        width: 60px;
    }
}

@media screen and (max-width: 600px) {

    .modal__content {
    	height: calc(90vh - 150px);
    }
    .do__request {
        width: 100% !important;
    }
    .for__close__icon {
        display: none !important;
    }
    .min_screen_close_icon {
        display: block !important;
    }
}

.pagination .page-link {
    color: #DA0903;
    /* Default color */
}

.pagination .page-link:focus {
    color: #DA0903;
    /* Text color on focus */
    box-shadow: 0 0 0 0.25rem rgba(218, 9, 3, 0.25);
    /* Custom focus ring color */
}

.pagination .page-link:hover {
    color: white;
    /* Text color on hover */
    background-color: #DA0903;
    /* Background color on hover */
}

.pagination .page-link:active {
    color: white;
    /* Text color on active state */
    background-color: #DA0903;
    /* Background color on active state */
}
.contact__us__req {
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.contact__us__req h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    padding: 0;
    margin: 0;
}
