@charset "utf-8";

/*
Copyright (c) 2021 Brian Calvo Aragón
Author: Brian Calvo Aragón

01)	BASE
02)	NAVEGACIÓN
03) MOBILE MENU
04) PERFIL
05) PORTFOLIO
06) SKILLS
07) EXPERIENCE
08) PRICING
09) NEWS
10) CONTACT
11) COPYRIGHT
12) CURSOR
13) MODALBOX
14) MEDIA QUERIES (SMALL DEVICES)


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

html{
    cursor: none;
    margin: 0px;
    overflow-x: hidden;
    padding: 0px;
}
body{
    background-color: #fff;
    color: #767676;
    font-family: "Mulish";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 28px;
    word-wrap: break-word;
}
body::-webkit-scrollbar{
    width: 11px;
}
body{
    scrollbar-color: #999 #fff;
    scrollbar-width: thin;
}
body::-webkit-scrollbar-thumb{
    background-color: #999;
    border: 3px solid #fff;
    border-radius: 6px;
}
body::-webkit-scrollbar-track{
    background: #fff;
}
svg{
    fill: currentColor;
    height: 15px;
    width: 15px;
}
img.svg{
    height: 15px;
    width: 15px;
}
.container{
    clear: both;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    padding: 0px 40px;
    position: relative;
    width: 100%;
}
h1, h2, h3, h4, h5, h6{
	color: #000;
    font-family: "Poppins";
    font-weight:500;
	line-height: 1.2;	
}
h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }
#preloader{
    display: flex;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}
#preloader::before, #preloader::after{
    background-color: #000;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all 0.3s ease 0s;
    width: 50%;
    z-index: -1;
}

#preloader::after{
    left: auto;
    right: 0;
}
#preloader .loader_line{
    height: 250px;
    margin: auto;
    overflow: hidden;
    position: relative;
    transition: all 0.8s ease 0s;
    width: 1px;
}
.loader_line::after{
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
    background-color: #9999;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    width: 1px;
}
.loader_line::before{
    animation: lineheight 1000ms ease-in-out 0s forwards;
    background-color: #fff;
    content: '';
    height: 0%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
@keyframes lineheight {
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}
@keyframes lineround {
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(200%);
    }
}
                /* OCULTA TODO */
.preloaded::after, .preloaded::before{
    animation: nopreloaded 300ms ease-in-out 500ms forwards;
}
.preloaded .loader_line{
    height: 100%!important;
    opacity: 0;
}
.preloaded .loader_line::after{
    opacity: 0;
}
@keyframes nopreloaded {
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}
                /* /OCULTA TODO */

.all_wrap{
    clear: both;
    float: left;
    height: auto;
    position: relative;
    width: 100%;
}
.all_wrap, .all_wrap *{
    box-sizing: border-box;
}
.section{
    clear: both;
    float: left;
    height: auto;
    width: 100%;
}
.sticky_section{
    overflow: visible;
    position: sticky;
    top: 50px;
}
.sticky_section::after{
    clear: both;
    content: '';
    display: table;
}

/*
--------------------------------------------------
	                02) NAVEGACIÓN
--------------------------------------------------
*/

