/* .wave-header {
  position:relative;
  text-align:center;
  background: linear-gradient(60deg, rgb(219 214 239) 0%, rgb(13, 46, 104)
		100%);
  color:white;
}

.inner-header {
  height:80vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { Flexbox for containers
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; Fix for safari gap
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

Animation

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}


@media (max-height: 768px) {
.inner-header {
  height: 90vh;
}
}

Shrinking for mobile
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
  
  
.inner-header {
  height: 90vh;
}
}












 */



.section-infographic {
  height: 800px;

  padding: 30px;
/*   background-color: #e8eefc; */
}

@media ( max-width : 768px) {
	.section-infographic {
  height: 1000px;
 padding: 0px;
}
	
	}

.infographic-content p a{
	font-size:1.3rem;
}

.infographic1-inner h5 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.8;
  margin: 0;
}

.infographic1-inner p {
  color: #373737;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.row-infographic1 {
  text-align: center;
  font-family: Sans-serif;
}

.infographic1-container-desktop {
  display: visible;
}

.infographic {
  position: relative;
  width: 500px;
  display: inline-block;
}

.box-1 {
  position: absolute;
  top: 80px;
  right: 400px;
  z-index: 2;
  text-align: right;
}

.box-2 {
  position: absolute;
  top: 430px;
  left: 20px;
  z-index: 2;
  text-align: center;
}

.box-3 {
  position: absolute;
  top: 135px;
  left: 425px;
  z-index: 2;
  text-align: left;
}

.infographic1-inner {
  width: 400px;
  letter-spacing:-1px;
}
.inner-1 {
  padding-right: 98px;
}

.inner-3 {
  padding-left: 89px;
}

.number-1 {
  color: #00c3ff;
}

.number-2 {
  color: #004ee6;
  margin-bottom: 20px;
}

.number-3 {
  color: #fe4c1c;
}

.circle-logo {
  position: absolute;
  top: 90px;
  left: -11px;
  z-index:-1;
}

.circle-logo img{
  width: 92%;
  opacity:0.5;
}


.infographic1-dot {
  margin-bottom: 10px;
/*   animation: pulse 2s infinite; */
animation: pulse 1.5s infinite ease-in-out;
  will-change: transform;
  
}

.dot-1 {
  background-color: #00c3ff;
  box-shadow: 8px 8px 18px 0px rgb(0 195 255 / 40%);
  content: "";
  margin-bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

.dot-2 {
  background-color: #004ee6;
  box-shadow: 8px 8px 18px 0px rgb(0 78 230 / 40%);
  content: "";
  margin-bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

.dot-3 {
  background-color: #fe4c1c;
  box-shadow: 8px 8px 18px 0px rgb(254 76 28 / 40%);
  content: "";
  margin-bottom: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

/* .infographic1-number {
  width: 90px;
  height: 90px;
  line-height: 90px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 6px 6px 13px 0px rgb(42 67 113 / 15%);
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
} */

.infographic1-number {
  width: 200px;
  height: 70px;
  line-height: 70px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 6px 6px 13px 0px rgb(42 67 113 / 15%);
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
}


.infographic1-box.box-1 h5:hover {
  color: #00c3ff;
  transition: color 0.3s ease;
}

.infographic1-box.box-2 h5:hover {
  color: #004ee6;
  transition: color 0.3s ease;
}

.infographic1-box.box-3 h5:hover {
  color: #fe4c1c;
  transition: color 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}



@media screen and (max-width: 1110px) {

.inner-1 {
  padding-right: 100px;
}

.inner-3 {
  padding-left: 70px;
}

  .circle-logo {
  position: absolute;
  top: 120px;
  left: 0px;
  z-index:-1;
}

.circle-logo img{
  width:70%;

}

		.infographic-content p a{
	font-size:1.1rem;
}
	
  
}


@media screen and (max-width: 980px) {

.inner-1 {
  padding-right: 38px;
}

.inner-3 {
  padding-left: 29px;
}


	
}


@media screen and (max-width: 870px) {

.inner-1 {
  padding-right: 38px;
}

.inner-3 {
  padding-left: 9px;
}

  .infographic1-inner.inner-1, .infographic1-inner.inner-3 {
 width:200px;
}
  
}



@media screen and (max-width: 768px) {

  
  .infographic {
    position: static;
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .infographic1-box {
    position: static !important;
    text-align: center !important;
    margin: 40px 0;
  }

  .infographic1-inner {
    width: auto !important;
    padding: 0 !important;
  }

  .circle-logo {
    display: none;
  }

  .ot-cprocess-circle-chart {
    display: none; /* Ã¬Å¾â€˜Ã¬Ââ‚¬ Ã­â„¢â€Ã«Â©Â´Ã¬â€”ÂÃ¬â€žÅ“Ã«Å â€ SVG Ã¬â€ºÂÃ­Ëœâ€¢ Ã¬Â°Â¨Ã­Å Â¸ Ã¬Ë†Â¨ÃªÂ¹â‚¬ */
  }

  .number-1,
  .number-2,
  .number-3 {
    margin-bottom: 10px;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}


.infographic-content p {
  position: relative; /* position ì†ì„± ì¶”ê°€ */
  transition: transform 0.3s ease-in-out; /* ë³€í™˜ íš¨ê³¼ì— ì• ë‹ˆë©”ì´ì…˜ ì ìš© */
}

.infographic-content p:hover {
  transform: translateY(-5px); /* ë§ˆìš°ìŠ¤ í˜¸ë²„ ì‹œ ìœ„ë¡œ 5px ì´ë™ */
}

