@keyframes text-clip {
  from {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes outer-left {
  from {
    transform: translateX(50%);
  }
  to {
    transform: none;
  }
}
@keyframes inner-left {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: none;
  }
}
.image-anim {
  grid-row: 1;
  grid-column: 2;
  margin-left: -2rem;
  opacity: 0.7;
  animation: image-in 1s cubic-bezier(0.5, 0, 0.1, 1) 2s backwards;
}
@keyframes image-in {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.image-anim img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: #d90505;
}

.bg-primary {
  background-color: #d90505 !important;
}

.btn-outline-primary {
  border-color: #d90505 !important;
  color: #d90505 !important;
}

.animate {
  animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
}

.btn-primary {
  background-color: #d90505 !important;
  border-color: #d90505;
  color: white;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #f20606 !important;
  border-color: #d90505;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  background-color: #d90505 !important;
  color: white !important;
}

.header-offset {
  padding-top: 110px;
}

.page-top {
  padding-top: 103px;
}

.page-header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-position: center;
  background-size: cover;
  margin-bottom: 2rem;
  background-color: #dee2e6;
}
.page-header .page-title {
  margin: 0;
}
.page-header .page-subtitle {
  line-height: 1;
}

#mainNav {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  border-bottom: 4px #d90505 solid;
}

#mainNav .navbar-brand {
  color: #fff;
}

#mainCarousel {
  margin-top: 60px;
}

#mainCarousel .carousel-item {
  height: 480px;
  padding-top: 40px;
  padding-bottom: 40px;
}

#mainNav .navbar-nav {
  margin-top: 1rem;
}

#mainNav .navbar-nav li.nav-item a.nav-link {
  color: #6c757d;
}

#mainNav .navbar-nav li.nav-item a.nav-link:hover {
  color: #d90505;
}

#mainNav .navbar-nav li.nav-item a.nav-link:active, #mainNav .navbar-nav li.nav-item a.nav-link:focus {
  color: #fff;
}

#mainNav .navbar-nav li.nav-item a.nav-link.active {
  color: #d90505;
}

#mainNav .navbar-toggler {
  font-size: 80%;
  padding: 0.8rem;
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: padding-top 0.3s, padding-bottom 0.3s;
  }

  #mainNav .navbar-brand {
    font-size: 1.75em;
    transition: font-size 0.3s;
  }

  #mainNav .navbar-nav {
    margin-top: 0;
  }

  #mainNav .navbar-nav > li.nav-item > a.nav-link.active {
    color: #fff;
    background: #d90505;
  }

  #mainNav .navbar-nav > li.nav-item > a.nav-link.active:active, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus, #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
    color: #fff;
    background: #d90505;
  }

  #mainNav.navbar-shrink {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  #mainNav.navbar-shrink .navbar-brand {
    font-size: 1.5em;
  }
}
.form-group {
  margin-bottom: 0.5rem;
}

.form-label {
  color: #6c757d;
}

.form-floating input.form-control,
.form-floating textarea.form-control {
  font-size: 1.5rem;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  border-width: 1px;
}

.form-floating input.form-control:focus,
.form-floating textarea.form-control:focus {
  box-shadow: none;
}

.form-floating label {
  font-size: 1.5rem;
  color: #6c757d;
}

.masthead {
  padding-top: calc(6rem + 74px);
  padding-bottom: 6rem;
}

.masthead .masthead-heading {
  font-size: 2.75rem;
  line-height: 2.75rem;
}

.masthead .masthead-subheading {
  font-size: 1.25rem;
}

.masthead .masthead-avatar {
  width: 15rem;
}

@media (min-width: 992px) {
  .masthead {
    padding-top: calc(6rem + 104px);
    padding-bottom: 6rem;
  }

  .masthead .masthead-heading {
    font-size: 4rem;
    line-height: 3.5rem;
  }

  .masthead .masthead-subheading {
    font-size: 1.5rem;
  }
}
.portfolio .portfolio-item {
  cursor: pointer;
  position: relative;
  display: block;
  max-width: 25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-item-caption {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  background-color: rgba(26, 188, 156, 0.9);
}

.portfolio .portfolio-item .portfolio-item-caption:hover {
  opacity: 1;
}

.portfolio .portfolio-item .portfolio-item-caption .portfolio-item-caption-content {
  font-size: 1.5rem;
}

.portfolio-modal .btn-close {
  color: #d90505;
  font-size: 2rem;
  padding: 1rem;
}

.portfolio-modal .portfolio-modal-title {
  font-size: 2.25rem;
  line-height: 2rem;
}

@media (min-width: 992px) {
  .portfolio-modal .portfolio-modal-title {
    font-size: 3rem;
    line-height: 2.5rem;
  }
}
.footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #dee2e6 url("../img/skyline-tokyo-japan.png") left bottom repeat-x;
  color: gray;
}

.copyright {
  background-color: #1a252f;
}

.item-detail-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
  height: 2.4rem;
  vertical-align: top;
  overflow: hidden;
}

.carousel-img {
  width: 100%;
  object-fit: contain;
}

/*# sourceMappingURL=stylesheet.css.map */
