@import url("https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css");
body {
  font-family: 'cwTeXFangSong', serif;
  color: #fff;
  background: url(../assets/images/bg-main.jpg) repeat-y center/100% fixed, #32355c;
  background-blend-mode: multiply;
}

@media (max-width: 576px) {
  body {
    background-attachment: unset;
  }
}

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

p {
  font-size: 16px;
  line-height: 2;
}

.link-item {
  text-transform: uppercase;
}

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

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

section {
  padding: 75px 0;
}

h2 {
  font-size: 40px;
  line-height: 1;
  position: relative;
  margin-bottom: 30px;
}

h2 span {
  font-size: 0.8em;
  filter: brightness(0.8);
  text-transform: uppercase;
}

@media (max-width: 992px) {
  h2 {
    font-size: 28px;
  }
}

.obj-cover {
  object-fit: cover;
}

.obj-contain {
  object-fit: contain;
}

.obj-center {
  object-position: center;
}

.img-absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sidebar {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

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

.sidebar ul li {
  margin-bottom: 16px;
}

.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;
}

@media (max-width: 992px) {
  .sidebar {
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .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%;
}

@media (max-width: 992px) {
  header .navbar {
    background: #111;
  }
}

header .navbar .navbar-brand img {
  width: 200px;
  filter: invert(1);
}

header .navbar .navbar-brand span {
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 4px double #929292;
  letter-spacing: 3px;
  margin-left: -3px;
  display: none;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding-left: 30px;
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(45deg);
  background: #999;
  width: 8px;
  height: 8px;
  opacity: 0;
}

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

header .navbar.scrolled {
  background: #111;
}

.hero {
  position: relative;
}

.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
  filter: drop-shadow(0 3px 5px #000);
}

.hero .hero-content h1 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 30px;
}

.hero .hero-content h1 small {
  font-size: 40px;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 44px;
  }
  .hero .hero-content h1 small {
    font-size: 24px;
  }
}

.hero .hero-content p {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0 10px;
}

.hero .hero-img {
  width: 100%;
  height: 100vh;
}

@media (max-width: 1200px) {
  .hero .hero-img {
    height: 80vh;
  }
}

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

section .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
  padding-top: 80px;
}

section .scroll-down:hover {
  opacity: .5;
}

section .scroll-down .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

section .scroll-down .arrow:nth-of-type(1) {
  animation-delay: 0s;
}

section .scroll-down .arrow:nth-of-type(2) {
  top: 16px;
  animation-delay: .15s;
}

section .scroll-down .arrow:nth-of-type(3) {
  top: 32px;
  animation-delay: .3s;
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.about .banner {
  background: url(../assets/images/about/1.jpg) no-repeat center/cover fixed, #1d202e;
  background-blend-mode: multiply;
}

.about .banner .content {
  padding: 10vh 5vw;
  max-width: 800px;
}

@media (max-width: 992px) {
  .about .banner .content {
    padding: 5rem 1.5rem;
  }
}

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

@media (max-width: 992px) {
  .about {
    padding: 0;
  }
}

.featurette .featurette-divider {
  margin: 5rem 0;
  /* Space out the Bootstrap <hr> more */
}

.featurette .featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
  font-size: 36px;
}

@media (max-width: 1200px) {
  .featurette .featurette-heading {
    font-size: 24px;
  }
}

.services .item {
  position: relative;
  display: block;
}

.services .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.7);
  transition: 0.4s;
}

.services .item img:hover {
  filter: brightness(1);
}

.services .item .info {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  z-index: 2;
  color: #fff;
  display: flex;
}

.portfolio .masonry {
  column-width: 300px;
  column-gap: 15px;
}

.portfolio .masonry .item {
  margin-bottom: 15px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #aaa;
  padding: 5px;
  transition: 0.4s;
}

.portfolio .masonry .item:hover {
  padding: 0;
}

.news .position-sticky {
  top: 100px;
}

@media (max-width: 1200px) {
  .news .position-sticky {
    top: 0px;
  }
}

.contact address ul li a {
  color: unset;
}

.contact .sns a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  border: 1px solid transparent;
}

.contact .sns a svg {
  fill: #acacac;
}

.contact .sns a:hover {
  border: 1px solid #eee;
}

.contact .sns a:hover svg {
  fill: #eee;
}

@media (max-width: 992px) {
  .contact .sns a {
    border: 1px solid #acacac;
  }
}

footer {
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  footer {
    margin-bottom: 50px;
  }
}
/*# sourceMappingURL=all.css.map */