@import url("https://fonts.googleapis.com/css?family=Abril+Fatface|Dancing+Script:400,700|Hind:300,500|Nunito+Sans:200,300,400,600|Playfair+Display:400,700,900|Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
/* font-family: 'Yeseva One', cursive;
font-family: 'Hind', sans-serif;
font-family: 'Barlow', sans-serif;
font-family: 'Dancing Script', cursive;
font-family: 'Abril Fatface', cursive;
font-family: 'Nunito Sans', sans-serif;
font-family: 'Playfair Display', serif; */
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body {
  background-color: #f7f7f7;
  font-family: "Playfair Display", serif;
  color: #1d1c1c;
}

.home-body {
  overflow: hidden;
}

.home-title {
  position: absolute;
  z-index: 10;
  top: 40%;
  left: 74%;
}

.logo {
  position: absolute;
  width: 5%;
  top: 1em;
  left: 1em;
  z-index: 3;
}

.home .txt {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.home .txt .btn {
  padding: 0.5em 1em;
  font-family: "Nunito Sans", sans-serif;
  border: 1px solid white;
  width: 7em;
  font-size: 1em;
  display: inline-block;
  margin: 1em auto;
  text-decoration: none;
  color: white;
}

.home .txt .btn:hover {
  background-color: white;
  color: black;
}

.home .txt h2 {
  font-size: 2.5em;
}

.home .txt h2 .nowOnSale {
  font-size: 0.65em;
}

.home .txt h2 .aiTitle {
  font-size: 0.8em;
}

.home .txt h3 {
  font-size: 1.4em;
  margin: 1em 0;
}

.home .txt .contact-mail {
  font-size: 1.5em;
}

.home .txt .contact-mail > a {
  color: white;
  text-decoration: none;
}

/* Loading...*/
#bm {
  width: 100vw;
  height: 100vh;
}

.loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.loading__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7%;
}

