@charset "utf-8";

/*	Copyright (c) 2022 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE


01)	 BASE
02)  MOBILE MENU
03)  HEADER
04)  HERO
05)  PROCESS
06)  MAGIC CURSOR
07)  MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01)  BASE
/*---------------------------------------------------*/

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	overflow-x: hidden;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #6f6b80;
}

svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #6f6f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #6f6f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #6f6f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #6f6f6f;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #6f6f6f;
}

::placeholder { /* Most modern browsers support this now. */
   color: #6f6f6f;
}

body::-webkit-scrollbar {
  width: 11px;
}
body{
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}
body:-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 6px;
  border: 3px solid #fff;
}

.container{
	max-width: 1400px;
	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.3;
	font-family: 'Jost', sans-serif;
	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; }

.cetra_tm_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
    
}
.cetra_tm_all_wrap,
.cetra_tm_all_wrap *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}

#preloader{
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:before,
#preloader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after{
    left: auto;
    right: 0;
}
#preloader .loader_line{
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

@keyframes lineround{
    0%{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%{
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after{
    opacity: 0;
}
.preloaded  .loader_line{
    opacity: 0;
    height: 100%!important;
}
.preloaded:before,
.preloaded:after{
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero{
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}
.cetra_tm_section{
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
}

/*---------------------------------------------------*/
/*	02) MOBILE MENU
/*---------------------------------------------------*/

.cetra_tm_mobile_menu{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.cetra_tm_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding: 10px 20px 10px 20px;
    
}
.cetra_tm_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cetra_tm_mobile_menu .mobile_in .logo img{
	max-width: 90px;
	max-height: 70px;
}
.cetra_tm_mobile_menu .trigger{
	line-height: 0;
}
.cetra_tm_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: rgba(255, 255, 255, 0.4);
	display: none;
}
.cetra_tm_mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}
.cetra_tm_mobile_menu .dropdown .dropdown_inner ul{
	margin: 0px;
	list-style-type: none;
}
.cetra_tm_mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0px;
	float: left;
	width: 100%;
}
.cetra_tm_mobile_menu .dropdown .dropdown_inner ul li a{
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 0px 0px;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
}
.cetra_tm_mobile_menu .download_cv{
	padding-top: 20px;
}
.cetra_tm_mobile_menu .download_cv a{
	color: #fff !important;
	border-radius: 50px;
	background-color: #65140E;
	padding: 7px 40px !important;
}
.cetra_tm_mobile_menu .hamburger-inner, 
.cetra_tm_mobile_menu .hamburger-inner:after, 
.cetra_tm_mobile_menu .hamburger-inner:before{
	width: 30px;
	height: 2px;
}
.cetra_tm_mobile_menu .hamburger-box{
	width: 30px;
}
.cetra_tm_mobile_menu .hamburger{
	padding: 0px;
}

/*---------------------------------------------------*/
/*	03)  HEADER
/*---------------------------------------------------*/

.cetra_tm_header{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	padding: 25px 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;
}
.cetra_tm_header .inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cetra_tm_header.animate{
	background-color: #fff;
	padding: 20px 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.cetra_tm_header .logo img{
	max-width: 150px;
	max-height: 80px;
}
.cetra_tm_header .menu ul{
	margin: 0px;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.cetra_tm_header .menu ul li{
	margin: 0px 48px 0px 0px;
	display: inline-block;
}
.cetra_tm_header .menu ul li:last-child{
	margin-right: 0px;
}
.cetra_tm_header .menu ul li.current a{
	color: #65140E;
}
.cetra_tm_header .menu ul li a:hover{
	color: #65140E;
}
.cetra_tm_header .menu ul li a{
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.cetra_tm_header .download_cv{
	position: relative;
	top: 3px;
}
.cetra_tm_header .download_cv a{
	border: 2px solid #65140E;
	border-radius: 50px;
	padding: 8px 35px 7px 35px;
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.cetra_tm_header .download_cv span{
	position: relative;
	z-index: 2;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}

.cetra_tm_header .download_cv a:before{
	position: absolute;
	content: "";
	z-index: 0;
	background-color: #65140E;
	left: -5px;
	right: -5px;
	bottom: -5px;
	height: 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;
}
.cetra_tm_header .download_cv a:hover:before{
	height: 115%;
}
.cetra_tm_header .download_cv a:hover span{
	color: #fff;
}

/*---------------------------------------------------*/
/*	04)  HERO
/*---------------------------------------------------*/

.greenText{color: #1cbe59 !important;}
.purpleText{color: #8067f0 !important;}
.orangeText{color: #65140E !important;}
.yellowText{color: #f0c45c !important;}
.whiteText{color: #ffffff !important;}
.redText{color: #db1818 !important;}
.blueText{color: #093a7e !important;}
.lredText{color: #e8bbbb !important;}

.orangeBackground{background-color: #fedfd7 !important;}
.greenBackground{background-color: #ddf5e6 !important;}
.purpleBackground{background-color: #ece8fd !important;}

.cetra_tm_hero{
	width: 100%;
	height: 100vh;
	clear: both;
	float: left;
	position: relative;
	margin-bottom: 1px;
}
.cetra_tm_hero .background{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


.cetra_tm_hero .container{
	height: 80%;
    margin-top: 10px;
}
.cetra_tm_hero .content{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cetra_tm_hero .details{
	width: 50%;
	padding-right: 20px;
    padding-left: 20px;
   

}
.cetra_tm_hero .hello h3{
	font-size: 45px;
}
.cetra_tm_hero .name{
	margin-bottom: 18px;
}
.cetra_tm_hero .name h3{
	font-size: 85px;
}
.cetra_tm_hero .job{
	margin-bottom: 35px;
}
.cetra_tm_hero .job p{
	font-size: 28px;
	color: #000;
	font-weight: 500;
}
.cetra_tm_hero .text{
	margin-bottom: 42px;
}
.cetra_tm_hero .text p{
	font-size: 23px;
	line-height: 1.5;
}
.cetra_tm_hero .button{
	display: flex;
	align-items: center;
}
.cetra_tm_hero .cetra_tm_button{
	width: auto;
}
.cetra_tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.cetra_tm_button a{
	text-decoration: none;
	color: #fff;
	display: inline-block;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	border-radius: 50px;
	border: 2px solid #c63e34;
	padding: 14px 48px 13px 48px;
	position: relative;
	overflow: hidden;
}
.cetra_tm_button span{
	position: relative;
	z-index: 2;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.cetra_tm_button a:before{
	position: absolute;
	content: "";
	z-index: 0;
	background-color: #c63e34;
	left: -5px;
	right: -5px;
	bottom: -5px;
	height: 120%;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.cetra_tm_button a:hover:before{
	height: 0;
}
.cetra_tm_button a:hover span{
	color: rgba(255, 17, 0, 0.94);
}
.cetra_tm_hero .social{
	padding-left: 27px;
	position: relative;
	top: -4px;
}
.cetra_tm_hero .social ul{
	margin: 0px;
	list-style-type: none;
}
.cetra_tm_hero .social ul li{
	margin: 0px 5px 0px 0px;
	display: inline-block;
}
.cetra_tm_hero .social ul li:last-child{
	margin-right: 0px;
}
.cetra_tm_hero .social ul li a{
	text-decoration: none;
	color: #fff;
}
.cetra_tm_hero .image{
	position: relative;
}
.cetra_tm_hero .avatar{
	width: 50%;
	padding-left: 100px;
}
.cetra_tm_hero .avatar img{
	max-height: 650px;
}
.lead-form-wrapper{
    background-color: rgba(240, 248, 255, 0.78);
    padding-left: 20px;
    padding-right: 5px;
    padding-top: 20px;
    padding-bottom: 25px;
    margin-right: 30px;
    border-radius: 15px;
}
.cetra_tm_hero .skills{
	display: inline-block;
	width: 75px;
	height: 75px;
	border-radius: 8px;
	position: absolute;
	box-shadow: 24px 0px 72px rgba(54,32,152,.3);
}
.cetra_tm_hero .skills.illustrator{
	background-color: #390000;
	top: 20px;
	left: -30px;
}
.cetra_tm_hero .skills.photoshop{
	background-color: #001631;
	right: 70px;
	top: 80px;
}
.cetra_tm_hero .skills.figma{
	background-color: #fff;
	bottom: 60px;
	left: 140px;
}
.cetra_tm_hero .skills .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 40px;
	height: 40px;
}
.cetra_tm_hero .skills.illustrator .svg{
	color: #ff9a00;
}
.cetra_tm_hero .skills.photoshop .svg{
	color: #00a9ff;
}
.cetra_tm_down{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 60px;
	z-index: 5;
}
.cetra_tm_down svg{
	width: 35px !important;
	height: 35px !important;
}
.cetra_tm_down svg #wheel{
	animation: scroll ease 2s infinite;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(60px);
    }
}

.animPulse{
	animation: animPulse 3s linear 0s infinite alternate;
}
@keyframes animPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.anim_moveLeft{
	animation: animMoveLeft 3s linear 0s infinite alternate;
}

@keyframes animMoveLeft {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-20px);
  }
}

.anim_moveRight{
	animation: anim_moveRight 3s linear 0s infinite alternate;
}

@keyframes anim_moveRight {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(20px);
  }
}

.anim_moveTop{
	animation: anim_moveTop 3s linear 0s infinite alternate;
}

@keyframes anim_moveTop {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}

.anim_moveBottom{
	animation: anim_moveBottom 3s linear 0s infinite alternate;
}

@keyframes anim_moveBottom {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(20px);
  }
}

/*---------------------------------------------------*/
/*	05)  PROCESS
/*---------------------------------------------------*/

.cetra_tm_process{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.cetra_tm_process .list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.cetra_tm_process ul{
	margin: 0px 0px 0px -70px;
	list-style-type: none;
}
.cetra_tm_process ul li{
	margin: 0px 0px 70px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 70px;
	text-align: center;
}
.cetra_tm_process ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.cetra_tm_process .icon{
	margin-bottom: 30px;
}
.cetra_tm_process .icon span{
	position: relative;
	display: inline-block;
}
.cetra_tm_process .icon .brush{
	max-width: 125px;
	position: relative;
}
.cetra_tm_process .icon .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60px;
	height: 60px;
}
.cetra_tm_process .title{
	margin-bottom: 20px;
}
.cetra_tm_process .title h3{
	font-size: 24px;
}

/*---------------------------------------------------*/
/*	06)  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: #c63e34;
  -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: #c63e34;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #c63e34;
  -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;}
.cetra_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

/*---------------------------------------------------*/
/*	07c)  MEDIA QUERIES
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	body{font-size: 16px;}
	.container{max-width:1170px;}
	.cetra_tm_header{padding: 15px 0px;}
	.cetra_tm_header.animate{padding: 10px 0px;}
	.cetra_tm_header .download_cv a{padding: 5px 25px 4px 25px;}
	.cetra_tm_header .logo img{max-width: 110px;max-height: 70px;}
	.cetra_tm_header .menu ul li{margin-right: 30px;}
	.cetra_tm_hero .hello h3{font-size: 25px;}
	.cetra_tm_hero .name h3{font-size: 60px;}
	.cetra_tm_hero .job p{font-size: 19px;}
	.cetra_tm_hero .text p{font-size: 16px;}
	.cetra_tm_button a{padding: 9px 35px 8px 35px;}
	.cetra_tm_hero .social{padding-left: 24px;}
	.cetra_tm_hero .name{margin-bottom: 13px;}
	.cetra_tm_hero .job{margin-bottom: 23px;}
	.cetra_tm_hero .text{margin-bottom: 30px;}
	.cetra_tm_down{bottom: 30px;}
	.cetra_tm_hero .avatar img{max-height: 400px;}
	.cetra_tm_hero .skills{width: 50px;height: 50px;}
	.cetra_tm_hero .skills .svg{width: 25px;height: 25px;}
	.cetra_tm_hero .skills.figma{bottom: 20px;left: 100px;}
	.cetra_tm_hero .skills.photoshop{right: 110px;}
	.cetra_tm_hero .skills.illustrator{left: -20px;}
	.cetra_tm_process .icon .brush{max-width: 90px;}
	.cetra_tm_process .icon .svg{width: 45px;height: 45px;}
	.cetra_tm_about .right .title span{font-size: 22px;}
	.cetra_tm_about .right .title h3{font-size: 40px;}
	.cetra_tm_main_title{max-width: 550px;}
	.cetra_tm_main_title span{font-size: 22px;}
	.cetra_tm_main_title h3{font-size: 38px;}
	.cetra_tm_main_title h3{margin-bottom: 16px;}
	.cetra_tm_services .service_list .title h3{font-size: 25px;margin-bottom: 10px;}
	.cetra_tm_services .service_list .price{font-size: 18px;}
	.cetra_tm_services .service_list .price span{font-size: 20px;}
	.cetra_tm_testimonials .in{max-width: 650px;}
	.cetra_tm_testimonials .text p{font-size: 19px;}
	.cetra_tm_testimonials .detail h3{font-size: 22px;}
	.cetra_tm_testimonials .left_details .det_image.two{left: 120px;}
	.cetra_tm_testimonials .left_details .det_image.three{left: 200px;}
	.cetra_tm_testimonials .left_details .border{left: 240px;}
	.cetra_tm_testimonials .right_details .det_image.two{right: 170px;}
	.cetra_tm_testimonials .right_details .border{right: 68px;}
	.cetra_tm_testimonials .right_details .circle.yellow{right: 210px;}
	.cetra_tm_testimonials .right_details .circle.yellow{width: 55px;height: 55px;}
	.cetra_tm_about .brush_1{left: 40px;}
	.cetra_tm_about .numbers .wrapper{padding: 25px 30px 21px 26px;}
	.cetra_tm_about .numbers .wrapper h3{font-size: 50px;}
	.cetra_tm_about .numbers .wrapper .name{font-size: 18px;}
	.cetra_tm_portfolio .brush_1{left: 50px;}
	.cetra_tm_portfolio .brush_2{right: 10px;}
	.cetra_tm_news .brush_1{left: 60px;}
	.cetra_tm_contact .contact_inner .brush_2{right: -80px;}
	.cetra_tm_modalbox .description_wrap{padding: 40px;}
	.cetra_tm_modalbox .description_wrap:before{height: 40px;}
	.cetra_tm_modalbox .description_wrap:after{height: 40px;}
	.cetra_tm_modalbox .box_inner{top: 50px;bottom: 50px;width: 800px;}
	.cetra_tm_modalbox .close{margin-left: 20px;}
}
@media (max-width: 1200px) {
	.cetra_tm_modalbox .box_inner{width: 500px;}
	.cetra_tm_modalbox .description_wrap{padding: 35px;}
	.cetra_tm_modalbox .description_wrap:before{height: 35px;}
	.cetra_tm_modalbox .description_wrap:after{height: 35px;}
	.cetra_tm_modalbox .main_details{flex-direction: column;align-items: baseline;}
	.cetra_tm_modalbox .main_details .textbox{width: 100%;padding: 0px;margin-bottom: 40px;}
	.cetra_tm_modalbox .main_details .detailbox{width: 100%;padding: 0px;}
	.cetra_tm_modalbox .additional_images ul{margin: 0px;}
	.cetra_tm_modalbox .additional_images ul li{width: 100% !important;padding: 0px;}
	.cetra_tm_modalbox .popup_details .top_image{margin-bottom: 25px;}
	.cetra_tm_modalbox .service_popup_informations .image{margin-bottom: 25px;}
	.cetra_tm_modalbox .news_popup_informations .image{margin-bottom: 25px;}
}
@media (max-width: 1040px) {
	.container{padding: 0px 20px;}
	.mouse-cursor{display: none;}
	.cetra_tm_header{display: none;}
	.cetra_tm_mobile_menu{display: block;}
	.cetra_tm_portfolio .portfolio_list .main{border-radius: 12px;}
	.cetra_tm_portfolio .mobile_title{display: block;}
	.cetra_tm_portfolio_titles.visible{opacity: 0;visibility: hidden;}
	.cetra_tm_portfolio .portfolio_list ul li .inner:hover .main{transform: scale(1);}
	.cetra_tm_hero .content{flex-direction: column-reverse;justify-content: center}
	.cetra_tm_hero .avatar{padding: 0px;width: auto;margin-bottom: 30px;}
	.cetra_tm_hero .avatar img{max-width: 300px;max-height: 300px;}
	.cetra_tm_hero .skills{display: none;}
	.cetra_tm_hero .details{width: 100%;padding-right: 0px;text-align: center;}
	.cetra_tm_hero .button{justify-content: center;}
	.cetra_tm_hero .hello h3{font-size: 25px;}
	.cetra_tm_hero .name{margin-bottom: 11px;}
	.cetra_tm_hero .name h3{font-size: 55px;}
	.cetra_tm_hero .job{margin-bottom: 23px;}
	.cetra_tm_hero .job p{font-size: 23px;}
	.cetra_tm_hero .text{margin-bottom: 30px;}
	.cetra_tm_hero .text p{font-size: 20px;}
	.cetra_tm_down {bottom: 20px;}
	.cetra_tm_process ul{margin: 0px;}
	.cetra_tm_process ul li{width: 100%;padding-left: 0px;}
	.cetra_tm_about .wrapper{flex-direction: column;text-align: center;}
	.cetra_tm_about .left{padding-right: 0px;width: 100%;margin-bottom: 40px;}
	.cetra_tm_about .left .image img{max-width: 300px;max-height: 300px;}
	.cetra_tm_about .right{width: 100%;padding: 0px;}
	.cetra_tm_about .right .title span{font-size: 20px;}
	.cetra_tm_about .right .title h3{font-size: 35px;max-width: 100%;}
	.cetra_tm_about .numbers{position: relative;}
	.cetra_tm_about .numbers.year{top: auto;left: auto;margin-top: 20px;margin-bottom: 20px;}
	.cetra_tm_about .numbers.project{bottom: auto;right: auto;margin-bottom: 30px;}
	.cetra_tm_about .numbers .wrapper h3{font-size: 45px;}
	.cetra_tm_about .brush_1{display: none;}
	.cetra_tm_main_title span{font-size: 20px;}
	.cetra_tm_main_title h3{font-size: 35px;}
	.cetra_tm_portfolio .portfolio_list ul li{width: 50%;}
	.cetra_tm_about .brush_1{display: none;}
	.cetra_tm_about .brush_2{display: none;}
	.cetra_tm_portfolio .brush_1{display: none;}
	.cetra_tm_portfolio .brush_2{display: none;}
	.cetra_tm_skills .wrapper{flex-direction: column;align-items: baseline;}
	.cetra_tm_skills .left{padding-right: 0px;width: 100%;margin-bottom: 50px;}
	.cetra_tm_skills .right{padding-left: 0px;width: 100%;}
	.cetra_tm_skills .right img{max-width: 300px;max-height: 300px;}
	.cetra_tm_main_title{max-width: 100% !important;}
	.cetra_tm_services .brush_1{display: none;}
	.cetra_tm_services .brush_2{display: none;}
	.cetra_tm_services .service_list ul{margin: 0px;}
	.cetra_tm_services .service_list ul li{width: 100%;padding-left: 0px;}
	.cetra_tm_testimonials .left_details{display: none;}
	.cetra_tm_testimonials .right_details{display: none;}
	.cetra_tm_testimonials .brush_1{display: none;}
	.cetra_tm_testimonials .icon .svg{width: 50px;height: 50px;}
	.cetra_tm_testimonials .text p{font-size: 20px;}
	.cetra_tm_testimonials .detail h3{font-size: 21px;}
	.cetra_tm_partners .brush_1{display: none;}
	.cetra_tm_news .brush_1{display: none;}
	.cetra_tm_news .brush_2{display: none;}
	.cetra_tm_contact .brush_1{display: none;}
	.cetra_tm_news ul li{width: 50%;}
	.cetra_tm_subscribe .content{flex-direction: column;align-items: baseline;padding-left: 30px;padding-right: 30px;}
	.cetra_tm_subscribe .left{padding: 0px;width: 100%;margin-bottom: 40px;}
	.cetra_tm_subscribe .right{padding: 0px;width: 100%;}
	.cetra_tm_subscribe .subtitle{font-size: 19px;}
	.cetra_tm_subscribe .title{font-size: 35px;}
	.cetra_tm_contact .contact_inner{flex-direction: column;align-items: baseline;}
	.cetra_tm_contact .left .short h3{font-size: 25px;}
	.cetra_tm_contact .left{width: 100%;margin-bottom: 40px;}
	.cetra_tm_contact .right{width: 100%;}
	.cetra_tm_contact .contact_inner .brush_2{display: none;}
	.cetra_tm_copyright .inner{flex-direction: column;align-items: center;}
}
@media (max-width: 768px) {
	.cetra_tm_hero .avatar img{max-width: 220px;max-height: 220px;}
	.cetra_tm_hero .job{margin-bottom: 15px;}
	.cetra_tm_hero .job p{font-size: 18px;}
	.cetra_tm_hero .hello h3{font-size: 21px;}
	.cetra_tm_hero .text p{font-size: 16px;}
	.cetra_tm_hero .name h3{font-size: 42px;}
	.cetra_tm_hero .social{padding-left: 15px;}
	.cetra_tm_portfolio .portfolio_list ul{margin: 0px;}
	.cetra_tm_portfolio .portfolio_list ul li{width: 100%;padding-left: 0px;}
	.cetra_tm_services .service_list .icon{display: none;}
	.cetra_tm_services .service_list ul li .list_inner{padding: 40px 20px;}
	.cetra_tm_services .service_list .title h3{font-size: 25px;}
	.cetra_tm_services .service_list .price{font-size: 19px;}
	.cetra_tm_services .service_list .price span{font-size: 21px;}
	.cetra_tm_partners ul li{width: 50%;}
	.cetra_tm_news ul{margin: 0px;}
	.cetra_tm_news ul li{width: 100%;padding-left: 0px;}
	.cetra_tm_contact .input_list ul{margin: 0px;}
	.cetra_tm_contact .input_list ul li{width: 100%;padding-left: 0px;}
	.cetra_tm_subscribe .field input[type="submit"]{padding: 0px 15px;}
	.cetra_tm_modalbox .box_inner{width: 300px;}
	.cetra_tm_modalbox .portfolio_main_title h3{font-size: 19px;margin-bottom: 2px;}
	.cetra_tm_modalbox .description_wrap{padding: 20px;}
	.cetra_tm_modalbox .description_wrap:before{height: 20px;}
	.cetra_tm_modalbox .description_wrap:after{height: 20px;}
	.cetra_tm_modalbox .close{left: auto;right: 0px;margin-left: 0px;top: -40px;}
	.cetra_tm_modalbox .close a{width: 30px;height: 30px;}
	.cetra_tm_modalbox .service_popup_informations .main_title h3{font-size: 19px;}
	.cetra_tm_modalbox .service_popup_informations .main_title span{font-size: 16px;}
	.cetra_tm_modalbox .service_popup_informations .main_title span span{font-size: 16px;}
	.cetra_tm_modalbox .service_popup_informations .main_title h3{margin-bottom: 0px;}
	.cetra_tm_modalbox .news_popup_informations .details h3{font-size: 19px;}
	.cetra_tm_hero{margin-bottom: 135px;}
	.cetra_tm_about{padding-top: 50px;}
	.cetra_tm_portfolio{padding-top: 113px;margin-bottom: 88px;}
	.cetra_tm_portfolio .portfolio_filter{padding-top: 53px;padding-bottom: 46px;}
	.cetra_tm_services{padding-top: 120px;margin-bottom: 98px;}
	.cetra_tm_testimonials .list_wrapper{margin-top: 65px;}
	.cetra_tm_testimonials .in{padding: 0px 20px;}
	.cetra_tm_testimonials{margin-bottom: 127px;}
	.cetra_tm_testimonials .owl-theme .owl-nav.disabled+.owl-dots{margin-top: 50px;}
	.cetra_tm_news{padding-top: 120px;margin-bottom: 100px;}
	.cetra_tm_contact{padding-top: 123px;}
	.cetra_tm_contact .contact_inner{margin-top: 67px;margin-bottom: 120px;}
	.cetra_tm_contact{margin-bottom: 120px;}
}