.btn--outline {
  box-sizing: border-box;
  transition: all .3s linear;
}

.btn--outline:hover {
  background-color: #E2C58B;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

.btn--outline:hover span {
  color: #fff;
}

.object-container .title {
  font-size: 32px;
  font-weight: 600;
  color: #090C10;
  line-height: 72px;
	text-transform: capitalize;
}

.object-container {
  padding-top: 70px;
  text-align: center;
}

.image-list {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 100px;
}

.image-item,
.image-empty {
  position: relative;
  display: flex;
  justify-content: center;
  width: 16.6%;
  margin-bottom: 4%;
}

.image-item::after {
  /* content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 48px;
  background-color: #333F39;
  opacity: .5; */
}

.image-inner {
  position: relative;
  width: 9.1vw;
  height: 9.1vw;
  border-radius: 50%;
  overflow: hidden;
}

.image-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  transition: all .3s linear;
}

.image-inner:hover>img {
  transform: scale(1.2);
}

.image-inner:hover::after {
  opacity: 0;
}

.image-inner:hover .image-text {
  opacity: 0;
}

.image-inner>img {
  display: block;
  width: 100%;
  height: auto;
  transition: all .3s linear;
}

.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  z-index: 9;
	text-transform: capitalize;
  transition: all .3s linear;
}

@media (max-width: 1800px) {
  .image-inner {
    width: 10vw;
    height: 10vw;
  }
}

@media (max-width: 1600px) {
  .image-inner {
    width: 12vw;
    height: 12vw;
  }
}

@media (max-width: 1400px) {

  .image-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .image-list {
    flex-wrap: wrap;
  }

  .image-item {
    width: 33.3%;
  }

  .image-empty {
    display: none;
  }

  .image-inner {
    width: 25vw;
    height: 25vw;
  }

  .image-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .image-list {
    margin-bottom: 40px;
  }

  .image-text {
    font-size: 12px;
  }
}

.image-wrap {
  overflow: hidden;
}

.image-wrap:hover img {
  transform: scale(1.05);
}

.image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all .3s linear;
}


.eligibility {
  display: flex;
  background-color: #313743;
  overflow: hidden;
}

.list-container {
  flex: 1;
  flex-shrink: 0;
  width: 45%;
  background-image: url(../images/eligibility-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.list-container h2 {
  padding-left: 15%;
  font-size: 32px;
  font-weight: 600;
	letter-spacing: -1px;
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
	text-transform: capitalize
}

.eligibility-list {
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
  position: relative;
  flex-shrink: 0;
  margin-top: 38px;

}

.eligibility-item {
  position: relative;
  align-items: center;
  margin-bottom: 50px;
  cursor: pointer;
  padding-left: 46%;
}

.eligibility-item:hover .text-wrap {
  opacity: 1;
}
.eligibility-item:hover .eligibility-title,
.eligibility-item:hover .eligibility-img {
  transform: scale(.9) translateX(-10px);
}

.eligibility-item .text-wrap {
  opacity: 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: -20px;
  height: 126px;
  margin-top: -20px;
  padding-right: 40px;
  background-color: #0D683F;
  transition: all .4s ease;
}

.text-wrap .eligibility-text {
  padding-left: 30%;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
	transition: all 0.3s ease-out;
}
.eligibility-item .eligibility-title {
  margin-left: 25px;
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
  transition: all .3s linear;
  white-space: nowrap;
}

.eligibility-item .eligibility-img {
  display: block;
  width: 76px;
  height: auto;
  object-fit: cover;
  transition: all .3s linear;
}

.eligibility-item:last-child {
  margin-bottom: 30px;
}

.eligibility .image-wrap {
  width: 55%;
  margin-left: -20px;
}

.eligibility .image-wrap img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
}


.criterion-box {
  padding-top: 160px;
  padding-bottom: 150px;
}

.criterion-box .btn--outline {}

.criterion-box .btn--outline span {
  font-size: 16px;
}

.criterion-box .left {
  min-height: 526px;
  flex-shrink: 0;
  padding: 44px 46px 50px 46px;
  border-radius: 6px;
  background-color: #0D683F;
}

.criterion-box .left .title {
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}

.criterion-box .left .list {
  margin-top: 38px;
}

.criterion-box .left .list .item {
  padding: 16px 0;
}

.criterion-box .item-inner>img {
  display: block;
  width: 34px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: all .2s linear;
}

.criterion-box .left .item .item-inner {
  display: flex;
  justify-content: space-between;
  min-width: 358px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 36px;
  padding-right: 20px;
  font-size: 22px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s linear;
	text-transform: capitalize;
}

.criterion-box .item.active .item-inner,
.criterion-box .left .item .item-inner:hover {
  background-color: rgba(255, 255, 255, .2);
}

.criterion-box .item.active .item-inner>img,
.criterion-box .left .item .item-inner:hover>img {
  opacity: 1;
}

.criterion-box .right {
  flex: 1;
  flex-shrink: 0;
  position: relative;
  padding-left: 4.2%;
}

.criterion-box #r1,
.criterion-box #r2,
.criterion-box #r3,
.criterion-box #r4 {
  width: 100%;
  height: 100%;
  max-height: 526px;
  padding-right: 17.5%;
  overflow-y: auto;
}