/* ====================================
Navigation 
==================================== */
.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(249, 249, 246, 0.8);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.overlay-slide-down {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.overlay-slide-up {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

nav,
nav ul {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

nav ul li {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

nav li a {
  position: relative;
  top: 46%;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1rem;
}

nav li a:hover {
  text-decoration: line-through;
}

nav li:nth-of-type(1) {
  background-color: #d8ae4e;
}

nav li:nth-of-type(2) {
  background-color: #82aeb4;
}

nav li:nth-of-type(3) {
  background-color: #e7c6de;
}

nav li:nth-of-type(4) {
  background-color: #e0b37a;
}

nav li:nth-of-type(5) {
  background-color: #aea045;
}

.slide-in-nav-item {
  -webkit-animation: slide-in-nav-item 0.4s linear 1 0.2s both;
          animation: slide-in-nav-item 0.4s linear 1 0.2s both;
}

.slide-in-nav-item-delay-1 {
  -webkit-animation: slide-in-nav-item 0.4s linear 1 0.4s both;
          animation: slide-in-nav-item 0.4s linear 1 0.4s both;
}

.slide-in-nav-item-delay-2 {
  -webkit-animation: slide-in-nav-item 0.4s linear 1 0.6s both;
          animation: slide-in-nav-item 0.4s linear 1 0.6s both;
}

.slide-in-nav-item-delay-3 {
  -webkit-animation: slide-in-nav-item 0.4s linear 1 0.8s both;
          animation: slide-in-nav-item 0.4s linear 1 0.8s both;
}

.slide-in-nav-item-delay-4 {
  -webkit-animation: slide-in-nav-item 0.4s linear 1 1s both;
          animation: slide-in-nav-item 0.4s linear 1 1s both;
}

.slide-in-nav-item-reverse {
  -webkit-animation: slide-in-nav-item-reverse 0.3s linear 1 0.5s both;
          animation: slide-in-nav-item-reverse 0.3s linear 1 0.5s both;
}

.slide-in-nav-item-delay-1-reverse {
  -webkit-animation: slide-in-nav-item-reverse 0.3s linear 1 0.4s both;
          animation: slide-in-nav-item-reverse 0.3s linear 1 0.4s both;
}

.slide-in-nav-item-delay-2-reverse {
  -webkit-animation: slide-in-nav-item-reverse 0.3s linear 1 0.3s both;
          animation: slide-in-nav-item-reverse 0.3s linear 1 0.3s both;
}

.slide-in-nav-item-delay-3-reverse {
  -webkit-animation: slide-in-nav-item-reverse 0.3s linear 1 0.2s both;
          animation: slide-in-nav-item-reverse 0.3s linear 1 0.2s both;
}

.slide-in-nav-item-delay-4-reverse {
  -webkit-animation: slide-in-nav-item-reverse 0.3s linear 1 both;
          animation: slide-in-nav-item-reverse 0.3s linear 1 both;
}

/* ====================================
Humburgar
==================================== */
.open-overlay {
  position: absolute;
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: #050505;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  -webkit-animation: animate-top-bar 0.6s linear 1 both;
          animation: animate-top-bar 0.6s linear 1 both;
}

.animate-bottom-bar {
  -webkit-animation: animate-bottom-bar 0.6s linear 1 both;
          animation: animate-bottom-bar 0.6s linear 1 both;
}

.animate-middle-bar {
  -webkit-animation: animate-middle-bar 0.6s linear 1 both;
          animation: animate-middle-bar 0.6s linear 1 both;
}

.animate-out-top-bar {
  -webkit-animation: animate-out-top-bar 0.6s linear 1 both;
          animation: animate-out-top-bar 0.6s linear 1 both;
}

.animate-out-bottom-bar {
  -webkit-animation: animate-out-bottom-bar 0.6s linear 1 both;
          animation: animate-out-bottom-bar 0.6s linear 1 both;
}

.animate-out-middle-bar {
  -webkit-animation: animate-out-middle-bar 0.6s linear 1 both;
          animation: animate-out-middle-bar 0.6s linear 1 both;
}

/* ====================================
Animation keyframes
==================================== */
@-webkit-keyframes slide-in-nav-item {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-in-nav-item {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-in-nav-item-reverse {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slide-in-nav-item-reverse {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363b;
  }
}

@keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363b;
  }
}

@-webkit-keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363b;
  }
}

@keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363b;
  }
}

@-webkit-keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #29363b;
  }
}

@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #29363b;
  }
}

@-webkit-keyframes animate-out-top-bar {
  0% {
    background-color: #29363b;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #29363b;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #020202;
  }
}

@keyframes animate-out-top-bar {
  0% {
    background-color: #29363b;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #29363b;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #020202;
  }
}

@-webkit-keyframes animate-out-bottom-bar {
  0% {
    background-color: #29363b;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #29363b;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #020202;
  }
}

@keyframes animate-out-bottom-bar {
  0% {
    background-color: #29363b;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #29363b;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #020202;
  }
}

@-webkit-keyframes animate-out-middle-bar {
  0% {
    background-color: #29363b;
  }
  80% {
    background-color: #29363b;
  }
  100% {
    background-color: #020202;
  }
}

@keyframes animate-out-middle-bar {
  0% {
    background-color: #29363b;
  }
  80% {
    background-color: #29363b;
  }
  100% {
    background-color: #020202;
  }
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  color: white;
  z-index: 2;
}

.swiper-container,
.swiper-wrapper {
  width: 100vw;
  height: 100vh;
}

img {
  width: 100%;
  height: auto;
}

.swiper-slide {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/matchacrep.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: rgba(15, 15, 5, 0.299);
}

