@charset "utf-8";

/*
/*	Copyright (c) 2022 Coddythemes
/*	Author: Coddythemes
/*	This file is made for CURRENT TEMPLATE

01)	MAYDEN BASE
02) MAYDEN TOPBAR
03) MAYDEN MOBILE MENU
04) MAYDEN HERO
05) MAYDEN ABOUT
06) MAYDEN SERVICES
07) MAYDEN PORTFOLIO
08) MAYDEN NEWS
09) MAYDEN CONTACT
10) MAYDEN COPYRIGHT
11) MAYDEN MAGIC CURSOR
12) MAYDEN MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01) MAYDEN BASE
/*---------------------------------------------------*/

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: #545454;
}
svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #545454;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #545454;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #545454;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #545454;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #545454;
}

::placeholder { /* Most modern browsers support this now. */
   color: #545454;
}

.container{
	max-width: 1250px;
	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:600;
	line-height: 1.5;
	font-family: "Poppins";
	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; }

.mayden_tm_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.mayden_tm_all_wrap,
.mayden_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: #fff;
    -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: #000;
    -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: #CDCDCD;
    -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%;
    }
}
.mayden_tm_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

/*---------------------------------------------------*/
/*	02) MAYDEN TOPBAR
/*---------------------------------------------------*/

