@charset "utf-8";

/*
TABLE OF CONTENTS

00)	 COLOR VARIABLES
01)	 BASE
02)  BACKGROUND LINES
03)  TOPBAR
04)  MOBILE MENU
05)  HERO
06)  ABOUT
07)  SERVICE
08)  PORTFOLIO
09)  SKILLS
10)  AWARDS
11)  NEWS
12)  CONTACT
13)  COPYRIGHT
14)  MAGIC CURSOR
15)  MEDIA QUERIES (FOR SMALL DEVIVES)

 */

/*---------------------------------------------------*/
/*	00)  COLOR VARIABLES
/*---------------------------------------------------*/

:root {
  --white: hsl(0, 0%, 100%, .7);
  --gray-medium: hsl(0, 0%, 50%);
  --gray-dark: hsl(0, 0%, 44%);
  --black: hsl(0, 0%, 0%);
  --gray-light: hsl(0, 0%, 60%);
  --gray-very-light: hsl(0, 0%, 88%);
  --red: hsl(359, 91%, 55%);
  --blue: hsl(254, 100%, 50%);
	/* line tracer color */
	--line-color-start: hsla(55, 100%, 50%, 0.7);
	--line-color-middle: hsla(134, 100%, 40%, 0.2);
	--line-color-end: hsl(359, 100%, 40%, .2);
}

/*---------------------------------------------------*/
/*	01)  BASE
/*---------------------------------------------------*/

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	font-family: "Mulish";
	font-size: 14px;
	line-height: 30px;
	letter-spacing: 0.5px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: var(--white);
	color: var(gray-medium);
}
svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: var(--gray-dark);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: var(--gray-dark);
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: var(--gray-dark);
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: var(--gray-dark);
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: var(--gray-dark);
}

::placeholder { /* Most modern browsers support this now. */
   color: var(--gray-dark);
}

.container{
	max-width: 700px;
	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;
	line-height: 1.2;
	font-family: "Poppins";
	color: var(--black);
}

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

.wrapper{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.wrapper,
.wrapper *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}
.tm_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
#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: var(--black);
	-webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s 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: var(--gray-dark);
    -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: var(--gray-light);
    -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%;
    }
}

/*---------------------------------------------------*/
/*	02)  BACKGROUND LINES
/*---------------------------------------------------*/

.line1,
.line2,
.line3,
.line4{
	position: fixed;
	top: 0px;
	bottom: 0px;
	width: 1px;
	background-color: rgba(0,0,0,.08);
	z-index: -1;
}
.line1{
	left: 20%;
}
.line2{
	left: 36%;
}
.line3{
	left: 64%;
}
.line4{
	left: 80%;
}
.line1:before,
.line2:before,
.line3:before,
.line4:before{
	position: absolute;
	content: "";
	width: 3px;
	height: 20px;
	left: -1px;
	background-color: var(--gray-vary-light);
}
.line1:before,
.line3:before{
	animation: lineAnim 15s linear 0s infinite alternate;
	background-color: var(--bgloader-start);

}
.line2:before,
.line4:before{
	animation: lineAnim2 15s linear 0s infinite alternate;
	background-color: var(--bgloader-start);

}

@keyframes lineAnim {
  0% {
    top: 0px;
  }
  100% {
    top: 100%;
  }
	0% {
		background-color: var(--line-color-start);
	}
	33.33% {
		background-color: var(--line-color-middle);
	}
	66.66% {
		background-color: var(--line-color-end);
	}
	100% {
		background-color: var(--line-color-start);
	}
}
@keyframes lineAnim2 {
  0% {
    bottom: 0px;
  }
  100% {
    bottom: 100%;
  }
	0% {
		background-color: var(--line-color-start);
	}
	33.33% {
		background-color: var(--line-color-end);
	}
	66.66% {
		background-color: var(--line-color-middle);
	}
	100% {
		background-color: var(--line-color-start);
	}
}

