.employee-section {
  width: 100%;
  padding: 65px 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  scroll-snap-type: y mandatory;
}

.employee-section .employee-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  gap: 34px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.employee-section .employee-content .employee-stats {
  width: 50%;
  text-align: left;
}

.employee-section .employee-content .employee-stats .header2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 28px;
  margin-left: 37px;
  margin-top: 0rem;
  line-height: 1.33;
  text-rendering: optimizeLegibility;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

.employee-section .employee-content .employee-stats .stat-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.employee-section .employee-content .employee-stats .stat-item .icon {
 min-width: 25px;
 height: 25px;
 margin-top: 4px;
}


.employee-section .employee-content .employee-stats .stat-item p {
  font-size: 20px;
}

.employee-section .employee-content .employee-graphics {
  width: 50%;
  background-color: #f4f2ff;
  min-height: 592px;
  min-width: 601px;
  border-radius: 20px;
  padding: 0;
  position: relative;
}

.employee-section .employee-content.secondary .employee-graphics {
  background-color: #EEFFE7;
}

.employee-section .employee-content .employee-graphics .stat-image {
  position: absolute;
  width: 45%;
  height: auto;
}

.employee-section
  .employee-content
  .employee-graphics
  .stat-image:nth-child(1) {
  top: 50px;
  left: 68px;
}

.employee-section
  .employee-content
  .employee-graphics
  .stat-image:nth-child(2) {
  top: 170px;
  right: 30px;
}

.employee-section
  .employee-content
  .employee-graphics
  .stat-image:nth-child(3) {
  top: 362px;
  left: 65px;
}

@media (max-width: 768px) {
  .employee-section {
    padding: 65px 11px 0px 11px;
  }

  .employee-section .employee-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .employee-section .employee-content .employee-graphics {
    min-width: 100%;
    min-height: fit-content;
  }
  
  .employee-section .employee-content .employee-stats {
    width: 100%;
  }

  .mobile-section {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(200, 255, 201, 0.5) 34%,
      rgba(245, 178, 78, 0.2) 72%,
      rgba(255, 255, 255, 0.5) 100%
    );
    padding: 32px 48px;
    border-radius: 12px;
    text-align: center;
    min-height: 500px;
  }

  .mobile-section .mobile-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .mobile-section .mobile-content .stat-image {
    width: 100%;
    height: auto;
  }

  .mobile-section .mobile-content p {
    font-size: 16px;
    padding: 0 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .employee-section {
    width: 100%;
    padding: 65px;
    text-align: center;
  }

  .employee-section .employee-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
  }

  .employee-section .employee-content .employee-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .employee-section .employee-content .employee-stats .header2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 28px;
    align-self: center;
    margin-left: 0px;
  }

  .employee-section .employee-content .employee-graphics {
    width: 100%;
    min-height: 700px;
  }

  .employee-section .employee-content .employee-graphics .stat-image {
    width: 45%;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(1) {
    top: 35px;
    left: 50px;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(2) {
    top: 170px;
    right: 30px;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(3) {
    top: 400px;
    left: 50px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {

  .employee-section .employee-content .employee-stats {
    width: 45%;
  }

  .employee-section .employee-content .employee-graphics {
    width: 55%;
    min-height: 500px;
    min-width: 301px;
  }

  .employee-section .employee-content .employee-graphics .stat-image {
    width: 50%;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(1) {
    top: 25px;
    left: 12px;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(2) {
    top: 130px;
    right: 10px;
  }

  .employee-section
    .employee-content
    .employee-graphics
    .stat-image:nth-child(3) {
    top: 302px;
    left: 15px;
  }
}
