.ew-root {
    --ewHoverTransition: 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    --ewHoverOpacity: 0.6;
    --ewTextColor: #17171D;
    --ewMainColor: #1d93ca;
    --ewMainColorTransparent: rgba(9, 105, 195, 0.05);
    --ewMainColorDark: #1b84b6;
    --ewMainColorLight: #e6f0f9;
    --ewSecondaryColor: #fff0d9;
    --ewSecondaryColorLight: #FFF8EC;
    --ewLightGrayColor: #dedede;
    --ewDarkGrayColor: #999
}
body {
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--ewTextColor);
    font-weight: 300;
    font-feature-settings: 'kern';
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
a {
    color: var(--ewMainColor);
    text-decoration: none
}
a:hover {
    color: var(--ewMainColorDark)
}
.ew-preloader {
    background-color: #fff;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center
}
.ew-container {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto
}
.ew-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}
.mt-100 {
    margin-top: 100px
}
.pt-100 {
    padding-top: 65px
}
.pb-100 {
    padding-bottom: 100px
}
.ew-text-light {
    opacity: .7
}
.ew-section-h2 {
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -2px
}
.ew-animate-in.ew-animate-in-top {
    transform: translateY(20px);
    transition: 1s cubic-bezier(.215, .61, .355, 1);
    transition-property: transform, opacity
}
.ew-animate-in.ew-animate-in-top.ew-in {
    transform: translateY(0);
    opacity: 1
}
.ew-animate-in.ew-animate-in-right {
    transform: translateX(-20px);
    opacity: 0;
    transition: 1s cubic-bezier(.215, .61, .355, 1);
    transition-property: transform, opacity
}
.ew-animate-in.ew-animate-in-right.ew-in {
    transform: translateX(0);
    opacity: 1
}
.ew-section-cta, .ew-section-cta-o {
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--ewHoverTransition);
    transition-property: background-color
}
.ew-header {
    background-color: transparent;
    transition: .3s cubic-bezier(.215, .61, .355, 1);
    transition-property: background-color, box-shadow
}
.ew-header.ew-has-border {
    border-bottom: 1px solid var(--ewLightGrayColor);
}
.ew-header.ew-is-sticky {
    background-color: #fff;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.16);
}
.ew-header.ew-is-sticky.ew-has-border  {
    border-bottom: 0 none;
}
.ew-header-container {
    display: flex;
    align-items: center;
    height: 80px;
    justify-content: space-between;
    flex-wrap: wrap
}
.ew-logo>a {
    color: var(--ewTextColor);
    text-decoration: none;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -1px;
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.ew-logo.ew-light>a {
    color: #fff
}
.ew-logo>a:hover {
    opacity: var(--ewHoverOpacity)
}
.ew-logo-nav-container {
    display: flex;
    align-items: center
}
.ew-search-container {
    width: 40%
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: none
}
.ew-logo-nav-container .ew-nav {
    margin-left: 40px
}
.ew-nav>ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center
}
.ew-nav>ul>li>a {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color, opacity
}
.ew-nav>ul>li>a::after {
    content: none
}
.ew-nav.ew-light>ul>li>a {
    color: #fff
}
.ew-nav>ul>li>a:hover {
    opacity: var(--ewHoverOpacity)
}
.ew-nav a:focus {
    outline: 0
}
.ew-nav .dropdown-menu {
    margin-top: -1px !important;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    padding: 30px
}
.ew-nav>ul>li>ul a {
    font-size: 14px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color, opacity;
    padding: 7px 0;
    color: var(--ewTextColor)
}
.ew-nav>ul>li>ul a:focus, .ew-nav>ul>li>ul a:hover {
    background-color: transparent
}
.ew-nav>ul>li>ul a:hover {
    opacity: var(--ewHoverOpacity)
}
.ew-nav>ul>li>ul a.dropdown-toggle {
    display: flex;
    justify-content: space-between
}
.ew-nav>ul>li>ul a.dropdown-toggle::after {
    transition: var(--ewHoverTransition);
    transition-property: transform;
    margin-left: 7px;
    height: .3em;
    margin-top: 6px
}
.ew-user-nav {
    display: flex;
    align-items: center
}
.ew-header-right .ew-user-nav {
    margin-left: 40px
}
.ew-nav-btn {
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color
}
.ew-nav-btn:hover {
    color: var(--ewMainColorDark);
    background-color: #fff
}
.ew-on-light .ew-nav-btn:hover {
    color: #fff;
    background-color: var(--ewMainColorDark)
}
.ew-user-nav-trigger {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(134, 188, 212);
    color: #fff;
    background-color: #1d93ca;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color
}
.ew-is-sticky .ew-user-nav-trigger,
.ew-on-light .ew-user-nav-trigger {
    color: var(--ewTextColor);
    border: 1px solid var(--ewTextColor);
    background-color: #fff;
}
.ew-user-nav-trigger:hover {
    background-color: #fff;
    color: var(--ewMainColorDark);
}
.ew-is-sticky .ew-user-nav-trigger:hover,
.ew-on-light .ew-user-nav-trigger:hover {
    background-color: var(--ewTextColor);
    color: #fff;
}
.ew-on-light .ew-user-nav-trigger {
    color: var(--ewTextColor);
    border: 1px solid var(--ewTextColor)
}
.ew-user-nav-trigger:hover {
    background-color: #fff;
    color: var(--ewMainColorDark)
}
.ew-on-light .ew-user-nav-trigger:hover {
    background-color: var(--ewTextColor);
    color: #fff
}
.ew-nav-trigger {
    margin-left: 40px
}
.ew-nav-trigger.ew-is-dashboard {
    margin-left: 0;
    display: inline-block
}
.ew-nav-trigger>a {
    display: block
}
.ew-nav-trigger>a>div {
    height: 3px;
    background-color: var(--ewTextColor);
    border-radius: 2px;
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.ew-nav-trigger.ew-light>a>div {
    background-color: #fff
}
.ew-nav-trigger.ew-light>a>div {
    background-color: #fff
}
.ew-nav-trigger>a:hover>div {
    opacity: var(--ewHoverOpacity)
}
.ew-nav-trigger>a>.ew-line-1 {
    width: 20px
}
.ew-nav-trigger>a>.ew-line-2 {
    width: 26px;
    margin-top: 5px
}
.ew-nav-trigger>a>.ew-line-3 {
    width: 14px;
    margin-top: 5px
}
.ew-header-right {
    display: flex;
    align-items: center
}
.ew-user-nav-dropdown>.dropdown-toggle {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--ewTextColor)
}
.ew-user-nav-dropdown>.dropdown-toggle::after {
    margin-left: 7px;
    border-top-color: #fff
}
.ew-on-light .ew-user-nav-dropdown>.dropdown-toggle::after {
    border-top-color: var(--ewTextColor)
}
.ew-user-nav-dropdown {
    margin-left: 10px
}
.ew-user-nav-name {
    margin-left: 7px;
    transition: var(--ewHoverTransition);
    transition-property: opacity;
    color: #fff
}
.ew-on-light .ew-user-nav-name {
    color: var(--ewTextColor)
}
.ew-user-nav-dropdown>.dropdown-toggle:hover .ew-user-nav-name {
    opacity: .7
}
.ew-user-nav-dropdown .dropdown-menu {
    margin-top: 7px !important;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}
