@charset "UTF-8";
body {
  padding-top: 70px;
}

.tech-bg {
  position: relative;
}
.tech-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("../images/tech-bg-top.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.tech-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("../images/tech-bg-bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.our-service {
  position: relative;
}
.our-service.home-page-our-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/service-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.our-service.home-page-our-service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/service-bg-bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .our-service.home-page-our-service::before, .our-service.home-page-our-service::after {
    background-image: none;
  }
}
.our-service .service-content .service-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-service .service-content .service-item .service-icon {
  transition: 0.3s;
  background-color: #316bb0;
}
.our-service .service-content .service-item .service-title {
  transition: 0.3s;
}
.our-service .service-content .service-item:hover .service-title {
  transition: 0.3s;
  color: #316bb0;
}
.our-service .service-content .service-item:hover .service-icon {
  transition: 0.3s;
  background-color: #33a3ff;
}

@media (width >= 96rem) {
  .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  footer .footer-col:not(:last-child) {
    border-bottom: 1px dashed #8a8a8a;
    -o-border-image: repeating-linear-gradient(to right, #8a8a8a 0, #8a8a8a 10px, transparent 10px, transparent 20px) 1;
       border-image: repeating-linear-gradient(to right, #8a8a8a 0, #8a8a8a 10px, transparent 10px, transparent 20px) 1;
    border-image-slice: 0 0 1 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.service-page-title {
  background-image: url("../images/page-title-service.jpg");
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.about-page-title {
  background-image: url("../images/page-title-about.jpg");
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.projects-page-title {
  background-image: url("../images/page-title-projects.jpg");
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  transition: transform 0.3s ease;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4px;
  background-color: black;
  color: white;
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 0.4;
}

/* 導航按鈕 */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 140, 255, 0.8) !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: rgb(0, 140, 255) !important;
}

.owl-nav .owl-prev {
  left: -20px;
}

.owl-nav .owl-next {
  right: -20px;
}

/* 分頁點 */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #316bb0 !important;
  width: 25px;
  border-radius: 5px;
}

.project-title {
  position: relative;
  display: flex;
  align-items: center;
}
.project-title::after {
  content: "";
  flex: 1;
  border-top: 1px solid #316bb0;
  margin-left: 15px;
}/*# sourceMappingURL=main.css.map */