@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;700;900&display=swap");
body {
  font: 16px/1.5 'Noto Serif TC';
  background: #000;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

main {
  margin-top: 88px;
}

@media (max-width: 1200px) {
  main {
    margin-top: 56px;
  }
}

section {
  overflow: hidden;
}

.section-padding {
  padding: 10vh 0;
}

.parallax {
  overflow: hidden;
  position: relative;
}

.parallax.h100 {
  width: 100%;
  height: 100vh;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.bg-banner {
  background: url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2783&q=80") no-repeat center/cover;
}

.lomo-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(transparent, #000);
  z-index: 1;
}

.sec-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}

.sec-ttl span {
  display: inline-block;
  font-size: 24px;
  letter-spacing: 3px;
  padding: 3px 9px 10px;
  position: relative;
  overflow-x: hidden;
}

.sec-ttl span::before {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 1px;
  background: #aaa;
  animation: sec-ttl-line 3s ease-in-out 0s infinite;
}

.sec-ttl span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0%;
  width: 120%;
  height: 1px;
  background: #aaa;
  animation: sec-ttl-line 5s ease-in-out 1s infinite;
}

@keyframes sec-ttl-line {
  0% {
    left: -100%;
  }
  25% {
    left: 0%;
  }
  50% {
    left: 100%;
  }
  75% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}

.sidebar {
  position: fixed;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #999;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.75;
  text-decoration: none;
}

.sidebar ul li a:hover {
  opacity: 1;
}

.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: 14px;
}

.sidebar ul li.facebook a {
  background: #73a4e6;
}

.sidebar ul li.facebook a:hover {
  background: #1877F2;
}

.sidebar ul li.line a {
  background: #71cf71;
}

.sidebar ul li.line a:hover {
  background: #00C300;
}

.sidebar ul li.totop a {
  background: #76899e;
}

.sidebar ul li.totop a:hover {
  background: #4C75A3;
}

@media (max-width: 992px) {
  .sidebar {
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(0%);
  }
  .sidebar ul {
    display: flex;
  }
  .sidebar ul li {
    flex-grow: 1;
    margin-bottom: 0;
  }
  .sidebar ul li a {
    opacity: 1;
    width: 100%;
    border-right: 1px solid #eee;
  }
  .sidebar ul li a span {
    display: inline-block;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-main {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 50px;
  margin: 20px auto 30px;
  background: transparent;
  border: 1px solid #fff;
  transition: 0.3s;
}

.btn-main:hover {
  border: 1px solid #0d6efd;
  background: #0d6efd;
  color: #fff;
}

header .navbar {
  background: #000;
}

header .navbar .navbar-brand img {
  width: 100px;
}

@media (max-width: 992px) {
  header .navbar .navbar-brand img {
    width: 100px;
  }
}

header .navbar .navbar-toggler {
  border: none;
}

header .navbar .navbar-toggler:focus {
  box-shadow: none;
}

header .navbar .navbar-collapse {
  margin-left: 50px;
}

@media (max-width: 1200px) {
  header .navbar .navbar-collapse {
    margin-left: 0;
    margin: 20px;
  }
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  padding-left: 2.5rem;
  padding-right: 1rem;
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%) rotate(45deg);
  background: url(../img/truck-wheel.png) no-repeat center/contain;
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
}

main {
  margin-top: 104px;
}

@media (max-width: 1200px) {
  main {
    margin-top: 78px;
  }
}

.hero .content {
  padding: 20vh 0px;
  position: relative;
  z-index: 2;
}

.hero .content h1 {
  height: 90px;
  overflow: hidden;
  vertical-align: baseline;
}

.hero .content h1 span {
  display: block;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  height: 90px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .hero .content h1 span {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

.hero .content h1 span:first-child {
  animation-name: ttl-carousel;
  animation-duration: 6s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
}

.hero .content p {
  color: #ccc;
}

@media (max-width: 992px) {
  .hero .content {
    padding-top: 5vh;
    text-align: center;
  }
  .hero .content h1 {
    font-size: 60px;
  }
  .hero .content h1 small {
    font-size: 30px;
  }
}

@keyframes ttl-carousel {
  0% {
    margin-top: 0px;
  }
  33% {
    margin-top: -90px;
  }
  66% {
    margin-top: -180px;
  }
  100% {
    margin-top: -270px;
  }
}

.about {
  background: url("https://images.unsplash.com/photo-1501166222995-ff31c7e93cef?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2834&q=80") repeat center/contain, rgba(0, 0, 0, 0.8);
  background-blend-mode: color;
}

.services {
  background: url(../img/bg-marble1.jpg) no-repeat center/cover fixed, #222;
  background-blend-mode: color-burn;
}

@media (max-width: 992px) {
  .services {
    background-attachment: unset;
    background-repeat: repeat;
  }
}

.services .content .svc-item {
  width: 100%;
  height: fit-content;
  padding: 25px 20px;
  border: 1px solid #aaa;
  box-shadow: inset 0 3px 15px #99999942;
  background-color: #000;
}

.services .content .svc-item img {
  margin-bottom: 20px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.services .content .svc-item h3 {
  font-size: 20px;
  text-align: center;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.services .content .svc-item p {
  text-align: justify;
}

.services .content .svc-item p:last-child {
  margin-bottom: 0;
}

.services .btn-main {
  font-size: 1rem;
  margin-bottom: 0;
  margin-top: 0;
}

.services .btn-main i {
  margin-right: .5rem;
  transition: .3s;
}

.services .btn-main:hover i {
  margin-right: 0;
  margin-left: .5rem;
}

.features .txt {
  padding: 10vh 15px;
  text-align: center;
  width: 100%;
}

.features .txt h4 {
  margin-bottom: 3rem;
}

.features .txt h4 strong {
  color: #444;
}

.features .txt h4 i {
  color: #444;
  display: inline-block;
}

.features .txt h4 i:last-child {
  transform: translateY(5px);
}

.features .txt h4 i:nth-child(1) {
  transform: translateY(-5px);
}

.features .txt ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features .txt p {
  color: #aaa;
  max-width: 500px;
  margin: 0 auto 30px;
}

.features img {
  height: 335px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(0.7);
}

.objpo_bottom {
  object-position: bottom;
}

.portfolio .masonry .item {
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .portfolio .masonry .item {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}

.portfolio .masonry .item a {
  display: inline-block;
  border: 1px solid #fff;
  padding: 5px;
  overflow: hidden;
  width: 100%;
  text-decoration: none;
}

.portfolio .masonry .item a img {
  transition: 0.4s;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.portfolio .masonry .item a:hover img {
  transform: scale(1.05);
}

.contact {
  background: url(../img/logo.png) no-repeat right center/100vw, #090909;
  background-blend-mode: overlay;
}

@media (max-width: 992px) {
  .contact {
    background-attachment: unset;
  }
}

.contact .link-item {
  padding: 30px 15px;
  margin: 15px auto;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.contact .link-item .icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-bottom: 20px;
}

.contact .link-item p {
  text-align: center;
  color: #aaa;
  margin-bottom: 0;
}

.contact .link-item:hover {
  background: #ffffff22;
}

.contact a {
  color: #fff;
  text-decoration: none;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 4px;
}

.contact a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.map {
  filter: grayscale(1) brightness(0.3);
  transition: 0.4s;
}

.map:hover {
  filter: grayscale(0) brightness(1);
}

footer {
  background: url(../img/bg-marble2.jpg) no-repeat center/cover, #111;
  background-blend-mode: overlay;
  font-size: 14px;
}
/*# sourceMappingURL=all.css.map */