.navbar{
    left: 0px;
    position: fixed;
    right: 0px;
    transform: translateY(-100%);
    transition: all .4s ease;
    top: 0px;
    z-index: 10;
}
body.opened .navbar{
    transform: translateY(0);
    transition-delay: .4s;
}
.navbar .wrapper{
    clear: both;
    float: left;
    height: auto;
    transition: all .3s ease;
    width: 100%;
}
.navbar.animate .wrapper{
    background-color: rgba(255, 255, 255, 1.00);
}
.navbar .navbar_inner{
    align-items: center;
    clear: both;
    display: flex;
    justify-content: space-between;
    height: auto;
    padding: 30px 37px 30px 50px;
    transition: all .3s ease;
    width: 100%;
}
.navbar.animate .navbar_inner{
    padding: 20px 37px 20px 50px;
}
.navbar .logo img{
    max-height: 70px;
}
.navbar .menu{
    align-items: center;
    display: flex;
}
.navbar .list{
    padding-right: 40px;
}
.navbar .list ul{
    margin: 0px;
    list-style-type: none;
}
.navbar .list ul li{
    display: inline-block;
    left: 10px;
    list-style-type: none;
    margin: 0px 20px 0px 0px;
    opacity: 0;
    position: relative;
    transition: all .3s ease;
    visibility: hidden;
}
.navbar .list ul li:last-child{
    margin-right: 0px;
}
.navbar .list ul li.opened{
    left: 0px;
    opacity: 1;
    visibility: visible;
}
.navbar .list ul li a{
    color: #000;
    font-family: "Poppins";
    text-decoration: none;
    transition: all .3s ease;
}
.navbar .list ul li a:hover{
    color: #666E78;
}
.navbar .list ul li.current a{
    color: #666E78;
}
.navbar .trigger{
    line-height: 1;
}
.trigger .hamburger-inner, 
.trigger .hamburger-inner:after, 
.trigger .hamburger-inner:before{
	height: 2px;
	width: 30px;
}
.trigger .hamburger{
	padding: 0px;
}
.language {
	margin-left: auto;
	display: inline-flex;
	margin-right: 20px;
}
.languageSelector button{
	background: transparent;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	outline: none;
	color: #000;
	font-family: "Poppins";
	text-decoration: none;
	transition: all .3s ease;
	font-size: 16px;
	border: none;
}
.selectedLanguage {
    font-weight: bold;
}

/*
--------------------------------------------------
	                03) MENU MÓVIL
--------------------------------------------------
*/

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

/*
--------------------------------------------------
	                04) PERFIL
--------------------------------------------------
*/

.profile{
    background-color: #f9f9f9;
    clear: both;
    float: left;
    min-height: 100vh;
    width: 100%;
}
.profile .container{
    min-height: 100%;
}
.profile .content{
    align-items: center;
    display: flex;
    min-height: 100vh;
    position: relative;
    width: 100%;
}
.profile .content .left{
    opacity: 0;
    padding-right: 50px;
    top: 20px;
    transition: all .4s ease;
    width: 50%;
    visibility: hidden;
}
body.opened .profile .content .left{
    opacity: 1;
    top: 0px;
    visibility: visible;
}
.profile .name{
    color: #000;
    display: inline-block;
    font-family: "Poppins";
    font-weight: 500;
    margin-bottom: 16px;
}
.profile .jon{
    font-size: 45px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.profile .services{
    clear: both;
    float: left;
    height: auto;
    margin-bottom: 35px;
    width: 100%;
}
.profile .services ul{
    list-style-type: none;
    margin: 0px;
}
.profile .services ul li a{
    color: #000;
    display: inline-block;
    font-size: 17px;
    padding: 8px 0px;
    position: relative;
    text-decoration: none;
    transition: all .3s ease;
}
.profile .services ul li .svg{
    height: 17px;
    left: 10px;
    top: 2px;
    transition: all 0.3s ease;
    position: relative;
    width: 17px;
}
.profile .services ul li a:hover{
    color: #666E78;
}
.profile .services ul li a:hover .svg{
    color: #666E78;
    transform: rotate(-50deg);
}
.profile .services ul li .image{
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: -111;
}
.profile .popup_informations{
    display: none;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: -11;
}
.profile .short_info{
    clear: both;
    float: left;
    height: auto;
    width: 100%;
}
.profile .short_info ul{
    list-style-type: none;
    margin: 0px;
}
.profile .short_info ul li{
    display: inline-block;
    margin: 0px 50px 15px 0px;
}
.profile .short_info ul li:last-child{
    margin-right: 0px;
}
.profile .short_info ul li .list_inner{
    align-items: center;
    display: flex;
}
.profile .short_info ul li h3{
    font-size: 45px;
    font-weight: 600;
}
.profile .short_info ul li span{
    display: inline-block;
    font-family: "Poppins";
    font-size: 14px;
    line-height: 1.4;
    padding-left: 15px;
    position: relative;
    top: -3px;
}
.profile .content .right{
    opacity: 0;
    text-align: right;
    top: 20px;
    transition: all .4s ease;
    padding-left: 200px;
    position: relative;
    visibility: hidden;
    width: 50%;
}
body.opened .profile .content .right{
    opacity: 1;
    top: 0px;
    visibility: visible;
}
.profile .content .right .image{
    position: relative;
}
.profile .content .right .image img{
    min-width: 100%;
    opacity: 0;
    position: relative;
}
.profile .content .right .image .main{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    border-radius: 10px;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    transition: all .4s ease;
    z-index: 2;
}
body.opened .profile .content .right .image .main{
    transform: rotate(7deg);
}
.profile .content .right .image .shape{
    background-color: #666E78;
    bottom: -23px;
    border-radius: 10px;
    left: -95px;
    position: absolute;
    top: 23px;
    transform: rotate(0deg);
    transition: all .4s ease;
    width: 90%;
    z-index: 1;
}
body.opened .profile .content .right .image .shape{
    transform: rotate(-6deg);
}
.profile .down{
    bottom: 8%;
    left: 0px;
    opacity: 0;
    position: absolute;
    transition: all .4s ease;
    visibility: hidden;
}
body.opened .profile .down{
    bottom: 10%;
    opacity: 1;
    visibility: visible;
}
.profile .down .svg{
    animation: scroll ease 2s infinite;
    height: 40px;
    width: 40px;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(20px);
    }
}
.profile .down a{
    color: #000;
    text-decoration: none;
    transition: all .3s ease;
}
.profile .down a:hover{
    color: #666E78;
}

