section.process {
  padding: 4rem 2rem;
}
section.process h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 3rem;
}
section.process h2 strong {
  color: #263c8e;
  font-weight: 800;
}
section.process .big-container {
  max-width: 1530px;
  margin: 0 auto;
}
section.process .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.process .steps .step {
  width: calc(50% - 1rem);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  background: rgba(244, 244, 244, 0.9);
  box-shadow: 3px 3px 6px #00000029;
  padding: 2rem;
}
section.process .steps img {
  width: 100px;
  min-width: 100px;
  height: auto;
  object-fit: cover;
  margin-right: 1rem;
}
section.process .steps h3 {
  margin-top: 1.5rem;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #263c8e;
  text-transform: unset;
}
section.process .steps .step .content-toggle {
  display: none;
}
section.process .steps p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
section.process .steps p strong {
  font-weight: 700;
}
@media (max-width: 1200px) {
  section.process h2 {
    font-size: 40px;
  }
}
@media (max-width: 992px) {
  section.process .steps .step {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.process h2 {
    font-size: 32px;
  }
  section.process .steps .step {
    padding: 1rem;
    align-items: center;
  }
  section.process .steps .step.active {
    align-items: flex-start;
    border: 3px solid #263c8e;
    border-radius: 3px;
  }
  section.process .steps img {
    width: 80px;
    min-width: 80px;
  }
  section.process .step .content-side {
    width: 100%;
  }
  section.process .steps h3 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  section.process .steps .step.active h3 {
    margin-top: 1rem;
  }
  section.process .steps p {
    font-size: 14px;
  }
  section.process .steps .step .content-toggle {
    display: inline-block;
    padding-left: 2rem;
  }
  section.process .steps .step .content-toggle .minus {
    display: none;
  }
  section.process .steps .step.active .content-toggle .plus {
    display: none;
  }
  section.process .steps .step.active .content-toggle .minus {
    display: inline-block;
  }
  section.process .steps .step .step-content {
    display: none;
  }
  section.process .steps .step.active .step-content {
    margin-top: 1rem;
    display: block;
  }
}
@media (max-width: 480px) {
  section.process h2 {
    font-size: 22px;
  }
  section.process .steps h3 {
    font-size: 16px;
  }
}