/*---------------------------------------------------*/
/*	03)  TOPBAR
/*---------------------------------------------------*/

.toky_tm_topbar{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
}
.toky_tm_topbar.animate{
	background-color: rgba(255,255,255,1.00);
}
.toky_tm_topbar .topbar_line1,
.toky_tm_topbar .topbar_line2,
.toky_tm_topbar .topbar_line3,
.toky_tm_topbar .topbar_line4{
	position: absolute;
	width: 1px;
	top: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,.07);
	z-index: 1;
	display: none;
}
.toky_tm_topbar.animate .topbar_line1,
.toky_tm_topbar.animate .topbar_line2,
.toky_tm_topbar.animate .topbar_line3,
.toky_tm_topbar.animate .topbar_line4{
	display: block;
}
.toky_tm_topbar .topbar_line1{left: 20%;}
.toky_tm_topbar .topbar_line2{left: 36%;}
.toky_tm_topbar .topbar_line3{left: 64%;}
.toky_tm_topbar .topbar_line4{left: 80%;}
.toky_tm_topbar .topbar_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 40px 20px 50px;
}

.toky_tm_topbar .logo img{
	max-width: 100px;
	max-height: 70px;
}
.toky_tm_topbar .menu{
	display: flex;
	align-items: center;
}
.toky_tm_topbar .list{
	padding-right: 40px;
}
.toky_tm_topbar .list ul{
	margin: 0px;
	list-style-type: none;
}
.toky_tm_topbar .list ul li{
	margin: 0px 20px 0px 0px;
	display: inline-block;
	list-style-type: none;
	opacity: 0;
	visibility: hidden;
	position: relative;
	left: 10px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.toky_tm_topbar .list ul li:last-child{
	margin-right: 0px; 
}
.toky_tm_topbar .list ul li.opened{
	opacity: 1;
	visibility: visible;
	left: 0px;
}
.toky_tm_topbar .list ul li a{
	text-decoration: none;
	color: var(--black);
	font-family: "Poppins";
}
.toky_tm_topbar .trigger{
	line-height: 1;
}
.trigger .hamburger-inner, 
.trigger .hamburger-inner:after, 
.trigger .hamburger-inner:before{
	height: 2px;
	width: 30px;
}
.trigger .hamburger{
	padding: 0px;
}

/*---------------------------------------------------*/
/*	04) ARLO MOBILE MENU
/*---------------------------------------------------*/

.tm_mobile_menu{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.tm_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: var(--white);
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding: 15px 30px 15px 40px;
}
.tm_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tm_mobile_menu .mobile_in .logo img{
	max-width: 80px;
	max-height: 70px;
}
.tm_mobile_menu .trigger{
	line-height: 0;
}
.tm_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: var(--gray-dark);
	display: none;
}
.tm_mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}
.tm_mobile_menu .dropdown .dropdown_inner ul{
	margin: 0px;
	list-style-type: none;
}
.tm_mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0px;
	float: left;
	width: 100%;
}
.tm_mobile_menu .dropdown .dropdown_inner ul li a{
	text-decoration: none;
	color: var(--black);
	display: inline-block;
	padding: 0px 0px;
	font-family: "Poppins";
	font-weight: 500;
}

/*---------------------------------------------------*/
/*	05)  HERO
/*---------------------------------------------------*/

.tm_hero{
	width: 100%;
	min-height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 100px;
}
.tm_hero .image{
	width: 170px;
	height: 170px;
	margin: 0px auto;
	position: relative;
	border-radius: 100%;
	margin-bottom: 32px;
}
.tm_hero .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	border-radius: 100%;
}
.tm_hero .name{
	margin-bottom: 10px;
}
.tm_hero .name h3{
	font-size: 35px;
	font-weight: 700;
}
.tm_hero .job p{
	font-family: "Poppins";
}
.tm_down{
	position: absolute;
	bottom: 50px;
}
.tm_down .line_wrapper{
	position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    right: 0;
   	margin: 0px auto;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
	
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}
.tm_down .line_wrapper{
    width: 1px;
    height: 50px;
    background: none;
	display: block;
}
.tm_down .line_wrapper:before{
	content: "";
	background-color: var(--black);
	width: 1px;
    height: 50%;
    display: block;
    top: 0;
	
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    -ms-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;;
}

