.search-input {
    width: 100%;
    display: block;
}

.career-wrapper {
    width: 100%;
    display: block;
}

.career-header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.career-header input {
    display: block;
    width:100%;
    outline: none;
    border: none;
}

.career-header-left {
    width: 60%;
}

.career-header-left input {
    border-left: 1px solid #333333;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    padding: 15px;
    border-radius: 20px 0 0 20px;
}

.career-header-right {
    width: 40%;
}

.career-header-right input {
    border-right: 1px solid #333333;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
    padding: 15px;
    border-radius: 0 20px 20px 0;
}

.btn-search {
    background-color: #333333 !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.right-side-location {
    position: relative;
}

.btn-search:hover {
    background-color: #0B568A !important;
}

.btn-search:focus {
    background-color: #0E2B5C !important;
}

.btn-search-phone {
    background-color: #333333 !important;
    color: white !important;
    border: none !important;
    border-radius: 15px !important;
    display: none !important;
}

.btn-search-phone:hover {
    background-color: #0B568A !important;
}

.btn-search-phone:focus {
    background-color: #0B568A !important;
}

@media (max-width: 820px) {
    .career-header-left {
        width: 100%;
    }

    .career-header-right {
        width: 100%;
    }

    .career-header input {
        border: 1px solid #333333;
        border-radius: 20px;
    }

    .career-wrapper {
        padding: 50px;
    }

    .career-header {
        gap: 20px;
    }

    .btn-search {
        display: none;
    }

    .btn-search-phone {
        display: block;
        width: 100%;
    }
}


.career-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
    margin-left: auto;
}

.career-position {
    width: calc(33% - 30px);
    box-shadow: 0px 3px 15px 0px rgba(134, 170.00000000000006, 231, 0.22);
    padding: 40px;
    position: relative;
    user-select: none;
    z-index: 1;
    transition: .6s ease color;
    background-color: white;
    overflow: hidden;
}

.career-position::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #333333;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 100%;
    transition: .6s ease top;
}

.career-position:hover {
    color: white;
}

.career-position:hover h1 {
    color: white;
}

.career-position:hover::after {
    top: 0;
}

.career-position h1 {
    color: rgb(14, 43, 92);
    transition: .6s ease color;
}

.career-position span {
    color: rgb(46, 164, 201);
}

.career-position i {
    display: inline-block;
    padding-right: 5px;
}

.career-position span {
    transition: .3s ease color;
}

.career-position:hover span {
    color: white;
}

.no-career {
    width: 100%;
    min-height: 300px;
    background-color: rgba(46, 164, 201, .05);
    display: none;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 10px;
}

.no-career h1 {
    display: block;
    text-transform: uppercase;
    color: rgb(14, 43, 92);
    font-size: 28px;
    font-weight: 300;
    user-select: none;
}

.career-content {
    display: none;
    transition: .3s ease opacity;
}

.career-loading {
    width: 100%;
    min-height: 300px;
    background-color: rgba(46, 164, 201, .05);
    display: none;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 10px;
    transition: .3s ease opacity;
    margin-top: 40px;
}

.career-loading h1 {
    display: block;
    text-transform: uppercase;
    color: rgb(14, 43, 92);
    font-size: 28px;
    font-weight: 300;
    user-select: none;
}

.load-more {
    margin-top: 20px;
    text-align:center;
}

.load-more a {
    color: #2EA4C9 !important;
}

@media (max-width: 845px) {
    .career-position {
        width: 100%;
    }

    .btn-search {
        display: none !important;
    }

    .btn-search-phone {
        display: block !important;
        width: 100% !important;
        padding: 20px !important;
    }
}

.position-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
}