.ew-user-nav-dropdown ul.dropdown-menu>li>a {
    font-size: 14px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color, opacity;
    padding: 7px 20px;
    color: var(--ewTextColor)
}
.ew-user-nav-dropdown ul.dropdown-menu>li>a:focus, .ew-user-nav-dropdown ul.dropdown-menu>li>a:hover {
    background-color: transparent;
    opacity: var(--ewHoverOpacity)
}
.ew-dropdown-lists {
    flex-wrap: nowrap
}
.ew-dropdown-list {
    white-space: nowrap
}
.ew-dropdown-list ul {
    list-style: none;
    margin: 0;
    padding: 0
}
.ew-dropdown-header {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 15px;
    opacity: .7
}
.ew-dropdown-header {
    white-space: nowrap
}
.ew-nav>ul>li>ul .ew-dropdown-body a {
    padding: 7px 0
}
.ew-dropdown-body a.ew-has-icon {
    display: flex;
    align-items: center
}
.ew-nav a.ew-has-icon-small {
    display: flex;
    align-items: flex-start
}
.ew-dropdown-icon {
    margin-right: 10px;
    width: 32px;
    height: 32px;
    flex: 0
}
.ew-has-icon-small .ew-dropdown-icon {
    width: auto
}
.ew-dropdown-icon img {
    width: auto;
    height: 32px
}
.ew-dropdown-icon span {
    font-size: 16px;
    opacity: .7;
    color: var(--ewMainColorDark);
    margin-top: 2px
}
.ew-dropdown-text {
    flex: 1
}
.ew-dropdown-text>span {
    display: block;
    font-weight: 300;
    opacity: .7;
    font-size: 13px
}
.ew-nav-mobile-container.offcanvas {
    border-right: 0 none;
    box-shadow: 15px 0 30px rgba(0, 0, 0, .16)
}
.ew-nav-mobile-container.ew-is-dashboard.offcanvas {
    background-color: var(--ewMainColorLight)
}
.ew-nav-mobile-container.ew-is-dashboard.ew-is-candidate.offcanvas {
    background-color: var(--ewSecondaryColorLight)
}
.ew-nav-mobile-container .offcanvas-header {
    padding: 30px
}
.ew-nav-mobile-container .offcanvas-body {
    padding: 30px
}
.ew-nav-mobile-container .offcanvas-header .btn-close {
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.ew-nav-mobile .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.ew-nav-mobile .dropdown-toggle::after {
    transition: var(--ewHoverTransition);
    transition-property: transform;
    margin-left: 0;
    height: .3em
}
.ew-nav-mobile a {
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.ew-nav-mobile a:hover {
    opacity: .7;
    color: var(--ewTextColor)
}
.ew-nav-mobile>ul>li>a {
    font-weight: 600;
    font-size: 18px
}
.ew-nav-mobile .navbar-nav .dropdown-menu {
    width: 100%;
    border: 0 none
}
.ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile .navbar-nav .dropdown-menu {
    background-color: var(--ewMainColorLight)
}
.ew-nav-mobile>ul>li ul.dropdown-menu li:not(.ew-dropdown-header) {
    padding-left: 10px
}
.ew-nav-mobile>ul>li ul.dropdown-menu li a {
    font-size: 15px;
    font-weight: 500;
    padding: 7px 0
}
.ew-nav-mobile>ul>li ul.dropdown-menu li a:not(.dropdown-toggle) {
    display: block
}
.ew-nav-mobile .ew-dropdown-header {
    font-size: 16px;
    margin-top: 20px
}
.ew-hero {
    position: relative;
    overflow: hidden;
}
.ew-hero-right-bg-card {
    background-color: var(--ewMainColorDark);
    position: absolute;
    right: 0;
    border-radius: 200px;
    width: 50%;
    height: 150%;
    bottom: 200px;
    transform: rotate(32deg);
    transform-origin: bottom left
}
.ew-hero-right-bg-card.ew-with-image {
    overflow: hidden;
    background-color: transparent
}
.ew-hero-right-bg-card.ew-with-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 28%;
    left: -9%;
    z-index: -1;
    background: var(--backgroundImage);
    transform: rotate(-32deg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom
}
.ew-hero-right-bg-card.ew-has-animation {
    transform: rotate(32deg) translateX(50px);
    opacity: 0;
    transition: .4s cubic-bezier(.215, .61, .355, 1);
    transition-property: transform, opacity
}
.ew-hero-right-bg-card.ew-has-animation.ew-animate {
    opacity: 1;
    transform: rotate(32deg) translateX(0)
}
.ew-hero-caption {
    position: absolute;
    margin-top: 60px;
    margin-bottom: 80px;
    left: 0;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2
}
.ew-hero h1 {
    font-size: 60px;
    line-height: 84px;
    letter-spacing: -3px;
    font-weight: 700
}
.ew-hero-subtitle {
    font-size: 18px
}
.ew-hero-form-round {
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
    height: 80px;
    border-radius: 40px;
    padding-left: 20px;
	width: 75%;
    margin: 0 auto;
}
.ew-hero-form-round.ew-has-bg {
    box-shadow: none;
    background-color: var(--ewMainColorLight)
}
.ew-hero-form-round form {
    height: 80px
}
.ew-hero-form-round .form-floating>label {
    font-weight: 500
}
.ew-hero-form-round form button {
    width: 54px;
    height: 54px;
    border: 0 none;
    margin-right: 13px;
    border-radius: 27px;
    color: #fff;
    background-color: var(--ewMainColor);
    transition: var(--ewHoverTransition);
    transition-property: background-color
}
.ew-hero-form-round form button:hover {
    background-color: var(--ewMainColorDark)
}
.ew-hero-form-round form .form-control {
    border: 0 none;
    font-weight: 300;
    color: var(--ewTextColor);
    background-color: transparent
}
.ew-hero-form-round form .form-control:focus {
    box-shadow: none
}
.ew-hero-searches-container {
	width: 75%;
    margin: 20px auto;
}
.ew-hero-searches-label {
    font-weight: 600
}
.ew-hero-searches-items>a {
    background-color: var(--ewMainColorTransparent);
    color: var(--ewMainColor);
    font-size: 13px;
    display: inline-block;
    border-radius: 50px;
    padding: 7px 17px;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 10px;
    transition: var(--ewHoverTransition);
    transition-property: background-color, color
}
.ew-hero-searches-items>a:hover {
    background-color: var(--ewMainColor);
    color: #fff
}
.ew-hero-searches-items {
    margin-top: 10px
}
.ew-hero-cards-container {
    position: relative
}
.ew-hero-card {
    position: relative;
    width: 70%;
    height: 64vh;
    min-height: 560px;
    background-color: #000;
    border-radius: 40px;
    z-index: 5
}
.ew-animate-cards .ew-hero-card {
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    transition-property: opacity, transform;
    transform: translateX(50px);
    opacity: 0
}
.ew-animate-cards .ew-hero-card.ew-animate {
    transform: translateX(0);
    opacity: 1
}
.ew-hero-card-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 64vh;
    min-height: 560px;
    background-color: var(--ewMainColorLight);
    z-index: 3;
    transform: rotate(14deg);
    border-radius: 40px;
    transform-origin: bottom left
}
.ew-animate-cards .ew-hero-card-light {
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    transition-property: transform;
    transform: rotate(0);
    top: 0;
    left: 0;
    opacity: 0
}
.ew-animate-cards .ew-hero-card-light.ew-animate {
    transform: rotate(14deg);
    opacity: 1
}
@keyframes carousel-animate-vertical {
    0% {
        transform: translateY(200%);
        opacity: 0;
        visibility: hidden
    }
    20%, 3% {
        transform: translateY(100%);
        opacity: 1;
        visibility: visible
    }
    23%, 40% {
        transform: translateY(0);
        opacity: 1;
        visibility: visible
    }
    43%, 60% {
        transform: translateY(-100%);
        opacity: 1;
        visibility: visible
    }
    63% {
        transform: translateY(-200%);
        opacity: 0;
        visibility: visible
    }
    100% {
        transform: translateY(-300%);
        opacity: 0;
        visibility: hidden
    }
}
.ew-header-side-image img {
    width: 100%;
    height: auto
}
.ew-header-side-image.ew-has-animation {
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    transition-property: opacity, transform;
    transform: translateX(50px);
    opacity: 0
}
.ew-header-side-image.ew-has-animation.ew-animate {
    transform: translateX(0);
    opacity: 1
}
.ew-hero.ew-hero-boxed {
    margin-top: 120px;
    min-height: auto
}
.ew-hero-boxed-content {
    padding: 80px;
    margin-left: -80px;
    margin-right: -80px;
    border-radius: 60px
}
@keyframes spinRight {
    100% {
        transform: rotate(360deg)
    }
}
@keyframes spinLeft {
    100% {
        transform: rotate(-360deg)
    }
}
.ew-page-image-hero {
    background-color: var(--ewMainColorLight);
    height: 460px;
    position: relative
}
.ew-page-image-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 2
}
.ew-page-image-hero h1 {
    font-weight: 700;
    font-size: 58px;
    letter-spacing: -2px;
    color: #fff
}
.ew-no-hero {
    padding-top: 80px
}
.ew-jobs-card-1-container, .ew-jobs-card-2-container {
    margin-top: 30px
}
.ew-jobs-card-1, .ew-jobs-card-2, .ew-jobs-card-3 {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}
.ew-jobs-card-3 {
    height: auto;
    margin-top: 30px
}
.ew-jobs-card-2-top {
    display: flex;
    align-items: center
}
.ew-jobs-card-1-title, .ew-jobs-card-2-title, .ew-jobs-card-3-title {
    display: block;
    font-weight: 600;
    color: var(--ewTextColor);
    font-size: 18px;
    margin-top: 30px;
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-jobs-card-2-title, .ew-jobs-card-3-title {
    margin-top: 0
}
.ew-jobs-card-1-title:hover, .ew-jobs-card-2-title:hover, .ew-jobs-card-3-title:hover {
    color: var(--ewMainColor)
}
.ew-jobs-card-1-details, .ew-jobs-card-2-details, .ew-jobs-card-3-details {
    margin-top: 20px;
    display: flex;
    font-size: 14px;
    color: var(--ewTextColor)
}
.ew-jobs-card-2-details, .ew-jobs-card-3-details {
    margin-top: 10px
}
.ew-jobs-card-1-type, .ew-jobs-card-2-type, .ew-jobs-card-3-type {
    padding-left: 30px
}
.ew-jobs-card-1-company, .ew-jobs-card-2-company, .ew-jobs-card-3-company {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-jobs-card-2-company, .ew-jobs-card-3-company {
    display: unset
}
.ew-jobs-card-1-company:hover, .ew-jobs-card-2-company:hover, .ew-jobs-card-3-company:hover {
    color: var(--ewMainColor)
}
.ew-jobs-card-1-company-logo, .ew-jobs-card-2-company-logo, .ew-jobs-card-3-company-logo {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0
}
.ew-jobs-card-2-company-logo {
    flex-shrink: 0
}
.ew-jobs-card-4 {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    border: 1px solid var(--ewLightGrayColor);
    margin-top: 14px;
    width: 100%;
    transition: var(--ewHoverTransition);
    transition-property: background-color, border-color;
    cursor: pointer
}
.ew-jobs-card-4:not(.active):hover {
    background-color: var(--ewMainColorLight);
    border-color: transparent
}
.ew-jobs-card-4:first-child {
    margin-top: 0
}
.ew-jobs-card-4-company-logo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}
.ew-jobs-card-4-company-top {
    display: flex;
    align-items: center
}
.ew-jobs-card-4-title {
    display: block;
    font-weight: 600;
    text-decoration: none;
    color: var(--ewTextColor);
    line-height: 1.2;
    font-size: 15px;
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-jobs-card-4:not(.active):hover .ew-jobs-card-4-title {
    color: var(--ewMainColor)
}
.ew-jobs-card-4-details {
    display: flex;
    font-size: 13px;
    color: var(--ewTextColor);
    margin-top: 5px
}
.ew-jobs-card-4-type {
    padding-left: 30px;
    color: var(--ewTextColor)
}
.ew-jobs-card-4-company {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ewTextColor)
}
.ew-promo-img {
    border-radius: 50px;
    padding-left: 80px
}
.ew-companies-card-1-container {
    margin-top: 30px
}
.ew-companies-card-1 {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}
.ew-companies-card-1-company-logo {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain
}
.ew-companies-card-1-company-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-companies-card-1-company-name:hover {
    color: var(--ewMainColor)
}
.ew-companies-card-1-company-jobs {
    font-size: 16px;
    font-weight: 500;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-companies-card-1-company-jobs:hover {
    color: var(--ewMainColor)
}
.ew-services-1-item-container {
    margin-top: 30px
}
.ew-services-1-item-icon {
    position: relative
}
.ew-services-1-item-icon::before {
    content: "";
    background-color: var(--ewSecondaryColor);
    display: block;
    position: absolute;
    z-index: 1;
    width: 136px;
    height: 136px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    border-radius: 30px
}
.ew-services-1-item-icon img {
    position: relative;
    height: 148px;
    width: auto;
    z-index: 2
}
.ew-services-1-item-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 60px
}
.ew-services-1-item-text {
    margin-top: 20px;
    font-size: 15px
}
.ew-services-1-item-cta {
    margin-top: 30px
}
.ew-services-1-item-cta>a {
    font-weight: 500;
    color: var(--ewMainColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-services-1-item-cta>a:hover {
    color: var(--ewMainColorDark)
}
.ew-services-1-item-cta>a>span {
    margin-left: 10px;
    transition: var(--ewHoverTransition);
    transition-property: margin-left
}
.ew-services-1-item-cta>a:hover>span {
    margin-left: 20px
}
.ew-posts-card-1-container {
    margin-top: 30px
}
.ew-posts-card-1 {
    background-color: #fff;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}
.ew-posts-card-1-top-bg {
    background-color: var(--ewMainColorLight);
    border-radius: 30px;
    margin: -1px
}
.ew-posts-card-1-image {
    height: 240px;
    border-radius: 30px
}
.ew-posts-card-1-content {
    padding: 30px 30px 0
}
.ew-posts-card-1-title {
    display: block;
    font-weight: 600;
    color: var(--ewTextColor);
    font-size: 18px;
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-posts-card-1-title:hover {
    color: var(--ewMainColor)
}
.ew-posts-card-1-cta {
    padding: 0 30px 30px
}
.ew-posts-card-1-cta>a {
    font-weight: 500;
    color: var(--ewMainColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-posts-card-1-cta>a:hover {
    color: var(--ewMainColorDark)
}
.ew-posts-card-1-cta>a>span {
    margin-left: 10px;
    transition: var(--ewHoverTransition);
    transition-property: margin-left
}
.ew-posts-card-1-cta>a:hover>span {
    margin-left: 20px
}
.ew-card-btn {
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--ewHoverTransition);
    transition-property: background-color
}
.ew-card-btn:hover {
    color: #fff;
    background-color: var(--ewMainColorDark)
}
.ew-lists-container {
    margin-top: 30px
}
.ew-list h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px
}
.ew-list ul li {
    margin: 10px 0
}
.ew-list ul li a {
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-jobs-list-top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0
}
.ew-single-job-cover {
    height: 400px;
    border-radius: 30px;
    margin-top: 80px
}
.ew-single-job-cover-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 3px solid #fff;
    margin-top: -60px;
    margin-left: 60px
}
.ew-single-job-cover-logo.ew-is-center {
    margin-left: auto;
    margin-right: auto
}
.ew-single-job-content h1 {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -1px
}
.ew-single-job-company {
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-single-job-content-details {
    font-size: 14px
}
.ew-single-job-content-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px
}
.ew-single-job-content-details li, .ew-single-job-content-details p {
    line-height: 1.7
}
.ew-single-job-content-details li {
    margin-bottom: 10px
}
.ew-single-job-side-panel {
    background-color: var(--ewMainColorLight);
    padding: 30px;
    border-radius: 30px
}
.ew-single-job-side-company {
    display: flex;
    align-items: center
}
.ew-single-job-side-company-logo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0
}
.ew-single-job-side-company-name {
    font-weight: 600
}
.ew-companies-list-top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0
}
.ew-single-company-hero {
    background-color: var(--ewMainColorLight);
    height: 460px;
    position: relative
}
.ew-single-company-hero.ew-boxed {
    border-radius: 30px;
    overflow: hidden
}
.ew-single-company-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 2
}
.ew-single-company-hero.ew-boxed .ew-single-company-hero-caption {
    bottom: 30px;
    left: 30px;
    right: 30px
}
.ew-single-company-hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat
}
.ew-single-company-hero-content {
    display: flex;
    align-items: center
}
.ew-single-company-hero-logo {
    flex-shrink: 0
}
.ew-single-company-hero-title {
    margin-left: 20px
}
.ew-single-company-hero-title h1 {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -1px;
    color: #fff
}
.ew-single-company-content {
    font-size: 14px
}
.ew-single-company-content h2 {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 30px
}
.ew-single-company-content p {
    line-height: 1.7
}
.ew-single-company-side-panel {
    background-color: var(--ewSecondaryColorLight);
    padding: 30px;
    border-radius: 30px
}
.ew-single-company-side-panel h3 {
    font-size: 18px;
    font-weight: 600
}
.ew-single-company-side-panel .form-control {
    border: 1px solid rgba(0, 0, 0, .2);
    font-weight: 300;
    color: var(--ewTextColor);
    background-color: #fff;
    border-radius: 30px;
    padding: 1rem
}
.ew-single-company-side-panel .form-control:focus {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .4)
}
.ew-single-company-side-panel .form-label {
    font-size: 13px;
    font-weight: 500
}
.ew-single-company-container {
    margin-top: 120px
}
.ew-dashboard-side-panel {
    position: fixed;
    width: 320px;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 30px
}
.ew-dashboard-side-panel .ew-logo {
    margin-left: 1.4rem
}
.ew-dashboard-side-panel nav>ul>li>a, .ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile>ul>li>a {
    padding: 1rem 1.4rem;
    border-radius: 30px;
    color: var(--ewTextColor);
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color, opacity;
    font-size: 15px;
    line-height: 18px
}
.ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile>ul>li>a {
    padding: 1rem 0
}
.ew-dashboard-side-panel nav>ul>li:not(.ew-active)>a:hover {
    color: var(--ewMainColor)
}
.ew-dashboard-side-panel nav>ul>li>a span:not(.badge), .ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile>ul>li>a span:not(.badge) {
    width: 27px;
    font-size: 18px
}
.ew-dashboard-side-label, .ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile .ew-dropdown-header {
    padding: 1.4rem;
    font-size: 14px;
    opacity: .7
}
.ew-nav-mobile-container.ew-is-dashboard .ew-nav-mobile .ew-dropdown-header {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0 1.4rem 0;
    font-weight: 300
}
.ew-dashboard-side-user-nav-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 320px;
    background-color: var(--ewMainColorLight);
    padding: 30px
}
.ew-dashboard-side-user-nav {
    padding: 0 1.4rem
}
.ew-dashboard-side-user-nav-dropdown>.dropdown-toggle {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--ewTextColor)
}
.ew-dashboard-side-user-nav-dropdown>.dropdown-toggle::after {
    margin-left: 7px;
    position: absolute;
    right: 0
}
.ew-dashboard-side-user-nav-name {
    margin-left: 7px;
    transition: var(--ewHoverTransition);
    transition-property: opacity;
    color: var(--ewTextColor)
}
.ew-dashboard-side-user-nav-dropdown>.dropdown-toggle:hover .ew-user-nav-name {
    opacity: .7
}
.ew-dashboard-side-user-nav-dropdown .dropdown-menu {
    margin-top: 7px !important;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    width: 100%
}
.ew-dashboard-side-user-nav-dropdown ul.dropdown-menu>li>a {
    font-size: 14px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: opacity;
    padding: 7px 20px;
    color: var(--ewTextColor)
}
.ew-dashboard-side-user-nav-dropdown ul.dropdown-menu>li>a:focus, .ew-dashboard-side-user-nav-dropdown ul.dropdown-menu>li>a:hover {
    background-color: transparent;
    opacity: var(--ewHoverOpacity);
    color: var(--ewTextColor)
}
.ew-dashboard-content {
    margin-left: 320px
}
.ew-dashboard-content-header {
    padding: 30px
}
.ew-dashboard-content-header .ew-user-nav {
    justify-content: flex-end
}
.ew-dashboard-content-details {
    background-color: #fff;
    border-radius: 30px;
    margin-right: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
    padding: 60px;
    min-height: calc(100vh - 184px)
}
.ew-dashboard-content-details h1 {
    font-size: 38px;
    letter-spacing: -2px;
    font-weight: 700
}
.ew-dashboard-content footer {
    padding: 30px 0;
    margin-right: 30px
}
.ew-dashboard-content .ew-footer-copyright {
    font-size: 14px
}
.ew-dashboard-content-details h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1px
}
.ew-company-dashboard-candidate-name {
    font-weight: 600
}
.ew-company-dashboard-candidate-title {
    font-size: 14px
}
.ew-dashboard-content-details form .form-label {
    font-size: 13px;
    font-weight: 500
}
.ew-dashboard-content-details form .form-control {
    border: 1px solid rgba(0, 0, 0, .2);
    font-weight: 300;
    color: var(--ewTextColor);
    background-color: #fff;
    border-radius: 30px;
    padding: 1rem
}
.ew-dashboard-content-details form .form-control:focus {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .4)
}
.ew-dashboard-content-details form .ew-company-cover, .ew-dashboard-content-details form .ew-company-logo {
    position: relative
}
.ew-dashboard-content-details .form-check-input:checked {
    background-color: var(--ewMainColor)
}
.ew-dashboard-content-details .form-check-input:focus {
    box-shadow: none
}
.ew-company-dashboard-jobs-search {
    display: flex;
    justify-content: flex-end;
    align-items: center
}
.ew-company-dashboard-jobs-search-search-form .form-control {
    border-left: 0 none;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-color: rgba(0, 0, 0, .2);
    font-size: 15px;
    font-weight: 300;
    color: var(--ewTextColor)
}
.ew-company-dashboard-jobs-search-search-form .form-control:focus {
    box-shadow: none
}
.ew-dashboard-content-details .table-hover>:not(:last-child)>:last-child>* {
    border-bottom-color: #dee2e6
}
.ew-dashboard-content-details .table .ew-company-dashboard-job-title {
    font-weight: 600
}
.ew-company-dashboard-job-applications, .ew-company-dashboard-job-type {
    font-size: 14px
}
.ew-company-dashboard-job-type {
    font-weight: 500
}
.ew-candidates-list-top h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0
}
.ew-single-candidate-hero {
    background-color: var(--ewMainColorLight);
    height: 460px;
    position: relative
}
.ew-single-candidate-hero.ew-boxed {
    border-radius: 30px;
    overflow: hidden
}
.ew-single-candidate-hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    z-index: 2
}
.ew-single-candidate-hero.ew-boxed .ew-single-candidate-hero-caption {
    bottom: 30px;
    left: 30px
}
.ew-single-candidate-hero-content {
    display: flex;
    align-items: center
}
.ew-single-candidate-hero-name {
    margin-left: 20px
}
.ew-single-candidate-hero-name h1 {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -1px;
    color: #fff
}
.ew-single-candidate-hero-title {
    color: #fff
}
.ew-single-candidate-content {
    font-size: 14px
}
.ew-single-candidate-content h2 {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 30px
}
.ew-single-candidate-content p {
    line-height: 1.7
}
.ew-single-candidate-side-panel {
    background-color: var(--ewSecondaryColorLight);
    padding: 30px;
    border-radius: 30px
}
.ew-single-candidate-side-panel h3 {
    font-size: 18px;
    font-weight: 600
}
.ew-single-candidate-side-panel .form-control {
    border: 1px solid rgba(0, 0, 0, .2);
    font-weight: 300;
    color: var(--ewTextColor);
    background-color: #fff;
    border-radius: 30px;
    padding: 1rem
}
.ew-single-candidate-side-panel .form-control:focus {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .4)
}
.ew-single-candidate-side-panel .form-label {
    font-size: 13px;
    font-weight: 500
}
.ew-single-candidate-container {
    margin-top: 120px
}
.ew-dashboard-side-user-nav-container.ew-is-candidate {
    background-color: var(--ewSecondaryColorLight)
}
.ew-candidate-dashboard-job-title {
    font-weight: 600
}
.ew-candidate-dashboard-job-company {
    font-size: 13px
}
.ew-candidate-dashboard-job-type {
    font-size: 14px
}
.ew-dashboard-content-details form .ew-candidate-cover {
    position: relative
}
.ew-dashboard-content-details form .btn:focus {
    box-shadow: none
}
.ew-candidate-dashboard-jobs-search {
    display: flex;
    justify-content: flex-end;
    align-items: center
}
.ew-candidate-dashboard-jobs-search-search-form .form-control {
    border-left: 0 none;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-color: rgba(0, 0, 0, .2);
    font-size: 15px;
    font-weight: 300;
    color: var(--ewTextColor)
}
.ew-candidate-dashboard-jobs-search-search-form .form-control:focus {
    box-shadow: none
}
.ew-dashboard-content-details .table .ew-candidate-dashboard-job-title {
    font-weight: 600
}
.ew-candidate-dashboard-job-company, .ew-candidate-dashboard-job-type {
    font-size: 14px
}
.ew-candidate-dashboard-job-type {
    font-weight: 500
}
.ew-blog-hero {
    padding: 60px 0;
    margin-top: 80px
}
.ew-blog-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
    font-weight: 700
}
.ew-posts-card-2-container {
    margin-top: 30px
}
.ew-posts-card-2 {
    background-color: #fff;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    height: 260px
}
.ew-posts-card-2-fig {
    height: 260px;
    width: 340px;
    flex-shrink: 0;
    border-radius: 30px;
    margin: -1px
}
.ew-posts-card-2-fig .ew-cover {
    height: 260px;
    width: 340px;
    border-radius: 30px
}
.ew-posts-card-2-content {
    padding: 30px;
    flex: auto
}
.ew-posts-card-2-title a {
    display: block;
    font-weight: 600;
    color: var(--ewTextColor);
    font-size: 18px;
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none
}
.ew-posts-card-2-title a:hover {
    color: var(--ewMainColor)
}
.ew-posts-card-2-cta {
    margin-top: 30px
}
.ew-posts-card-2-cta>a {
    font-weight: 500;
    color: var(--ewMainColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-posts-card-2-cta>a:hover {
    color: var(--ewMainColorDark)
}
.ew-posts-card-2-cta>a>span {
    margin-left: 10px;
    transition: var(--ewHoverTransition);
    transition-property: margin-left
}
.ew-posts-card-2-cta>a:hover>span {
    margin-left: 20px
}
.ew-single-blog-side-panel {
    background-color: var(--ewMainColorLight);
    padding: 30px;
    border-radius: 30px
}
.ew-single-blog-content h2 {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 1rem
}
.ew-single-blog-content img {
    width: 100%;
    height: auto;
    border-radius: 30px
}
.ew-contact-item-icon {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 4%);
    padding: 30px;
    display: inline-block;
    font-size: 42px;
    line-height: 42px;
    width: 103px;
    text-align: center
}
.ew-contact-item-text {
    font-size: 14px
}
.ew-contact-us-form .form-control {
    border: 1px solid rgba(0, 0, 0, .2);
    font-weight: 300;
    color: var(--ewTextColor);
    background-color: #fff;
    border-radius: 30px;
    padding: 1rem
}
.ew-contact-us-form .form-control:focus {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .4)
}
.ew-contact-us-form .form-label {
    font-size: 13px;
    font-weight: 500
}
.ew-contact-us-form.ew-has-animation {
    transition: .6s cubic-bezier(.215, .61, .355, 1);
    transition-property: opacity, transform;
    transform: translateX(50px);
    opacity: 0
}
.ew-contact-us-form.ew-has-animation.ew-animate {
    transform: translateX(0);
    opacity: 1
}
.ew-contact-card-1-container {
    margin-top: 30px
}
.ew-contact-card-1 {
    padding: 30px;
    background-color: var(--ewMainColorLight);
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: background-color;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%
}
.ew-contact-card-1:hover {
    background-color: var(--ewMainColorDark)
}
.ew-contact-card-1-icon {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
    padding: 30px;
    display: inline-block;
    font-size: 42px;
    line-height: 42px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: background-color, color
}
.ew-contact-card-1:hover .ew-contact-card-1-icon {
    background-color: var(--ewMainColor);
    color: #fff
}
.ew-contact-card-1-title {
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-contact-card-1:hover .ew-contact-card-1-title {
    color: #fff
}
.ew-contact-card-1-subtitle {
    margin-top: 30px;
    font-size: 14px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-contact-card-1:hover .ew-contact-card-1-subtitle {
    color: #fff
}
.ew-sign-hero-container {
    height: 100%
}
.ew-sign-hero-container .ew-is-light {
    background-color: #fff
}
.ew-sign-hero-fig {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center
}
.ew-sign-hero-fig img {
    width: 30%
}
.ew-sign-hero-form {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center
}
.ew-sign-hero-form>.row {
    width: 100%
}
.ew-sign-hero-form h5 {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -1px
}
.ew-sign-hero-form .form-control {
    border-radius: 30px;
    border: 1px solid var(--ewLightGrayColor);
    color: var(--ewTextColor);
    font-weight: 300
}
.ew-sign-hero-form .form-control:focus {
    box-shadow: none;
    color: var(--ewTextColor);
    border-color: var(--ewDarkGrayColor)
}
.ew-sign-hero-form .form-floating>.form-control {
    padding: 1rem 1.3rem
}
.ew-sign-hero-form .form-floating>.form-control:-webkit-autofill, .ew-sign-hero-form .form-floating>.form-control:focus, .ew-sign-hero-form .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}
.ew-sign-hero-form .form-floating>label {
    padding: 1rem 1.3rem
}
.ew-sign-hero-form .form-floating>span {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: .7
}
.ew-sign-hero-form-cta {
    display: block;
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 20px;
    transition: var(--ewHoverTransition);
    transition-property: background-color
}
.ew-sign-hero-form-cta:hover {
    color: #fff;
    background-color: var(--ewMainColorDark)
}
.ew-sign-hero-form-small {
    font-size: 14px
}
.ew-sign-hero-form-small a {
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-sign-hero-form-small a:hover {
    color: var(--ewMainColorDark)
}
.modal-content {
    border: 0 none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
    border-radius: 30px
}
.modal-header {
    padding: 0;
    border-bottom: 0 none
}
.modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 20px;
    margin: 0;
    z-index: 2;
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.modal-body {
    padding: 40px
}
.modal-title {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -1px
}
.ew-user-modal .modal-title {
    padding: 0 40px
}
.ew-user-modal-fig img {
    height: 120px;
    width: auto
}
.ew-user-modal .form-control {
    border-radius: 30px;
    border: 1px solid var(--ewLightGrayColor);
    color: var(--ewTextColor);
    font-weight: 300
}
.ew-user-modal .form-control:focus {
    box-shadow: none;
    color: var(--ewTextColor);
    border-color: var(--ewDarkGrayColor)
}
.ew-user-modal .form-floating>.form-control {
    padding: 1rem 1.3rem
}
.ew-user-modal .form-floating>.form-control:-webkit-autofill, .ew-user-modal .form-floating>.form-control:focus, .ew-user-modal .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}
.ew-user-modal .form-floating>label {
    padding: 1rem 1.3rem
}
.ew-user-modal .form-floating>span {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    opacity: .7
}
.ew-modal-cta {
    display: block;
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 20px;
    transition: var(--ewHoverTransition);
    transition-property: background-color
}
.ew-modal-cta:hover {
    color: #fff;
    background-color: var(--ewMainColorDark)
}
.ew-modal-small {
    font-size: 14px
}
.ew-modal-small a {
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-modal-small a:hover {
    color: var(--ewMainColorDark)
}
.ew-jobs-card-1-container,
.ew-jobs-card-2-container {
    margin-top: 30px;
}
.ew-jobs-card-8-container,
.ew-jobs-card-9-container {
    margin-top: 5px;
}
.ew-jobs-card-1,
.ew-jobs-card-2,
.ew-jobs-card-3 {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.ew-jobs-card-3 {
    height: auto;
    margin-top: 30px;
}
.ew-jobs-card-1.ew-has-shadow,
.ew-jobs-card-2.ew-has-shadow,
.ew-jobs-card-3.ew-has-shadow {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.04);
}
.ew-jobs-card-1.ew-has-border,
.ew-jobs-card-2.ew-has-border,
.ew-jobs-card-3.ew-has-border {
    border: 1px solid var(--ewLightGrayColor);
}
.ew-jobs-card-2-top {
    display: flex;
    align-items: center;
}
.ew-jobs-card-1-category {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.ew-jobs-card-1-category-icon {
    background-color: var(--ewMainColorLight);
    border-radius: 10px;
    padding: 8px;
    font-size: 14px;
    line-height: 14px;
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color;
}
.ew-jobs-card-1-category:hover .ew-jobs-card-1-category-icon {
    background-color: var(--ewMainColor);
    color: #fff;
}
.ew-jobs-card-1-category-label,
.ew-jobs-card-2-category-label,
.ew-jobs-card-3-category-label {
    padding-left: 10px;
    font-size: 14px;
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color;
}
.ew-jobs-card-2-category-label,
.ew-jobs-card-3-category-label {
    padding-left: 0;
}
.ew-jobs-card-1-category:hover .ew-jobs-card-1-category-label,
.ew-jobs-card-2-category:hover .ew-jobs-card-2-category-label,
.ew-jobs-card-3-category:hover .ew-jobs-card-3-category-label {
    color: var(--ewMainColor);
}
.ew-jobs-card-1-title,
.ew-jobs-card-2-title,
.ew-jobs-card-3-title {
    display: block;
    font-weight: 600;
    color: var(--ewTextColor);
    font-size: 18px;
    margin-top: 30px;
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none;
}
.ew-jobs-card-10-title,
.ew-jobs-card-11-title,
.ew-jobs-card-12-title {
    display: block;
    font-weight: 400;
    color: var(--ewTextColor);
    font-size: 14px;
    margin-top: 0px;
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none;
}
.ew-jobs-card-2-title,
.ew-jobs-card-3-title {
    margin-top: 0;
}
.ew-jobs-card-1-title:hover,
.ew-jobs-card-2-title:hover, 
.ew-jobs-card-3-title:hover {
    color: var(--ewMainColor);
}
.ew-jobs-card-1-details,
.ew-jobs-card-2-details,
.ew-jobs-card-3-details {
    margin-top: 20px;
    display: flex;
    font-size: 14px;
    color: var(--ewTextColor);
}
.ew-jobs-card-2-details,
.ew-jobs-card-3-details {
    margin-top: 10px;
}
.ew-jobs-card-1-location,
.ew-jobs-card-2-location,
.ew-jobs-card-3-location {
    display: block;
    font-weight: 500;
    text-decoration: none;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color;
}
.ew-jobs-card-1-location:hover,
.ew-jobs-card-2-location:hover,
.ew-jobs-card-3-location:hover {
    color: var(--ewMainColor);
}
.ew-jobs-card-1-location > span,
.ew-jobs-card-2-location > span,
.ew-jobs-card-3-location > span {
    margin-right: 7px;
}
.ew-jobs-card-1-type,
.ew-jobs-card-2-type,
.ew-jobs-card-3-type {
    padding-left: 30px;
}
.ew-jobs-card-1-bottom,
.ew-jobs-card-2-bottom {
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: space-between;
}
.ew-jobs-card-2-bottom {
    margin-top: 20px;
}
.ew-jobs-card-1-bottom-left {
    padding-right: 30px;
}
.ew-jobs-card-1-date,
.ew-jobs-card-2-date,
.ew-jobs-card-3-date {
    font-size: 13px;
    color: var(--ewTextColor);
}
.ew-jobs-card-1-company,
.ew-jobs-card-2-company,
.ew-jobs-card-3-company {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color;
    text-decoration: none;
}
.ew-jobs-card-2-company,
.ew-jobs-card-3-company {
    display: unset;
}
.ew-jobs-card-1-company:hover, 
.ew-jobs-card-2-company:hover,
.ew-jobs-card-3-company:hover {
    color: var(--ewMainColor);
}
.ew-jobs-card-1-company-logo, 
.ew-jobs-card-2-company-logo,
.ew-jobs-card-3-company-logo {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.ew-jobs-card-10-company-logo, 
.ew-jobs-card-11-company-logo,
.ew-jobs-card-12-company-logo {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.ew-jobs-card-2-company-logo {
    flex-shrink: 0;
}
.ew-jobs-card-2-info {
    margin-left: 20px;
}
.ew-jobs-card-3-date-company {
    margin-top: 7px;
}
.ew-jobs-card-4 {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    border: 1px solid var(--ewLightGrayColor);
    margin-top: 14px;
    width: 100%;
    transition: var(--ewHoverTransition);
    transition-property: background-color, border-color;
    cursor: pointer;
}
.ew-jobs-card-4.active {
    background-color: var(--ewMainColor);
    border-color: transparent;
}
.ew-jobs-card-4:not(.active):hover {
    background-color: var(--ewMainColorLight);
    border-color: transparent;
}
.ew-jobs-card-4:first-child {
    margin-top: 0;
}
.ew-jobs-card-4-company-logo {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.ew-jobs-card-4.active .ew-jobs-card-4-company-logo {
    border: 2px solid var(--ewMainColorLight);
}
.ew-jobs-card-4-company-top {
    display: flex;
    align-items: center;
}
.ew-jobs-card-4-info {
    padding-left: 10px;
    flex: 1;
}
.ew-jobs-card-4-title {
    display: block;
    font-weight: 600;
    text-decoration: none;
    color: var(--ewTextColor);
    line-height: 1.2;
    font-size: 15px;
    transition: var(--ewHoverTransition);
    transition-property: color;
}
.ew-jobs-card-4.active .ew-jobs-card-4-title {
    color: #fff;
}
.ew-jobs-card-4:not(.active):hover .ew-jobs-card-4-title {
    color: var(--ewMainColor);
}
.ew-jobs-card-4-details {
    display: flex;
    font-size: 13px;
    color: var(--ewTextColor);
    margin-top: 5px;
}
.ew-jobs-card-4-location {
    display: block;
    font-weight: 500;
    text-decoration: none;
    color: var(--ewTextColor);
}
.ew-jobs-card-4.active .ew-jobs-card-4-location {
    color: #fff;
}
.ew-jobs-card-4-location > span {
    margin-right: 7px;
}
.ew-jobs-card-4-type {
    padding-left: 30px;
    color: var(--ewTextColor);
}
.ew-jobs-card-4.active .ew-jobs-card-4-type {
    color: #fff;
}
.ew-jobs-card-4-company-bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ew-jobs-card-4-category-label {
    font-size: 13px;
    color: var(--ewTextColor);
}
.ew-jobs-card-4.active .ew-jobs-card-4-category-label {
    color: #fff;
}
.ew-jobs-card-4-date {
    display: block;
    font-size: 13px;
    color: var(--ewTextColor);
}
.ew-jobs-card-4.active .ew-jobs-card-4-date {
    color: #fff;
}
.ew-jobs-card-4-company {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ewTextColor);
}
.ew-jobs-card-4.active .ew-jobs-card-4-company {
    color: #fff;
}
.ew-jobs-tab-content .tab-pane {
    border: 1px solid var(--ewLightGrayColor);
    border-radius: 30px;
    background-color: #fff;
}
.ew-jobs-tab-pane-cover {
    height: 260px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin: -1px -1px 0 -1px;
}
.ew-jobs-tab-pane-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 3px solid #fff;
    margin-top: -50px;
    margin-left: 30px;
}
.ew-jobs-tab-pane-content {
    padding: 30px;
}
.ew-jobs-tab-pane-content h3 {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
}
.ew-jobs-tab-pane-company-location {
    font-size: 15px;
}
.ew-jobs-tab-pane-company,
.ew-jobs-tab-pane-location {
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color;
}
.ew-jobs-tab-pane-location {
    font-weight: 300;
}
.ew-jobs-tab-pane-options {
    display: flex;
    align-items: center;
}
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-save-btn,
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-share-btn {
    border: 1px solid var(--ewTextColor);
    color: var(--ewTextColor);
    text-align: center;
    height: 46px;
    width: 46px;
    border-radius: 23px;
    font-size: 15px;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color;
}
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-save-btn:hover,
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-share-btn:hover {
    color: #fff;
    background-color: var(--ewTextColor);
}
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-share-btn::after {
    content: none;
}
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-apply-btn {
    height: 46px;
    background-color: var(--ewMainColor);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color;
    padding: .375rem 1rem;
}
.ew-jobs-tab-pane-options .ew-jobs-tab-pane-apply-btn:hover {
    color: #fff;
    background-color: var(--ewMainColorDark);
}
.ew-jobs-tab-pane-options .dropdown-menu {
    margin-top: 7px !important;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.10);
}
.ew-jobs-tab-pane-options ul.dropdown-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    transition: var(--ewHoverTransition);
    transition-property: color, opacity;
    padding: 7px 20px;
    color: var(--ewTextColor);
}
.ew-jobs-tab-pane-options ul.dropdown-menu > li > a:hover,
.ew-jobs-tab-pane-options ul.dropdown-menu > li > a:focus {
    background-color: transparent;
    opacity: var(--ewHoverOpacity);
}
.ew-jobs-tab-pane-date {
    font-size: 14px;
}
.ew-jobs-tab-pane-category {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.ew-jobs-tab-pane-category-icon {
    background-color: var(--ewMainColorLight);
    border-radius: 10px;
    padding: 8px;
    font-size: 14px;
    line-height: 14px;
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color, background-color;
}
.ew-jobs-tab-pane-category:hover .ew-jobs-tab-pane-category-icon {
    background-color: var(--ewMainColor);
    color: #fff;
}
.ew-jobs-tab-pane-category-label {
    padding-left: 10px;
    font-size: 14px;
    color: var(--ewTextColor);
    text-decoration: none;
    transition: var(--ewHoverTransition);
    transition-property: color;
}
.ew-jobs-tab-pane-category:hover .ew-jobs-tab-pane-category-label {
    color: var(--ewMainColor);
}
.ew-jobs-tab-pane-content-details {
    font-size: 14px;
}
.ew-jobs-tab-pane-content-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.ew-jobs-tab-pane-content-details p,
.ew-jobs-tab-pane-content-details li {
    line-height: 1.7;
}
.ew-jobs-tab-pane-content-details li {
    margin-bottom: 10px;
}
.ew-jobs-tab-pane-content-info-label {
    font-size: 12px;
}
.ew-jobs-tab-pane-content-info-data {
    font-weight: 500;
    font-size: 15px;
}
.ew-jobs-tab-pane-share-dropdown .dropdown-item > span {
    width: 20px;
    text-align: center;
}
.btn-close:focus {
    box-shadow: none
}
.ew-main-footer {
    font-size: 14px
}
.ew-footer-logo>a {
    color: var(--ewTextColor);
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    transition: var(--ewHoverTransition);
    transition-property: opacity
}
.ew-footer-logo>a:hover {
    opacity: var(--ewHoverOpacity)
}
.ew-footer-phone {
    font-size: 22px;
    color: var(--ewMainColor);
    font-weight: 500
}
.ew-main-footer h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px
}
.ew-footer-list {
    padding-left: 0;
    list-style: none
}
.ew-footer-list>li {
    margin: .5rem 0
}
.ew-footer-list>li>a {
    color: var(--ewTextColor);
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-footer-list>li>a:hover {
    color: var(--ewMainColor)
}
.ew-footer-social ul {
    display: flex;
    margin-bottom: 0
}
.ew-footer-social ul li {
    margin-left: 34px
}
.ew-footer-social ul li a {
    color: var(--ewTextColor);
    font-size: 20px;
    opacity: .7;
    transition: var(--ewHoverTransition);
    transition-property: color
}
.ew-footer-social ul li a:hover {
    color: var(--ewMainColor)
}
@media (min-width:576px) {
    .ew-container {
        max-width: 540px
    }
}
@media (min-width:768px) {
    .ew-container {
        max-width: 720px
    }
}
@media (min-width:992px) {
    .ew-container {
        max-width: 960px
    }
}
@media (min-width:1200px) {
    .ew-container {
        max-width: 1140px
    }
}
@media (min-width:1400px) {
    .ew-container {
        max-width: 1320px
    }
}
@media (min-width:1680px) {
    .ew-container {
        max-width: 1600px
    }
}
@media screen and (max-width:1736px) {
    .ew-hero-boxed-content {
        margin-left: 0;
        margin-right: 0
    }
}
@media screen and (max-width:1679px) {
    .ew-hero-boxed-content {
        margin-left: -80px;
        margin-right: -80px
    }
}
@media screen and (max-width:1599px) {
    .ew-pl-80 {
        padding-left: 0
    }
    .ew-hero h1 {
        font-size: 60px;
        line-height: 72px;
        letter-spacing: -2px
    }
    .ew-hero-card, .ew-hero-card-light {
        height: 46vh;
        min-height: 460px
    }
    .ew-hero-right-bg-card {
        width: 56%
    }
}
@media screen and (max-width:1456px) {
    .ew-hero-boxed-content {
        margin-left: 0;
        margin-right: 0;
        padding: 60px
    }
}
@media screen and (max-width:1399px) {
    .ew-search-container {
        width: 50%
    }
}
@media screen and (max-width:1199px) {
    .ew-hero-right-bg-card {
        display: none
    }
    .ew-user-nav-trigger.ew-on-light {
        color: #fff
        border: 1px solid var(#86bcd4)
    }
    .ew-user-nav-trigger:hover {
        background-color: #fff
        color: #000
    }
    .ew-hero {
        height: auto !important;
        min-height: auto
    }
    .ew-hero-caption {
        position: relative;
        top: auto;
        transform: none;
        margin-top: 140px
    }
    .ew-hero-bg .ew-hero-caption {
        padding-bottom: 60px
    }
    .ew-search-container {
        width: 100%;
        order: 3
    }
    .ew-blog-hero h1, .ew-section-h2 {
        font-size: 36px;
        letter-spacing: -1px
    }
    .ew-posts-card-2-fig {
        width: 260px
    }
    .ew-posts-card-2-fig .ew-cover {
        width: 260px
    }
    .ew-page-image-hero h1 {
        font-size: 46px
    }
}
@media screen and (max-width:991px) {
    .ew-hero h1 {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -2px
    }
    .ew-blog-hero h1, .ew-section-h2 {
        font-size: calc(1.325rem + .9vw);
        letter-spacing: -1px
    }
    .ew-promo-img {
        border-radius: 30px;
        padding-left: 40px
    }
    .ew-promo-img.pb-100 {
        padding-bottom: 60px
    }
    .ew-promo-img.pt-100 {
        padding-top: 60px
    }
    .ew-single-job-content h1 {
        font-size: 28px
    }
    .ew-dashboard-content {
        margin: 80px .75rem 0 .75rem
    }
    .ew-dashboard-content-details {
        margin-right: 0
    }
    .ew-dashboard-content-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0 .75rem;
        height: 80px;
        background-color: var(--ewMainColorLight);
        z-index: 1030
    }
    .ew-dashboard-content-header.ew-is-candidate {
        background-color: var(--ewSecondaryColorLight)
    }
    .ew-dashboard-content-details h1 {
        font-size: 28px;
        letter-spacing: -1px
    }
    .ew-posts-card-2 {
        flex-direction: column;
        height: auto
    }
    .ew-posts-card-2-fig, .ew-posts-card-2-fig .ew-cover {
        width: 100%;
        margin: 0
    }
    .ew-hero-subtitle {
        font-size: 16px
    }
    .ew-single-blog-content h2 {
        font-size: 20px
    }
    .ew-page-image-hero h1 {
        font-size: calc(1.625rem + .9vw);
        letter-spacing: -1px
    }
    .ew-footer-social ul li {
        margin-left: 0;
        margin-right: 34px
    }
}
@media screen and (max-width:767px) {
    .mt-100 {
        margin-top: 60px
	}
    .ew-hero-boxed-content {
        padding: 40px;
        border-radius: 30px
    }
    .ew-hero h1 {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px
    }
    .ew-hero-caption {
        margin-top: 120px
    }
    .ew-jobs-card-3 {
        padding: 20px
    }
    .ew-single-job-cover {
        height: 300px
    }
    .ew-single-job-cover-logo {
        width: 80px;
        height: 80px
    }
    .ew-single-company-hero-logo {
        width: 80px;
        height: 80px
    }
    .ew-page-image-hero, .ew-single-company-hero {
        height: 380px
    }
    .ew-single-company-hero-title h1 {
        font-size: 28px
    }
    .ew-single-company-content h2 {
        font-size: 22px
    }
    .ew-dashboard-content-details h2 {
        font-size: 22px
    }
    .ew-dashboard-content-details {
        padding: 30px
    }
    .ew-single-candidate-hero {
        height: 380px
    }
    .ew-single-candidate-hero-name h1 {
        font-size: 28px
    }
    .ew-single-candidate-content h2 {
        font-size: 22px
    }
    .pb-100 {
        padding-bottom: 60px
    }
    .pt-100 {
        padding-top: 30px
    }
}
@media screen and (max-width:575px) {
    .ew-logo>a {
        font-size: 20px
    }
	.ew-footer-logo {
		display: none;
	}
	.ew-footer-section {
		display: none;
		}
	.mb-4 {
		margin-bottom: 0.1rem!important;
	}
	.ew-hero-searches-container {
		width: 95%;
	}
	.ew-hero-form-round {
		width: 95%;
	}
	.ew-hero-form-round form button {
		display: none;
	}
    .ew-nav-trigger {
        flex: 0 !important
    }
    .ew-hero-form-round {
        padding: 20px;
		height: 60px;
    }
    .ew-hero-form-round form {
        height: auto
    }
	.form-control {
		padding: 0rem 0rem;
	}
    .ew-hero-form-round form .form-control {
        padding-left: 10px;
        padding-right: 0
    }
    .ew-hero-form-round form button {
        width: 100%
    }
    .ew-header-right {
        display: none
    }
    .ew-hero-boxed-content {
        padding: 20px
    }
    .ew-dashboard-content-details {
        padding: 20px
    }
    .ew-nav-trigger {
        margin-left: 20px
    }
    .ew-user-nav .ew-nav-btn {
        display: none
    }
    .ew-hero-form-round {
        border-radius: 30px
    }
    .ew-candidates-list-top h2, .ew-companies-list-top h2, .ew-jobs-list-top h2 {
        font-size: 20px
    }
    .ew-jobs-card-1, .ew-jobs-card-2, .ew-jobs-card-3 {
        padding: 20px
    }
    .ew-jobs-card-1-company-logo, .ew-jobs-card-2-company-logo, .ew-jobs-card-3-company-logo {
        width: 60px;
        height: 60px
    }
    .ew-promo-img {
        padding-left: 40px;
        padding-right: 40px
    }
    .ew-promo-img.pt-100 {
        padding-top: 40px
    }
    .ew-promo-img.pb-100 {
        padding-bottom: 40px
    }
    .ew-companies-card-1-company-logo {
        width: 60px;
        height: 60px
    }
    .ew-posts-card-1-content {
        padding: 20px 20px 0
    }
    .ew-posts-card-1-cta {
        padding: 0 20px 20px
    }
    .ew-jobs-card-2-top {
        display: block
    }
    .ew-jobs-card-4 {
        padding: 20px
    }
    .ew-jobs-card-4-company-top {
        display: block
    }
    .ew-single-job-cover-logo {
        margin-top: -40px;
        margin-left: 40px
    }
    .ew-single-job-content h1 {
        font-size: 22px
    }
    .ew-single-company-hero-content {
        display: block
    }
    .ew-single-company-hero-title {
        margin-left: 0;
        margin-top: 10px
    }
    .ew-single-company-hero-caption {
        bottom: 40px
    }
    .ew-single-company-side-panel {
        padding: 20px
    }
    .ew-single-job-side-panel {
        padding: 20px
    }
    .ew-single-candidate-hero-content {
        display: block
    }
    .ew-single-candidate-hero-name {
        margin-left: 0;
        margin-top: 10px
    }
    .ew-single-candidate-hero-caption {
        bottom: 40px
    }
    .ew-single-candidate-side-panel {
        padding: 20px
    }
    .ew-single-candidate-hero.ew-boxed .ew-single-candidate-hero-caption {
        right: 30px
    }
    .ew-hero h1 {
        font-size: 32px
    }
	.ew-footer-logo
		display: none
	}
}