@charset "utf-8";

/*	Copyright (c) 2022 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE


01)	DEVMAN BASE
02) DEVMAN MOBILE MENU
03) DEVMAN HEADER
04) DEVMAN HERO
05) DEVMAN FEATURES
06) DEVMAN ABOUT
07) DEVMAN COUNTER
08) DEVMAN PORTFOLIO
09) DEVMAN SKILLS
10) DEVMAN SERVICE
11) DEVMAN PROCESS
12) DEVMAN TESTIMONIALS
13) DEVMAN PARTNERS
14) DEVMAN CONTACT
15) DEVMAN NEWS
16) DEVMAN COPYRIGHT
17) DEVMAN TOTOP
18) DEVMAN MAGIC CURSOR
19) DEVMAN MEDIA QUERIES (FOR SMALL DEVIVES)


/*---------------------------------------------------*/
/*	01) DEVMAN BASE
/*---------------------------------------------------*/

a{
	text-decoration: none;
}
:root{
    --main-color: #fb503b;
    --font-family-main: 'Open Sans', sans-serif;
    --font-family-extra: 'Barlow', sans-serif;
}
html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	overflow-x: hidden;
	width: 100%;
	font-family: var(--font-family-main);
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #54545f;
}

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:600;
	line-height: 1.3;
	font-family: var(--font-family-extra);
	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; }

.devman_tm_all_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.devman_tm_all_wrap,
.devman_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%;
    }
}
.devman_tm_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

/*---------------------------------------------------*/
/*	02) DEVMAN MOBILE MENU
/*---------------------------------------------------*/

.devman_tm_mobile_menu{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.devman_tm_mobile_menu .mobile_menu_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1);
	padding: 10px 20px 10px 20px;
}
.devman_tm_mobile_menu .mobile_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.devman_tm_mobile_menu .mobile_in .logo img{
	max-width: 90px;
	max-height: 70px;
}
.devman_tm_mobile_menu .trigger{
	line-height: 0;
}
.devman_tm_mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	display: none;
}
.devman_tm_mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}
.devman_tm_mobile_menu .dropdown .dropdown_inner ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0px;
	float: left;
	width: 100%;
}
.devman_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;
}
.devman_tm_mobile_menu .download_cv{
	padding-top: 20px;
}
.devman_tm_mobile_menu .download_cv a{
	color: #fff !important;
	border-radius: 50px;
	background-color: #f75023;
	padding: 7px 40px !important;
}
.devman_tm_mobile_menu .hamburger-inner, 
.devman_tm_mobile_menu .hamburger-inner:after, 
.devman_tm_mobile_menu .hamburger-inner:before{
	width: 30px;
	height: 2px;
}
.devman_tm_mobile_menu .hamburger-box{
	width: 30px;
}
.devman_tm_mobile_menu .hamburger{
	padding: 0px;
}

/*---------------------------------------------------*/
/*	03) DEVMAN HEADER
/*---------------------------------------------------*/

