/*
.pmm-steps{display:flex;gap:20px;flex-wrap:wrap}
.pmm-step{position:relative;cursor:pointer}
.pmm-step .content{display:none}
.pmm-step.active{z-index:99}
.pmm-step.active .content{display:block}
.rotate img{width:80px;animation:spin var(--speed) linear infinite}
@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}
@media(max-width:768px){.pmm-steps{flex-direction:column}}
*/


.title {
  margin-bottom: 60px;
}

/* ===== LAYOUT ===== */
.process-wrapper {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  position: relative;
}

/* ===== LEFT ===== */
.process-left {
  position: relative;
  width: 520px;
  min-height: 520px;
  z-index: 20; /* ALWAYS ABOVE RIGHT */
}

.gear-wrap {
  position: absolute;
  left: 0;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.6s ease;
  z-index: 30;
}
.gear-wrap.active {
	top: calc( 50% - 120px) !important;
}
.gear {
  /*width: 260px;*/
  transition: width 0.6s ease;
}

/* CONTENT */
.content {
  opacity: 0;
  max-width: 260px;
  transition: opacity 0.3s ease;
}

.gear-wrap.active .content {
  opacity: 1;
}

.gear-wrap.active .gear {
  width: 160px;
}

.content h3 {
  color: #0a2e5c;
  font-weight: 700;
  margin-bottom: 30px;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4d4d4d;
}

/* ===== RIGHT ===== */
.process-right {
  position: relative;
  /*padding-left: 50px;*/
  z-index: 10;
}

.line {
  position: absolute;
  left: 19.5px;
  top: 0;
  bottom: 50px;
  width: 2px;
  background: #0a2e5c;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  cursor: pointer;
  z-index: 1;
}

.step.active {
  z-index: 15;
}

.step::before {
  content: "";
  position: absolute;
  left: -40px;
  right: -20px;
  top: -14px;
  bottom: -14px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step.active::before {
  opacity: 1;
}

.dot {
  width: 40px;
  height: 40px;
  background: #0a2e5c;
  border-radius: 50%;
  margin-right: 22px;
  transition: transform 0.3s ease;
}

.step.active .dot {
  transform: scale(1.4);
}

span.label {
  font-weight: 700;
  color: #0a2e5c;
  letter-spacing: 1px;
  font-size: 24px;
}
.sow-features-feature.sow-icon-container-position-top {
  background: #fff;
  border-radius: 5px;
}
.white-bg-list li {
  background: #fff;
  border-radius: 5px;
}
.inline-cta {
  width: 100%;
  text-align: center;
  display: inline-block;
}
.contact-form .gform_title {
  display: none;
}
.contact-form .gform_title {
  display: none;
}
.contact-form .gfield {
  margin-top: -30px;
}
.gform-footer .gform_button {
  background: #fff !important;
  color: rgba(14, 62, 111, 1) !important;
  padding: 10px 32px !important;
  border-radius: 40px !important;
}
.contact-form .gfield_label{
    color: #fff !important;
}
.gfield textarea.small{
    max-height: 90px;
}
/* ===== MOBILE ===== */
@media (max-width: 900px) {
	.process-wrapper{
		gap: 0;
	}
	.content p{
		font-size: 14px;
	}
	.gear-wrap.active .gear {
	  width: 160px;
	  max-width: 30%;
	}
	 .process-left {
    	min-height: 100%;
    	height: 100%;
		 max-width: 100%;
  	}
	span.label {
	  font-size: 14px; display: flex;
	}
	
	/*.process-wrapper {
    	flex-direction: column-reverse;
  	}
  .process-wrapper {
    flex-direction: column;
    gap: 60px;
  }*/


  .gear-wrap {
    position: relative;
    top: 0 !important;
  }

    
  
  .gear {
    width: 200px;
  }
}
@media (max-width: 767px) {
	span.label {
	  font-size: 14px;
	}
	.process-wrapper {
    	flex-direction: column-reverse;
  	}
}