@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Quattrocento+Sans|Raleway|Philosopher');
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

* {
    box-sizing: border-box;
}

body{
    font-family: 'Quattrocento Sans', sans-serif;
    max-width: 100%;
    max-height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background-color: #000;
}

.split{
    position:absolute;
    width:50%;
    height:100%;
    padding: 0px;
}
 
.left-box {
    left:0;
    background-color: #000;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.right-box {
    right:0;
    overflow-y:scroll;
}

a{
    text-decoration: none;
}

a:link{
    text-decoration: none;
}

a:visited{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

a:active{
    text-decoration: none;
}

.blackline a, h2 a{
    color: #000;
    cursor: default;
}

.blackline a:link, h2 a:link{
    color: #000;
}

.blackline a:visited, h2 a:visited{
    color: #000;
}

.blackline a:hover, h2 a:hover{
    color: #000;
}

.blackline a:active, h2 a:active{
    color: #000;
}

.whiteline a{
    color: #fff;
    cursor: default;
}

.whiteline a:link{
    color: #fff;
}

.whiteline a:visited{
    color: #fff;
}

.whiteline a:hover{
    color: #fff;
}

.whiteline a:active{
    color: #fff;
}

nav{
    display: none;
}

#mosaic-first {
    height: 100vh;
    background-color: #000;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: -33%;
    z-index: -10;
}

#mosaic-last {
    height: 100vh;
    background-color: #000;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

#jda{
    width: 100%;
    opacity: 0;
    transition-duration: 500ms;
}

.leftmove {
    width:100%;
    overflow:hidden;
    margin: 0;
    position:relative;
    background: mediumpurple;
}

.leftmove img {
    -webkit-transition:	all 0.5s ease;
    transition: all 0.5s ease;
}

.leftmove:hover img {
    margin-left: 33%;
}

.leftmove .mask {
    width: 33%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -33%;
    background: mediumpurple; /* radial-gradient(ellipse farthest-corner at right, black, white); */
    -webkit-transition:	all 0.5s ease;
    transition:	 all 0.5s ease;
}

.leftmove:hover .mask {
    margin-left: 0;
}

.leftmove .caption {
    font-size: 330%;
    padding-top: 10%;
    text-align: center;
}

.caption span {
  position: relative;
  display: inline-block;
  margin: 0 -.01em;
  color: rgba(0, 0, 0, .2);
  animation: loading-parent 5s infinite;
}
.caption span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #fff;
  opacity: 0;
  animation: loading-child 5s infinite;
}
.caption span:nth-child(2)::after {
  animation-delay: .2s;
}
.caption span:nth-child(3)::after {
  animation-delay: .4s;
}
.caption span:nth-child(4)::after {
  animation-delay: .6s;
}
.caption span:nth-child(5)::after {
  animation-delay: .8s;
}
.caption span:nth-child(6)::after {
  animation-delay: 1s;
}
.caption span:nth-child(7)::after {
  animation-delay: 1.2s;
}
@keyframes loading-parent {
  0%, 35%, 100% {
    color: rgba(0, 0, 0, .2);
  }
  60%, 80% {
    color: #fff;
  }
}
@keyframes loading-child {
  0% {
    opacity: 1;
  }
  25%, 100% {
    opacity: 0;
  }
}

img{
    width: 97%;
    opacity: 0;
    transition-duration: 1800ms;
    transition-delay: 200ms;
    vertical-align: bottom;
}

section{
    opacity: 0;
    transition-duration: 1800ms;
    transition-delay: 200ms;
}

.cover1{
    width: 97%;
    height: 340px;
    margin: 8px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition-duration: 1800ms;
    transition-delay: 200ms;
}

.cover2{
    width: 97%;
    height: 730px;
    margin: 8px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition-duration: 1800ms;
    transition-delay: 200ms;
}

.blackline a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.blackline a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 10px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.blackline a:hover::after {
  transform: scale(1, 1);
}

.whiteline a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.whiteline a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 10px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.whiteline a:hover::after {
  transform: scale(1, 1);
}

h2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
h2 a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .2s;
}
h2 a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

#bio{
    background-color: mediumpurple;
    color: #000;
}

#bio h1{
    font-size: 2.8rem;
    padding: 115px 0 50px;
    text-align: center;
}

#bio h2{
    padding: 5px 25px 10px;
    font-size: 1.9rem;
    text-align: left;
}

#bio p{
    padding: 5px 50px 40px;
    line-height: 1.7;
    font-size: 1.3rem;
    text-align: left;
}

#bio #career{
    padding-bottom:100px;
}

.branch{
   text-align: center;
   padding: 0 0 125px;
}

