/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.title span {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.title span:nth-child(1) {
  animation-delay: 0.1s;
}

.title span:nth-child(2) {
  animation-delay: 0.3s;
}

.title span:nth-child(3) {
  animation-delay: 0.5s;
}

.title span:nth-child(4) {
  animation-delay: 0.7s;
}

.contact-info {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1s forwards;
}

.coming-soon {
  opacity: 0;
  animation: fadeIn 0.8s ease-out 1.5s forwards;
}

.shape {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.shape-w {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.shape:nth-child(1) {
  animation-delay: 1.2s;
}

.shape:nth-child(2) {
  animation-delay: 1.3s;
}

.shape:nth-child(3) {
  animation-delay: 1.4s;
}

.shape:nth-child(4) {
  animation-delay: 1.5s;
}

.shape:nth-child(5) {
  animation-delay: 1.6s;
}

.shape:nth-child(6) {
  animation-delay: 1.7s;
}

.shape-w:nth-child(1) {
  animation-delay: 1.2s;
}

.shape-w:nth-child(2) {
  animation-delay: 1.3s;
}

.shape-w:nth-child(3) {
  animation-delay: 1.4s;
}

.shape-w:nth-child(4) {
  animation-delay: 1.5s;
}

.shape-w:nth-child(5) {
  animation-delay: 1.6s;
}

.shape-w:nth-child(6) {
  animation-delay: 1.7s;
}