/*====================================================== Home Page Styles =========================================================================================*/
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 0.2rem;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
}

.header__wraper {
  background-color: #F2F6FD;
}

.form__wraper {
  box-shadow: 0px 4px 30px rgba(28, 161, 223, 0.24);
  max-width: 1080px;
}
.form__wraper .form-control, .form__wraper .form-select {
  font-size: 1rem;
}
.form__wraper .form-control::placeholder, .form__wraper .form-select::placeholder {
  color: var(--black);
  opacity: 1;
}

@media (max-width: 991px) {
  .form__wraper .submit__box {
    width: 100%;
  }
  .form__wraper .row > div {
    border-bottom: 1px solid #E6E7E8;
    padding-bottom: 0.875rem;
  }
}
@media (max-width: 575px) {
  .mobile__header {
    min-height: 100vh;
  }
  .mobile__header .main__thumbnail {
    height: 55vh;
  }
  .mobile__header .btns__box {
    background: linear-gradient(180deg, rgba(7, 17, 43, 0) 6.43%, #07112c 76.61%);
  }
  .mobile__header .btns__box .btn-app {
    background-color: #f05537;
    border-color: #f05537;
  }
  .mobile__header .btns__box .btn-app .animate_span {
    visibility: hidden;
    opacity: 0;
    background-color: unset;
    -webkit-animation: floatingAnimation 1s linear 1.5s forwards;
    -moz-animation: floatingAnimation 1s linear 1.5s forwards;
    animation: floatingAnimation 1s linear 1.5s forwards;
    position: relative;
    top: -4px;
    left: 12px;
  }
  .mobile__header .btns__box .btn-app .animate_span span {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    margin-left: -6px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -webkit-animation: animateSpan2 2s infinite;
    -moz-animation: animateSpan2 2s infinite;
    animation: animateSpan2 2s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mobile__header .btns__box .btn-app .animate_span span:first-of-type {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    animation-delay: 0s;
  }
  .mobile__header .btns__box .btn-app .animate_span span:nth-of-type(2) {
    left: 8px;
    -webkit-animation-delay: 0.15s;
    -moz-animation-delay: 0.15s;
    animation-delay: 0.15s;
  }
  .mobile__header .btns__box .btn-app .animate_span span:nth-of-type(3) {
    left: 16px;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  @-webkit-keyframes animateSpan2 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @-moz-keyframes animateSpan2 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes animateSpan2 {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @-webkit-keyframes floatingAnimation {
    0%, 10%, 20% {
      visibility: hidden;
      opacity: 0;
    }
    40%, 50%, 60%, 70%, 80% {
      opacity: 0;
      visibility: hidden;
    }
    to {
      visibility: visible;
      opacity: 1;
    }
  }
  @-moz-keyframes floatingAnimation {
    0%, 10%, 20% {
      visibility: hidden;
      opacity: 0;
    }
    40%, 50%, 60%, 70%, 80% {
      opacity: 0;
      visibility: hidden;
    }
    to {
      visibility: visible;
      opacity: 1;
    }
  }
  @keyframes floatingAnimation {
    0%, 10%, 20% {
      visibility: hidden;
      opacity: 0;
    }
    40%, 50%, 60%, 70%, 80% {
      opacity: 0;
      visibility: hidden;
    }
    to {
      visibility: visible;
      opacity: 1;
    }
  }
}
.company_logo_card {
  border: 1px solid #C8D5F8;
  border-radius: 0.35rem;
  padding: 0.5rem;
}
.company_logo_card img {
  height: 3rem;
}

.companySlider .owl-item {
  padding: 1px;
}

.job__card {
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #E7F4FF;
  line-height: 1.12;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 500;
}
.job__card .title {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.job__card:hover, .job__card:focus, .job__card:active {
  background-color: #E6E7E8;
  color: var(--brand);
}

@media (max-width: 575px) {
  .jobs__row__parent {
    overflow-x: auto;
  }
  .jobs__row {
    flex-direction: row;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
  }
  .jobs__row > div {
    width: 132px;
    flex: 0 0 132px;
    padding-bottom: 0.5rem;
  }
  .jobs__row > div .job__card {
    display: block !important;
    box-shadow: none;
  }
  .jobs__row > div .job__card > span {
    flex-direction: column;
    gap: 1rem;
  }
}
.we__hiring__box {
  background-color: #F8F8F8;
}

.company__hire__box {
  border: 1px solid #E6E7E8;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  transition: all 0.3s ease-in-out;
}
.company__hire__box:hover {
  background-color: #F8F8F8;
}
.company__hire__box .title {
  color: var(--dark);
}
.company__hire__box .title:hover {
  color: var(--brand);
}
.company__hire__box .title:hover svg path {
  stroke: var(--dark);
  transition: 0.3s;
}
.company__hire__box .logo__box img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.35rem;
  object-fit: contain;
}

.mncsSlider .owl-stage-outer, .latestJobsCarousel .owl-stage-outer, .clientActivelySlider .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}

.carousel__nav .owl-nav {
  position: absolute;
  top: -4.25rem;
  right: 0%;
}
.carousel__nav .owl-nav .owl-next, .carousel__nav .owl-nav .owl-prev {
  font-size: 2rem !important;
}
.carousel__nav .owl-nav .owl-next:hover svg path, .carousel__nav .owl-nav .owl-next:focus svg path, .carousel__nav .owl-nav .owl-prev:hover svg path, .carousel__nav .owl-nav .owl-prev:focus svg path {
  fill: var(--brand);
  transition: all 0.3s;
}
.carousel__nav.right__align .owl-nav {
  right: 80px;
}
.carousel__nav .job__card {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
}
.carousel__nav img {
  width: 120px;
  height: 45px;
}

@media (max-width: 575px) {
  .carousel__nav .owl-nav {
    top: auto;
    right: 0%;
    width: 100%;
    text-align: center;
  }
}
.join__card {
  background-color: #0E71BC;
}
.join__card.join__now {
  background-color: #1CA1DF;
}
.join__card.join__now .btn-dark:hover, .join__card.join__now .btn-dark:focus, .join__card.join__now .btn-dark:active {
  background-color: var(--blue);
  border-color: var(--blue);
}

@media (min-width: 768px) {
  .join__card .btn-dark {
    width: 50%;
  }
}
.latest__job__card {
  border: 1px solid #D9D9D9;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
}
.latest__job__card .logo {
  width: 4rem !important;
}
.latest__job__card .btn-copy {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #E1EDFF;
  top: 1rem;
  right: 1rem;
}
.latest__job__card .btn-copy svg {
  width: 1.25rem;
  height: 1.25rem;
}
.latest__job__card .btn-copy svg path {
  fill: #2C2C30;
  transition: all 0.3s;
  opacity: 0.5;
}
.latest__job__card .btn-copy:hover, .latest__job__card .btn-copy:focus, .latest__job__card .btn-copy:active {
  background-color: #d5e5fd;
}
.latest__job__card .btn-copy:hover svg path, .latest__job__card .btn-copy:focus svg path, .latest__job__card .btn-copy:active svg path {
  fill: var(--blue);
}
.latest__job__card .info__list img {
  width: auto !important;
  height: 1rem;
}
.latest__job__card .tag__list .btn {
  padding: 4px 12px;
}

.nav-tabs .nav-link {
  font-size: 0.937rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid #79797B;
  font-weight: 600;
  color: #79797B;
  border-radius: 0.5rem;
}
.nav-tabs .nav-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.nav-pills {
  border-right: 1px solid #eee;
}
.nav-pills .nav-item {
  margin: 0.25rem;
}
.nav-pills .nav-link {
  border: 0;
  color: #AAAAAA;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: left;
  padding: 0.65rem 0.5rem 0.65rem 1.5rem;
  position: relative;
}
.nav-pills .nav-link:hover {
  color: var(--brand);
}
.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--brand);
}

@media (max-width: 575px) {
  .sponcored__companies .job__card .lead-sm {
    font-size: 0.875rem;
  }
  .sponcored__companies .job__card .rating__box svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  .sponcored__companies .job__card .fs-6.text-4f {
    font-size: 0.875rem !important;
  }
  .sponcored__companies .job__card .btn-primary {
    padding: 0.5rem 1rem;
  }
}
.why__teksands__wraper .bg__overlay {
  width: calc(100% + 6rem);
  left: -3rem;
}
.why__teksands__wraper .choose__card {
  background-color: #fff;
}
.why__teksands__wraper .choose__card .title {
  min-height: 3.5rem;
}
.why__teksands__wraper .choose__card .desc {
  color: #79797B;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.whyTeksandsSlider .owl-stage {
  display: flex;
}
.whyTeksandsSlider .owl-stage .owl-item {
  display: flex;
}

.blog__card {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
}
.blog__card .angle__link {
  top: 1rem;
  right: 1rem;
}
.blog__card .angle__link svg path {
  transition: all 0.3s ease-in-out;
}
.blog__card .thumbnail {
  max-width: 70%;
}
.blog__card .title a {
  color: #969696;
}
.blog__card .title a:hover, .blog__card .title a:focus, .blog__card .title a:active {
  color: var(--blue);
}
.blog__card:hover .angle__link svg path {
  fill: var(--blue);
}

.blog__gradient {
  bottom: -50%;
}

.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue) !important;
}