#btn{
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rebeccapurple;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 15px;
  border: solid 1px rebeccapurple;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .8s;
}

#btn:hover{
  text-shadow: -6px 0px 15px rgba(255, 255, 240, 0.83), 6px 0px 15px rgba(255, 255, 240, 0.83);
}

#projects{
    background: linear-gradient(180deg, rgb(0,0,113), rgb(0,0,143));
    color: #fff;
    text-align: center;
}

#projects h1{
    font-size: 2.8rem;
    padding: 115px 0 40px;
    text-align: center;
}

#photography{
    background: linear-gradient(180deg, rgb(143,0,0),rgb(113,0,0));
    color: #fff;
    text-align: center;
}

#photography h1{
    font-size: 2.8rem;
    padding: 115px 0 40px;
    text-align: center;
}

#photography img{
    padding: 4px 0;
}

.lfadein{
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: -30%;
    transition-duration: 250ms;
    transition-delay: 500ms;
}

.tile {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 97%;
  color: rgba(255,255,255,0.7);
  text-align: center;
  z-index: 6;
}
.tile * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.tile img {
  width: 100%;
  transition-delay: none;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.tile:after {
  background: rgb(113,0,0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0.5;
  -webkit-transform: skew(-45deg) scaleX(0);
  transform: skew(-45deg) scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tile figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.tile h2,
.tile p {
  margin: 0;
  width: 100%;
  opacity: 0;
}
.tile h2 {
  display: inline-block;
  padding: 0 40px;
  letter-spacing: 3px;
  font-size: 1.5em;
  font-weight: 500;
}
.tile p {
  padding: 0 40px;
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 500;
}
.tile a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  cursor: default;
}
.tile:hover:after,
.tile.hover:after {
  -webkit-transform: skew(-45deg) scaleX(1);
  transform: skew(-45deg) scaleX(1);
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tile:hover figcaption h2,
.tile.hover figcaption h2,
.tile:hover figcaption p,
.tile.hover figcaption p {
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.tile:hover figcaption h2,
.tile.hover figcaption h2 {
  opacity: 1;
}
.tile:hover figcaption p,
.tile.hover figcaption p {
  opacity: 1;
}

.double img {
  opacity: 0;
  transition-duration: 5000ms;
}

#cinema{
    width: 100%;
}

.snip {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 6;
}
.snip * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.snip *:before, .snip *:after {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.snip img {
  width: 100%;
  backface-visibility: hidden;
  opacity: 0;
  transition-duration: 500ms;
}
.snip figcaption {
  position: absolute;
  top: 50%;
  margin: 0 24px;
  padding: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.snip figcaption div {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}
.snip figcaption div:before, .snip figcaption div:after {
  position: absolute;
  content: '';
  background-color: rgba(255, 255, 255, 1);
  left: 50%;
  top: 50%;
}
.snip figcaption div:before {
  width: 1px;
  height: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.snip figcaption div:after {
  height: 1px;
  width: 50px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.snip p {
  font-family: 'Raleway', sans-serif;
  opacity: 0;
  letter-spacing: 1px;
  margin: 0;
  line-height: 20px;
  font-size: 1.5rem;
  font-weight: 700;
}
.snip a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: default;
}
.snip:hover img, .snip.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.snip:hover figcaption p, .snip.hover figcaption p {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
  opacity: 1;
}
.snip:hover figcaption .plus1,
.snip.hover figcaption .plus1,
.snip:hover figcaption .plus2,
.snip.hover figcaption .plus2 {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.snip:hover figcaption .plus1:before,
.snip.hover figcaption .plus1:before,
.snip:hover figcaption .plus1:after,
.snip.hover figcaption .plus1:after {
  top: 0%;
  left: 0%;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.snip:hover figcaption .plus2:before,
.snip.hover figcaption .plus2:before,
.snip:hover figcaption .plus2:after,
.snip.hover figcaption .plus2:after {
  top: 100%;
  left: 100%;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

#contact{
    background-color: rgb(166,124,0);
    color: #000;
}

#contact h1{
    font-size: 2.8rem;
    padding: 140px 0 10px;
    text-align: center;
}

#contact h2{
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    padding: 40px 0 25px;
    color: darkblue;
}

.more1{
    padding: 20px 20px 125px;
    text-align: right;
    font-size: 1.2rem;
    color: gray;
    text-decoration: overline;
}

.more2{
    padding: 20px 20px 170px;
    text-align: right;
    font-size: 1.2rem;
    color: gray;
    text-decoration: overline;
}

aside#button_top{
    display: none;
}

aside#position{
   display: none;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 23px;
    font-size: 1rem;
}

dl{
	width: 77%;
    height: 100%;
	margin: 0 auto;
}

dt{
	font-size: 1.4rem;
	font-weight: 400;
	text-align: left;
	padding: 30px 0 0;
}

dd{
	font-size: 1.4rem;
	padding: 8px 0;
	border-bottom: solid 1px #000;
}

input[type="text"]{
	font-size: 1.2rem;
	padding: 4px;
	width: 100%;
}

input[type="email"]{
	font-size: 1.2rem;
	padding: 4px;
	width: 100%;
}

input[type="submit"]{
	font-size: 1.2rem;
	padding: 5px;
	
	display: block;
	width: 130px;
	margin: 0 auto;
	height: 55px;
	
	-webkit-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
	appearance:none;
	
	border: 1px solid #fff;
	background-color: #000;
    color: #fff;
	
	cursor: pointer;
}

input[type="submit"]:hover{
	filter: invert(100%);
    transition-duration: 1000ms;
}

dd:last-of-type{
	border: none;
	padding: 70px 0 140px;
}

textarea{
	font-size: 1.2rem;
	padding: 4px;
	width: 100%;
	height: 200px;
}


@media all and (max-width:1023px){
    .split {
        position: relative;
        width: 100vw;
        height: 100%;
    }
    .left-box {
        background-image: url(../images/header.jpg);
        height: 100vh;
        z-index: 10;
    }
    #mosaic-first{
        display: none;
    }
    #mosaic-last{
        display: none;
    }
    nav{
        display: inline;
        position: fixed;
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;
        background-color: rgb(0, 0, 0);
        transition-duration: 500ms;
        z-index: 15;
    }
    nav ul li{
        box-sizing: border-box;
        line-height: 23px;
        font-size: 2rem;
        text-align: center;
        flex-grow: 1;
        position: relative;
    }
    nav ul li a{
        display: block;
        text-decoration: none;
        color: #fff;
        background-color: rgb(0, 0, 0);
        cursor: default;
    }
    nav ul li a:hover{
        filter: invert(100%);
    }
    nav ul li ol{
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        height: 0px;
        overflow: hidden;
        transition-duration: 500ms;
    }
    nav ul li ol a{
        cursor: pointer;
    }
    nav ul li ol li{
        background-color: rgb(0, 0, 0);
        width: 100%;
    }
    nav ul li:hover ol{
        height: 92px;
    }
    nav ul li ol a:hover{
        filter: none;
    }
    .snip p {
        font-family: 'Raleway', sans-serif;
        opacity: 0;
        letter-spacing: 1px;
        margin: 0;
        line-height: 16px;
        font-size: 1.1rem;
        font-weight: 700;
    }
    aside#button_top{
        display: inline;
        position: fixed;
        top: auto;
        right: 16px;
        bottom: 24px;
        left: auto;
        transition-duration: 1000ms;
        z-index: 7;
    }
    aside#button_top a{
        text-decoration: none;
        display: block;
        width: 28px;
        text-align: center;
        background-color: rgba(255,255,255,0.4);
        box-sizing: border-box;
        box-shadow: 0px 0px 5px 0px black;
    }
    aside#position{
        display: inline;
        color: rgba(255,255,255,0.4);
        background-color: none;
        font-family: 'Philosopher', sans-serif;
        font-size: 3rem;
        letter-spacing: 15px;
        padding: 0;
        width: 6ex;
        position: fixed;
        top: auto;
        right: auto;
        bottom: 128px;
        left: -33px;
        z-index: 5;
        transition-duration: 1000ms;
        transform: rotate(90deg);
    }
    div#wrapper{
        position: absolute;
        top: 200px;
        right: 100%;
        bottom: auto;
        left: 0;
        max-height: 1px;
        overflow: hidden;
        animation-name: line;
        animation-duration: 8000ms;
        animation-fill-mode: forwards;
        animation-iteration-count: 1;
    }
    @keyframes line{
	       0% {top: 200px; right: 100%; max-height: 1px; position: absolute; overflow: hidden;}
	       40%{top: 200px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           41%{top: 215px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           42%{top: 205px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           43%{top: 210px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           44%{top: 205px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           45%{top: 210px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           46%{top: 400px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           47%{top: 200px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           48%{top: 195px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           49%{top: 205px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
	       50%{top: 200px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
           55%{top: 0px; right: 0px; max-height: 1px; position: absolute; overflow: hidden;}
	       99%{top: 0px; right: 0px; max-height: 100vh; position: absolute; overflow: hidden;}
	       100%{top: 0px; right: 0px; max-height: none;position: static; overflow: auto;}
    }
    
}