.criterion-box #r1::-webkit-scrollbar,
.criterion-box #r2::-webkit-scrollbar,
.criterion-box #r3::-webkit-scrollbar,
.criterion-box #r4::-webkit-scrollbar {
  width: 5px;
  height: 1px;
}

.criterion-box #r1::-webkit-scrollbar-thumb,
.criterion-box #r2::-webkit-scrollbar-thumb,
.criterion-box #r3::-webkit-scrollbar-thumb,
.criterion-box #r4::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #0d683f;
}

.criterion-box #r1::-webkit-scrollbar-track,
.criterion-box #r2::-webkit-scrollbar-track,
.criterion-box #r3::-webkit-scrollbar-track,
.criterion-box #r4::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #EDEDED;
}

.criterion-box .right #r1 .p {
  margin-bottom: 10px;
}

.criterion-box .right::before {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -20%;
  right: 0;
  border-radius: 10px;
  background-color: #F7FBFB;
  background-image: url(../images/criterion-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.8;
}

.criterion-box .right::after {
  content: "";
  position: absolute;
  top: -2%;
  right: 68px;
  width: 90px;
  height: 74px;
  background-image: url(../images/marks.png);
}

.criterion-box .right .right-content {
  /* overflow-y: auto; */
}

.criterion-box .right .right-content h3 {
  font-size: 28px;
  color: #090C10;
  line-height: 1.8;
  font-weight: 500;
}

.criterion-box .right .right-content {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #090C10;
}

.criterion-box .right .right-content p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #090C10;
}



.criterion-btn {
  position: relative;
  overflow: hidden;
  margin: 0;
  margin-top: 104px;
  max-width: 168px;
  max-height: 48px;
  margin-left: 16px;
  border: none;
  background-color: #fff;
}

.criterion-btn::after {
  content: "";
  position: absolute;
  left: -150%;
  top: 50%;
  width: 150%;
  height: 150%;
  border-radius: 99px;
  transform: translateY(-50%);
  background-color: #E2C58B;
  transition: all .4s linear;
  z-index: -1;
}

.criterion-btn>span {
  color: #0D683F !important;
}

.criterion-btn span {
  color: #FFFFFF;
  transition: all .3s linear;
}

.criterion-btn:hover {
  background-color: #f5f5f5;

}

.criterion-btn:hover span {
  color: #fff !important;
}

.criterion-btn:hover::after {
  left: -10%;
}



