.header-section {
  text-align: center;
  margin-top: 50px;
}
.header-section .container {
  background-color: var(--two);
  padding: 100px 0;
  border-radius: 20px;
}
.header-section .container .img-box {
  position: relative;
  width: 500px;
  height: 500px;
}
.header-section .container .img-box .dots {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}
.header-section .container .img-box .img {
  position: absolute;
  top: 47%;
  left: 48%;
  transform: translate(-50%, -50%);
}
.header-section .text-box {
  text-align: left;
  padding: 50px;
}
.header-section .text-box .heading {
  color: white;
}
.header-section .text-box .heading .text-linear {
  background: linear-gradient(to right, var(--three) 0%, var(--two) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.header-section .connection {
  margin-top: -1px;
}
.header-section .container-2 {
  background-color: var(--three);
  margin-top: -1px;
  padding: 0;
}
.header-section .container-2 .box-2 {
  background-color: var(--three);
  border-radius: 20px;
}
.header-section .container-2 .box-2 .text-box .heading {
  color: var(--one);
}
.header-section .container-2 .box-2 .text-box .text {
  color: var(--one);
  margin-bottom: 0;
}

.our-approach-section {
  margin-top: 100px;
}
.our-approach-section .heading-text-box {
  margin-bottom: 50px;
}
.our-approach-section .box {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
.our-approach-section .box .gradient-border {
  margin: 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 5px; /* space for the gradient border */
  background: linear-gradient(-134deg, var(--two) 0%, var(--three) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--one);
  transition: transform 3s ease;
}
.our-approach-section .box .gradient-border:hover {
  animation: rotateGradient 1s linear infinite;
}
.our-approach-section .box .gradient-border:hover .inner-circle {
  animation: counterRotate 1s linear infinite;
}
.our-approach-section .box .gradient-border .inner-circle {
  width: 100%;
  height: 100%;
  background: var(--one);
  border-radius: 50%;
  padding: 25px;
}
.our-approach-section .box .gradient-border .img-box {
  width: 100%;
  height: 100%;
}
.our-approach-section .box .gradient-border .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.what-to-expect-section {
  margin-top: 100px;
}
.what-to-expect-section .heading-text-box {
  margin-bottom: 50px;
}
.what-to-expect-section .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.cta-section .box {
  background-color: var(--one);
  padding: 80px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-section .box .background-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.cta-section .box .text-box {
  position: relative;
  z-index: 2;
}
.cta-section .box .text-box .heading {
  font-size: 42px;
}
.cta-section .box .button-box {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .header-section .container {
    max-width: 100%;
    border-radius: 0;
  }
  .header-section .container .img-box {
    right: 50px;
  }
}
@media (max-width: 991px) {
  .header-section .container .text-box {
    text-align: center;
  }
  .header-section .container .img-box {
    margin: auto;
    right: auto;
  }
}
@media (max-width: 767px) {
  .header-section .container {
    padding: 20px 0 120px 0 !important;
  }
  .header-section .container .img-box {
    width: 137px;
    height: 137px;
  }
  .header-section .container .img-box .dots {
    top: -30%;
    left: -54%;
    width: 281px;
  }
  .header-section .container .img-box .img {
    top: 67%;
    left: 48%;
    width: 50px;
  }
}
@media (max-width: 767px) {
  .header-section .container-2 {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 767px) {
  .our-approach-section {
    margin-top: 50px;
  }
  .our-approach-section .heading-text-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .what-to-expect-section .heading-text-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .cta-section .box {
    padding: 50px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cta-section .box .text-box {
    text-align: center;
  }
  .cta-section .box .button-box {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .cta-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
/*# sourceMappingURL=recruitment.css.map */