@charset "UTF-8";
.home-about,
.home-about > span,
.home-about:hover,
.home-about:hover > span {border-radius:50%;}

#client-logos {
  /* 使用 Flexbox 布局 */
  display: flex;
  
  /* 確保容器可以突破其父容器，達到全寬 */
  width: 99vw;
  
  /* 讓容器與瀏覽器視窗的左邊對齊 */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  
  /* 這裡設定容器的高度，您可以根據需求調整 */
  height: 600px;
}

#client-logos iframe {
  /* 讓 iframe 填滿父容器的寬度和高度 */
  width: 100%;
  height: 100%;
  
  /* 確保 iframe 寬度能與父容器同步 */
  flex-grow: 1;
  
  /* 移除邊框 */
  border: 0;
}
 /*固定FB按讚分享容器高度*/
.fb-share-button {
  height: 70px;
}
.text-line-height {
  line-height: 1.5; /* 設定行距為字體大小的 1.5 倍 */
}
.parallax-background1 {
  /* 預設樣式 */
  background-position: center center !important;
  background-size: cover !important;
}

/* 針對小於 768px 的裝置（例如手機）*/
@media (max-width: 768px) {
  .parallax-background1 {
    background-position: center top;
  }
}