@-webkit-keyframes scroll-down {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/*---------------------------------------------------*/
/*	06)  ABOUT
/*---------------------------------------------------*/

.tm_about{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 97px;
}
.tm_title_holder{
	text-decoration: underline;
	text-underline-offset: 5px;
	width: 100%;
	height: auto;
	margin-top: 40px;
	clear: both;
	float: left;
	text-align: center;
}
.tm_title_holder h3{
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 600;
}
.tm_about .text{
	width: 100%;
	float: left;
	text-align: center;
	margin-top: 43px;
	margin-bottom: 22px;
}
.tm_about .text span{
	color: var(--black);
	font-weight: 500;
}
.tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
}
.tm_button a{
	text-decoration: none;
	color: var(--black);
	position: relative;
	display: inline-block;
}
.tm_button a:before{
	content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.15);
}
.tm_button a:after{
	content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: currentColor;
}
.tm_button a:hover:after{
	width:100%;
	left:0;
	right:auto;
}

/*---------------------------------------------------*/
/*	07)  SERVICE
/*---------------------------------------------------*/

.tm_services{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	margin-bottom: 87px;
}
.tm_services .service_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 43px;
}
.tm_services .service_list ul{
	margin:0px;
	list-style-type: none;
}
.tm_services ul li{
	margin: 0px;
	float:left;
	width: 100%;
}

/*---------------------------------------------------*/
/*	08)  PORTFOLIO
/*---------------------------------------------------*/

.tm_portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 67px;
}
.tm_portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 56px;
}
.tm_portfolio .portfolio_list ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.tm_portfolio .portfolio_list ul li{
	margin: 0px 0px 30px 0px;
	float:left;
	width: 50%;
	padding-left: 30px;
}
.tm_portfolio .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.tm_portfolio .list_inner img{
	opacity: 0;
	min-width: 100%;
}
.tm_portfolio .list_inner .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.tm_portfolio .list_inner .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	background-color: rgba(255,255,255,0);
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tm_portfolio .list_inner:hover .overlay{
	background-color: rgba(255,255,255,1);
}
.tm_portfolio .list_inner .title{
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 10px;
	width: 100%;
	padding: 0px 10px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tm_portfolio .list_inner .title h3{
	font-size: 14px;
    font-weight: 600;
}
.tm_portfolio .list_inner:hover .title{
	margin-top: 0px;
	opacity: 1;
	visibility: visible;
}
.tm_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}

/*---------------------------------------------------*/
/*	09)  SKILLS
/*---------------------------------------------------*/

.tm_resume{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 93px;
}
.tm_resume .resume_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 46px;
	text-align: center;
}
.tm_resume .resume_list ul{
	margin: 0px;
	list-style-type: none;
}
.tm_resume .resume_list ul li{
	margin: 0px 0px 9px 0px;
	width: 100%;
	float: left;
}
.tm_resume .resume_list ul li:last-child{
	margin-bottom: 0px;
}
.tm_resume .resume_list ul li span{
	color: var(--black);
	font-weight: 600;
	font-size: 14px;
	font-family: "Poppins";
	display: inline-block;
}
.tm_resume .resume_list ul li p{
	line-height: 1.4;
}

/*---------------------------------------------------*/
/*	10)  AWARDS
/*---------------------------------------------------*/

.tm_awards{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 87px;
}
.tm_awards .awards_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	padding-top: 43px;
}
.tm_awards .awards_list ul{
	margin: 0px;
	list-style-type: none;
}
.tm_awards .awards_list ul li{
	margin: 0px;
	width: 100%;
	float: left;
}