.process-box {
  position: relative;
  margin-top: 1px;
  padding-top: 66px;
  padding-bottom: 80px;
  background-color: #F7FBFB;
  background-image: url(../images/process-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.process-box .title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
}

.process-box .tab-links {
  margin-top: 40px;
  margin-bottom: 80px;
  background-color: rgba(255, 255, 255, .2);
}

.object-container .tab-links .tab-link.tab-link--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  background-color: #D9B96A;
  z-index: -1;
}

.process-box .tab-link {}

.process-box .tab-link span {
  color: #FFFFFF !important;
}

.process-box .tab-links .tab-link.tab-link--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  background-color: #D9B96A;
  z-index: -1;
}

.process-box .tab-bg {}

.process-box .btn--outline {
  margin-top: 80px !important;
}

.process-list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-box .btn--outline {
  margin: 0;
}

.settle-dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
}

.settle-dialog .dialog-inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-height: 90%;
  background-color: #fff;
}

.settle-dialog .head {
  flex-shrink: 0;
  position: relative;
}

.settle-dialog .head .iconfont {
  position: absolute;
  top: 26px;
  right: 26px;
}

.settle-dialog .title {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 400;
  color: #090C10;
  line-height: 1;
  text-align: center;
}

.settle-dialog .head .title {
  font-size: 32px;
  font-weight: 400;
  color: #090C10;
  line-height: 1;
}

.settle-dialog .head .icon-close {
  font-size: 26px;
  cursor: pointer;
}

.settle-dialog .content {
  flex: 1;
  padding: 0 46px;
  padding-bottom: 50px;
  overflow-y: auto;
}

.settle-dialog .content .form {}

.form .upload-field,
.form .field,
.form .radio-group {
  margin-bottom: 24px;
}

.form .upload-field,
.radio-group,
.field {
  display: flex;
  align-items: center;
}

.form .upload-field__label,
.radio-group__label,
.field .field__label {
  width: 200px;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1;
}

.upload-field__value,
.field .field__value {
  flex: 1;
}

.field__value .field__control {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: #F3F3F3;
}

.upload-field .upload-field__control {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: none;
  outline: none;
  font-size: 18px;
  background-color: #F3F3F3;
}

.upload-field .upload-field__control input {
  display: none;
}

.upload-field__control .iconfont {
  font-size: 20px;
  color: #0D683F !important;
  cursor: pointer;
}

.upload-field__control .upload-placeholder {
  margin: 0 12px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 1;
}

.radio-group__value {
  display: flex;
  align-items: center;
}

.radio-group__value .form-check {
  margin-right: 60px;
  display: flex;
  align-items: center;
}

.radio-group__value .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  accent-color: #0D683F;
}

.radio-group__value .form-check-label {
  margin-left: 20px;
  margin-bottom: 0;
  font-size: 18px;

  font-weight: 400;
  color: #333333;
  line-height: 1;
  white-space: nowrap;
}

.field--code a {
  margin: 0 20px;
}

.field--code .field__value {
  display: flex;
  align-items: center;
}

.field--code .field__value a {
  display: block;
}

.field--code .field__control {
  width: 185px;
  max-width: 185px;
}

.dialog-inner .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.dialog-inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 178px;
  padding: 20px 0;
  border: 1px solid #E2C58B;
  background-color: #DDC278;
  cursor: pointer;
}