.devman_tm_header{
	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;
}
.devman_tm_header.animate{
	padding: 25px 0px;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.devman_tm_header .header_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.devman_tm_header .logo img{
	max-width: 200px;
}
.devman_tm_header .logo .light{display: block;}
.devman_tm_header .logo .dark{display: none;}
.devman_tm_header.animate .logo .light{display: none;}
.devman_tm_header.animate .logo .dark{display: block;}
.devman_tm_header .menu ul{
	margin: 0px;
	list-style-type: none;
	display: flex;
	align-items: center;
}
.devman_tm_header .menu ul li{
	margin: 0px 35px 0px 0px;
}
.devman_tm_header .menu ul li:last-child{
	margin-right: 0px;
}
.devman_tm_header .menu ul li a{
	color: #fff;
	font-family: var(--font-family-extra);
	display: block;
	font-weight: 600;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
	
}
.devman_tm_header .menu ul li.current a{
	color: var(--main-color);
}
.devman_tm_header.animate .menu ul li.current a{
	color: var(--main-color);
}
.devman_tm_header .menu ul li.download_cv a{
	background-color: var(--main-color);
	border-radius: 50px;
	padding: 7px 30px 8px 30px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_header .menu ul li.download_cv a:hover{
	background-color: #142eb5;
}
.devman_tm_header.animate .menu ul li a{
	color: #000;
}
.devman_tm_header.animate .menu ul li.download_cv a{
	color: #fff;
}

/*---------------------------------------------------*/
/*	04) DEVMAN HERO
/*---------------------------------------------------*/

.devman_tm_hero{
	width: 100%;
	height: 100vh;
	position: relative;
	float: left;
	overflow: hidden;
	margin-bottom: 190px;
}
.devman_tm_hero .background{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.devman_tm_hero .background .image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.devman_tm_hero .container{
	height: 100%;
}
.devman_tm_hero .content{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.devman_tm_hero .left{
	width: 45%;
	position: relative;
}
.devman_tm_hero .left .inner{
	position: relative;
	z-index: 2;
}
.devman_tm_hero .hello{
	color: #fff;
	font-size: 35px;
	margin-bottom: 3px;
}
.devman_tm_hero .name{
	color: #fff;
	font-size: 77px;
	line-height: 1.1;
	margin-bottom: 24px;
}
.devman_tm_hero .job{
	color: #fff;
	font-size: 26px;
	margin-bottom: 33px;
}
.devman_tm_hero .text{
	color: #fff;
	font-size: 21px;
	margin-bottom: 40px;
}
.devman_tm_hero .buttons{
	width: 100%;
	display: flex;
	align-items: center;
}
.devman_tm_hero .buttons{
	width: 100%;
	display: flex;
	align-items: center;
}
.devman_tm_hero .devman_tm_button{
	width: auto;
}
.devman_tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_button a{
	color: #fff;
	display: inline-block;
	background-color: #142eb5;
	border-radius: 50px;
	padding: 14px 40px 17px 40px;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-family-extra);
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_button a:hover{
	background-color: var(--main-color);
}
.devman_tm_hero .simple_button{
	margin-left: 50px;
}
.devman_tm_hero .simple_button a{
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-family-extra);
	position: relative;
	top: -2px;
}
.devman_tm_hero .stroke_1,
.devman_tm_hero .stroke_2{
	position: absolute;
	color: transparent;
	-webkit-text-stroke: 1px #fff;
	opacity: .1;
	font-size: 230px;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}
.devman_tm_hero .stroke_1{
	bottom: 100%;
	margin-bottom: -105px;
	left: -340px;
}
.devman_tm_hero .stroke_2{
	transform: rotate(90deg);
	transform-origin: 0 0;
	top: 100px;
}
.devman_tm_hero .win{
	position: absolute;
	display: inline-block;
	top: 0px;
	right: 0px;
	background-color: #fff;
	width: 125px;
	height: 125px;
	border-radius: 12px;
	top: -40px;
	right: -40px;
}
.devman_tm_hero .win .svg{
	width: 65px;
	height: 65px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.devman_tm_hero .numbers{
	position: absolute;
}
.devman_tm_hero .numbers.year{
	top: 100px;
	left: -85px;
}
.devman_tm_hero .numbers.project{
	bottom: 60px;
	left: 100%;
	margin-left: -75px;
}
.devman_tm_hero .numbers .wrapper{
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px 25px 24px 25px;
}
.devman_tm_hero .numbers.project .wrapper{
	padding: 15px 20px 19px 20px;
}
.devman_tm_hero .numbers .wrapper h3{
	font-size: 54px;
	color: #50c5f0;
	line-height: 1;
	position: relative;
	font-weight: 700;
}
.devman_tm_hero .numbers.project h3{
	color: #f05c6e;
}
.devman_tm_hero .numbers .wrapper h3 .extra{
	position: absolute;
	top: -1px;
	font-size: 28px;
}
.devman_tm_hero .numbers .wrapper .item_name{
	font-size: 19px;
	color: #000;
	font-weight: 700;
	font-family: var(--font-family-extra);
	line-height: 1.3;
	padding-left: 14px;
	position: relative;
	top: 2px;
}
.devman_tm_hero .numbers.project .item_name{
	padding-left: 29px;
}
.devman_tm_hero .circle{
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 1;
	left: -70px;
	bottom: -70px;
}
.devman_tm_hero .circle img{
	max-width: 160px;
	opacity: 1 !important;
}
.anim_circle{
	animation: animCircle 15s infinite linear;
}

@keyframes animCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.devman_tm_hero .right{
	width: 55%;
	padding-left: 250px;
}
.devman_tm_hero .right .image{
	position: relative;
}
.devman_tm_hero .right .image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.devman_tm_hero .right .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}

/*---------------------------------------------------*/
/*	05) DEVMAN FEATURES
/*---------------------------------------------------*/

.devman_tm_features{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 157px;
}
.devman_tm_features .features_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_features .features_list ul{
	margin: 0px 0px 0px -70px;
	list-style-type: none;
}
.devman_tm_features .features_list ul li{
	margin: 0px 0px 70px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 70px;
}
.devman_tm_features .features_list ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.devman_tm_features .features_list ul li .short{
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 35px;
	margin-bottom: 30px;
	position: relative;
}
.devman_tm_features .features_list ul li .short:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #cacdd3;
	left: 0px;
	bottom: 0px;
}
.devman_tm_features .features_list ul li .short:after{
	position: absolute;
	content: "";
	width: 0px;
	height: 1px;
	background-color: #8D8D8E;
	left: 0px;
	bottom: 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;
}
.devman_tm_features .features_list ul li .list_inner:hover .short:after{
	width: 100%;
}
.devman_tm_features .features_list ul li .short .title{
	padding-right: 20px;
}
.devman_tm_features .features_list ul li .short span{
	display: inline-block;
	color: var(--main-color);
	font-size: 16px;
	font-weight: 600;
	font-family: var(--font-family-extra);
	margin-bottom: 5px;
}
.devman_tm_features .features_list ul li .short h3{
	font-size: 24px;
}
.devman_tm_features .features_list ul li .svg{
	width: 60px;
	height: 60px;
}
.devman_tm_features .features_list ul li .text{
	width: 100%;
	float: left;
}

/*---------------------------------------------------*/
/*	06) DEVMAN ABOUT
/*---------------------------------------------------*/

.devman_tm_about{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 300px;
}
.devman_tm_about .about_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.devman_tm_about .left{
	width: 50%;
	padding-right: 10px;
}
.devman_tm_about .image_wrap{
	position: relative;
}
.devman_tm_about .image_wrap img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.devman_tm_about .image_wrap .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.devman_tm_about .extra_image{
	position: absolute;
	bottom: -125px;
	left: -150px;
}
.devman_tm_about .image_inner{
	position: relative;
}
.devman_tm_about .image_inner img{
	position: relative;
	opacity: 0;
	width: 380px;
	width: calc(200px + 9.4vw);
}
.devman_tm_about .main_extra{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.devman_tm_about .svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.devman_tm_about .icon_1{
	position: absolute;
	display: inline-block;
	width: 110px;
	height: 110px;
	border-radius: 12px;
	background-color: #3b383f;
	bottom: 110px;
	left: -55px;
}
.devman_tm_about .icon_1 .svg{
	width: 60px;
	height:  60px;
}
.devman_tm_about .icon_2{
	position: absolute;
	display: inline-block;
	width: 110px;
	height: 110px;
	border-radius: 12px;
	background-color: #007095;
	top: -40px;
	right: -35px;
}
.devman_tm_about .icon_2 .svg{
	width: 60px;
	height:  60px;
	color: #fff;
}
.devman_tm_about .icon_3{
	position: absolute;
	display: inline-block;
	width: 110px;
	height: 110px;
	border-radius: 12px;
	background-color: #0489c8;
	top: 100%;
	margin-top: -40px;
	right: 230px;
}
.devman_tm_about .icon_3 .svg{
	width: 65px;
	height:  65px;
}
.devman_tm_about .icon_4{
	position: absolute;
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	background-color: var(--main-color);
	top: 80px;
	margin-right: 50px;
	right: 100%;
}
.devman_tm_about .icon_4 .svg{
	width: 50px;
	height:  50px;
	color: #fff;
}
.devman_tm_about .right{
	width: 50%;
	padding-left: 120px;
}
.devman_tm_about .right .title{
	width: 100%;
	float: left;
	margin-bottom: 28px;
}
.devman_tm_about .right .title span{
	font-size: 24px;
	color: var(--main-color);
	font-family: var(--font-family-extra);
	font-weight: 600;
}
.devman_tm_about .right .title h3{
	font-size: 48px;
	line-height: 1.25;
}
.devman_tm_about .right .text{
	width: 100%;
	float: left;
	margin-bottom: 42px;
}
.devman_tm_about .right .text p{
	margin-bottom: 32px;
}
.devman_tm_about .right .text p:last-child{
	margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	07) DEVMAN COUNTER
/*---------------------------------------------------*/

.devman_tm_counter_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-bottom: 170px;
}
.devman_tm_counter_section .counter_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_counter_section .counter_list ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_counter_section .counter_list ul li{
	margin: 0px 0px 50px 0px;
	width: 33.3333%;
	float: left;
}
.devman_tm_counter_section .counter_list .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	padding: 0px 20px;
}
.devman_tm_counter_section .counter_list .value span{
	font-family: var(--font-family-extra);
	font-size: 72px;
	color: var(--main-color);
	font-weight: 600;
	line-height: 1.1;
	position: relative;
}
.devman_tm_counter_section .counter_list .value .big{
	font-size: 72px;
	color: var(--main-color);
	line-height: 1.1;
}
.devman_tm_counter_section .counter_list .value .small{
	font-size: 36px;
	color: var(--main-color);
	position: absolute;
	top: 8px;
	left: 100%;
	margin-left: 2px;
}
.devman_tm_counter_section .counter_list .wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
}
.devman_tm_counter_section .counter_list .wrapper .text{
	padding-left: 42px;
	position: relative;
	top: 3px;
}
.devman_tm_counter_section .counter_list .wrapper .text.extra{
	padding-left: 18px;
}
.devman_tm_counter_section .counter_list .wrapper .text h3{
	font-size: 24px;
	line-height: 1.4;
}
.devman_tm_counter_section .shape{
	position: absolute;
	right: 0px;
	top: -150px;
	width: 235px;
	height: 290px;
	background-color: #6e7fd1;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

/*---------------------------------------------------*/
/*	08) DEVMAN PORTFOLIO
/*---------------------------------------------------*/

.devman_tm_main_title{
	width: 100%;
	max-width: 750px;
	height: auto;
	clear: both;
	margin: 0px auto;
}
.devman_tm_main_title[data-text-align="left"]{
	text-align: left;
	margin: 0px;
	max-width: 100%;
}
.devman_tm_main_title[data-text-align="center"]{
	text-align: center;
	margin: 0px auto;
}
.devman_tm_main_title[data-text-align="right"]{
	text-align: right;
	margin: 0px;
	max-width: 100%;
}
.devman_tm_main_title span{
	font-size: 24px;
    color: var(--main-color);
    font-family: var(--font-family-extra);
    font-weight: 600;
}
.devman_tm_main_title h3{
	font-size: 48px;
    line-height: 1.25;
	margin-bottom: 30px;
}
.devman_tm_portfolio{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 120px;
}
.devman_tm_portfolio .portfolio_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 85px;
}
.devman_tm_portfolio ul{
	margin: 0px;
	list-style-type: none;
	position: relative;
	float: left;
}
.devman_tm_portfolio ul li{
	margin: 0px 0px 60px 0px;
	width: 100%;
	float: left;
}
.devman_tm_portfolio ul li:last-child{
	margin-bottom: 0px;
}
.devman_tm_portfolio ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.devman_tm_portfolio ul li .background_image{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	transform: scale(1) translateZ(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;
}
.devman_tm_portfolio ul li .list_inner:hover .background_image{
	transform: scale(1.1) translateZ(0);
}
.devman_tm_portfolio ul li .content{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	z-index: 2;
	padding: 150px 95px;
}
.devman_tm_portfolio ul li .details{
	float: left;
}
.devman_tm_portfolio ul li:nth-child(2n) .details{
	float: right;
}
.devman_tm_portfolio ul li .category{
	margin-bottom: 4px;
	display: inline-block;
}
.devman_tm_portfolio ul li .category a{
	color: var(--main-color);
	font-family: var(--font-family-extra);
	font-size: 18px;
	font-weight: 600;
	display: inline-block;
}
.devman_tm_portfolio ul li .title{
	line-height: 1.3;
	margin-bottom: 24px;
}
.devman_tm_portfolio ul li .title a{
	color: #fff;
	font-size: 36px;
	display: inline-block;
}
.devman_tm_portfolio ul li .view_project{
	display: inline-block;
}
.devman_tm_portfolio ul li .view_project a{
	text-decoration: none;
	color: #fff;
	font-family: var(--font-family-extra);
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
}
.devman_tm_portfolio ul li .view_project i{
	color: var(--main-color);
	position: relative;
	top: -1px;
}
.devman_tm_full_link{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}
.devman_tm_portfolio ul li .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	border-radius: 20px;
	background-color: rgba(0,0,0,.1);
}
.devman_tm_portfolio .shape_1{
	position: absolute;
	width: 1000px;
	height: 400px;
	background-color: #6b97d3;
	top: -160px;
	right: 100%;
	margin-right: -90px;
	z-index: -1;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}
