:root {
  --main-blue: #3856ac;
  --gray: #aaa;
  --light-gray: #F5F5F5;
  --light-black: #696969;
  --yellow: #ffd402e6;
}

.main-blue {
  color: var(--main-blue);
}

.multi_step_form label {
  width: 100%;
  text-align: right;
}

button {
  font-family: Byekan !important;
}

.hidden {
  display: none;
}

.submit-btn {
  background-color: var(--main-blue);
}

.gray {
  color: var(--gray);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.light-black {
  color: var(--light-black);
}

.bg-blue {

  background-color: var(--main-blue);
}

.lh-2 {
  line-height: 2;
}

.section-title {
  position: relative;
}

.section-title:before {
  content: '';
  position: absolute;
  width: 28%;
  right: 0;
  height: 2px;
  top: 27px;
  background: #3856ac;

}

.section-title:after {
  content: '';
  position: absolute;
  width: 28%;
  left: 0;
  height: 2px;
  top: 27px;
  background: #3856ac;

}

.gray-color {
  color: var(--gray)
}

.swiper {
  margin: 0 !important;
  text-align: center;
}

div.header p {
  font-size: large;
}

div.header p::after {
  border: 1px solid red;
  ;
}

img {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.banner {
  background-color: var(--light-gray);
}

.jobs-homepage.swiper {
  /* height: 300px; */
}

.swiper-pagination {
  display: none;
}

.swiper-button-next, .swiper-button-prev {

  width: 38px;
  height: 38px;
  /* margin: 172px 49px 173px 85.6px; */
  /* padding: 11.5px 15.8px 12.1px 16.5px; */
  color: #3856ac;
  background-color: #dfdfdf;
  border-radius: 50%;

}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  font-size: 16px;
  color: #3856ac !important;
  text-align: center;
}

.custom-box {
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 2px;
  border: 2px solid transparent;
  position: relative;
  top: 8px;
}

.select2-selection {
  -webkit-box-shadow: 0;
  box-shadow: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #555555;
  font-size: 14px;
  outline: 0;
  min-height: 48px;
  text-align: right;
}

.select2-selection__arrow b {
  border-style: none !important;
}

.select2-selection__rendered {
  padding: 8px 0;
}

.select2-results__option {
  text-align: right !important;
}

p>i {
  margin-left: 10px;
}

.box {
  height: 100px;
}

.parent {
  position: relative;
}

.side-info {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-right: 60px;

  background-color: white;
}

.side-info img {
  border-radius: 50%;
  text-align: center;
}

.main-info {
  margin: 40px 20px;
  height: 30%;
  padding: 20px;
}

.single-job {
  margin: 20px 0px;
}

/* progress css */
/* .progress {
  width: 150px;
  height: 150px !important;
  float: left;
  line-height: 150px;
  background: none;
  margin: 20px;
  box-shadow: none;
  position: relative;
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  color: #fff;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}

.progress.blue .progress-bar {
  border-color: var(--main-blue);
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

.progress.yellow .progress-bar {
  border-color: #fdba04;
}

.progress.yellow .progress-right .progress-bar {
  animation: loading-3 1.8s linear forwards;
}

.progress.yellow .progress-left .progress-bar {
  animation: none;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
} */