@charset "utf-8";

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	font-family: "Mulish";
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.5px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #767676;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #6f6f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #6f6f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #6f6f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #6f6f6f;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #6f6f6f;
}

::placeholder { /* Most modern browsers support this now. */
   color: #6f6f6f;
}

.container{
	max-width: 960px;
	width:100%;
	margin-left: auto;
	margin-right: auto;
	height:auto;
	padding:0px 40px;
	position:relative;
	clear:both;
}

h1, h2, h3, h4, h5, h6 {
	font-weight:500;
	font-family: "Montserrat";
	color: #000;
}

h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.tokyo_tm_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.tokyo_tm_all_wrap,
.tokyo_tm_all_wrap *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}

#preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:before,
#preloader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after{
    left: auto;
    right: 0;
}
#preloader .loader_line{
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

@keyframes lineround{
    0%{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%{
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after{
    opacity: 0;
}
.preloaded  .loader_line{
    opacity: 0;
    height: 100%!important;
}
.preloaded:before,
.preloaded:after{
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero{
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}

.tokyo_tm_all_wrap .leftpart{
	width: 450px;
	height: 100vh;
	position: fixed;
	display: flex;
	align-items: center;
	z-index: 10;
	padding: 0px 100px;
	background-color: #fff;
}
.tokyo_tm_all_wrap .leftpart_inner{
	width: 100%;
	height: auto;
}

.tokyo_tm_all_wrap .leftpart_inner h5 {
	font-weight: 800;
	letter-spacing: 3px;
}

.tokyo_tm_all_wrap .leftpart img {
	max-width: 150px;
}
.tokyo_tm_all_wrap .leftpart .menu{
	padding: 50px 0px 60px 0px;
	width: 100%;
	float: left;
}
.tokyo_tm_all_wrap .leftpart .menu ul{
	margin: 0px;
	list-style-type: none;
}
.tokyo_tm_all_wrap .leftpart .menu ul li{
	margin: 0px;
	width: 100%;
	float: left;
}
.tokyo_tm_all_wrap .leftpart .menu ul li a{
	text-decoration: none;
	color: #767676;
	display: inline-block;
	font-weight: 500;
	font-family: "Montserrat";
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tokyo_tm_all_wrap .leftpart .menu ul li a:hover{
	color: #000;
	letter-spacing: 2px;
}
.tokyo_tm_all_wrap .leftpart .menu ul li.active a{
	color: #000;
	letter-spacing: 2px;
}
.tokyo_tm_all_wrap .leftpart .menu ul li.active a:hover{
	letter-spacing: 4px;
}
.tokyo_tm_all_wrap .leftpart .copyright{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.tokyo_tm_all_wrap .leftpart .copyright p{
	font-size: 15px;
	font-family: "Montserrat";
	line-height: 25px;
}
.tokyo_tm_all_wrap .leftpart p a{
	text-decoration: none;
	color: #f2f2f2;
	font-weight: 200;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tokyo_tm_all_wrap .leftpart p a:hover{
	letter-spacing: 1.5px;
}
.tokyo_tm_all_wrap .rightpart{
	width: 100%;
	min-height: 100vh;
	float: left;
	position: relative;
	background-color: #f8f8f8;
	padding-left: 450px;
}
.tokyo_tm_all_wrap .rightpart_in{
	position: relative;
	width: 100%;
	float: left;
	clear: both;
	border-left: 1px solid #ebebeb;
	min-height: 100vh;
}
.tokyo_tm_section{
	position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
	padding-left: 450px;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translate3d(5%, 0, 0);
    transition: transform .3s ease .3s,opacity 0s ease .3s;
	z-index: -1;
}
.tokyo_tm_section.active{
	opacity: 1;
	transform: translate3d(0, 0, 0);
	z-index: 5;
}
.tokyo_tm_home{
	width: 100%;
	min-height: 100vh;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.tokyo_tm_home .home_content{
	display: flex;
	align-items: center;
}
.tokyo_tm_home .avatar{
	min-width: 300px;
	min-height: 300px;
	position: relative;
}
.tokyo_tm_home .avatar .image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	background-blend-mode: multiply;
	-webkit-box-shadow: inset 0px 0px 0px 9px rgba(255,255,255,.3);
    -moz-box-shadow: inset 0px 0px 0px 9px rgba(255,255,255,.3);
    box-shadow: inset 0px 0px 0px 9px rgba(255,255,255,.3);
	border-radius: 50% 50% 50% 50%;
}
.tokyo_tm_home .details {
	margin-left: 40px;
}
.tokyo_tm_home .social{
	width: 100%;
	float: left;
	margin-left: 1px;
}
.tokyo_tm_home .social ul{
	margin: 0px;
	list-style-type: none;
}
.tokyo_tm_home .social ul li{
	margin: 0px 12px 0px 0px;
	display: inline-block;
}
.tokyo_tm_home .social ul li:last-child{
	margin-right: 0px;
}



@media (max-width: 1600px) {
	.container{max-width: 900px;}
	.tokyo_tm_all_wrap .leftpart{width: 400px;}
	.tokyo_tm_section{padding-left: 350px;}
	.tokyo_tm_all_wrap .rightpart{padding-left: 340px;}
	.tokyo_tm_all_wrap .leftpart{width: 340px;padding: 0px 70px 0px 50px;}
	.tokyo_tm_home .avatar{min-width: 250px;min-height: 250px;}
	.tokyo_tm_home .details .name{font-size: 48px;margin-bottom: 10px;}
	.tokyo_tm_home .details .job{margin-bottom: 20px;}
}
@media (max-width: 1200px) {
	.tokyo_tm_mobile_menu{display: block;}
	.tokyo_tm_section{padding-left: 0px;}
	.tokyo_tm_all_wrap .leftpart{display: none;}
	.tokyo_tm_all_wrap .rightpart{padding-left: 0px;}
	.tokyo_tm_all_wrap .rightpart_in{border-left: none;}
}
@media (max-width: 1040px) {
	.mouse-cursor{display: none;}
	.tokyo_tm_mobile_menu .menu_inner{padding: 20px;}
	.tokyo_tm_home .home_content{flex-direction: column;text-align: center;}
	.tokyo_tm_home .avatar{margin-bottom: 30px;}
	.tokyo_tm_home .details{margin-left: 0px;}
	.tokyo_tm_about .description_inner{flex-direction: column;}
	.tokyo_tm_about .description .left{width: 100%;padding: 0px;margin-bottom: 50px;}
	.tokyo_tm_about .description .right{width: 100%;padding: 0px;}
	.tokyo_tm_title .title_flex{flex-direction: column;align-items: flex-start;}
	.tokyo_tm_title .portfolio_filter{padding-top: 48px;}
	.container{padding: 0px 20px;}
}
@media (max-aspect-ratio: 4/3) {
	.tokyo_tm_home .details .name{font-size: 40px;}
	.tokyo_tm_home .avatar{min-width: 200px;min-height: 200px;}
	.tokyo_tm_about .description .name{ font-size: 18px; }
	.tokyo_tm_home .social ul li { width: 90%; margin: 0px; }
	.tokyo_tm_home .details .job{ text-align: justify; }
	.tokyo_tm_button { text-align: center !important; }
	img.icon_download { display: none; }
	.avatar {
		margin-top: 30px;
	}
	.button_availability {
		top: 3%;
	}
	.mobileonly {
		display: block !important;
		position: absolute;
		top: 3%;
		margin-top: 4px;
		left: 0px;
	}
	.mobileonly a span {	
		font-size: 13px !important;
	}
	.mobileonly a {
		text-decoration: none;
		color: white;
		font-weight: 500;
		font-family: "Montserrat";
	}
	.footer_mobileonly {
		bottom: 3%;
		left: 0px;
		width: 100%;
		display: block !important;
		position: absolute;
	}
	.footer_mobileonly a {
		float: right;
		font-size: 14px;
		text-decoration: none;
		color: white;
		font-weight: 500;
		font-family: "Montserrat";
	}
	.footer_mobileonly p {
		float: left;
		font-size: 14px;
		text-decoration: none;
		color: #bbb;
		font-weight: 400;
		font-family: "Mulish";
	}
	.contact_mail {
		float: left;
		min-width: 500px;
		text-align: left;
	}
	.contact_linkedin {
		float: left;
		min-width: 500px;
		text-align: left;
	}
	.tokyo_tm_all_wrap {
		background-size: auto 105% !important;
		background-repeat: no-repeat !important;
		background-position: top 0% left 10% !important;
	}
	#contact_phone {
		display: none;
	}
}

.mobileonly {
	display: none;
}
.footer_mobileonly {
	display: none;	
}
	#button_resume {
		width: 120px;
	}
	#button_skills {
		width: 320px;
	}
.tokyo_tm_all_wrap {
	background-image: url('../img/background.gif'); background-size: 100%;	
}

.rightpart {
    background-color: transparent !important;
    background: rgba(0, 0, 0, .70) !important;
}
.leftpart {
    background-color: transparent !important;
    background: rgba(0, 0, 0, .65) !important;
}
.button_availability {
    float: right;
    position: absolute;
    right: 0px;
    width: 130px;
    top: 5%;
    height: 30px;
    border: 1px solid #398746;
    font-size: 12px;
    font-weight: 300;
    color: #4fdd5a;
    background-color: Transparent !important;
    text-align: center;
}
.tokyo_tm_home .details .firstname {
	font-family: "Lato";
	font-size: 50px;
	font-weight: 200;
	margin-left: -3px;
}
.tokyo_tm_home .details .lastname {
	font-family: "Lato";
	font-size: 50px;
	font-weight: 600;
	margin-left: -1px;
}
.tokyo_tm_home .details .subtitle {
	font-family: "Lato";
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 12px;
	margin-left: 2px;
	margin-top: 2px;
}
.tokyo_tm_home .details .job {
	font-family: "Roboto";
	font-weight: 300;
	font-size: 14px;
	max-width: 550px;
	margin-bottom: 38px;
	line-height: 22px;
	letter-spacing: 0px;
	margin-left: 2px;
	color: #eee;
}
.tokyo_tm_button {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: Transparent !important;
	border: 3px solid white;
	cursor: pointer;
	text-align: center;
}
.tokyo_tm_button:hover {
	border: 3px solid #202020;
}
.tokyo_tm_button a {
	text-decoration: none;
	color: white;
	display: inline-block;
	background-color: transparent;
	font-family: "Montserrat";
	font-weight: 700;	
	letter-spacing: 2px;
	width: 100%;
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tokyo_tm_button a:hover {
	color: #bbb;
}
img.icon_location {
	width: 17px;
	height: 15px;
	margin-top: -6px;
	margin-right: 11px;
}
img.icon_phone {
	width: 15px;
	height: 15px;
	margin-left: 2px;
	margin-top: -3px;
}
img.icon_mail {
	width: 19px;
	height: 20px;
	margin-top: -3px;
}
img.icon_linkedin {
	width: 20px;
	height: 19px;
	margin-top: -3px;
}
img.icon_flag {
	width: 24px;
	height: 22px;
	margin-top: -2px;
	margin-left: 4px;
}
img.icon_download {
	width: 14px;
	height: 13px;
	margin-top: -2px;
}