/* From Uiverse.io by adamgiebl */ 
.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #ff770f;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .dot:last-child {
    margin-right: 0;
  }
  
  .dot:nth-child(1) {
    animation-delay: -0.3s;
  }
  
  .dot:nth-child(2) {
    animation-delay: -0.1s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.1s;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.8);
      background-color: #ff815a;
      box-shadow: 0 0 0 0 rgba(240, 90, 43, 0.7);
      opacity: 0.7;
    }
  
    50% {
      transform: scale(1.2);
      background-color: #ff770f;
      box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
      opacity: 1;
    }
  
    100% {
      transform: scale(0.8);
      background-color: #ff815a;
      box-shadow: 0 0 0 0 rgba(240, 90, 43, 0.7);
      opacity: 0.7;
    }
  }

  /* Navigation Active State */
.tp-main-menu-content ul li a.active,
.tp-main-menu-content ul li a:hover {
    color: #ff770f;
}

.tp-main-menu-content ul li.active > a {
    color: #ff770f;
}


@font-face {
    font-family: 'Chinese Font';
    src: url('../fonts/chinese.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  /* Example usage of the Chinese font */
  .dqs-cn-title {
    font-family: 'Chinese Font', sans-serif;
  }


  .grid {
    min-height: 500px;
    transition: min-height 0.4s ease-in-out;
  }
  
  .tp-pagination-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .tp-page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ff770f;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
  }
  
  .tp-page-btn.active,
  .tp-page-btn:hover {
    background-color: #ff770f;
    color: #fff;
    border-color: #fff;
  }

  .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  #video-play-button {
    background-color: #ff770f;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  #video-play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);

  }
  #video-play-button i:hover {

    color: #ff770f;
  }
  
  
  #video-play-button i {
    font-size: 30px;
    color: #fff;
    margin-left: 5px; /* Slight adjustment for the play icon */
  }
  
  .tp-video-3-wrap.playing #video-play-button {
    opacity: 0;
    visibility: hidden;
  }

  .tp-footer-3-social a.xhs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .tp-footer-3-social a.social-icon img {
    width: 40px;
    height: 40px;
    max-width: 100%;
  }

  .ab-about-content p.tp-dropcap {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%; /* Adjust this value as needed */
    text-wrap: pretty;
  }