.dialog-inner .btn>span {
  font-size: 18px;

  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.dialog-inner .btn--outline {
  margin: 0;
  padding: 20px 0;
  width: 178px;
}






@media (max-width: 1800px) {
  .criterion-box .right {
    /* padding-right: 13%; */
  }
}

@media (max-width: 1600px) {
  .eligibility .eli-title .tab-link {
    padding: 10px 25px;
  }


  .btn--outline,
  .button {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 15px 40px;
  }
}

@media (max-width: 1400px) {

  .tab-links {
    margin: 30px 0;
  }

  .tab-links .tab-link {
    padding: 10px 30px;
  }

  .tab-links .tab-link span {
    font-size: 14px;
  }

  .object-container {
    padding-top: 40px;
  }

  .object-container .image-item span {
    font-size: 18px;
  }

  .object-container .title {
    font-size: 28px;
  }

  .tab-links {
    margin: 35px 0;
  }

  .tab-links .tab-link {
    padding: 10px 30px;
  }

  .image-list {
    margin-top: 40px;
  }


  .eligibility {}

  .eligibility .list-container {
    width: 40%;
    flex-shrink: 0;
  }

  .eligibility .image-wrap {
    width: 60%;
  }

  .list-container h2 {
    font-size: 28px;
  }

  .eligibility-item .eligibility-img {
    width: 60px;
  }

  .eligibility-item .eligibility-title {
    font-size: 20px;
  }

  .eligibility-item {
    padding-left: 30%;
  }

  .criterion-box {
    padding-top: 8%;
    padding-bottom: 8%;
  }

  .criterion-box .title {
    font-size: 28px !important;
  }

  /* .process-list {
    margin-top: 50px;
  } */

  .item-inner {
    min-width: 320px !important;
    font-size: 20px !important;
  }

  .criterion-box .left {
    padding: 44px 30px 50px 30px;
  }

  .text-wrap {
    height: 100px !important;
  }

  .text-wrap .eligibility-text {
    font-size: 14px;
  }

  .eligibility .eli-title h2 {
    padding-left: 30px;
  }

  .eli-title .tab-links .tab-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .eli-title .tab-links .tab-link span {
    font-size: 16px !important;
  }
}

@media (max-width: 1200px) {


  /* .process-list .process-item {
    width: 33.33%;
  }

  .process-list .process-item .index {
    padding-left: 28%;
  }

  .process-list .process-item-empty {
    display: none;
  } */
}

@media (min-width: 992px) {

  .tab-links {
    margin: 15px 0;
  }

  .eligibility-mb {
    display: none;
  }

  .criterion-mb {
    display: none;
  }

  .process-mb {
    display: none;
  }

}

@media (min-width: 480px) {
  .process-mb {
    display: none;
  }
}

@media (max-width: 992px) {
  .eligibility {
    display: none;
  }

  .criterion-box {
    display: none;
  }


  .eligibility-mb {
    padding-top: 46px;
    background-color: #FBFBFB;
  }

  .e-mb-title {
    text-align: center;
    font-size: 30px;

    font-weight: 400;
    color: #2C2C2C;
    line-height: 1;
    margin-bottom: 40px;
  }

  .e-mb-list {
    margin-top: 40px;
    margin-left: 24px;
    margin-right: 24px;
  }

  .e-mb-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
  }

  .mb-img-wp {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #0D683F;
  }

  .mb-info {
    padding-left: 20px;
  }

  .mb-title {
    font-size: 26px;

    font-weight: 400;
    color: #2C2C2C;
    line-height: 1;
  }

  .mb-desc {
    margin-top: 14px;
    font-size: 20px;

    font-weight: 400;
    color: #2C2C2C;
    line-height: 1.8;
  }

  .criterion-mb {
    padding-top: 50px;
    background-color: #FBFBFB;
  }

  .c-mb-list {
    margin-left: 24px;
    margin-right: 24px;
  }

  .c-mb-item {}

  .c-mb-title {
    padding-bottom: 28px;
    padding-top: 60px;
    text-align: center;
    font-size: 30px;

    font-weight: 400;
    color: #2C2C2C;
    line-height: 1;
  }

  .c-mb-content {
    padding: 18px;
    background-color: #fff;
  }

  .c-mb-content h3 {
    font-size: 26px;
    color: #090C10;
    line-height: 1.8;
  }

  .c-mb-content p {
    font-size: 20px;
    color: #090C10;
    line-height: 1.8;
  }

  .process-mb .title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  /* .process-list .process-item {
    width: 30%;
    margin-right: 3%;
  }

  .process-list .process-item:nth-child(3)::before {
    transform: rotate(90deg);
  }

  .process-list .process-item:nth-child(4)::before {
    transform: rotate(90deg)
  }

  .process-list .process-item:nth-child(5)::before {
    transform: rotateY(180deg)
  }

  .process-list .process-item:nth-child(6)::before {
    transform: rotateY(180deg)
  }

  .process-mb .process-item-empty {
    display: none;
  } */

  .form-check-label {
    margin-left: 5px !important;
  }



}