.mayden_tm_topbar{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	padding: 30px 0px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_topbar.animate{
	background-color: #000;
	padding: 20px 0px;
}
.mayden_tm_topbar .topbar_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mayden_tm_topbar .logo img{
	max-width: 70px;
}
.mayden_tm_topbar .menu ul{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_topbar .menu ul li{
	margin: 0px 30px 0px 0px;
	display: inline-block;
}
.mayden_tm_topbar .menu ul li:last-child{
	margin-right: 0px;
}
.mayden_tm_topbar .menu ul li a{
	text-decoration: none;
	color: #fff;
	font-family: "Poppins";
	display: inline-block;
	position: relative;
}
.mayden_tm_topbar .menu ul li a:before{
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	background-color: #fff;
	left: 0px;
	bottom: 0px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_topbar .menu ul li a:hover:before{
	width: 100%;
}
.mayden_tm_topbar .menu ul li.current a:before{
	width: 100%;
}

/*---------------------------------------------------*/
/*	03) MAYDEN MOBILE MENU
/*---------------------------------------------------*/

.mayden_tm_mobile_menu{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.mayden_tm_mobile_menu .my_trigger{
	line-height: 1;
	position: relative;
	right: -10px; 
}
.mayden_tm_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: #000;
	padding: 15px 0px;
	box-shadow: 0px 0px 10px rgba(255,255,255,.2);
}
.mayden_tm_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mayden_tm_mobile_menu .mobile_in .logo img{
	max-width: 100px;
}
.my_trigger .hamburger-box{
	display: block;
}
.my_trigger .hamburger{
	padding: 0px;
}
.my_trigger .hamburger .hamburger-inner::before,
.my_trigger .hamburger .hamburger-inner::after,
.my_trigger .hamburger .hamburger-inner{
	background-color: #fff;
	width: 30px;
	height: 2px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #000;
	box-shadow: 0px 0px 10px rgba(255,255,255,.2);
	display: none;
}
.mayden_tm_mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 0px;
}
.mayden_tm_mobile_menu .dropdown .dropdown_inner ul{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0px;
	float: left;
	width: 100%;
}
.mayden_tm_mobile_menu .dropdown .dropdown_inner ul li a{
	text-decoration: none;
	color: #fff;
	display: inline-block;
	padding: 2px 0px;
	font-family: "Poppins";
	font-weight: 500;
}

/*---------------------------------------------------*/
/*	04) MAYDEN HERO
/*---------------------------------------------------*/

.mayden_tm_hero{
	width: 100%;
	height: 100vh;
	float: left;
	position: relative;
}
.mayden_tm_hero .background{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.mayden_tm_hero .background .image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.mayden_tm_hero .background .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
/*	background-color: rgba(0,0,0,.5);*/
	z-index: 1;
}
.mayden_tm_hero .content{
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
}
.mayden_tm_hero .container{
	height: 100%;
}
.mayden_tm_hero .content_inner{
	widows: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.mayden_tm_hero .content_inner h3{
	position: relative;
	color: #202020;
	text-transform: uppercase;
	perspective: 1000px;
	font-size: 95px;
	font-weight: 900;
	letter-spacing: 15px;
}
.mayden_tm_hero .content_inner h3 span:nth-child(1){
	position: relative;
}
.mayden_tm_hero .content_inner h3 span{
	position: absolute;
	top: 0;
  	left: 0;
  	text-shadow:
   	-1px -1px 0 rgba(240,240,240,1),  
    1px -1px 0 rgba(240,240,240,1),
    -1px 1px 0 rgba(240,240,240,1),
     1px 1px 0 rgba(240,240,240,1);
 	 transform-style: preserve-3d;
	white-space: nowrap;
}
.mayden_tm_hero .text{
	max-width: 650px;
	color: #ddd;
	padding-top: 30px;
}
.mayden_tm_down{
	position: absolute;
	left:auto;
	bottom: 15%;
}
.mayden_tm_down svg{
	width: 45px;
	height: 45px;
}
.mayden_tm_down svg #wheel{
	animation: scroll ease 2s infinite;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(90px);
    }
}

/*---------------------------------------------------*/
/*	05) MAYDEN ABOUT
/*---------------------------------------------------*/

.mayden_tm_about{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 133px 0px 150px 0px;
}
.mayden_tm_title{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.mayden_tm_title h3{
	text-transform: uppercase;
	font-size: 45px;
	font-weight: 900;
}
.mayden_tm_title h3 span{
	color: transparent;
	-webkit-text-stroke: 1px #000;
}
.mayden_tm_about .about_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	padding-top: 83px;
}
.mayden_tm_about .left{
	width: 45%;
	position: relative;
	margin-right: 50px;
}
.mayden_tm_about .left img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.mayden_tm_about .left .image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.mayden_tm_about .right{
	width: 55%;
	margin-left: 50px;
}
.mayden_tm_about .title{
	width: 100%;
	float: left;
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.mayden_tm_about .title h3{
	font-weight: 700;
}
.mayden_tm_about .text p{
	margin-bottom: 20px;
}
.mayden_tm_about .text p:last-child{
	margin-bottom: 0px;
}
.mayden_tm_about .text{
	width: 100%;
	float: left;
}
.mayden_tm_about .text .bigger{
	font-size: 18px;
	font-style: italic;
}
.mayden_tm_about .experience{
	width: 100%;
	display: flex;
	align-items: center;
}
.mayden_tm_about .experience .moving{
	font-size: 120px;
	font-weight: 900;
  	background-attachment: fixed;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
	animation: experience 17s linear infinite;
}

@keyframes experience {
    0% {
        background-position: 0px;
    }
    100% {
       background-position: -1000px;
    }
}
.mayden_tm_about .experience .word{
	padding-left: 30px;
}
.mayden_tm_about .experience .word span{
	font-family: "Poppins";
	font-size: 20px;
	font-weight: 800;
	color: #000;
	text-transform: uppercase;
}

/*---------------------------------------------------*/
/*	06) MAYDEN SERVICES
/*---------------------------------------------------*/

.mayden_tm_services{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 133px 0px 100px 0px;
	background-color: #f9f9f9;
}
.mayden_tm_services .service_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 83px;
}
.mayden_tm_services .wrap{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.mayden_tm_services .wrap .in{
	margin: 0px 0px 50px 0px;
	float:left;
	width: 33.3333%;
	padding-left: 50px;
}
.mayden_tm_services .wrap .in .list_inner{
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 60px 50px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.1);
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_services .content{
	position: relative;
	z-index: 2;
}
.mayden_tm_services .number{
	font-size: 90px;
	font-weight: 900;
	color: rgba(0,0,0,.51);
	position: absolute;
	bottom: 6px;
	right: -150px;
	-webkit-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
	-webkit-transform: rotate(90deg) translate(100%, 0%);
    -ms-transform: rotate(90deg) translate(100%, 0%);
	transform: rotate(90deg) translate(100%, 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;
}
.mayden_tm_services .wrap .in.active .list_inner{
	background-color: #fff;
}
.mayden_tm_services .wrap .in.active .number{
	right: 18px;
}
.mayden_tm_services .wrap .in .list_inner .title{
	font-size: 18px;
	margin-bottom: 25px;
}
.mayden_tm_services .details{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_services .details li{
	position: relative;
	margin: 0px;
	padding-left: 20px;
}
.mayden_tm_services .details li:before{
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #545454;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100%;
}

/*---------------------------------------------------*/
/*	07) MAYDEN PORTFOLIO
/*---------------------------------------------------*/

.mayden_tm_portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 133px 0px 100px 0px;
	background-color: #f9f9f9;
}
.mayden_tm_portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 87px;
}
.mayden_tm_portfolio .portfolio_list ul{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}
.mayden_tm_portfolio .portfolio_list ul li{
	margin: 0px 0px 50px 0px;
	float:left;
	width: 33.3333%;
	padding-left: 50px;
}
.mayden_tm_portfolio .portfolio_list ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	overflow: hidden;
}
.mayden_tm_portfolio .portfolio_list ul li img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.mayden_tm_portfolio .portfolio_list ul li .image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_portfolio .portfolio_list ul li .list_inner:hover .image{
	transform: scale(1.1);
}
.mayden_tm_portfolio .portfolio_list ul li .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_portfolio .portfolio_list ul li .list_inner:hover .overlay{
	background-color: rgba(0,0,0,1);
}
.mayden_tm_portfolio .portfolio_list ul li .details{
	position: absolute;
	z-index: 2;
	bottom: 34px;
	left: -150px;
	-webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
	-webkit-transform: rotate(-90deg) translate(0, 100%);
    -ms-transform: rotate(-90deg) translate(0, 100%);
	transform: rotate(-90deg) translate(0, 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;
}
.mayden_tm_portfolio .portfolio_list ul li .list_inner:hover .details{
	left: 25px;
}
.mayden_tm_portfolio .portfolio_list ul li .details h3{
	color: #fff;
	font-size: 18px;
}
.mayden_tm_portfolio .portfolio_list ul li .details span{
	color: #eee;
	font-family: "Poppins";
}
.mayden_tm_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 4;
}

/*---------------------------------------------------*/
/*	08) MAYDEN NEWS
/*---------------------------------------------------*/

.mayden_tm_news{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 133px 0px 100px 0px;
}
.mayden_tm_news .news_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 83px;
}
.mayden_tm_news .news_list ul{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}
.mayden_tm_news .news_list ul li{
	margin: 0px 0px 50px 0px;
	float:left;
	width: 33.3333%;
	padding-left: 50px;
}
.mayden_tm_news .news_list ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	box-shadow: 0 0 15px rgb(0 0 0 / 5%);
}
.mayden_tm_news .news_list .image{
	position: relative;
	overflow: hidden;
}
.mayden_tm_news .news_list .image img{
	opacity: 0;
	min-width: 100%;
	position: relative;
}
.mayden_tm_news .news_list .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_news .news_list .image:hover .main{
	transform: scale(1.1) translateZ(0);
}
.mayden_tm_news .news_list .details{
	width: 100%;
	float: left;
	background-color: #fff;
	padding: 20px 35px 38px 35px;
}
.mayden_tm_news .news_list .date{
	width: 100%;
	float: left;
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.mayden_tm_news .news_list .date p{
	font-family: "Poppins";
}
.mayden_tm_news .news_list .date p a{
	text-decoration: none;
	color: #545454;
	position: relative;
	display: inline-block;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_news .news_list .date p a:hover{
	color: #000;
}
.mayden_tm_news .news_list .date p span{
	display: inline-block;
	position: relative;
}
.mayden_tm_news .news_list .date p span:after{
	position: relative;
    content: ".";
    font-size: 40px;
    top: -3px;
    color: #545454;
    padding: 0px 5px;
}
.mayden_tm_news .news_list .title a{
	text-decoration: none;
	color: #000;
	font-size: 18px;
	display: inline-block;
}
.mayden_tm_modalbox{
	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;
}
.mayden_tm_modalbox ul {
	padding-left: 30px;
}
.mayden_tm_modalbox.opened{
	opacity: 1;
	visibility: visible;
}
.mayden_tm_modalbox .container{
	height: 100vh;
}
.mayden_tm_modalbox .box_inner{
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 968px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	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;
}
.mayden_tm_modalbox.opened .box_inner{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.mayden_tm_modalbox .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 40px;
	z-index: 111111;
}
.mayden_tm_modalbox .close a{
	text-decoration: none;
	color: #fff;
}
.mayden_tm_modalbox .close .svg{
	width: 50px;
	height: 50px;
}
.mayden_tm_modalbox .description_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 70px;
	overflow-y: scroll;
}
.mayden_tm_modalbox .details{
	width: 100%;
	float: left;
	margin-bottom: 28px;
}
.mayden_tm_modalbox .description_wrap .image{
	position: relative;
	max-height: 450px;
	z-index: -1;
	margin-bottom: 20px;
}
.mayden_tm_modalbox .description_wrap .image img{
	min-width: 100%;
}
.mayden_tm_modalbox .description_wrap .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.mayden_tm_modalbox .title{
	width: 100%;
	float: left;
}
.mayden_tm_modalbox .title h3{
	font-size: 25px;
}
.mayden_tm_modalbox .date{
	width: 100%;
    float: left;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 10px;
    margin-bottom: 17px;
}
.mayden_tm_modalbox .date p{
	font-family: "Poppins";
}
.mayden_tm_modalbox .date p a{
	text-decoration: none;
    color: #545454;
    position: relative;
    display: inline-block;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_modalbox .date p a:hover{
	color: #000;
}
.mayden_tm_modalbox .date p span:after{
	position: relative;
    content: ".";
    font-size: 40px;
    top: -3px;
    color: #545454;
    padding: 0px 5px;
}
.mayden_tm_news .main_content{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
	display: none;
}
.mayden_tm_modalbox .main_content{
	width: 100%;
	float: left;
}
.mayden_tm_modalbox .main_content .descriptions{
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.mayden_tm_modalbox .main_content .descriptions .bigger{
	color: #888;
	font-size: 20px;		
	margin-bottom: 30px;
}
.mayden_tm_modalbox .main_content .descriptions p{
	margin-bottom: 18px;
}
.mayden_tm_modalbox .main_content .descriptions p:last-child{
	margin-bottom: 0px;
}
.mayden_tm_modalbox blockquote{
	border-left: 1px solid #000;
	padding: 10px 0px 10px 20px;
	margin-bottom: 18px;
	color: #000;
	font-style: italic;
}
.anim{
	display: inline-block;
	position: relative;
}
.anim:after{
	content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: auto;
    right: 0;
    bottom: 3px;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: currentColor;
}
.anim:hover:after{
	width:100%;
	left:0;
	right:auto;
}

/*---------------------------------------------------*/
/*	09) MAYDEN CONTACT
/*---------------------------------------------------*/

.mayden_tm_contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 133px 0px 150px 0px;
	background-color: #f9f9f9;
}
.mayden_tm_contact .contact_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 83px;
}
.mayden_tm_contact .short_info{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.mayden_tm_contact .short_info > ul{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}
.mayden_tm_contact .short_info > ul > li{
	margin: 0px 0px 50px 0px;
	float:left;
	width: 33.3333%;
	padding-left: 50px;
}
.mayden_tm_contact .short_info > ul > li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	border: 1px solid rgba(0,0,0,.1);
	padding: 60px 50px;
}
.mayden_tm_contact .short_info > ul > li .list_inner .title{
	font-size: 20px;
	margin-bottom: 20px;
}
.mayden_tm_contact .short_info .in{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_contact .short_info .in li{
	margin: 0px;
}
.mayden_tm_contact .short_info a{
	text-decoration: none;
	color: #545454;
	display: inline-block;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_contact .short_info a:hover{
	color: #000;
}
.mayden_tm_contact .mainpart{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
}
.mayden_tm_contact .fields{
	width: 50%;
	height: auto;
	clear: both;
	float: left;
	margin-right: 25px;
}
.mayden_tm_contact .fields .first{
	width: 100%;
	float: left;
}
.mayden_tm_contact .fields ul{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_contact .fields ul li{
	width: 100%;
	margin: 0px 0px 30px 0px;
	float: left;
}
.mayden_tm_contact .fields ul li input{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	background-color: transparent;
}
.mayden_tm_contact .fields ul li input:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.3);
}
.mayden_tm_contact .fields .last textarea{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	height: 120px;
	resize: none;
	margin-bottom: 20px;
	background-color: transparent;
}
.mayden_tm_contact .fields .last textarea:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.3);
} 
.mayden_tm_contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}
.mayden_tm_contact .contact_error{
	color: #F52225;
	text-align: left;
	font-weight: 500;
}
.mayden_tm_contact .returnmessage{
	color:#3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}
.mayden_tm_contact .map_wrap{
	width: 50%;
	height: auto;
	clear: both;
	float: left;
	margin-left: 25px;
	position: relative;
	top: 7px;
}
.mayden_tm_contact .map_wrap .map{
  min-height: 350px;
  width: 100%;
  filter: grayscale(1);
}
.mayden_tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.mayden_tm_button a{
	text-decoration: none;
	color: #fff;
	border: 1px solid #000;
	display: inline-block;
	background-color: #000;
	padding: 10px 40px;
	font-family: "Poppins";
	text-align: center;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mayden_tm_button a:hover{
	color: #000;
	background-color: transparent;
}
.mayden_tm_button[data-style="full"] a{
	display: block;
}

/*---------------------------------------------------*/
/*	10) MAYDEN COPYRIGHT
/*---------------------------------------------------*/

.mayden_tm_copyright{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #000;
	padding: 30px 0px;
}
.mayden_tm_copyright .copyright_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mayden_tm_copyright .copy p{
	color: #fff;
	font-family: "Poppins";
}
.mayden_tm_copyright .copy a{
	color: #fff;
	text-decoration: none;
}
.mayden_tm_copyright .social ul{
	margin: 0px;
	list-style-type: none;
}
.mayden_tm_copyright .social ul li{
	margin: 0px 15px 0px 0px;
	display: inline-block;
}
.mayden_tm_copyright .social ul li:last-child{
	margin-right: 0px;
}
.mayden_tm_copyright .social ul li a{
	text-decoration: none;
	color: #fff;
}

/*---------------------------------------------------*/
/*	11) MAYDEN MAGIC CURSOR
/*---------------------------------------------------*/

.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: 100;
  background-color: #000;
  -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: #000;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{
  opacity: 0;
}
.mayden_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

.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: #000;
}

