.hire-tabs {
  padding: 50px 0 35px;
}

.hiring-process+.company-tabs {
  margin-top: 35px;
}

.hire-tabs .btn {
  text-align: center;
  margin-top: 50px;
}

.hire-tabs .inner-purple {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--new-theme-gray-50);
  border: 1px solid var(--LightGrey);
}

.hire-tabs .inner-purple .hex-logo {
  position: absolute;
  right: 0;
  bottom: -220px;
  width: 512px;
  opacity: 0.3;
}

/* .hire-tabs .inner-purple:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--OffWhite);
  z-index: -1;
  border-radius: 12px;
} */

.hire-tabs .tabs-container.for-desktop a {
  padding: 10px;
  margin: 0 6px;
  width: 200px;
  height: 100px;
  color: var(--white);
  text-align: center;
  line-height: normal;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-decoration: none;
  border-radius: 21px;
  z-index: 1;
}

.hire-tabs .tabs-container.for-desktop a:after {
  content: '';
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 21px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.hire-tabs .tabs-container.for-desktop a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 11px 0;
  border-color: var(--LightGrey2) transparent transparent transparent;
  position: absolute;
  top: 100%;
  transition: 400ms;
  opacity: 0;
}

.hire-tabs .tabs-container a.current::before {
  border-color: var(--BluePrimary) transparent transparent transparent;
  opacity: 1;
}

.hire-tabs .tabs-container a.current:after {
  background-color: var(--BluePrimary);
}

.hire-tabs .tabs-container.for-desktop a img {
  transition: 200ms;
  filter: brightness(0);
}

.hire-tabs .tabs-container.for-desktop a .label {
  padding: 10px 0 4px;
  color: var(--BlueTextColor);
  font-weight: 600;
}

.hire-tabs .tabs-container a.current .label {
  color: var(--white);
}

.hire-tabs .tab-content-wrapper {
  max-width: 1330px;
  margin: 40px auto 40px;
  border-top: solid 1px rgba(10, 2, 64, 0.4);
  padding: 45px 0 0;
  position: relative;
}

.hire-tabs .tab-content-wrapper .icons-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px 0;
}

.hire-tabs .tab-content-wrapper .icons-wrapper .list {
  line-height: 20px;
  max-width: 120px;
  width: 100%;
  border-radius: 11px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.hire-tabs .tab-content-wrapper .icons-wrapper .list .image-box {
  background-color: #fff;
  border-radius: 11px;
  width: 63px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hire-tabs .tab-content-wrapper .icons-wrapper .list .image-box img {
  max-height: 30px;
  width: auto;
}

.hire-tabs .tab-content-wrapper [class*='button-'] {
  padding: 22px 0 0;
}

.hire-tabs .tabs-container a.current img {
  filter: grayscale(1) brightness(0) invert(1);
}

.hire-tabs .tab-content p {
  text-align: center;
  padding-bottom: 20px;
}

.company-tabs .inner-purple {
  padding: 50px 20px 20px;
}

.tech-list-wrap {
  display: flex;
  flex-wrap: wrap;
}

.tech-list-wrap__title {
  width: 100%;
  /* margin-bottom: 40px; */
}

.tech-list-wrap__title .btn {
  text-align: left;
  margin-top: 0;
}

.tech-list-wrap__title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  font-family: var(--poppins);
  margin-bottom: 18px;
}

.tech-list-wrap__title p {
  text-align: left !important;
  padding: 0 !important;
}

.tech-list-wrap__chips ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 13px;
}

.tech-list-wrap__chips ul li {
  background-color: var(--LightGrey);
  font-size: 16px;
  padding: 11px 13px 9px;
  line-height: 1;
  border-radius: 20px;
  font-weight: 500;
  font-family: var(--hind);
  cursor: default;
  transition: var(--transition3);
}

.tech-list-wrap__chips ul li:hover {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .hire-tabs .tab-content-wrapper .icons-wrapper .list {
    font-size: 17px;
  }

  .hire-tabs .tab-content-wrapper .icons-wrapper .list .image-box {
    width: 83px;
    height: 80px;
  }

  .hire-tabs .tab-content-wrapper .icons-wrapper .list .image-box img {
    max-height: 45px;
  }

  .hire-tabs {
    padding: 50px 0;
  }

  .hiring-process+.company-tabs {
    margin-top: 50px;
  }

  .hire-tabs .inner-purple {
    padding: 50px 30px;
  }
}

@media (min-width: 992px) {
  .hire-tabs .inner-purple .hex-logo {
    right: 135px;
  }

  .hire-tabs .inner-purple {
    border-radius: 28px;
  }

  .hire-tabs .tabs-container.for-desktop a .label {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .tech-list-wrap__title {
    border-right: 1px dashed var(--BlueTextColor);
    max-width: 38%;
    padding-right: 30px;
    margin-right: auto;
    padding: 20px 30px 20px 0;
  }

  .hire-tabs .section-title:not(:empty) {
    margin-bottom: 50px;
  }

  .tech-list-wrap__chips {
    max-width: 60%;
    padding: 20px 0;
    width: 100%;
  }

  .tech-list-wrap__title .btn {
    margin-top: 50px;
  }

  .hire-tabs .tabs-container.for-desktop a .label {
    font-size: 17px;
  }

  .company-tabs .inner-purple {
    padding: 50px 20px;
  }
}

@media (min-width: 1430px) {
  .hire-tabs .tabs-container.for-desktop a .label {
    font-size: inherit;
  }

  .tech-list-wrap__chips ul li {
    font-size: 18px;
    padding: 13px 20px 11px;
  }

  .hiring-process+.company-tabs {
    margin-top: 75px;
  }

  .hire-tabs {
    padding: 75px 0;
  }

  .hire-tabs .inner-purple {
    padding: 70px 40px;
  }

  .hire-tabs .btn {
    margin-top: 70px;
  }

  .steps-of-application+.hire-tabs {
    margin-top: 75px;
  }
}

@media (min-width: 1660px) {}