/*---------------------------------------------------*/
/*	11)  NEWS
/*---------------------------------------------------*/

.tm_news{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 57px;
}
.tm_news .news_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 55px;
}
.tm_news .news_list ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.tm_news .news_list ul li{
	margin: 0px 0px 30px 0px;
	float:left;
	width: 50%;
	padding-left: 30px;
}
.tm_news .news_list ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.tm_news .news_list ul li .list_inner .image{
	position: relative;
}
.tm_news .news_list ul li .list_inner .image img{
	opacity: 0;
	min-width: 100%;
	visibility: hidden;
}
.tm_news .news_list ul li .list_inner .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.tm_news .news_list ul li .details{
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
	padding: 18px 10px 0px 10px;
}
.tm_news .news_list ul li .details a{
	text-decoration: none;
	color: var(--black);
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	line-height: 25px;
}
.tm_news .news_list ul li .date{
	font-family: "Poppins";
}
.tm_modalbox_news{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 15;
	background-color: rgba(0,0,0,.8);
	opacity: 0;
	visibility: hidden;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tm_modalbox_news.opened{
	opacity: 1;
	visibility: visible;
}
.tm_modalbox_news .container{
	height: 100vh;
}
.tm_modalbox_news .box_inner{
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 700px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--gray-dark);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	margin-top: -20px;
	transition-delay: .3s;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.tm_modalbox_news.opened .box_inner{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.tm_modalbox_news .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 40px;
	z-index: 111111;
}
.tm_modalbox_news .close a{
	text-decoration: none;
	color: var(--gray-dark);
}
.tm_modalbox_news .close .svg{
	width: 50px;
	height: 50px;
}
.tm_modalbox_news .description_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 40px;
	overflow-y: scroll;
}
.tm_modalbox_news .details{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.tm_modalbox_news .description_wrap .image{
	position: relative;
	max-height: 450px;
	z-index: -1;
	margin-bottom: 40px;
}
.tm_modalbox_news .description_wrap .image img{
	min-width: 100%;
}
.tm_modalbox_news .description_wrap .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.tm_modalbox_news .details .title{
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 9px;
}
.tm_modalbox_news .details .date{
	font-family: "Poppins";
}
.tm_news .main_content{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
	display: none;
}
.tm_modalbox_news .main_content{
	width: 100%;
	float: left;
}
.tm_modalbox_news .main_content .descriptions{
	width: 100%;
	float: left;
}
.tm_modalbox_news .main_content .descriptions p{
	margin-bottom: 22px;
}
.tm_modalbox_news .news_share{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.tm_modalbox_news .news_share span{
	font-family: "Montserrat";
	font-weight: 600;
	font-style: italic;
	padding-right: 20px;
	color: var(--black);
}
.tm_modalbox_news .news_share ul{
	margin: 0px;
	list-style-type: none;
	position: relative;
	top: -2px;
}
.tm_modalbox_news .news_share ul li{
	margin: 0px 12px 0px 0px;
	display: inline-block;
}  
.tm_modalbox_news .news_share ul li .svg{
	width: 13px;
	height: 13px;
}

/*---------------------------------------------------*/
/*	12)  CONTACT
/*---------------------------------------------------*/

.tm_contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 42px;
}
.tm_contact .short{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 43px;
}
.tm_contact .short ul{
	margin: 0px;
	list-style-type: none;
}
.tm_contact .short ul li{
	margin: 0px;
	width: 100%;
	float: left;
}
.tm_contact .fields{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.tm_contact .fields .first{
	width: 100%;
	float: left;
}
.tm_contact .fields ul{
	margin: 0px;
	list-style-type: none;
}
.tm_contact .fields ul li{
	width: 100%;
	margin: 0px 0px 30px 0px;
	float: left;
}
.tm_contact .fields ul li input{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	background-color: var(--white);
	text-align: center;
	color: var(gray-medium);
}
.tm_contact .fields ul li input:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.15);
}
.tm_contact .fields .last textarea{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	height: 120px;
	resize: none;
	margin-bottom: 10px;
	background-color: var(--white);
	text-align: center;
	color: var(gray-medium);
}
.tm_contact .fields .last textarea:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.15);
} 
.tm_contact .empty_notice{
	color: var(--red);
	margin-bottom: 7px;
	display: none;
	text-align: center;
	font-weight: 500;
}
.tm_contact .contact_error{
	color: var(--red);
	text-align: center;
	font-weight: 500;
}
.tm_contact .returnmessage{
	color:var(--blue);
	margin-bottom: 7px;
	text-align: center;
	font-weight: 500;
}

