/* scss/module/_index.scss */
@keyframes scroll-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
/* media query */
/* centering */
/* set top position of pseudo element */
/* set pseudo element(no image) */
/* set pseudo element */
/* font set */
#process_wrap #hero {
  overflow: hidden;
  background: url(/wp-content/themes/cocoon-child-master/library/img/process/bg_process.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
#process_wrap #hero .flex {
  height: 100%;
  justify-content: left;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 120px;
}
#process_wrap #hero-content {
  background: #00223f;
  border-radius: 8px;
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
#process_wrap #hero-content h1 {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
#process_wrap #hero-content > p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
#process_wrap #hero-btn {
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: bold;
  color: #00223f;
  font-family: inherit;
}
#process_wrap #hero-btn svg {
  width: 24px;
  height: 24px;
}
#process_wrap #hero-btn:hover {
  color: #fff;
}
#process_wrap #main {
  background: #fff;
}
#process_wrap #solutions {
  width: 100%;
  max-width: 1054px;
  margin: 0 auto;
  padding: 60px 15px;
}
#process_wrap #solutions h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
#process_wrap #cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
@media (max-width: 768px) {
  #process_wrap #cards {
    flex-direction: column;
  }
}
#process_wrap .card {
  width: 324px;
  background: #0093d4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #fff;
}
@media (max-width: 768px) {
  #process_wrap .card {
    width: 100%;
  }
}
#process_wrap .card h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
#process_wrap .card > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
#process_wrap .card-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
#process_wrap .card-link .badge {
  background: #fff;
  color: #0093d4;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
#process_wrap .card-link .line {
  flex: 1;
  height: 2px;
  background: #fff;
}
#process_wrap .card-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
#process_wrap .card-footer svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
#process_wrap .card-footer a {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: #fff;
}
#process_wrap .card-footer a:hover {
  color: #ffab40;
}