.devman_tm_portfolio .shape_2{
	position: absolute;
	width: 1000px;
	height: 390px;
	background-color: #142eb5;
	bottom: -130px;
	left: 100%;
	margin-left: -180px;
	z-index: -1;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}
.devman_tm_portfolio .hidden_content{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.devman_tm_modalbox .popup_details{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_modalbox .popup_details .top_image{
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;
}
.devman_tm_modalbox .popup_details .top_image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.devman_tm_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: 12px;
}
.devman_tm_modalbox .portfolio_main_title{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.devman_tm_modalbox .portfolio_main_title span{
	display: inline-block;
	font-size: 16px;
	font-family: 'Jost', sans-serif;
}
.devman_tm_modalbox .portfolio_main_title span a{
	text-decoration: none;
	color: #6f6b80;
}
.devman_tm_modalbox .portfolio_main_title h3{
    font-size: 25px;
	margin-bottom: 3px;
}
.devman_tm_modalbox .main_details{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 60px;
}
.devman_tm_modalbox .main_details .textbox{
	width: 70%;
	padding-right: 40px;
}
.devman_tm_modalbox .main_details .textbox p{
	margin-bottom: 15px;
}
.devman_tm_modalbox .main_details .textbox p:last-child{
	margin-bottom: 0px;
}
.devman_tm_modalbox .main_details .detailbox{
	width: 30%;
	padding-left: 40px;
}
.devman_tm_modalbox .main_details .detailbox > ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_modalbox .main_details .detailbox > ul > li{
	margin: 0px 0px 10px 0px;
	width: 100%;
	float: left;
}
.devman_tm_modalbox .main_details .detailbox > ul > li:last-child{
	margin-bottom: 0px;
}
.devman_tm_modalbox .main_details .detailbox .first{
    font-weight: 500;
	font-size: 18px;
	display: block;
	color: #000;
	font-family: 'Jost', sans-serif;
}
.devman_tm_modalbox .main_details .detailbox span{
	font-size: 16px;
	font-family: 'Jost', sans-serif;
}
.devman_tm_modalbox .main_details .detailbox span a{
	text-decoration: none;
	color: #7d7789;
}
.devman_tm_modalbox .additional_images{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_modalbox .additional_images ul{
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}
.devman_tm_modalbox .additional_images ul li{
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}
.devman_tm_modalbox .additional_images ul li:nth-child(3n-2){
	width: 100%;
}
.devman_tm_modalbox .additional_images ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.devman_tm_modalbox .additional_images ul li .my_image{
	position: relative;
}
.devman_tm_modalbox .additional_images ul li .my_image img{
	opacity: 0;
	min-width: 100%;
}
.devman_tm_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: 12px;
}

/*---------------------------------------------------*/
/*	09) DEVMAN SKILLS
/*---------------------------------------------------*/

.devman_tm_skills{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 190px;
}
.devman_tm_skills .skills_wrapper{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-top: 77px;
}
.devman_tm_skills .left{
	width: 50%;
	padding-right: 70px;
}
.devman_tm_skills .right{
	width: 50%;
	padding-left: 70px;
}
.dodo_progress{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	overflow: hidden;
}
.progress_inner{
	width:100%;
	margin-bottom:39px;
}
.progress_inner:last-child{
	margin-bottom: 0px;
}
.progress_inner > span{
	margin:0px 0px 10px 0px;
	display:block;
	text-align:left;
	position: relative;
}
.progress_inner span.label{
	opacity: 0;
	transform: translateY(10px);
	display: block;
	color: #000;
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-family-extra);
	
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
.progress_inner span.label.opened{
	opacity: 1;
	transform: translateY(0px);
}
.progress_inner span.number{
	float: right;
	position: absolute;
	right: 100%;
	bottom: -2px;
	transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);  /* IE 10+ */
	color: var(--main-color);
	font-weight: 600;
	font-size: 18px;
	font-family: var(--font-family-extra);
}
.progress_inner .background{
	background:#dee1e6;
	width:100%;
	min-width:100%;
	position:relative;
	height:8px;
	border-radius: 50px;
}
.progress_inner .background .bar_in{
	height:8px;
	width:0px;
	overflow:hidden;
	border-radius: 50px;
	position: relative;
	top: 0px;
}
.progress_inner .background .bar{
	width:0px;
	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%; }}