/*---------------------------------------------------*/
/*	13)  COPYRIGHT
/*---------------------------------------------------*/

.tm_copyright{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 50px 0px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.tm_copyright .social{
	width: 100%;
	float: left;
}
.tm_copyright .social ul{
	margin: 0px;
	list-style-type: none;
}
.tm_copyright .social ul li{
	margin: 0px 10px 0px 0px;
	display: inline-block;
}
.tm_copyright .social ul li:last-child{
	margin-right: 0px;
}
.tm_copyright .social ul li a{
	text-decoration: none;
	color: var(--black);
}
.tm_copyright .social ul li .svg{
	width: 13px;
	height: 13px;
}

/*---------------------------------------------------*/
/*	14)  MAGIC CURSOR
/*---------------------------------------------------*/

.wrapper[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
}
.mouse-cursor{
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 50;
  background-color: var(--black);
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: var(--black);
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--black);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 50;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{
	opacity: 0;
}

.progressbar{
    position: fixed;
	height: 100px;
    width: 1px;
	bottom: 25px;
    right: -25px;
    background-color: rgba(0,0,0,.08);
    z-index: 10;
    transition: all .3s ease;
}
.progressbar.animate{
	right: 25px;
}

.progressbar .line {
	position: absolute;
    width: 1px;
	height: auto;
    background-color: rgba(0,0,0,.4);
}

.progressbar .text{
	position: absolute;
	top: -77%;
    left: 0px;
	font-family: "Poppins";
	font-size: 13px;
    transform: rotateZ(90deg);
	text-transform: uppercase;
    transform-origin: left;
	white-space: nowrap;
}
.progressbar a{
	text-decoration: none;
	color: var(--black);
}
 

/*---------------------------------------------------*/
/*	15)  MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1040px) {
	.tm_hero .image{width: 145px;height: 145px;margin-bottom: 25px;margin-top: 30px;}
	.tm_hero .name h3{font-size: 30px;}
	.tm_hero .name{margin-bottom: 5px;}
	.toky_tm_topbar{display: none;}
	.tm_mobile_menu{display: block;}
	.line1,.line2,.line3,.line4{display: none;}
	.tm_modalbox_news .box_inner{width: 550px;}
}
@media (max-width: 768px) {
	.tm_portfolio .portfolio_list ul{margin: 0px;}
	.tm_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.tm_news .news_list ul{margin: 0px;}
	.tm_news .news_list ul li{width: 100%;padding-left: 0px;}
	.container{padding: 0px 20px;}
	.tm_mobile_menu .mobile_menu_inner{padding: 15px 10px 15px 20px;}
	.tm_mobile_menu .dropdown .dropdown_inner{padding: 25px 20px;}
	.tm_modalbox_news .box_inner{width: 350px;}
	.tm_modalbox_news .description_wrap{padding: 25px;}
	.tm_modalbox_news .close{margin-left: 10px;}
	.tm_modalbox_news .close .svg{width: 30px;height: 30px;}
}
@media (max-width: 480px) {
	.line1,.line2,.line3,.line4{display: none;}
}