/* ------------------------------------------------------------------ */
/*        YOUR PROJECT NAME
/* ------------------------------------------------------------------ */
/*
*   Easing Equations ported to CSS by @matthewlein - http://matthewlein.com/ceaser/
*   Converted to SCSS vars by @pettpett
*
*   sample usage:
*   a {
*     color: #ff0000;
*     @include transition(color 0.5s $easeOutQuint);
*     &:hover,
*     &:focus {
*       color: #ff9900;
*     }
*   }
*/
/* Default Equations */
/* Penner Equations (approximated) originally created by @robpenner */
/* ------------------------------------------------------------------ */
/*        CLEARFIX
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        BORDER-BOX
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        SMOOTH
/* ------------------------------------------------------------------ */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------------ */
/*        ELLIPSIS
/* ------------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* Display type
   ========================================================================== */
.u-inactive {
  display: none !important;
  visibility: hidden !important;
}

.u-hidden {
  visibility: hidden;
  pointer-events: none;
}

/*
  Hide only visually, but have it available for screen readers:
  http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  color: #757575;
}

/*
  Extends the .visuallyhidden class to allow the element
  to be focusable when navigated to via the keyboard:
  https://www.drupal.org/node/897638
*/
.u-visuallyHidden--focusable:active,
.u-visuallyHidden--focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  opacity: 0;
}

/* Interaction utils
   ========================================================================== */
