/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.bunny.net/poppins/files/poppins-latin-700-normal.woff2) format('woff2'), 
        url(https://fonts.bunny.net/poppins/files/poppins-latin-700-normal.woff) format('woff'); 
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlEw.woff) format('woff');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlEw.woff) format('woff');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedA.woff) format('woff');
}
  
:root {
    --primary-color: #f3732b;
    --text-color: #141e48;
    --secondary-color: #141e48;
    --primary-gradient: linear-gradient(125deg,#f3732b,#fabc2a);
    --primary-gradient-invert: linear-gradient(90deg,#fabc2a 0%,#f3732b 100%);
    --blue-gradient: linear-gradient(to bottom,#e5fcff 0%,#ffffff 100%);
    --purple-gradient: linear-gradient(to bottom,#e5e8ff 0%,#ffffff 100%);
}

a {
    transition: all .2s;
}

h1 {
    font-family: 'Poppins';
    font-size: 50px;
    line-height: 60px;
    font-weight: 500;
}

h2 {
    font-family: 'Poppins';
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
}
h3 {
    font-family: 'Poppins';
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
}
h4 {
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}
h5 {
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}
p, li, label {
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, p, a, li, label {
    color: var(--text-color);
    letter-spacing: 0.2px;
}
ul.custom-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 5px;
}
ul.custom-list li::before {
    content: "\f00c";
    color: var(--primary-color);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    left: 0;
    position: absolute;
}
.text-primary {
    color: var(--primary-color);
}

.btn-primary,
.btn-secondary {
    background: var(--primary-color);
    background: var(--primary-gradient);
    padding: 10px 25px;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn-secondary {
    background: var(--text-color);
    color: white;
}
.btn-primary i {
    color: var(--text-color);
    margin-left: 15px;
    margin-right: -15px;
}

.btn-primary:hover {
    opacity: .87;
}

.btn-large {
    padding: 15px 35px;
}

.bg-blue,
.bg-purple,
.bg-orange,
.bg-default,
.bg-mapdot,
.bg-footer,
.cta-footer {
    padding-left: 25px;
    padding-right: 25px;
}

.bg-purple {
    background: var(--purple-gradient);
}
.bg-blue {
    background: var(--blue-gradient);
}
.bg-orange {
    background: var(--primary-gradient);
}
.bg-default {
    background-color: #ffffff;
}
.bg-mapdot {
    position: relative;
}
.bg-mapdot:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/images/map5.svg);
    background-position: center top 15%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    background-size: cover;
    opacity: 0.6;
    z-index: 0;
}

header {
    padding: 20px 0;
}
header .sf-menu .menu-item a {
    font-size: 14px;
}
header .sf-menu .menu-item a .menu-title-text {
    position: relative;
}
header .sf-menu .menu-item a .menu-title-text::after {
    transition: all .35s cubic-bezier(.52,.01,.16,1);
    width: 100%;
    bottom: -6px;
    transform-origin: 0 0;
    transform: scaleX(0);
    backface-visibility: hidden;
    padding-bottom: inherit;
    border-top: 2px solid var(--primary-color);
    content: "";
    position: absolute;
    display: block;
}
header .sf-menu .menu-item a:hover .menu-title-text::after {
    transform: scaleX(1);
    transform-origin: 0 0;
}
header .logo img {
    width: 240px;
}

/* Job Card */
.job-card-section .fas {
    color: var(--primary-color);
    font-size: 24px;
    margin: -2px 0 0 10px;
}
.job-card-section .job-card {
  width: 100%;
}
.job-card {
    padding: 35px;
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: 6px;
}
.job-card i {
    width: 30px;
    margin-bottom: 10px;
}
.job-card .job-description {
    margin: 5px 0 0;
}

/* Service Card */
.service-cards .box-bg {
    text-align: center;
    position: relative;
    padding: 35px 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(21, 31, 96, 0.3);
}
.service-cards .box-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    background-image: var(--primary-gradient);
    transition: all .35s cubic-bezier(.52,.01,.16,1);
}
.service-cards .box-bg:hover::before {
    opacity: 1;
}
.service-cards .box-bg i {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 0 auto 25px;
    position: relative;
    font-size: 36px;
}
.service-cards .box-bg h5 {
    color: #444;
    position: relative;
}
.service-cards .box-bg:hover i {
    background: #fff;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-cards .box-bg:hover h5 {
    color: #fff;
}

/* Footer */
.cta-footer {
    margin-bottom: -200px;
    position: relative;
}
.cta-footer .container {
    position: relative;
}
.cta-footer .bg-orange {
    padding: 70px 75px;
    background: var(--primary-gradient-invert);
    border-radius: 6px;
}
.cta-footer + .bg-footer {
    margin-top: -200px;
    padding-top: 340px;
}
.bg-footer {
    background-color: var(--secondary-color);
    z-index: 0;
}
.bg-footer img {
    max-width: 260px;
    width: 100%;
    margin-bottom: 20px;
    filter: invert(1);
}
.bg-footer .socials a {
    background-color: var(--primary-color);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    padding-top: 15px;
    margin: 20px 10px 0 0;
}
.bg-footer .socials a i {
    font-size: 22px;
}
.bg-footer h4,
.bg-footer p,
.bg-footer a {
    color: #ffffff;
}
.bg-footer a {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 5px;
}
.bg-footer .privacy p,
.bg-footer .privacy a {
    font-size: 14px;
}

/* Running Numbers */
.running-numbers .number {
    font-size: 62px;
    color: var(--primary-color);
}

.product-cards .card {
    padding: 35px;
    border: 3px solid #22094c;
    border-radius: 15px;
}

/* Timeline */
.timeline {
    position: relative;
}
.timeline:not(.timeline--horizontal):before {
    background-color: var(--secondary-color);
    bottom: 0;
    content: "";
    left: 50%;
    margin-left: -2px;
    position: absolute;
    top: 0;
    width: 4px;
    z-index: 1;
}
.timeline__item {
    font-size: 16px;
    font-size: 1rem;
    padding: 0.625rem 2.5rem 0.625rem 0;
    position: relative;
    width: 50%;
    z-index: 2;
}
.timeline__item:after {
    background-color: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 20px;
    position: absolute;
    right: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 20px;
    z-index: 1;
}
.timeline__item--left {
    left: 0;
}
.timeline__item--right {
    left: 50%;
    padding: 0.625rem 0 0.625rem 2.5rem;
}
.timeline__item--right:after {
    left: -11px;
}
.timeline__item--right .timeline__content:before {
    border-bottom: 11px solid transparent;
    border-right: 12px solid #ccc;
    border-left: none;
    border-top: 11px solid transparent;
    left: -12px;
}
.timeline__item--right .timeline__content:after {
    border-bottom: 10px solid transparent;
    border-right: 12px solid #fff;
    border-left: none;
    border-top: 10px solid transparent;
    left: -10px;
}
.timeline__content {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #333;
    display: block;
    padding: 1.25rem;
    position: relative;
}
.timeline__content:after,
.timeline__content:before {
    content: "";
    height: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 0;
}
.timeline__content:before {
    border-bottom: 11px solid transparent;
    border-left: 12px solid #ccc;
    border-top: 11px solid transparent;
    right: -12px;
    z-index: 1;
}
.timeline__content:after {
    border-bottom: 9px solid transparent;
    border-left: 11px solid #fff;
    border-top: 9px solid transparent;
    right: -11px;
    z-index: 2;
}
.timeline__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
}
.timeline__content p {
    font-size: 14px;
    margin-bottom: 10px;
}
.timeline--mobile {
    padding: 0;
}
.timeline--mobile:before {
    left: 10px !important;
    margin: 0 !important;
}
.timeline--mobile .timeline__item {
    left: 0;
    padding-left: 40px;
    padding-right: 0;
    width: 100%;
}
.timeline--mobile .timeline__item:after {
    left: 2px;
    margin: 0;
}
.timeline--mobile .timeline__item .timeline__content:before {
    left: -12px;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #ccc;
    border-left: none;
    border-top: 12px solid transparent;
}
.timeline--mobile .timeline__item .timeline__content:after {
    left: -10px;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    border-left: none;
    border-top: 10px solid transparent;
}
.jobseekers ul.custom-list {
    width: 300px;
}
.jobseekers ul.custom-list li {
    margin-bottom: 10px;
}

.jobseekers .jobseekers-cards .card {
    background-color: #e5e8ff;
    padding: 40px 50px;
    width: 480px;
    border-radius: 15px;
    position: relative;
}
.jobseekers .jobseekers-cards .card::before {
    content: '';
    position: absolute;
}
.jobseekers .jobseekers-cards .card.number-1::before,
.jobseekers .jobseekers-cards .card.number-2::before {
    border-right: 2px dashed #ea7c30;
    border-top: 2px dashed #ea7c30;
    width: 50px;
    height: 230px;
    top: calc(100% + 2px);
    left: calc(100% + 0px);
    transform: translateY(-80%);
}
.jobseekers .jobseekers-cards .card.number-2::before {
    border-left: 2px dashed #ea7c30;
    border-right: 0;
    left: auto;
    right: calc(100% + 0px);
}
.jobseekers .jobseekers-cards .card.number-3::before,
.jobseekers .jobseekers-cards .card.number-4::before {
    border-top: 2px dashed #ea7c30;
    width: 30px;
    height: 230px;
    top: calc(100% + 2px);
    left: calc(100% + 0px);
    transform: translateY(-80%);
}
.jobseekers .jobseekers-cards .card.number-4::before {
    left: auto;
    right: calc(100% + 0px);
}
.jobseekers .jobseekers-cards .card.number-5::before,
.jobseekers .jobseekers-cards .card.number-6::before {
    border-right: 2px dashed #ea7c30;
    border-bottom: 2px dashed #ea7c30;
    width: 50px;
    height: 210px;
    bottom: calc(0% + 2px);
    left: calc(100% + 0px);
    transform: translateY(-80%);
}
.jobseekers .jobseekers-cards .card.number-6::before {
    border-left: 2px dashed #ea7c30;
    border-bottom: 2px dashed #ea7c30;
    border-right: 0;
    left: auto;
    right: calc(100% + 0px);
    bottom: calc(0% + 2px);
}
.jobseekers .jobseekers-cards .card.left {
    text-align: right;
}
.jobseekers .jobseekers-cards.small .card {
    width: 380px;
}

.stoke-letter {
    color: var(--primary-color);
    -webkit-text-stroke-width: 0.015em;
    -webkit-text-stroke-color: inherit;
    -webkit-text-fill-color: transparent;
    font-size: 120px;
    line-height: 1.1em;
}

.contact .contact-box {
    padding: 50px;
    background-color: white;
    border-radius: 15px;
}
.contact .contact-box label {
    font-size: 16px;
}
.contact .contact-box textarea {
    height: 120px;
}

/* Animate */
.liftUp {
    opacity: 0;
    transition: all .5s;
    transform: translate3d(0, 50%, 0);
}
.liftUp.animated {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.fadeIn {
    opacity: 0;
    transition: all .5s;
}
.fadeIn.animated {
    opacity: 1;
}

@media (max-width: 1280px) {
    .jobseekers .jobseekers-cards .card {
        width: 400px;
        padding: 40px;
    }
    .jobseekers .jobseekers-cards.small .card {
        width: 300px;
    }
}

@media (max-width: 1040px) {
    .jobseekers .jobseekers-cards .card {
        width: 320px;
        padding: 30px;
    }
    .jobseekers .jobseekers-cards.small .card {
        width: 280px;
    }
    .stoke-letter {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 35px;
        line-height: 42px;
    }
    h2 {
        font-size: 27px;
        line-height: 34px;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
    h4 {
        font-size: 22px;
        line-height: 28px;
    }
    .service-cards .box-bg {
        padding: 35px 20px;
    }
    .cta-footer .bg-orange {
        padding: 60px;
    }
    .cta-footer + .bg-footer {
        margin-top: -150px;
        padding: 250px 0 30px;
    }
    .jobseekers .jobseekers-cards .card::before,
    .jobseekers .jobseekers-cards .card::after {
        display: none;
    }

    .jobseekers .jobseekers-cards.small .card,
    .jobseekers .jobseekers-cards .card {
        width: 100%;
        padding: 30px;
    }

    .col-image {
        display: none;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 38px;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
    h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .running-numbers .number {
        font-size: 48px;
    }
    .text-small {
        font-size: 18px;
        line-height: 24px;
    }
    .cta-footer .bg-orange {
        padding: 30px;
    }

    .timeline__item--right, 
    .timeline__item--left {
        left: 0%;
        padding: 0.625rem 0 0.625rem 2.5rem;
        width: 100%;
    }
    .timeline__item--left:after {
        left: -11px;
    }
    .timeline__item--left .timeline__content:before {
        border-bottom: 11px solid transparent;
        border-right: 12px solid #ccc;
        border-left: none;
        border-top: 11px solid transparent;
        left: -12px;
    }
    .timeline__item--left .timeline__content:after {
        border-bottom: 10px solid transparent;
        border-right: 12px solid #fff;
        border-left: none;
        border-top: 10px solid transparent;
        left: -10px;
    }
    .timeline:not(.timeline--horizontal):before {
        left: 0;
    }
}


  .form-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
  }

  input[type="search"], input[type="text"], select {
    background-color: rgba(0,0,0,.04);
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    line-height: 24px;
    padding: 10px;
    margin-bottom: 25px;
  }

  .jobs-available {
    border-bottom: 1px solid #eeeeee;
    font-size: 28px;
    line-height: 38px;
    color: #141e48;
    margin-bottom: 20px;
  }

  .job-card {
    width: 48%;
    border: 2px solid rgba(0,0,0,.04);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-family: 'Poppins';
  }

  .job-card h3{
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
  }

  .job-card .job-details{
    margin-bottom: 1.5em;
    margin-top: 8px;
    font-size:18px;
    font-weight:400;
    color: #141e48;
  }

  .job-card .job-description{
    font-size:18px;
    font-weight:400;
    color: #141e48;
  }

  .category {
    color: #f3732b;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: bottom;
    width: 0;
    transition: width 1s ease;
  }

  .custom-select-container {
    position: relative;
    font-family: Arial, sans-serif;
}

.job_description {
  padding-right: 40px;
}
.job_description h2 {
  margin: 30px 0 20px;
}
.job_description p {
  margin: 0 0 20px;
}
.job_description p + ul {
  margin-top: -10px;
}
.job_description ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.job_application {
  border: 1px solid #ddd;
  padding: 30px 30px 15px;
}

.job_application .job-type,
.job_application .job-salary,
.job_application .job-location,
.job_application .job-category {
  display: flex;
  flex-direction: row;
  align-items: start;
  margin-bottom: 15px;
}

.job_application .icon {
  margin-top: 5px;
}
.single-job-intro {
  padding-bottom: 80px;
}
.single-job .apply-button {
  width: 100%;
  font-size: 20px;
  text-align: center;
  margin: 30px auto;
}

.custom-select {
    position: relative;
    cursor: pointer;
    background-color: rgba(0,0,0,.04);
    border-radius: 5px;
    font-size: 14px;
    color: #9299A5;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:25px;
}

.custom-select:focus {
    outline: none;
    border-color: #555;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #fff;
    border-top: none;
    border-radius:5px;
    margin-top:10px;
    border: 1px solid  rgba(0,0,0,.04);

}

.custom-options::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid  rgba(0,0,0,.04);
    transform: translateY(1px);
}

.custom-options::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 21px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    transform: translateY(2px);
}
.custom-options li {
    padding: 10px;
    list-style: none;
    cursor: pointer;
    color: #9299A5;
    font-size: 14px;
}

.custom-options li:hover {
    background-color: #f2f2f2;
}

.caret {
    transition: transform 0.3s ease;
}

.caret.up {
    transform: rotate(180deg);
}

.jobs-cta{
    font-size:18px;
    color: #141e48;
}

.jobs-cta a{
    color:#f3732b;
    margin: 0 6px;
}