@media (max-width: 480px) {
  .process-box {
    display: none;
  }

  .process-mb {
    display: block;
  }

  .tab-links {
    margin: 20px 0;
  }

  .tab-links .tab-link {
    padding: 5px 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .tab-links .tab-link {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tab-links .tab-link span {
    font-size: 12px !important;
  }

  .object-container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .object-container .title {
    font-size: 20px;
  }



  .btn--outline,
  .button {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px 30px;
  }

  .btn--outline>span,
  .button>span {
    font-size: 14px;
  }

  .e-mb-list {
    margin: 0;
  }

  .e-mb-title {
    font-size: 20px;

  }

  .e-mb-item {}

  .mb-img-wp {
    width: 15%;
  }

  .mb-title {
    font-size: 14px;
  }

  .mb-desc {
    font-size: 12px;
  }

  .c-mb-list {
    margin: 0;
  }

  .c-mb-title {
    padding-top: 20px;
    font-size: 20px;
  }

  .c-mb-content h3 {
    font-size: 14px;
  }

  .c-mb-content p {
    font-size: 12px;
  }

  .process-mb .title {
    font-size: 20px;
  }

  .process-mb .process-list {
    margin-left: 15px;
    margin-right: 15px;
  }

  .process-mb .process-item {
    flex-shrink: 0;
    min-height: 120px;
    overflow: hidden;
  }

  .process-mb .process-item .process-text {
    top: 28%;
    font-size: 12px !important;
    line-height: 1.6;
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .process-mb .process-item .index {
    right: 10%;
    font-size: 50px;
  }

  .process-mb .process-item::before {
    width: calc(62px * 0.5);
    height: calc(22px * 0.5);
  }

}


@media (max-width: 1800px) {
  .settle-dialog .dialog-inner {
    width: 50%;
  }
}

@media (max-width: 1400px) {
  .settle-dialog .dialog-inner {
    width: 60%;
  }

  .radio-group__value .form-check {
    margin-right: 40px;
  }
}

@media (max-width: 1200px) {
  .settle-dialog .dialog-inner {
    width: 60%;
  }

  .radio-group__value .form-check {
    margin-right: 20px;
  }

  .radio-group__value .form-check-label {
    margin-left: 10px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .settle-dialog .dialog-inner {
    width: 70%;
  }

  .dialog-inner .title {
    font-size: 24px;
    line-height: 1;
    margin: 30px 0;
  }

  .dialog-inner .head .iconfont {
    font-size: 20px;
  }

  .field .field__label,
  .radio-group .radio-group__label,
  .upload-field .upload-field__label {
    font-size: 14px;
    width: 10em;
  }

  .field .field__control {
    font-size: 14px;
    padding: 0 15px;
  }

  .dialog-inner .content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .dialog-inner .btn {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dialog-inner .btn--outline {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .settle-dialog .dialog-inner {
    width: 90%;
  }

  .dialog-inner .title {
    font-size: 16px;
    font-weight: bold;
  }

  .dialog-inner .head .iconfont {
    font-size: 14px;
  }

  .dialog-inner .content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .field,
  .radio-group,
  .upload-field {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .upload-field .upload-field__value,
  .field__value {
    margin-top: 8px;
    width: 100%;
  }

  .field__value .field__control {
    padding-left: 6px;
    padding-right: 6px;
    height: 39px;
  }

  .radio-group .radio-group__value {
    display: flex;
    flex-direction: column;
  }

  .radio-group .form-check {
    margin-top: 10px;
  }

  .radio-group .form-check-label {
    margin-left: 10px;
    font-size: 12px;
  }

  .dialog-inner .actions .btn {
    margin-right: 30px;
  }

  .actions .btn>span {
    font-size: 12px;
  }

  .actions .btn--outline>span {
    font-size: 12px;
  }

  .upload-field .upload-field__control {
    height: 39px;
  }

  .upload-field .upload-field__control {
    font-size: 12px;
  }

  .upload-field__control .upload-placeholder {
    font-size: 12px;
  }


}

.pro-swiper {
  padding: 20px 38px;
  margin-left: 6.25%;
  margin-right: 6.25%;
}

.pro-swiper .swiper-wrapper {}

.process-container {
  position: relative;
  width: 289px;
  margin-top: 87px;
}

.process-node {
  position: absolute;
  bottom: calc(100% + 46px);
  left: 50%;
  transform: translate(-50%, 0);
}

.process-node .cir {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 9;
}

.process-node .cir::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  animation: cirEffect 3s infinite;
  background-color: #fff;
}

@keyframes cirEffect {
  0% {
    width: 100%;
    height: 100%;
  }

  100% {
    width: 22px;
    height: 22px;
    opacity: 0;
  }
}

.process-node .node-line {
  padding-top: 4px;
  width: 1px;
  height: 40px;
  background-color: #fff;
}

.process-index {
  position: absolute;
  bottom: calc(100% - 10px);
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 38px;
  font-family: Arial;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 32px;
  opacity: 0.6;
}

.process-content {
  width: 289px;
  height: 220.5px;
  padding-top: 30px;
  padding-left: 25px;
  padding-right: 25px;
  background-image: url(../images/process-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.4;
}

.process-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
  opacity: .2;
}

.swiper-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 2%;
  transform: translateY(-50%);
}

.swiper-buttons .swiper-prev,
.swiper-buttons .swiper-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all .3s linear;
}

.swiper-buttons .swiper-prev:hover .iconfont,
.swiper-buttons .swiper-next:hover .iconfont {
  color: #DDC278 !important;
}

.swiper-buttons .swiper-prev:hover,
.swiper-buttons .swiper-next:hover {
  border-color: #DDC278 !important;
}

.swiper-buttons .iconfont {
  color: #fff !important;
  font-size: 20px;
  transition: all .3s linear;
}

.swiper-buttons .swiper-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(50%, -50%);
}

.swiper-buttons .swiper-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .swiper-buttons {
    display: none;
  }

  .process-box {
    padding-top: 30px;
  }

  .process-box .tab-links {
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .process-box .title {
    font-size: 30px;
  }

  .process-content {
    font-size: 12px;
  }

  .process-box .btn--outline {
    margin-top: 30px !important;
  }

  .pro-swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .process-container {
    width: calc(289px * .55)
  }

  .process-index {
    font-size: 24px;
  }

}

@media (max-width: 480px) {
  .process-box {
    padding-top: 20px;
  }

  .process-box .title {
    font-size: 20px;
  }

  .process-box .tab-links {
    margin-top: 20px;
    margin-bottom: 20px;
  }



  .process-container {
    width: calc(289px * .5);
  }

  .process-index {
    font-size: 20px;
  }

  .process-content {
    width: calc(289px * .5);
    height: calc(254px * .5);
    padding-top: calc(75px * .4);
    padding-left: calc(25px * .4);
    padding-right: calc(25px * .4);
  }

}

.process-mb {
  padding-top: 20px;
  background-image: url(../images/process-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.process-mb .tab-links {
  background-color: rgba(255, 255, 255, .2);
}

.process-mb .tab-link span {
  color: #fff;
}

.process-mb .tab-bg {
  background-color: transparent !important;
}

.process-mb .tab-bg::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: 100%;
  margin: 0 auto;
  background-color: #DDC278;
  border-radius: 99px;
}

.process-mb .tab-links .tab-link.tab-link--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  background-color: #D9B96A;
  z-index: -1;
}

.eligibility-mb .tab-links {
  background-color: transparent !important;
}

.eligibility-mb .tab-bg {
  background-color: transparent !important;
}

.eligibility-mb .tab-bg::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: 100%;
  margin: 0 auto;
  background-color: #DDC278;
  border-radius: 99px;
}

.process-mb .title {
  margin: 0;
}

.process-mb .title {
  color: #fff;
}

.pro-mb-line {
  position: absolute;
  top: 0;
  left: 7%;
  transform: translate(-50%, 0);
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  width: 1px;
  background-color: #fff;
}

.pro-mb-list {
  position: relative;
  padding-top: 20px;
  padding-bottom: 30px;
}

.pro-mb {
  position: relative;
  margin-right: 10%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 4px;
}


.pro-mb-list>div {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20%;
}

.pro-mb-list>div:last-child {
  margin-bottom: 0 !important;
}

.pro-mb-index {
  font-size: 18px;
  font-family: Arial;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
  opacity: 0.6;
}

.pro-mb-content {
  font-size: 12px;

  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6;
  text-align: justify;
}

.pro-mb-node {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.mb-node-line {
  position: absolute;
  top: calc(50%);
  left: 7%;
  transform: translate(0, calc(-50% - 0px));
  width: 7%;
  height: 1px;
  background-color: rgba(255, 255, 255, .8);
}

.mb-cir {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.mb-cir::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cirEffect 3s infinite;
  background-color: #fff;
  border-radius: 50%;
}

.process-container-mb {
  height: 300px;
}

.process-box .pro-tab {
  background-color: transparent;
}

.process-box .tab-bg {
  background-color: transparent !important;
  overflow: hidden;
}

.process-box .tab-bg::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: 100%;
  margin: 0 auto;
  border-radius: 99px;
  background-color: #D9B96A;
}

.object-container .tab-links {
  background-color: transparent;
}

.object-container .object-tab-bg {
  box-sizing: border-box;
  background-color: transparent !important;
  overflow: hidden;
}

.object-container .object-tab-bg::after {
  content: "";
  display: block;
  width: calc(100% - 12px);
  height: 100%;
  margin: 0 auto;
  border-radius: 99px;
  background-color: #D9B96A;
  ;
}

.eli-title {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.eli-title .tab-links {
  margin: 0;
  margin-left: 10%;
}

@media (max-width: 1600px) {
  .eli-title .tab-links {
    margin-left: 4%;
  }
}

@media (max-width: 1400px) {
  .eli-title .tab-link {
    padding: 10px 20px !important;
  }
}

@media (max-width: 1200px) {
  .list-container h2 {
    padding-left: 6%;
  }

  .eli-title .tab-links {
    margin-left: 2%;
  }
}


.eli-title {
  position: relative;
  margin-right: 30px;
}

.eli-title .tab-links {
	margin: 0 20px;
  overflow-x: hidden;
}

.eli-title-more {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background-image: url(../images/arrow3.png);
  background-size: cover;
  width: 20px;
  height: 20px;
  cursor: pointer;
	z-index: 100;
}

.eli-title-left {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
  background-image: url(../images/arrow3.png);
  background-size: cover;
  width: 20px;
  height: 20px;
  cursor: pointer; 
	display: none;
}

.eli-title-more::after {
  /* content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100px;
  height: 50px;
  transform: translateY(-50%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, .1)); */
}

.eli-title .tab-links {
  background-color: transparent;
  border-radius: 0;
}

.eli-title .tab-links .tab-link {
  position: relative;
  margin: 0;
  padding-left: 25px;
  padding-right: 25px;
}

.eli-title .tab-links .tab-link span {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 36px;
  white-space: nowrap;
  transition: all .3s linear;
  user-select: none;
}

.eli-title .tab-link.tab-link--active span {
  font-size: 14px;
  font-weight: 600;
  color: #DDC278;
  line-height: 36px;
}

.eligibility-mb .tab-links .tab-link.tab-link--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  background-color: #D9B96A;
  z-index: -1;
}

.eli-title .tab-link.tab-link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 40px;
  height: 2px;
  background-color: #D9B96A;
}

.eli-title .tab-link {
  position: relative;
}

.eli-title .tab-link::after {
  /* content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -2px;
  z-index: 1; */
}

.eli-title .tab-links .tab-bg {
  /* top: 90%;
  width: 18%;
  height: 2px;
  background-color: #D9B96A; */
}

.criterion-box .p {
  position: relative;
  padding-left: 78px;
  font-size: 18px;

  font-weight: 400;
  color: #090C10;
  line-height: 2;
}

.criterion-box .p .p-idx {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 42px;
  font-family: Arial;
  font-weight: bold;
  color: #0C613A;
  line-height: 36px;
}

.criterion-box .p.p-center {
  padding-left: 120px !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

.criterion-box .p.p-center .p-idx {
  font-size: 32px !important;
  top: 50%;
  left: 45px;
  transform: translate(0, -50%);
}

#r4 .p.p-center .p-idx {
  font-size: 18px !important;
  top: 0;
  left: 45px;
  transform: translate(0, 0);
}

#r4 .p.p-center {
  padding-left: 100px !important;
}

