@charset "utf-8";

/*---------------------------------------------------*/
/*	01) IKNOW BASE
/*---------------------------------------------------*/

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}

body {
	font-family: "Poppins";
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #888888;
}

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;
	position: relative;
	padding: 0px 40px;
	clear: both;
}

.text-justify {
	text-align: justify !important;
}

.disclaimer-text {
	font-size: 12px;
	line-height: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	font-family: "Poppins";
	color: #222;
}

h1 {
	font-size: 45px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

.iknow_tm_all_wrap {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_all_wrap,
.iknow_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+ */
}

.iknow_tm_section {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

#preloader {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	display: flex;
}

#preloader:before,
#preloader:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	background-color: #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%;
	}
}

body.dark #preloader:before,
body.dark #preloader:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
	background-color: #fff;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

body.dark #preloader:after {
	left: auto;
	right: 0;
}

body.dark #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;
}

body.dark .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: #777;
	-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;
}

body.dark .loader_line:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #ddd;
	-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;
}

/*---------------------------------------------------*/
/*	02) IKNOW MOBILE MENU
/*---------------------------------------------------*/

.iknow_tm_mobile_menu {
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}

.iknow_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: 15px 20px 15px 20px;
}

.iknow_tm_mobile_menu .mobile_in {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iknow_tm_mobile_menu .mobile_in .logo img {
	max-width: 70px;
	max-height: 50px;
}

.iknow_tm_mobile_menu .trigger {
	line-height: 0;
}

.iknow_tm_mobile_menu .dropdown {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	display: none;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}

.iknow_tm_mobile_menu .dropdown .dropdown_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 40px;
}

.iknow_tm_mobile_menu .dropdown .dropdown_inner ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_mobile_menu .dropdown .dropdown_inner ul li {
	margin: 0px 0px 3px 0px;
	float: left;
	width: 100% !important;
}

.iknow_tm_mobile_menu .dropdown .dropdown_inner ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_mobile_menu .dropdown .dropdown_inner ul li a {
	text-decoration: none;
	color: #000;
}

.iknow_tm_mobile_menu .hamburger {
	padding: 0px !important;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	width: 30px !important;
	height: 2px !important;
}

.hamburger-box {
	width: 30px !important;
}

/*---------------------------------------------------*/
/*	02) IKNOW TOPBAR
/*---------------------------------------------------*/

.iknow_tm_topbar {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
}

.iknow_tm_topbar .topbar_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 45px;
}

.iknow_tm_topbar .logo {
	display: inline-block;
}

.iknow_tm_topbar .logo img {
	max-width: 125px;
}

.iknow_tm_topbar .right {
	display: flex;
	align-items: center;
}

.iknow_tm_topbar .right .social {
	position: relative;
	top: 3px;
}

.iknow_tm_topbar .right .social ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_topbar .right .social ul li {
	margin: 0px 15px 0px 0px;
	display: inline-block;
}

.iknow_tm_topbar .right .social ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_topbar .right .social ul li a {
	text-decoration: none;
	color: #000;
}

.iknow_tm_topbar .right .social ul li .svg {
	width: 20px;
	height: 20px;
	display: block;
}

.iknow_tm_topbar .right .social {
	position: relative;
	top: 3px;
}

.iknow_tm_topbar .right .social ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_topbar .right .social ul li {
	margin: 0px 15px 0px 0px;
	display: inline-block;
}

.iknow_tm_topbar .right .social ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_topbar .right .social ul li a {
	text-decoration: none;
	color: #000;
}

.iknow_tm_topbar .right .social ul li .svg {
	width: 20px;
	height: 20px;
	display: block;
}

.iknow_tm_button {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_topbar .iknow_tm_button {
	width: auto;
	margin-left: 30px;
}

.iknow_tm_button a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	background-color: #ff451b;
	padding: 14px 50px;
	border-radius: 10px;
	white-space: nowrap;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_button a:hover {
	background-color: #ffb324;
}

.iknow_tm_button button {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
	background-color: #ff451b;
	padding: 14px 50px;
	border-radius: 10px;
	white-space: nowrap;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_button button:hover {
	background-color: #ffb324;
}

.iknow_tm_topbar .trigger_wrapper {
	position: relative;
}

.iknow_tm_topbar .trigger_wrapper .inner {
	width: 48px;
	height: 24px;
	position: relative;
}

.iknow_tm_topbar .trigger_wrapper .inner span {
	width: 48px;
	height: 3px;
	display: block;
	position: absolute;
	background-color: #000;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_topbar .trigger_wrapper .inner .inner span:first-child {
	top: 0px;
	left: 0px;
}

.iknow_tm_topbar .trigger_wrapper .inner span:last-child {
	bottom: 0px;
	right: 0px;
	width: 33px;
}

.iknow_tm_topbar .trigger_wrapper:hover span:last-child {
	width: 48px;
}

.iknow_tm_topbar .trigger_wrapper .inner span:nth-child(2) {
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

/*---------------------------------------------------*/
/*	03) IKNOW HERO 1
/*---------------------------------------------------*/

.iknow_tm_hero {
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_hero .background_shape {
	position: absolute;
	width: 76%;
	top: 0px;
	left: 0px;
	height: calc(100vh + 0px);
	background-color: #f1faff;
	clip-path: polygon(100% 0%, 81% 86%, 0% 100%, 0% 0%);
}

.iknow_tm_hero .background_shape.opened {
	height: calc(100vh + 65px);
}

.iknow_tm_hero .hero_content {
	width: 100%;
	height: 100%;
	float: left;
	clear: both;
	position: relative;
	z-index: 3;
}

.iknow_tm_hero .content_inner {
	width: 100%;
	min-height: 100vh;
	float: left;
	clear: both;
	position: relative;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
}

.iknow_tm_hero .content_inner .main_info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: calc(100vh - 150px);
	padding-top: 135px;
}

.iknow_tm_hero .left {
	width: 50%;
}

.iknow_tm_hero .subtitle {
	display: inline-block;
	color: #ff451b;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
}

.iknow_tm_hero .name {
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 22px;
}

.iknow_tm_hero .text {
	font-size: 24px;
	margin-bottom: 27px;
}

.iknow_tm_video {
	width: auto;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	z-index: 2;
}

.iknow_tm_video .video_inner {
	display: inline-block;
	display: flex;
	align-items: center;
	position: relative;
}

.iknow_tm_video .circle {
	width: 72px;
	height: 72px;
	background-color: #ffb324;
	border-radius: 100%;
	position: relative;
}

.iknow_tm_video .circle:before {
	position: absolute;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 3px;
}

.iknow_tm_video .play {
	font-size: 24px;
	font-weight: 700;
	padding-left: 28px;
}

.iknow_tm_video .circle:after {
	position: absolute;
	content: "";
	top: 1px;
	bottom: 1px;
	left: 1px;
	right: 1px;
	border-radius: 100%;
	background-color: rgba(0, 0, 0, .03);
	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;
}

.iknow_tm_video:hover .circle:after {
	top: -9px;
	bottom: -9px;
	left: -9px;
	right: -9px;
}

.iknow_tm_full_link {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}

.iknow_tm_hero .right {
	width: 50%;
	padding-left: 230px;
}

.iknow_tm_hero .right .image {
	position: relative;
}

.iknow_tm_hero .right .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.iknow_tm_hero .right .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 15px;
}

.iknow_tm_hero .right .image .main:before {
	position: absolute;
	content: "";
	top: 24px;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background-color: #ffb324;
	z-index: -1;
	transform: rotate(-50deg);
	animation: animeRotate 13s linear 0s infinite alternate;
}

@keyframes animeRotate {
	0% {
		transform: rotate(-50deg);
	}

	100% {
		transform: rotate(-30deg);
	}
}

.iknow_tm_hero .main_menu {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-bottom: 25px;
}

.iknow_tm_hero .main_menu ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_hero .main_menu ul li {
	margin: 0px 6px 6px 0px;
	float: left;
	background-color: #fff;
	position: relative;
	height: 135px;
	width: 135px;
	padding: 48px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 18px 18px 48px rgba(108, 99, 255, .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;
}

.iknow_tm_hero .main_menu ul li .svg {
	width: 40px;
	height: 40px;
	color: #ff451b;
	display: 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;
}

.iknow_tm_hero .main_menu ul li span {
	font-size: 22px;
	color: #222222;
	font-weight: 700;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 12px;
	position: absolute;
	white-space: nowrap;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_hero .main_menu ul li.entered span,
.iknow_tm_hero .main_menu ul li.active span {
	left: 95px;
}

.iknow_tm_hero .main_menu ul li.active svg {
	color: #fff;
}

.iknow_tm_hero .main_menu ul li.active span {
	color: #fff;
}

.iknow_tm_hero .main_menu ul li.active {
	background-color: #ff451b;
}

/*---------------------------------------------------*/
/*	04) IKNOW HERO ICONS
/*---------------------------------------------------*/

.simple_shapes .one,
.simple_shapes .two,
.simple_shapes .three,
.simple_shapes .four,
.simple_shapes .five,
.simple_shapes .six,
.simple_shapes .seven,
.simple_shapes .eight,
.simple_shapes .nine,
.simple_shapes .ten,
.simple_shapes .eleven,
.simple_shapes .twelve,
.simple_shapes .thirteen,
.simple_shapes .fourteen,
.simple_shapes .fifteen,
.simple_shapes .sixteen,
.simple_shapes .seventeen,
.simple_shapes .eighteen,
.simple_shapes .nineteen,
.simple_shapes .twenty {
	position: absolute;
}

.simple_shapes .one {
	top: 15%;
	left: 7%;
}

.simple_shapes .one .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .one .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(108, 99, 255, .3);
}

.simple_shapes .two {
	bottom: 15%;
	left: 5%;
}

.simple_shapes .two .cls-1 {
	stroke: none;
	fill: rgba(108, 99, 255, .3);
}

.simple_shapes .two .svg {
	width: 95px;
	height: 95px;
}

.simple_shapes .three {
	top: 13%;
	right: 5%;
}

.simple_shapes .three .cls-1 {
	stroke: none;
	fill: rgba(108, 99, 255, .2);
}

.simple_shapes .three .svg {
	width: 120px;
	height: 120px;
}

.simple_shapes .four {
	top: 29%;
	left: 10%;
}

.simple_shapes .four .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .four .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .five {
	top: 50%;
	transform: translateY(-50%);
	left: 8%;
	transform: rotate(90deg);
}

.simple_shapes .five .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .five .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(108, 99, 255, .3);
}

.simple_shapes .six {
	bottom: 33%;
	left: 3%;
	transform: rotate(250deg);
}

.simple_shapes .six .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .six .svg {
	width: 30px;
	height: 30px;
	stroke: rgba(51, 51, 51, .3);
}

.simple_shapes .seven {
	bottom: 4%;
	left: 10%;
}

.simple_shapes .seven .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .seven .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(255, 71, 71, .3);
}

.simple_shapes .eight {
	bottom: 24%;
	left: 14%;
}

.simple_shapes .eight .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .eight .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .nine {
	top: 19%;
	left: 36%;
	transform: rotate(70deg);
}

.simple_shapes .nine .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .nine .svg {
	width: 30px;
	height: 30px;
	stroke: rgba(108, 99, 255, .3);
}

.simple_shapes .ten {
	top: 25%;
	left: 50%;
	transform: rotate(180deg);
}

.simple_shapes .ten .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .ten .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .eleven {
	bottom: 50%;
	left: 48%;
}

.simple_shapes .eleven .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .eleven .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .twelve {
	bottom: 30%;
	left: 49%;
}

.simple_shapes .twelve .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .twelve .svg {
	width: 24px;
	height: 24px;
	stroke: rgba(255, 71, 71, .3);
}

.simple_shapes .thirteen {
	bottom: 26%;
	left: 39%;
}

.simple_shapes .thirteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .thirteen .svg {
	width: 18px;
	height: 18px;
	stroke: rgba(91, 215, 180, .3);
}

.simple_shapes .fourteen {
	top: 14%;
	right: 13%;
}

.simple_shapes .fourteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .fourteen .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .fifteen {
	top: 32%;
	right: 2%;
}

.simple_shapes .fifteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .fifteen .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(51, 51, 51, .3);
}

.simple_shapes .sixteen {
	top: 50%;
	right: 3%;
}

.simple_shapes .sixteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .sixteen .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .seventeen {
	top: 59%;
	right: 3%;
}

.simple_shapes .seventeen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .seventeen .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(108, 99, 255, .3);
}

.simple_shapes .eighteen {
	bottom: 19%;
	right: 10%;
}

.simple_shapes .eighteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .eighteen .svg {
	width: 30px;
	height: 30px;
	stroke: rgba(255, 71, 71, .3);
}

.simple_shapes .nineteen {
	bottom: 12%;
	right: 19%;
}

.simple_shapes .nineteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .nineteen .svg {
	width: 10px;
	height: 10px;
	stroke: rgba(169, 219, 90, .3);
}

.simple_shapes .twenty {
	bottom: 12%;
	right: 3%;
}

.simple_shapes .twenty .cls-1 {
	stroke: inherit;
	fill: none;
}

.simple_shapes .twenty .svg {
	width: 35px;
	height: 35px;
	stroke: rgba(169, 219, 90, .3);
}

.rounded_shapes .one,
.rounded_shapes .two,
.rounded_shapes .three,
.rounded_shapes .four,
.rounded_shapes .five,
.rounded_shapes .six,
.rounded_shapes .seven,
.rounded_shapes .eight,
.rounded_shapes .nine,
.rounded_shapes .ten,
.rounded_shapes .eleven,
.rounded_shapes .twelve,
.rounded_shapes .thirteen,
.rounded_shapes .fourteen,
.rounded_shapes .fifteen,
.rounded_shapes .sixteen,
.rounded_shapes .seventeen,
.rounded_shapes .eighteen {
	position: absolute;
}

.rounded_shapes .one {
	top: 24%;
	left: 2%;
}

.rounded_shapes .one .cls-1 {
	stroke: inherit;
	fill: #ff451b;
}

