/* content */
#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 30px ;
    gap: clamp(50px, 5vw, 100px);
    font-family: 'Assistant', sans-serif;
    background-color: rgb(0, 27, 44);
}

#content h3 {
    color: rgb(228, 184, 63);
    font-weight: 700;
}

#content p {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 300;
    color: white;
}

.contentIcons {
  width: 40px;
}

/* Scrolling Animation - Transition  */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.3s;
}