/*---------------------------------------------------*/
/*	12) MAYDEN MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1200px) {
	.mayden_tm_modalbox .box_inner{width: 700px;}
	.mayden_tm_modalbox .close{margin-left: 20px;}
}
@media (max-width: 1040px) {
	.mayden_tm_topbar{display: none;}
	.mayden_tm_mobile_menu{display: block;}
	.mayden_tm_hero .content_inner h3{font-size: 70px;}
	.mayden_tm_about .about_inner{flex-direction: column;}
	.mayden_tm_about .left{margin: 0px 0px 50px 0px;width: 100%;}
	.mayden_tm_about .right{margin: 0px;width: 100%;}
	.mayden_tm_services .wrap .in{width: 50%;}
	.mayden_tm_portfolio .portfolio_list ul li{width: 50%;}
	.mayden_tm_news .news_list ul li{width: 50%;}
	.mayden_tm_modalbox .box_inner{width: 600px;}
	.mayden_tm_modalbox .close .svg{width: 35px;height: 35px;}
	.mayden_tm_modalbox .description_wrap{padding: 40px;}
	.mayden_tm_modalbox .title h3{font-size: 18px;}
	.mayden_tm_contact .short_info > ul > li{width: 50%;}
	.mayden_tm_contact .mainpart{flex-direction: column;}
	.mayden_tm_contact .fields{width: 100%;margin: 0px 0px 40px 0px;}
	.mayden_tm_contact .map_wrap{margin: 0px;width: 100%;}
	.container{padding: 0px 20px;}
}
@media (max-width: 768px) {
	.mayden_tm_hero .content_inner h3{font-size: 50px;}
	.mayden_tm_about .title h3{font-size: 23px;}
	.mayden_tm_about .experience .moving{font-size: 100px;}
	.mayden_tm_about .experience .word span{font-size: 17px;}
	.mayden_tm_about .experience .word{padding-left: 25px;}
	.mayden_tm_title h3{font-size: 35px;}
	.mayden_tm_services .wrap{margin: 0px;}
	.mayden_tm_services .wrap .in{width: 100%;padding-left: 0px;}
	.mayden_tm_portfolio .portfolio_list ul{margin: 0px;}
	.mayden_tm_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.mayden_tm_news .news_list ul{margin: 0px;}
	.mayden_tm_news .news_list ul li{width: 100%;padding-left: 0px;}
	.mayden_tm_modalbox .box_inner{width: 320px;}
	.mayden_tm_modalbox .close{margin-left: 10px;}
	.mayden_tm_modalbox .main_content .descriptions .bigger{font-size: 18px;}
	.mayden_tm_contact .short_info > ul{margin: 0px;}
	.mayden_tm_contact .short_info > ul > li{width: 100%;padding-left: 0px;}
	.mayden_tm_copyright .copyright_inner{flex-direction: column;}
	.mayden_tm_copyright .copy{margin-bottom: 10px;}
}
@media (max-width: 480px) {
	.mayden_tm_hero .content_inner h3{font-size: 40px;}
	.mayden_tm_services .number{font-size: 70px;}
}