.rounded_shapes .one .svg {
	width: 20px;
	height: 20px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .two {
	top: 25%;
	left: 8%;
}

.rounded_shapes .two .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .two .svg {
	width: 38px;
	height: 38px;
	stroke: rgba(254, 200, 98, .3);
}

.rounded_shapes .three {
	top: 45%;
	left: 4%;
}

.rounded_shapes .three .cls-1 {
	stroke: inherit;
	fill: rgba(255, 69, 27, .3);
}

.rounded_shapes .three .svg {
	width: 37px;
	height: 37px;
	stroke: none;
}

.rounded_shapes .four {
	bottom: 36%;
	left: 7%;
}

.rounded_shapes .four .cls-1 {
	stroke: inherit;
	fill: rgba(254, 200, 98, .3);
}

.rounded_shapes .four .svg {
	width: 22px;
	height: 22px;
	stroke: none;
}

.rounded_shapes .five {
	bottom: 20%;
	left: 3%;
}

.rounded_shapes .five .cls-1 {
	stroke: inherit;
	fill: rgba(254, 200, 98, .3);
}

.rounded_shapes .five .svg {
	width: 20px;
	height: 20px;
	stroke: rgba(254, 200, 98, .3);
}

.rounded_shapes .six {
	top: 19%;
	left: 24%;
}

.rounded_shapes .six .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .six .svg {
	width: 30px;
	height: 30px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .seven {
	top: 20%;
	left: 40%;
}

.rounded_shapes .seven .cls-1 {
	stroke: inherit;
	fill: rgba(254, 200, 98, .3);
}

.rounded_shapes .seven .svg {
	width: 60px;
	height: 60px;
	stroke: none;
}

.rounded_shapes .eight {
	top: 35%;
	left: 40%;
}

.rounded_shapes .eight .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .eight .svg {
	width: 30px;
	height: 30px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .nine {
	top: 40%;
	left: 52%;
}

.rounded_shapes .nine .cls-1 {
	stroke: inherit;
	fill: rgba(255, 69, 27, .3);
}

.rounded_shapes .nine .svg {
	width: 26px;
	height: 26px;
	stroke: none;
}

.rounded_shapes .ten {
	bottom: 31%;
	left: 48%;
}

.rounded_shapes .ten .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .ten .svg {
	width: 63px;
	height: 63px;
	stroke: rgba(254, 200, 98, .3);
}

.rounded_shapes .eleven {
	bottom: 23%;
	left: 38%;
}

.rounded_shapes .eleven .cls-1 {
	stroke: inherit;
	fill: rgba(255, 69, 27, .3);
}

.rounded_shapes .eleven .svg {
	width: 20px;
	height: 20px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .twelve {
	top: 14%;
	right: 11%;
}

.rounded_shapes .twelve .cls-1 {
	stroke: inherit;
	fill: rgba(255, 69, 27, .3);
}

.rounded_shapes .twelve .svg {
	width: 20px;
	height: 20px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .thirteen {
	top: 18%;
	right: 7%;
}

.rounded_shapes .thirteen .cls-1 {
	stroke: inherit;
	fill: rgba(254, 200, 98, .3);
}

.rounded_shapes .thirteen .svg {
	width: 30px;
	height: 30px;
	stroke: none;
}

.rounded_shapes .fourteen {
	top: 31%;
	right: 6%;
}

.rounded_shapes .fourteen .cls-1 {
	stroke: inherit;
	fill: rgba(254, 200, 98, .3);
}

.rounded_shapes .fourteen .svg {
	width: 20px;
	height: 20px;
	stroke: rgba(254, 200, 98, .3);
}

.rounded_shapes .fifteen {
	top: 41%;
	right: 2%;
}

.rounded_shapes .fifteen .cls-1 {
	stroke: inherit;
	fill: rgba(255, 69, 27, .3);
}

.rounded_shapes .fifteen .svg {
	width: 37px;
	height: 37px;
	stroke: none;
}

.rounded_shapes .sixteen {
	bottom: 40%;
	right: 7%;
}

.rounded_shapes .sixteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .sixteen .svg {
	width: 27px;
	height: 27px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .seventeen {
	bottom: 6%;
	left: 6%;
}

.rounded_shapes .seventeen .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .seventeen .svg {
	width: 34px;
	height: 34px;
	stroke: rgba(255, 69, 27, .3);
}

.rounded_shapes .eighteen {
	top: 18%;
	right: 38%;
}

.rounded_shapes .eighteen .cls-1 {
	stroke: inherit;
	fill: none;
}

.rounded_shapes .eighteen .svg {
	width: 23px;
	height: 23px;
	stroke: rgba(255, 69, 27, .3);
}

.iknow_tm_fixed_mainpart .simple_shapes .two {
	left: 3%;
}

.iknow_tm_fixed_mainpart .simple_shapes .seven {
	left: 1%;
}

.iknow_tm_fixed_mainpart .simple_shapes .four {
	left: 3%;
}

.iknow_tm_fixed_mainpart .simple_shapes .one {
	left: 2%;
	top: 5%;
}

.iknow_tm_fixed_mainpart .simple_shapes .nineteen {
	bottom: 8%;
}

.iknow_tm_fixed_mainpart .simple_shapes .twelve {
	bottom: 5%;
}

.iknow_tm_fixed_mainpart .simple_shapes .ten {
	top: 5%;
}

.iknow_tm_fixed_mainpart .simple_shapes .nine {
	top: 5%;
	left: 30%;
}

.iknow_tm_fixed_mainpart .simple_shapes .six {
	bottom: 45%;
}

.iknow_tm_extra_demo .rounded_shapes .thirteen {
	right: 3%;
}

.iknow_tm_extra_demo .rounded_shapes .sixteen {
	right: 4%;
	bottom: 22%;
}

/*---------------------------------------------------*/
/*	05) IKNOW ABOUT
/*---------------------------------------------------*/

.iknow_tm_mainpart {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 7px 7px 72px rgba(108, 99, 255, .1);
	padding: 0px 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;
}

.iknow_tm_mainpart.opened {
	padding: 70px;
}

.iknow_tm_main_section {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: none;
}

.iknow_tm_main_section.active {
	display: block;
	animation: slide-down .7s ease;
	-webkit-animation: slide-down .7s ease;
	-moz-animation: slide-down .7s ease;
}

@keyframes slide-down {
	0% {
		-webkit-transform: translateY(30px);
	}

	100% {
		-webkit-transform: translateY(0);
	}
}

@-webkit-keyframes slide-down {
	0% {
		-webkit-transform: translateY(30px);
	}

	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes slide-down {
	0% {
		-moz-transform: translateY(30px);
	}

	100% {
		-moz-transform: translateY(0);
	}
}

.iknow_tm_about {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
}

.iknow_tm_about .left {
	width: 50%;
	position: relative;
}

.iknow_tm_about .left .left_inner {
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
}

.iknow_tm_about .left .image {
	position: relative;
	min-width: 50%;
	/* min-width: 60%; */
}

.iknow_tm_about .left .image img {
	position: relative;
	min-width: 100%;
	opacity: 1;
	/* opacity: 0; */
}

.iknow_tm_about .left .image .main {
	position: absolute;
	top: -50px;
	/* top: 0px; */
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 15px;
}

.iknow_tm_about .left .details {
	position: relative;
	min-width: 50%;
	/* min-width: 47%; */
	/* left: -55px; */
	/* margin-top: 55px; */
	background-color: #ff451b;
	padding: 36px 40px 35px 40px;
	z-index: 1;
	border-radius: 15px;
}

.iknow_tm_about .left .details ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_about .left .details ul li {
	margin: 0px;
	border-bottom: 1px dashed rgba(255, 255, 255, .3);
	padding: 13px 0px;
}

.iknow_tm_about .left .details ul li:first-child {
	padding-top: 0px;
}

.iknow_tm_about .left .details ul li:last-child {
	margin-bottom: 0px;
	border-bottom: none;
	padding-bottom: 0px;
}

.iknow_tm_about .left .details h3 {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 2px;
	opacity: .85;
}

.iknow_tm_about .left .details span {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.iknow_tm_about .left .details span a {
	color: #fff;
}

.iknow_tm_about .iknow_tm_main_title {
	max-width: 100%;
}

.iknow_tm_main_title {
	width: 100%;
	/* max-width: 45%; */
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_main_title span {
	font-size: 21px;
	color: #ff451b;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 6px;
}

.iknow_tm_main_title h3 {
	font-size: 35px;
	font-weight: 700;
}

.iknow_tm_about .right {
	width: 50%;
	padding-left: 75px;
	position: relative;
	top: -8px;
}

.iknow_tm_about .right .bigger_text {
	width: 100%;
	float: left;
	padding: 25px 0px;
}

.iknow_tm_about .right .bigger_text p {
	font-size: 18px;
	font-weight: 500;
	color: #222;
	line-height: 1.6;
}

.iknow_tm_about .right .text {
	width: 100%;
	float: left;
	margin-bottom: 38px;
}

/*---------------------------------------------------*/
/*	06) IKNOW RESUME
/*---------------------------------------------------*/

.iknow_tm_resume {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_resume .resume_inner {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
}

.iknow_tm_resume .iknow_tm_main_title {
	margin-bottom: 100px;
}

.iknow_tm_resume .left {
	width: 50%;
	padding-right: 30px;
}

.iknow_tm_resume .info_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 62px;
}

.iknow_tm_resume .info_list:last-child {
	margin-bottom: 0px;
}

.iknow_tm_resume_title {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_resume_title h3 {
	font-size: 36px;
	font-weight: 700;
	padding-left: 40px;
}

.iknow_tm_resume_title .shape {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: 3px solid #ff451b;
}

.iknow_tm_resume_title .shape:before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: #ff451b;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iknow_tm_resume .info_list ul {
	margin: 38px 0px 0px 0px;
	float: left;
	list-style-type: none;
}

.iknow_tm_resume .info_list ul li {
	width: 100%;
	float: left;
	margin: 0px 0px 0px 0px;
}

.iknow_tm_resume .info_list ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_resume .info_list ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_resume .info_list ul li .short {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iknow_tm_resume .info_list ul li .short .job {
	padding-right: 20px;
}

.iknow_tm_resume .info_list ul li .short .job h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.iknow_tm_resume .info_list ul li .short .job span {
	font-size: 20px;
	color: #555;
}

.iknow_tm_resume .info_list ul li .short .year span {
	font-size: 20px;
	color: #ff451b;
	display: inline-block;
	border: 1px solid #dddddd;
	border-radius: 50px;
	padding: 8px 35px 7px 35px;
	white-space: nowrap;
}

.iknow_tm_resume .text {
	width: 100%;
	float: left;
	margin-top: 18px;
}

.iknow_tm_resume .right {
	width: 50%;
	padding-left: 30px;
}

.iknow_tm_resume .right .skills_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 67px;
}

.iknow_tm_resume .right .skills_list:last-child {
	margin-bottom: 0px;
}

.iknow_tm_resume .right .skills_list .personal {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.dodo_progress {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 40px;
	overflow: hidden;
}

.progress_inner {
	width: 100%;
	margin-bottom: 23px;
}

.progress_inner:last-child {
	margin-bottom: 0px;
}

.progress_inner>span {
	margin: 0px 0px 20px 0px;
	display: block;
	text-align: left;
	position: relative;
}

.progress_inner span.label {
	opacity: 0;
	transform: translateY(10px);
	display: block;
	color: #0F172A;
	font-size: 21px;
	font-weight: 700;

	-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: -5px;
	transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	/* IE 10+ */
	color: #ff451b;
	font-family: "Poppins";
}

.progress_inner .background {
	background: #e2e7ec;
	width: 100%;
	min-width: 100%;
	position: relative;
	height: 8px;
	border-radius: 50px;
}

.progress_inner .background .bar_in {
	height: 5px;
	background: #ff451b;
	width: 0px;
	overflow: hidden;
	border-radius: 50px;
	position: relative;
	top: -7px;
}

.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%;
	}
}

.iknow_tm_resume .right .skills_list .software {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.circular_progress_bar {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 40px;
}

.circular_progress_bar ul {
	margin: 0px 0px 0px -75px;
	list-style-type: none;
}

.circular_progress_bar ul li {
	margin: 0px 0px 45px 0px;
	width: 50%;
	float: left;
	padding-left: 75px;
}

.circular_progress_bar .myCircle {
	position: relative;
	float: left;
}

.circular_progress_bar .list_inner {
	width: 100%;
	position: relative;
	text-align: center;
}

.circular_progress_bar .list_inner:after {
	content: '';
	position: absolute;
	width: 199px;
	height: 199px;
	border: 6px solid #eee;
	left: 7px;
	top: 7px;
	z-index: -1;
	border-radius: 50%;
	z-index: 11;
	box-sizing: border-box;
}

.circular_progress_bar .title {
	width: 100%;
	max-width: 213px;
	float: left;
	padding-top: 14px;
}

.circular_progress_bar .title h3 {
	font-size: 21px;
	font-weight: 700;
}

.circular_progress_bar .number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ff451b;
	font-size: 30px;
	font-weight: 400;
}

/*---------------------------------------------------*/
/*	07) IKNOW PORTFOLIO
/*---------------------------------------------------*/

.iknow_tm_portfolio {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_portfolio .portfolio_filter {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
	padding: 50px 0px 43px 0px;
}

.iknow_tm_portfolio .portfolio_filter ul {
	margin: 0px;
	list-style-type: none;




	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
}

.iknow_tm_portfolio .portfolio_filter ul li {
	margin: 0px 30px 0px 0px;
	display: inline-block;
}

.iknow_tm_portfolio .portfolio_filter ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_portfolio .portfolio_filter ul li a.current {
	color: #ff451b;
}

.iknow_tm_portfolio .portfolio_filter ul li a {
	text-decoration: none;
	color: #222;
	font-size: 18px;
	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;
}

.iknow_tm_portfolio .portfolio_filter ul li a:hover {
	color: #ff451b;
}

.iknow_tm_portfolio .portfolio_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_portfolio .portfolio_list ul {
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}

.iknow_tm_portfolio .portfolio_list ul li {
	margin: 0px 0px 30px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 30px;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner .image {
	position: relative;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner .image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	background-color: rgba(255, 69, 27, .72);
	border-radius: 10px;
	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;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner:hover .overlay {
	opacity: 1;
	visibility: visible;
}

.iknow_tm_portfolio .portfolio_list .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 50px;
	height: 50px;
	color: #fff;
	margin-top: 10px;
	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;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner:hover .svg {
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}

.iknow_tm_portfolio .portfolio_list .details {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -10px;
	left: 0px;
	z-index: 2;
	padding: 0px 20px 35px 20px;
	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;
}

.iknow_tm_portfolio .portfolio_list ul li .list_inner:hover .details {
	opacity: 1;
	visibility: visible;
	bottom: 0px;
}

.iknow_tm_portfolio .portfolio_list .details span {
	font-size: 16px;
	color: #fff;
	display: inline-block;
	margin-bottom: 10px;
}

.iknow_tm_portfolio .portfolio_list .details h3 {
	font-size: 21px;
	color: #fff;
	font-weight: 700;
}

.iknow_tm_modalbox {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 25;
	background-color: rgba(0, 0, 0, .8);
	opacity: 0;
	visibility: hidden;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_modalbox.opened {
	opacity: 1;
	visibility: visible;
}

.iknow_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;
	overflow-y: scroll;
	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;
}

.iknow_tm_modalbox.opened .box_inner {
	opacity: 1;
	visibility: visible;
	margin-top: 0px;
}

.iknow_tm_modalbox .close {
	/* position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 20px;
	z-index: 111111; */
	position: relative;
	left: 95%;
	top: 0px;
	z-index: 111111;
	display: inline-block;
	color: #fff;
}

.iknow_tm_modalbox .close a {
	text-decoration: none;
	color: #fff;
}

.iknow_tm_modalbox .close .svg {
	width: 50px;
	height: 50px;
	margin: 10px 0 0 -10px;
}

.iknow_tm_modalbox .description_wrap {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
	overflow-y: scroll;
}

.iknow_tm_modalbox .description_wrap::-webkit-scrollbar,
.iknow_tm_fixed_content .mainbar::-webkit-scrollbar {
	width: 11px;
}

.iknow_tm_modalbox .description_wrap {
	scrollbar-width: thin;
	scrollbar-color: #dfe2e7 #fff;
}

.iknow_tm_modalbox .description_wrap:-webkit-scrollbar-track,
.iknow_tm_fixed_content .mainbar:-webkit-scrollbar-track {
	background: #fff;
}

.iknow_tm_modalbox .description_wrap::-webkit-scrollbar-thumb,
.iknow_tm_fixed_content .mainbar::-webkit-scrollbar-thumb {
	background-color: #dfe2e7;
	border-radius: 10px;
	border: 3px solid #fff;
}

.iknow_tm_portfolio .hidden_content {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.iknow_tm_modalbox .popup_details {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_modalbox .popup_details .top_image {
	position: relative;
	overflow: hidden;
	margin-bottom: 37px;

	min-height: 50vh;
}

.iknow_tm_modalbox .popup_details .top_image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
	height: 100%;
	object-fit: contain;
}

.iknow_tm_modalbox .popup_details .top_image .main {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.iknow_tm_modalbox .portfolio_main_title {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.iknow_tm_modalbox .portfolio_main_title span {
	display: inline-block;
	margin-bottom: 5px;
}

.iknow_tm_modalbox .portfolio_main_title h3 {
	font-weight: 700;
	font-size: 21px;
}

.iknow_tm_modalbox .main_details {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 60px;
}

.iknow_tm_modalbox .main_details .textbox {
	width: 70%;
	padding-right: 40px;
}

.iknow_tm_modalbox .main_details .textbox p {
	margin-bottom: 15px;
}

.iknow_tm_modalbox .main_details .textbox p:last-child {
	margin-bottom: 0px;
}

.tokyo_tm_modalbox .main_details .detailbox {
	width: 30%;
	padding-left: 40px;
}

.iknow_tm_modalbox .main_details .detailbox>ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_modalbox .main_details .detailbox>ul>li {
	margin: 0px 0px 8px 0px;
	width: 100%;
	float: left;
}

.iknow_tm_modalbox .main_details .detailbox>ul>li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_modalbox .main_details .detailbox .first {
	font-weight: 700;
	display: block;
	color: #000;
	margin-bottom: 3px;
}

.iknow_tm_modalbox .main_details .detailbox span a {
	text-decoration: none;
	color: #888;
}

.iknow_tm_modalbox .main_details .detailbox .share {
	margin: 0px;
	list-style-type: none;
	position: relative;
	top: 7px;
}

.iknow_tm_modalbox .main_details .detailbox .share li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.iknow_tm_modalbox .main_details .detailbox .share li:last-child {
	margin-right: 0px;
}

.iknow_tm_modalbox .main_details .detailbox .share li a {
	text-decoration: none;
	color: #000;
}

.iknow_tm_modalbox .additional_images {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_modalbox .additional_images ul {
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}

.iknow_tm_modalbox .additional_images ul li {
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}

.iknow_tm_modalbox .additional_images ul li:nth-child(3n-2) {
	width: 100%;
}

.iknow_tm_modalbox .additional_images ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_modalbox .additional_images ul li .my_image {
	position: relative;
}

.iknow_tm_modalbox .additional_images ul li .my_image img {
	opacity: 0;
	min-width: 100%;
}

.iknow_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: 10px;
}

/*---------------------------------------------------*/
/*	08) IKNOW SERVICES
/*---------------------------------------------------*/

.iknow_tm_services {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_services .service_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 70px;
}

.iknow_tm_services .service_list ul {
	margin: 0px 0px 0px -25px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

.iknow_tm_services .service_list ul li {
	margin: 0px 0px 25px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 25px;
}

.iknow_tm_services .service_list ul li .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 60px 40px 58px 40px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 7px 7px 98px rgba(9, 47, 104, .07);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_services .service_list ul li .list_inner:hover {
	box-shadow: 7px 7px 98px rgba(9, 47, 104, .15);
}

.iknow_tm_services .service_list ul li .icon {
	display: inline-block;
	width: 107px;
	height: 107px;
	background-color: #ffb324;
	border-radius: 100%;
	position: relative;
	margin-bottom: 25px;
}

.iknow_tm_services .service_list ul li .icon .svg {
	width: 42px;
	height: 42px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
}

.iknow_tm_services .service_list ul li .title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.iknow_tm_services .service_informations {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.iknow_tm_modalbox .service_informations {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_modalbox .service_informations .image {
	position: relative;
	margin-bottom: 37px;
}

.iknow_tm_modalbox .service_informations .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.iknow_tm_modalbox .service_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: 15px;
}

.iknow_tm_modalbox .service_informations .title {
	width: 100%;
	float: left;
	margin-bottom: 22px;
}

.iknow_tm_modalbox .title h3 {
	font-size: 22px;
	font-weight: 700;
}

.iknow_tm_modalbox .service_informations .description {
	width: 100%;
	float: left;
}

.iknow_tm_modalbox .service_informations .description p {
	margin-bottom: 15px;
}

.iknow_tm_modalbox .service_informations .description p:last-child {
	margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	09) IKNOW TESTIMONIALS
/*---------------------------------------------------*/

.iknow_tm_testimonials,
.iknow_tm_testimonials .testimonials_list,
.iknow_tm_testimonials .testimonials_list .list_inner,
.iknow_tm_testimonials .testimonials_list .list_inner .in {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_mainpart {
	overflow: hidden;
}

.iknow_tm_fixed_content .iknow_tm_testimonials .owl-carousel .owl-stage-outer {
	overflow: hidden;
}

.iknow_tm_testimonials .owl-carousel .owl-stage-outer {
	overflow: visible;
}

.iknow_tm_testimonials .owl-item.active {
	opacity: 1;
}

.iknow_tm_testimonials .owl-item {
	opacity: 0;
}

.iknow_tm_testimonials .testimonials_list {
	padding-top: 68px;
}

.iknow_tm_testimonials .testimonials_list .list_inner .in {
	box-shadow: 7px 7px 98px rgba(9, 47, 104, .07);
	border-radius: 15px;
	padding: 52px 60px 60px 60px;
}

.iknow_tm_testimonials .testimonials_list .text {
	width: 100%;
	float: left;
	margin-bottom: 28px;
}

.iknow_tm_testimonials .testimonials_list .text p {
	font-size: 21px;
	font-style: italic;
}

.iknow_tm_testimonials .testimonials_list .details {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iknow_tm_testimonials .testimonials_list .details .left {
	display: flex;
	align-items: center;
}

.iknow_tm_testimonials .testimonials_list .details .avatar {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 100%;
}

.iknow_tm_testimonials .testimonials_list .details .avatar .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 100%;
}

.iknow_tm_testimonials .testimonials_list .details .info {
	padding-left: 20px;
}

.iknow_tm_testimonials .testimonials_list .details .info h3 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 5px;
}

.iknow_tm_testimonials .testimonials_list .details .info span {
	font-size: 16px;
	color: #aaaaaa;
}

.iknow_tm_testimonials .testimonials_list .right .svg {
	width: 50px;
	height: 50px;
	color: #ffb324;
}

.iknow_tm_testimonials .owl-theme .owl-dots .owl-dot span {
	width: 11px;
	height: 11px;
	background-color: #ff451b;
	position: relative;
	margin: 0px 15px;
}

.iknow_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 #ffb324;
	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;
}

.iknow_tm_testimonials .owl-theme .owl-dots .owl-dot.active span:before {
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
}

.iknow_tm_testimonials .owl-theme .owl-nav.disabled+.owl-dots {
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
	margin-top: 50px;
}

/*---------------------------------------------------*/
/*	10) IKNOW NEWS
/*---------------------------------------------------*/

.iknow_tm_news {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_news .news_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding-top: 70px;
}

.iknow_tm_news .news_list ul {
	margin: 0px 0px 0px -25px;
	list-style-type: none;
}

.iknow_tm_news .news_list ul li {
	margin: 0px 0px 25px 0px;
	width: 33.3333%;
	float: left;
	padding-left: 25px;
}

.iknow_tm_news .news_list ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_news .news_list ul li .image {
	position: relative;
	overflow: hidden;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.iknow_tm_news .news_list ul li .image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.iknow_tm_news .news_list ul li .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_news .news_list ul li .image:hover .main {
	transform: scale(1.1);
}

.iknow_tm_news .news_list ul li .details {
	width: 100%;
	float: left;
	padding: 30px 30px 28px 30px;
	box-shadow: 7px 7px 30px rgba(108, 99, 255, .07);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.iknow_tm_news .news_list ul li .details .category {
	margin-bottom: 3px;
	display: inline-block;
}

.iknow_tm_news .news_list ul li .details .category a {
	text-decoration: none;
	color: #ff451b;
	font-size: 16px;
	font-weight: 700;
}

.iknow_tm_news .news_list ul li .details .title a {
	text-decoration: none;
	color: #222;
	font-size: 21px;
	font-weight: 700;
	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;
}

.iknow_tm_news .news_list ul li .details .title a:hover {
	color: #ff451b;
}

.iknow_tm_news .news_informations {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.iknow_tm_modalbox .news_informations {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_modalbox .news_informations .image {
	position: relative;
	margin-bottom: 37px;
}

.iknow_tm_modalbox .news_informations .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.iknow_tm_modalbox .news_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: 10px;
}

.iknow_tm_modalbox .news_informations .details {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.iknow_tm_modalbox .news_informations .details span {
	display: inline-block;
	margin-bottom: 7px;
}

.iknow_tm_modalbox .news_informations .details h3 {
	font-size: 22px;
	font-weight: 700;
}

.iknow_tm_modalbox .news_informations .text {
	width: 100%;
	float: left;
}

.iknow_tm_modalbox .news_informations .text p {
	margin-bottom: 15px;
}

.iknow_tm_modalbox .news_informations .text p:last-child {
	margin-bottom: 0px;
}

/*---------------------------------------------------*/
/*	11) IKNOW CONTACT
/*---------------------------------------------------*/

.iknow_tm_contact {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_contact .wrapper {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	padding-top: 70px;
}

.iknow_tm_contact .wrapper .left {
	width: 35%;
	padding-right: 40px;
}

.iknow_tm_contact .wrapper .left ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_contact .wrapper .left ul li {
	margin: 0px 0px 25px 0px;
	width: 100%;
	float: left;
}

.iknow_tm_contact .wrapper .left ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_contact .wrapper .left ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	display: flex;
	align-items: center;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .icon {
	display: inline-block;
	position: relative;
	width: 90px;
	height: 90px;
	min-width: 90px;
	border-radius: 100%;
	background-color: #ffb324;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .icon .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 35px;
	height: 35px;
	color: #fff;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .short {
	padding-left: 15px;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .short h3 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 11px;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .short span a {
	text-decoration: none;
	color: #888;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_contact .wrapper .left ul li .list_inner .short span a:hover {
	color: #ff451b;
}

.iknow_tm_contact .wrapper .right {
	width: 65%;
}

.iknow_tm_contact .wrapper .right .fields {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_contact .wrapper .right .input_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_contact .wrapper .right .input_list ul {
	margin: 0px 0px 0px -25px;
	list-style-type: none;
}

.iknow_tm_contact .wrapper .right .input_list ul li {
	margin: 0px 0px 25px 0px;
	float: left;
	width: 50%;
	padding-left: 25px;
}

.iknow_tm_contact .wrapper .right .input_list ul li input {
	width: 100%;
	height: 60px;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 10px;
	padding: 25px !important;
	background-color: transparent;
}

.iknow_tm_contact .wrapper .right .input_list ul li input:focus {
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, .3);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	/*     display: none; <- Crashes Chrome on hover */
	-webkit-appearance: none;
	margin: 0;
	/* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
	appearance: textfield;
	-moz-appearance: textfield;
	/* Firefox */
}

.iknow_tm_contact .message_area {
	width: 100%;
	float: left;
	margin-bottom: 18px;
}

.iknow_tm_contact .message_area textarea {
	width: 100%;
	height: 230px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, .15);
	padding: 25px !important;
	background-color: transparent;
}

.iknow_tm_contact .message_area textarea:focus {
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, .3);
}

.iknow_tm_contact .empty_notice {
	color: #F52225;
	margin-bottom: 7px;
	display: none;
	text-align: left;
	font-weight: 500;
}

.iknow_tm_contact .contact_error {
	color: #F52225;
	text-align: left;
	font-weight: 500;
}

.iknow_tm_contact .returnmessage {
	color: #3A00FF;
	margin-bottom: 7px;
	text-align: left;
	font-weight: 500;
}

/*---------------------------------------------------*/
/*	12) IKNOW COPYRIGHT
/*---------------------------------------------------*/

.iknow_tm_copyright {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 115px 0px 58px 0px;
}

.iknow_tm_copyright.hidden {
	display: none;
}

.iknow_tm_copyright.hidden.visible {
	display: block;
}

.iknow_tm_copyright .inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iknow_tm_copyright .left a {
	text-decoration: none;
	color: #888;
	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;
}

.iknow_tm_copyright .left a:hover {
	color: #ff451b;
}

.iknow_tm_copyright .right ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_copyright .right ul li {
	margin: 0px 40px 0px 0px;
	display: inline-block;
}

.iknow_tm_copyright .right ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_copyright .right ul li a {
	text-decoration: none;
	color: #888;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_copyright .right ul li a:hover {
	color: #ff451b;
}

.iknow_tm_copyright.fixed {
	position: fixed;
	bottom: 0px;
	padding-top: 55px;
	z-index: 5;
}

/*---------------------------------------------------*/
/*	13) IKNOW HERO 2
/*---------------------------------------------------*/

.iknow_tm_hero_second {
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_hero_second .container {
	z-index: 2;
}

.iknow_tm_hero_second .background_shape {
	position: absolute;
	top: 0px;
	height: calc(100vh + 65px);
	left: 0px;
	right: 0px;
	background-color: #fff6f1;
	clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 62%);
}

.iknow_tm_hero_second .main_info {
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 100px 0px 167px 0px;
}

.iknow_tm_hero_second .left {
	width: 50%;
}

.iknow_tm_hero_second .subtitle {
	display: inline-block;
	color: #ff451b;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 5px;
}

.iknow_tm_hero_second .name {
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 27px;
}

.iknow_tm_hero_second .text {
	font-size: 22px;
	margin-bottom: 44px;
}

.iknow_tm_hero_second .social {
	width: 100%;
	float: left;
}

.iknow_tm_hero_second .social ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_hero_second .social ul li {
	margin: 0px 12px 0px 0px;
	display: inline-block;
}

.iknow_tm_hero_second .social ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_hero_second .social ul li a {
	text-decoration: none;
}

.iknow_tm_hero_second .social ul li .svg {
	width: 50px;
	height: 50px;
}

.iknow_tm_hero_second .right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.iknow_tm_hero_second .right .image {
	position: relative;
	width: 430px;
	height: 430px;
	border-radius: 100%;
}

.iknow_tm_hero_second .right .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 100%;
	z-index: 1;
}

.iknow_tm_hero_second .right .image span {
	position: absolute;
}

.iknow_tm_hero_second .right .image .first {
	width: 90px;
	height: 90px;
	background-color: #ff451b;
	top: 20px;
	left: -5px;
	transform: rotate(42deg);
	z-index: 2;
}

.iknow_tm_hero_second .right .image .second {
	width: 105px;
	height: 152px;
	background-color: #ffb324;
	bottom: -5px;
	left: -25px;
	z-index: 2;
}

.iknow_tm_hero_second .right .image .third {
	width: 165px;
	height: 365px;
	background-color: #ffb324;
	top: -30px;
	right: -30px;
}

/*---------------------------------------------------*/
/*	14) IKNOW EXTRA MENU
/*---------------------------------------------------*/

.iknow_tm_extra_menu {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	margin-top: -167px;
}

.iknow_tm_extra_menu .menu_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_extra_menu .menu_list .unordered {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li {
	margin: 0px 0px 25px 0px;
	width: 100%;
	float: left;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li:last-child {
	margin-right: 0px;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in {
	width: 100%;
	height: 142px;
	clear: both;
	float: left;
	position: relative;
	display: flex;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .details_wrapper {
	display: none;
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 7px 7px 72px rgba(108, 99, 255, .1);
	padding: 70px;
	margin-top: 25px;
}

.iknow_tm_extra_menu .list_in .list_icon,
.iknow_tm_extra_menu .list_in .down_icon {
	min-width: 142px;
	width: 142px;
	height: 100%;
	border-radius: 15px;
	position: relative;
	box-shadow: 18px 18px 48px rgba(108, 99, 255, .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;
}

.iknow_tm_extra_menu .list_in .list_icon {
	background-color: #ff451b;
}

.iknow_tm_extra_menu .list_in .down_icon {
	background-color: #ffb324;
}

.iknow_tm_extra_menu .list_in .center {
	width: 100%;
	margin: 0px 5px;
	height: 100%;
	background-color: #fff;
	box-shadow: 18px 18px 48px rgba(108, 99, 255, .1);
	border-radius: 15px;
	line-height: 142px;
	padding: 0px 50px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;

}

.iknow_tm_extra_menu .list_in .list_icon .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 45px;
	height: 45px;
	color: #fff;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_extra_menu .list_in .down_icon .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0);
	width: 30px;
	height: 30px;
	color: #fff;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_extra_menu .list_in .center span {
	font-size: 30px;
	font-weight: 700;
	color: #222;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li.opened .list_in .list_icon,
.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in:hover .list_icon {
	background-color: #ffb324;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li.opened .list_in .center,
.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in:hover .center {
	background-color: #ff451b;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li.opened .list_in .center span,
.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in:hover .center span {
	color: #fff;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li.opened .list_in .down_icon,
.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in:hover .down_icon {
	background-color: #fff;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in:hover .down_icon .svg {
	color: #888888;
}

.iknow_tm_extra_menu .menu_list .unordered .unorderest_li.opened .list_in .down_icon .svg {
	color: #888888;
	transform: translate(-50%, -50%) rotate(-180deg);
}

/*---------------------------------------------------*/
/*	15) IKNOW HOME 3
/*---------------------------------------------------*/

.iknow_tm_fixed_background {
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.iknow_tm_fixed_content {
	position: fixed;
	width: 100%;
	height: 100vh;
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 1;
}

.iknow_tm_fixed_content .fixed_content_inner {
	position: fixed;
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
}

.iknow_tm_fixed_content .content_left {
	width: 50%;
	display: flex;
	flex-direction: row;
}

.iknow_tm_fixed_content .menubar {
	width: 200px;
}

.iknow_tm_fixed_content .menubar ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_fixed_content .menubar ul li {
	margin: 0px 0px 7px 0px;
	width: 100%;
	height: 70px;
	line-height: 70px;
	float: left;
	border-radius: 7px;
	background-color: #fff;
	box-shadow: 9px 9px 48px rgba(59, 89, 152, .07);
	position: relative;
	padding-left: 65px;
	padding-right: 10px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_fixed_content .menubar ul li:hover,
.iknow_tm_fixed_content .menubar ul li.active {
	background-color: #fe451b;
}

.iknow_tm_fixed_content .menubar ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_fixed_content .menubar ul li .svg {
	width: 27px;
	height: 27px;
	color: #ff451b;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 24px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_fixed_content .menubar ul li:hover .svg,
.iknow_tm_fixed_content .menubar ul li.active .svg {
	color: #fff;
}

.iknow_tm_fixed_content .menubar ul li span {
	font-weight: 700;
	font-size: 15px;
	color: #222;
	text-transform: uppercase;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_fixed_content .menubar ul li:hover span,
.iknow_tm_fixed_content .menubar ul li.active span {
	color: #fff;
}

.iknow_tm_fixed_content .infobar {
	width: 424px;
	margin-left: 24px;
}

.iknow_tm_fixed_content .infobar .bar_in {
	width: 100%;
	float: left;
	border-radius: 15px;
	box-shadow: 15px 15px 90px rgba(59, 89, 152, .1);
}

.iknow_tm_fixed_content .infobar .image {
	position: relative;
}

.iknow_tm_fixed_content .infobar .image img {
	opacity: 0;
	position: relative;
	min-width: 100%;
}

.iknow_tm_fixed_content .infobar .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.iknow_tm_fixed_content .infobar .extra {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	text-align: center;
	padding: 30px 10px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.iknow_tm_fixed_content .infobar .extra .short {
	width: 100%;
	float: left;
	margin-bottom: 27px;
}

.iknow_tm_fixed_content .infobar .extra .short h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}

.iknow_tm_fixed_content .infobar .extra .short span {
	font-size: 16px;
	font-weight: 500;
	color: #888;
}

.iknow_tm_fixed_content .infobar .extra .social {
	width: 100%;
	float: left;
}

.iknow_tm_fixed_content .infobar .extra .social ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_fixed_content .infobar .extra .social ul li {
	margin: 0px 8px 0px 0px;
	display: inline-block;
}

.iknow_tm_fixed_content .infobar .extra .social ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_fixed_content .infobar .extra .social ul li a {
	text-decoration: none;
}

.iknow_tm_fixed_content .infobar .extra .social ul li .svg {
	width: 45px;
	height: 45px;
}

.iknow_tm_fixed_content .content_right {
	width: 50%;
	margin-left: 24px;
}

.iknow_tm_fixed_content .mainbar {
	width: 100%;
	height: 100%;
	background-color: #fff;
	box-shadow: 15px 15px 90px rgba(59, 89, 152, .1);
	border-radius: 15px;
	padding: 70px;
	overflow-y: scroll;
}

.iknow_tm_author_info {
	display: none;
	padding-left: 10px;
}

.iknow_tm_author_info .info_inner {
	width: 100%;
	display: flex;
	align-items: center;
}

.iknow_tm_author_info .avatar {
	position: relative;
	width: 60px;
	height: 60px;
}

.iknow_tm_author_info .avatar .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
}

.iknow_tm_author_info .info {
	padding-right: 10px;
	text-align: right;
}

.iknow_tm_author_info h3 {
	font-size: 16px;
	font-weight: 700;
}

.iknow_tm_author_info span {
	font-size: 13px;
}

.iknow_tm_fixed_content .iknow_tm_about {
	flex-direction: column-reverse;
}

.iknow_tm_fixed_content .iknow_tm_about .right {
	padding-left: 0px;
	width: 100%;
	top: 0px;
}

.iknow_tm_fixed_content .iknow_tm_main_title {
	max-width: 100%;
}

.iknow_tm_fixed_content .iknow_tm_about .left {
	width: 100%;
}

.iknow_tm_fixed_content .iknow_tm_about .left .image img {
	display: none;
}

.iknow_tm_fixed_content .iknow_tm_about .left .image .main {
	display: none;
}

.iknow_tm_fixed_content .iknow_tm_about .left .left_inner {
	display: block;
}

.iknow_tm_fixed_content .iknow_tm_about .left .details {
	left: 0px;
}

.iknow_tm_fixed_content .iknow_tm_resume .resume_inner {
	flex-direction: column;
}

.iknow_tm_fixed_content .iknow_tm_resume .left {
	width: 100%;
	padding-right: 0px;
}

.iknow_tm_fixed_content .iknow_tm_resume .right {
	width: 100%;
	padding-left: 0px;
	margin-top: 55px;
}

.iknow_tm_fixed_content .iknow_tm_resume .iknow_tm_main_title {
	margin-bottom: 50px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list ul {
	margin-left: -24px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list ul li {
	width: 50%;
	padding-left: 24px;
	margin-bottom: 24px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_filter {
	text-align: left;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_filter ul li {
	margin-right: 17px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_filter ul li {
	margin-right: 17px;
}

.iknow_tm_fixed_content .iknow_tm_services .service_list ul li {
	width: 50%;
}

.iknow_tm_fixed_content .iknow_tm_services .service_list ul li .title {
	font-size: 21px;
	margin-bottom: 17px;
}

.iknow_tm_fixed_content .iknow_tm_services .service_list ul li .icon {
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
}

.iknow_tm_fixed_content .iknow_tm_services .service_list ul li .icon .svg {
	width: 25px;
	height: 25px;
}

.iknow_tm_fixed_content .iknow_tm_news .news_list ul li {
	width: 50%;
}

.iknow_tm_fixed_content .iknow_tm_news .news_list ul li .details .category a {
	font-size: 14px;
}

.iknow_tm_fixed_content .iknow_tm_news .news_list ul li .details .title a {
	font-size: 18px;
}

.iknow_tm_fixed_content .iknow_tm_news .news_list ul li .details {
	padding: 15px 25px 18px 25px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper {
	flex-direction: column;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .left {
	width: 100%;
	padding-right: 0px;
	margin-bottom: 40px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .right {
	width: 100%;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .right .input_list ul {
	margin: 0px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .right .input_list ul li {
	width: 100%;
	padding-left: 0px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .left ul li .list_inner .short h3 {
	font-size: 19px;
	margin-bottom: 8px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .left ul li .list_inner .icon {
	width: 80px;
	height: 80px;
}

.iknow_tm_fixed_content .iknow_tm_contact .wrapper .left ul li .list_inner .icon .svg {
	width: 30px;
	height: 30px;
}

.iknow_tm_fixed_content .iknow_tm_testimonials .testimonials_list .list_inner .in {
	padding: 0px;
	box-shadow: none;
	border-radius: 0px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .svg {
	width: 40px;
	height: 40px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details {
	padding-bottom: 25px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details span {
	font-size: 15px;
	margin-bottom: 4px;
}

.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details h3 {
	font-size: 17px;
}

.anim_circle {
	animation: animCircle 15s infinite linear;
}

@keyframes animCircle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.anim_scale {
	animation: animScale 5s linear 0s infinite alternate;
}

@keyframes animScale {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(2);
	}
}

.anim_scale2 {
	animation: animScale2 5s linear 0s infinite alternate;
}

@keyframes animScale2 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.4);
	}
}

.anim_translate {
	animation: animTranslate 5s linear 0s infinite alternate;
}

@keyframes animTranslate {
	0% {
		transform: rotate(42deg) translateX(-5px);
	}

	100% {
		transform: rotate(42deg) translateX(5px);
	}
}

.anim_moveTop {
	animation: animMoveTop 5s linear 0s infinite alternate;
}

@keyframes animMoveTop {
	0% {
		transform: translateY(-30px);
	}

	100% {
		transform: translateY(30px);
	}
}

.anim_moveLeft {
	animation: animMoveLeft 5s linear 0s infinite alternate;
}

@keyframes animMoveLeft {
	0% {
		transform: translateX(-30px);
	}

	100% {
		transform: translateX(30px);
	}
}

.anim_extra {
	animation: animExtra 5s linear 0s infinite alternate;
}

@keyframes animExtra {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(180deg);
	}
}

.anim_right {
	animation: animRight 5s linear 0s infinite alternate;
}

@keyframes animRight {
	0% {
		transform: translateX(15px);
	}

	100% {
		transform: translateX(-15px);
	}
}

.anim_right2 {
	animation: animRight2 5s linear 0s infinite alternate;
}

@keyframes animRight2 {
	0% {
		transform: translateX(0px);
	}

	100% {
		transform: translateX(-30px);
	}
}

.anim_left2 {
	animation: animLeft2 5s linear 0s infinite alternate;
}

@keyframes animLeft2 {
	0% {
		transform: translateX(-30px);
	}

	100% {
		transform: translateX(0px);
	}
}

/*---------------------------------------------------*/
/*	16) IKNOW 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: #ff451b;
	-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: #ff451b;
	opacity: .3;
}

.cursor-outer {
	margin-left: -15px;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	border: 2px solid #ff451b;
	-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;
}

.iknow_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

/*---------------------------------------------------*/
/*	17) IKNOW DEMO 4
/*---------------------------------------------------*/

.iknow_tm_sidebar_2 {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 370px;
	height: 100vh;
	background-color: #fff;
	z-index: 20;
}

.iknow_tm_sidebar_2 .sidebar_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.iknow_tm_sidebar_2 .logo {
	width: 100%;
	height: 110px;
	line-height: 110px;
	border-bottom: 1px solid #ddd;
	padding-left: 50px;
}

.iknow_tm_sidebar_2 .logo img {
	max-width: 135px;
	max-height: 80px;
}

.iknow_tm_sidebar_2 .menu {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_sidebar_2 .ccc {
	position: absolute;
	left: 0px;
	right: 0px;
	height: 75px;
	background-color: #ff6e4d;
	display: block;
	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;
}

.iknow_tm_sidebar_2 .menu ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_sidebar_2 .menu ul li {
	margin: 0px;
	width: 100%;
	height: 75px;
	line-height: 75px;
	float: left;
	position: relative;
	padding-left: 90px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_2 .menu ul li:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0px;
	bottom: 0px;
	background-color: #ddd;
	z-index: -1;
}

.iknow_tm_sidebar_2 .menu ul li.mleave.active span {
	color: #222;
}

.iknow_tm_sidebar_2 .menu ul li.mleave.active .svg {
	color: #ff451b;
}

.iknow_tm_sidebar_2 .menu ul li .svg {
	width: 27px;
	height: 27px;
	color: #ff451b;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 50px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_2 .menu ul li:hover .svg {
	color: #fff;
}

.iknow_tm_sidebar_2 .menu ul li span {
	font-size: 15px;
	color: #222;
	font-weight: 700;
	text-transform: uppercase;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_2 .menu ul li:hover span {
	color: #fff;
}

.iknow_tm_sidebar_2 .menu ul li.active .svg,
.iknow_tm_sidebar_2 .menu ul li.active span {
	color: #fff;
}

.iknow_tm_fixed_mainpart {
	position: fixed;
	top: 0px;
	left: 370px;
	right: 0px;
	height: 100vh;
	background-color: #fef5f1;
}

.iknow_tm_fixed_mainpart .mainpart_inner {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
}

.iknow_tm_fixed_mainpart .topbar_extra {
	position: absolute;
	top: 0px;
	left: 370px;
	right: 100px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.iknow_tm_fixed_mainpart .topbar_extra .iknow_tm_button {
	width: auto;
}

.iknow_tm_fixed_mainpart .topbar_extra .details {
	display: flex;
	align-items: center;
}

.iknow_tm_fixed_mainpart .topbar_extra .details .social {
	position: relative;
	top: 3px;
	margin-right: 15px;
}

.iknow_tm_fixed_mainpart .topbar_extra .details .social ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_fixed_mainpart .topbar_extra .details .social ul li {
	margin: 0px 15px 0px 0px;
	display: inline-block;
}

.iknow_tm_fixed_mainpart .topbar_extra .details.social ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_fixed_mainpart .topbar_extra .details .social ul li a {
	text-decoration: none;
	color: #000;
}

.iknow_tm_fixed_mainpart .topbar_extra .details .social ul li .svg {
	width: 20px;
	height: 20px;
	display: block;
}

.iknow_tm_fixed_mainpart .extra_copyright {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 110px;
	line-height: 110px;
	padding: 0px 100px;

}

.iknow_tm_fixed_mainpart .iknow_tm_copyright {
	padding: 0px;
}

.iknow_tm_content_extra {
	position: fixed;
	top: 110px;
	bottom: 110px;
	right: 100px;
	left: 470px;
	border: 15px;
}

.iknow_tm_animate_section::-webkit-scrollbar {
	width: 0px;
}

.iknow_tm_animate_section {
	scrollbar-width: thin;
	scrollbar-color: #dfe2e7 #fff;
}

.iknow_tm_animate_section:-webkit-scrollbar-track {
	background: #fff;
}

.iknow_tm_animate_section::-webkit-scrollbar-thumb {
	background-color: #dfe2e7;
	border-radius: 10px;
	border: 3px solid #fff;
}

.iknow_tm_animate_section {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	border-radius: 15px;
	overflow: hidden;
	overflow-y: scroll;

	opacity: 0;
	visibility: hidden;
	z-index: 8;
	transition: visibility 1s linear, opacity .5s linear;
	-moz-transition: visibility 1s linear, opacity .5s linear;
	-webkit-transition: visibility1s linear, opacity .5s linear;
	-o-transition: visibility 1s linear, opacity .5s linear;
}

.iknow_tm_animate_section.animated {
	opacity: 1;
	visibility: visible;
	z-index: 9;
}

.iknow_tm_animate_section.active {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

.iknow_tm_animate_section.hidden {
	opacity: 0;
	visibility: hidden;
	z-index: 9;
}

.iknow_tm_animate_section .section_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	padding: 70px;
	border-radius: 15px;
}

.iknow_tm_hero_extra {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.iknow_tm_hero_extra .background {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.iknow_tm_hero_extra .background .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.iknow_tm_hero_extra .background .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	background-color: rgba(0, 0, 0, .18);
	border-radius: 15px;
}

.iknow_tm_hero_extra .hero_content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.iknow_tm_hero_extra .hero_content .left {
	width: 50%;
	padding-left: 125px;
}

.iknow_tm_hero_extra .hero_content .left .hello {
	font-weight: 700;
	color: #fff;
	font-size: 26px;
	display: inline-block;
	margin-bottom: 8px;
}

.iknow_tm_hero_extra .hero_content .left .name {
	font-weight: 700;
	color: #fff;
	font-size: 100px;
	line-height: 1;
	margin-bottom: 23px;
}

.iknow_tm_hero_extra .hero_content .left .text {
	font-size: 23px;
	color: #fff;
	margin-bottom: 35px;
}

.iknow_tm_hero_extra .hero_content .right {
	width: 50%;
	height: 100%;
	text-align: right;
	position: relative;
	padding: 10%;
}

.iknow_tm_hero_extra .hero_content .right .image {
	position: relative;
}

.iknow_tm_hero_extra .hero_content .right .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.iknow_tm_hero_extra .hero_content .right .image .main {
	position: absolute !important;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
	z-index: 2;
}

.iknow_tm_hero_extra .hero_content .right .image .box {
	position: absolute;
	top: -30px !important;
	bottom: 30px !important;
	left: 30px !important;
	right: -30px !important;
	background-color: #ffb324;
	border-radius: 15px;
	z-index: 1;
}

.iknow_tm_button.yellow a {
	background-color: #ffb324;
}

.iknow_tm_button.yellow a:hover {
	background-color: #ff451b;
}

/*---------------------------------------------------*/
/*	18) IKNOW DEMO 5
/*---------------------------------------------------*/

.iknow_tm_extra_demo {
	width: 100%;
	height: 100vh;
	position: relative;
}

.iknow_tm_extra_demo .top_shape,
.iknow_tm_extra_demo .bottom_shape {
	position: fixed;
	left: 0px;
	right: 0px;
	height: 110px;
	background-color: #fff6f1;
}

.iknow_tm_extra_demo .top_shape {
	top: 0px;
	z-index: 8;
}

.iknow_tm_extra_demo .bottom_shape {
	bottom: 0px;
	z-index: 11;
}

.iknow_tm_extra_demo .background_part {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	background-color: #000000 !important;
}

.iknow_tm_extra_demo .iknow_tm_topbar {
	position: fixed;
	left: 132px;
	right: 132px;
	background-color: #000000 !important;
	z-index: 10;
}

.iknow_tm_extra_demo .iknow_tm_topbar .social .svg {
	width: 45px !important;
	height: 45px !important;
}

.iknow_tm_extra_demo .iknow_tm_topbar .right .social ul li {
	margin-right: 8px;
}

.iknow_tm_extra_demo .iknow_tm_topbar .topbar_inner {
	padding-top: 0px;
	height: 110px;
}

.iknow_tm_topbar .wrapper {
	display: flex;
	align-items: center;
	position: relative
}

.iknow_tm_topbar.smaller {
	left: 15%;
	right: 15%;
}

.iknow_tm_topbar .wrapper .trigger {
	position: relative;
	top: 7px;
}

.iknow_tm_topbar .wrapper .menu .ccc {
	position: absolute;
	bottom: 0;
	width: 30px;
	background-color: #DD4242;
	display: block;
	top: 10px;
	bottom: 10px;
	border-radius: 20px;
	border-radius: 50px;
	background-color: #ffb324;
	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;
}

.iknow_tm_topbar .wrapper .menu {
	background-color: #fff;
	padding: 10px;
	box-shadow: 18px 18px 30px rgba(8, 32, 93, .07);
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
	margin-right: 20px;
	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;
}

.iknow_tm_topbar .wrapper .menu.opened {
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}

.iknow_tm_topbar .wrapper .menu ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_topbar .wrapper .menu ul li {
	margin: 0px 0px 0px 0px;
	float: left;
}

.iknow_tm_topbar .wrapper .menu ul li:last-child {
	margin-right: 0px;
}

.iknow_tm_topbar .wrapper .menu ul li a {
	text-decoration: none;
	color: #222222;
	font-weight: 700;
	font-size: 16px;
	display: inline-block;
	padding: 9px 24px 8px 24px;
	border-radius: 50px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_topbar .wrapper .menu ul li.mleave.active a {
	color: #222;
}

.iknow_tm_topbar .wrapper .menu ul li.active a {
	color: #fff;
}

.iknow_tm_topbar .wrapper .menu ul li a:hover {
	color: #fff;
}

.iknow_tm_topbar .hamburger-inner,
.iknow_tm_topbar .hamburger-inner:after,
.iknow_tm_topbar .hamburger-inner:before {
	width: 30px;
	height: 2px;
}

.iknow_tm_topbar .hamburger {
	padding: 0px;
}

.iknow_tm_topbar .hamburger-box {
	width: 30px;
}

.iknow_tm_extra_demo .iknow_tm_copyright {
	position: fixed;
	width: auto;
	padding: 0px;
	bottom: 10px;
	left: 132px;
	right: 132px;
	z-index: 13;
}

.iknow_tm_extra_demo .iknow_tm_copyright .inner {
	height: 110px;
}

.iknow_tm_extra_demo .iknow_tm_copyright.smaller {
	left: 15%;
	right: 15%;
}

.iknow_tm_copyright.empty {
	padding: 0px 0px 70px 0px;
}

.iknow_tm_sidebar_3 {
	position: fixed;
	width: 312px;
	top: 110px;
	bottom: 110px;
	left: 130px;
	z-index: 5;
	border-radius: 15px;
	background-color: #fff;
}

.iknow_tm_sidebar_3 .inner {
	width: 100%;
	height: 100%;
	float: left;
	position: relative;
}

.iknow_tm_sidebar_3 .image {
	width: 100%;
	height: 222px;
	background-color: #feb224;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	position: relative;
}

.iknow_tm_sidebar_3 .image .main {
	position: absolute;
	width: 222px;
	height: 222px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	left: 50%;
	transform: translateX(-50%);
	bottom: -27px;
	border: 5px solid #fff;
	border-radius: 15px;
	box-shadow: 18px 18px 30px rgba(0, 0, 0, .08);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_3.animate .main {
	bottom: -24px;
	width: 100%;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border: none;
}

.iknow_tm_sidebar_3.animate .menu {
	margin-top: 45px;
}

.iknow_tm_sidebar_3 .menu {
	width: 100%;
	height: auto;
	position: relative;
	/* padding: 0px 48px 0px 48px; */
	/* margin-top: 90px; */
	margin-top: 50px;
	height: 400px !important;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_3 .menu ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_sidebar_3 .menu ul li {
	margin: 0px;
	width: 100%;
	float: left;
	position: relative;
	padding: 14px 0px;
}

.iknow_tm_sidebar_3 .menu ul li:before {
	position: absolute;
	content: "";
	left: 0px;
	width: 100%;
	height: 1px;
	bottom: 0px;
	background-color: #e7e7e7;
}

.iknow_tm_sidebar_3 .menu ul li:last-child:before {
	display: none;
}

.iknow_tm_sidebar_3 .menu ul li:after {
	position: absolute;
	content: "";
	left: 0px;
	width: 0px;
	height: 1px;
	bottom: 0px;
	background-color: #D7D7D7;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_sidebar_3 .menu ul li:last-child:after {
	display: none;
}

.iknow_tm_sidebar_3 .menu ul li.current:after {
	width: 100%;
}

.iknow_tm_sidebar_3 .menu ul li:hover:after {
	width: 100%;
}

.iknow_tm_sidebar_3 .menu ul li.current span {
	color: #ff451b;
}

.iknow_tm_sidebar_3 .menu ul li:hover span {
	color: #ff451b;
}

.iknow_tm_sidebar_3 .menu ul li .svg {
	width: 25px;
	height: 25px;
	color: #ff451b;
	position: absolute;
	left: 40px;
}

.iknow_tm_sidebar_3 .menu ul li span {
	color: #222222;
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	padding-left: 80px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_content_wrapper {
	position: absolute;
	top: 110px;
	bottom: 110px;
	right: 135px;
	left: 468px;
	border-radius: 15px;
	z-index: 5;
}

.iknow_tm_hero_third {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 70px;
}

.iknow_tm_hero_third .background {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.iknow_tm_hero_third .background .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
}

.iknow_tm_hero_third .background .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(26, 48, 86, .82);
	z-index: 1;
	border-radius: 15px;
}

.iknow_tm_hero_third .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	text-align: center;
	width: 60%;
	padding: 0px 20px;
}

.iknow_tm_hero_third .content-right {
	width: 40%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	right: 0%;
	/* background-color: #ff451b; */
	border: 1px solid white;
	padding: 36px 40px 35px 40px;
	z-index: 1;
	border-radius: 15px;
	margin-right: 20px;
}

.iknow_tm_hero_third .content .hello {
	font-weight: 700;
	color: #ff451b;
	font-size: 26px;
	display: inline-block;
	margin-bottom: 2px;
}

.iknow_tm_hero_third .content .name {
	font-weight: 700;
	color: #fff;
	font-size: 80px;
	margin-bottom: 20px;
}

.iknow_tm_hero_third .content .text {
	color: #bab6b6;
	font-size: 22px;
	/* max-width: 600px; */
	margin: 0px auto 40px auto;
}

.iknow_tm_down_arrow {
	position: absolute;
	z-index: 2;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}

.iknow_tm_down_arrow svg {
	width: 25px !important;
	height: 25px !important;
}

.iknow_tm_down_arrow svg #wheel {
	animation: scroll ease 2s infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(60px);
	}
}

.iknow_tm_section_new {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 70px;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 7px 7px 12px rgba(108, 99, 255, .09);
	margin-bottom: 70px;
	overflow: hidden;
}

.iknow_tm_section_new:last-child {
	margin-bottom: 0px;
}

.iknow_tm_section_new.contact {
	padding-bottom: 170px;
}

/*---------------------------------------------------*/
/*	19) IKNOW DEMO 6
/*---------------------------------------------------*/

.iknow_tm_mainpart_new {
	position: fixed;
	top: 110px;
	bottom: 110px;
	left: 15%;
	right: 15%;
}

.iknow_tm_hero_fourth {
	position: relative;
	width: 100%;
	height: 100%;
}

.iknow_tm_hero_fourth .background {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.iknow_tm_hero_fourth .background .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
}

.iknow_tm_hero_fourth .background .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	border-radius: 15px;
	/*	background-color: rgba(0,0,0,.5);*/
}

.iknow_tm_hero_fourth .content {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 110px;
}

.iknow_tm_hero_fourth .content .left {
	width: 50%;
	padding-right: 50px;
}

.iknow_tm_hero_fourth .content .right {
	width: 50%;
	padding-left: 50px;
}

.iknow_tm_hero_fourth .content .left img {
	max-width: 470px;
	max-height: 470px;
}

.iknow_tm_hero_fourth .content .right .hello {
	font-weight: 700;
	color: #ff451b;
	font-size: 26px;
	display: inline-block;
	margin-bottom: 2px;
}

.iknow_tm_hero_fourth .content .right .name {
	font-weight: 700;
	color: #fff;
	font-size: 80px;
	margin-bottom: 20px;
}

.iknow_tm_hero_fourth .content .right .text {
	color: #bab6b6;
	font-size: 22px;
	max-width: 600px;
	margin: 0px auto 40px auto;
}

/*---------------------------------------------------*/
/*	20) IKNOW DEMO 7
/*---------------------------------------------------*/

.iknow_tm_extra_demo_2 {
	width: 100%;
	height: 100vh;
	position: relative;
}

.iknow_tm_extra_demo_2 .top_shape,
.iknow_tm_extra_demo_2 .bottom_shape {
	position: fixed;
	left: 0px;
	right: 0px;
	background-color: #fff6f1;
	z-index: 6;
}

.iknow_tm_extra_demo_2 .top_shape {
	top: 0px;
	height: 110px;
}

.iknow_tm_extra_demo_2 .bottom_shape {
	bottom: 0px;
	height: 70px;
}

.iknow_tm_extra_demo_2 .iknow_tm_topbar {
	position: fixed;
}

.iknow_tm_extra_demo_2 .iknow_tm_topbar .topbar_inner {
	padding-top: 0px;
	height: 110px;
}

.iknow_tm_mainpart_new_2 {
	position: absolute;
	top: 110px;
	left: 15%;
	right: 15%;
	bottom: 70px;
	z-index: 4;
}

.iknow_tm_hero_fifth {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 70px;
}

.iknow_tm_hero_fifth .background {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.iknow_tm_hero_fifth .background .image {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
}

.iknow_tm_hero_fifth .background .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	/*	background-color: rgba(0,0,0,.5);*/
	z-index: 1;
	border-radius: 15px;
}

.iknow_tm_hero_fifth .content {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	padding: 0px 10px;
}

.iknow_tm_hero_fifth .avatar {
	position: relative;
	width: 142px;
	height: 142px;
	border-radius: 100%;
	display: inline-block;
	margin-bottom: 43px;
}

.iknow_tm_hero_fifth .avatar .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
}

.iknow_tm_hero_fifth .details {
	width: 100%;
	float: left;
}

.iknow_tm_hero_fifth .hello {
	font-weight: 700;
	color: #ff451b;
	font-size: 26px;
	display: inline-block;
	margin-bottom: 2px;
}

.iknow_tm_hero_fifth .name {
	font-weight: 700;
	color: #fff;
	font-size: 80px;
	margin-bottom: 20px;
}

.iknow_tm_hero_fifth .text {
	color: #bab6b6;
	font-size: 22px;
	max-width: 500px;
	font-weight: 600;
	margin: 0px auto 25px auto;
}

.iknow_tm_hero_fifth .sign {
	max-width: 200px;
	max-height: 110px;
}

.iknow_tm_mainpart_new_2 .social_list {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	width: 100%;
	max-width: 15%;
	padding: 0px 2vw;
	display: flex;
	justify-content: flex-end;
}

.iknow_tm_mainpart_new_2 .social_list ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_mainpart_new_2 .social_list ul li {
	margin: 0px 0px 5px 0px;
}

.iknow_tm_mainpart_new_2 .social_list ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_mainpart_new_2 .social_list ul li a {
	text-decoration: none;
}

.iknow_tm_mainpart_new_2 .social_list ul li .svg {
	width: 48px;
	height: 48px;
}

.iknow_tm_mainpart_new_2 .main_menu {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	right: 0;
	padding: 0 2vw;
	max-width: 15%;
}

.iknow_tm_mainpart_new_2 .main_menu ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_mainpart_new_2 .main_menu ul li {
	margin: 0px 0px 12px 0px;
	background-color: #fff;
	position: relative;
	height: 70px;
	width: 70px;
	padding: 23px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 18px 18px 48px rgba(108, 99, 255, .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;
}

.iknow_tm_mainpart_new_2 .main_menu ul li:last-child {
	margin-bottom: 0px;
}

.iknow_tm_mainpart_new_2 .main_menu ul li .svg {
	width: 25px;
	height: 25px;
	color: #ff451b;
	display: 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;
}

.iknow_tm_mainpart_new_2 .main_menu ul li span {
	font-size: 16px;
	color: #222222;
	font-weight: 700;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 12px;
	position: absolute;
	white-space: nowrap;
	text-transform: uppercase;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_mainpart_new_2 .main_menu ul li.entered span,
.iknow_tm_mainpart_new_2 .main_menu ul li.current span {
	left: 46px;
}

.iknow_tm_mainpart_new_2 .main_menu ul li.current svg {
	color: #fff;
}

.iknow_tm_mainpart_new_2 .main_menu ul li.current span {
	color: #fff;
}

.iknow_tm_mainpart_new_2 .main_menu ul li.current {
	background-color: #ff451b;
}

/*---------------------------------------------------*/
/*	 IKNOW INTRO
/*---------------------------------------------------*/

.iknow_tm_intro {
	width: 100%;
	height: 100vh;
	clear: both;
	float: left;
	position: relative;
}

.iknow_tm_intro .intro_title {
	width: 100%;
	float: left;
	position: relative;
	z-index: 5;
	text-align: center;
	padding: 130px 0px 120px 0px;
}

.iknow_tm_intro .intro_title span {
	display: block;
}

.iknow_tm_intro .intro_title img {
	max-width: 150px;
	margin-bottom: 15px;
}

.iknow_tm_intro .intro_title .image_logo {
	display: inline-block;
	position: relative;
}

.iknow_tm_intro .intro_title .image_logo .version {
	position: absolute;
	top: -5px;
	right: -65px;
	color: #ff451b;
	font-weight: 700;
	font-size: 20px;
}

.iknow_tm_intro .intro_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.iknow_tm_intro .demo {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 60%;
	margin: 0px auto;
	text-align: center;
}

.iknow_tm_intro .demo ul {
	margin: 0px;
	list-style-type: none;
}

.iknow_tm_intro .demo ul li {
	margin: 0px 0px 88px 0px;
	width: 100%;
	float: left;
}

.iknow_tm_intro .demo ul li .name {
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 52px;
}

.iknow_tm_intro .demo ul li .name .name_in {
	position: relative;
}

.iknow_tm_intro .demo ul li .name .name_in .new {
	position: absolute;
	display: inline-block;
	background-color: #ff451b;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	text-transform: capitalize;
	bottom: 100%;
	margin-bottom: -10px;
	left: 100%;
	border-radius: 50px;
}

.iknow_tm_intro .demo ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
	display: flex;
}

.iknow_tm_intro .demo ul li .list_inner .in {
	width: 50%;
	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;
}

.iknow_tm_intro .demo ul li .list_inner .in:hover {
	top: -10px;
}

.iknow_tm_intro .demo ul li .list_inner .in:first-child {
	margin-left: 0px;
	margin-right: 30px;
}

.iknow_tm_intro .demo ul li .list_inner .in:last-child {
	margin-left: 30px;
	margin-right: 0px;
}

.iknow_tm_intro .demo ul li img {
	box-shadow: 0px 0px 40px rgba(0, 0, 0, .15);
	/*	border-radius: 15px;*/
	margin-bottom: 15px;
}

.iknow_tm_intro .demo ul li .mini {
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.iknow_tm_intro .demo ul li .list_inner .in:hover .mini {
	color: #ff451b;
}

.iknow_tm_intro .coming h3 {
	color: rgba(181, 181, 181, 1.00);
}

.iknow_tm_intro .intro_space {
	width: 100%;
	float: left;
	height: 120px;
}

/*---------------------------------------------------*/
/*	21) IKNOW MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (max-width: 1400px) {
	body {
		font-size: 16px;
		line-height: 1.6;
	}

	.container {
		max-width: 1070px;
	}

	.iknow_tm_topbar .topbar_inner {
		padding-top: 25px;
	}

	.iknow_tm_topbar .logo img {
		max-width: 95px;
	}

	.iknow_tm_button a {
		font-size: 14px;
		padding: 8px 35px;
	}

	.iknow_tm_topbar .right .social ul li {
		margin-right: 8px;
	}

	.iknow_tm_topbar .right .social ul li .svg {
		width: 17px;
		height: 17px;
	}

	.iknow_tm_topbar .iknow_tm_button {
		margin-left: 23px;
	}

	.iknow_tm_hero .main_menu ul li {
		width: 95px;
		height: 95px;
		padding: 35px;
	}

	.iknow_tm_hero .main_menu ul li .svg {
		width: 25px;
		height: 25px;
	}

	.iknow_tm_hero .main_menu ul li.entered span {
		left: 60px;
	}

	.iknow_tm_hero .main_menu ul li.active span {
		left: 60px;
	}

	.iknow_tm_hero .main_menu ul li span {
		font-size: 17px;
	}

	.iknow_tm_hero .subtitle {
		font-size: 25px;
	}

	.iknow_tm_hero .name {
		font-size: 70px;
		margin-bottom: 15px;
	}

	.iknow_tm_hero .text {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.iknow_tm_video .circle {
		width: 60px;
		height: 60px;
	}

	.iknow_tm_video .play {
		font-size: 20px;
		padding-left: 20px;
	}

	.iknow_tm_main_title h3 {
		font-size: 35px;
	}

	.iknow_tm_about .right .bigger_text p {
		font-size: 19px;
	}

	.iknow_tm_hero_second .subtitle {
		font-size: 25px;
	}

	.iknow_tm_hero_second .name {
		font-size: 70px;
		margin-bottom: 15px;
	}

	.iknow_tm_hero_second .text {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.iknow_tm_hero_second .right .image {
		width: 315px;
		height: 315px;
	}

	.iknow_tm_hero_second .right .image .first {
		width: 65px;
		height: 65px;
		top: 10px;
	}

	.iknow_tm_hero_second .right .image .second {
		width: 85px;
		height: 110px;
		left: -20px;
	}

	.iknow_tm_hero_second .right .image .third {
		width: 120px;
		height: 260px;
		top: -10px;
	}

	.iknow_tm_hero_second .social ul li .svg {
		width: 40px;
		height: 40px;
	}

	.iknow_tm_hero_second .social ul li {
		margin-right: 8px;
	}

	.iknow_tm_extra_menu {
		margin-top: -145px;
	}

	.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in {
		height: 120px;
	}

	.iknow_tm_extra_menu .list_in .list_icon {
		min-width: 120px;
		height: 120px;
	}

	.iknow_tm_extra_menu .list_in .down_icon {
		min-width: 120px;
		height: 120px;
	}

	.iknow_tm_extra_menu .list_in .list_icon .svg {
		width: 36px;
		height: 36px;
	}

	.iknow_tm_extra_menu .list_in .down_icon .svg {
		width: 20px;
		height: 20px;
	}

	.iknow_tm_extra_menu .list_in .center {
		line-height: 120px;
		padding: 0px 35px;
	}

	.iknow_tm_extra_menu .list_in .center span {
		font-size: 25px;
	}

	.iknow_tm_about .left .details {
		min-width: 60%;
	}

	.iknow_tm_about .left .details span {
		font-size: 15px;
	}

	.iknow_tm_about .left .details {
		padding: 30px 34px 29px 34px;
	}

	.iknow_tm_about .left .details h3 {
		margin-bottom: 1px;
	}

	.iknow_tm_about .left .details ul li {
		padding: 10px 0px;
	}

	.iknow_tm_testimonials .testimonials_list .text p {
		font-size: 16px;
	}

	.progress_inner span.label {
		font-size: 19px;
	}

	.progress_inner>span {
		margin-bottom: 16px;
	}

	.circular_progress_bar .title h3 {
		margin-bottom: 19px;
	}

	.iknow_tm_services .service_list ul li .title {
		margin-bottom: 25px;
	}

	.iknow_tm_portfolio .portfolio_filter ul li a {
		font-size: 16px;
	}

	.iknow_tm_portfolio .portfolio_list .svg {
		width: 40px;
		height: 40px;
	}

	.iknow_tm_portfolio .portfolio_list .details span {
		margin-bottom: 7px;
		font-size: 14px;
	}

	.iknow_tm_portfolio .portfolio_list .details h3 {
		font-size: 19px;
	}

	.iknow_tm_portfolio .portfolio_list .details {
		padding-bottom: 25px;
	}

	.iknow_tm_testimonials .testimonials_list .text p {
		font-size: 19px;
	}

	.iknow_tm_testimonials .testimonials_list .details .avatar {
		width: 50px;
		height: 50px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info h3 {
		margin: 2px;
		font-size: 19px;
	}

	.iknow_tm_testimonials .testimonials_list .right .svg {
		width: 40px;
		height: 40px;
	}

	.iknow_tm_news .news_list ul li .details .title a {
		font-size: 19px;
	}

	.iknow_tm_modalbox .box_inner {
		width: 850px;
	}

	.iknow_tm_contact .wrapper .left ul li .list_inner .short h3 {
		font-size: 19px;
		margin-bottom: 7px;
	}

	.iknow_tm_copyright {
		padding-bottom: 25px;
	}

	.iknow_tm_fixed_content .menubar ul li {
		height: 40px;
		line-height: 40px;
		padding-left: 45px;
	}

	.iknow_tm_fixed_content .menubar ul li .svg {
		width: 17px;
		height: 17px;
	}

	.iknow_tm_fixed_content .menubar ul li span {
		font-size: 12px;
	}

	.iknow_tm_fixed_content .menubar ul li .svg {
		left: 14px;
	}

	.iknow_tm_fixed_content .infobar .extra .short h3 {
		font-size: 20px;
		margin-bottom: 3px;
	}

	.iknow_tm_fixed_content .infobar .extra .short span {
		font-size: 14px;
	}

	.iknow_tm_fixed_content .infobar .extra .social ul li .svg {
		width: 30px;
		height: 30px;
	}

	.iknow_tm_fixed_content .infobar .extra .social ul li {
		margin-right: 4px;
	}

	.iknow_tm_fixed_content .infobar .extra .short {
		margin-bottom: 15px;
	}

	.iknow_tm_fixed_content .infobar .extra {
		padding: 20px 10px;
	}

	.iknow_tm_fixed_content .mainbar {
		padding: 55px;
	}

	.iknow_tm_fixed_content .iknow_tm_main_title h3 {
		font-size: 31px;
	}

	.iknow_tm_fixed_content .iknow_tm_resume_title h3 {
		font-size: 30px;
	}

	.iknow_tm_resume .info_list ul li .short .year span {
		font-size: 15px;
		padding: 5px 25px 4px 25px;
	}

	.iknow_tm_resume .info_list ul li .short .job h3 {
		font-size: 19px;
		margin-bottom: 3px;
	}

	.iknow_tm_resume .info_list ul li .short .job span {
		font-size: 16px;
	}

	.circular_progress_bar .list_inner:after {
		width: 155px;
		height: 155px;
	}

	.circular_progress_bar .number {
		font-size: 20px;
	}

	.circular_progress_bar .title {
		max-width: 120px;
	}

	.circular_progress_bar .title h3 {
		font-size: 19px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .svg {
		width: 30px;
		height: 30px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details {
		padding-bottom: 15px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details span {
		margin-bottom: 0px;
		font-size: 14px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list .details h3 {
		font-size: 15px;
	}

	.iknow_tm_fixed_content .iknow_tm_services .service_list ul li .list_inner {
		padding: 50px 30px 48px 30px;
	}

	.iknow_tm_fixed_content .iknow_tm_services .service_list ul li .title {
		font-size: 17px;
	}

	.iknow_tm_fixed_content .iknow_tm_testimonials .testimonials_list .text p {
		font-size: 16px;
	}

	.iknow_tm_sidebar_2 .logo {
		height: 75px;
		line-height: 75px;
	}

	.iknow_tm_sidebar_2 .logo img {
		max-width: 90px;
		max-height: 60px;
	}

	.iknow_tm_sidebar_2 {
		width: 300px;
	}

	.iknow_tm_sidebar_2 .menu ul li {
		height: 55px;
		line-height: 55px;
	}

	.iknow_tm_sidebar_2 .ccc {
		height: 55px;
	}

	.iknow_tm_sidebar_2 .menu ul li span {
		font-size: 13px;
	}

	.iknow_tm_sidebar_2 .menu ul li .svg {
		width: 23px;
		height: 23px;
		left: 40px;
	}

	.iknow_tm_sidebar_2 .menu ul li {
		padding-left: 75px;
	}

	.iknow_tm_sidebar_2 .logo {
		padding-left: 40px;
	}

	.iknow_tm_fixed_mainpart {
		left: 300px;
	}

	.iknow_tm_content_extra {
		top: 75px;
		bottom: 75px;
		left: 380px;
		right: 80px;
	}

	.iknow_tm_fixed_mainpart .topbar_extra {
		height: 75px;
	}

	.iknow_tm_fixed_mainpart .extra_copyright {
		padding: 0px 80px;
		height: 75px;
		line-height: 75px;
	}

	.iknow_tm_fixed_mainpart .topbar_extra {
		left: 380px;
		right: 80px;
	}

	.iknow_tm_hero_extra .hero_content .left .hello {
		font-size: 23px;
		margin-bottom: 4px;
	}

	.iknow_tm_hero_extra .hero_content .left {
		padding-left: 85px;
	}

	.iknow_tm_hero_extra .hero_content .left .name {
		font-size: 80px;
		margin-bottom: 15px;
	}

	.iknow_tm_hero_extra .hero_content .left .text {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.iknow_tm_hero_extra .hero_content .right .image .box {
		top: -20px !important;
		bottom: 20px !important;
		left: 20px !important;
		right: -20px !important;
	}

	.iknow_tm_animate_section .section_inner {
		padding: 55px;
	}

	.iknow_tm_extra_demo .top_shape,
	.iknow_tm_extra_demo .bottom_shape {
		height: 75px;
	}

	.iknow_tm_sidebar_3 {
		left: 75px;
		width: 240px;
		top: 75px;
		bottom: 75px;
	}

	.iknow_tm_sidebar_3 .image {
		height: 140px;
	}

	.iknow_tm_sidebar_3 .image .main {
		width: 140px;
		height: 140px;
		bottom: -45px;
	}

	.iknow_tm_sidebar_3.animate .main {
		bottom: 0px;
		width: 100%;
	}

	.iknow_tm_sidebar_3 .menu {
		padding: 0px 35px;
		margin-top: 70px;
	}

	.iknow_tm_sidebar_3 .menu ul li .svg {
		left: 20px;
		width: 23px;
		height: 20px;
		margin-top: 3px;
	}

	.iknow_tm_sidebar_3 .menu ul li span {
		padding-left: 55px;
		font-size: 13px;
	}

	.iknow_tm_sidebar_3 .menu ul li {
		padding: 5px 0px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright .inner {
		height: 75px;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar .topbar_inner {
		height: 75px;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar .social .svg {
		width: 30px !important;
		height: 30px !important;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar .right .social ul li {
		margin-right: 4px;
	}

	.iknow_tm_content_wrapper {
		top: 75px;
		bottom: 75px;
		right: 75px;
		left: 335px;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar {
		left: 75px;
		right: 75px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright {
		left: 75px;
		right: 75px;
		bottom: -22px;
	}

	.iknow_tm_hero_third .content .hello {
		font-size: 23px;
		margin-bottom: 0px;
	}

	.iknow_tm_hero_third .content .name {
		font-size: 60px;
		margin-bottom: 10px;
	}

	.iknow_tm_hero_third .content .text {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.iknow_tm_down_arrow {
		bottom: 5%;
	}

	.iknow_tm_section_new {
		padding: 55px;
	}

	.iknow_tm_mainpart_new {
		top: 75px;
		bottom: 75px;
	}

	.iknow_tm_hero_fourth .content .right {
		padding-left: 40px;
	}

	.iknow_tm_hero_fourth .content {
		padding: 0px 90px;
	}

	.iknow_tm_hero_fourth .content .left img {
		max-width: 300px;
		max-height: 300px;
	}

	.iknow_tm_hero_fourth .content .right .hello {
		font-size: 23px;
		margin-bottom: 0px;
	}

	.iknow_tm_hero_fourth .content .right .name {
		font-size: 60px;
		margin-bottom: 10px;
	}

	.iknow_tm_hero_fourth .content .right .text {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar.smaller {
		left: 15%;
		right: 15%;
	}

	.iknow_tm_mainpart_new_2 {
		top: 75px;
	}

	.iknow_tm_extra_demo_2 .top_shape {
		height: 75px;
	}

	.iknow_tm_hero_fifth .avatar {
		width: 110px;
		height: 110px;
		margin-bottom: 20px;
	}

	.iknow_tm_hero_fifth .hello {
		font-size: 23px;
		margin-bottom: 0px;
	}

	.iknow_tm_hero_fifth .name {
		font-size: 60px;
		margin-bottom: 10px;
	}

	.iknow_tm_hero_fifth .text {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.iknow_tm_hero_fifth .sign {
		max-width: 110px;
		max-height: 70px;
	}

	.iknow_tm_extra_demo_2 .iknow_tm_topbar .topbar_inner {
		height: 75px;
	}

	.iknow_tm_mainpart_new_2 .social_list ul li .svg {
		width: 35px;
		height: 35px;
	}

	.iknow_tm_mainpart_new_2 .social_list ul li {
		margin-bottom: 2px;
	}

	.iknow_tm_mainpart_new_2 .main_menu ul li .svg {
		width: 20px;
		height: 20px;
	}

	.iknow_tm_mainpart_new_2 .main_menu ul li span {
		font-size: 13px;
	}

	.iknow_tm_mainpart_new_2 .main_menu ul li {
		width: 50px;
		height: 50px;
		padding: 15px;
		margin-bottom: 4px;
	}

	.iknow_tm_mainpart_new_2 .main_menu ul li.entered span,
	.iknow_tm_mainpart_new_2 .main_menu ul li.current span {
		left: 32px;
	}

	.intro_title img {
		max-width: 120px;
	}

	.iknow_tm_intro .filter ul li a {
		font-size: 16px;
	}

	.iknow_tm_intro .filter {
		margin-bottom: 30px;
	}

	.iknow_tm_intro .demo ul li .list_inner .in:first-child {
		margin-right: 20px;
	}

	.iknow_tm_intro .demo ul li .list_inner .in:last-child {
		margin-left: 20px;
	}

	.iknow_tm_intro .demo ul li h3 {
		font-size: 14px;
	}

	.intro_title {
		margin-bottom: 70px;
	}
}

@media (max-width: 1040px) {
	.iknow_tm_mobile_menu {
		display: block;
	}

	.iknow_tm_topbar.onepage {
		display: none;
	}

	.iknow_tm_extra_demo_2 .top_shape,
	.iknow_tm_extra_demo_2 .bottom_shape {
		display: none;
	}

	.iknow_tm_sidebar_3 {
		display: none;
	}

	.iknow_tm_content_wrapper {
		left: 10px;
		right: 10px;
		top: 70px;
		bottom: 10px;
	}

	.iknow_tm_section_new {
		margin-bottom: 10px;
		padding: 50px 20px;
	}

	.iknow_tm_hero_third {
		margin-bottom: 10px;
	}

	.iknow_tm_hero_third .content .hello {
		font-size: 23px;
	}

	.iknow_tm_hero_third .content .name {
		font-size: 55px;
		margin-bottom: 13px;
	}

	.iknow_tm_hero_third .content .text {
		font-size: 18px;
	}

	.iknow_tm_hero_fifth .hello {
		font-size: 23px;
	}

	.iknow_tm_hero_fifth .name {
		font-size: 55px;
		margin-bottom: 13px;
	}

	.iknow_tm_hero_fifth .text {
		font-size: 18px;
	}

	.iknow_tm_hero_fifth .sign {
		max-width: 150px;
		max-height: 75px;
	}

	.iknow_tm_extra_demo .top_shape,
	.iknow_tm_extra_demo .bottom_shape {
		display: none;
	}

	.iknow_tm_copyright.onepage .inner {
		height: auto;
	}

	.iknow_tm_copyright.onepage {
		position: relative;
		left: 0px;
		right: 0px;
		padding: 20px 0px;
	}

	.iknow_tm_mainpart_new_2 .main_menu {
		display: none;
	}

	.iknow_tm_mainpart_new_2 .social_list {
		display: none;
	}

	.iknow_tm_mainpart_new_2 {
		top: 70px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.iknow_tm_hero_fifth {
		margin-bottom: 10px;
	}

	.iknow_tm_topbar.smaller {
		left: 10px;
		right: 10px;
	}

	.iknow_tm_mainpart_new {
		left: 10px;
		right: 10px;
		top: 70px;
		bottom: 70px;
	}

	.iknow_tm_extra_demo .iknow_tm_topbar .topbar_inner {
		height: 70px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright.smaller {
		left: 10px;
		right: 10px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright .inner {
		height: auto;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright .inner .left {
		margin-bottom: 1px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright p,
	.iknow_tm_extra_demo .iknow_tm_copyright a {
		font-size: 13px;
	}

	.iknow_tm_sidebar_2 {
		display: none;
	}

	.iknow_tm_fixed_mainpart {
		left: 0px;
	}

	.iknow_tm_topbar .wrapper .menu {
		margin: 0;
		width: 180px;
		right: 0;
		transform: translateY(10px);
		border-radius: 10px;
		position: absolute;
		top: 100%;
		box-shadow: 0px 0px 30px rgb(8 32 93 / 10%);
	}

	.iknow_tm_topbar .wrapper .menu.opened {
		transform: translateY(19px);
	}

	.iknow_tm_topbar .wrapper .menu ul {
		display: flex;
		flex-direction: column;
	}

	.iknow_tm_topbar .wrapper .menu ul li a {
		display: block;
	}

	.iknow_tm_topbar .wrapper .menu .ccc {
		display: none;
	}

	.iknow_tm_topbar .wrapper .menu ul li.active a {
		color: #ff451b;
	}

	.iknow_tm_topbar .wrapper .menu ul li a:hover {
		color: #ff451b;
	}

	.iknow_tm_topbar .wrapper .menu ul li a {
		padding: 6px 15px 5px 15px;
	}

	.iknow_tm_animate_section .section_inner {
		padding: 50px 20px;
	}

	.iknow_tm_hero_fourth .content {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 0px 20px;
	}

	.iknow_tm_hero_fourth .content .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 40px;
	}

	.iknow_tm_hero_fourth .content .right {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_hero_fourth .content .left img {
		max-width: 220px;
		max-height: 220px;
	}

	.iknow_tm_hero_fourth .content .right .hello {
		font-size: 23px;
	}

	.iknow_tm_hero_fourth .content .right .name {
		font-size: 55px;
		margin-bottom: 13px;
	}

	.iknow_tm_hero_fourth .content .right .text {
		font-size: 18px;
	}

	.iknow_tm_content_extra {
		top: 70px;
		bottom: 70px;
		left: 10px;
		right: 10px;
	}

	.iknow_tm_fixed_mainpart .topbar_extra {
		display: none;
	}

	.iknow_tm_fixed_mainpart .extra_copyright {
		height: auto;
		line-height: 1.3;
		padding: 0px;
	}

	.iknow_tm_fixed_mainpart .extra_copyright p,
	.iknow_tm_fixed_mainpart .extra_copyright a {
		font-size: 13px;
	}

	.iknow_tm_hero_extra .hero_content {
		flex-direction: column-reverse;
		padding: 50px 20px;
		text-align: center;
	}

	.iknow_tm_hero_extra .hero_content .right {
		padding: 0px;
		margin-bottom: 40px;
	}

	.iknow_tm_hero_extra .hero_content .right .image {
		max-width: 165px;
		margin: 0px auto;
	}

	.iknow_tm_hero_extra .hero_content .left {
		width: 100%;
		padding: 0px;
	}

	.iknow_tm_hero_extra .hero_content .right .image .box {
		top: -10px !important;
		bottom: 10px !important;
		left: 10px !important;
		right: -10px !important;
	}

	.iknow_tm_hero_extra .hero_content .left .hello {
		font-size: 23px;
	}

	.iknow_tm_hero_extra .hero_content .left .name {
		font-size: 55px;
		margin-bottom: 13px;
	}

	.iknow_tm_hero_extra .hero_content .left .text {
		font-size: 18px;
	}

	.iknow_tm_section_new.contact {
		padding-bottom: 70px;
	}

	.iknow_tm_extra_demo .iknow_tm_copyright {
		bottom: 5px;
	}

	.mouse-cursor {
		display: none;
	}

	.iknow_tm_button a {
		padding: 10px 30px;
		font-size: 14px;
	}

	.iknow_tm_topbar .topbar_inner {
		padding-top: 25px;
	}

	.iknow_tm_topbar .iknow_tm_button a {
		padding: 8px 20px;
		font-size: 13px;
	}

	.iknow_tm_topbar .right .social {
		display: none;
	}

	.container {
		padding: 0px 20px;
	}

	.iknow_tm_hero .main_menu {
		margin-top: 50px;
	}

	.iknow_tm_hero .main_menu ul li {
		width: 100% !important;
		height: auto !important;
		padding: 20px;
	}

	.iknow_tm_hero .main_menu ul li span {
		left: 65px !important;
		font-size: 20px;
	}

	.iknow_tm_hero .main_menu ul li .svg {
		width: 32px;
		height: 32px;
	}

	.iknow_tm_hero .content_inner .main_info {
		min-height: auto;
	}

	.iknow_tm_hero .content_inner .main_info {
		flex-direction: column-reverse;
		align-items: baseline;
	}

	.iknow_tm_hero .right {
		padding-left: 0px;
		width: 100%;
	}

	.iknow_tm_hero .right .image .main:before {
		display: none;
	}

	.iknow_tm_hero .left {
		width: 100%;
		margin-top: 40px;
	}

	.iknow_tm_hero .name {
		font-size: 35px;
	}

	.iknow_tm_hero .text {
		font-size: 20px;
	}

	.iknow_tm_hero_second .left {
		width: 100%;
		margin-top: 40px;
	}

	.iknow_tm_hero_second .right {
		width: 100%;
	}

	.iknow_tm_hero_second .main_info {
		flex-direction: column-reverse;
		align-items: baseline;
		padding-top: 150px;
	}

	.iknow_tm_hero_second .right .image span {
		display: none;
	}

	.iknow_tm_hero_second .right .image {
		width: auto;
		height: auto;
		min-width: 100%;
		min-height: 350px;
		border-radius: 0px;
	}

	.iknow_tm_hero_second .right .image .main {
		border-radius: 15px;
	}

	.iknow_tm_hero_second .name {
		font-size: 35px;
	}

	.iknow_tm_hero_second .text {
		font-size: 20px;
	}

	.iknow_tm_hero_second .social ul li .svg {
		width: 35px;
		height: 35px;
	}

	.iknow_tm_hero_second .text {
		margin-bottom: 25px;
	}

	.iknow_tm_extra_menu {
		margin-top: -100px;
	}

	.iknow_tm_extra_menu .list_in .center span {
		font-size: 18px;
	}

	.iknow_tm_extra_menu .menu_list .unordered .unorderest_li {
		margin-bottom: 10px;
	}

	.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .details_wrapper {
		margin-top: 10px;
	}

	.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .list_in {
		height: 60px;
	}

	.iknow_tm_extra_menu .list_in .center {
		height: 60px;
		line-height: 60px;
		padding: 0px 20px 0px 70px;
		margin: 0px;
	}

	.iknow_tm_extra_menu .list_in .list_icon {
		width: 60px;
		min-width: 60px;
		height: 60px;
		position: absolute;
		left: 0px;
	}

	.iknow_tm_extra_menu .list_in .down_icon {
		display: none;
	}

	.iknow_tm_extra_menu .list_in .list_icon .svg {
		width: 25px;
		height: 25px;
	}

	.iknow_tm_extra_menu .list_in .down_icon .svg {
		width: 15px;
		height: 15px;
	}

	.iknow_tm_video .circle {
		width: 60px;
		height: 60px;
	}

	.iknow_tm_video .play {
		font-size: 22px;
		padding-left: 20px;
	}

	.iknow_tm_mainpart.opened {
		padding: 70px 30px;
	}

	.iknow_tm_about {
		flex-direction: column-reverse;
	}

	.iknow_tm_about .right {
		padding-left: 0px;
		width: 100%;
		top: 0px;
	}

	.iknow_tm_main_title {
		max-width: 100%;
	}

	.iknow_tm_main_title h3 {
		font-size: 40px;
	}

	.iknow_tm_about .left {
		width: 100%;
	}

	.iknow_tm_about .left .image img {
		display: block;
		/* display: none; */
	}

	.iknow_tm_about .left .details {
		margin-top: 0px;
	}

	.iknow_tm_about .left .image .main {
		display: none;
	}

	.iknow_tm_about .left .left_inner {
		display: block;
	}

	.iknow_tm_about .left .details {
		left: 0px;
	}

	.iknow_tm_resume .iknow_tm_main_title {
		margin-bottom: 65px;
	}

	.iknow_tm_resume .resume_inner {
		flex-direction: column;
	}

	.iknow_tm_resume .left {
		width: 100%;
		padding-right: 0px;
	}

	.iknow_tm_resume .right {
		width: 100%;
		padding-left: 0px;
		margin-top: 55px;
	}

	.iknow_tm_portfolio .portfolio_list ul li {
		width: 50%;
	}

	.iknow_tm_portfolio .portfolio_filter {
		text-align: left;
	}

	.iknow_tm_services .service_list ul li {
		width: 50%;
	}

	.iknow_tm_news .news_list ul li {
		width: 50%;
	}

	.iknow_tm_contact .wrapper {
		flex-direction: column;
	}

	.iknow_tm_contact .wrapper .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 40px;
	}

	.iknow_tm_contact .wrapper .right {
		width: 100%;
	}

	.iknow_tm_copyright .inner {
		flex-direction: column;
	}

	.iknow_tm_copyright .inner .left {
		margin-bottom: 5px;
	}

	.iknow_tm_copyright .right ul li {
		margin-right: 20px;
	}

	.iknow_tm_extra_menu .menu_list .unordered .unorderest_li .details_wrapper {
		padding: 70px 30px;
	}

	.iknow_tm_fixed_content .container {
		padding: 0px;
	}

	.iknow_tm_fixed_content .infobar {
		display: none;
	}

	.iknow_tm_fixed_content .content_left {
		position: fixed;
		width: auto;
	}

	.iknow_tm_fixed_content .menubar {
		width: 40px;
		padding: 0px;
	}

	.iknow_tm_fixed_content .mainbar {
		border-radius: 10px 0px 0px 10px;
		box-shadow: 3px 3px 20px rgb(59 89 152 / 10%);
		padding: 40px 20px;
	}

	.iknow_tm_fixed_content .menubar ul li {
		width: 40px;
		height: 40px;
		line-height: 40px;
		float: none;
		background-color: #fff;
		padding: 0px;
		margin: 0px 0px 5px 0px;
		border-radius: 0px 7px 7px 0px;
		box-shadow: 3px 3px 20px rgb(59 89 152 / 10%);
	}

	.iknow_tm_fixed_content .menubar ul li .svg {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 20px;
		height: 20px;
	}

	.iknow_tm_fixed_content .menubar ul li span {
		display: none;
	}

	.iknow_tm_fixed_content .content_right {
		width: 100%;
		padding-left: 50px;
		margin-left: 0;
	}

	.iknow_tm_author_info {
		display: block;
	}

	.iknow_tm_button.fixedVersion {
		display: none;
	}

	.simple_shapes .one,
	.simple_shapes .two,
	.simple_shapes .three,
	.simple_shapes .four,
	.simple_shapes .five,
	.simple_shapes .six,
	.simple_shapes .seven,
	.simple_shapes .eight,
	.simple_shapes .nine,
	.simple_shapes .ten,
	.simple_shapes .eleven,
	.simple_shapes .twelve,
	.simple_shapes .thirteen,
	.simple_shapes .fourteen,
	.simple_shapes .fifteen,
	.simple_shapes .sixteen,
	.simple_shapes .seventeen,
	.simple_shapes .eighteen,
	.simple_shapes .nineteen,
	.simple_shapes .twenty {
		display: none;
	}

	.rounded_shapes .one,
	.rounded_shapes .two,
	.rounded_shapes .three,
	.rounded_shapes .four,
	.rounded_shapes .five,
	.rounded_shapes .six,
	.rounded_shapes .seven,
	.rounded_shapes .eight,
	.rounded_shapes .nine,
	.rounded_shapes .ten,
	.rounded_shapes .eleven,
	.rounded_shapes .twelve,
	.rounded_shapes .thirteen,
	.rounded_shapes .fourteen,
	.rounded_shapes .fifteen,
	.rounded_shapes .sixteen,
	.rounded_shapes .seventeen,
	.rounded_shapes .eighteen {
		display: none;
	}
}

@media (max-width: 768px) {
	.iknow_tm_hero_third .content .hello {
		font-size: 21px;
	}

	.iknow_tm_hero_third .content .name {
		font-size: 48px;
		margin-bottom: 10px;
	}

	.iknow_tm_hero_third .content .text {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.iknow_tm_down_arrow {
		bottom: 5%;
	}

	.iknow_tm_hero_fourth .content .right .hello {
		font-size: 21px;
	}

	.iknow_tm_hero_fourth .content .right .name {
		font-size: 48px;
		margin-bottom: 20px;
	}

	.iknow_tm_hero_fourth .content .right .text {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.iknow_tm_hero_extra .hero_content .left .hello {
		font-size: 21px;
	}

	.iknow_tm_hero_extra .hero_content .left .name {
		font-size: 48px;
		margin-bottom: 20px;
	}

	.iknow_tm_hero_extra .hero_content .left .text {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.iknow_tm_topbar .logo img {
		max-width: 90px;
	}

	.iknow_tm_main_title span {
		font-size: 18px;
	}

	.iknow_tm_main_title h3 {
		font-size: 30px;
	}

	.iknow_tm_about .right .bigger_text p {
		font-size: 19px;
	}

	.circular_progress_bar .list_inner:after {
		width: 108px;
		height: 108px;
	}

	.circular_progress_bar .number {
		font-size: 20px;
	}

	.circular_progress_bar .title {
		max-width: 120px;
	}

	.circular_progress_bar .title h3 {
		font-size: 19px;
	}

	.iknow_tm_resume_title h3 {
		font-size: 25px;
	}

	.iknow_tm_resume_title .shape {
		width: 21px;
		height: 21px;
	}

	.iknow_tm_resume_title .shape:before {
		width: 4px;
		height: 4px;
	}

	.iknow_tm_resume_title h3 {
		padding-left: 33px;
	}

	.iknow_tm_resume .info_list ul li .short .job h3 {
		font-size: 20px;
	}

	.iknow_tm_resume .info_list ul li .short .job span {
		font-size: 18px;
	}

	.iknow_tm_resume .info_list ul li .short .job h3 {
		margin-bottom: 4px;
	}

	.iknow_tm_resume .info_list ul li .short .year span {
		font-size: 18px;
		padding: 5px 30px 4px 30px;
	}

	.progress_inner span.label {
		font-size: 19px;
	}

	.progress_inner {
		margin-bottom: 20px;
	}

	.progress_inner>span {
		margin-bottom: 15px;
	}

	.iknow_tm_portfolio .portfolio_list ul {
		margin: 0px;
	}

	.iknow_tm_portfolio .portfolio_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_portfolio .portfolio_list .details span {
		margin-bottom: 5px;
	}

	.iknow_tm_portfolio .portfolio_list .svg {
		width: 40px;
		height: 40px;
	}

	.iknow_tm_services .service_list ul {
		margin: 0px;
	}

	.iknow_tm_services .service_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_services .service_list ul li .title {
		font-size: 21px;
	}

	.iknow_tm_services .service_list ul li .icon {
		width: 95px;
		height: 95px;
	}

	.iknow_tm_services .service_list ul li .icon .svg {
		width: 35px;
		height: 35px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info h3 {
		font-size: 19px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info h3 {
		margin-bottom: 3px;
	}

	.iknow_tm_testimonials .testimonials_list .text p {
		font-size: 19px;
	}

	.iknow_tm_testimonials .testimonials_list .right .svg {
		width: 45px;
		height: 45px;
	}

	.iknow_tm_testimonials .testimonials_list .list_inner .in {
		padding: 27px 35px 35px 35px;
	}

	.iknow_tm_testimonials .owl-theme .owl-dots .owl-dot span {
		margin: 0px 10px;
	}

	.iknow_tm_news .news_list ul {
		margin: 0px;
	}

	.iknow_tm_news .news_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_news .news_list ul li .details .title a {
		font-size: 19px;
	}

	.iknow_tm_contact .wrapper .right .input_list ul {
		margin: 0px;
	}

	.iknow_tm_contact .wrapper .right .input_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_contact .wrapper .left ul li .list_inner .short h3 {
		font-size: 19px;
		margin-bottom: 8px;
	}

	.iknow_tm_contact .wrapper .left ul li .list_inner .icon {
		width: 80px;
		height: 80px;
		min-width: 80px;
		min-height: 80px;
	}

	.iknow_tm_contact .wrapper .left ul li .list_inner .icon .svg {
		width: 30px;
		height: 30px;
	}

	.iknow_tm_modalbox .box_inner {
		width: 500px;
	}

	.iknow_tm_modalbox .main_details {
		flex-direction: column;
	}

	.iknow_tm_modalbox .main_details .textbox {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 40px;
	}

	.iknow_tm_modalbox .additional_images ul {
		margin: 0px;
	}

	.iknow_tm_modalbox .additional_images ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_modalbox .description_wrap {
		padding: 30px;
	}

	.iknow_tm_copyright.fixed {
		text-align: center;
		padding: 30px 20px;
	}

	.iknow_tm_copyright.fixed .left {
		margin-bottom: 0px;
	}

	.iknow_tm_copyright.fixed .right {
		display: none;
	}

	.iknow_tm_copyright.fixed p {
		font-size: 13px;
	}

	.iknow_tm_copyright.fixed a {
		font-size: 13px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list ul {
		margin: 0px;
	}

	.iknow_tm_fixed_content .iknow_tm_portfolio .portfolio_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_fixed_content .iknow_tm_services .service_list ul {
		margin: 0px;
	}

	.iknow_tm_fixed_content .iknow_tm_services .service_list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.iknow_tm_fixed_content .iknow_tm_news .news_list ul {
		margin: 0px;
	}

	.iknow_tm_fixed_content .iknow_tm_news .news_list ul li {
		width: 100%;
		padding-left: 0px;
	}
}

@media (max-width: 480px) {
	.iknow_tm_modalbox .box_inner {
		/* width: 300px; */
		width: 90%;
	}

	.iknow_tm_resume .info_list ul li .short {
		flex-direction: column;
		align-items: baseline;
	}

	.iknow_tm_resume .info_list ul li .short .job {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 15px;
	}

	.iknow_tm_testimonials .testimonials_list .details .right {
		display: none;
	}

	.iknow_tm_testimonials .testimonials_list .text p {
		font-size: 16px;
	}

	.iknow_tm_testimonials .testimonials_list .details .avatar {
		width: 50px;
		height: 50px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info h3 {
		font-size: 16px;
		margin-bottom: 0px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info span {
		font-size: 14px;
	}

	.iknow_tm_testimonials .testimonials_list .details .info {
		padding-left: 12px;
	}

	.circular_progress_bar .title h3 {
		font-size: 17px;
	}

	.progress_inner span.label {
		font-size: 17px;
	}

	.progress_inner>span {
		margin-bottom: 12px;
	}

	.iknow_tm_news .news_list ul li .details {
		padding: 10px 0px 0px 0px !important;
		background-color: transparent;
		box-shadow: none;
	}

	.iknow_tm_modalbox .close .svg {
		width: 25px;
		height: 25px;
		margin-top: 5px;
		margin-right: 5px;
	}

	.iknow_tm_modalbox .close {
		margin-left: 0px;
		position: sticky;
		/* left: auto; */
		right: 0px;
		top: -35px;
	}

	.iknow_tm_intro .filter ul li {
		margin-right: 10px;
	}

	.iknow_tm_intro .filter ul li a {
		font-size: 14px;
	}

	.iknow_tm_intro .filter {
		margin-bottom: 20px;
	}

	.iknow_tm_intro .demo ul li .list_inner .in:first-child {
		margin-right: 7px;
	}

	.iknow_tm_intro .demo ul li .list_inner .in:last-child {
		margin-left: 7px;
	}

	.iknow_tm_intro .demo ul li h3 {
		font-size: 11px;
	}

	.intro_title img {
		max-width: 90px;
	}

	.intro_title span {
		font-size: 14px;
	}

	.iknow_tm_intro .demo {
		max-width: 90%;
	}

}


/* Contact Forms Submission */
.form-submit-container .loader {
	display: none;
	width: 40px;
	height: 40px;
	margin: 10px auto;
}

.form-submit-container .loader .spinner {
	width: 100%;
	height: 100%;
	border: 4px solid rgba(204, 204, 204, 0.3);
	border-top: 4px solid #ffb324;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	box-sizing: border-box;
}

.form-submit-container .responseMessage {
	display: none;
	padding: 10px;
	margin: 10px 0;
	border-radius: 4px;
	text-align: center;
	font-weight: bold;
}

.form-submit-container .responseMessage.success {
	color: #28a745;
	background-color: #e6ffed;
}

.form-submit-container .responseMessage.error {
	color: #dc3545;
	background-color: #ffebee;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Project Cards */
.project-card {
	background: #5c5d64;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	/* border: 1px solid #334155; */
	height: 100%;
	position: relative;
	cursor: pointer;
}

.project-card:hover {
	transform: translateY(-10px);
	/* box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3); */
	/* border-color: #ffb324; */
}

.project-image-wrapper {
	position: relative;
	overflow: hidden;
	height: 250px;
	background: linear-gradient(135deg, #5c5d64 0%, #334155 100%);
}

.project-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%); */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-overlay i {
	font-size: 3rem;
	color: #ffffff;
	animation: pulse 1.5s infinite;
}

.project-content {
	padding: 2rem;
}

.project-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #f1f5f9;
}

.project-category {
	display: inline-block;
	padding: 0.4rem 1rem;
	/* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
	background: #ffb324;
	color: #ffffff;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.project-description {
	color: #a7afbd;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.project-meta {
	display: flex;
	gap: 1.5rem;
	color: #a7afbd;
	font-size: 0.9rem;
}

.project-meta i {
	color: #ffb324;
	margin-right: 0.5rem;
}

/* Achievement Cards */
.achievement-card {
	background: #5c5d64;
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	/* border: 1px solid #334155; */
	height: 100%;
	position: relative;
	overflow: hidden;
	/* margin: 16px 0 16px 0; */
}

.achievement-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	/* background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%); */
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.achievement-card:hover::before {
	transform: scaleX(1);
}

.achievement-card:hover {
	transform: translateY(-8px);
	/* box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
	border-color: #8b5cf6; */
}

.achievement-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	/* background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); */
	background: #ffb324;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-icon {
	transform: rotate(10deg) scale(1.1);
}

.achievement-icon i {
	font-size: 1.8rem;
	color: #ffffff;
}

.achievement-title {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #f1f5f9;
}

.achievement-organization {
	color: #ffb324;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.achievement-year {
	color: #a7afbd;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.achievement-description {
	color: #a7afbd;
	line-height: 1.6;
}

/* Modal Styling */
.modal-content {
	background: #5c5d64;
	border: 1px solid #334155;
	border-radius: 20px;
}

.modal-header {
	border-bottom: 1px solid #334155;
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.modal-title {
	color: #ffffff;
}

.btn-close {
	filter: invert(1);
}

.modal-body {
	color: #f1f5f9;
}

/* Animations */
/* @keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
} */


@media (min-width: 1041px) and (max-width: 1550px) {
	.iknow_tm_main_title {
		max-width: 100%;
	}

	.iknow_tm_resume .resume_inner {
		flex-direction: column;
		gap: 10px;
	}

	.iknow_tm_about .left {
		width: 100%;
	}

	.iknow_tm_about .right {
		width: 100%;
		padding: 0;
	}

	.iknow_tm_about {
		flex-direction: column;
		gap: 10px;
	}

	.iknow_tm_resume .left {
		width: 100%;
	}

	.iknow_tm_resume .right {
		width: 100%;
	}

	.iknow_tm_services .service_list ul li {
		width: 50%;
	}

	#projects .container>.row>.col-xxl-4 {
		width: 50%;
	}

	#achievements .container>.row>.col-xxl-4 {
		width: 50%;
	}

	.iknow_tm_news .news_list ul li {
		width: 50%;
	}

	.iknow_tm_contact .wrapper {
		flex-direction: column;
		gap: 25px;
	}

	.iknow_tm_contact .wrapper .left {
		width: 100%;
	}

	.iknow_tm_contact .wrapper .right {
		width: 100%;
	}
}

/* Footer Social Media */
/* .footer-social>ul {
	display: flex;
	gap: 10px;
}

.footer-social>ul li a img {
	width: 50px;
	height: 50px;
} */

.footer-social {
	text-align: center;
	margin: 40px 0;
}

.footer-social ul {
	/* list-style: none;
	padding: 0;
	margin: 0; */
	display: flex;
	/* justify-content: center; */
	gap: 18px;
	/* display: flex; */
	/* gap: 10px; */
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: white;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* --- Individual Brand Colors --- */
.footer-social a.instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social a.facebook {
	background: #1877F2;
}

.footer-social a.twitter {
	background: #ffffff;
}

.footer-social a.twitter i {
	color: #000000;
}

.footer-social a.linkedin {
	background: #0A66C2;
}

.footer-social a.wiki {
	background: #636363;
}

.footer-social a:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-social a.instagram:hover {
	box-shadow: 0 0 15px #d6249f;
}

.footer-social a.facebook:hover {
	box-shadow: 0 0 15px #1877F2;
}

.footer-social a.twitter:hover {
	box-shadow: 0 0 15px #000;
}

.footer-social a.linkedin:hover {
	box-shadow: 0 0 15px #0A66C2;
}

.footer-social a.wiki:hover {
	box-shadow: 0 0 15px #636363;
}

/* --- Responsive scaling --- */
@media (max-width: 1040px) {
	.footer-social a {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.iknow_tm_copyright.onepage {
		padding: 0;
	}

	.footer-social {
		margin: 20px 0;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.iknow_tm_hero_third {
		height: 70vh;
	}

	.iknow_tm_hero_third .background {
		height: 75vh;
	}

	.iknow_tm_hero_third .background .overlay {
		height: 68vh;
	}

	.iknow_tm_hero_third .content {
		width: inherit;
		top: 15%;
	}

	.iknow_tm_hero_third .content-right {
		width: inherit;
		top: 60%;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	.iknow_tm_hero_third {
		height: 105vh;
	}

	.iknow_tm_hero_third .background {
		height: 104vh;
	}

	.iknow_tm_hero_third .background .overlay {
		height: 104vh;
	}

	.iknow_tm_hero_third .content {
		width: inherit;
		top: 15%;
	}

	.iknow_tm_hero_third .content-right {
		width: inherit;
		top: 60%;
	}
}

@media (min-width: 390px) and (max-width: 480px) {
	.iknow_tm_hero_third {
		height: 120vh;
	}

	.iknow_tm_hero_third .background {
		height: 120vh;
	}

	.iknow_tm_hero_third .background .overlay {
		height: 120vh;
	}

	.iknow_tm_hero_third .content {
		width: inherit;
		top: 15%;
	}

	.iknow_tm_hero_third .content-right {
		width: inherit;
		top: 60%;
	}
}

@media (min-width: 320px) and (max-width: 389px) {
	.iknow_tm_hero_third {
		height: 87em;
	}

	.iknow_tm_hero_third .background {
		height: 86em;
	}

	.iknow_tm_hero_third .background .overlay {
		height: 86em;
	}

	.iknow_tm_hero_third .content {
		width: inherit;
		top: 15%;
	}

	.iknow_tm_hero_third .content-right {
		width: inherit;
		top: 62%;
	}
}

/* @media (min-width: 320px) and (max-width: 480px) {
	.iknow_tm_hero_third {
		height: 120vh;
	}

	.iknow_tm_hero_third .background {
		height: 120vh;
	}

	.iknow_tm_hero_third .background .overlay {
		height: 120vh;
	}

	.iknow_tm_hero_third .content {
		width: inherit;
		top: 15%;
	}

	.iknow_tm_hero_third .content-right {
		width: inherit;
		top: 60%;
	}
} */