#r4 .p.p-center {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#r4 .p.p-center .p-node .node-cir {
  top: 18px;
}

#r4 .p.p-center .p-node::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  background-color: #2F2F2F;
  opacity: .2;
}


.criterion-box .p.p-center .p-node {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
}

.criterion-box .p.p-center .p-node .node-cir {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0C613A;
  border-radius: 50%;
}

.p-center-list .p.p-center:first-child .p-node::before {
  display: none;
}

.p-center-list .p.p-center:last-child .p-node::after {
  display: none;
}

.criterion-box .p.p-center .p-node::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  background-color: #2F2F2F;
  opacity: .2;
}

.criterion-box .p.p-center .p-node::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  background-color: #2F2F2F;
  opacity: .2;
}


.p-center-list {
  position: relative;
}



.criterion-box .p.p-center:last-child::after {
  display: none;
}

.criterion-box .left {
  max-height: 678px;
}

.criterion-box .remark {
  margin: 15px 0;
  padding-left: 78px;
  font-size: 16px;

  font-weight: 400;
  color: #090C10;
  line-height: 1.8;
}

.criterion-box .sp {
  position: relative;
  padding-left: 78px;
  font-size: 18px;

  font-weight: 400;
  color: #090C10;
  line-height: 2;
}

.criterion-box .sp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0C613A;
}

.criterion-box .sp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 1px;
  height: 100%;
  background-color: #2F2F2F;
  opacity: .2;
}

.sp-list .sp:last-child::after {
  display: none;
}

.criterion-box .right .tab-content {
  /* height: 100%; */
  /* max-height: 678px;
  overflow-y: auto; */
}

.tab-links .tab-link {
  background-color: #efefef;
  transition: all .2s linear;
  margin: 0 6px;
}

.tab-links .tab-link.tab-link--active {
  background-color: transparent !important;
}

.eligibility .tab-links .tab-link {
  background-color: transparent !important;
}

.process-mb .tab-links {
  background-color: transparent !important;
}

.process-mb .tab-links .tab-link,
.process-box .tab-links .tab-link {
  background-color: rgba(255, 255, 255, .2);
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
}

.form-select {
  height: 32px;
  border: 1px solid #eee;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  outline: #aaa;
}

.mb-eli-swiper {
  margin-top: 20px;
}

.pro-mb-container {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .object-container .tab-links {
    display: none;
  }
}

@media (min-width: 480px) {
  .object-container .form-select {
    display: none;
  }
}