.video-intro-container {
  margin-bottom: 250px;
}
.video-intro-container button {
  text-decoration: none;
  color: #484848;
  background-color: #fff;
  font-weight: 500;
  font-size: 1.25rem; /* 20px */
  border: 1px solid #bfbfbf;
  padding: 0px 24px;
  border-radius: 50px;
  gap: 1rem;
  width: 250px;
  height: 60px;
  transition: all 0.2s ease-in;
}
.video-intro {
  aspect-ratio: 16/9;
  height: 100%;
}
.video-intro-trigger {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.video-intro-trigger .video-trigger-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-intro-trigger .video-trigger-icon img {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 100%;
  animation: pulse-icon 1.5s infinite ease-in-out;
}
@keyframes pulse-icon {
  0% {
    transform: scale(1); /* Start at original size */
  }
  50% {
    transform: scale(1.05); /* Scale up by 15% */
  }
  100% {
    transform: scale(1); /* Return to original size */
  }
}
.video-intro-container button svg {
  margin-right: 10px;
  transition: all 0.2s ease-in;
}
.video-intro-container button:hover {
  background-color: #f1fffe;
  border-color: #138483;
}
.video-intro-container button:hover svg {
  margin-right: 0px;
}
.video-intro-container h2 {
  color: #000;
  font-size: 3.25rem;
}
.video-intro-container p {
  color: #343434;
  font-size: 1.125rem;
  line-height: 2.5rem;
  padding-block: 10px 20px;
}
#intro-modal .modal-dialog {
  max-width: 1320px;
  width: 95%;
  max-height: 90dvh;
  aspect-ratio: 16/9;
}
#intro-modal .modal-dialog .modal-header {
  padding: 0;
  border: 0;
}
#intro-modal .modal-dialog .modal-body {
  display: flex;
  align-items: center;
}
#intro-modal .modal-dialog .modal-header .btn-close {
  position: absolute;
  background-color: #fff;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  opacity: 0.7;
  z-index: 999;
}
#intro-modal .modal-dialog .modal-header .btn-close:hover {
  opacity: 1;
}

/* responsive styles */
@media screen and (max-width: 576px) {
  .video-intro-container {
    margin-bottom: 150px;
  }
  .video-intro-container h2 {
    font-size: 1.875rem;
  }
  .video-intro-container p {
    font-size: 1rem;
    line-height: 2rem;
  }
  .video-intro-container button {
    font-size: 1rem; /* 16px */
    margin-inline: auto;
  }
  .video-intro-trigger .video-trigger-icon img {
    width: 80px;
    height: 80px;
  }
  #intro-modal .modal-dialog .modal-body {
    padding: 0;
  }
  #intro-modal .modal-dialog .modal-header .btn-close {
    top: -30px;
    right: 0px;
    width: 20px;
    height: 20px;
  }
}