/*---------------------------------------------------*/
/*	10) DEVMAN SERVICE
/*---------------------------------------------------*/

.devman_tm_service{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 180px;
	position: relative;
}
.devman_tm_service .shape{
	width: 90px;
	height: 190px;
	background-color: #142eb5;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	position: absolute;
	top: -100px;
	left: 0px;
}
.devman_tm_service .service_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	border-radius: 20px;
	overflow: hidden;
}
.devman_tm_service .service_list ul{
	margin: 0px;
	list-style-type: none;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.devman_tm_service .service_list ul li{
	margin: 0px 0px 0px 0px;
	width: 50%;
	float: left;
}
.devman_tm_service .service_list ul li .list_inner{
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 125px 70px 75px 70px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_service .service_list ul li:nth-child(1) .list_inner{background-color: #6e7fd1;}
.devman_tm_service .service_list ul li:nth-child(2) .list_inner{background-color: #343c55;}
.devman_tm_service .service_list ul li:nth-child(3) .list_inner{background-color: #142eb5;}
.devman_tm_service .service_list ul li:nth-child(4) .list_inner{background-color: #6b97d3;}
.devman_tm_service .service_list ul li .list_inner:hover{background-color: var(--main-color);}
.devman_tm_service .service_list ul li .svg{
	width: 85px;
	height: 85px;
	color: #fff;
	margin-bottom: 30px;
}
.devman_tm_service .service_list ul li .title{
	font-size: 36px;
	color: #fff;
	margin-bottom: 30px;
}
.devman_tm_service .service_list ul li .text{
	color: #fff;
	line-height: 37px;
}
.devman_tm_modalbox{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 20;
	background-color: rgba(0,0,0,.9);
	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;
}
.devman_tm_modalbox.opened{
	opacity: 1;
	visibility: visible;
}
.devman_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;
}
.devman_tm_modalbox.opened .box_inner{
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}
.devman_tm_modalbox .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 30px;
	z-index: 10;
}
.devman_tm_modalbox .close a{
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	border:2px solid #fff;
	border-radius: 10px;
	position: relative;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_modalbox .close a:hover{
	border-radius: 100%;
}
.devman_tm_modalbox .close a i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.devman_tm_modalbox .description_wrap{
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
	overflow-y: scroll;
}
.devman_tm_modalbox .description_wrap:before{
	position: fixed;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 2;
}
.devman_tm_modalbox .description_wrap:after{
	position: fixed;
	content: "";
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 2;
}
.devman_tm_modalbox .description_wrap::-webkit-scrollbar{
  width: 11px;
}
.devman_tm_modalbox .description_wrap{
  scrollbar-width: thin;
  scrollbar-color: #999 #fff;
}
.devman_tm_modalbox .description_wrap:-webkit-scrollbar-track{
  background: #fff;
}
.devman_tm_modalbox .description_wrap::-webkit-scrollbar-thumb{
  background-color: #999;
  border-radius: 10px;
  border: 3px solid #fff;
}
.devman_tm_service .popup_service_image{
	opacity: 0;
	visibility: hidden;
	display: none;
	position: absolute;
	z-index: -111;
}
.devman_tm_service .service_hidden_details{
	opacity: 0;
	visibility: hidden;
	display: none;
	position: absolute;
	z-index: -111;
}
.devman_tm_modalbox .service_popup_informations{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_modalbox .service_popup_informations .image{
	width: 100%;
	float: left;
	position: relative;
	margin-bottom: 37px;
}
.devman_tm_modalbox .service_popup_informations .image img{
	position: relative;
	min-width: 100%;
	opacity: 0;
}
.devman_tm_modalbox .service_popup_informations .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.devman_tm_modalbox .service_popup_informations .main_title{
	width: 100%;
	float: left;
	margin-bottom: 23px;
}
.devman_tm_modalbox .service_popup_informations .main_title h3{
	font-size: 25px;
	margin-bottom: 5px;
}
.devman_tm_modalbox .service_popup_informations .main_title span{
	font-weight: 500;
    font-size: 21px;
    color: #000;
    font-family: 'Jost', sans-serif;
}
.devman_tm_modalbox .service_popup_informations .main_title span span{
	font-size: 24px;
    color: #f75023;
}
.devman_tm_modalbox .service_popup_informations .descriptions{
	width: 100%;
	float: left;
}
.devman_tm_modalbox .service_popup_informations .descriptions p{
	margin-bottom: 15px;
}
.devman_tm_modalbox .service_popup_informations .descriptions p:last-child{
	margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	11) DEVMAN PROCESS
/*---------------------------------------------------*/

.devman_tm_process{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 150px;
}
.devman_tm_process .process_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
}
.devman_tm_process .left{
	width: 50%;
	padding-right: 50px;
}
.devman_tm_process .right{
	width: 50%;
	position: relative;
	top: -14px;
}
.devman_tm_accordion{
	width: 100%;
	float: left;
	clear: both;
}
.devman_tm_accordion .acc_head{
	width: 100%;
	float: left;
	clear: both;
	overflow: hidden;
	min-height: 50px;
	display: flex;
	padding: 14px 0 7px 50px;
	position: relative;
	align-items: center;
	cursor: pointer;
}
.devman_tm_accordion .acc_head p{
	color: #000;
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--font-family-extra);
}
.devman_tm_accordion .accordion_in{
	width: 100%;
	float: left;
	clear: both;
	margin-bottom: 5px;
}
.devman_tm_accordion .accordion_in:last-child{
	margin-bottom: 0;
}
.devman_tm_accordion .acc_content{
	display: none;
	width: 100%;
	float: left;
	clear: both;
	overflow: hidden;
	position: relative;
	margin: 5px 0;
	border: none !important;
	background: none !important;
}
.devman_tm_accordion .acc_content_in{
	width: 100%;
	float: left;
	clear: both;
	overflow: hidden;
	padding: 11px 0 8px 50px;
	position: relative;
}
.devman_tm_accordion .plus{
	display: block;
	width: 18px;
	height: 18px;
	left: 0;
	position: absolute;
	top: 50%;
	margin-top: -6px;
}
.devman_tm_accordion .plus:after{
	content: '';
	position: absolute;
	width: 4px;
	height: 18px;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -2px;
	background-color: #000;
	display: block;
	transition: all 300ms ease;
}
.devman_tm_accordion .plus:before{
	content: '';
	position: absolute;
	width: 18px;
	height: 4px;
	top: 50%;
	left: 0;
	margin: -2px 0 0 0;
	background-color: #000;
	display: block;
	transition: all 300ms ease;
}
.devman_tm_accordion .accordion_in.acc_active .plus:before{transform: rotate(180deg);}
.devman_tm_accordion .accordion_in.acc_active .plus:after{transform: rotate(-90deg);}

/*---------------------------------------------------*/
/*	12) DEVMAN TESTIMONIALS
/*---------------------------------------------------*/

.devman_tm_testimonials{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 187px;
}
.devman_tm_testimonials .testimonials_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-top: 82px;
}
.devman_tm_testimonials ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_testimonials ul li{
	margin: 0px;
	text-align: center;
}
.devman_tm_testimonials ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	border-radius: 10px;
	padding: 65px 50px;
	box-shadow: 18px 0px 87px rgba(10,15,70,.07);
	background-color: #fff;
}
.devman_tm_testimonials ul li .svg{
	width: 48px;
	height: 48px;
	color: var(--main-color);
	margin-bottom: 20px;
}
.devman_tm_testimonials ul li .text{
	font-size: 24px;
	color: #54545f;
	font-style: italic;
	line-height: 1.5;
	margin-bottom: 40px;
}
.devman_tm_testimonials ul li .details{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
}
.devman_tm_testimonials ul li .details .image{
	width: 60px;
	height: 60px;
	border-radius: 100%;
	position: relative;
}
.devman_tm_testimonials ul li .details .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
}
.devman_tm_testimonials ul li .details .short{
	padding-left: 25px;
}
.devman_tm_testimonials ul li .details .short h3{
	font-size: 24px;
	margin-bottom: 4px;
}
.devman_tm_testimonials ul li .details .short span{
	font-size: 16px;
	color: #a29fac;
}
.devman_tm_testimonials .owl-carousel .owl-stage-outer{
	overflow: visible;
}
.devman_tm_testimonials .owl-item.active{
	opacity: 1;
}
.devman_tm_testimonials .owl-item{
	opacity: 0;
}
.devman_tm_testimonials .owl-theme .owl-dots .owl-dot span{
	width: 15px;
	height: 15px;
	background-color: #c4cbec;
	position: relative;
	margin: 0px 12px;
}
.devman_tm_testimonials .owl-theme .owl-dots .owl-dot.active span{
	background-color: #142eb5;
}
.devman_tm_testimonials .owl-theme .owl-dots .owl-dot span:before{
	position: absolute;
	content: "";
	top: 1px;
	bottom: 1px;
	left: 1px;
	right: 1px;
	border-radius: 100%;
	border: 2px solid var(--main-color);
	z-index: -1;
	
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
}
.devman_tm_testimonials .owl-theme .owl-dots .owl-dot.active span:before{
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
}
.devman_tm_testimonials .owl-theme .owl-nav.disabled+.owl-dots{
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
	margin-top: 60px;
}
.devman_tm_testimonials .shape{
	position: absolute;
	width: 1000px;
	height: 450px;
	background-color: #6b97d3;
	border-radius: 12px;
	bottom: 100%;
	right: 100%;
	margin-right: -105px;
	margin-bottom: -105px;
	z-index: -1;
}
.devman_tm_testimonials .shape_2{
	position: absolute;
	width: 164px;
	height: 164px;
	background-color: #6e7fd1;
	border-radius: 12px;
	left: 100%;
	top: 100%;
	margin-top: -70px;
	margin-left: 65px;
	z-index: -1;
}

/*---------------------------------------------------*/
/*	13) DEVMAN PARTNERS
/*---------------------------------------------------*/

.devman_tm_partners{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-bottom: 190px;
}
.devman_tm_partners .partners_inner{
	width: 100%;
    float: left;
    clear: both;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #e5e5e5;
}
.devman_tm_partners ul{
	margin: -2px -10px -2px -2px;
    list-style-type: none;
    padding-top: 2px;
    float: left;
    padding-left: 2px;
    min-width: calc(100% + 12px);
} 
.devman_tm_partners ul li{
	margin: 0px;
    float: left;
    width: 25%;
    border: 2px solid #e5e5e5;
    text-align: center;
    height: 230px;
    line-height: 230px;
    position: relative;
    margin-top: -2px;
    margin-left: -2px;
    overflow: hidden;
} 
.devman_tm_partners ul li img{
	max-width: 33%;
    max-height: 100px;
} 
.devman_tm_partners ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	opacity: .5;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_partners ul li .list_inner:hover{
	opacity: 1;
}

/*---------------------------------------------------*/
/*	14) DEVMAN CONTACT
/*---------------------------------------------------*/

.devman_tm_contact{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 180px;
}
.devman_tm_contact .contact_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #0b1c77;
	border-radius: 20px;
	padding: 120px 110px;
	position: relative;
}
.devman_tm_contact .in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	margin-top: 10px;
}
.devman_tm_contact .left{
	width: 50%;
}
.devman_tm_contact .devman_tm_main_title h3{
	color: #fff;
}
.devman_tm_contact .fields{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_contact .fields .first{
	width: 100%;
	float: left;
}
.devman_tm_contact .fields ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_contact .fields ul li{
	width: 100%;
	margin: 0px 0px 18px 0px;
	float: left;
}
.devman_tm_contact .fields ul li input{
	width: 100%;
	border: none;
	background-color: #fff;
	border-radius: 5px;
	height: 60px;
	padding: 25px;
}
.devman_tm_contact .fields ul li input:focus{
	outline: none;
}
.devman_tm_contact .fields .last textarea{
	width: 100%;
	border: none;
	height: 180px;
	resize: none;
	margin-bottom: 10px;
	background-color: #fff;
	border-radius: 5px;
	padding: 19px 25px 25px 25px !important;
}
.devman_tm_contact .fields .last textarea:focus{
	outline: none;
} 
.devman_tm_contact .empty_notice{
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}
.devman_tm_contact .contact_error{
	color: #F52225;
	text-align: left;
	font-weight: 500;
}
.devman_tm_contact .returnmessage{
	color:#AA91FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}
.devman_tm_contact .devman_tm_button a{
	display: block;
	text-align: center;
	border-radius: 5px;
	background-color: var(--main-color);
}
.devman_tm_contact .devman_tm_button a:hover{
	background-color: #fff;
	color: #000;
}
.devman_tm_contact .right{
	width: 50%;
	padding-left: 135px;
}
.devman_tm_contact .right ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_contact .right ul li{
	margin: 0px 0px 30px 0px;
}
.devman_tm_contact .right ul li:last-child{
	margin-bottom: 0px;
}
.devman_tm_contact .right .list_inner{
	display: flex;
	align-items: center;
}
.devman_tm_contact .right .icon{
	min-width: 95px;
	width: 95px;
	height: 95px;
	border-radius: 100%;
	position: relative;
	background-color: #6e7fd1;
}
.devman_tm_contact .right .icon i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 24px;
	color: #fff;
}
.devman_tm_contact .right .short{
	padding-left: 33px;
}
.devman_tm_contact .right .short h3{
	font-size: 24px;
	color: #fff;
	margin-bottom: 10px;
}
.devman_tm_contact .right .short a{
	text-decoration: none;
	color: #b7bac5;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_contact .right .short a:hover{
	color: #fff;
}
.devman_tm_contact .right span{
	color: #b7bac5;
}
.devman_tm_contact .shape{
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 12px;
	background-color: #6b97d3;
	top: 100%;
	right: 100%;
	margin-top: -60px;
	margin-right: -60px;
	z-index: 1;
}
.devman_tm_contact .shape_2{
	position: absolute;
	width: 1000px;
	height: 450px;
	border-radius: 12px;
	background-color: #6e7fd1;
	top: 100%;
	left: 100%;
	margin-top: -290px;
	margin-left: -100px;
	z-index: -1;
}

/*---------------------------------------------------*/
/*	15) DEVMAN NEWS
/*---------------------------------------------------*/

.devman_tm_news{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 155px;
}
.devman_tm_news .news_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 85px;
}
.devman_tm_news ul{
	margin: 0px 0px 0px -25px;
	list-style-type: none;
}
.devman_tm_news ul li{
	margin: 0px 0px 25px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 25px;
}
.devman_tm_news ul li .list_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.devman_tm_news ul li .image{
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 13px;
}
.devman_tm_news ul li .image img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.devman_tm_news ul li .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 13px;
	transform: scale(1) translateZ(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;
}
.devman_tm_news ul li .image:hover .main{
	transform: scale(1.1) translateZ(0);
}
.devman_tm_news .details{
	width: 100%;
	float: left;
}
.devman_tm_news .details .category{
	margin-bottom: 2px;
	display: inline-block;
}
.devman_tm_news .details .category a{
	font-family: var(--font-family-extra);
	color: var(--main-color);
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
}
.devman_tm_news .details .title{
	line-height: 1.4;
}
.devman_tm_news .details .title a{
	color: #000;
	font-size: 21px;
	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;
}
.devman_tm_news .details .title a:hover{
	color: var(--main-color);
}
.devman_tm_news .news_hidden_details{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}
.devman_tm_modalbox .news_popup_informations{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.devman_tm_modalbox .news_popup_informations .image{
	position: relative;
	margin-bottom: 37px;
}
.devman_tm_modalbox .news_popup_informations .image img{
	position: relative;
	opacity: 0;
	min-width: 100%;
}
.devman_tm_modalbox .news_popup_informations .image .main{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
}
.devman_tm_modalbox .news_popup_informations .details{
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.devman_tm_modalbox .news_popup_informations .details span a{
	text-decoration: none;
	color: #6f6b80;
	font-family: 'Jost', sans-serif;
	font-size: 16px;
}
.devman_tm_modalbox .news_popup_informations .details h3{
	font-size: 25px;
	margin-bottom: 3px;
}
.devman_tm_modalbox .news_popup_informations .text{
	width: 100%;
	float: left;
}
.devman_tm_modalbox .news_popup_informations .text p{
	margin-bottom: 15px;
}
.devman_tm_modalbox .news_popup_informations .text p:last-child{
	margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	16) DEVMAN COPYRIGHT
/*---------------------------------------------------*/

.devman_tm_copyright{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #343c55;
	padding: 57px 0px 61px 0px;
}
.devman_tm_copyright .inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.devman_tm_copyright .left p{
	font-size: 16px;
	color: #b7bac5;
}
.devman_tm_copyright .left a{
	text-decoration: none;
	color: #b7bac5;
	font-weight: 700;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_copyright .left a:hover{
	color: #fff;
}
.devman_tm_copyright .right ul{
	margin: 0px;
	list-style-type: none;
}
.devman_tm_copyright .right ul li{
	margin: 0px 42px 0px 0px;
	display: inline-block;
}
.devman_tm_copyright .right ul li:last-child{
	margin-right: 0px;
}
.devman_tm_copyright .right ul li a{
	text-decoration: none;
	color: #b7bac5;
	font-size: 16px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.devman_tm_copyright .right ul li a:hover{
	color: #fff;
}
.moving_effect{
	will-change: transform;
	transition: transform 5s cubic-bezier(0, 0, 0, 1) 0s;
	display: block;
}

/*---------------------------------------------------*/
/*	17) DEVMAN TOTOP
/*---------------------------------------------------*/

.progressbar{
    position: fixed;
	height: 100px;
    width: 1px;
	bottom: 25px;
    right: -25px;
    background-color: rgba(0,0,0,.08);
    z-index: 10;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        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;
    bottom: 100px;
    left: 0px;
    font-size: 13px;
    transform: rotateZ(90deg);
    text-transform: uppercase;
    transform-origin: left;
    white-space: nowrap;
}
.progressbar a{
	text-decoration: none;
	color: #000;
}

/*---------------------------------------------------*/
/*	18) DEVMAN 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: var(--main-color);
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: var(--main-color);
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color);
  -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;}
.devman_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

/*---------------------------------------------------*/
/*	 DEVMAN INTRO
/*---------------------------------------------------*/

.devman_tm_intro .short_info{
	position: fixed;
	top: 10%;
	width: 100%;
	text-align: center;
}
.devman_tm_intro .short_info img{
	margin-bottom: 25px;
	max-width: 250px;
}
.devman_tm_intro .short_info h3{
	font-size: 20px;
	color: #767676;
}
.devman_tm_intro{
	width: 100%;
	height: 100vh;
	clear: both;
	float: left;
	position: relative;
}
.devman_tm_intro .demos{
	width: 100%;
	height: 100%;
	clear: both;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}
.devman_tm_intro .left,
.devman_tm_intro .right{
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.devman_tm_intro .demos img{
	max-width: 400px;
	margin-bottom: 25px;
}
.devman_tm_intro .desc{
	position: relative;
	top: 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;
}
.devman_tm_intro .desc h3{
	font-size: 20px;
}
.devman_tm_intro .intro_line,
.devman_tm_intro .intro_line_2,
.devman_tm_intro .intro_line_3{
	position: fixed;
	top: 0px;
	width: 1px;
	height: 200%;
	left: 50%;
	transform: translateY(-50%);
	z-index: -1;
	background-color: rgba(0,0,0,.06);
}
.devman_tm_intro .intro_line{
	left: 25%;
}
.devman_tm_intro .intro_line_2{
	left: 50%;
	transform: translateY(-50%);
}
.devman_tm_intro .intro_line_3{
	left: 75%;
}
.devman_tm_intro .intro_link{
	position: absolute;
	z-index: 2;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.devman_tm_intro .left:hover .desc{top: -20px;}
.devman_tm_intro .right:hover .desc{top: -20px;}
.devman_tm_intro_fixed_price .pricing-info,
.devman_tm_intro_fixed_price .anim {text-decoration: none;
	color: #fff;
    font-family: var(--font-family-extra);
    background-color: #e54b4b;
    position: fixed;
    font-size: 22px;
    text-align: center;
    z-index: 3;
    border-radius: 100%;
    height: 70px;
    width: 70px;
    line-height: 70px;
	display: inline-block;
	left: 50%;
	bottom: 10%;
	margin-left: -35px;
	font-weight: 600;
		
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
	    -ms-transition: all 0.2s;
	     -o-transition: all 0.2s;
	        transition: all 0.2s;	
		
}

@-webkit-keyframes myAnim {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes myAnim {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.devman_tm_intro_fixed_price .anim:nth-child(1) {
    -webkit-animation: myAnim 2s infinite;
    animation: myAnim 2s infinite
}

.devman_tm_intro_fixed_price .anim:nth-child(2) {
    -webkit-animation: myAnim 2s infinite .3s;
    animation: myAnim 2s infinite .3s
}

.devman_tm_intro_fixed_price .anim:nth-child(3) {
    -webkit-animation: myAnim 2s infinite .6s;
    animation: myAnim 2s infinite .6s
}

/*---------------------------------------------------*/
/*	19) DEVMAN MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1600px) {
	.container{max-width: 1070px;padding: 0px 20px;}
	body{font-size: 16px;}
	.devman_tm_modalbox .box_inner{top: 50px;bottom: 50px;width: 800px;}
	.devman_tm_modalbox .close{margin-left:20px;}
	.devman_tm_modalbox .description_wrap{padding: 40px;}
	.devman_tm_modalbox .description_wrap:before{height: 40px;}
	.devman_tm_modalbox .description_wrap:after{height: 40px;}
	.devman_tm_header{padding: 25px 0px;}
	.devman_tm_header.animate{padding: 20px 0px;}
	.devman_tm_header .logo img{max-width: 150px;}
	.devman_tm_hero .hello{font-size: 30px;margin-bottom: 0px;}
	.devman_tm_hero .name{font-size: 65px;margin-bottom: 20px;}
	.devman_tm_hero .job{font-size: 22px;margin-bottom: 25px;}
	.devman_tm_hero .text{font-size: 18px;margin-bottom: 30px;}
	.devman_tm_button a{padding: 11px 35px 14px 35px;}
	.devman_tm_hero .stroke_1,.devman_tm_hero .stroke_2{font-size: 140px;}
	.devman_tm_hero .stroke_1{margin-bottom: -74px;left: -185px;}
	.devman_tm_hero .right{padding-left: 225px;}
	.devman_tm_hero .numbers .wrapper h3{font-size: 45px;}
	.devman_tm_hero .numbers .wrapper .item_name{font-size: 17px;line-height: 1.2;top: 1px;padding-left: 12px;}
	.devman_tm_hero .numbers.project .item_name{padding-left: 27px;}
	.devman_tm_hero .numbers .wrapper{padding: 15px 20px 19px 20px;}
	.devman_tm_hero .numbers.project .wrapper{padding: 13px 18px 17px 18px;}
	.devman_tm_hero .numbers.year{top: 50px;left: -90px;}
	.devman_tm_hero .numbers.project{bottom: 30px;margin-left: -100px;}
	.devman_tm_hero .win{top: -30px;right: -50px;width: 100px;height: 100px;}
	.devman_tm_hero .win .svg{width: 45px;height: 45px;}
	.devman_tm_hero .circle img{max-width: 120px;}
	.devman_tm_hero .circle{left: -55px;bottom: -55px;}
	.devman_tm_about .right .title span{font-size: 20px;}
	.devman_tm_about .right .title h3{font-size: 35px;}
	.devman_tm_about .right{padding-left: 80px;}
	.devman_tm_about .image_inner img{width: calc(140px + 9.4vw);}
	.devman_tm_about .extra_image{left: -100px;}
	.devman_tm_about .icon_2{width: 90px;height: 90px;}
	.devman_tm_about .icon_2 .svg{width: 50px;height: 50px;}
	.devman_tm_about .icon_3{width: 90px;height: 90px;right: 150px;}
	.devman_tm_about .icon_3 .svg{width: 50px;height: 50px;}
	.devman_tm_about .icon_4{width: 65px;height: 65px;margin-right: 30px;}
	.devman_tm_about .icon_4 .svg{width: 40px;height: 40px;}
	.devman_tm_about .icon_1{width: 80px;height: 80px;right: 150px;left: -40px;}
	.devman_tm_about .icon_1 .svg{width: 40px;height: 40px;}
	.devman_tm_counter_section .shape{width: 170px;height: 200px;top: -110px;}
	.devman_tm_counter_section .counter_list .value span{font-size: 60px;}
	.devman_tm_counter_section .counter_list .value .small{font-size: 30px;}
	.devman_tm_counter_section .counter_list .value .big{font-size: 60px;}
	.devman_tm_counter_section .counter_list .wrapper .text h3{line-height: 1.2;font-size: 22px;}
	.devman_tm_counter_section .counter_list .wrapper .text{padding-left: 32px;}
	.devman_tm_counter_section .counter_list .wrapper .text.extra{padding-left: 12px;}
	.devman_tm_main_title span{font-size: 20px;}
	.devman_tm_main_title h3{font-size: 35px;margin-bottom: 20px;}
	.devman_tm_portfolio .shape_2{width: 350px;bottom: -60px;margin-left: -130px;}
	.progress_inner{margin-bottom: 30px;}
	.devman_tm_service .service_list ul li .list_inner{padding: 100px 60px 65px 60px;}
	.devman_tm_service .service_list ul li .svg{width: 75px;height: 75px;margin-bottom: 20px;}
	.devman_tm_service .service_list ul li .title{font-size: 31px;margin-bottom: 20px;}
	.devman_tm_testimonials ul li .text{font-size: 19px;}
	.devman_tm_testimonials ul li .list_inner{font-size: 50px 35px;}
	.devman_tm_testimonials ul li .svg{margin-bottom: 15px;}
	.devman_tm_testimonials ul li .details .short h3{font-size: 19px;margin-bottom: 0px;}
	.devman_tm_testimonials ul li .details .short span{font-size: 15px;}
	.devman_tm_testimonials ul li .details .short{padding-left: 20px;}
	.devman_tm_partners ul li{height: 200px;line-height: 200px;}
	.devman_tm_contact .contact_inner {padding: 110px 100px;}
	.devman_tm_contact .right{padding-left: 100px;}
	.devman_tm_contact .right .icon{width: 85px;min-width: 85px;height: 85px;}
	.devman_tm_contact .right ul li{margin-bottom: 25px;}
	.devman_tm_contact .right .short h3{font-size: 21px;margin-bottom: 6px;}
	.devman_tm_contact .right .short{padding-left: 25px;}
	.devman_tm_news .details .title a{font-size: 19px;}
	.devman_tm_features .features_list ul li .short h3{font-size: 22px;}
}
@media (max-width: 1200px) {
	.devman_tm_counter_section .shape{display: none;}
	.devman_tm_portfolio .shape_1{display: none;}
	.devman_tm_portfolio .shape_2{display: none;}
	.devman_tm_service .shape{display: none;}
	.devman_tm_testimonials .shape{display: none;}
	.devman_tm_testimonials .shape_2{display: none;}
	.devman_tm_contact .shape{display: none;}
	.devman_tm_contact .shape_2{display: none;}
	.devman_tm_modalbox .box_inner{width: 500px;top: 70px;bottom: 70px;}
	.devman_tm_modalbox .description_wrap{padding: 35px;}
	.devman_tm_modalbox .portfolio_main_title h3{font-size: 22px;margin-bottom: 8px;}
	.devman_tm_modalbox .main_details{flex-direction: column;}
	.devman_tm_modalbox .main_details .textbox{width: 100%;padding-right: 0px;margin-bottom: 40px;}
	.devman_tm_modalbox .main_details .detailbox{padding-left: 0px;width: 100%;}
	.devman_tm_modalbox .additional_images ul{margin: 0px;}
	.devman_tm_modalbox .additional_images ul li{width: 100% !important;padding-left: 0px;}
	.devman_tm_modalbox .description_wrap:before{height: 35px;}
	.devman_tm_modalbox .description_wrap:after{height: 35px;}
	.devman_tm_modalbox .service_popup_informations .main_title h3{font-size: 22px;}
	.devman_tm_modalbox .news_popup_informations .details h3{font-size: 22px;margin-bottom: 8px;}
	.devman_tm_modalbox .news_popup_informations .image{margin-bottom: 27px;}
}
@media (max-width: 1040px) {
	.devman_tm_header{display: none;}
	.devman_tm_mobile_menu{display: block;}
	.devman_tm_hero .stroke_1,.devman_tm_hero .stroke_2{display: none;}
	.devman_tm_hero .content{flex-direction: column-reverse;justify-content: center;}
	.devman_tm_hero .left{width: 100%;text-align: center;}
	.devman_tm_hero .right{padding: 0;width: auto;margin-bottom: 30px}
	.devman_tm_hero .right{width: 150px;}
	.devman_tm_hero .win{display: none;}
	.devman_tm_hero .numbers{display: none;}
	.devman_tm_hero .circle{display: none;}
	.devman_tm_hero .hello{font-size: 18px;margin-bottom: 0px;}
	.devman_tm_hero .name{font-size: 35px;margin-bottom: 14px;}
	.devman_tm_hero .job{font-size: 18px;margin-bottom: 15px;}
	.devman_tm_hero .text{font-size: 16px;margin-bottom: 30px;}
	.devman_tm_button a{padding: 8px 30px 11px 30px;}
	.devman_tm_hero .simple_button{margin-left: 30px;}
	.devman_tm_hero .buttons{justify-content: center;}
	.devman_tm_features .features_list ul li{width: 50%;}
	.devman_tm_about .icon_1,.devman_tm_about .icon_2,.devman_tm_about .icon_3,.devman_tm_about .icon_4{display: none;}
	.devman_tm_about .about_inner{flex-direction: column;}
	.devman_tm_about .main_extra{display: none;}
	.devman_tm_about .left{width: 100%;padding-right: 0px;margin-bottom: 30px;}
	.devman_tm_about .right{width: 100%;padding-left: 0px;}
	.devman_tm_about .right .title span{font-size: 20px;}
	.devman_tm_about .right .title h3{font-size: 30px;}
	.devman_tm_counter_section .counter_list ul li{width: 100%;}
	.devman_tm_counter_section .counter_list .value span{font-size: 55px;}
	.devman_tm_counter_section .counter_list .value .small{font-size: 30px;}
	.devman_tm_counter_section .counter_list .wrapper .text{padding-left: 35px;}
	.devman_tm_counter_section .counter_list .wrapper .text h3{font-size: 19px;}
	.devman_tm_counter_section .counter_list .value .big{font-size: 55px;}
	.devman_tm_counter_section .counter_list .list_inner{padding: 0px;}
	.devman_tm_counter_section .counter_list .wrapper{justify-content: flex-start;}
	.devman_tm_main_title span{font-size: 20px;}
	.devman_tm_main_title h3{font-size: 30px;}
	.devman_tm_portfolio ul li .content{padding: 100px 20px;}
	.devman_tm_portfolio ul li .category a{font-size: 16px;}
	.devman_tm_portfolio ul li .title a{font-size: 24px;}
	.devman_tm_portfolio ul li .title{margin-bottom: 17px;}
	.devman_tm_portfolio ul li .view_project a{font-size: 13px;}
	.devman_tm_skills .skills_wrapper{flex-direction: column;}
	.devman_tm_skills .left{width: 100%;padding: 0px;}
	.devman_tm_skills .right{width: 100%;padding: 0px;}
	.devman_tm_skills .left{margin-bottom: 26px;}
	.devman_tm_service .service_list ul li .svg{width: 60px;height: 60px;margin-bottom: 25px;}
	.devman_tm_service .service_list ul li .title{font-size: 24px;margin-bottom: 25px;}
	.devman_tm_service .service_list ul li .list_inner{padding: 75px 30px 50px 30px;}
	.devman_tm_process .process_inner{flex-direction: column;}
	.devman_tm_process .left{padding: 0px;width: 100%;margin-bottom: 40px;}
	.devman_tm_process .right{top: 0px;width: 100%;}
	.devman_tm_accordion .acc_head p{font-size: 21px;}
	.devman_tm_accordion .acc_head{padding: 14px 0 7px 35px;}
	.devman_tm_partners ul li{width: 50%;}
	.devman_tm_partners ul li img{max-width: 50%;}
	.devman_tm_testimonials ul li .details .short h3{font-size: 21px;}
	.devman_tm_testimonials ul li .svg{width: 42px;height: 42px;}
	.devman_tm_testimonials ul li .text{font-size: 19px;margin-bottom: 35px;}
	.devman_tm_testimonials ul li .list_inner{padding: 50px 25px;}
	.devman_tm_testimonials .owl-theme .owl-dots .owl-dot span{margin: 0px 6px;}
	.devman_tm_contact .in{flex-direction: column;}
	.devman_tm_contact .left{width: 100%;margin-bottom: 40px;}
	.devman_tm_contact .right{padding-left: 0px;width: 100%;}
	.devman_tm_contact .contact_inner{padding: 50px 30px;}
	.devman_tm_contact .right .icon{width: 65px;min-width: 65px;height: 65px;}
	.devman_tm_contact .right .short h3{font-size: 20px;margin-bottom: 5px;}
	.devman_tm_contact .right .short{padding-left: 20px;}
	.devman_tm_news ul li{width: 50%;}
	.devman_tm_hero{margin-bottom: 142px;}
	.devman_tm_features{margin-bottom: 72px;}
	.devman_tm_about{margin-bottom: 135px;}
	.devman_tm_counter_section{margin-bottom: 80px;}
	.devman_tm_portfolio{margin-bottom: 80px;}
	.devman_tm_modalbox .popup_details .top_image{margin-bottom: 27px;}
	.devman_tm_modalbox .service_popup_informations .image{margin-bottom: 27px;}
	.devman_tm_modalbox .service_popup_informations .main_title{margin-bottom: 13px;}
	.devman_tm_skills{margin-bottom: 150px;}
	.devman_tm_service{margin-bottom: 140px;}
	.devman_tm_process{margin-bottom: 120px;}
	.devman_tm_testimonials{margin-bottom: 147px;}
	.devman_tm_partners{margin-bottom: 150px;}
	.devman_tm_contact{margin-bottom: 140px;}
	.devman_tm_news{margin-bottom: 115px;}
	.devman_tm_copyright .inner{flex-direction: column;align-items: center;}
	.devman_tm_copyright .inner .left{margin-bottom: 5px;}
	.progress_inner{margin-bottom: 25px;}
	.mouse-cursor{display: none;}
}
@media (max-width: 768px) {
	.devman_tm_features .features_list ul{margin: 0px;}
	.devman_tm_features .features_list ul li{width: 100%;padding-left: 0px;}
	.devman_tm_service .service_list ul li{width: 100%;}
	.devman_tm_news ul{margin: 0px;}
	.devman_tm_news ul li{width: 100%;padding-left: 0px;margin-bottom: 35px;}
	.devman_tm_modalbox .box_inner{width: 300px;}
	.devman_tm_modalbox .close{left: auto;right: 0;margin-left: 0;top: -40px;}
	.devman_tm_modalbox .close a{width: 30px;height: 30px;}
	.devman_tm_modalbox .description_wrap{padding: 20px;}
	.devman_tm_modalbox .description_wrap:before{height: 20px;}
	.devman_tm_modalbox .description_wrap:after{height: 20px;}
}