/*
--------------------------------------------------
	                05) PORTFOLIO
--------------------------------------------------
*/

.main_title{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.main_title span{
	display: inline-block;
	margin-bottom: 10px;
    color: #000;
    font-family: "Poppins";
	font-weight: 500;
}
.main_title h3{
	font-weight: 800;
	text-transform: uppercase;
}
.portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 140px 0px 138px 0px;
}

.portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 92px;
}
.portfolio .portfolio_list .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.portfolio .portfolio_list .image{
	position: relative;
}
.portfolio .portfolio_list .image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.portfolio .portfolio_list .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
	border-radius: 10px;
}
.portfolio .portfolio_list .overlay{
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	background-color: #fff;
	border-radius: 10px;
	z-index: 1;
	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;
}
.portfolio .portfolio_list .list_inner:hover .overlay{
	opacity: 1;
	visibility: visible;
}
.portfolio .portfolio_list .details{
	position: absolute;
	z-index: 2;
	bottom: 41px;
	left: 49px;
	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;
}
.portfolio .portfolio_list .list_inner:hover .details{
	opacity: 1;
	visibility: visible;
}
.portfolio .portfolio_list .details h3{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}
.portfolio .portfolio_list .details span{
	font-family: "Poppins";
}
.portfolio .portfolio_list .list_inner .svg{
	position: absolute;
	top: 40px;
	right: 39px;
	width: 50px;
	height: 50px;
	z-index: 2;
	transform: rotate(-50deg);
	color: #000;
	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;
}
.portfolio .portfolio_list .list_inner:hover .svg{
	opacity: 1;
	visibility: visible;
}
.full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}
.swiper_progress{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	clear: both;
	margin-top: 27px;
}
.swiper_progress .my_pagination_in{
	float: left;
	position: relative;
}
.swiper_progress span{
	display: block;
	float: left;
	font-size: 16px;
	letter-spacing: 0;
	color: #000;
	height: 22px;
	line-height: 22px;
}
.swiper_progress .pagination_progress{
	width: 100px;
	margin: 0 20px;
	position: relative;
}
.swiper_progress .pagination_progress .all{
	height: 1px;
	width: 100%;
	position: absolute;
	z-index: 5;
	top: 0;
	top: 50%;
	left: 0;
	background-color: rgba(0,0,0,.2);
}
.swiper_progress .pagination_progress .all span{
	height: 1px;
	width: 100%;
	background-color: rgba(0,0,0,.5);
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	transform-origin: left top;
	transform: scale(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;
}
.swiper_progress .my_navigation{
	position: relative;
	top: 6px;
}
.swiper_progress .my_navigation ul{
	margin: 0px;
	list-style-type: none;
}
.swiper_progress .my_navigation ul li{
	margin: 0px 10px 0px 0px;
	display: inline-block;
}
.swiper_progress .my_navigation ul li:last-child{
	margin-right: 0px;
}
.swiper_progress .my_navigation ul li a{
	text-decoration: none;
	color: #000;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.swiper_progress .my_navigation ul li a:hover{
	color: #ff4522;
}
.swiper_progress .my_navigation ul li .svg{
	width: 27px;
	height: 27px;
}
.swiper_progress .my_navigation ul li .my_prev .svg{
	transform: rotate(180deg);
}
.portfolio .hidden_content{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.modalbox .popup_details{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.modalbox .popup_details .top_image{
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;
}
.modalbox .popup_details .top_image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.modalbox .popup_details .top_image .main{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 10px;
}
.modalbox .portfolio_main_title{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.modalbox .portfolio_main_title h3{
	font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}
.modalbox .main_details{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 60px;
}
.modalbox .main_details .textbox{
	width: 70%;
	padding-right: 40px;
}
.modalbox .main_details .textbox p{
	margin-bottom: 15px;
}
.modalbox .main_details .textbox p:last-child{
	margin-bottom: 0px;
}
.tokyo_tm_modalbox .main_details .detailbox{
	width: 30%;
	padding-left: 40px;
}
.modalbox .main_details .detailbox > ul{
	margin: 0px;
	list-style-type: none;
}
.modalbox .main_details .detailbox > ul > li{
	margin: 0px 0px 8px 0px;
	width: 100%;
	float: left;
}
.modalbox .main_details .detailbox > ul > li:last-child{
	margin-bottom: 0px;
}
.modalbox .main_details .detailbox .first{
    font-weight: 700;
	display: block;
	color: #000;
	margin-bottom: 3px;
}
.modalbox .main_details .detailbox span a{
	text-decoration: none;
	color: #767676;
}
.modalbox .main_details .detailbox .share{
	margin: 0px;
	list-style-type: none;
	position: relative;
	top: 7px;
}
.modalbox .main_details .detailbox .share li{
	margin: 0px 13px 0px 0px;
	display: inline-block;
}
.modalbox .main_details .detailbox .share li:last-child{
	margin-right: 0px;
}
.modalbox .main_details .detailbox .share li a{
	text-decoration: none;
	color: #000;
}
.modalbox .additional_images{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.modalbox .additional_images ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.modalbox .additional_images ul li{
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}
.modalbox .additional_images ul li:nth-child(3n-2){
	width: 100%;
}
.modalbox .additional_images ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.modalbox .additional_images ul li .my_image{
	position: relative;
}
.modalbox .additional_images ul li .my_image img{
	opacity: 0;
	min-width: 100%;
}
.modalbox .additional_images ul li .my_image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

/*
--------------------------------------------------
	                06) SKILLS
--------------------------------------------------
*/

.skills{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	padding: 140px 0px 150px 0px;
}
.skills:before{
	position: absolute;
    content: "";
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;  
    background-image: url(../img/patterns/white-texture.png);
    background-repeat: repeat;
    opacity: .6; 
    z-index: 2;
}
.skills:after{
	position: absolute;
    content: "";
    top: 0px;
   	bottom: 0px;
   	left: 0px;
   	right: 0px;
   	background-color: #000;
   	z-index: 1;
}
.skills .main_title.light h3{
	color: #fff;
}
.skills .main_title.light span{
	color: #fff;
}
.skills .skills_inner{
	width: 100%;
	float: left;
	height: auto;
	clear: both;
	position: relative;
	z-index: 3;
}
.skills .left{
	width: 60%;
	padding-right: 200px;
}
.skills .text{
	width: 100%;
	float: left;
	margin-top: 40px;
	margin-bottom: 44px;
}
.skills .text p{
	color: #bbb;
}
.dodo_progress{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.progress_inner{
	width:100%;
	margin-bottom:25px;
}
.progress_inner:last-child{
	margin-bottom: 0px;
}
.progress_inner > span{
	margin:0px 0px 11px 0px;
	width:100%;
	display:block;
	text-align:left;
	color: #fff;
	font-family: "Poppins";
}
.progress_inner span.number{
	float: right;
}
.progress_inner .background{
	background:rgba(255,255,255,.09);
	width:100%;
	min-width:100%;
	position:relative;
	height:8px;
}
.progress_inner .background .bar_in{
	height:100%;
	background:#fff;
	width:0px;
	overflow:hidden;
}
.progress_inner .background .bar_in{
	background:#fff;
}
.progress_inner .background .bar{
	height:100%;
}
.progress_inner .background .bar.open{
	-webkit-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* Safari 4+ */
	-moz-animation:    wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* Fx 5+ */
	animation:         wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* IE 10+ */
	width:100%;	
}

@-webkit-keyframes wow {0%{ width:0%; } 100%{ width:100%; }}
@-moz-keyframes wow {0%{ width:0%; } 100%{ width:100%; }}
@keyframes wow {0%{ width:0%; } 100%{ width:100%; }}

.skills .right{
	width: 40%;
	position: absolute;
	right: 0px;
	top: 0px;
	bottom:-220px;
	overflow: hidden;
}
.skills .my_video{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.skills .my_image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position:center;
	background-size: cover;
}
.skills .right[data-background-style="video"] .my_image{display: none;}
.skills .right[data-background-style="image"] .my_video{display: none;}


/*
--------------------------------------------------
	                07) TIMELINE
--------------------------------------------------
*/

.timeline{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 140px 0px 113px 0px;
}
.timeline .timeline_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 54px;
}
.timeline .timeline_list ul{
	margin: 0px;
	list-style-type: none;
}
.timeline .timeline_list ul li{
	margin: 0px;
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 27px 0px 30px 0px;
}
.timeline .timeline_list ul li:last-child{
	border-bottom: none;
}
.timeline .timeline_list ul li .list_inner{
	width: 33.3333%;
    float: left;
    padding-right: 40px;
}
.timeline .timeline_list ul li .list_inner:last-child{
	padding-right: 0px;
}
.timeline .timeline_list ul li .list_inner span{
	display: inline-block;
	font-size: 18px;
}
.timeline .timeline_list ul li .list_inner:nth-child(2) span{
	color: #000;
}


/*
--------------------------------------------------
	                08) CONTACT
--------------------------------------------------
*/

.contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #f9f9f9;
	padding: 140px 0px 119px 0px;
}
.contact .contact_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	margin-top: 40px;
}
.contact .left{
	width: 50%;
	padding-right: 100px;
}
.contact .left .text{
	width: 100%;
	float: left;
	margin-bottom: 42px;
}
.contact .short{
	width: 100%;
	float: left;
}
.contact .short ul{
	margin: 0px;
	list-style-type: none;
}
.contact .short ul li{
	margin: 0px 0px 23px 0px;
	width: 100%;
	float: left;
}
.contact .short ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	padding-left: 30px;
}
.contact .short ul li .list_inner .svg{
	position: absolute;
    left: 0px;
    width: 18px;
    height: 18px;
    top: 50%;
	margin-top: -1px;
    transform: translateY(-50%);
    color: #ff4522;
}
.contact .short ul li .list_inner span{
	font-size: 18px;
    color: #000;
    font-family: "Poppins";
}
.contact .right{
	width: 50%;
	padding-left: 100px;
}
.contact .fields{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.contact .fields .first{
	width: 100%;
	float: left;
}
.contact .fields ul{
	margin: 0px;
	list-style-type: none;
}
.contact .fields ul li{
	width: 100%;
	margin: 0px 0px 30px 0px;
	float: left;
}
.contact .fields ul li input{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	background-color: transparent;
}
.contact .fields ul li input:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.3);
}
.contact .fields .last textarea{
	width: 100%;
	border: 1px solid rgba(0,0,0,.1);
	height: 44px;
	resize: none;
	margin-bottom: 20px;
	background-color: transparent;
}
.contact .fields .last textarea:focus{
	outline: none;
	border: 1px solid rgba(0,0,0,.3);
} 
.contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}
.contact .contact_error{
	color: #F52225;
	text-align: left;
	font-weight: 500;
}
.contact .returnmessage{
	color:#3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}
.button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.button a{
	text-decoration: none;
    color: #fff;
    font-size: 17px;
    display: block;
	text-align: center;
    padding: 8px 20px;
    position: relative;
	background-color: #ff4522;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.button a .svg{
	position: relative;
    top: 2px;
    width: 17px;
    height: 17px;
    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;
}
.button a:hover{
	color: #fff;background-color: #000;
}
.button a:hover .svg{
	transform: rotate(-50deg);
}


/*
--------------------------------------------------
	                9) CURSOR
--------------------------------------------------
*/

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

/*
--------------------------------------------------
	                10) MODALBOX
--------------------------------------------------
*/

.modalbox{
    background-color: rgba(0, 0, 0, .8);
    height: 100vh;
    left: 0px;
    opacity: 0;
    position: fixed;
    right: 0px;
    top: 0px;
    transition: all .3s ease;
    visibility: hidden;
    z-index: 15;
}
.modalbox.opened{
    opacity: 1;
    visibility: visible;
}
.modalbox .box_inner{
    background-color: #fff;
    bottom: 70px;
    left: 50%;
    margin-top: -20px;
    position: absolute;
    top: 70px;
    transform: translateX(-50%);
    transition: all .3s ease;
    transition-delay: .3s;
    visibility: hidden;
    width: 968px;
    z-index: 1;
}
.modalbox.opened .box_inner{
    margin-top: 0px;
    opacity: 1;
    visibility: visible;
}
.modalbox .close{
    left: 100%;
    margin-left: 20px;
    top: 0px;
    position: fixed;
    z-index: 111111;
}
.modalbox .close a{
    color: #fff;
    text-decoration: none;
}
.modalbox .close .svg{
    height: 50px;
    width: 50px;
}
.modalbox .description_wrap{
    float: left;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll;
    padding: 50px;
    position: relative;
    width: 100%;
}
.modalbox .popup_informations{
    clear: both;
    float: left;
    height: auto;
    width: 100%;
}
.modalbox .popup_informations .image{
    margin-bottom: 37px;
    position: relative;
}
.modalbox .popup_informations .image img{
    min-width: 100%;
    opacity: 0;
    position: relative;
}
.modalbox .popup_informations .image .main{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    bottom: 0px;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
}
.modalbox .popup_informations .title{
    float: left;
    margin-bottom: 22px;
    width: 100%;
}
.modalbox .title h3{
    font-size: 22px;
    font-weight: 700;
}
.modalbox .description{
    float: left;
    width: 100%;
}
.modalbox .description p{
    margin-bottom: 15px;
}
.modalbox .description p:last-child{
    margin-bottom: 0px;
}
.modalbox .description_wrap::-webkit-scrollbar{
    width: 11px;
}
.modalbox .description_wrap{
    scrollbar-color: #999 #fff;
    scrollbar-width: thin;
}
.modalbox .description_wrap:-webkit-scrollbar-track{
  background: #fff;
}
.modalbox .description_wrap::-webkit-scrollbar-thumb{
    background-color: #999;
    border-radius: 6px;
    border: 3px solid #fff;
}

/*
--------------------------------------------------
	                11) COPYRIGHT
--------------------------------------------------
*/

.copyright{
    background-color: #000;
    clear: both;
	float: left;
	height: auto;
    padding: 28px 0px 32px 0px;
    text-align: center;
	width: 100%;	
}
.copyright .copyright_inner{
	align-items: center;
    clear: both;
    display: flex;
	float: left;
	height: auto;
	justify-content: space-between;	
	width: 100%;	
}
.copyright .text p{
	color: #fff;
}
.copyright .social ul{
	list-style-type: none;
    margin: 0px;	
}
.copyright .social ul li{
	display: inline-block;
    margin: 0px 20px 0px 0px;	
}
.copyright .social ul li:last-child{
	margin-right: 0px;
}
.copyright .social ul li a{
	color: #fff;
    text-decoration: none;	
}

/*
--------------------------------------------------
	        12) MEDIA QUERIES (SMALL DEVICES)
--------------------------------------------------
*/

@media (max-width: 1400px) {
	.container{max-width: 1170px;}
	.navbar .topbar_inner{padding: 22px 37px 22px 50px;}
	.navbar.animate .topbar_inner{padding: 18px 37px 18px 50px;}
	.profile .content .right .image{max-width: 80%;}
	.profile .name{margin-bottom: 10px;}
	.profile .job{font-size: 35px;margin-bottom: 20px;}
	.profile .services{margin-bottom: 25px;}
	.profile .services ul li a{padding: 6px 0px;}
	.modalbox .box_inner{width: 700px;}
	.modalbox .main_details{flex-direction: column;}
	.modalbox .main_details .textbox{width: 100%;padding-right: 0px;margin-bottom: 30px;}
	.modalbox .main_details .detailbox{width: 100%;}
	.modalbox .additional_images ul{margin: 0px;}
	.modalbox .additional_images ul li{width: 100%;padding-left: 0px;}
}
@media (max-width: 1040px) {
	.mouse-cursor{display: none;}
	.navbar{display: none;}
	.mobile_menu{display: block;}
	.profile{padding: 150px 0px 120px 0px;}
	.profile .content{flex-direction: column-reverse;justify-content: space-around;align-items: baseline;}
	.profile .content .right{padding-left: 0px;margin-bottom: 60px;width: 100%;}
	.profile .content .left{padding-right: 0px;width: 100%;}
	.profile .content .right .image .shape{display: none;}
	.profile .content .right .image .main{transform: rotate(0deg);}
	.profile .content .right .image{max-width: 100%;}
	body.opened .profile .content .right .image .main{transform: rotate(0deg);}
	.profile .job{font-size: 35px;}
	.profile .down{display: none;}
	.skills .right{display: none;}
	.skills .left{width: 100%;padding-right: 0px;}
	.pricing .pricing_inner{flex-direction: column;}
	.pricing .left{width: 100%;padding-right: 0px;}
	.pricing .right{width: 100%;padding-left: 0px;}
	.contact .contact_inner{flex-direction: column;}
	.contact .left{width: 100%;padding-right: 0px;margin-bottom: 30px;}
	.contact .right{width: 100%;padding-left: 0px;}
	.modalbox .box_inner{width: 500px;}
	.modalbox .close .svg{width: 40px;height: 40px;}
}
@media (max-width: 768px) {
	.profile .job{font-size: 30px;}
	.profile .short_info ul li h3{font-size: 35px;}
	.profile .short_info ul li span{font-size: 13px;}
	.portfolio .portfolio_list .svg{width: 35px;height: 35px;top: 33px;right: 32px;}
	.portfolio .portfolio_list .details{bottom: 31px;left: 39px;}
	.portfolio .portfolio_list .details h3{font-size: 18px;}
	.modalbox .portfolio_main_title h3{font-size: 20px;}
	.main_title h3{font-size: 25px;}
	.main_title span{margin-bottom: 6px;}
	.experience .experience_list ul li .list_inner{width: 100%;padding-right: 0px;margin-bottom: 15px;}
	.experience .experience_list ul li .list_inner:last-child{margin-bottom:0px;}
	.pricing .right ul li span{font-size: 16px;}
	.news .news_list .list_inner .svg{width: 35px;height: 35px;top: 33px;right: 32px;}
	.news .news_list .details{padding: 0px 30px 36px 39px;}
	.news .news_list .details h3{font-size: 18px;}
	.contact .short ul li .list_inner span{font-size: 16px;}
	.copyright .copyright_inner{flex-direction: column;}
	.copyright .copyright_inner .text{margin-bottom: 10px;}
	.modalbox .box_inner{width: 300px;}
	.modalbox .close .svg{width: 20px;height: 20px;}
	.modalbox .close{margin-left: -20px;top: -32px;}
	.modalbox .description_wrap{padding: 30px;}
	.modalbox .title h3{font-size: 20px;}
	.modalbox .news_popup_informations .details h3{font-size: 20px;}
}