.u-unselectable {
  cursor: default;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.u-unclickable {
  pointer-events: none;
  cursor: default;
}

/* Size & position utils
   ========================================================================== */
.u-fullSize,
.u-fullParent,
.About,
.Contact,
.Film,
.Gallery,
.FilmGallery,
.PersonalGallery,
.Gallery__video__transition,
.FilmGallery__video__transition,
.PersonalGallery__video__transition,
.Gallery__video-controls,
.FilmGallery__video-controls,
.PersonalGallery__video-controls,
.Gallery .zoomout,
.FilmGallery .zoomout,
.PersonalGallery .zoomout,
.Home,
.Notfound,
.Personal,
.Personal__loading,
.Work,
.Work__loading,
.Transition {
  width: 100%;
  height: 100%;
}

.u-fullParent,
.About,
.Contact,
.Film,
.Gallery,
.FilmGallery,
.PersonalGallery,
.Gallery__video__transition,
.FilmGallery__video__transition,
.PersonalGallery__video__transition,
.Gallery__video-controls,
.FilmGallery__video-controls,
.PersonalGallery__video-controls,
.Gallery .zoomout,
.FilmGallery .zoomout,
.PersonalGallery .zoomout,
.Home,
.Notfound,
.Personal,
.Personal__loading,
.Work,
.Work__loading,
.Transition {
  position: absolute;
  top: 0;
  left: 0;
}

.u-fluid--w {
  width: 100%;
  height: auto;
}

.u-fluid--h {
  width: auto;
  height: 100%;
}

.u-topCorner,
.u-topCorner--right {
  position: absolute;
  top: 0;
}

.u-topCorner--right {
  right: 0;
}

/* Center an element
   ========================================================================== */
.u-center--rel {
  display: block;
  margin: auto;
}

.u-center--abs {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.u-middle--abs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

/* Inline list
   ========================================================================== */
.u-inlineList {
  position: relative;
}

.u-inlineList-item,
.u-inlineList-item--top,
.u-inlineList-item--middle,
.u-inlineList-item--bottom {
  position: relative;
  display: inline-block;
}

.u-inlineList-item--top {
  vertical-align: top;
}

.u-inlineList-item--middle {
  vertical-align: middle;
}

.u-inlineList-item--bottom {
  vertical-align: bottom;
}

/* Table
   ========================================================================== */
.u-table {
  display: table;
}

.u-table-cell,
.u-table-cell--center,
.u-table-cell--middle {
  display: table-cell;
}

.u-table-cell--center,
.u-table-cell--middle {
  vertical-align: middle;
}

.u-table-cell--center {
  text-align: center;
}

/* Helpers
   ========================================================================== */
/*
  Clearfix
*/
.u-cf {
  zoom: 1;
}

.u-cf:before,
.u-cf:after {
  content: " ";
  display: table;
}

.u-cf:after {
  clear: both;
}

/*
  Background
*/
.u-centerBg {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

/*
  Antialiasing
*/
.u-antialiasing {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*
  Reset button
*/
.u-resetBtn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

/* Prevent Safari input bug */
.u-resetBtn:not(input) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.u-resetBtn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.u-resestBtn--withoutOutline {
  outline: none;
}

/* ------------------------------------------------------------------ */
/*        COMMON PROJECT VARIABLES
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        BREAKPOINTS
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        COLORS
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        CONVERT PX TO EM
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        ARROW
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        ATTENTION
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        MEDIA OBJECTS
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        MEDIA QUERIES
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        PLACEHOLDER
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/*        FONT FACE DECLARATION
/* ------------------------------------------------------------------ */
@font-face {
  font-family: "FrutigerLTStd";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/FrutigerLTStd-Light.woff") format("woff");
}

/* ------------------------------------------------------------------ */
/*        VARIABLES DECLARATION
/* ------------------------------------------------------------------ */
body {
  font-family: "FrutigerLTStd";
}

/* ------------------------------------------------------------------ */
/*        GLOBAL
/* ------------------------------------------------------------------ */
body {
  font-size: 16px;
  line-height: 1.5;
}

/* ------------------------------------------------------------------ */
/*        TITLE DECLARATION
/* ------------------------------------------------------------------ */
h1 {
  font-size: 2rem;
}

.container {
  max-width: 992px;
  margin: auto;
}

.Loader {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 98;
}

.Loader-background {
  background: #ffffff;
  transform-origin: right;
  transform: translateZ(0);
}

.Loader-model {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 370px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
}

.Loader-model-header {
  position: relative;
  width: 100%;
  text-align: center;
}
.Loader-model-header li {
  visibility: hidden;
  opacity: 0;
  color: #000000;
  padding: 10px;
}

.Loader-wrapper {
  margin-bottom: 47px;
  text-transform: uppercase;
}
.Loader-wrapper svg {
  width: 160px;
}

.Loader-text--model {
  position: absolute;
}
.Loader-text--model svg {
  opacity: 0.1;
}

.Loader-text-outter {
  position: relative;
  overflow: hidden;
}

.Loader-text-inner {
  position: absolute;
  top: 0;
  left: 0;
}

.Loader-text--sizing {
  visibility: hidden;
}

.Loader-bar {
  position: absolute;
  top: 0;
  left: 100px;
  width: 160px;
  height: 1px;
}
.Loader-bar--progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2;
  transform-origin: left;
  transform: scaleX(0);
}
.Loader-bar--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebebeb;
  transform: scaleX(1);
}

@media screen and (max-width: 800px) {
  body .Gallery__zoom-out {
    position: absolute;
    right: 20px;
    left: auto;
    top: 70%;
  }

  body .Gallery__background img,
  body .FilmGallery__background img,
  body .PersonalGallery__background img {
    max-width: 100% !important;
  }

  body .Gallery .zoomout {
    background-size: cover;
    height: 100%;
    top: 50%;
    transform: translateY(-50%) !important;
  }

  body .Personal__lists__items,
  body .Work__lists__items {
    display: block;
  }
  body .Personal__loading,
  body .Work__loading {
    display: none;
  }
  /*  */
  .Header.hopen {
    display: block !important;
    background: #fff;
  }

  .Header.hopen .Header__cross {
    backface-visibility: visible !important;
  }

  .Header.hopen * {
    z-index: 100;
    opacity: 1;
    visibility: visible;
  }

  body .Header.hopen {
    z-index: 11 !important;
  }
  body .Home-wrapper.View.u-fullParent {
    z-index: 10 !important;
  }
  body .Header {
    z-index: 11 !important;
  }

  body .Home__background.u-fullParent > video:first-child {
    width: 500%;
    z-index: -1 !important;
  }
  body .Home__mobile-logo {
    z-index: 10 !important;
  }

  body .FilmGallery__content {
    z-index: 100;
    max-height: 150px;
    bottom: 0;
    margin: auto;
  }
  body .FilmGallery__navigation {
    /*   z-index: 101;
    max-height: 150px;
    bottom: 0;*/
  }
  body .FilmGallery__video-container {
    width: 100%;
  }
  .Loader-model {
    width: 100%;
  }
}

html {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button {
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  background-color: transparent;
  cursor: pointer;
}

hr {
  height: 1px;
  border: 0;
  background-color: black;
}

canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

input:focus {
  outline: 0;
}

.View {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.View > {
  will-change: transform;
}

.is-tablet {
  display: none;
}
@media screen and (max-width: 800px) {
  .is-tablet {
    display: block;
  }
}

.is-mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .is-mobile {
    display: block;
  }
}

.About__animate__stagger span {
  display: inline-block;
}

.About__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.About__model {
  width: 30%;
}

.About__content {
  width: 40%;
}

.About__navigation {
  width: 30%;
}

.About__content {
  box-sizing: border-box;
  padding-left: 10%;
}

.About__slider__item {
  display: none;
  position: relative;
}

.About__slider__item__line {
  position: absolute;
  top: 15px;
  left: -200px;
  width: 150px;
  height: 1px;
  background: #000000;
  transform-origin: right;
}

.About__slider__item__text {
  position: relative;
  font-style: italic;
  font-size: 1.5625em;
  margin-bottom: 3.125em;
}
.About__slider__item__text span {
  display: inline-block;
}

.About__slider__item__footer p:last-child {
  color: grey;
}

.About__navigation {
  text-align: center;
}

.About__scroll-indicator {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.About__scroll-indicator__separator {
  width: 80px;
  height: 1px;
  background: #000000;
  margin: 20px auto;
  transform-origin: right;
}

@media screen and (max-width: 1024px) {
  .About__model {
    width: 25%;
  }
  .About__content {
    width: 50%;
  }
  .About__navigation {
    width: 25%;
  }
}

@media screen and (max-width: 800px) {
  .About__model {
    display: none;
  }
  .About__slider__item__text {
    font-size: 1.125em;
  }
  .About__navigation {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
  }
  .About__slider__item__line {
    display: none;
  }
  .About__content {
    padding-left: 15%;
    padding-right: 15%;
    width: 100%;
  }
  .About__content ul {
    margin-top: 40px;
  }
}

.Contact__animate__stagger span {
  display: inline-block;
}

.Contact__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.Contact__model,
.Contact__content,
.Contact__hello {
  width: calc(100% / 3);
}

.Contact__content {
  box-sizing: border-box;
  padding-left: 10%;
}
.Contact__content h2 {
  position: relative;
  font-size: 1.5625em;
}
.Contact__content h2.is-visible::after {
  transform: scaleX(1);
}
.Contact__content h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -150px;
  width: 100px;
  height: 1px;
  transform: scaleX(0);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
  background: #000000;
  transform-origin: right;
}
.Contact__content h3 {
  font-size: 1.5625em;
}
.Contact__content ul {
  margin-top: 50px;
}
.Contact__content ul li a {
  position: relative;
  display: inline-block;
  padding: 3px 0;
}
.Contact__content ul li a:hover:after {
  transform: scaleX(1);
}
.Contact__content ul li a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.Contact__hello {
  text-align: center;
  color: gray;
}

@media screen and (max-width: 800px) {
  .Contact__model {
    display: none;
  }
  .Contact__hello {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
  }
  .Contact__content {
    padding-left: 25%;
    width: 100%;
  }
  .Contact__content h2::after {
    display: none;
    top: -40px;
    left: 0px;
    width: 150px;
    height: 1px;
    transform: scaleX(0);
    transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
    /* easeInOutQuint */
    background: #000000;
    transform-origin: right;
  }
  .Contact__content ul {
    margin-top: 40px;
  }
}

.Film {
  position: fixed;
  overflow: hidden;
}
.Film__loading {
  display: none;
}
.Film__header {
  position: relative;
  z-index: 4;
}
.Film__lists {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.Film .scroll-content {
  padding-bottom: 100px;
}
.Film__lists__items {
  width: 100%;
  padding: 100px 370px 100px 370px;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.Film__lists__item {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 1s;
  transform: translateZ(0) scale(0.97);
  opacity: 0;
}
.Film__lists__item.is-visible {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
.Film__lists__item.is-visible:hover {
  transform: translateZ(0) scale(0.95);
}
.Film__lists__item.is-visible:hover .Work__lists__item__border {
  transform: scale(1);
}
.Film__lists__item.is-visible img {
  transform: translateZ(0) scale(1);
}
.Film__lists__item.is-visible img:hover {
  transform: translateZ(0) scale(1.1);
}
.Film__lists__item img {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.2);
}
.Film__scroll-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.Film__scroll-indicator__separator {
  width: 80px;
  height: 1px;
  background: #000000;
  margin: 20px auto;
}
@media screen and (max-width: 1024px) {
  .Film__scroll-indicator {
    width: 200px;
  }
  .Film__lists__items {
    width: calc(100% - 500px);
    margin-left: 300px;
    margin-right: 200px;
  }
}
@media screen and (max-width: 800px) {
  .Film__loading {
    display: block;
  }
  .Film__lists {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .Film__lists__items {
    width: 100%;
    height: 55%;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 20px;
    display: none;
  }
  .Film__lists__items .scroll-content {
    padding-bottom: 0;
  }
  .Film__lists__item {
    overflow: hidden;
    display: inline-block;
    margin-left: 40px;
    margin-bottom: 0px;
    transform: translateZ(0) scale(1);
    height: 100%;
    width: auto;
    opacity: 1;
  }
  .Film__lists__item:last-child {
    margin-right: 40px;
  }
  .Film__lists__item img {
    position: static;
    max-height: 100%;
    transform: translateZ(0) scale(1);
  }
  .Film__lists__item.is-visible {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  .Film__lists__item.is-visible:hover {
    transform: translateZ(0) scale(1);
  }
  .Film__lists__item.is-visible img {
    transform: translateZ(0) scale(1);
  }
  .Film__lists__item.is-visible img:hover {
    transform: translateZ(0) scale(1);
  }
  .Film__scroll-indicator {
    position: absolute;
    bottom: 20px;
    top: auto;
    width: 100%;
    height: auto;
  }
}

.shadow {
  /* filter: drop-shadow(0px 0px 2px #fff); */
  transition: filter 0.1s, transform 0.1s;
}

.resp-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.resp-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid;
}

.Gallery,
.FilmGallery,
.PersonalGallery {
  height: 100%;
  background: black;
}
.Gallery__content,
.FilmGallery__content,
.PersonalGallery__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.Gallery__video-container,
.FilmGallery__video-container,
.PersonalGallery__video-container {
  display: none;
  position: relative;
  width: 50%;
  margin: auto;
}
.Gallery__video-container video,
.FilmGallery__video-container video,
.PersonalGallery__video-container video {
  width: 100%;
}
.Gallery__video__transition,
.FilmGallery__video__transition,
.PersonalGallery__video__transition {
  background: #000000;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
}
.Gallery__video-controls,
.FilmGallery__video-controls,
.PersonalGallery__video-controls {
  cursor: pointer;
}
.Gallery__video-controls__button,
.FilmGallery__video-controls__button,
.PersonalGallery__video-controls__button {
  width: 100%;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
}
.Gallery__video-controls__seek-bar,
.FilmGallery__video-controls__seek-bar,
.PersonalGallery__video-controls__seek-bar {
  position: absolute;
  bottom: 20px;
  left: 50px;
  width: calc(100% - 100px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.Gallery__video-controls__seek-bar__inner,
.FilmGallery__video-controls__seek-bar__inner,
.PersonalGallery__video-controls__seek-bar__inner {
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 1;
  transform: scaleY(1.1) scaleX(0);
  transform-origin: left;
  transition: 0.8s;
}
.Gallery .zoomout,
.FilmGallery .zoomout,
.PersonalGallery .zoomout {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.Gallery__loading,
.FilmGallery__loading,
.PersonalGallery__loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.Gallery__background,
.FilmGallery__background,
.PersonalGallery__background {
  overflow: hidden;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.Gallery__background img,
.FilmGallery__background img,
.PersonalGallery__background img {
  position: absolute;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  display: none;
}
.Gallery__zoom-out,
.FilmGallery__zoom-out,
.PersonalGallery__zoom-out {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: calc(50% - 20px);
  left: 15%;
  margin-left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #3cfcff;
  transform: rotate(45deg) scale(0.8);
  cursor: pointer;
  transition: 0.3s;
  z-index: 4;
  margin-top: 24px;
}
.Gallery__zoom-out.is-zoomout > div:last-child,
.FilmGallery__zoom-out.is-zoomout > div:last-child,
.PersonalGallery__zoom-out.is-zoomout > div:last-child {
  opacity: 0;
}
.Gallery__zoom-out:hover,
.FilmGallery__zoom-out:hover,
.PersonalGallery__zoom-out:hover {
  background: #3cfcff;
}
.Gallery__zoom-out:hover > div,
.FilmGallery__zoom-out:hover > div,
.PersonalGallery__zoom-out:hover > div {
  background: black;
}
.Gallery__zoom-out > div,
.FilmGallery__zoom-out > div,
.PersonalGallery__zoom-out > div {
  position: relative;
  width: 10px;
  height: 1px;
  background: #3cfcff;
  transition: 0.3s;
}
.Gallery__zoom-out > div:first-child,
.FilmGallery__zoom-out > div:first-child,
.PersonalGallery__zoom-out > div:first-child {
  left: 5px;
  transform: rotate(135deg);
}
.Gallery__zoom-out > div:last-child,
.FilmGallery__zoom-out > div:last-child,
.PersonalGallery__zoom-out > div:last-child {
  right: 5px;
  transform: rotate(45deg);
}

.Gallery__navigation,
.FilmGallery__navigation,
.PersonalGallery__navigation {
  position: absolute;
  top: 50%;
  right: 3.6rem;
  height: auto;
  width: auto;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transform: translateY(-50%);
  /*background: rgba(0,0,0,0.66);*/
  background: #4c4c4c;
}

/*

  OLD

  .Gallery__navigation,
  .FilmGallery__navigation,
  .PersonalGallery__navigation {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between; }
*/

.Gallery__navigation__cross,
.FilmGallery__navigation__cross,
.PersonalGallery__navigation__cross {
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
  left: 17px;
  width: auto;
  height: auto;
  cursor: pointer;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 3;
  margin-left: -5px;
}
.Gallery__navigation__cross svg,
.FilmGallery__navigation__cross svg,
.PersonalGallery__navigation__cross svg {
  fill: #3cfcff;
}
.Gallery__navigation__arrows__informations,
.FilmGallery__navigation__arrows__informations,
.PersonalGallery__navigation__arrows__informations {
  text-align: center;
  margin: 25px 0;
  color: #3cfcff;
}
.Gallery__navigation__trigger-sidebar,
.FilmGallery__navigation__trigger-sidebar,
.PersonalGallery__navigation__trigger-sidebar {
  margin-bottom: 20px;
  color: #3cfcff;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}
.Gallery__navigation__arrow,
.FilmGallery__navigation__arrow,
.PersonalGallery__navigation__arrow {
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: 0.3s;
  transform: translateZ(0) scale(0.8);
}
.Gallery__navigation__arrow:hover,
.FilmGallery__navigation__arrow:hover,
.PersonalGallery__navigation__arrow:hover {
  opacity: 1;
}
.Gallery__navigation__arrow svg,
.FilmGallery__navigation__arrow svg,
.PersonalGallery__navigation__arrow svg {
  width: 70px;
  height: 70px;
  fill: #3cfcff;
}
.Gallery__navigation__arrow--bottom,
.FilmGallery__navigation__arrow--bottom,
.PersonalGallery__navigation__arrow--bottom {
  transform: rotate(180deg) translateZ(0) scale(0.8);
  margin-left: -10px;
}
.Gallery__navigation__arrow--top,
.FilmGallery__navigation__arrow--top,
.PersonalGallery__navigation__arrow--top {
  margin-left: 10px;
  margin-right: -10px;
}
.Gallery__sidebar,
.FilmGallery__sidebar,
.PersonalGallery__sidebar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 370px;
  z-index: 2;
  display: none;
}
.Gallery__sidebar__background,
.FilmGallery__sidebar__background,
.PersonalGallery__sidebar__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
}
.Gallery__sidebar__content,
.FilmGallery__sidebar__content,
.PersonalGallery__sidebar__content {
  width: 100%;
  height: 100%;
  display: none;
}
.Gallery__sidebar__content.is-active,
.FilmGallery__sidebar__content.is-active,
.PersonalGallery__sidebar__content.is-active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.Gallery__sidebar__content h2,
.FilmGallery__sidebar__content h2,
.PersonalGallery__sidebar__content h2 {
  font-size: 1.5em;
  opacity: 0;
}
.Gallery__sidebar__content > div > p,
.FilmGallery__sidebar__content > div > p,
.PersonalGallery__sidebar__content > div > p {
  color: gray;
  opacity: 0;
}
.Gallery__sidebar__content > div,
.FilmGallery__sidebar__content > div,
.PersonalGallery__sidebar__content > div {
  width: 100%;
  text-align: center;
}
.Gallery__sidebar__close,
.FilmGallery__sidebar__close,
.PersonalGallery__sidebar__close {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000000;
  cursor: pointer;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .Gallery__loading,
  .FilmGallery__loading,
  .PersonalGallery__loading {
    display: block;
  }
  .Gallery__background,
  .FilmGallery__background,
  .PersonalGallery__background {
    background: #000000;
  }
  .Gallery__background img,
  .FilmGallery__background img,
  .PersonalGallery__background img {
    height: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto;
  }
  .Gallery__navigation,
  .FilmGallery__navigation,
  .PersonalGallery__navigation {
    background: none !important;
    width: 100%;
    display: block;
  }
  .Gallery__navigation__cross,
  .FilmGallery__navigation__cross,
  .PersonalGallery__navigation__cross {
    margin: 20px 0 0 calc(100% - 67px);
  }
  .Gallery__navigation__arrows,
  .FilmGallery__navigation__arrows,
  .PersonalGallery__navigation__arrows {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .Gallery__navigation__arrow,
  .FilmGallery__navigation__arrow,
  .PersonalGallery__navigation__arrow {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }
  .Gallery__navigation__arrow svg,
  .FilmGallery__navigation__arrow svg,
  .PersonalGallery__navigation__arrow svg {
    width: 100%;
    height: 100%;
  }
  .Gallery__navigation__arrows__informations,
  .FilmGallery__navigation__arrows__informations,
  .PersonalGallery__navigation__arrows__informations {
    display: inline-block;
    margin: 0 25px;
  }
  .Gallery__navigation__trigger-sidebar,
  .FilmGallery__navigation__trigger-sidebar,
  .PersonalGallery__navigation__trigger-sidebar {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .Gallery__sidebar,
  .FilmGallery__sidebar,
  .PersonalGallery__sidebar {
    width: 100%;
  }
  .FilmGallery__zoom-out,
  .PersonalGallery__zoom-out {
    display: none;
  }
}

.Home {
  height: 100%;
}
.Home__background {
  overflow: hidden;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
}
.Home__background img {
  position: absolute;
  transform: translateZ(0);
  display: none;
  height: 100%;
}
.Home__music {
  position: absolute;
  bottom: 60px;
  left: 150px;
  z-index: 100;
  color: #ffffff;
}
.Home__music span {
  opacity: 0.4;
  cursor: pointer;
  display: inline-block;
  transition: 0.4s;
}
.Home__music span.Home__music__on {
  margin-left: 10px;
}
.Home__music span.is-active {
  opacity: 1;
}
.Home__mobile-logo {
  width: 160px;
  margin: 180px auto 0 auto;
  position: relative;
  fill: white;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .Home__music {
    opacity: 0;
    display: none;
  }
}

.Notfound p {
  top: 50%;
  position: relative;
  font-size: 18px;
  margin-left: calc(520px);
}
.Notfound p.is-animate::after {
  transform: scaleX(1);
}
.Notfound p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -150px;
  width: 100px;
  height: 1px;
  transform: scaleX(0);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
  background: #000000;
  transform-origin: right;
}

.Personal {
  position: fixed;
  overflow: hidden;
}
.Personal__loading {
  z-index: 5;
  text-align: center;
}
.Personal__loading svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke: #000 !important;
}
.Personal__header {
  position: relative;
  z-index: 4;
}
.Personal__lists {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.Personal .scroll-content {
  padding-bottom: 100px;
}
.Personal__lists__items {
  width: 100%;
  padding: 100px 370px 100px 370px;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  visibility: hidden;
}
.Personal__lists__item {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 1s;
  transform: translateZ(0) scale(0.97);
  opacity: 0;
}
.Personal__lists__item.is-visible {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
.Personal__lists__item.is-visible:hover {
  transform: translateZ(0) scale(0.95);
}
.Personal__lists__item.is-visible:hover .personal__lists__item__border {
  transform: scale(1);
}
.Personal__lists__item.is-visible img {
  transform: translateZ(0) scale(1);
}
.Personal__lists__item.is-visible img:hover {
  transform: translateZ(0) scale(1.1);
}
.Personal__lists__item img {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.2);
}
.Personal__scroll-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.Personal__scroll-indicator__separator {
  width: 80px;
  height: 1px;
  background: #000000;
  margin: 20px auto;
}
@media screen and (max-width: 1024px) {
  .Personal__scroll-indicator {
    width: 200px;
  }
  .Personal__lists__items {
    width: calc(100% - 500px);
    margin-left: 300px;
    margin-right: 200px;
  }
}
@media screen and (max-width: 800px) {
  .Personal__loading svg {
    stroke: #000 !important;
  }
  .Personal__lists {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .Personal__lists__items {
    width: 100%;
    height: 55%;
    margin: 0;
    padding: 0;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 20px;
    visibility: visible;
    display: none;
  }
  .Personal__lists__items .scroll-content {
    padding-bottom: 0;
  }
  .Personal__lists__item {
    overflow: hidden;
    display: inline-block;
    margin-left: 40px;
    margin-bottom: 0px;
    transform: translateZ(0) scale(1);
    height: 100%;
    width: auto;
    opacity: 1;
  }
  .Personal__lists__item:last-child {
    margin-right: 40px;
  }
  .Personal__lists__item img {
    position: static;
   max-height: 100%;
    transform: translateZ(0) scale(1);
  }
  .Personal__lists__item.is-visible {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  .Personal__lists__item.is-visible:hover {
    transform: translateZ(0) scale(1);
  }
  .Personal__lists__item.is-visible img {
    transform: translateZ(0) scale(1);
  }
  .Personal__lists__item.is-visible img:hover {
    transform: translateZ(0) scale(1);
  }
  .Personal__scroll-indicator {
    position: absolute;
    bottom: 20px;
    top: auto;
    width: 100%;
    height: auto;
  }
}

.Work {
  position: fixed;
  overflow: hidden;
}
.Work__loading {
  z-index: 5;
  text-align: center;
}
.Work__loading svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke: #000 !important;
}
.Work__header {
  position: relative;
  z-index: 4;
}
.Work__lists {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.Work .scroll-content {
  padding-bottom: 100px;
}
.Work__lists__items {
  width: 100%;
  padding: 100px 370px 100px 370px;
  height: 100%;
  overflow: scroll;
  box-sizing: border-box;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  visibility: hidden;
}
.Work__lists__item {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 1s;
  transform: translateZ(0) scale(0.97);
  opacity: 0;
}
.Work__lists__item.is-visible {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
.Work__lists__item.is-visible:hover {
  transform: translateZ(0) scale(0.95);
}
.Work__lists__item.is-visible:hover .Work__lists__item__border {
  transform: scale(1);
}
.Work__lists__item.is-visible img {
  transform: translateZ(0) scale(1);
}
.Work__lists__item.is-visible img:hover {
  transform: translateZ(0) scale(1.1);
}
.Work__lists__item img {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.2);
}
.Work__scroll-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.Work__scroll-indicator__separator {
  width: 80px;
  height: 1px;
  background: #000000;
  margin: 20px auto;
}
@media screen and (max-width: 1024px) {
  .Work__scroll-indicator {
    width: 200px;
  }
  .Work__lists__items {
    width: calc(100% - 500px);
    margin-left: 300px;
    margin-right: 200px;
  }
}
@media screen and (max-width: 800px) {
  .Work__lists {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .Work__lists__items {
    width: 100%;
    height: 55%;
    margin: 0;
    padding: 0;
    display: none;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    visibility: visible;
    padding-bottom: 20px;
  }
  .Work__lists__items .scroll-content {
    padding-bottom: 0;
  }
  .Work__lists__item {
    overflow: hidden;
    display: inline-block;
    margin-left: 40px;
    margin-bottom: 0px;
    transform: translateZ(0) scale(1);
    height: 100%;
    width: auto;
    opacity: 1;
    visibility: visible;
  }
  .Work__lists__item:last-child {
    margin-right: 40px;
  }
  .Work__lists__item img {
	 height: auto;
    object-fit: unset;
    position: static;
    transform: translateZ(0) scale(1);
  }
  .Work__lists__item.is-visible {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  .Work__lists__item.is-visible:hover {
    transform: translateZ(0) scale(1);
  }
  .Work__lists__item.is-visible img {
    transform: translateZ(0) scale(1);
  }
  .Work__lists__item.is-visible img:hover {
    transform: translateZ(0) scale(1);
  }
  .Work__scroll-indicator {
    position: absolute;
    bottom: 20px;
    top: auto;
    width: 100%;
    height: auto;
  }
}

.Header {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 370px;
  z-index: 2;
  pointer-events: none;
}
.Header__cross {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) rotate(135deg);
  cursor: pointer;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 3;
  pointer-events: auto;
}
.Header__cross div {
  position: absolute;
  width: 0%;
  height: 1px;
  background: #000000;
  transform-origin: left;
  z-index: 2;
}
.Header__cross div.Header__cross__bottom {
  left: 50px;
  top: 25px;
  transform: rotate(180deg);
}
.Header__cross div.Header__cross__top {
  left: 25px;
  top: 0px;
  transform: rotate(90deg);
}
.Header__background {
  transform: scaleX(0);
  transform-origin: left;
  background: #ffffff;
}
.Header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Header__nav__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
}
.Header__nav__logo {
  width: 160px;
  fill: #ffffff;
  cursor: pointer;
  margin-bottom: 23px;
}
.Header__nav__logo-mobile {
  width: 160px;
  margin: auto;
  margin-bottom: 23px;
}
.Header__nav__logo__wrapper {
  position: relative;
  pointer-events: auto;
}
.Header__nav__logo__wrapper svg {
  width: 160px;
}
.Header__nav__logo__wrapper .Header__nav__logo--model {
  position: absolute;
}
.Header__nav__logo__wrapper .Header__nav__logo--model svg {
  fill: #ffffff;
}
.Header__nav__logo__wrapper .Header__nav__logo-outter {
  position: relative;
  overflow: hidden;
  transform: translateX(-100%);
}
.Header__nav__logo__wrapper .Header__nav__logo-inner {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
}
.Header__nav__logo__wrapper .Header__nav__logo--mask svg {
  fill: #000000;
}
.Header__nav__logo__wrapper .Header__nav__logo--sizing {
  visibility: hidden;
}
.Header__nav__content {
  width: 100%;
  text-align: center;
  pointer-events: auto;
}
.Header__nav__content li {
  visibility: hidden;
  opacity: 0;
  color: #000000;
}
.Header__nav__content li a {
  position: relative;
  display: inline-block;
  padding: 10px;
}
.Header__nav__content li a:hover:after {
  transform: scaleX(1);
}
.Header__nav__content li a:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 1px;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .Header {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .Header {
    width: 100%;
    display: none;
  }
  .Header__cross {
    top: 30px;
  }
  .Header__nav__logo {
    display: none;
  }
}

.Mobile__header {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.Mobile__header__burger {
  display: inline-block;
  padding: 10px;
}
.Mobile__header__burger > div {
  width:34px;
  height: 1px;
  background: #000000;
  margin-bottom:8px;
}

.Transition {
  background: #ffffff;
  transform: scaleX(0);
  z-index: 99;
}

.Home__background.u-fullParent > video {
  display: none;
}

.Home__background.u-fullParent > video:first-child {
  display: block;
  /*    position: absolute;
    width: 170vw;
    height: 57vw;
    left: 50%;
    transform: translateX(-50%);
*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}
.Home-wrapper.View.u-fullParent {
  z-index: -1;
}

.View > div {
  background-color: #fff;
}

.View > .FilmGallery {
  background-color: #000;
}

.Gallery__sidebar__content.is-active h2 {
  opacity: 1;
}
.zoomout {
  background-color: #000 !important;
}

/*new css 26 november added */
.Work__lists__item.is-visible:hover,
.Personal__lists__item.is-visible:hover,
.Film__lists__item.is-visible:hover
 {
    transform: none !important;
}
.Work__lists__item.is-visible:hover img, 
.Personal__lists__item.is-visible:hover img, 
.Film__lists__item.is-visible:hover img 
{
    transform: translateZ(0) scale(0.95);
}



.Work__lists__item:last-child .current_slide_down,
.Film__lists__item:last-child .current_slide_down,
.Personal__lists__item:last-child .current_slide_down

{ display:none !important}





.Header__nav__logo__wrapper .btn,.is-tablet.Home__mobile-logo .btn{ display:block; padding:3px 12px; font-size:20px;  text-align:center; color:#fff; margin:20px auto;}

.scroll-content .Work__lists__item,.Film__lists__item,.Personal__lists__item  { position:relative; backface-visibility:hidden; transition:all ease-in-out 0.5s; }
.scroll-content .Work__lists__item .current_slide_down,.scroll-content .Film__lists__item .current_slide_down,.Personal__lists__item .current_slide_down{ text-align:center; position:absolute; background:#fff; bottom:-10px; left:-10px; right:-10px; display:inline-block; }
.arrow-down{ width:30px; height:30px; background:#fff url(icon-arrow-down.png)no-repeat center; border-radius:100%; background-size:25px; display:inline-block; cursor:pointer }
.Work__scroll-indicator div p:first-child,.Work__scroll-indicator div .Work__scroll-indicator__separator,
.Film__scroll-indicator div p:first-child,.Film__scroll-indicator div .Film__scroll-indicator__separator,
.About__navigation div p:first-child,.About__navigation div .About__scroll-indicator__separator,
.Personal__scroll-indicator div p:first-child,.Personal__scroll-indicator div .Personal__scroll-indicator__separator
{ display:none !important;}
/*
.Work__scroll-indicator div p:last-child,
.Personal__scroll-indicator div p:last-child,
.About__navigation div p:last-child,
.Film__scroll-indicator div p:last-child
{ background:#000; color:#fff; width:50px; height:50px; border-radius:100%; display:inline-block; text-align:center; line-height:50px; }
*/
.Work__scroll-indicator div p:last-child,
.Personal__scroll-indicator div p:last-child,
.About__navigation div p:last-child,
.Film__scroll-indicator div p:last-child
{ color:#000;}


.Personal__scroll-indicator .Personal__scroll-indicator__current,
.Work__scroll-indicator .Work__scroll-indicator__current,
.Film__scroll-indicator .Film__scroll-indicator-indicator__current,
.About__navigation .About__scroll-indicator__current
{ display:inline-block; margin-right:5px; border-bottom:0px;}




.About__slider__item .current_slide_down{ position:absolute; right:0px; bottom:0px;}

/*gallery navigation*/

.Gallery__navigation.navigation,
.Gallery__navigation,
.FilmGallery__navigation

{ height:auto !important; width:auto !important; position: static !important; background:none !important; transform:none !important; display:block !important; }

/*.Gallery__navigation__arrow.Gallery__navigation__arrow--top,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--top

{ background:url(icon_prev-arrow.png) no-repeat center; position:absolute; left:0px !important; padding:10px !important; margin:0px !important; top:50%; transform:translateY(-50%); z-index:999; width:60px; height:60px;} */


.Gallery__navigation__arrow.Gallery__navigation__arrow--top,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--top

{ background:#000 url(icon_prev-arrow.png) no-repeat center; background-size:20px; position:absolute; left:35%; padding:10px !important; margin:0px !important; bottom:12px; transform:none; z-index:999; width:30px; height:30px; border-radius:100%;}


.Gallery__navigation__arrow.Gallery__navigation__arrow--top svg,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--top  svg{ display:none}

/*.Gallery__navigation__arrow.Gallery__navigation__arrow--bottom,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--bottom

{padding:10px !important; margin:0px !important;   background:url(icon_next-arrow.png) no-repeat center; position:absolute; right:0 !important; top:50%; transform:translateY(-50%) rotate(0deg) translateZ(0) scale(1); z-index:999;width:60px; height:60px;}*/


.Gallery__navigation__arrow.Gallery__navigation__arrow--bottom,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--bottom

{background:#000 url(icon_next-arrow.png) no-repeat center;background-size:20px; position:absolute; right:35%; padding:10px !important; margin:0px !important; bottom:12px; transform:none; z-index:999; width:30px; height:30px; border-radius:100%; }



.Gallery__navigation__arrow.Gallery__navigation__arrow--bottom  svg,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--bottom  svg{ display:none}


.Gallery__navigation__cross{ position:fixed; left:49% !important; right:inherit!important; bottom:12px; margin:0px !important; background:#000 url(icon_cross.png)no-repeat center; width:30px; height:30px; border-radius:100%; text-align:center; padding:5px; z-index:999}
.Gallery__navigation__cross  svg{ display:none;  fill:#fff !important; width: 47px !important; stroke-width:2 !important; margin-top: 8px !important;}

.Gallery__navigation__trigger-sidebar p,
.FilmGallery__navigation__trigger-sidebar p
 {left: 45%; position: absolute; background: #000 url(icon_info-white.png) no-repeat center; font-size:0px; height:30px; width: 30px; bottom: 12px; border-radius:100%;  font-weight:bold; color: #000;}
 
.Gallery__navigation__arrows__informations,
.FilmGallery__navigation__arrows__informations

{ position: absolute; right: 0; left: 0; margin:0px !important; bottom: 0; text-align:center }

/*.Gallery__navigation__arrows__informations p,
.FilmGallery__navigation__arrows__informations p
{display:inline-block; background:#3cfcff; color:#000; text-align:center; width:50px;font-weight:bold; line-height:50px; height:50px; border-radius:50px 50px 0 0}
*/
.Gallery__navigation__arrows__informations p,
.FilmGallery__navigation__arrows__informations p{ display:none;}

.Gallery__zoom-out.Gallery__navigation__zoom-out{position: absolute;  left: 53%; bottom: 12px; border:0px; background: #000; width:30px;height: 30px;transform: none;border-radius: 100%; top: inherit;}
.Gallery__zoom-out.Gallery__navigation__zoom-out div{ border:0px; background:url(icon_rotate-white.png) no-repeat center; width:30px !important; height:30px !important; display:inline-block; background-size:20px;    left: 0px; transform: rotate(0deg); top: 0px;}

.Gallery__zoom-out.Gallery__navigation__zoom-out.is-zoomout div{ background:url(icon_rotate-white.png) no-repeat center; width:30px !important; height:30px !important; display:inline-block; background-size:20px;    left: 0px; transform: rotate(-45deg); top: 0px;}


.Gallery__zoom-out.Gallery__navigation__zoom-out div + div{ display:none !important;}
img{ max-width:100%;}


.Gallery__sidebar, .FilmGallery__sidebar, .PersonalGallery__sidebar {
z-index: 9999 !important;}
/*gallery navigation*/

.bounce { 
 -moz-animation: bounce 2s infinite;-webkit-animation: bounce 2s infinite; animation: bounce 2s infinite; 
  animation-delay:5s;
}

.bounce:hover{	 -moz-animation: fadeIn 3s infinite;-webkit-animation: fadeIn 5s infinite; animation: fadeIn 3s infinite; } 


.PersonalGallery picture img{ object-fit:cover}

@keyframes bounce {

	
  0%,10%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
	
  }
  60% {
    transform: translateY(-15px);

  }
}
.Header__nav__logo__wrapper .btn, .is-tablet.Home__mobile-logo .btn{
			 -moz-animation: fadeIn 5s infinite;-webkit-animation: fadeIn 5s infinite; animation: fadeIn 5s infinite; animation-delay:5s; 
			
         }
 @-webkit-keyframes fadeIn {
            0% {opacity: 0;}
			25% {opacity:0.25;}
            50% {opacity:0.5;}
			75% {opacity:0.75;}
			85% {opacity:0.85;}
			100% {opacity: 1;}
         }
         
         @keyframes fadeIn {
            0% {opacity: 0;}
			25% {opacity:0.25;}
            50% {opacity:0.5;}
			75% {opacity:0.75;}
			85% {opacity:0.85;}
			100% {opacity: 1;}
         }
       
		 
		 

/*mouse scroll animation*/
.About__navigation .current_slide_down span{ display:block; text-align:center;  -webkit-animation: colorText 5s ease-out infinite, nudgeText 5s ease-out infinite;
          animation: colorText 5s ease-out infinite, nudgeText 5s ease-out infinite; margin-top:5px; text-transform:uppercase; letter-spacing:2px;} 
		  
.About__navigation{ position:relative;}

 .About__navigation .current_slide_down{   position: absolute;
    right: 60%;
 top: -20px;}




.About__content .mouse {
  background: #4e5559 -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #ffffff), to(#ffffff));
  background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  position: relative;
  width: 52px;
  height: 88px;
  display:inline-block;
  border-radius: 100px;
  background-size: 100% 200%;
  -webkit-animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
          animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.About__content .mouse:before, .mouse:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.About__content .mouse:before {
  width: 46px;
  height: 82px;
  background-color: #222a30;
  border-radius: 100px;
}
.About__content .mouse:after {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  left:0;
  border-radius: 100%;
  -webkit-animation: trackBallSlide 5s linear infinite;
          animation: trackBallSlide 5s linear infinite;
}


 @-webkit-keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #4e5559;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #4e5559;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #4e5559;
  }
  90%, 100% {
    background-color: #ffffff;
  }
}

@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #4e5559;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #4e5559;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #4e5559;
  }
  90%, 100% {
    background-color: #ffffff;
  }
}
@-webkit-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  66% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  66% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
            transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(40px);
            transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-20px);
            transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
}
@-webkit-keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes nudgeMouse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes nudgeText {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes nudgeText {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  30% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes colorText {
  21% {
    color: #4e5559;
  }
  30% {
    color: #ffffff;
  }
  51% {
    color: #4e5559;
  }
  60% {
    color: #ffffff;
  }
  81% {
    color: #4e5559;
  }
  90% {
    color: #ffffff;
  }
}
@keyframes colorText {
  21% {
    color: #4e5559;
  }
  30% {
    color: #ffffff;
  }
  51% {
    color: #4e5559;
  }
  60% {
    color: #ffffff;
  }
  81% {
    color: #4e5559;
  }
  90% {
    color: #ffffff;
  }
}


/*mouse scroll*/
.Contact__content {text-align: center;}
.Contact__content ul{}
.Contact__content ul li{ display:block; margin-right:0; margin-bottom:15px; text-align:center}
.Contact__content ul li img{max-width:25px;}
.Contact__content ul li a:after{ display:none;}
.About__content{}
.About__content .current_slide_down{ text-align:center; transform: scale(0.6);}
.About__content .current_slide_down span{display:block}

.Contact__animate.is-visible b{ font-weight:bold;}
.Contact__content h2::after{ display:none;}
.Contact__content { box-sizing: border-box; padding-left: 0 !important;}
.Contact__content h2 {font-size: 20px;margin: 11px;}

.About__content{ padding-bottom:100px; position:relative;}
.About__content .current_slide_down{ position: absolute; bottom:-100px; left:0px; right:0px;}

.About__content .current_slide_down span {
    display: block;
    font-size: 22px;
    color: gray;
}
@media(min-width:1200px){

.About__content .current_slide_down {
    left: 150px;
}
}





@media(min-width:1200px) and (max-width:1290px){
.Gallery__navigation__trigger-sidebar p, .FilmGallery__navigation__trigger-sidebar p{ left:44%;}
.Gallery__zoom-out.Gallery__navigation__zoom-out {left: 53.5%;}
}


@media(min-width:1300px) and (max-width:1390px){
.Gallery__navigation__trigger-sidebar p, .FilmGallery__navigation__trigger-sidebar p{ left:44%;}
.Gallery__zoom-out.Gallery__navigation__zoom-out {left: 53.5%;}

}




@media(min-width:992px) and (max-width:1024px){
.Gallery__navigation__trigger-sidebar p, .FilmGallery__navigation__trigger-sidebar p {left: 42%;}
.Gallery__zoom-out.Gallery__navigation__zoom-out { position: absolute;left: 53%;}
.Work__lists__items {padding: 80px 440px 70px 50px !important; }
.About__content .current_slide_down { padding-left: 30%;}


}
@media(min-width:768px) and (max-width:991px){
.Work__lists__items,.Film__lists__items,.Personal__lists__items{width: 100% !important; height: 100% !important; white-space: normal !important; visibility: visible !important;    overflow-y: scroll !important;}		
.Work__lists__item,.Film__lists__item,.Personal__lists__item  { overflow: visible; display: inline-block; margin:10px!important; padding-bottom:15px; transform: translateZ(0) scale(1) !important; height: 300px; box-sizing:border-box; opacity: 1; visibility: visible; width:100%;}
.Work__lists,.Personal__lists,.Film__lists {top:84px !important;}
.Mobile__header__title p{ display:none !important;}
.Gallery__navigation__trigger-sidebar p, .FilmGallery__navigation__trigger-sidebar p {
left: 27%;}
.Gallery__navigation__arrows, .FilmGallery__navigation__arrows, .PersonalGallery__navigation__arrows {position: static !important;}

.Gallery__navigation__trigger-sidebar, .FilmGallery__navigation__trigger-sidebar, .PersonalGallery__navigation__trigger-sidebar{ bottom:0px !important}
.Gallery__zoom-out.Gallery__navigation__zoom-out{ right:27%; left:inherit}


.Gallery__navigation__arrow.Gallery__navigation__arrow--top,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--top

{ top:98%; transform:translateY(-98%); left:15px !important;}

.Gallery__navigation__arrow.Gallery__navigation__arrow--bottom,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--bottom

{ top:98%; transform:translateY(-98%) rotate(0deg) translateZ(0) scale(1); right:15px !important; }

.Film__scroll-indicator{ display:none !important;}
body .Home__background.u-fullParent > video:first-child {
    width: 100%;
    z-index: 0;
    object-fit: contain;
background: #000;}


.MobileHeader .Mobile__header.is-tablet{ text-align:right;}
.MobileHeader .Mobile__header.is-tablet .Mobile__nav__logo.Header__nav__logo--mask{width: 150px; display: inline-block; position: absolute;left: 18px; top: 2px;}
.Mobile__header__burger { margin-right:7px;}
.Home__mobile-logo{ text-align:center} 
.Home__mobile-logo svg,.Mobile__header svg{ max-height:30px; display:inline-block; }
}




@media( max-width:767px){
	*{ box-sizing:border-box;}
	
	.Work {
    position: static;
    overflow: hidden;
}
.Mobile__header {
    position: relative;
    top: 20px;
}
.Work__lists {
    position: static;
    padding-top: 20px;
}
html, body {
    height: 100%;
    overflow: scroll;
}
.Personal {
    position: relative;
    overflow: hidden;
}
.Personal__lists {
    position: relative;
     padding-top: 20px;

}
.Work__lists__items,.Film__lists__items,.Personal__lists__items{width: 100% !important; height: 100% !important; white-space: normal !important; visibility: visible !important;    overflow-y: scroll !important;}		
.Work__lists__item,.Film__lists__item,.Personal__lists__item  { overflow: visible; display: inline-block; transform: translateZ(0) scale(1) !important; padding:0 15px;  max-height:195px; margin:10px 0px !important;   opacity: 1; visibility: visible; box-sizing:border-box;}
.Work__lists,.Personal__lists,.Film__lists {top:74px !important;}
.scroll-body .Work__lists,.scroll-body  .Personal__lists,.scroll-body  .Film__lists {top: 0 !important;}
.Mobile__header__title p{ display:none !important;}
.Gallery__navigation__trigger-sidebar p, .FilmGallery__navigation__trigger-sidebar p {
left: 27%;}
.Gallery__navigation__arrows, .FilmGallery__navigation__arrows, .PersonalGallery__navigation__arrows {position: static !important;}

.Gallery__navigation__trigger-sidebar, .FilmGallery__navigation__trigger-sidebar, .PersonalGallery__navigation__trigger-sidebar{ bottom:0px !important}
.Gallery__zoom-out.Gallery__navigation__zoom-out{ right:27%; left:inherit}
.Film__scroll-indicator{ display:none !important;}

body .Home__background.u-fullParent > video:first-child {
    width: 100%;
    z-index: 0;
    object-fit: contain;
background: #000;}


.Work__lists__item.is-visible:hover {
    transform: none !important;
}
.Work__lists__item.is-visible img:hover {
    transform: translateZ(0) scale(1);
}

.Gallery__navigation__arrow.Gallery__navigation__arrow--top,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--top

{ top:98%; transform:translateY(-98%); left:15px;}

.Gallery__navigation__arrow.Gallery__navigation__arrow--bottom,
.FilmGallery__navigation__arrow.FilmGallery__navigation__arrow--bottom

{ top:98%; transform:translateY(-98%) rotate(0deg) translateZ(0) scale(1); right:15px; }

.Work__scroll-indicator div p:last-child, .Personal__scroll-indicator div p:last-child, .About__navigation div p:last-child, .Film__scroll-indicator div p:last-child{ display:none;}

.About__content {
    padding: 0 30px !important;
    width: 100% !important;
}
.About__navigation {
    position: absolute;
 
    width: auto;
    text-align: center;
    left: 60%;
    bottom: 130px;
}
.Gallery__navigation__cross {
left: 44% !important;}
.PersonalGallery picture img,.Gallery picture img{ /*object-fit:cover*/}

.MobileHeader .Mobile__header.is-tablet{ text-align:right;}
.MobileHeader .Mobile__header.is-tablet .Mobile__nav__logo.Header__nav__logo--mask{width: 150px; text-align:left; display: inline-block; position: absolute;left: 10px; top: 2px;}
.Mobile__header__burger { margin-right:7px;}
.Home__mobile-logo { margin: 50px auto 0 auto;}

.Contact__content {
    padding-left: 0 !important;
    width: 100% !important;
    text-align: center;
}

.About__content{ padding-bottom:150px !important;}
.About__content .current_slide_down {bottom: -150px;}
  .Contact__content h2 {font-size: 18px;} 
  
.Home__mobile-logo{ text-align:center} 
.Home__mobile-logo svg,.Mobile__header svg{ max-height:30px; display:inline-block; }

}


@media( max-width:375px){
	
	.About__content {
    padding-bottom: 100px !important;
}
.About__content .current_slide_down {
    bottom: -47px;
}	
}
@media( max-width:360px){
	.About__slider__item__text {
    margin-bottom: 20px !important;}
	.About__content {
    padding-bottom: 80px !important;}
}
	
	
}