/* Our Process New */

.our-process-new{
  background: #000073;
  padding: 90px 0;
}

.interactive-process .process-wrap {
  width: 100%;
  max-width: 1340px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  justify-content: center;
  margin: 50px auto 0;
}

.interactive-process .process-step {
  width: 100%;
  max-width: calc(100%/5);
  cursor: pointer;
}

.interactive-process .process-step:hover{
  max-height: 1000px;
}

.interactive-process .process-button {
  position: relative;
}

.interactive-process .process-step:not(:first-child) .process-button::before{
  content: "";
  display: inline-block;
  height: 2px;
  width: 65%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -34%;
  background: #1c1c8b;
}

.interactive-process .process-step:not(:first-child) .process-button::after{
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 10px;
  width: 10px;
  border-style: solid;
  border-color: #1c1c8b;
  border-width:  3px 3px 0 0;
}

.interactive-process .process-button strong {
  z-index: 15;
  color: #1c1c8b;
  display: block;
  text-align: center;
  height: 120px;
  font-size: 90px;
  line-height: 120px;
  font-weight: 900;
  transition: all 0.5s linear;
}

.interactive-process .dot_container {
  z-index: 9999;
  width: 15px;
  height: 15px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.interactive-process .dot {
  z-index: 9;
  width: 10px;
  height: 10px;
  background-color: var(--yellow);;
  border-radius: 100px;
}

.interactive-process .circle {
  border-radius: 100px;
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s linear;
  border: 1px solid var(--pink-magenta);
}

.interactive-process .circle-1 {
  width: 40px;
  height: 40px;
}

.interactive-process .circle-2 {
  width: 80px;
  height: 80px;
}

.interactive-process .circle-3 {
  width: 120px;
  height: 120px;
}

.interactive-process .process-step.active .circle-1{
  opacity: 0.85   ;
  transform: scale(1);
}
.interactive-process .process-step.active .circle-2{
  opacity: 0.35;
  transform: scale(1);
}
.interactive-process .process-step.active .circle-3{
  opacity: 0.15;
  transform: scale(1);
}

.interactive-process .process-content {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.interactive-process .process-content strong {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
  opacity: 0.4;
  font-weight: 700;
  position: relative;
  transition: all 0.5s linear;
  display: block;
  text-align: center;
  width: 100%;
}

.interactive-process .process-step.active .process-content strong{
  opacity: 1;
  color: var(--yellow);
}

.interactive-process p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  transform: translate3d(0px, -25px, 0px);
  transform-style: preserve-3d;
  transition: all 0.5s linear;
  opacity: 0;
  max-height: 0px;
  margin: 0;
}

.interactive-process .process-step.active p{
  transform: translate3d(0px, 10px, 0px);
  opacity: 1;
  max-height: 500px;
}

@media only screen and (max-width: 1340px) {
  .interactive-process .process-button strong {
    height: 70px;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 10px;
  }
  .interactive-process .process-content strong{
    font-size: 18px;
  }
  .interactive-process p{
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .interactive-process .process-step:not(:first-child) .process-button::before,
  .interactive-process .process-step:not(:first-child) .process-button::after{
    display: none;
  }
  .interactive-process .process-wrap{
    row-gap: 50px;
    padding: 0 30px;
  }
  .interactive-process .process-step{
    max-width: calc(100%/3);
  }
  .interactive-process .process-content strong {
    opacity: 1;
    color: var(--yellow);
  }
  .interactive-process p {
    transform: translate3d(0px, 10px, 0px);
    opacity: 1;
    max-height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .interactive-process .process-step{
    max-width: calc(100%/2);
  }
}

@media only screen and (max-width: 575px) {
  .interactive-process .process-wrap{
    padding: 0;
  }
  .interactive-process .process-step{
    max-width: 100%;
  }
}

@media only screen and (max-width: 435px) {
  .our-process-new{
    padding: 50px 0;
  }
}