.main__filter__box {
  width: 320px;
}
.main__filter__box .content__box {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.0117647059);
  border: 1px solid rgba(215, 215, 215, 0.6117647059);
}
.main__filter__box .collapse__btn {
  color: var(--blue);
}
.main__filter__box .collapse__btn svg {
  transition: all 0.3s ease-in-out;
  width: 1.75rem;
  height: 1.75rem;
}
.main__filter__box .collapse__btn svg path {
  stroke: var(--blue);
}
.main__filter__box .collapse__btn.collapsed {
  color: var(--dark);
}
.main__filter__box .collapse__btn.collapsed svg {
  transform: rotate(180deg);
}
.main__filter__box .collapse__btn.collapsed svg path {
  stroke: var(--dark);
}
.main__filter__box .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-color: #969696;
}
.main__filter__box .form-check-label {
  color: #555555;
  font-weight: 500;
}
.main__filter__box .form-check-label span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.main__filter__box hr {
  border-color: #ECECEC;
  opacity: 1;
}

@media (max-width: 991px) {
  .main__filter__box {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4862745098);
    box-shadow: none;
    border: 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 1010;
  }
  .main__filter__box.js--show {
    transform: translateX(0);
  }
  .main__filter__box .content__box {
    max-width: 80%;
    border: 0;
    border-radius: 0 1rem 0 0 !important;
  }
  .main__filter__box .content__box .res__scroll__box {
    height: calc(100vh - 4rem);
    overflow-y: auto;
  }
}
.range-slider {
  position: relative;
  width: 100%;
  height: 1.2rem;
}

