.medical-device {
  padding: 1.2rem;
}

.span {
  color: #00174d;
}

.globe-section {
  margin-top: 3rem;
  padding: 1.2rem;

}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s ease-out;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgb(6 99 177);
}

.video-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--insuco-primary, #00206e)), color-stop(51%, var(--insuco-base, #00accc)), to(var(--insuco-primary, #00206e)));
  background-size: 300% 300%;
  z-index: 0;
  animation: borderGlow 6s linear infinite;
  filter: blur(10px);
}

.video-container video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.content-detail {
  background: #f0f8ff;
}

.content-detail .company h2 {
  color: #00174d;
}

.why-choose-us ul li {
  margin-right: 15px;
}

ol,
ul {
  padding-left: 0rem;
}

.strct-section .fw-bold::before {
  content: "";
  margin-right: 1rem;
  background: #00accc;
  ;
  color: white;
  transform: rotate(45deg);
  padding: 9px 9px;
  display: inline-block;

}

.strct-section ul {
  padding-left: 2rem;
  margin-top: 1rem;
}

.validity {
  padding: 1rem;
}