.swiper-slide:nth-child(1) {
  width: 100vw;
  height: auto;
  background-image: url("../img/book_cover.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide:nth-child(2) {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/pumpkin.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide:nth-child(3) {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/cutchocoshort.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide:nth-child(4) {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/duq.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide:nth-child(5) {
  width: 100vw;
  height: 100vh;
  background-image: url("../img/siffon.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* About */
.about {
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  min-height: calc(100vh - 70px);
}

.about-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about-banner-left {
  width: 50vw;
  min-height: 100vh;
  background-image: url("../img/aiback.jpg");
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-banner-right {
  width: 50vw;
  min-height: 100vh;
  background-image: url("../img/matchapowder.jpg");
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-title {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #0a0a0a;
}

.about-title h1 {
  letter-spacing: 0.2em;
  font-size: 5vw;
}

.about-title h2 {
  text-align: center;
  font-size: 1vw;
  letter-spacing: 0.2em;
}

.about-container {
  font-weight: 100;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 5em 0;
}

strong {
  color: #202020ec;
  font-size: 1.8em;
  letter-spacing: 0.05em;
  line-height: 0.8em;
}

.about-container__quote {
  position: absolute;
  top: 10%;
  left: 6%;
  width: 45%;
}

.about-container__txt {
  width: 60vw;
}

.about-container__txt p {
  color: #888;
  padding: 10%;
  line-height: 2em;
  padding-top: 15em;
}

.about-container__img {
  width: 38vw;
  padding-top: 5em;
}

.foto {
  position: absolute;
  top: 111%;
  left: 78%;
  font-size: 0.7em;
  color: #888;
}

.bg-container {
  width: 80%;
  background-color: #c3c7d3;
}

.about-ai {
  width: 100%;
  padding-top: 10%;
  margin-top: 8%;
  margin-left: 19%;
  margin-bottom: -13%;
}

.about-main-container {
  margin: 10em 0;
}

.about-main-container .about-main-container__txt {
  font-family: "Nunito Sans", sans-serif;
  width: 60%;
  margin: 0 auto;
  color: #888;
}

.strong-txt {
  font-size: 1.3em;
  margin: 3% auto;
}

.about-main-container__txt p {
  line-height: 1.6em;
}

.jp_txt {
  text-align: right;
  font-size: 0.7em;
}

/* end of about */
/* gallery */
.gallery {
  min-height: calc(100vh - 50px);
  background-color: #f7f7f7;
}

.gallery-banner {
  width: 100vw;
  min-height: 100vh;
  background-image: url("../img/chocolacake.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-banner h1 {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 5vw;
}

.gallery-banner::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.24);
}

.flex-gallery-container {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 5em;
}

.flex-gallery-container .flex-gallery-container__box {
  position: relative;
}

.flex-gallery-container .img-box {
  width: 26vw;
  margin-top: 4vw;
  overflow: hidden;
}

.flex-gallery-container .img-box img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.flex-gallery-container .img-box:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  opacity: 0.9;
}

.flex-gallery-container h3 {
  opacity: 0;
  position: absolute;
  top: 90%;
  left: 15%;
  font-size: 1.5em;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  color: #202020ec;
}

.flex-gallery-container .img-box:hover + h3 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* end of gallery */
/* work */
.work {
  min-height: calc(100vh - 70px);
}

.work-header {
  background-color: #fff;
  width: 100vw;
  min-height: 100vh;
  background-image: url("../img/hand.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: contain;
  background-position: right top;
  position: relative;
}

.work-header h1 {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 5vw;
}

.work-header::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.24);
}

.work-main {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.work-main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.work-main-box .left {
  z-index: 2;
  width: 30vw;
  height: 70vh;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border-left: 1px solid black;
}

.work-main-box .left h2 {
  font-size: 3.5em;
  padding: 0 4vh;
}

.work-main-box .bakverk {
  background-image: url("../img/cookbook.jpg");
  width: 30vw;
}

.work-main-box .asiatiska {
  background-image: url("../img/ostasiatiska.jpg");
  width: 30vw;
}

.work-main-box .saryo {
  background-image: url("../img/saryo.jpg");
  width: 50vw;
}

.work-main-box .steel {
  background-image: url("../img/steel.jpg");
  width: 50vw;
}

.work-main-box .podcast {
  background-image: url("../img/podcast.jpg");
  width: 30vw;
}

.work-main-box .tidning {
  background-image: url("../img/tidning.jpg");
  width: 30vw;
}

.work-main-box .sankei {
  background-image: url("../img/sankei.jpg");
  width: 50vw;
}

.work-main-box .middle {
  height: 80vh;
  position: relative;
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: contain;
  background-position: center bottom;
}

.work-main-box .right {
  width: 40vw;
  color: #888;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.work-main-box .right div {
  font-family: "Nunito Sans", sans-serif;
  padding: 5vh;
}

.work-main-box .right div img {
  width: 15%;
}

.work-main-box .right .links {
  padding: 5% 0 0 0;
}

.work-main-box .right .links a {
  text-decoration: none;
  color: #29363b;
  border: 1px solid #29363b;
  padding: 3%;
}

.work-main-box .right .links a:hover {
  background-color: #29363b;
  color: white;
}

/* end of work */
/* contact */
.contact-container {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.contact-container .contact-container-box {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-container .contact-container-box .mobile {
  display: none;
}

.contact-container .contact-container-box .left {
  width: 50vw;
  height: 100vh;
  background-image: url("../img/cutshort.jpg");
  background-repeat: no-repeat;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-size: cover;
  background-position: center;
}

.contact-container .contact-container-box .right {
  width: 50vw;
  height: 100vh;
  background-color: #b2bb9e;
  position: relative;
}

.contact-container .contact-container-box .right div {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40vw;
  height: 30vh;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.contact-container .contact-container-box .right div h3 {
  font-size: 2em;
}

.contact-container .contact-container-box .right div h3::after {
  content: "";
  width: 1.5px;
  height: 3.5vh;
  display: block;
  background: white;
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.contact-container .contact-container-box .right div .contact-mail {
  font-size: 1.6em;
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
}

.contact-container .contact-container-box .right div .contact-mail > a {
  text-align: center;
  position: relative;
  color: white;
  text-decoration: none;
}

.contact-container .contact-container-box .right div .contact-mail > a:hover {
  color: white;
}

.contact-container .contact-container-box .right div .contact-mail > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.contact-container .contact-container-box .right div .contact-mail > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.contact-container .contact-container-box .contact-footer {
  position: absolute;
  top: 95%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* end of contact */
footer {
  color: #888;
  font-family: "Nunito Sans", sans-serif;
  height: 60px;
}

footer .copyright {
  text-align: center;
  font-size: 0.8em;
}

footer .icon a {
  color: #888;
  font-size: 1.5em;
}

footer .icon {
  margin: 0 1vw;
}

footer img {
  width: 6%;
}

footer .footer-logo {
  text-align: center;
}

footer .photoCredit {
  text-align: center;
  font-size: 0.8em;
}

footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Animation effect */
.animateFadeIn {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.fadein {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 1366px) and (orientation: landscape) {
  .flex-gallery-container .img-box img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .flex-gallery-container .img-box:hover img {
    -webkit-transform: inherit;
            transform: inherit;
    opacity: inherit;
  }
  .flex-gallery-container h3 {
    opacity: 1;
    position: absolute;
    top: 90%;
    left: 19%;
    -webkit-transform: translate(-90%, -19%);
            transform: translate(-90%, -19%);
    font-size: 1em;
    text-align: center;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    color: #202020ec;
  }
  .flex-gallery-container .img-box:hover + h3 {
    opacity: inherit;
    -webkit-transform: inherit;
            transform: inherit;
  }
}

@media (max-width: 1200px) {
  strong {
    font-size: 1.9em;
  }
}

@media (max-width: 1100px) {
  .about-container__txt p {
    padding-top: 7em;
  }
}

@media (max-width: 1024px) {
  strong {
    font-size: 1.5em;
  }
  .flex-gallery-container .img-box img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .flex-gallery-container .img-box:hover img {
    -webkit-transform: inherit;
            transform: inherit;
    opacity: inherit;
  }
  .flex-gallery-container h3 {
    opacity: 1;
    position: absolute;
    top: 90%;
    left: 19%;
    -webkit-transform: translate(-90%, -19%);
            transform: translate(-90%, -19%);
    font-size: 1em;
    text-align: center;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    color: #202020ec;
  }
  .flex-gallery-container .img-box:hover + h3 {
    opacity: inherit;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .work-main-box .left h2 {
    font-size: 2em;
  }
}

@media screen and (max-width: 1024px) and (orientation: portrait) {
  .work {
    min-height: inherit;
    margin-bottom: 10%;
  }
  .work-main {
    width: 100vw;
    position: relative;
    height: 100%;
  }
  .work-main .animateFadeIn {
    opacity: 1;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .work-main-box {
    display: block;
    width: 100vw;
    height: 80%;
    position: inherit;
    top: 0%;
    left: 0%;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .work-main-box .left {
    width: 60%;
    height: 20%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    border-left: 1px solid black;
    margin-left: 1em;
    margin-top: 4em;
  }
  .work-main-box .left h2 {
    font-size: 2.5em;
  }
  .work-main-box .middle {
    width: 100%;
    height: 35em;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: relative;
    background-repeat: no-repeat;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-size: contain;
    background-position: center;
  }
  .work-main-box .right {
    width: 70%;
    color: #888;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 0 auto;
  }
  .work-main-box .right div {
    padding: 1em;
  }
  .contact-container .contact-container-box .right div {
    height: 16vh;
  }
  .contact-container .contact-container-box .right div h3 {
    font-size: 1.6em;
  }
  .contact-container .contact-container-box .right div .contact-mail {
    font-size: 1.3em;
  }
}

@media (max-width: 1024px) {
  .gallery-banner {
    background-attachment: inherit;
  }
  .work-header {
    background-attachment: inherit;
  }
  .contact-container .contact-container-box .right div h3 {
    font-size: 1.6em;
  }
  .contact-container .contact-container-box .right div .contact-mail {
    font-size: 1.3em;
  }
}

@media (max-width: 940px) {
  strong {
    font-size: 1.3em;
  }
  .about-main-container .about-main-container__txt {
    width: 75%;
  }
  .home .txt h2 {
    font-size: 2em;
  }
  .home .txt .btn {
    padding: 1em 1em;
    font-size: 1em;
  }
  .contact-container .contact-container-box {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .contact-container .contact-container-box .left {
    width: 100vw;
    height: 100vh;
    background-image: url("../img/cutshort.jpg");
    background-repeat: no-repeat;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    background-size: cover;
    background-position: center;
  }
  .contact-container .contact-container-box .left::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: "";
    background-color: rgba(15, 15, 5, 0.299);
  }
  .contact-container .contact-container-box .left .mobile {
    display: inline;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 24vh;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
  }
  .contact-container .contact-container-box .left .mobile h3 {
    font-size: 2em;
  }
  .contact-container .contact-container-box .left .mobile h3::after {
    content: "";
    width: 1.5px;
    height: 3.5vh;
    display: block;
    background: white;
    position: absolute;
    top: 35%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .contact-container .contact-container-box .left .mobile .contact-mail {
    width: 100%;
    font-size: 1.5em;
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
  }
  .contact-container .contact-container-box .left .mobile .contact-mail > a {
    text-align: center;
    position: relative;
    color: white;
    text-decoration: none;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail > a:hover {
    color: white;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail > a:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .contact-container .contact-container-box .right {
    display: none;
  }
  .contact-footer {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    height: 60px;
  }
  .contact-footer .copyright {
    text-align: center;
    font-size: 0.8em;
  }
  .contact-footer .icon a {
    color: white;
    font-size: 1.5em;
  }
}

@media (max-width: 896px) {
  .about-container__txt p {
    padding: 12% 5%;
  }
  .work-main {
    margin: 9% 0;
  }
  .work-main-box .right {
    width: 47vw;
  }
  .foto {
    top: 109%;
    left: 69%;
  }
  .loading__img {
    width: 15%;
  }
}

@media (max-width: 812px) and (orientation: portrait) {
  .about-container__txt p {
    padding-top: 8em;
  }
  .work-main-box .left {
    width: 7em;
  }
  .work-main-box .right {
    width: 23em;
  }
  .work-main-box .left {
    margin-top: 0;
  }
  .work-main-box .right {
    width: 85%;
  }
}

@media screen and (max-width: 812px) and (orientation: landscape) {
  .work-main {
    width: 100vw;
    height: auto;
    position: relative;
  }
  .work-main .animateFadeIn {
    opacity: 1;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .work-main-box {
    display: block;
    width: 100vw;
    height: 100%;
    position: inherit;
    top: 0%;
    left: 0%;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .work-main-box .left {
    width: 60%;
    height: 40%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    border-left: 1px solid black;
    margin-left: 6em;
    margin-top: 0em;
  }
  .work-main-box .left h2 {
    font-size: 2em;
  }
  .work-main-box .middle {
    width: 100%;
    height: 24em;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: relative;
    background-repeat: no-repeat;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-size: contain;
    background-position: center;
  }
  .work-main-box .sankei {
    height: 19em;
  }
  .work-main-box .right {
    width: 70%;
    color: #888;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin: 0 auto;
  }
  .work-main-box .right div {
    padding: 1em;
  }
}

@media (max-width: 740px) {
  .logo {
    top: 4%;
    left: 4%;
  }
  .about-title h2 {
    font-size: 1.4vw;
  }
  strong {
    font-size: 1.2em;
  }
}

@media (max-width: 667px) {
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  nav ul li {
    height: 20%;
  }
  nav ul li a {
    font-size: 11px;
  }
  nav li a:after {
    font-size: 0.6rem;
    bottom: -25px;
  }
  nav li a:hover:after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  nav li a:before {
    width: 25px;
  }
  .home-title img {
    width: 80%;
  }
  .about-banner-left {
    width: 100vw;
  }
  .about-banner-left:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: "";
    background-color: rgba(0, 0, 0, 0.24);
  }
  .about-title {
    color: white;
  }
  .about-title h1 {
    font-size: 7vw;
  }
  .about-title h2 {
    font-size: 2vw;
  }
  .banner-title {
    font-size: 7vw;
  }
  .about-banner-right {
    display: none;
  }
  .about-container {
    display: block;
    height: 500px;
    margin: 0;
  }
  .about-main-container {
    margin: 5em 0 3em 0;
  }
  .about-container__txt {
    margin-top: 2em;
  }
  .about-container__txt p {
    padding: 0;
    margin: 0 -6%;
  }
  .about-container__quote {
    top: 17%;
    left: 13%;
    z-index: 3;
  }
  .about-container__img {
    height: auto;
    position: absolute;
    top: 19%;
    left: 43%;
    z-index: 0;
    width: 45vw;
  }
  .about-container__img .bg-container {
    width: 100%;
  }
  .foto {
    width: 130px;
  }
  .flex-gallery-container .img-box {
    width: 12em;
    margin-top: 2em;
    overflow: hidden;
  }
  footer .photoCredit {
    font-size: 0.5em;
  }
  footer .copyright {
    font-size: 0.6em;
  }
  footer .icon a {
    font-size: 1.2em;
  }
  .contact-footer .copyright {
    font-size: 0.6em;
  }
  .work-main-box .middle {
    height: 22em;
  }
  .work-main-box .sankei {
    height: 17em;
  }
}

@media screen and (max-width: 568px) and (orientation: landscape) {
  .work-main {
    width: 100vw;
    height: auto;
    position: relative;
  }
  .work-main .animateFadeIn {
    opacity: 1;
    -webkit-transform: inherit;
            transform: inherit;
    -webkit-transition: inherit;
    transition: inherit;
  }
  .home .txt .btn {
    font-size: 0.8em;
  }
  .work-main-box {
    display: block;
    width: 100vw;
    height: 100%;
    position: inherit;
    top: 0%;
    left: 0%;
    -webkit-transform: inherit;
            transform: inherit;
  }
  .work-main-box .left {
    width: 60%;
    height: 40%;
  }
  .work-main-box .left h2 {
    font-size: 2em;
  }
  .work-main-box .middle {
    width: 100%;
    height: 18em;
  }
  .work-main-box .right {
    width: 80%;
  }
  .work-main-box .right div {
    padding: 1em;
  }
  .about-container__txt p {
    padding: 0;
    margin: -11% -6%;
  }
}

@media (max-width: 568px) {
  .home .txt .btn {
    font-size: 0.8em;
  }
  .about-container__quote {
    width: 70%;
  }
  .about-container__txt p {
    padding: 0;
    margin: -11% -6%;
  }
  footer .icon {
    margin: 0px 3vw;
  }
  .home .txt h2 {
    font-size: 1.5em;
  }
  .logo {
    width: 10%;
  }
  .contact-container .contact-container-box .left .mobile h3 {
    font-size: 2em;
  }
  .loading__img {
    width: 18%;
  }
}

@media (max-width: 480px) {
  .open-overlay {
    width: 25px;
  }
  .about-container {
    height: 350px;
  }
  .foto {
    left: 21%;
  }
  .flex-gallery-container h3 {
    font-size: 0.7em;
  }
  .work-main-box .middle {
    height: 15em;
  }
  .work-main-box .sankei {
    height: 12em;
  }
  .contact-container .contact-container-box .left .mobile h3 {
    font-size: 1.8em;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail {
    font-size: 1.5em;
  }
}

@media (max-width: 414px) {
  .about-container__quote {
    top: 10%;
    width: 82%;
  }
  .about-ai {
    width: 100%;
  }
  .about-container {
    min-height: 460px;
  }
  .about-container__img {
    left: 19%;
    width: 60vw;
  }
  .home .txt h2 {
    font-size: 1.5em;
  }
  .flex-gallery-container .img-box {
    width: 11em;
    margin-top: 2em;
    overflow: hidden;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail {
    font-size: 1.2em;
  }
  .contact-container .contact-container-box .left .mobile h3 {
    font-size: 1.6em;
  }
  .work-main-box .left {
    width: 18em;
  }
  .work-main-box .left h2 {
    font-size: 2.2em;
  }
  .loading__img {
    width: 18%;
  }
}

@media (max-width: 375px) {
  strong {
    font-size: 1em;
  }
  .about-container__quote {
    top: 12%;
  }
  .about-main-container {
    margin: 3em 0 1.5em 0;
  }
  .about-main-container__txt .jp {
    font-size: 0.9em;
  }
  .foto {
    left: 50%;
  }
  .home .txt h2 {
    font-size: 1.4em;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    font-size: 0.7em;
  }
  .work-main-box .left h2 {
    font-size: 2em;
  }
  .work-main-box .right {
    width: 100%;
  }
  .contact-container .contact-container-box .left .mobile h3 {
    font-size: 1.4em;
  }
  .contact-container .contact-container-box .left .mobile .contact-mail {
    font-size: 1.1em;
  }
  .work {
    min-height: inherit;
    margin-bottom: 20%;
  }
  .loading__img {
    width: 20%;
  }
}

@media (max-width: 320px) {
  .about-container__img {
    top: 22%;
    left: 15%;
    width: 66vw;
  }
  .about-main-container .about-main-container__txt {
    width: 80%;
  }
  .about-main-container__txt .jp {
    font-size: 0.8em;
  }
  .about-container__quote {
    top: 11%;
    width: 80%;
  }
  .about-container__txt {
    margin-top: 0;
  }
  .home .txt h2 {
    font-size: 1em;
  }
  .flex-gallery-container .img-box {
    width: 10em;
    margin-top: 2em;
    overflow: hidden;
  }
  .work-main-box .left h2 {
    font-size: 1.8em;
  }
}
/*# sourceMappingURL=style.css.map */