.range-slider_input {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  opacity: 0;
  margin: 0;
}

.range-slider_input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.range-slider_input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.range-slider_thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--blue);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0509803922);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 4vmin;
  color: #303030;
  z-index: 2;
}

.range-slider_line {
  height: 8px;
  width: 100%;
  background-color: #EDF4FF;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 8px;
  position: absolute;
  z-index: 1;
}

.range-slider_line-fill {
  position: absolute;
  height: 8px;
  width: 0;
  background-color: #1CA1DF;
}

.listing__col {
  width: calc(100% - 320px);
}

@media (max-width: 991px) {
  .main__filter__box {
    width: 100%;
  }
  .listing__col {
    width: 100%;
  }
}
.sort__select {
  width: 11.5rem;
  color: #999999;
  height: 2.125rem;
  display: block;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 12px;
}

.job__listing__card {
  background-color: #fff;
  border: 1px solid rgba(215, 215, 215, 0.6117647059);
  border-radius: 0.625rem;
}
.job__listing__card .icons__wrap {
  width: 5rem;
  height: 5rem;
  background-color: #D9D9D9;
}
.job__listing__card .title_link {
  color: var(--dark);
  transition: all 0.3s ease-in-out;
}
.job__listing__card .title_link:hover {
  color: var(--brand);
}
.job__listing__card .info__list {
  gap: 1rem 2rem;
}
.job__listing__card .tag__list {
  gap: 0.25rem 2rem;
}
.job__listing__card .tag__list a {
  color: #a9a9a9;
}
.job__listing__card .tag__list a:hover, .job__listing__card .tag__list a:focus, .job__listing__card .tag__list a:active {
  color: var(--brand);
}

@media (max-width: 768px) {
  .job__listing__card .content__box {
    width: 100%;
    flex: 0 0 100%;
  }
  .job__listing__card .info__list {
    line-height: 1;
  }
  .job__listing__card .info__list img {
    height: 1rem;
    width: auto;
  }
}/*# sourceMappingURL=style.css.map */