@charset "utf-8";

/*
Theme Name: beehive | Job Board HTML5 Template.
Author: Slidesigma
Author URL: https://themeforest.net/user/slidesigma
Version: 1.0.0

%%%%%%% Table of CSS %%%%%%%

1.General code
    1.1 Typography
    1.2 Space margins and padding
    1.3 forms
    1.4 Buttons
    1.5 Section-Colors-&-Backgrounds
    1.6 Modal & popups
2.Homepages
    2.1 Navigation
    2.2 Banner
    2.3 Job-Categories
    2.4 Featured-Jobs
    2.5 How it works
    2.6 Featured-candidate
    2.7 Featured-Employer
    2.8 Featured-Cities
    2.9 Freelancers
    2.10 Pricing
    2.11 Testimonial
    2.12 Whats Your Choice
    2.13 Blog
    2.14 Footer
    2.15 Copyright

3. About Us
4. Candidate-Profile
5. Company-Profile
6. Create-Resume
7. Sign in
8. 404
9. Blog Detail
10. FAQ
11. Contact Us
*/

/* Colors */
:root {
    --color-text: #4b4b4b;
    --color-light-gray: #ebebeb;
    --color-gray: #6f7484;
    --color-dark-green: #006420;
    --color-pale-green: #c3efd7;
    --color-light-green: #6ece5e;
    --color-green: #43b649;
    --color-green2: #afca28;
    --color-yellow: #fdc42d;
    --color-orange: #ef7d21;
}

/* Keyframes */
@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -40px, 0);
        transform: translate3d(0, -40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes matrix {
    0% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0)
    }

    25% {
        -webkit-transform: matrix(1, 0, 0, 1, 15, 20);
        transform: matrix(1, 0, 0, 1, 15, 20)
    }

    50% {
        -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
        transform: matrix(1, 0, 0, 1, -5, 25)
    }

    75% {
        -webkit-transform: matrix(1, 0, 0, 1, -15, 15);
        transform: matrix(1, 0, 0, 1, -15, 15)
    }

    100% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0)
    }
}

@keyframes matrix {
    0% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0)
    }

    25% {
        -webkit-transform: matrix(1, 0, 0, 1, 15, 20);
        transform: matrix(1, 0, 0, 1, 15, 20)
    }

    50% {
        -webkit-transform: matrix(1, 0, 0, 1, -5, 25);
        transform: matrix(1, 0, 0, 1, -5, 25)
    }

    75% {
        -webkit-transform: matrix(1, 0, 0, 1, -15, 15);
        transform: matrix(1, 0, 0, 1, -15, 15)
    }

    100% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
        transform: matrix(1, 0, 0, 1, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes inner-circles-loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes inner-circles-loader {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@-webkit-keyframes zoom-fade-two {
    0% {
        -webkit-transform: scale(.97);
        transform: scale(.97)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.97);
        transform: scale(.97)
    }
}

@keyframes zoom-fade-two {
    0% {
        -webkit-transform: scale(.97);
        transform: scale(.97)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(.97);
        transform: scale(.97)
    }
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        left: -100px
    }

    to {
        opacity: 1;
        left: 25px
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        left: -100px
    }

    to {
        opacity: 1;
        left: 25px
    }
}

@-webkit-keyframes slideTop {
    0% {
        opacity: 0;
        top: -100px
    }

    to {
        opacity: 1;
        top: 25px
    }
}

@keyframes slideTop {
    0% {
        opacity: 0;
        top: -100px
    }

    to {
        opacity: 1;
        top: 25px
    }
}

@keyframes slideTop {
    0% {
        opacity: 0;
        top: -100px
    }

    to {
        opacity: 1;
        top: 25px
    }
}

@keyframes box1 {

    0%,
    50% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

@keyframes box3 {

    0%,
    50% {
        transform: translate(100%, 100%);
    }

    100% {
        transform: translate(0, 100%);
    }
}

@keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }

    50% {
        transform: translate(200%, 100%);
    }

    100% {
        transform: translate(100%, 100%);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.75);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/*======================
1.General Code
========================*/
html {
    overflow: hidden;
}

html.overflow {
    overflow-x: hidden;
    overflow-y: visible;
}

button:focus,
*:focus {
    outline: none;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 80px 0 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #101010;
    background: #ffffff;
    border-color: #efefef;
    transition: transform ease-in .4s;
    overflow-x: hidden;
}

select {
    -webkit-appearance: none;
    background-image:
            linear-gradient(45deg, transparent 50%, gray 50%),
            linear-gradient(135deg, gray 50%, transparent 50%);
    background-position:
            calc(100% - 20px) calc(1em + 6px),
            calc(100% - 15px) calc(1em + 6px);
    background-size:
            5px 5px,
            5px 5px;
    background-repeat: no-repeat;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    line-height: normal;
}

.align-item-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.Nunito {
    font-family: 'Nunito', sans-serif;
}

.p-relative {
    position: relative;
}

.before-none:after,
.after-none:after,
.none {
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay-bg {
    background: #f0f3fa;
    opacity: 0.85;
}

.overlay-bg-2 {
    background: rgb(0 100 32);
    opacity: 0.85;
}

.overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

/*preloader*/
.loader {
    overflow: hidden;
}

.preloader {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    overflow: hidden;
}

.boxes {
    height: 32px;
    width: 32px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: 32px;
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 99;
    margin: 0 auto;
}

.boxes .box {
    width: 32px;
    height: 32px;
    top: 0px;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    animation: box1 1s linear infinite;
}

.boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    animation: box2 1s linear infinite;
}

.boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    animation: box3 1s linear infinite;
}

.boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    animation: box4 1s linear infinite;
}

.boxes .box > div {
    background: var(--color-green);
    --translateZ: 15.5px;
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-green);
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.boxes .box > div:nth-child(1) {
    top: 0;
    left: 0;
    background: var(--color-green);
}

.boxes .box > div:nth-child(2) {
    background: var(--color-green);
    right: 0;
    --rotateY: 90deg;
}

.boxes .box > div:nth-child(3) {
    background: var(--color-green);
    --rotateX: -90deg;
}

.boxes .box > div:nth-child(4) {
    background: #DBE3F4;
    top: 0;
    left: 0;
    --translateZ: -90px;
}

/* SVG */
.position-relative {
    position: relative;
}

.custom-text-color {
    color: #f0f3fa;
}

.custom-text-color-2 {
    color: #f8f9fa;
}

