.career_page {
  padding-top: 15rem;
}
.career_page a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  padding-top: 2rem;
  display: block;
}
.career_page a:hover {
  color: var(--secondary-color);
}
.career_page .human-img {
  width: 100%;
}
.career_page .circle-svg {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 57%;
  background: rgba(22, 23, 27, 0.4196078431);
  color: var(--white);
  border-radius: 50%;
  padding: 0.5rem;
  left: -11%;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.career_page .circle-svg svg {
  fill: currentColor;
  height: auto;
  max-width: 66vmin;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.career_page .circle-svg svg text {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.career_page .circle-svg .circle-logo {
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.highway-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-color: #EDEEF0;
}
.highway-slider .highway-barrier {
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
  background: #EDEEF0;
}
.highway-slider .highway-barrier::before, .highway-slider .highway-barrier::after {
  content: " ";
  position: absolute;
  z-index: 1;
  width: 180px;
  height: 100%;
}
.highway-slider .highway-barrier::before {
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#edeef0), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #edeef0 0%, rgba(255, 255, 255, 0) 100%);
}
.highway-slider .highway-barrier::after {
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#edeef0), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #edeef0 0%, rgba(255, 255, 255, 0) 100%);
}
.highway-slider ul.highway-lane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 3840px;
}
.highway-slider ul.highway-lane li.highway-car {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EDEEF0;
  color: #343434;
  width: 180px;
  -webkit-animation: translateinfinite 25s linear infinite;
          animation: translateinfinite 25s linear infinite;
}
.highway-slider .card {
  border: 0;
  margin-top: 5rem;
  height: 100%;
  background-color: transparent;
}
.highway-slider .card span {
  color: var(--secondary-color);
  font-size: 14px;
}
.highway-slider .card h3 {
  padding-top: 1rem;
  font-weight: 600;
  font-size: 20px;
}

@-webkit-keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(-2160px);
            transform: translateX(-2160px);
  }
}

@keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(-2160px);
            transform: translateX(-2160px);
  }
}
.location_section {
  padding-bottom: 0;
}
.location_section .location-info {
  padding-top: 2rem;
}
.location_section .location-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0 0 0 2rem;
}
.location_section .location-info ul li {
  list-style-type: disc;
}
.location_section .location-info h6 {
  font-size: 14px;
  font-weight: 600;
}
.location_section .location-info p {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.job_section .card {
  border: 0;
}
.job_section .card:hover a {
  color: var(--secondary-color);
}
.job_section a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  padding-top: 2rem;
  display: block;
}
.job_section h3 {
  margin-top: 5rem;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 769.99px) {
  .career-img {
    float: right;
  }
  .career_page .circle-svg {
    top: 41%;
    left: auto;
    right: 18rem;
  }
  .highway-slider .highway-barrier::before,
.highway-slider .highway-barrier::after {
    width: 50px;
  }
  .highway-slider .highway-barrier {
    padding: 0;
  }
  .career_page .human-img {
    height: 300px;
    width: auto;
    position: relative;
  }
  #location {
    height: 250px;
  }
}
@media (min-width: 767px) and (max-width: 991.99px) {
  .highway-slider .highway-barrier {
    padding: 0;
  }
  .location_section {
    padding-bottom: 0 !important;
  }
  .career_page .circle-svg {
    left: -20%;
    top: 43%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .location_section {
    padding-bottom: 0 !important;
  }
}