.shape {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.shape > svg {
    -webkit-transform: scale(2);
    transform: scale(2);
    width: 100%;
    height: auto;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}

.svg {
    max-width: 100%;
    height: auto;
}

.plus-icon {
    -webkit-animation: zoomIn 2s infinite alternate;
    animation: zoomIn 2s infinite alternate;
    position: absolute
}

.circle-icon {
    -webkit-animation: matrix 8s infinite alternate;
    animation: matrix 8s infinite alternate;
    position: absolute
}

.plus-icon1 {
    left: 60%;
    top: 15%
}

.plus-icon2 {
    right: 10%;
    top: 25%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.plus-icon3 {
    right: 5%;
    top: 50%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.plus-icon4 {
    right: 10%;
    top: 75%;
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.plus-icon5 {
    left: 5%;
    top: 50%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.plus-icon6 {
    left: 20%;
    top: 20%;
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.circle-icon1 {
    left: 5%;
    top: 30%;
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

.circle-icon2 {
    left: 40%;
    bottom: 10%
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards
}

/*section-header*/
.section-header {
    max-width: 660px;
    padding-bottom: 30px;
    text-align: left;
}

.section-header > h3 {
    margin-bottom: 15px;
}

.section-header > span {
    display: block;
    font-size: 18px;
    line-height: 38px;
    color: #7bdaa4;
    font-weight: 600;
}

.heading-after {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/*======================
1.1 Typography
========================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #101010;
}

h1 {
    font-size: 50px;
    line-height: normal;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

a {
    color: var(--color-green);
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:focus {
    color: var(--color-dark-green);
    text-decoration: none;
    transition: 0.5s;
    outline: none;
}

dl,
ol,
ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

ul li,
ol li {
    margin: 0px;
    position: relative;
}

blockquote {
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
}

blockquote span {
    width: 50px;
    height: 50px;
    border: 2px solid #d33;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 15px;
}

blockquote p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
    word-break: break-word;
    margin-bottom: 0;
}

blockquote h6 {
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}

table th,
table td {
    border: 1px solid #efefef;
    padding: 15px;
}

table {
    border: 1px solid #efefef;
    padding: 15px;
    width: 100%;
}

.btn-link {
    color: var(--color-green);
    text-decoration: none;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--color-dark-green);
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fw-100 {
    font-weight: 100;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 900;
}

/*======================
1.2 Space margins and padding
========================*/
.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.section-padding {
    padding: 40px 0;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

.padding-80 {
    padding-top: 80px;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mt-xl-90 {
    margin-top: 90px;
}

.mt-xl-45 {
    margin-top: 45px;
}

.pb-xl-20 {
    padding-bottom: 20px;
}

.pl-48 {
    padding-left: 48px;
}

/*==================
1.3. Forms
====================*/
.form-control-custom::placeholder {
    font-size: 14px;
}

.form-control-custom {
    height: 50px;
    padding: 0.375rem 1.2rem;
    border-radius: 4px;
    border: 2px solid #efefef;
    width: 100%;
    background: none;
}

.form-control-custom:focus {
    border: 2px solid #efefef;
    box-shadow: none;
}

.custom-select:focus {
    box-shadow: none;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid transparent;
    font-size: 16px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
    resize: vertical;
    background: #fff;
}

.form-textarea {
    width: 100%;
    height: 150px;
    border: 1px solid transparent;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 20px;
    resize: vertical;
}

/*==================
1.4. Buttons
====================*/

.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-beehive {
    padding: 10px 20px;
    line-height: 27px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    border-radius: 4px;
    background-color: var(--color-green);
    color: #fff;
    text-align: center;
}

.btn-beehive-outline {
    padding: 10px 20px;
    line-height: 27px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    border-radius: 4px;
    border: 1px solid var(--color-green);
    color: var(--color-green);
    text-align: center;
}

.btn-beehive-outline:hover,
.btn-beehive-outline:focus {
    background-color: var(--color-green);
    color: #fff;
    outline: none;
    box-shadow: none;
}

.btn-beehive:hover,
.btn-beehive:focus {
    color: #fff;
    background-color: var(--color-dark-green);
    outline: none;
    box-shadow: none;
}

.btn-beehive-sm {
    padding: 3px 12px;
}

/*==================
1.5. Section-Colors-&-Backgrounds
====================*/

.bg-light-white {
    background-color: #f0f3fa;
}

.bg-custom-black {
    background-color: #020202;
}

.bg-custom-white {
    background-color: #ffffff;
}

.bg-custom-blue {
    background-color: var(--color-green);
}

/*Colors*/
.text-custom-black {
    color: #000000;
}

.text-custom-blue {
    color: var(--color-green);
}

.text-light-white {
    color: #7c8a97;
}

.text-dark-white {
    color: #999;
}

.text-custom-white {
    color: #ffffff;
}

.text-custom-yellow {
    color: #ff9600;
}

.jl-red {
    color: #f21136;
}

.jl-green {
    color: #0fb76b;
}

.jl-blue {
    color: #1194f7;
}

/*======================
1.6 Modal & Popups
========================*/
.modal-header .close {
    background: #020202;
    opacity: 1;
    margin: 0;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.modal-header {
    align-items: center;
}

.modal-header .close:not(:disabled):not(.disabled):hover {
    background: var(--color-green);
    opacity: 1;
}

.menu-item-has-children .sub-menu li.menu-item-has-children > a > span:after {
    transform: rotate(-90deg);
}



/*======================
2. Homepages
========================*/

/*2.1  ========== Navigation ============*/

/*navigation-wrapper*/

.navigation-wrapper {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0);
    border-radius: 3px;
}

.navigation-wrapper ul {
    padding-left: 18px;
}

.navigation-wrapper ul li {
    list-style: square;
    color: #ff8500;
}

.navigation-wrapper ul li > a {
    color: #191919;
    padding: 10px;
    padding-left: 0;
    display: block;
    transition: all 0.35s;
}

.navigation-wrapper ul li > a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background-color: #ff8500;
    transition: all 0.35s;
}

.navigation-wrapper ul li.active > a,
.navigation-wrapper ul li:hover > a {
    transition: all 0.35s;
    color: #ff8500;
}

.navigation-wrapper ul li.active > a:before,
.navigation-wrapper ul li:hover > a:before {
    width: 100%;
}

/*menu-style-22*/

.menu-style-22 {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08), 0 3px 6px rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;

}

.menu-style-22 .navigation nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu-style-22 .navigation nav .logo {
    margin: 15px 0;
    width: 110px;
    height: 50px;
}

.menu-style-22 .navigation nav .logo img {
    width: 100%;
    /*height: 100%;*/
    /* object-fit: cover;
    object-position: center; */
}

.menu-style-22 .navigation nav .main-menu-2,
.menu-style-22 .navigation nav .main-menu-2 > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-style-22 .navigation nav .main-menu-2 > ul > li.menu-item > a {
    text-transform: uppercase;
    color: #333333;
    font-weight: 600;
    font-size: 13px;
    padding: 24px 40px 24px 0;
    position: relative;
    display: block;
}

.menu-style-22 .navigation nav .main-menu-2 > ul > li.menu-item:hover > a {
    color: var(--color-green);
}

.menu-style-22 .navigation nav .main-menu-2 > ul > li.menu-item:last-child > a {
    padding-right: 0;
}

/*mobile-toggle*/

.mobile-toggle {
    cursor: pointer;
    position: relative;
    display: none;
}

.mobile-toggle > span {
    height: 2px;
    display: block;
    margin-bottom: 5px;
    background: var(--color-green);
    width: 25px
}

/*mobile-menu*/

.mobile-navigation {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: var(--color-green);
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
}

.mobile-navigation .mobile-nav-wrapper {
    padding: 50px 0;
}

.menu-mobile-menu-container .close-btn {
    position: relative;
    cursor: pointer;
    top: -30px;
    float: right;
}

.menu-mobile-menu-container .close-btn > span {
    height: 2px;
    display: block;
    margin-bottom: 5px;
    background: #fff;
    width: 25px;
}

.menu-mobile-menu-container .close-btn > span:first-child {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.menu-mobile-menu-container .close-btn > span:last-child {
    transform: rotate(-45deg);
}

.menu-mobile-menu-container,
.menu-mobile-menu-container ul,
.menu-mobile-menu-container ul li,
.menu-mobile-menu-container ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.menu-mobile-menu-container {
    width: 100%;
    color: #ffffff;
    padding: 30px 15px;
}

.menu-mobile-menu-container ul ul {
    display: none;
}

.menu-mobile-menu-container > ul > li > a {
    padding: 15px;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    background: none;
    text-transform: uppercase;
}

.menu-mobile-menu-container > ul > li > a:hover,
.menu-mobile-menu-container > ul > li.active > a,
.menu-mobile-menu-container > ul > li.open > a {
    color: #ffffff;
    background-color: transparent;
}

.holder {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
}

.holder:before {
    display: block;
    position: absolute;
    content: "+";
    right: 15px;
    z-index: 10;
    transition: 0.5s;
}

.menu-mobile-menu-container > ul > li.open a span.holder::before {
    transform: rotate(45deg);
    transition: 0.5s;
}

.holder:before {
    top: 15px;
}

.menu-mobile-menu-container ul ul li > a {
    cursor: pointer;
    padding: 8px 0;
    z-index: 1;
    text-decoration: none;
    font-size: 14px;
    background: none;
    margin-top: 5px;
    margin-left: 15px;
}

.menu-mobile-menu-container ul ul li.has-sub > a:before {
    display: block;
    position: absolute;
    content: "+";
    right: 15px;
    z-index: 10;
    transition: 0.5s;
}

.menu-mobile-menu-container ul ul li.open > a:before {
    transform: rotate(45deg);
    transition: 0.5s;
}

.menu-mobile-menu-container > ul {
    margin-bottom: 20px;
}

.menu-mobile-menu-container .cta-btn-1 {
    text-transform: uppercase;
    color: #ff8500;
    background: #fff;
    padding: 12px 35px;
    width: 100%;
    display: block;
    text-align: center;
}

.menu-mobile-menu-container .cta-btn-2 {
    text-transform: uppercase;
    color: #fff;
    background: #ff8500;
    padding: 12px 35px;
    width: 100%;
    display: block;
    text-align: center;
    border: 2px solid #fff;
}

.menu-mobile-menu-container .cart-btn-1 {
    color: #ff8500;
    font-size: 20px;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fa;
    border-radius: 50%;
}

.menu-mobile-menu-container .cart-btn-1 > span {
    background: #ff8500;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    position: absolute;
    top: 0;
    right: -5px;
}

.menu-mobile-menu-container .social-media-1 > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-mobile-menu-container .social-media-1 > ul > li > a {
    color: #fff;
    padding-left: 30px;
}

.menu-mobile-menu-container .social-media-1 > ul > li > a:hover {
    color: #000;
}

.menu-mobile-menu-container .search-box .input-group .form-control {
    border-color: #fff;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    background: transparent;
}

.menu-mobile-menu-container .search-box .input-group .input-group-btn button {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    color: #fff;
}

.menu-mobile-menu-container .search-box .input-group .form-control::placeholder {
    color: #fff;
}

.menu-mobile-menu-container .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-mobile-menu-container .contact-details ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-mobile-menu-container .contact-details ul li a {
    font-size: 16px;
    color: #fff;
}

.menu-mobile-menu-container .contact-details ul li a i {
    margin-right: 15px;
}

/*sub menu*/

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a > span:after {
    display: inline-block;
    margin-left: .55em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    left: 0%;
    top: 100%;
    padding: 0;
    width: 200px;
    border: none;
    opacity: 0;
    visibility: hidden;
    display: block;
    background-clip: unset;
    z-index: 100;
    transition: visibility 0.33s, opacity .33s, transform .33s;
    transform: translateY(10px);
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.menu-item-has-children .sub-menu li.menu-item {
    width: 100%;
}

.menu-item-has-children .sub-menu li.menu-item > a {
    display: block;
    padding: 15px;
    background: #fff;
    text-transform: uppercase;
    color: #333333;
    font-weight: 400;
    position: relative;
}

.menu-item-has-children .sub-menu li.menu-item > a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #f3f7fa;
    transition: all 0.35s;
}

.menu-item-has-children .sub-menu li.menu-item > a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background-color: var(--color-green);
    transition: all 0.35s;
}

.menu-item-has-children .sub-menu li.menu-item:hover > a {
    padding-left: 20px;
    color: var(--color-green);
}

.menu-item-has-children .sub-menu li.menu-item:hover > a:after {
    width: 100%;
}

.menu-item-has-children .sub-menu li.menu-item-has-children > a > span {
    position: absolute;
    right: 15px;
}

.menu-item-has-children .sub-menu li.menu-item-has-children > .sub-menu {
    left: 100%;
    top: 0;
}


/*2.2 - Banner */

/*banner-4*/
.banner-4 .banner-content-padding {
    /*padding: 80px 0;*/
}

.banner-4-subsection {
    padding-top: 20px;
}

.banner-4 .heading-left {

    margin: 0 0 auto;
    padding-bottom: 30px;

}

.banner-4 .banner-title {
    font-size: 60px;
}

.banner-4 .heading-left p {
    font-size: 24px;
    max-width: 400px;
    color: var(--color-green);

}



.banner-4 .banner-4-btn .default-btn-one {
    display: inline-block;
    color: #fff;
    padding: 14px 28px;
    background-color: var(--color-green);
    font-size: 14px;
    font-weight: bold;
}

.banner-4-img-bg {
    height: 100%;

}

.banner-4 .banner-4-img-bg {
    background-image: url('../images/zabka_main_img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;



}

.banner-4 .banner-video .video-btn i {
    font-size: 30px;
    color: #fff;
    z-index: 1;

}

.banner-4 .banner-video .video-btn {
    position: absolute;
    top: 50%;
    left: -29px;
    text-align: center;
    margin-top: -50px;
}

.banner-4 .banner-video .video-btn a {
    color: #ffffff;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 84px;
    background: -webkit-gradient(linear, left top, right top, from(#f45a43), color-stop(#f25144), color-stop(#f04846), color-stop(#ee3f47), to(#eb3449));
    background: var(--color-green);
    position: relative;
    z-index: 1;
    border-radius: 50%;
    text-align: center;
    padding-left: 7px;
    padding-top: 4px;
    border: 10px solid #ffffff;
    z-index: 1;
}

.banner-4 .banner-section-form {
    margin-top: -75px;
}

.banner-4 .banner-4-form {
    display: flex;
}

.banner-4 .banner-video .video-btn a::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 84px;
    height: 84px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    border-radius: 50%;
    background: var(--color-green);
}
.car-search-form.tabs .nav-tabs {
    border: none;
    justify-content: flex-start;
}

.car-search-form.tabs .tab-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 4px 12px -10px #000;
}

.custom-select {
    background-image: none;
}

.form-control-custom {
    height: 50px;
    padding: 0.375rem 1.2rem;
    border-radius: 4px;
    border: 2px solid #efefef;
    width: 100%;
    background: none;
}

.form-control-custom:hover {
    border-color: var(--color-green);
}

.car-search-form .tab-content form .range-slider,
.car-search-form .tab-content form .nice-select {
    margin-bottom: 0px;
}

.tabs .nav-tabs .nav-item {
    text-align: center;
    margin-bottom: 0;
    margin-right: 15px;
}

.tabs .nav-tabs .nav-item .nav-link:hover,
.tabs .nav-tabs .nav-item .nav-link.active {
    background: var(--color-green);
    color: #ffffff;
    border: none;
    border-bottom: 2px solid var(--color-green);
}

.tabs .nav-tabs .nav-item .nav-link {
    background: rgba(38, 174, 97, 0.6);
    border-radius: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: none;
    border-bottom: 2px solid var(--color-green);
    color: #020202;
    font-weight: 600;
    padding: 15px 43px 12px 35px;
}

.tabs .nav-tabs .nav-item .nav-link.active:before {
    content: "";
    bottom: -5px;
    left: calc(50% - 6px);
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-green);
}

@media (max-width: 992px) {
    .banner-4 .banner-4-img-bg {
        display: none;
    }

    .banner-4 .banner-content-padding {
        /*padding: 120px 0;*/
    }

}

@media (max-width: 1200px) {
    .banner-4 .banner-section-form {
        margin-top: 24px;
    }
}

/*banner-4*/



.car-search-form.tabs .nav-tabs {
    border: none;
    justify-content: flex-start;
}

.car-search-form.tabs .tab-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 4px 12px -10px #000;
}

.custom-select {
    background-image: none;
}

.form-control-custom {
    height: 50px;
    padding: 0.375rem 1.2rem;
    border-radius: 4px;
    border: 2px solid #efefef;
    width: 100%;
    background: none;
}

.form-control-custom:hover {
    border-color: var(--color-green);
}

.car-search-form .tab-content form .range-slider,
.car-search-form .tab-content form .nice-select {
    margin-bottom: 0px;
}

.tabs .nav-tabs .nav-item {
    text-align: center;
    margin-bottom: 0;
    margin-right: 15px;
}

.tabs .nav-tabs .nav-item .nav-link:hover,
.tabs .nav-tabs .nav-item .nav-link.active {
    background: var(--color-dark-green);
    color: #ffffff;
    border: none;
    border-bottom: 2px solid var(--color-dark-green);
}

.tabs .nav-tabs .nav-item .nav-link {
    background: var(--color-green);
    border-radius: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border: none;
    border-bottom: 2px solid var(--color-green);
    color: #fff;
    font-weight: 600;
    padding: 15px 43px 12px 35px;
}

.tabs .nav-tabs .nav-item .nav-link.active:before {
    content: "";
    bottom: -5px;
    left: calc(50% - 6px);
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-dark-green);
}




.job-banner-bg-2 {
    background-image: url("../images/banners/banner-2.jpg");
    z-index: 9;
    background-attachment: fixed;
    background-position: top;
}

.jl-job-banner.job-banner-bg-2:before {
    content: none;
}

.jl-job-banner.job-banner-bg-2 .banner-subtitle {
    color: #fff;
}

.jl-job-banner {
    padding: 200px 0;
}


.banner-heading {
    text-align: left;
}

.banner-heading-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.banner-subtitle {
    color: #848486;
    font-size: 28px;
    font-weight: 300;
}

.banner-form {
    display: flex;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .09);
}

.job-search-field {
    padding: 10px 12px;
    border-right: 1px solid #e4e4e4;
    flex: 1;
    align-items: center;
    display: flex;
    position: relative;
}

.banner-form .job-search-field:nth-last-child(2) {
    border-right: none;
}

.job-search-field .search-label {
    position: absolute;
    top: -45px;
    left: 0;
    color: #fff;
    padding: 5px 10px;
    line-height: 20px;
    border-radius: 4px;
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.job-search-field .input-with-icon {
    display: block;
    position: relative;
    align-self: center;
    flex: 1;
}

.job-search-field .select-with-icon {
    display: block;
    position: relative;

    width: 100%;
    align-self: center;
}

.select-with-icon select {
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
    color: #757575;
}

.job-search-field .input-with-icon i {
    position: absolute;
    right: auto;
    left: 10px;
    top: calc(50% - 12px);
    font-size: 24px;
    color: #b0b0b0;
}

.select-with-icon i {
    position: absolute;
    right: 16px;
    top: calc(50% - 7px);
    font-size: 16px;
    color: #b0b0b0;
}

.banner-form .input-with-icon input {
    padding-left: 43px;

}

.banner-form input,
.banner-form select {
    padding: 10px 15px;
    box-shadow: none;
    background-color: transparent;
    font-size: 18px;
    margin: 0;
    border: none;
}

.banner-form-button {
    margin: 8px;
    margin-left: 0;
    flex: auto;
    flex-grow: 0;
    display: flex;
    align-items: center;
}

.banner-form-button button {
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
}

.banner-counter ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.banner-counter ul li {
    flex: auto;
    flex-grow: 0;
    margin-right: 35px;
    padding-right: 35px;
    border-right: 1px solid #e0e0e0;
}

.banner-counter li:last-child {
    margin: 0;
    padding: 0;
    border-right: none;
}

.banner-counter ul li strong {
    font-weight: 600;
    color: #333333;
    font-size: 28px;
    margin-bottom: 2px;
    display: block;
}

.banner-counter ul li span {
    font-weight: 300;
    color: #888;
    font-size: 18px;
    display: block;
}

.jl-job-search {
    position: relative;
    z-index: 99;

}

.jl-job-search .job-search-wrapper {
    position: relative;
    margin-top: -70px;
    border-radius: 4px;
    padding: 33px;
    background-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.job-search-wrapper .banner-form-overlap {
    box-shadow: none;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

.banner-form-overlap .job-search-field {
    margin-right: 35px;
    padding: 0;
    border: 1px solid #e4e4e4;
    display: inline-block;
    position: relative;
}

.banner-form-overlap .input-with-icon input {
    padding-left: 43px;
}

.banner-form-overlap input {
    padding: 10px 15px;
    box-shadow: none;
    font-size: 18px;
    margin: 0;
    border: none;
}

.banner-form-overlap select {
    padding: 10px 47px;
    background-color: transparent;
    box-shadow: none;
    font-size: 18px;
    margin: 0;
    border: none;
}

.overlap-form-button {
    display: inline-block;
    margin: 0;
}

.banner-form-overlap .overlap-form-button button {
    padding: 11px 45px;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
}

.jl-title {
    position: relative;
    z-index: 9;
    background-image: url("../images/about-us/other-banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.jl-title.title-padding {
    padding: 80px 0;
}

.jl-title .banner-heading h1,
.jl-title .banner-heading h2 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
}

.jl-title .banner-heading ul {
    list-style: none;
    display: inline-flex;
    background-color: transparent;
    margin: 0;
}

.breadcrumb .breadcrumb-item a {
    color: white;
    font-weight: 700;
}

.breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #fff;
    content: "/";
}

.breadcrumb-item.active {
    color: #fff;
    padding: 0;
}

.jl-apply-job .breadcrumb {
    list-style: none;
    display: inline-flex;
    background-color: transparent;
    margin: 0;
    font-size: 16px;
}

.jl-apply-job .breadcrumb .breadcrumb-item a {
    color: var(--color-green);
    font-weight: 700;
}

.jl-apply-job .breadcrumb-item + .breadcrumb-item {
    padding: 0;
}

.jl-apply-job .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: var(--color-green);
    content: ">";
}

.jl-apply-job .breadcrumb-item.active {
    color: var(--color-green);
    padding-right: .5rem;
    padding-left: .5rem;
}

/*2.3 - Job-Categories */
.job-item:hover .job-item-icon i,
.job-item:hover .job-item-text h5 {
    color: var(--color-green);
}

.jl-work-style-2 {
    background-image: url(../images/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.jl-work-style-2:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #f0f3fa;
    opacity: .85;
    content: "";
    z-index: 1;
}

.jl-job-categories .job-item {
    padding: 24px 24px;
    text-align: center;
    margin-bottom: 24px;
    background-color: #fff;
    position: relative;
    border-radius: 4px;
}

.job-item::before {
    right: 0;
    top: 0;
}

.job-item::after {
    left: 0;
    bottom: 0;
}

.job-item::before,
.job-item::after {
    background: linear-gradient(135deg, rgb(38, 174, 97) 0%, rgb(78, 174, 38) 100%);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.4s linear;
}

.job-item:hover::before,
.job-item:hover::after {
    width: 50%;
}

.job-item a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.job-item a:before {
    left: 0;
    bottom: 0;
}

.job-item a:after {
    top: 0;
    right: 0;
}

.job-item a::before,
.job-item a::after {
    background: linear-gradient(135deg, rgb(38, 174, 97) 0%, rgb(78, 174, 38) 100%);
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.4s linear;
}

.job-item:hover a::before,
.job-item:hover a::after {
    height: 50%;
}

.job-item-icon {
    position: relative;
    width: 60px;
    height: 90px;
    margin: 0 auto;
    font-size: 55px;
}

.job-item .job-item-text h5 {
    font-size: 16px;
}

.job-box {
    border-radius: 4px;
    height: 190px;
    display: block;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    transition: .4s;
}

.job-box:hover {
    box-shadow: 0 4px 12px rgba(42, 65, 232, .25);
    transform: translateY(-10px);
}

.job-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #333333;
    opacity: .5;
    border-radius: 4px;
    transition: .4s;
}

.job-box:hover:before {
    opacity: .95;
    background-color: var(--color-green);
}

.job-box-content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.job-box-content h4 {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}

.job-box:hover .job-box-content span {
    background-color: #ffffff;
    transition: 0.5s;
    color: var(--color-green);
}

.job-box-content span {
    color: #ffffff;
    background-color: var(--color-green);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 10px;
    line-height: 20px;
    margin-top: 8px;
    display: inline-block;
    transition: .4s;
}

.custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.custom-header .section-header {
    padding-bottom: 0;
}

/*2.4 - Featured-Jobs */
.jl-featurejobholder {
    padding: 10px 0;
}

.jl-featurejob {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #eff2f5;
    cursor: pointer;
}

.jl-featurejob.is-active {
    border-color: var(--color-dark-green);
}

.jl-featurejob .jl-featurejob-meta {
    color: var(--color-gray);
}

.jl-companyimg {
    width: 81px;
    float: left;
    min-height: 81px;
    margin: 0 10px 0 0;
    background: #fafafa;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.jl-companycontent {
    padding: 7px 0;
    overflow: hidden;
}

.jl-companyhead {
    width: 100%;
    float: left;
    padding: 0 0 8px;
}

.jl-btnjobtag.jl-fulltimejob {
    background: #81c784;
}

.jl-btnjobtag.jl-projectbasejob {
    background: #9952c6;
}

.jl-btnjobtag.jl-internship {
    background: #6287f0;
}

.jl-btnjobtag.jl-parttimejob {
    background: #cd7575;
}

.jl-btnjobtag {
    color: #fff;
    float: left;
    font-size: 11px;
    padding: 0 14px;
    background: #000;
    line-height: 20px;
    border-radius: 50px;
    display: inline-block;
    vertical-align: middle;
}

.jl-rightarea {
    float: right;
}

.jl-featurejob .jf-companyhead .jf-rightarea {
    padding-right: 10px;
}

.jl-tagfeature {
    float: left;
    color: #767676;
    padding: 0 10px;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #ddd;
    text-transform: capitalize;
}

.jl-btnlike {
    color: #ddd;
    float: left;
    padding: 2px 0;
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 0 10px;
}

.jl-btnlike:hover i:before,
.jl-btnlike.jl-btnliked i:before {
    color: #fc413c;
    content: '\f004';
}

.jl-companyname {
    width: 100%;
    float: left;
}

.jl-companyname h3 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 400;
    line-height: 1;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--color-green);
}

.jl-btnjobtag:hover {
    color: #ffff;
}

.jl-companyname span {
    color: #767676;
    display: block;
    font-size: 13px;
    line-height: 17px;
}


/*2.5 - How-it-works */

.jl-how-work h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
}

.jl-how-work .how-circle {
    width: 120px;
    height: 120px;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-green);
    position: relative;
}

.jl-how-work .how-circle img {}

.jl-how-work .jl-services-item .number-box {
    position: absolute;
    top: 5px;
    left: 14px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.59);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*2.5 - How-it-works-2 */
.jl-process-block {
    position: relative;
    padding-left: 65px;
    z-index: 99;
}

.jl-process-block .process-number {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 44px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    line-height: 1em;
    text-shadow: -1px -1px 0 var(--color-green), 1px -1px 0 var(--color-green), -1px 1px 0 var(--color-green), 1px 1px 0 var(--color-green);
}

.jl-process-block .jl-process-divider {
    position: absolute;
    left: 42px;
    top: 5px;
    width: 25px;
    height: 100%;
}

.jl-process-block .jl-process-divider:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: rgba(38, 174, 0, 0.52);
}

.jl-process-block .jl-process-divider:after {
    position: absolute;
    content: '';
    left: -10px;
    top: 0px;
    width: 22px;
    height: 22px;
    border-radius: 50px;
    border: 6px solid rgba(38, 174, 97, 0.8);
    background-color: #ffffff;
}



/*2.6 - Featured-candidate */

.jl-candidate .jl-candidate-item img {
    width: 100%;
}

.jl-candidate .jl-candidate-item {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.jl-candidate-item .candidate-img {
    position: relative;
}

.jl-candidate-item .candidate-information {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jl-candidate-item .candidate-content {
    padding: 20px 0;
    background-color: #fff;
    border-radius: 0;
}

.candidate-rate li {
    display: inline-block;
}

.candidate-rate li i {
    color: #febe42;
    font-size: 17px;
}

.jl-candidate-item .candidate-content h5 {
    margin-bottom: 15px;
}

.candidate-information .btn-candidate {
    padding: 10px 14px;
    border-radius: 0;
    width: 100%;
}

.candidate-information .btn-candidate i {
    opacity: 0;
    top: 2px;
    max-width: 0;
    left: 5px;
    display: inline-block;
    transition: .25s;
    transform: translateX(-11px);
    position: relative;
}

.candidate-information .btn-candidate:hover {
    padding-left: 10px;
    transition: .25s;
}

.candidate-information .btn-candidate:hover i {
    opacity: 1;
    transform: translateX(0);
}

.btn-candidate:last-child {
    margin-right: 0;
}


/*2.7 - Featured-Employer */

.jl-employer .jl-employer-item {
    flex: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: relative;
    background-color: #fff;
    padding: 32px 10px;
    transition: .3s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jl-employer-item .featured {
    text-transform: uppercase;
    padding: 0 24px;
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 8px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
}

.jl-employer-item .featured.bg-green {
    background: #00ab0d;
}
.jl-employer-item .featured.bg-red {
    background: #e44343;
}

.jl-employer .jl-employer-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.jl-employer-item .employer-img {
    margin-top: 15px;
}

.jl-employer-item .employer-img img {
    display: block;
    width: 120px;
    height: 120px;
}

.jl-employer-item .employer-content h5 {
    margin-bottom: 15px;
}

.employer-content h5 a:hover {
    color: var(--color-green);
}

.jl-employer-item .employer-content p span {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    transition: .4s;
    padding-right: 3px;
}

.jl-employer-item .employer-content {
    flex: 1;
    text-align: center;
    padding-top: 20px;
}

.jl-employer .jl-employer-item.jl-employer-item-add {
    background: var(--color-dark-green);
    color: #fff;
    flex: 1;
}

.jl-employer .jl-employer-item.jl-employer-item-add a {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.jl-employer .jl-employer-item.jl-employer-item-add i {
    font-size: 72px;
    font-weight: bold;
}
.jl-employer .jl-employer-item.jl-employer-item-add span {
    font-size: 24px;
    margin-top: 24px;
}
.jl-employer .jl-employer-item.jl-employer-item-add:hover {
    box-shadow: 0 0 30px rgba(0, 100, 32, 0.3);
}

.jl-employer-joboffers-list {
    display: grid;
    gap: 15px;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(4, 1fr);
}

#closeConfirmationModal.form-control {
    border-width: 2px;
    border-color: #eee;
    height: 40px;
    max-width: 250px;
    box-shadow: none;
    font-size: 14px;
}

#closeConfirmationModal .alert {
    margin: .75rem;
}

.foreigners-nationality {
    margin-top: 10px;
}

/*2.8 - Featured-Cities */
/* .city-box {
    border-radius: 4px;
    height: 236px;
    display: block;
    position: relative;
    background-size: cover;
    background-position: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    transition: .4s;
}
.city-box:hover{
    box-shadow: 0 4px 12px rgba(42,65,232,.25);
    transform: translateY(-10px);
}
.city-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #333333;
    opacity: .5;
    border-radius: 4px;
    transition: .4s;
}
.city-box:hover:before{
    opacity: .95;
    background-color: var(--color-green;
}
.city-box-content {
    position: absolute;
    bottom: 30px;
    left:30px;
}
.city-box-content h4{
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}
.city-box-content span{
    color: #333333;
    background-color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 4px 10px;
    line-height: 20px;
    margin-top: 8px;
    display: inline-block;
} */

.jl-featured-cities .browse-gallery > .row > div {
    padding: 7.5px;
}

.jl-featured-cities .browse-gallery .gallery-img {
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .02);
}

.jl-featured-cities .browse-gallery .gallery-img .img-overlay {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    top: 0px;
    left: 0px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
}

.jl-featured-cities .browse-gallery .gallery-img:hover .btn-border {
    background-color: #fff;
    color: #111111;
    transition: 0.5s all;
}

.jl-featured-cities .browse-gallery .gallery-img:hover .img-overlay {
    opacity: 0.3;
}

.jl-featured-cities .browse-gallery .gallery-img:hover .img-overlay:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    animation: shine .75s;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

.text-custom-white {
    color: #ffffff;
}


.mb-xl-20 {
    margin-bottom: 20px;
}

.btn-border {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    transition: 0.5s all;
}

.btn-first {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    text-shadow: none;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0 25px;
    line-height: 44px;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/*2.9 - Freelancers */
/*new freelencer*/

.jl-freelancers .freelancer-img{
position: relative;


}
.jl-freelancers .freelancer-img img
{
     overflow: hidden;
}
.jl-freelancers .overlay
{
    position: absolute;
    content: '';
    top:0;
    left:0;
    right:0;
    bottom: 0;
    background-color: rgb(0, 0, 0,0.4);
    z-index: 1;
    border-radius: 50%;

}
.jl-freelancers .freelancers-box .freelencer-icon
{
    position: absolute;

    left:0;
    right:0;
    top:50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
   display: none;
    transition: 0.3s;
}
.jl-freelancers .freelancers-box .freelencer-icon i
{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    padding-top: 9px
}

.jl-freelancers .freelancers-box .freelencer-icon i:hover
{
border-color: #fff;
    color: #fff;
}
.jl-freelancers .freelancers-box:hover .freelencer-icon
{
    display: block;
    transition: 0.5s;
}
.jl-freelancers .freelancers-box:hover .freelancer-img{
   transform: scale(1.2);
    transition: 0.6s;
    overflow: hidden;


}

.jl-freelancers .freelencer-location
{
    color: #888;
}
/*new freelencer*/


.jl-freelancers .freelancers-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 30px 0 0;
    border-radius: 4px;
    background-color: #fff;
    transition: .3s;
    position: relative;
    cursor: default;
 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.jl-freelancers .freelancers-box .badge
{
    background-color: var(--color-green);
    color: #fff;
    font-size: 14px;
    margin-top: 2px;
}
.jl-freelancers .freelancer-overview {
    text-align: center;
    padding: 38px 20px;
}

.freelancer-overview .bookmark-icon {
    font-size: 21px;
    position: absolute;
    z-index: 101;
    right: 11px;
    top: 10px;
    cursor: pointer;
    color: silver;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    width: 39px;
    border-radius: 50%;
    transition: all .4s;
    line-height: 27px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.freelancer-nav {
    position: relative;
}

.swiper-buttons {
    display: flex;
    align-items: center;
    position: absolute;
    right: 48px;
    border-radius: 4px;
    top: 10px;
}

.freelancer-button-next,
.freelancer-button-prev {
    color: var(--color-green);
    padding: 10px 13px;
    border-radius: 4px;
    background-color: #f0f3fa;
    font-size: 28px;
    cursor: pointer;
}

.freelancer-button-next:hover,
.freelancer-button-prev:hover {
    background-color: var(--color-green);
    color: #fff;
    border-radius: 4px;
    transition: 0.6s ease;
}

.freelancer-button-prev {
    margin-right: 10px;
}

.freelancer-overview .bookmark-icon:hover {
    color: #febe42;
    transition: 0.5s;
}

.freelancer-overview .freelancer-img {
    width: 110px;
    margin: 0 auto;
    position: relative;
}

.freelancer-img .verified-badge {
    position: absolute;
    bottom: -10px;
    right: 39px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #38b653;
    border-radius: 50%;
}

.freelancer-img .verified-badge i {
    font-size: 15px;
    color: #fff;
}

.freelancer-overview .freelancer-img img {
    width: 100%;
    border-radius: 50%;
    cursor: pointer;
}

.freelancer-name {
    margin-top: 19px;
}

.freelancer-name h4 a {
    font-size: 21px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
}

.freelancer-name span {
    color: #888;
    font-size: 17px;
}

.freelancer-rating {
    margin-top: 5px;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating span {
    color: #febe42;
    font-size: 18px;
    margin-right: 4px;
}

.star-rating:before {
    content: attr(data-rating);
    float: left;
    border-radius: 4px;
    background-color: #febe42;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
    padding: 5px 7px;
    position: relative;
    top: 1px;
    margin-right: 10px;
}

.freelancer-details {
    text-align: center;
    background-color: #fafafa;
    border-radius: 0 0 4px 4px;
}

.freelancer-details .freelance-btn {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.freelancer-details .freelance-btn:hover {
    padding-left: 10px;
    transition: .25s;
}

.freelancer-details .freelance-btn i {
    opacity: 0;
    top: 2px;
    max-width: 0;
    left: 5px;
    display: inline-block;
    transition: .25s;
    transform: translateX(-11px);
    position: relative;
}

.freelancer-details .freelance-btn:hover i {
    opacity: 1;
    transform: translateX(0);
}

/*2.10 - Pricing */
.pricing-rates.business-rate {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pricing-rates {
    position: relative;
    z-index: 1;
    border-bottom: 3px solid #adb5bd;
}

.price-shadow {
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15) !important;
}

.price-rounded {
    border-radius: 10px !important;
}

.price-bg-light {
    background-color: #f8f9fc !important;
}

.pricing-rates .title {
    font-weight: 600;
    font-size: 16px;
}

.text-main {
    color: var(--color-green);
}

.pricing-rates .price {
    font-weight: 400;
}

.pricing-rates .feature .feature-list {
    margin: auto auto 5px;
    font-size: 14px;
}

.text-success {
    color: #2eca8b !important;
}

.pricing-rates.business-rate:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    z-index: 2;
    border-color: var(--color-green);
}

.price-bg {
    background: #f0f3fa;
}

/*2.11 - Testimonial */

/*job-testimonial*/

.text-padding
{
    padding: 20px;
    text-align: left;
}
.testmonial-footer .user-info
{
    display: flex;
   align-items: center;
    min-height: 110px;
    padding: 20px 40px;
    border-top: 1px solid var(--color-green);
    background-color: var(--color-green);
    margin-top: auto;
    color: #fff;
}
.testmonial-footer .user-info h6
{
    color: #fff;
}
.testmonial-footer .user-info img
{
margin-right: 10px;
}
.testmonial-footer .user-info .author-prof
{
    margin-left: 12px;
}
.jl-testimonials {
    position: relative;
    background-image: url("../images/testimonial/testimonial-banner.jpg");
    z-index: 9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.jl-testimonials .testimonial-box {
    background: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 35px 35px 120px;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.jl-testimonials .testimonial-box-2 {
    background: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 24px 24px;
    position: relative;
}

.testimonial-box .text-with-quote {
    font-style: italic;
}

.testimonial-box-2 .text-with-quote {
    font-style: italic;

    position: relative;

}

.testimonial-box .text-with-quote span {
    font-size: 36px;
    color: #e4e3e3;
position: absolute;
    top: 10px;
    left: 50px;
}

.testimonial-box .user-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.testimonial-box-2 .user-info-2 {
    text-align: center;
}

.testimonial-box .user-info h6,
.testimonial-box-2 .user-info-2 h6 {
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.testimonial-box .user-info p,
.testimonial-box-2 .user-info-2 p {
    font-weight: 700;
    text-transform: capitalize;
}

.testimonial-box .user-info h6 a,
.testimonial-box-2 .user-info-2 h6 a {
    color: #000;
    font-weight: 800;
    font-size: 18px;
}

.testimonial-box .user-info h6 a:hover,
.testimonial-box-2 .user-info-2 h6 a:hover {
    color: var(--color-green);
}

.testimonial-box .user-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-clip: padding-box;
    z-index: 2;

}

.testimonial-box-2 .user-info-2 img {
    margin-bottom: 14px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 2;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    top: 44%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    background-color: var(--color-green);
    padding: 6px 13px;
    font-size: 17px;
    color: #fff;
    border-radius: 4px;
}

.testimonial-slider:hover .swiper-button-next,
.testimonial-slider:hover .swiper-button-prev {
    opacity: 1;
    transition: 0.5s;
}

/*2.12 - Whats Your Choice */
.jl-job-choice {
    position: relative;
}

.jl-job-choice .job-area {
    padding: 24px 24px;
    position: relative;
    margin: 0;
}

.job-area .job-icon-bg {
    display: inline-flex;
    width: 120px;
    height: 120px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.job-area .job-icon-bg-light {
    background-color: #f0f3fa;
}

.job-area .job-area-title {
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.jl-job-choice .border-light-grey {
    border: 1px solid #e8ebf3;
}

.jl-job-choice .border-transparent {
    border: 1px solid transparent;
}

/*2.13 - Blog */

.jl-blog .Blog-wrapper {
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.Blog-wrapper .post-img img {
    width: 100%;
}

.Blog-wrapper .post-meta {
    padding: 20px;
    padding-bottom: 0;
}

.Blog-wrapper .blog_meta {
    display: flex;
    justify-content: space-between;
}

.Blog-wrapper .blog_meta p a {
    color: #878f96;
}

.Blog-wrapper .blog_meta p:hover a {
    color: var(--color-green);
}

.Blog-wrapper .author-img img {
    border-radius: 50%;
}

.Blog-wrapper .author-meta {
    margin-left: 20px;
}

.Blog-wrapper .post-content a {
    color: #333333;
    font-weight: 600;
}

.Blog-wrapper .post-content a:hover {
    color: var(--color-green);
}

.Blog-wrapper .post-content p {
    font-size: 15px;
}

.Blog-wrapper .author-meta h4,
.Blog-wrapper .author-meta p {
    margin-bottom: 0;
}

.Blog-wrapper .author-meta h4 {
    font-size: 16px;
    font-weight: 600;
}

.Blog-wrapper .author-meta p a {
    font-size: 15px;
    color: #000;
}

.Blog-wrapper .author-meta p a:hover {
    color: var(--color-green);
}

.Blog-wrapper .post-content {
    padding: 20px;
    padding-top: 0;
}

.Blog-wrapper .link-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Blog-wrapper .link-wrap a i:first-child {
    margin-left: 0;
}

.Blog-wrapper .post-content h5 {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.Blog-wrapper .link-wrap a {
    color: #878f96;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}

.Blog-wrapper:hover .link-wrap a {
    color: var(--color-green);
}

.Blog-wrapper .link-wrap a:hover i {
    transform: translateX(5px);
    transition: .25s;
}

.Blog-wrapper .link-wrap a i {
    margin-left: 10px;
    vertical-align: middle;
}

.recent_post_widget li:last-child {
    margin-bottom: 0;
}

/*2.14 - Footer */
.bg-custom-light {
    background-color: #f8f9fc;
}

.bg-footer {
    background: #ffffff;
}

.bg-footer-2 {
    background: #f8f9fc;
}

.footer-block-title-2 {
    color: #101010;
    font-size: 18px;
    text-transform: uppercase;
}

.jl-footer.bg-footer-2 .footer-bar,
.bg-footer-2 .footer-block.link-block ul li:before {
    background: #8492a6;
}

.bg-footer-2 .copyright .footer-menu li a,
.bg-footer-2 .copyright .copyright-text,
.bg-footer-2 .footer-block ul li a {
    color: #8492a6;
}

.bg-footer-2 .footer-block ul li a:hover {
    color: var(--color-green);
}

.btn-footer {
    color: #fff;
    background-color: var(--color-green);
    border-color: #ffffff;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block-title {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.18px;
}

.footer-block ul {
    padding: 0;
}

.footer-block.about-block ul li {
    color: #a5b7d9;
}

.footer-block.link-block ul li {
    font-size: 16px;
    line-height: 36px;
    letter-spacing: -.16px;
    color: #a5b7d9;
    display: block;
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.footer-block ul li a {
    color: #c0c1c1;
}

.footer-block ul li a:hover {
    color: #fff;
}

.footer-block.link-block ul li:before {
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 2px;
    background: #27b163;
    content: '';
}

.footer-block .social-links li {
    float: left;
    margin-right: 15px;
    display: inline-block;
    list-style: none;
    font-size: 18px;
}

.footer-block .social-links {
    padding-bottom: 30px;
}

.social-links li a {
    color: rgb(255, 255, 255, .6);
    line-height: 0;
}

.jl-footer .footer-bar {
    width: 100%;
    height: 1px;
    background: #234a34;
}

.jl-footer .copyright {
    padding: 30px 0;
}

.copyright .footer-logo img {
    max-width: 125px;
}

.copyright .copyright-text {
    margin-bottom: 0;
    color: #000;
}

.copyright .footer-menu {
    padding: 0;
    margin: 0;
    text-align: right;
}

.copyright .footer-menu li a {
    font-size: 14px;
    line-height: 36px;
}



/*======================
3. About Us
========================*/

/* About */
.jl-about {
    position: relative;
}

.jl-about .about-left-side {
    position: relative;
    overflow: hidden;
}

.jl-about .about-left-side:before {
    content: '';
    background: var(--color-green);
    display: block;
    height: 100%;
    z-index: -1;
    position: absolute;
    width: 100%;
    left: -35px;
}

.jl-about .about-left-side img {
    padding: 35px;
    padding-right: 0;
}

.jl-about .about-right-side {
    padding-left: 50px;
}

.jl-about .about-right-side .content-header {
    max-width: 550px;
}

.jl-about .about-right-side .content-header h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.jl-about .about-right-side .about-list ul li i {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    text-align: center;
    background: var(--color-green) none repeat scroll 0 0;
    color: #fff;
    line-height: 20px;
    font-size: 12px;
}

.jl-about .about-right-side ul li {
    margin: 0px 0 20px;
    list-style: none;
}

/* Why-Choose-Us */
.jl-why-choose .our-features {
    padding: 24px 24px;
    background-color: #f0f3fa;
    position: relative;
    border-radius: 4px;
}

.jl-why-choose .our-features h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 21px;
}

/* Top-Companies */
.top-companies {
    display: block;
    margin: 15px 0;
    text-align: center;
    padding: 0 35px;
}

/* Job-Counter */
.jl-job-counter {
    background-image: url("../images/about-us/footer-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
}

.counter-box {
    display: block;
    padding: 0;
    text-align: center;
    border-right: 1px solid #cccccc;
}

.counter,
.counter-box i {
    display: inline-block;
    font-size: 58px;
    font-weight: 500;
    color: var(--color-green);
    line-height: 42px;
    font-style: normal;
}

.counter-box p {
    margin: 12px 0 0;
    padding: 0;
    color: #101010;
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.counter-box.last-box {
    border-right: none;
}


/*======================
4. Candidate-Profile
========================*/

.jl-candidate-profile {
    position: relative;
}

.candidate-details .candidate-image-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.candidate-details .candidate-image-details .title {
    display: flex;
    align-items: center;
}

.candidate-image-details .title .logo {
    width: 100px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
}

.candidate-image-details .title .about-candidate h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-candidate .info span {
    margin-right: 15px;
    color: #6f7484;
    font-size: 16px;
}

.about-candidate .info span i {
    height: 15px;
    margin-right: 5px;
    color: #aaa;
}

.candidate-image-details .candidate-links .btn-beehive-outline {
    margin-right: 10px;
}

.candidate-links .btn-beehive i {
    height: 18px;
    margin-left: 10px;
    color: #fff;
}

.candidate-details .candidate-skills {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.candidate-skills .skill span {
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}

.candidate-skills .skill a {
    border: 1px solid rgba(0, 0, 0, 0.17);
    padding: 5px 15px;
    margin-right: 5px;
    color: #000;
    border-radius: 3px;
}

.candidate-skills .skill a:hover {
    border: 1px solid var(--color-green);
    color: #fff;
    background-color: var(--color-green);
}

.candidate-description .details-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.candidate-description .my-qualification h4 i,
.candidate-description .my-experience h4 i {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100%;
    color: var(--color-green);
    padding-top: 6px;
    margin-right: 11px
}

.my-qualification ul li,
.my-experience ul li {
    position: relative;
    margin-left: 40px;
    font-size: 15px;
}

.my-qualification ul li:before,
.my-experience ul li:before {
    content: "";
    position: absolute;
    left: -25px;
    top: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid #8b91dd;
    border-radius: 50%;
    background-color: transparent;
}

.details-section {
    padding-top: 50px;
}

.work-container {
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.work-container img {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.work-container .overlay-work {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #3c4858;
    z-index: 1;
}

.work-container .content {
    position: absolute;
    z-index: 1;
    bottom: 5%;
    left: 5%;
}

.work-container .content .title {
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.personal-port {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.work-container .content .title {
    font-size: 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.work-container .client,
.work-container .read_more {
    position: absolute;
    z-index: 1;
    left: 5%;
    top: 5%;
}

.work-container:hover img {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
}

.work-container:hover .overlay-work {
    opacity: 0.6;
}

.work-container:hover .personal-port {
    opacity: 1;
}

.my-skills .progress-box {
    margin: 2px 0;
    overflow: hidden;
    font-weight: 500;
}

.my-skills .progress-box p {
    margin-bottom: 20px;
    letter-spacing: 0.4px;
    font-size: 15px;
    float: left;
}

.my-skills .progress-box .progress-size {
    float: right;
}

.my-skills .progress-box .progress {
    border-radius: 4px;
    height: 7px;
    margin: 20px 0;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 0 0;
}

.progress .progress-bar-info {
    background-color: var(--color-green);
}

.information-and-contact .information {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.information-and-contact .information h4 {
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.information ul li {
    font-size: 15px;
    color: #6f7484;
}

.information ul li span {
    font-weight: 600;
    margin-right: 5px;
    color: #000;
}

.information ul li + li {
    margin-top: 8px;
}

.social-profile li a {
    font-size: 28px;
    color: #3c4858;
}

.social-profile li a:hover {
    color: var(--color-green);
}

.candidate-description .avatar.avatar-md-sm {
    height: 45px;
    width: 45px;
}

/*======================
5. Company-Profile
========================*/

.jl-company-profile {
    position: relative;
}

.jl-candidate-profile .candidate-details,
.jl-company-profile .company-details {
    background-color: #fff;
}

.company-details .company-logo-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}

.company-details .company-logo-details .title {
    display: flex;
    align-items: center;
    width: 100%;
}

.company-logo-details .title .logo {
    width: 100px;
    height: 100px;
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.company-logo-details .title .logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.company-logo-details .title .about-company {
    width: inherit;
}

.company-logo-details .title .about-company h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-logo-details .title .about-company h1 {
    font-size: 40px;
    text-align: center;
}

.about-company .info span {
    margin-right: 15px;
    color: #6f7484;
    font-size: 16px;
}

.about-company .info span i {
    height: 15px;
    margin-right: 5px;
    color: #aaa;
}

.company-logo-details .company-links .btn-beehive-outline {
    margin-right: 10px;
}

.company-links .btn-beehive-outline i {
    margin-right: 7px;
    height: 18px;
    vertical-align: middle;
}

.company-details .company-description {
    padding-top: 60px;
}

.company-description .details-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.company-description .open-job {
    padding-top: 60px;
}

.company-description .job-box-details p {
    color: #8492a6;
    font-size: 16px;
}

.company-description .featured-job-box {
    box-shadow: none;
}

.company-description .featured-job-box .job-box-item {
    margin-bottom: 15px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
}

.company-description .featured-job-box .job-box-item:hover {
    transform: scale(1.05);
}

.company-description .featured-job-box .job-box-item:last-child {
    margin: 0;
}

.information-and-contact .information {
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.information-and-contact .information h4 {
    font-weight: 600;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.information ul li {
    font-size: 15px;
    color: #6f7484;
}

.information ul li span {
    font-weight: 600;
    margin-right: 5px;
    color: #000;
}

.information ul li + li {
    margin-top: 8px;
}

.information-and-contact .contact-button {
    margin-top: 13px;
}

.contact-button .btn-beehive {
    width: 100%;
    padding: 14px;
}

.company-details .job-location {
    margin-top: 30px;
}

.company-details .job-location iframe {
    width: 100%;
    height: 350px;
    border-radius: 4px;
}

.company-details .job-location h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.company-details .share-job {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-top: 50px;
    padding: 12px 30px;
}

.share-job .share {
    font-weight: 600;
    margin-right: 10px;
    font-size: 15px;
}

.share-job a {
    margin-right: 12px;
    color: #6f7484;
}

.share-job a:hover {
    color: var(--color-green);
}

/*======================
6. Create-Resume
========================*/

.job-info-1 {
    margin-top: 0;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
    border-radius: 6px;
}

.job-info-2 {
    margin-top: 30px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
    border-radius: 6px;
}

.profile-label {
    letter-spacing: 0.4px;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 400;
}

.job-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    margin-bottom: 15px;
    letter-spacing: 0.6px;
    border-bottom: 1px solid rgba(159, 157, 167, 0.36);
}

.profile-group span {
    color: rgba(0, 0, 0, 0.76);
}

.profile-group .note {
    color: rgba(0, 0, 0, 0.76);
    font-size: 15px;
}

.info-group {
    margin-bottom: 15px;
}

.text-info-group {
    height: 300px;
}

label.upload-btn input[type=file] {
    border-radius: 6px;
    padding: 6px 0;
    display: none;
}

.job-info-2 .form-input-1 {
    padding: 26px;
}

.upload-btn {
    float: left;
    padding: 13px 35px;
    position: absolute;
    left: 14px;
    top: 36px;
    color: #fff;
    border-radius: 4px;
    background-color: var(--color-green);
}

.btn.btn-beehive.form-btn {
    padding: 8px 38px;
    margin-top: 20px;
}

.upload-resume {
    background: #fff;
    color: #000;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 0;
}

.add-resume input[type="file"] {
    z-index: -1;
    position: absolute;
    opacity: 1;
}

/*======================
7. Sign-in
========================*/

.jl-sign-section {
    background-image: url("../images/about-us/other-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
}

.sign-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 40px 0;
}

.sign-form {
    background-color: #f0f3fa;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
    position: relative;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
}

.sign-logo {
    margin-bottom: 40px;
    display: block;
}

.sign-group {
    position: relative;
    width: 100%;
}

.sign-input:focus {
    outline: none;
}

.sign-group-checkbox {
    width: 100%;
    text-align: left;
}

.sign-group-checkbox input:not(:checked),
.sign-group-checkbox input:checked {
    position: absolute;
    left: -9999px;
}

.sign-group-checkbox input:not(:checked) + label,
.sign-group-checkbox input:checked + label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.76);
    font-weight: normal;
    position: relative;
    cursor: pointer;
    padding-left: 35px;
    line-height: 20px;
    letter-spacing: 0.4px;
    margin: 0;
}

.sign-group-checkbox input:not(:checked) + label:before,
.sign-group-checkbox input:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 4px;
}

.sign-group-checkbox input:not(:checked) + label:after,
.sign-group-checkbox input:checked + label:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f00c';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    transition: 0.4s;
    color: var(--color-green);
}

.sign-group-checkbox input:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

.sign-btn {
    width: 100%;
    margin-top: 15px;
}

.sign-text {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.76);
    letter-spacing: 0.4px;
}

.sign-text a {
    position: relative;
    color: var(--color-green);
}

/*======================
8. 404
========================*/

.jl-404-section {
    background-image: url("../images/about-us/other-banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
}

.jl-404-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.jl-404-content {
    background-color: #f0f3fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    position: relative;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.jl-404-title {
    position: relative;
    color: var(--color-green);
    line-height: 100%;
    font-weight: 600;
    font-size: 120px;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
    text-align: center;
}

.jl-404-text {
    text-align: center;
    display: block;
    width: 100%;
    padding: 0 20px;
    color: rgba(0, 0, 0, 0.76);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}


/*======================
9. Blog-Detail
========================*/

#jl-blog .jl-blog-wrapper {
    margin-bottom: 40px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    text-align: left;
}


#jl-blog .jl-blog-wrapper .jl-blog-content h5 {
    margin-bottom: 15px;
}

#jl-blog .jl-blog-wrapper .jl-blog-content h5 a {
    font-weight: 600;
    color: #000;
    font-size: 20px;
}

#jl-blog .jl-blog-wrapper .jl-blog-content .jl-primary-color {
    font-weight: 600;
}

#jl-blog .jl-blog-wrapper a.anchor-btn {
    color: #ff8400;
    font-weight: 600;
}

#jl-blog .jl-blog-wrapper .blog-meta span.date {
    font-size: 25px;
}

.jl-blog-content a i {
    margin-left: 15px;
    vertical-align: middle;
}

.jl-pegination {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.jl-pegination .jl-pegi a {
    padding: 10px 30px;
    border: 1px solid #eee;
    text-align: center;
    line-height: 2.7;
}

.jl-num-pegination li a {
    margin: 0 5px;
    color: #222;
    border-radius: 5px;

}

.jl-num-pegination li a:hover,
.jl-num-pegination li a:focus {
    color: #ff8400;
}

.jl-num-pegination li a.active {
    background-color: #ff8400;
    color: #fff;
    border: 0;
}

#jl-blog-details {
    background-color: #fcfcfc;
}

.widget_title h4 {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.categories_widget ul li:first-child a {
    padding-top: 0;
}

.categories_widget ul li:last-child a {
    padding-bottom: 0;
}

#jl-blog .jl-blog-wrapper.jl-blog-post-wrap {
    box-shadow: none;
}

.sidebar_widget:first-child {
    padding: 0px;
}

.sidebar_wrap {
    padding-right: 10px;
}

.search_widget,
.categories_widget,
.recent_post_widget,
.tags_widget {
    margin: 0 auto 30px;
}

.sidebar_widget.categories_widget,
.sidebar_widget.recent_post_widget,
.sidebar_widget.tags_widget {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 4px;
}

.blog-post-tags {
    display: flex;
}

.blog-post-tags .tags {
    margin-right: 15px;
    font-weight: 700;
}

.tags-box {
    display: flex;
    align-items: flex-start;
}

.tags-box .tags {
    margin-left: 15px;
}

.tags a {
    display: inline-block;
    padding: 5px 15px;
    border: #efefef solid 1px;
    margin: 0 5px 10px 0;
    background: #ffffff;
    font-weight: 600;
    color: #020202;
}


.blog-post-share > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end;
}

.blog-post-share > ul > li {
    padding-left: 0;
    margin: 0;
    margin-left: 10px;
}

.blog-post-share > ul > li > a {
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    box-shadow: 4px 3px 10px 0px rgba(0, 0, 0, 0.08);
    padding: 10px 14px;
}

.blog-post-share > ul > li > a.fb {
    color: #4661c5;
}

.blog-post-share > ul > li > a.fb:hover {
    color: #fff;
    background: #4661c5;
}

.blog-post-share > ul > li > a.tw {
    color: #45a4e6;
}

.blog-post-share > ul > li > a.tw:hover {
    color: #fff;
    background: #45a4e6;
}

.blog-post-share > ul > li > a.ln {
    color: #007bb5;
}

.blog-post-share > ul > li > a.ln:hover {
    color: #fff;
    background: #007bb5;
}

.blog-post-share > ul > li > a.gg {
    color: #d6463a;
}

.blog-post-share > ul > li > a.gg:hover {
    color: #fff;
    background: #d6463a;
}

.categories_widget ul li a,
.archives_widget ul li a {
    display: block;
    overflow: hidden;
    font-size: 16px;
    color: #000;
    padding: 10px 0;
}

.categories_widget ul li a span {
    float: right;
    font-weight: normal;
}

.categories_widget ul li a,
.archives_widget ul li a {
    font-weight: 600;
}

.tags_widget ul li a {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 15px;
    border: 1px solid #e8ebf3;
}

.tags_widget ul li a:hover {
    transition: 0.5s;
    background-color: var(--color-green);
    color: #fff;
    border: 1px solid var(--color-green);
}

.search_widget {

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

}

.search_widget .mycustom {
    padding: 5px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: #fff;

}

.search_widget .mycustom .btn-beehive {
    box-shadow: none;
    border-radius: 4px;
}

.search_widget .mycustom input {
    border: 0;

}

.search_widget .mycustom input:focus {
    outline: none;
    box-shadow: none;
}

.sidebar_widget {
    padding: 30px 0 0 0;
    overflow: hidden;
}

.recent_post_widget li {
    position: relative;
    padding-left: 90px;
    overflow: hidden;
    margin: 0 auto 10px;
}

.widget_title {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.post_thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 70px;
}

.recent_post_widget h6 {
    font-size: 16px;
    margin-bottom: 15px;
}

.recent_post_widget h6 a {
    font-weight: 600;
    margin: 0 0 6px;
    color: #000;
}

.recent_post_widget h6 a:hover,
.categories_widget ul li a:hover,
#jl-blog .jl-blog-wrapper .jl-blog-content h5 a:hover,
.comment-text a:hover,
.archives_widget ul li a:hover {
    color: var(--color-green);
}

.recent_post_widget p {
    color: #838383;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.jl-blog-wrapper-2 .jl-blog-video-post {
    position: relative;
    margin-bottom: 10px;
}

.jl-blog-wrapper-2 .video-btn-wrapper {
    position: absolute;
    top: 0;
    left: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jl-blog-wrapper-2 .video-btn-wrapper .video-btn {
    border-radius: 50%;
    background-color: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jl-avatar {
    width: 100px;
    margin-right: 20px;
    float: left;
    height: 100px;
    overflow: hidden;
}

.jl-tag-social {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 50px;
    margin: 20px 0;
}

.blog-post-content {
    border: 1px solid #eee;
    background-color: #ffff;
    padding: 20px;
}

.jl-blog-post-wrap .jl-blog-imag img,
.jl-blog-video-post img {
    width: 100%;
    height: 100%;

}

.blog_post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog_post-meta p,
.blog_post-meta p i {
    margin-bottom: 0;
    font-weight: 500;
}

.blog_post-meta p i,
.blog_post-meta p a {
    color: #838383;
}

.blog_post-meta p:hover i,
.blog_post-meta p:hover a {
    color: var(--color-green);
}


.jl-tag-social .tag-list li {
    position: relative;
    display: inline-block;
    padding-right: 5px;
}

.social-share .social-icons li {
    margin-right: 5px;
}

.jl-tag-social span {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.jl-tag-social .social-icons a {
    height: 30px;
    width: 30px;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    line-height: 31px;
    font-size: 16px;
}

.jl-tag-social li {
    display: inline-block;
}

.jl-tag-social .fb a {
    background-color: #3B5999;
}

.jl-tag-social .tweet a {
    background-color: #399FED;
}

.jl-tag-social .messenger a {
    background-color: #0084FF;
}

.jl-tag-social .pintrist a {
    background-color: #BD081C;
}

.jl-tag-social .whastsapp a {
    background-color: #25D366;
}

.comment.the-comment {
    overflow: hidden;
    margin: 0 auto 40px;
}

.comment-avatar {
    width: 100px;
    margin-right: 20px;
    float: left;
    overflow: hidden;
    height: 100px;
}

.comment-content {
    float: right;
    width: calc(100% - 130px);
}

.comment-time {
    color: var(--color-green);
    font-size: 14px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 auto 5px;
}

.comment-text a {
    color: #000;
    font-size: 16px;
}

#comments h4 {
    margin: 10px 0 40px;
    font-size: 26px;
    font-weight: 600;
}

.comment-author a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}


#comments ul.comment-answer {
    padding-left: 40px;
}

.comment-respond,
.all_comments {
    padding-top: 30px;
}

.all_comments .commentlist,
.all_comments .comment-answer {
    list-style: none;
}

.comment-respond {
    border-top: #eaeaea solid 1px;
}

.comment-form .form-control {
    border: #e5e5e5 solid 2px;
    background: #fff;
    padding: 25px 25px;
    border-radius: 4px;
}

.comment-form .form-control:focus {
    box-shadow: none;
}

/*======================
10. FAQ
========================*/

.jl-faq .jl-tab-wrap {
    padding: 0 10px 120px;
    margin: 0 auto;
}

.jl-faq .jl-tab-wrap ul {
    display: flex;
    justify-content: space-around;
}

.jl-faq .jl-tab-wrap ul li {

    width: 220px;
    height: 160px;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.jl-faq .jl-tab-wrap ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    transition: .3s;
    background-color: #f0f3fa;

}

.jl-faq .jl-tab-wrap ul li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--color-green);
    background-color: transparent;
    transition: .3s;

}

.jl-faq .jl-tab-wrap ul li a.active {
    background-color: transparent;
    color: #fff;
    border: 3px solid var(--color-green);
    border-radius: 4px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.jl-faq .jl-tab-wrap ul li a.active span {
    background-color: transparent;
    color: var(--color-green);
}

.jl-faq .jl-tab-wrap ul li a p {
    font-weight: 600;
    color: #000;
    font-size: 17px;
}

.jl-faq h3 {
    margin-bottom: 15px;
}

.jl-faq-2 .jl-tab-wrap ul li a.active {
    border: 1px solid rgba(255, 132, 0, 0.5);
}

.jl-faq-2 .card .card-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.jl-faq-2 .card {
    margin: 0;
}

.jl-faq-2 .card .card-body {
    margin: 0;
}

.jl-pricing-accordion .card .card-body h6 {
    color: #000;
    font-size: 17px;
    margin-bottom: 15px;
}

.jl-faq-2 .card .collapse.show .card-body {
    box-shadow: none;
    border-bottom: 1px solid #eee;
    transition: none;
    margin: 0;
}

.jl-pricing-accordion .card {
    border: 0;
    margin: 10px 0;
    background-color: transparent;
}

.jl-pricing-accordion .card .card-header {
    border: 1px solid #f0f3fa;
    border-radius: 4px;
    background-color: #f0f3fa;
}

.jl-pricing-accordion .card .card-header button {
    width: 100%;
    color: #000;
    font-size: 19px;
    font-weight: 500;
}

.jl-pricing-accordion .card .card-header button:hover,
.jl-pricing-accordion .card .card-header button:focus {
    text-decoration: none;

}

.jl-pricing-accordion .card .card-body p {
    width: 75%;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.76);
}

.jl-pricing-accordion .card .card-body {
    margin: 10px 0;
    transition: .3s;

}

.jl-pricing-accordion .card .collapse.show .card-body {
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.jl-pricing-accordion .card-header button:after {

    content: "-";
    color: #000;
    font-size: 22px;
    font-weight: 400;

}

.jl-pricing-accordion .card-header button.collapsed:after {

    content: "+";
    color: #000;
    font-size: 22px;
    font-weight: 400;

}

.jl-pricing-accordion .card-header {
    padding: 5px;
}

/*======================
6. Create-Resume
========================*/

.jl-apply-job {
    width: 100%;
}

.jl-apply-job .job-apply-form {
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    padding: 24px;
}

.job-apply-form .form-group {
    margin-bottom: 20px;
}

.job-apply-form .form-group label {
    font-size: 14px;
    font-weight: 700;
}

.job-apply-form .form-group i {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 100px;
    font-size: 16px;
    margin-left: 16px;
}

.job-apply-form .form-group .form-control {
    box-shadow: none;
    border: 1px solid #dee2e6;
    height: 42px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.5s ease;
    position: relative;
}

.job-apply-form .form-group textarea {
    line-height: 25px;
    height: 120px !important;
}

/*======================
11. Contact Us
========================*/

.jl-contact .section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-form {
    padding: 25px;
    width: 100%;
    border-radius: 4px;
}

.btn-form {
    padding: 10px 43px;
}

.col-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jl-contact .jl-contact-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #eee;
    width: 70%;
    height: 76%;
    padding: 20px 57px;
    margin: 0 auto;
    border-radius: 4px;
}

.jl-contact-info h4 {
    margin-bottom: 15px;
}

.jl-contact-info p {
    font-size: 16px;
}

.jl-contact-info span {
    margin-bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 50%;

}

.jl-contact-icons {
    margin-top: 30px;
}

.jl-contact-icons li a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: var(--color-green);
    border-radius: 50%;
    margin: 10px 2px;
    border: 1px solid var(--color-green);
}

.jl-contact-icons li a:hover {
    background-color: var(--color-green);
    color: #fff;
}

.jl-contact .jl-contact-info p {
    margin-bottom: 25px;
}


.company-description .job-box-details p {
    color: #8492a6;
    font-size: 16px;
}

.company-description .featured-job-box {
    box-shadow: none;
}

.company-description .featured-job-box .job-box-item {
    margin-bottom: 15px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
}

.company-description .featured-job-box .job-box-item:hover {
    transform: scale(1.05);
}

.company-description .featured-job-box .job-box-item:last-child {
    margin: 0;
}

.featured-job-box {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.job-box-item {
    position: relative;
    display: block;
    padding: 30px;
    margin: 0;
}

.featured-job-box .job-box-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    display: block;
    background: var(--color-green);
    transition: .3s;
    opacity: 0;
}

.featured-job-box .job-box-item:hover:before {
    opacity: 1;
}

.featured-job-box .job-box-item:hover .job-description h4 {
    color: var(--color-green);
}

.job-box-item .job-box-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    top: 0;
}

.job-box-details .job-box-logo {
    margin-right: 30px;
    position: relative;
}

.job-box-logo img {
    border-radius: 4px;
}

.job-box-details .job-description {
    flex: 1;
    padding-top: 3px;
}

.job-description .job-location {
    padding: 0;
    margin-top: 9px;
}

.job-location ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-location ul li {
    display: inline-block;
    margin-right: 14px;
    color: #777;
    font-size: 16px;
}

.job-location ul li i {
    margin-right: 3px;
    color: #777;
}

.job-box-details .job-box-btn {
    background-color: #f0f0f0;
    color: #333333;
}

.job-box-item:hover .job-box-btn {
    background-color: var(--color-green);
    box-shadow: 0 4px 12px rgba(42, 65, 232, .15);
    color: #fff;
}

.featured-job-box .job-box-item:nth-child(2n) {
    background-color: #fafafa;
}

.cookies-modal.modal .modal-dialog {
    position: absolute;
    right: 1.75rem;
    bottom: 0;
    transform: translate(0, 50px);
}

.cookies-modal.modal.show .modal-dialog {
    transform: none;
}

.cookies-modal ul {
    list-style: initial;
    padding-left: 20px;
    margin-bottom: 20px;
}

.cookies-modal ul li {
    margin-bottom: 8px;
}

.select2.select2-container {
    height: 50px;
    max-width: 100%;
    min-width: 0;
    width: 100%!important;
}

.select2-container .selection {
    display: block;
}

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 4px;
    border-color: #efefef;
}

.select2-container .selection .select2-selection--single {
    border: 2px solid #efefef;
    height: 50px;
    border-radius: 4px;
    padding: 6px 8px;
}

.select2-container .select2-results__option {
    padding: 8px 18px;
}

.select2-container .selection .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container.select2-container--default.select2-container--open .selection .select2-selection--single:not(.is-invalid) {
    border-color: var(--color-green);
    border-radius: 4px;
}

.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-green);
    border-radius: 4px;
}

.select2-container.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #efefef;
    color: #000;
}

.select2-container .select2-dropdown {
    border-width: 0;
}

.select2-container .select2-selection__clear {
    color: #999;
}

.select2-container.select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 4px 12px -10px #000;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 35px;
    font-size: 14px;
    line-height: 35px;
}

.select2-container .selection .select2-selection--single:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 27px;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.dropdown-menu a {
    margin-top: 5px;
    margin-left: 15px;
}

.required label::after {
    content: ' *';
    color: #dc3545;
}

.form-control {
    border-width: 2px;
    border-color: #eee;
    height: 50px;
    box-shadow: none;
    font-size: 14px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #eee;
    pointer-events: none;
}

.form-control[readonly] + .select2-container > .selection > .select2-selection {
    background-color: #eee;
    pointer-events: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--color-green);
}

.form-control::placeholder {
    color: #999;
}

.form-control.is-invalid,
.form-control.is-valid,
.select2-container .select2-selection.is-invalid,
.select2-container .select2-selection.is-valid {
    background-position: right calc(1.375em + .1875rem) center;
    padding-right: calc(1.5em + 0.75rem);
}

.select2-container .select2-selection.is-invalid {
    border-color: #dc3545;
}

.select2-container .select2-selection.is-valid {
    border-color: #28a745;
}

.btn-see-details {
    color: rgb(0 100 32);
}
.btn-see-details:hover {
    color: white;
    font-weight: bold;
    background-color: var(--color-green);
}
.custom-btn {
    font-size: 26px;
    font-weight: bold;
    border-radius: 10px;
    padding: 5px;
    width: 200px;
}
.custom-btn-success {
    color: rgb(0 100 32);
}
.custom-btn-success:hover {
    color: white;
    background-color: var(--color-green);
}
.custom-btn-danger {
    color: #dc3545
}
.custom-btn-danger:hover {
    color: white;
    background-color: #dc3545;
}

.btn-see-app {
    min-width: 200px;
    padding: 7px 23px;
    font-weight: bold;
    border-radius: 8px;
}
.padding-top-70 {
    padding-top: 70px;
}

.kraz-no p {
    font-size: 12px;
    color: #767676;
}

.no-pointer {
    cursor: default !important;
}
.min-width-200 {
    min-width: 200px;
}
.red-text {
    color: red !important;
}

.job-income-text p {
    font-size: 12px;
    line-height: 17px;
    color: var(--color-gray);
}

.job_offer_form_is_cxc_created .form-group {
    margin-bottom: 0;
}

.language-menu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1;
    margin: 8px 16px;
}

.language-menu img {
    width: 24px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.language-menu.show {
    transform: translate3d(0px, 51px, 0px)!important;
}

.consultant-panel .dataTable {
    border-collapse: collapse !important;
}
.consultant-panel .card {
    margin-bottom: 15px;
}

label[for=id_hcaptcha] {
    display: none;
}

.dataTable tr.shown, .dataTable tr.details {
    background-color: rgba(0,0,0,.03);
}

.candidate-export-form .form-group {
    margin-bottom: 0;
}

/*======================
12. Leaflet map
========================*/

.map-container {
    padding-bottom: 60px;
}

#map {
    height: 450px;
}

.leaflet-container .job-offer-item {
    border: none;
}
.leaflet-container .job-offer-item a#url {
    color: #FFF;
    margin-left: 20px;
}

.leaflet-container .job-offer-item #position {
    color: var(--color-green);
}

.leaflet-container .marker-cluster-small {
  background-color: var(--color-light-green);
}

.leaflet-container .marker-cluster-small div {
  background-color: var(--color-green);
}

.nearby-cities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
}

.additional-content .custom-header, .nearby-cities .custom-header {
    padding-bottom: 0;
}

.additional-content a {
    color: #101010;
}