@charset "utf-8";

/*
/*	Copyright (c) 2023 Marketify
/*	Author: Marketify
/*	This file is made for CURRENT TEMPLATE


01)	JARA BASE
02) JARA MOBILE MENU
03) JARA SIDEBAR
04) JARA HOME
05) JARA ABOUT
06) JARA SERVICES
07) JARA PORTFOLIO
08) JARA PARTNERS
09) JARA TESTIMONIALS
10) JARA NEWS
11) JARA CONTACT
12) JARA MODALBOXES
13) JARA ONE PAGE
14) JARA MAGIC CURSOR
15) JARA MEDIA QUERIES (FOR SMALL DEVICES)


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

a {
	text-decoration: none;
}

ul {
	list-style-type: none;
}

:root {
	--main-color: rgba(22, 21, 19, 0.80);
	--heading-color: #161513;
	--font-roboto: 'Roboto', sans-serif;
	--font-syne: 'Syne', sans-serif;
	--font-montserrat: 'Montserrat', sans-serif;
	;
	--main-gradient: linear-gradient(270deg, #6C466B 0%, #6C466B 50.91%, #6C466B 100%);

}

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}

body {
	font-family: var(--font-roboto);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: var(--main-color);
	overflow-x: hidden;
}

svg {
	fill: currentcolor;
	width: 15px;
	height: 15px;
}

img.svg {
	width: 15px;
	height: 15px;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: rgba(85, 82, 124, .6);
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: rgba(85, 82, 124, .6);
	opacity: 1;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: rgba(85, 82, 124, .6);
	opacity: 1;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: rgba(85, 82, 124, .6);
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: rgba(85, 82, 124, .6);
}

::placeholder {
	/* Most modern browsers support this now. */
	color: rgba(85, 82, 124, .6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	font-family: var(--font-montserrat);
	color: var(--heading-color);
	font-variant-numeric: lining-nums proportional-nums;
}

h1 {
	font-size: 45px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

.jara_tm_all_wrap {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.jara_tm_all_wrap,
.jara_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+ */
}

.jara_tm_section {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	
}
#about {
	display: flex;
		flex-direction: column;
		align-items: center;
}

.jara_tm_section iframe {
	width: 100%;
	height: 350px;
}

.whatsapp-frame-audio iframe {
	height: auto;
}

#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%;
	}
}


.container {
	max-width: 1210px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	padding: 0px 20px;
	position: relative;
	clear: both;
}

.container-about-professional {
	max-width: 100%;
	padding: 0 100px;
}


/*---------------------------------------------------*/
/*	02) JARA MOBILE MENU
/*---------------------------------------------------*/

.jara_tm_mobile_menu {
	width: 100%;
	height: auto;

	top: -200px;
	left: 0px;
	display: none;
	z-index: 10;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_mobile_menu {
	top: 0px;
}

.jara_tm_mobile_menu .mobile_menu_inner {
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 10px 20px 10px 20px;
	position: absolute;
	z-index: 999;
}

.jara_tm_mobile_menu .mobile_in {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 30px;
}

.jara_tm_mobile_menu .mobile_in .logo img {
	max-width: 90px;


}

.jara_tm_mobile_menu .trigger {
	line-height: 0;
}

.jara_tm_mobile_menu .dropdown {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: transparent;
	display: none;
}

.jara_tm_mobile_menu .dropdown .dropdown_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 20px;
	margin-top: 150px;
	position: fixed;
	z-index: 1000;
}

.jara_tm_mobile_menu .dropdown .dropdown_inner>ul {
	margin: 0px;
	list-style-type: none;
}

.jara_tm_mobile_menu .dropdown .dropdown_inner>ul>li {
	margin: 0px;
	float: left;
	width: 100%;
}

.jara_tm_mobile_menu .dropdown .dropdown_inner>ul>li a {
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 0px 0px;
	font-family: var(--font-syne);
	font-weight: 500;
}

.jara_tm_mobile_menu .hamburger-inner,
.jara_tm_mobile_menu .hamburger-inner:after,
.jara_tm_mobile_menu .hamburger-inner:before {
	width: 30px;
	height: 2px;
	background-color: #000;
}

.jara_tm_mobile_menu .hamburger.is-active .hamburger-inner,
.jara_tm_mobile_menu .hamburger.is-active .hamburger-inner:after,
.jara_tm_mobile_menu .hamburger.is-active .hamburger-inner:before {
	background-color: #000;
}

.jara_tm_mobile_menu .hamburger-box {
	width: 30px;
}

.jara_tm_mobile_menu .hamburger {
	padding: 0px;
}

.jara_tm_mobile_menu .social {
	width: 100%;
	float: left;
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding-top: 30px;
	margin-top: 30px;
}

.jara_tm_mobile_menu .social ul {
	margin: 0px;
	padding: 0px;
}

.jara_tm_mobile_menu .social ul li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.jara_tm_mobile_menu .social ul li:last-child {
	margin-right: 0px;
}

.jara_tm_mobile_menu .social ul li a {
	text-decoration: none;
	color: #000;
}

/*---------------------------------------------------*/
/*	03) JARA HEADER
/*---------------------------------------------------*/

.jara_tm_header {
	top: -200px;
	left: 0px;
	right: 0px;
	z-index: 10;
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: transparent;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 10px 100px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_header {
	top: 0px;
}

.jara_tm_header .logo a {
	display: inline-block;
}

.jara_tm_header .logo img {
	max-width: 130px;
	padding-top: 40px;
}

.jara_tm_header .menu ul {
	margin: 0px;
	padding: 0px;
}

.jara_tm_header .menu ul li {
	margin: 0px 75px 0px 0px;
	display: inline-block;
}

.jara_tm_header .menu ul li:last-child {
	margin-right: 0px;
}

.jara_tm_header .menu ul li a {
	text-decoration: none;
	font-size: 20px;
	color: #fff;
	display: inline-block;
	padding: 30px 0px;
	font-family: var(--font-syne);
	font-weight: 500;
}

.jara_tm_header .social {
	padding-top: 30px;
}

.jara_tm_header .social ul {
	margin: 0px;
	padding: 0px;
	font-size: 20px;

}

.jara_tm_header .social ul li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.jara_tm_header .social ul li:last-child {
	margin-right: 0px;
}

.jara_tm_header .social ul li a {
	text-decoration: none;
	color: #fff;
}

/*---------------------------------------------------*/
/*	04) JARA HERO
/*---------------------------------------------------*/

.btn-first-video {
	margin: 40px 0px 40px 0px;
}

.cont-banner {
	width: 70% !important;
}

.jara_tm_hero {
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;

}

.title-atuations {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-atuations h3 {
	font-family: kanit, sans-serif;
	font-weight: 100;
	color: #6C466B;
	font-size: 62px;
}


.first-container {
	background-image: url('../img/about/Banner.png');
	background-size: cover;
	background-position: left;

}

.jara_tm_hero .content {
	width: 100%;
	height: 700px;
	display: flex;
	align-items: center;
	padding-top: 150px;
	justify-content: flex-end;
}

.jara_tm_hero .left {
	width: 50%;
	opacity: 0;
	transform: translateX(-30px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_hero .left {
	transition-delay: .5s;
	opacity: 1;
	transform: translateX(0);
	
	
}

.jara_tm_hero .right {
	width: 50%;
	opacity: 0;
	transform: translateX(30px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_hero .right {
	transition-delay: .5s;
	opacity: 1;
	transform: translateX(0);
}

.jara_tm_hero .right .in {
	display: block;
	position: relative;
	float: right;
}

.jara_tm_hero .right .in>img {
	max-height: 650px;
	/*max-width: 550px;*/
	border-radius: 5%;
}

.jara_tm_hero .hello {
	width: 100%;
	float: left;
	position: relative;
	margin-bottom: 6px;
}

.jara_tm_hero .hello span {
	font-family: var(--font-syne);
	font-weight: 700;
	color: var(--heading-color);
	font-size: 20px;
	line-height: 26px;
	padding-left: 50px;
}

.jara_tm_hero .hello .svg {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
}

.jara_tm_hero .title {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.about-info-dra {
	margin-top: 20px;
}



/*.jara_tm_hero .title h2 {
	color: #fff;
	font-family: Syne;
	font-size: 80px;
	font-style: italic;
	font-weight: 700;
	line-height: 75px;
	font-family: kanit, sans-serif;
}*/

.jara_tm_hero .title h2 {
	color: #fff;
	font-family: var(--font-montserrat);
	font-size: 36px;
	font-weight: 700;
	line-height: 50px;
	padding-bottom: 30px;

}

.jara_tm_hero .title h3 {
	background: #fff;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: var(--font-montserrat);
	font-size: 30px;
	font-style: normal;
	font-weight: 600;

}



.jara_tm_hero .title .end-nut p {
	font-family: sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
}

.slogan {
	font-family: var(--font-montserrat);
	font-size: 42px;
	font-weight: 600;
	color: #FFF;
	padding-bottom: 30px;

}

.jara_tm_hero .subtitle {
	width: 100%;
	float: left;
	margin-bottom: 40px;
}

.jara_tm_hero .subtitle p {
	color: var(--heading-color);
	font-variant-numeric: lining-nums proportional-nums;
	font-family: var(--font-syne);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
}

.jara_tm_hero .buttons {
	width: 100%;
	float: left;
	display: flex;
}

.jara_tm_hero .buttons .jara_tm_button {
	width: auto;
}

.jara_tm_button {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_button[data-text-align="left"] {
	text-align: left;
}

.jara_tm_button[data-text-align="center"] {
	text-align: center;
}

.jara_tm_button[data-text-align="right"] {
	text-align: right;
}

.jara_tm_button a {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	display: inline-block;
	padding: 16px 40px;
	background: #406C5B;
	transition: background 0.3s ease-out;
}

.jara_tm_button a:hover {
	background: #fff;
	color: #6C466B;
	border: 1px solid #6C466B;
}

.jara_tm_button_border {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_button_border a {
	text-align: center;
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	padding: 15px 40px;
	color: #000;
	background-color: #26d367;
	border-radius: 5px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_button_border a:hover {
	opacity: 0.7;
}

.jara_tm_hero .jara_tm_button_border {
	width: auto;

}

.jara_tm_hero .play {
	width: 136px;
	height: 136px;
	border-radius: 100%;
	flex-shrink: 0;
	background: #6C466B;
	z-index: 1;
	position: absolute;
	bottom: 0px;
	left: -20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.jara_tm_hero .play .svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	margin-left: 3px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_hero .play .animate_image {
	animation: animCircle 15s infinite linear;
}

@keyframes animCircle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

.jara_tm_full_link {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 5;
}

.jara_tm_hero .play .jara_tm_full_link {
	border-radius: 100%;
}

.tm_partners {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	margin-top: 75px;
	padding-bottom: 50px;
	transform: translateY(30px);
	opacity: 0;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .tm_partners {
	opacity: 1;
	transform: translateY(0);
	width: 100%;
	padding: 0 50px;
	flex-direction: column;
	align-items: center;
}

.tm_partners .text {
	width: 100%;
	text-align: center;
}

.marquee p {
	font-family: var(--font-montserrat);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #6C466B;
}

.tm_partners .text p {
	font-family: var(--font-montserrat);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: #6C466B;
}

.espec-list p {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
}

.color-list1 p {

	color: #AFBAA7;

}

.color-list2 p {
	color: #BA9B99;


}

.color-list3 p {
	color: #406C5B;

}

.color-list4 p {
	color: #6C466B;

}



.tm_partners .list {
	width: 85%;
	overflow: hidden;
	position: relative;
}

.tm_partners .list:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 250px;
	z-index: 2;
	background: rgb(243, 243, 243);
	background: -moz-linear-gradient(90deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	background: linear-gradient(90deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3", endColorstr="#f3f3f3", GradientType=1);
}

.tm_partners .list:after {
	position: absolute;
	content: "";
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 250px;
	z-index: 2;
	background: rgb(243, 243, 243);
	background: -moz-linear-gradient(270deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	background: -webkit-linear-gradient(270deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	background: linear-gradient(270deg, rgba(243, 243, 243, 1) 0%, rgba(243, 243, 243, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f3f3f3", endColorstr="#f3f3f3", GradientType=1);
}

.tm_partners .list ul {
	margin: 0px;
	padding: 0px;
	display: flex;
}

.tm_partners .list ul li {
	margin: 0px 20px 0px 0px;
	padding: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tm_partners .list ul li img {
	max-width: 200px;
	max-height: 100px;
}

.tm_partners .list ul li:last-child {
	margin-right: 0px;
}

/*---------------------------------------------------*/
/*	05) JARA ABOUT
/*---------------------------------------------------*/

.jara_tm_about {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	padding: 140px 0px 145px 0px;
}

.jara_tm_about .about_inner {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.jara_tm_about .experience {
	width: 30%;
}

.jara_tm_about .in {
	filter: drop-shadow(-3px 7px 0px #6C466B);
}

.jara_tm_about .inside {
	width: 100%;
	height: 600px;
	background-image: url("../img/about/about2.jpeg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: initial;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.inside-2 img {
	width: 400px;
	border-radius: 10px;
}

.jara_tm_about .inside h3 {
	transform: rotate(15deg);
	font-size: 120px;
	color: #fff;
	line-height: 124px;
	margin-left: 40px;
}

.jara_tm_about .inside h6 {
	transform: rotate(15deg);
	font-size: 20px;
	color: #fff;
}

.text_gradient {
	position: relative;
}

.text_gradient .inn {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	width: 0px;
	background: var(--main-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-variant-numeric: lining-nums proportional-nums;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;

}

.text_gradient .or {
	opacity: .5;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.text_gradient .or.disable {
	opacity: 0;
}

.inn.waypoint_effect.load {
	width: 100%;
}

.text_gradient {
	display: inline;
	background: var(--main-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(0, 0, 0, 0.1);
	font-variant-numeric: lining-nums proportional-nums;
	background-repeat: no-repeat;
	background-size: 0% 100%;

	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

.text_hover_gradient {
	position: relative;
	display: inline;
	background-image: var(--main-gradient);
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	transition: background-size .5s;
}

.text_hover_gradient:after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
}

.text_hover_gradient:hover,
.jara_tm_header .menu ul li.current a {
	background-size: 100% 2px;
}

.jara_tm_about .text {
	width: 30%;
	padding: 0px 30px;
}

.button-about-person a {
	background: #000 !important;
	color: #fff !important;
}

.jara_tm_about .text p {
	font-size: 18px;
	line-height: 34px;
	font-weight: 300;
	font-family: kanit, sans-serif;
	color: var(--heading-color);
	font-variant-numeric: lining-nums proportional-nums;
	margin-bottom: 30px;
	text-align: justify;
}

.jara_tm_about .counter {
	padding-left: 50px;
}

.jara_tm_about .counter ul {
	margin: 0px;
	padding: 0px;
}

.jara_tm_about .counter ul li {
	margin: 0px 0px 40px 0px;
	width: 100%;
	float: left;
}

.jara_tm_about .counter ul li:last-child {
	margin-right: 0px;
}

.jara_tm_about .counter {
	width: 20%;
}

.jara_tm_about .counter h3 {
	color: var(--heading-text);
	font-family: kanit, sans-serif;
	font-size: 44px;
	font-style: normal;
	font-weight: 400;
	line-height: 54px;
	margin-bottom: 8px;
}

.jara_tm_about .counter .text {
	color: var(--heading-text);
	font-family: var(--font-roboto);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.video-about {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	background: #6C466B;


}

.first-video {
	width: 60%;
	height: 750px;
}

.video-title {
	width: 40%;
	background-color: #6C466B;
	margin: 50px;
	border-radius: 50px;

}

.video-about h2 {
	font-family: kanit, sans-serif;
	font-weight: 100;
	font-size: 48px;
	color: #fff;
}

.jara_tm_services {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background: #E6E1EE;
	padding: 115px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.jara_tm_services .service_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_services .jara_tm_title h3 {
	font-family: kanit, sans-serif;
	font-weight: 100;
	color: #6C466B;
}

.jara_tm_flex_title {
	width: 90%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.jara_tm_title {
	width: 50%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_title p {
	font-size: 20px;
	font-weight: 400;
	padding-left: 10px;

}

.jara_tm_title[data-text-align="left"] {
	text-align: left;
}

.jara_tm_title[data-text-align="center"] {
	text-align: center;
}

.jara_tm_title[data-text-align="right"] {
	text-align: right;
}

.jara_tm_title h3 {
	font-family: kanit, sans-serif;
	font-weight: 100;
	font-size: 42px;
	line-height: 72px;
}

.jara_tm_flex_title .mail a {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	display: inline-block;
	position: relative;
	padding-left: 25px;
}

.jara_tm_flex_title .mail i {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
}

.jara_tm_services .list {
	width: 100%;
	float: left;
	margin-top: 50px;
}

.jara_tm_services .list>ul {
	margin: 0px 0px 0px -30px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap
}

.jara_tm_services .list>ul>li {
	margin: 0px 0px 25px 0px;
	padding-left: 30px;
	width: 50%;
	float: left;
}

.jara_tm_services .list .in {
	position: relative;
	z-index: 1;
}

.jara_tm_services .list .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 50px 30px 65px 30px;
}

.jara_tm_services .list .list_inner:before {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	height: 0px;
	background-color: #fff;
	border-radius: 25px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.jara_tm_services .list>ul>li.waypoint_effect.load .list_inner:before {
	height: 100%;
}

.jara_tm_services .list .icon {
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: var(--main-gradient);
	position: relative;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_services .list>ul>li.waypoint_effect.load .icon {
	transform: translateY(0);
	opacity: 1;
	transition-delay: .5s;
}

.jara_tm_services .list .icon .svg {
	position: absolute;
	top: 65%;
	left: 54%;
	transform: translate3d(-50%, -50%, 0);
	width: 50px;
	height: 50px;
	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;
}

.jara_tm_services .list .list_inner:hover .icon .svg {
	transform: translate3d(-50%, -50%, 0) rotate(360deg);
}

.jara_tm_services .list .title {
	width: 100%;
	float: left;
	margin-bottom: 11px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_services .list>ul>li.waypoint_effect.load .title {
	transform: translateY(0);
	opacity: 1;
	transition-delay: .7s;
}

.backround-title {
	display: flex;
	width: 75%;
	height: 50px;
	background-color: #6C466B;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.jara_tm_services .list .title h3 {
	font-size: 20px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}

.jara_tm_services .item ul {
	margin: 0px;
	padding: 0px;
	list-style-type: disc;
	padding-left: 25px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.item p {
	text-align: justify;
	font-weight: 500;
}

.jara_tm_services .list>ul>li.waypoint_effect.load .item ul {
	transform: translateY(0);
	opacity: 1;
	transition-delay: .9s;
}

.others-atuations {
	display: flex;
	flex-direction: column;
	width: 400px;
	height: 200px;
	background-color: #406C5B;
	border-radius: 0 25px 0 0;
	margin-top: 50px;
	padding: 40px 20px;
	clear: both;
	float: left;
	justify-content: space-around;

}

.others-atuations h2 {
	font-family: kanit, sans-serif;
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 200;
	color: #fff;

}

.desc-others-atuations h2 {
	margin-top: 30px;
	font-size: 22px;
	line-height: 2rem;
}

/*---------------------------------------------------*/
/*	07) JARA PORTFOLIO
/*---------------------------------------------------*/

.jara_tm_portfolio {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 117px 0px 140px 0px;
}

.jara_tm_portfolio .portfolio_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_portfolio .portfolio_list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 70px;
}

.jara_tm_portfolio .portfolio_list ul {
	margin: 0px 0px 0px -100px;
	padding: 0px;
}

.jara_tm_portfolio .portfolio_list ul li {
	margin: 0px 0px 48px 0px;
	padding-left: 100px;
	width: 50%;
	float: left;
}

.jara_tm_portfolio .portfolio_list ul li:nth-child(2) {
	margin-top: -227px;
}

.jara_tm_portfolio .portfolio_list ul li:nth-child(2) .image {
	max-width: 81% !important;
}

.jara_tm_portfolio .portfolio_list ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.jara_tm_portfolio .portfolio_list ul li .image {
	position: relative;
	overflow: hidden;
}

.jara_tm_portfolio .portfolio_list ul li .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.jara_tm_portfolio .portfolio_list ul li .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translateZ(0);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_portfolio .portfolio_list ul li .image:hover .main {
	transform: scale(1.1) translateZ(0);
}

.jara_tm_portfolio .portfolio_list ul li .overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #fff;
	z-index: 6;
	transition: 0.5s ease-in-out;
}

.jara_tm_portfolio .portfolio_list ul li.waypoint_effect.load .overlay {
	left: 100%;
}

.jara_tm_portfolio .portfolio_list ul li .title {
	margin-top: 18px;
	overflow: hidden;
	display: inline-block;
}

.jara_tm_portfolio .portfolio_list ul li .title h3 {
	font-size: 20px;
	color: var(--heading-color);
}

.jara_tm_portfolio .portfolio_list ul li .title a {
	color: var(--heading-color);
	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;
}

.link_effect:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	background-color: #fff;
	transition: .5s ease-in-out;
}

.jara_tm_portfolio .portfolio_list ul li.waypoint_effect.load .title .link_effect:before {
	left: 100%;
}

/*---------------------------------------------------*/
/*	08) JARA PROCESS
/*---------------------------------------------------*/

.jara_tm_process {
	display: flex;
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-image: url("../img/process/background1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;

}

.jara_tm_process2 {
	display: flex;
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fde2e1;
	position: relative;

}

.process-image {
	width: 60%;

	background-image: url(../img/about/about3.jpeg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	float: right;
}

.title-whats h3 {
	color: #046162;
	width: 100%;
	font-size: 54px !important;

}

.conversation {
	padding: 10px 10px 5px 10px;
	background-color: #e4fec9;
	border-radius: 8px;
	display: flex;
	height: auto;
	width: 400px;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

.hour-whats {
	padding-top: 25px;
	padding-right: 10px;
}

.conversation img {
	height: 15px;
	margin-top: 20px;
}

.hours-check {
	display: flex;
	width: 80px;
	justify-content: end;
	align-items: center;
}

.button-whats {
	display: flex;
	width: 400px;
	background: #25cc63;
	border-radius: 10px;
	height: 70px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.button-whats a {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}

.button-whats:hover {
	background: #046162;
}

.jara_tm_process .process_inner {
	display: flex;
	width: 90%;
	height: auto;
	clear: both;
	float: left;
	flex-direction: column;
	padding-left: 100px;
	padding-top: 50px;
}

.jara_tm_process2 .process_inner {
	display: flex;
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	flex-direction: column;
	padding: 50px;
}


.title-implante h3 {
	font-family: var(--font-montserrat);
	font-size: 48px;
	font-weight: 600;
	color: #6C466B;
	/* padding: 0 50px; */
}

.description-implante {
	display: flex;
	padding: 50px;
	justify-content: space-between;
}

.description-implante img {
	padding-top: 10px;
}

.description-implante p {
	font-family: var(--font-montserrat);
	font-weight: 600;
	font-size: 16px;
	color: #6C466B;
	padding-right: 50px;
	text-align: justify;
	width: 100%;
	margin-top: 80px;
}

.passo-a-passo {
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.jara_tm_process .list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 50px;
	padding-right: 50px !important;

}

.jara_tm_process2 .list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 50px;
	padding: 0 50px;

}

.jara_tm_process .list ul {
	margin: 0px 0px 0px -30px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.jara_tm_process2 .list ul {
	margin: 0px 0px 0px -30px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.jara_tm_process .list ul li {
	margin: 0px 0px 30px 0px;
	width: 33.3333%;
	padding-left: 30px;
	float: left;
}

.jara_tm_process2 .list ul li {
	margin: 0px 0px 30px 0px;
	width: 33.3333%;
	padding-left: 30px;
	float: left;
}

.jara_tm_process .list .list_inner .in {
	position: relative;
	z-index: 1;
}

.jara_tm_process2 .list .list_inner .in {
	position: relative;
	z-index: 1;
}



.jara_tm_process .list .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 35px 30px;
}

.jara_tm_process2 .list .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	padding: 35px 30px;
}

.jara_tm_process .list .list_inner:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	height: 0px;
	background-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;
}

.jara_tm_process2 .list .list_inner:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	right: 0px;
	height: 0px;
	background-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;
}

.jara_tm_process .list ul li.waypoint_effect.load .list_inner:before {
	height: 100%;
}

.jara_tm_process2 .list ul li.waypoint_effect.load .list_inner:before {
	height: 100%;
	border-radius: 25px;
}

.jara_tm_process .list .step {
	color: var(--heading-text-);
	font-size: 18px;
	font-weight: 500;
	display: block;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process2 .list .step {
	color: var(--heading-text-);
	font-size: 18px;
	font-weight: 500;
	display: block;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process .list ul li.waypoint_effect.load .step {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process2 .list ul li.waypoint_effect.load .step {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
	color: #6C466B;
	text-align: center;
}

.jara_tm_process .list .icon {
	display: block;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process2 .list .icon {
	display: block;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process .list ul li.waypoint_effect.load .icon {
	transition-delay: .7s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process2 .list ul li.waypoint_effect.load .icon {
	transition-delay: .7s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process .list .icon .svg {
	width: 40px;
	height: 40px;
}

.jara_tm_process2 .list .icon .svg {
	width: 40px;
	height: 40px;
}

.jara_tm_process .list .title {
	font-size: 20px;
	font-family: kanit, sans-serif;
	font-weight: 200;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process2 .list .title {
	font-size: 20px;
	font-family: kanit, sans-serif;
	font-weight: 200;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process .list ul li.waypoint_effect.load .title {
	transition-delay: .9s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process2 .list ul li.waypoint_effect.load .title {
	transition-delay: .9s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process .list .text {
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process2 .list .text {
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_process .list ul li.waypoint_effect.load .text {
	transition-delay: 1.1s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process2 .list ul li.waypoint_effect.load .text {
	transition-delay: 1.1s;
	opacity: 1;
	transform: translateY(0);
	text-align: justify;
}

.jara_tm_process .jara_tm_button_border {
	text-align: center;
}

.jara_tm_process2 .jara_tm_button_border {
	text-align: center;
}

.jara_tm_process .jara_tm_button_border.waypoint_effect.load {
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process2 .jara_tm_button_border.waypoint_effect.load {
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_process .imagebox {
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 200px;
}

.jara_tm_process2 .imagebox {
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	width: 200px;
}

.jara_tm_process .imagebox .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.jara_tm_process2 .imagebox .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.box-content-implante {
	max-width: 100%;
}

/*---------------------------------------------------*/
/*	09) JARA TESTIMONIALS
/*---------------------------------------------------*/

.testimonials-area {
	max-width: 100%;
}

.container-testimonial {
	display: flex;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	margin: 50px;
	width: 50%;
}


.jara_tm_testimonials {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background: #406C5B;

}

.jara_tm_testimonials .testimonials_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	justify-content: center;

}

.jara_tm_testimonials .left {
	width: 35%;
}

.jara_tm_testimonials .left img {
	max-height: 600px;
}

.jara_tm_testimonials .right {
	width: 65%;
	padding-left: 20px;
	padding-right: 60px;
}

.jara_tm_testimonials .text {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.jara_tm_testimonials .text p {
	color: #6e6e6e;
	font-family: kanit, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}

.jara_tm_testimonials .extra {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.jara_tm_testimonials .extra h3 {
	font-size: 20px;
	color: #6e6e6e;
}

.jara_tm_testimonials .extra span {
	color: #fff;
	font-size: 14px;
}

.jara_tm_testimonials .extra .svg {
	width: 36px;
	height: 36px;
}

/*---------------------------------------------------*/
/*	10) JARA PRICING
/*---------------------------------------------------*/

.jara_tm_pricing {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 115px 0px 0px 0px;
}

.jara_tm_pricing .list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 45px;
}

.jara_tm_pricing .list ul {
	margin: 0px 0px 0px -30px;
}

.jara_tm_pricing .list ul li {
	margin: 0px 0px 30px 0px;
	padding-left: 30px;
	width: 33.3333%;
	float: left;
}

.jara_tm_pricing .list ul li .list_inner .in {
	position: relative;
	z-index: 1;
}

.jara_tm_pricing .list ul li .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
	text-align: center;
	padding: 50px;
}

.jara_tm_pricing .list ul li .list_inner:before {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	height: 0px;
	background-color: #eee;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_pricing .list ul li.waypoint_effect.load .list_inner:before {
	height: 100%;
}

.jara_tm_pricing .list ul li:nth-child(1) .list_inner:before {
	background-color: #E9F0F5;
}

.jara_tm_pricing .list ul li:nth-child(2) .list_inner:before {
	background-color: #000;
}

.jara_tm_pricing .list ul li:nth-child(3) .list_inner:before {
	background-color: #FFE6E9;
}

.jara_tm_pricing .top {
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_pricing .list ul li.waypoint_effect.load .top {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_pricing .plan {
	font-size: 14px;
	text-transform: uppercase;
	color: var(--heading-color);
	margin-bottom: 10px;
}

.jara_tm_pricing .hour {
	font-size: 20px;
}

.jara_tm_pricing .time {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 10px;
}

.jara_tm_pricing .price {
	font-size: 64px;
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_pricing .list ul li.waypoint_effect.load .price {
	transition-delay: .7s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_pricing .price span {
	font-size: 20px;
}

.jara_tm_pricing ul li.dark .plan,
.jara_tm_pricing ul li.dark .hour,
.jara_tm_pricing ul li.dark .time,
.jara_tm_pricing ul li.dark .price span {
	color: #fff;
}

.jara_tm_pricing ul li .jara_tm_button_border {
	opacity: 0;
	transform: translateY(20px);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_pricing .list ul li.waypoint_effect.load .jara_tm_button_border {
	transition-delay: .9s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_pricing ul li.dark .jara_tm_button_border a {
	border-color: #fff;
	color: #fff;
}

.jara_tm_pricing ul li.dark .jara_tm_button_border a:hover {
	background-color: #fff;
	color: #000;
}

.jara_tm_pricing ul li.dark .gradient {
	font-size: 64px;
	font-weight: 700;
	background: var(--main-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.jara_tm_pricing ul li.dark .price span {
	color: #fff;
}

/*---------------------------------------------------*/
/*	11) JARA NEWS
/*---------------------------------------------------*/

.jara_tm_news {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 90px;
	padding-top: 85px;
}

.jara_tm_news .news_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_news .jara_tm_button_border {
	width: auto;
}

.jara_tm_news .jara_tm_title {
	width: auto;
}

.jara_tm_news .list {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 60px;
}

.jara_tm_news .list ul {
	margin: 0px 0px 0px -30px;
}

.jara_tm_news .list ul li {
	margin: 0px 0px 40px 0px;
	padding-left: 30px;
	width: 50%;
	float: left;
}

.jara_tm_news .list ul li .list_inner {
	width: 100%;
	height: 100%;
	clear: both;
	float: left;
	position: relative;
}

.jara_tm_news .list ul li .image {
	position: relative;
	overflow: hidden;
}

.jara_tm_news .list ul li .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.jara_tm_news .list ul li .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translateZ(0);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_news .list ul li .image:hover .main {
	transform: scale(1.1) translateZ(0);
}

.jara_tm_news .list ul li .details {
	width: 100%;
	float: left;
	margin-top: 25px;
}

.jara_tm_news .list ul li .date {
	background: var(--main-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: 500;
}

.jara_tm_news .list ul li .title a {
	font-size: 32px;
	color: var(--heading-color);
	line-height: 40px;
}

/*---------------------------------------------------*/
/*	12) JARA FOOTER
/*---------------------------------------------------*/

.jara_tm_footer {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #ffffff;
	padding-top: 100px;
}

.jara_tm_footer .footer_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_footer .project {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	background: #000000;
	padding: 90px;
}

.jara_tm_footer .project .left {
	width: 60%;
	padding-right: 50px;
}

.jara_tm_footer .project .left h3 {
	font-size: 64px;
	color: #fff;
	line-height: 72px;
}

.jara_tm_footer .project .right {
	width: 40%;
	padding-left: 50px;
}

.jara_tm_footer .project .text {
	color: #fff;
	margin-bottom: 23px;
	text-align: center;
	font-size: 18px;
}

.jara_tm_footer .call {
	width: 100%;
	float: left;
}

.jara_tm_footer .call a {
	display: inline-block;
	color: var(--heading-color);
	text-align: center;
	font-variant-numeric: lining-nums proportional-nums;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
	background-color: #fff;
	padding: 16px 40px;
	width: 100%;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_footer .call a:hover {
	color: #fff;
	background-color: #AFBAA7;
}

.jara_tm_footer .copyright {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	;
	justify-content: space-between;
	padding: 60px 0px 35px 0px;
}

.jara_tm_footer .year p {
	color: #000000;
}

.footer-link-gaya {
	color: #000000;
	text-decoration: none;
}

.footer-link-gaya:hover {
	color: #6C466B;
}

.jara_tm_footer .logo {
	display: inline-block;
	padding: 0px 30px;
}

.jara_tm_footer .social ul {
	margin: 0px;
	padding: 0px;
	font-size: 20px;
}

.jara_tm_footer .social ul li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.jara_tm_footer .social ul li:last-child {
	margin-right: 0px;
}

.jara_tm_footer .social ul li a {
	text-decoration: none;
	color: #000000;
}

/*---------------------------------------------------*/
/*	13) JARA MODALBOXES
/*---------------------------------------------------*/

.jara_tm_modalbox {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100vh;
	z-index: 20;
	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;
}

.jara_tm_modalbox.opened {
	opacity: 1;
	visibility: visible;
}

.jara_tm_modalbox .box_inner {
	position: absolute;
	top: 70px;
	bottom: 70px;
	width: 968px;
	left: 50%;
	transform: translateX(-53%);
	background-color: #fff;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	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;
}

.jara_tm_modalbox.opened .box_inner {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%);
}

.jara_tm_modalbox .close {
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 30px;
	z-index: 10;
}

.jara_tm_modalbox .close a {
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	border: 2px solid #fff;
	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;
}

.jara_tm_modalbox .close a:hover {
	border-radius: 100%;
}

.jara_tm_modalbox .close a i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.jara_tm_modalbox .description_wrap {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	padding: 50px;
	overflow-y: scroll;
}

.jara_tm_modalbox .description_wrap:before {
	position: fixed;
	content: "";
	top: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 5;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.jara_tm_modalbox .description_wrap:after {
	position: fixed;
	content: "";
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 50px;
	background-color: #fff;
	z-index: 5;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.jara_tm_modalbox .description_wrap::-webkit-scrollbar {
	width: 11px;
}

.jara_tm_modalbox .description_wrap {
	scrollbar-width: thin;
	scrollbar-color: #bbb #fff;
}

.jara_tm_modalbox .description_wrap:-webkit-scrollbar-track {
	background: #fff;
}

.jara_tm_modalbox .description_wrap::-webkit-scrollbar-thumb {
	background-color: #bbb;
	border-radius: 10px;
	border: 3px solid #fff;
}

/*Portfolio*/

.hidden_content_portfolio {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.jara_tm_modalbox .hidden_content_portfolio {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.jara_tm_modalbox .popup_details {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_modalbox .popup_details .top_image {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.jara_tm_modalbox .popup_details .top_image img {
	position: relative;
	min-width: 100%;
	opacity: 0;
}

.jara_tm_modalbox .popup_details .top_image .main {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.jara_tm_modalbox .portfolio_main_title {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.jara_tm_modalbox .portfolio_main_title .category a {
	display: inline-block;
	color: var(--main-color);
	margin-bottom: 7px;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_modalbox .portfolio_main_title .category a:hover {
	color: var(--yellow-color);
}

.jara_tm_modalbox .portfolio_main_title h3 {
	font-size: 25px;
}

.jara_tm_modalbox .main_details {
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	margin-bottom: 60px;
}

.jara_tm_modalbox .main_details .textbox {
	width: 70%;
	padding-right: 40px;
}

.jara_tm_modalbox .main_details .textbox p {
	margin-bottom: 10px;
	opacity: .8;
}

.jara_tm_modalbox .main_details .textbox p:last-child {
	margin-bottom: 0px;
}

.jara_tm_modalbox .main_details .detailbox {
	width: 30%;
	padding-left: 40px;
}

.jara_tm_modalbox .main_details .detailbox>ul {
	margin: 0px;
	list-style-type: none;
}

.jara_tm_modalbox .main_details .detailbox>ul>li {
	margin: 0px 0px 10px 0px;
	width: 100%;
	float: left;
}

.jara_tm_modalbox .main_details .detailbox>ul>li:last-child {
	margin-bottom: 0px;
}

.jara_tm_modalbox .main_details .detailbox>ul>li span:last-child {
	opacity: .8;
}

.jara_tm_modalbox .main_details .detailbox .first {
	font-weight: 700;
	display: block;
}

.jara_tm_modalbox .main_details .detailbox span a {
	text-decoration: none;
	color: var(--main-color);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_modalbox .main_details .detailbox span a:hover {
	color: var(--yellow-color);
}

.jara_tm_modalbox .main_details .detailbox .share {
	margin: 0px;
	list-style-type: none;
	position: relative;
	top: 7px;
}

.jara_tm_modalbox .main_details .detailbox .share li {
	margin: 0px 13px 0px 0px;
	display: inline-block;
}

.jara_tm_modalbox .main_details .detailbox .share li:last-child {
	margin-right: 0px;
}

.jara_tm_modalbox .main_details .detailbox .share li a {
	text-decoration: none;
	color: var(--main-color);

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_modalbox .main_details .detailbox .share li a:hover {
	color: var(--yellow-color);
}

.jara_tm_modalbox .additional_images {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_modalbox .additional_images ul {
	margin: 0px 0px 0px -30px;
	list-style-type: none;
}

.jara_tm_modalbox .additional_images ul li {
	margin: 0px 0px 30px 0px;
	float: left;
	width: 50%;
	padding-left: 30px;
}

.jara_tm_modalbox .additional_images ul li:nth-child(3n-2) {
	width: 100%;
}

.jara_tm_modalbox .additional_images ul li .list_inner {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}

.jara_tm_modalbox .additional_images ul li .my_image {
	position: relative;
}

.jara_tm_modalbox .additional_images ul li .my_image img {
	opacity: 0;
	min-width: 100%;
}

.jara_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;
}

/*Blog*/

.jara_tm_news .news_hidden_details {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -11;
}

.jara_tm_modalbox .news_popup_informations {
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.jara_tm_modalbox .news_popup_informations .image {
	position: relative;
	margin-bottom: 30px;
}

.jara_tm_modalbox .news_popup_informations .image img {
	position: relative;
	opacity: 0;
	min-width: 100%;
}

.jara_tm_modalbox .news_popup_informations .image .main {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.jara_tm_modalbox .news_popup_informations .text {
	width: 100%;
	float: left;
}

.jara_tm_modalbox .news_popup_informations .text p {
	margin-bottom: 10px;
	opacity: .8;
}

.jara_tm_modalbox .news_popup_informations .text p:last-child {
	margin-bottom: 0px;
}

.jara_tm_modalbox .meta {
	width: 100%;
	float: left;
}

.jara_tm_modalbox .meta span {
	background: var(--main-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: 500;
}

.jara_tm_modalbox .news_popup_informations .title {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}

.jara_tm_modalbox .news_popup_informations .title h3 {
	font-size: 25px;
}

/*---------------------------------------------------*/
/*	14) JARA PORTFOLIO PAGE
/*---------------------------------------------------*/

.jara_tm_portfolio_page {
	width: 100%;
	float: left;
	transform: translateY(30px);
	opacity: 0;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_portfolio_page {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_portfolio_page .jara_tm_title {
	width: auto;
}

.jara_tm_portfolio_page .jara_tm_portfolio .portfolio_list ul li:nth-child(2) {
	margin-top: 0px;
}

.jara_tm_portfolio_page .jara_tm_portfolio .portfolio_list ul li:nth-child(2) .image {
	max-width: 100% !important;
}

.jara_tm_portfolio_page .jara_tm_portfolio {
	padding-top: 0px;
	margin-top: 220px;
	padding-bottom: 100px;
}

.portfolio_filter ul {
	margin: 0px;
	padding: 0px;
}

.portfolio_filter ul li {
	display: inline-block;
	margin: 0px 20px 0px 10px;
}

.portfolio_filter ul li:last-child {
	margin-right: 0px;
}

.portfolio_filter ul li a {
	color: var(--heading-color);
	font-family: var(--font-syne);
}

/*---------------------------------------------------*/
/*	15) JARA BLOG PAGE
/*---------------------------------------------------*/

.jara_tm_blog_page {
	width: 100%;
	float: left;
	transform: translateY(30px);
	opacity: 0;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.jara_tm_all_wrap.ready .jara_tm_blog_page {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
}

.jara_tm_blog_page .jara_tm_news {
	padding-top: 0px;
	margin-top: 220px;
}

.jara_tm_blog_page .jara_tm_news .list ul {
	margin-left: -100px;
}

.jara_tm_blog_page .jara_tm_news .list ul li {
	padding-left: 100px;
	margin-bottom: 50px;
}

/*---------------------------------------------------*/
/*	16) JARA MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (min-width: 1600px) {
	.jara_tm_process2 .process_inner {
		padding: 50px 200px;
	}
}

@media (max-width: 1600px) {
	body {
		font-size: 16px;
		line-height: 30px;
	}

	.container {
		max-width: 1140px;
	}

	.container-about-professional {
		max-width: 100%;
	}

	.jara_tm_header .logo img {
		padding-top: 30px;
	}

	.jara_tm_header .social {
		padding-top: 20px;
	}

	.jara_tm_header .menu ul li {
		margin-right: 60px;
	}

	.jara_tm_header .menu ul li a {
		padding: 20px 0px;
	}

	.jara_tm_hero .title h2 {
		font-size: 70px;
		line-height: 70px;
	}

	.jara_tm_hero .title h3 {
		font-size: 40px;
		line-height: 50px;
	}

	.jara_tm_hero .subtitle p {
		font-size: 24px;
		line-height: 24px;
	}

	.jara_tm_button a {
		padding: 10px 32px;
	}

	.jara_tm_button_border a {
		padding: 9px 32px;
	}

	.jara_tm_hero .subtitle {
		margin-bottom: 30px;
	}

	.jara_tm_hero .content {
		padding-top: 100px;
	}

	.jara_tm_hero .right .in>img {
		max-height: 600px;
	}

	.jara_tm_hero .right .in {
		float: left;
	}

	.jara_tm_all_wrap.ready .jara_tm_hero .right {
		padding-left: 60px;
	}

	.jara_tm_hero .play {
		width: 136px;
		height: 136px;
	}

	.jara_tm_hero .play .svg {
		width: 20px;
		height: 20px;
	}

	.tm_partners {
		margin-top: 50px;
	}

	.tm_partners .text p {
		font-size: 22px;
		line-height: 20px;
	}

	.jara_tm_about .text p {
		font-size: 18px;
		line-height: 30px;
	}

	.jara_tm_about .counter ul li {
		margin-bottom: 30px;
	}

	.jara_tm_about .counter h3 {
		font-size: 40px;
		line-height: 45px;
	}

	.jara_tm_title h3 {
		font-size: 55px;
		line-height: 62px;
	}

	.jara_tm_services .list .title h3 {
		font-size: 18px;
	}

	.jara_tm_services .list .list_inner {
		padding-bottom: 50px;
	}

	.jara_tm_testimonials .text p {
		font-size: 14px;
		line-height: 20px;
		padding-left: 20px;
	}

	.jara_tm_testimonials .left img {
		width: 100%;
	}

	.jara_tm_testimonials .right {
		width: 100%;
		padding: 10px;
	}

	.container-testimonial {
		flex-direction: column;
		align-items: center;

	}

	.jara_tm_testimonials .extra {
		justify-content: center;
	}

	.jara_tm_testimonials .text {
		margin-bottom: 35px;
	}

	.jara_tm_modalbox .box_inner {
		width: 800px;
	}

	.jara_tm_modalbox .description_wrap {
		padding: 40px;
	}

	.jara_tm_modalbox .description_wrap:before {
		height: 40px;
	}

	.jara_tm_modalbox .description_wrap:after {
		height: 40px;
	}

	.jara_tm_modalbox .close {
		margin-left: 20px;
	}

	.jara_tm_process .process_inner {
		width: 100%;
	}


}



@media (max-width: 1040px) {
	.process-image {
		width: 60%;
	}

	.jara_tm_process .list .title {
		font-size: 16px !important;
	}
}


@media (max-width: 1040px) {
	.jara_tm_header {
		display: none;
	}

	.whatsapp-frame-audio iframe {
		height: auto !important;
	}

	.jara_tm_mobile_menu {
		display: block;
	}

	.mouse-cursor {
		display: none;
	}

	.jara_tm_hero .content {
		flex-direction: column-reverse;
		margin-top: 350px;
		align-items: flex-end;
		margin-left: 200px;
	}

	.jara_tm_hero .left {
		width: 100%;
	}

	.jara_tm_hero .hello span {
		font-size: 18px;
		padding-left: 45px;
	}

	.jara_tm_hero .hello .svg {
		width: 35px;
		height: 35px;
	}

	.jara_tm_hero .title h2 {
		font-size: 50px;
		line-height: 55px;
	}

	.jara_tm_hero .title h3 {
		font-size: 32px;
		line-height: 40px;
	}

	.jara_tm_hero .subtitle p {
		font-size: 21px;
		line-height: 30px;
	}

	/*.jara_tm_all_wrap.ready .jara_tm_hero .right{padding-left: 0px;}*/
	.tm_partners {
		margin-top: 50px;
	}

	.tm_partners .list {
		width: 100%;
	}

	.tm_partners .list:after {
		width: 50px;
	}

	.tm_partners .list:before {
		width: 50px;
	}

	.jara_tm_hero .right {
		width: 100%;
		margin-bottom: 60px;
		padding-top: 20px;
	}

	.jara_tm_hero .right .in {
		float: left;
	}

	.jara_tm_hero .right .in>img {
		max-width: 350px;
		max-height: 350px;
	}

	.jara_tm_hero .play .svg {
		width: 14px;
		height: 14px;
	}

	.jara_tm_hero .play {
		width: 100px;
		height: 100px;
	}

	.jara_tm_about .about_inner {
		flex-direction: column;
		align-items: baseline;
	}

	.jara_tm_about .experience {
		width: 100%;
		margin-bottom: 40px;
	}

	.jara_tm_about .inside {
		clip-path: none;
		transform: rotate(0);
		padding: 35px 20px 50px 20px;
	}

	.jara_tm_about .inside h3 {
		transform: rotate(0);
		font-size: 80px;
		line-height: 100px;
		margin-left: 0px;
	}

	.jara_tm_about .inside h6 {
		transform: rotate(0);
	}

	.jara_tm_about .text {
		padding: 0px;
		width: 100%;
		margin-bottom: 40px;
	}

	.jara_tm_about .text p {
		font-size: 16px;
		line-height: 33px;
	}

	.jara_tm_about .counter {
		padding-left: 0px;
		width: 100%;
	}

	.jara_tm_about .counter ul li {
		width: auto;
		display: inline-block;
		margin-right: 20px;
		margin-bottom: 20px;
	}

	.jara_tm_title h3 {
		font-size: 38px;
		line-height: 47px;
	}

	.jara_tm_services .list>ul>li {
		width: 50%;
	}

	.jara_tm_portfolio .portfolio_list ul {
		margin-left: -50px;
	}

	.jara_tm_portfolio .portfolio_list ul li {
		padding-left: 50px;
	}

	.jara_tm_process .imagebox {
		display: none;
	}

	.jara_tm_process .list {
		padding-right: 0px !important;
	}

	.jara_tm_process .list ul li {
		width: 50%;
	}

	.jara_tm_testimonials .testimonials_inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.jara_tm_services .list>ul {
		flex-wrap: nowrap;
	}

	.video-about {
		flex-direction: column;
	}

	.video-about h2 {
		font-size: 32px;
	}

	.video-title {
		width: 100%;
		padding: 40px;
		text-align: center;
	}

	.video-title iframe {
		max-width: 100% !important;
		height: 350px !important;

	}

	.jara_tm_testimonials .left img {
		width: 200px;
		margin-top: 50px;

	}

	.jara_tm_section iframe {
		width: 100%;
		height: 350px;
		
	}


	.jara_tm_testimonials .left {
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.jara_tm_testimonials .right {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_testimonials .text p {
		font-size: 14px;
		line-height: 15px;
	}

	.jara_tm_pricing .list ul li {
		width: 50%;
	}

	.jara_tm_footer .project {
		flex-direction: column;
		align-items: baseline;
		padding: 50px 40px;
	}

	.jara_tm_footer .project .left {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 15px;
	}

	.jara_tm_footer .project .right {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_footer .project .left h3 {
		font-size: 30px;
		line-height: 36px;
		text-align: center;
	}

	.jara_tm_footer .copyright {
		flex-direction: column;
	}

	.jara_tm_footer .copyright .logo {
		padding: 10px 0px;
	}

	.jara_tm_portfolio_page .jara_tm_portfolio {
		margin-top: 155px;
	}

	.jara_tm_blog_page .jara_tm_news {
		margin-top: 155px;
	}

	.jara_tm_modalbox .box_inner {
		width: 600px;
		top: 50px;
		bottom: 50px;
	}

	.jara_tm_modalbox .description_wrap {
		padding: 30px;
	}

	.jara_tm_modalbox .description_wrap:before {
		height: 30px;
	}

	.jara_tm_modalbox .description_wrap:after {
		height: 30px;
	}

	.jara_tm_modalbox .close a {
		width: 30px;
		height: 30px;
	}

	.jara_tm_modalbox .close {
		margin-left: 15px;
	}

	.jara_tm_modalbox .main_details {
		flex-direction: column;
	}

	.jara_tm_modalbox .main_details .textbox {
		width: 100%;
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.jara_tm_modalbox .main_details .detailbox {
		width: 100%;
		padding-left: 0px;
	}
}

@media (max-width: 1400px) {
	.description-implante p {
		font-size: 14px;
		line-height: 1.5rem;
	}

	.jara_tm_all_wrap.ready .tm_partners {
		padding: 0 50px;
		flex-direction: column;
		align-items: center;
	}

	.tm_partners .text {
		text-align: center;
		width: 100%;
	}

	.tm_partners .text p {
		font-size: 22px;
	}

	.description-implante img {
		height: 350px;
	}

	.jara_tm_process2 .list ul li.waypoint_effect.load .text {
		font-size: 14px;
		line-height: 1.5rem;
	}

	.jara_tm_process .list .list_inner {
		padding: 20px;
	}

	.jara_tm_process .list ul li.waypoint_effect.load .text {
		font-size: 14px;
	}

	.jara_tm_process .list .title {
		font-size: 18px;
	}
}

@media (max-width: 1040px) {
	.title-implante h3 {
		text-align: center;
	}

	.description-implante {
		flex-direction: column;
		align-items: center;
	}

	.description-implante p {
		width: 100%;
		padding: 0 0 40px 0;
	}

	.description-implante img {
		width: 500px;
		height: auto;
	}

	.jara_tm_process2 .list {
		display: none;
	}


}

@media (max-width: 768px) {

	.jara_tm_title h3 {
		font-size: 38px;
		text-align: center;
	}

	.jara_tm_flex_title {
		flex-direction: column;
		align-items: baseline;
	}

	.jara_tm_flex_title .jara_tm_title {
		margin-bottom: 20px;
	}

	.jara_tm_services .list>ul {
		margin-left: 0px;
		flex-wrap: wrap;
	}

	.jara_tm_services {
		text-align: center;
	}

	.jara_tm_title {
		width: 100%;
	}

	.jara_tm_process .process_inner {
		padding: 50px 20px;
	}

	.jara_tm_services .list>ul>li {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_title[data-text-align="left"] {
		text-align: left;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.description-implante {
		padding: 30px 0 0 0;
	}

	.jara_tm_process2 .process_inner {
		padding: 20px;
	}

	.jara_tm_process2 .btn-implante {
		padding-top: 30px;
	}

	.title-implante h3 {
		font-size: 28px;
		padding: 20px 0;
	}

	.jara_tm_section iframe {

		height: 250px;
	}

	.others-atuations {
		width: 100%;
		border-radius: 0;
		text-align: left;
	}

	.others-atuations h2 {
		font-size: 22px;
	}

	.desc-others-atuations h2 {
		font-size: 18px;
	}

	.jara_tm_portfolio .portfolio_list ul {
		margin: 0px;
	}

	.jara_tm_portfolio .portfolio_list ul li {
		width: 100%;
		padding-left: 0px;
		margin-bottom: 40px;
	}

	.jara_tm_portfolio .portfolio_list ul li:nth-child(2) {
		margin-top: 0px;
	}

	.jara_tm_portfolio .portfolio_list ul li:nth-child(2) .image {
		max-width: 100% !important;
	}

	.jara_tm_process .list ul {
		margin: 0px;
	}

	.jara_tm_process .list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_pricing .list ul {
		margin: 0px;
	}

	.jara_tm_pricing .list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_news .list ul {
		margin: 0px;
	}

	.jara_tm_news .list ul li {
		width: 100%;
		padding-left: 0px;
	}

	.jara_tm_news .list ul li .title {
		line-height: 1;
	}

	.jara_tm_news .list ul li .title a {
		font-size: 23px;
		line-height: 23px;
	}

	.jara_tm_about .text p {
		font-size: 14px;
		line-height: 20px;
		text-align: justify;
	}

	.jara_tm_about {
		padding-bottom: 115px;
	}

	.jara_tm_testimonials {
		padding-bottom: 130px;
	}

	.jara_tm_modalbox .box_inner {
		width: 300px;
		top: 40px;
		bottom: 40px;
	}

	.jara_tm_modalbox .description_wrap {
		padding: 30px 25px 25px 25px;
	}

	.jara_tm_modalbox .description_wrap:before {
		height: 30px;
	}

	.jara_tm_modalbox .description_wrap:after {
		height: 25px;
	}

	.jara_tm_modalbox .close {
		margin-left: auto;
		left: auto;
		right: 25px;
		top: 15px;
	}

	.jara_tm_modalbox .close a {
		color: #000;
		width: auto;
		height: auto;
		border: none;
		font-size: 20px;
	}

	.jara_tm_modalbox .portfolio_main_title h3 {
		font-size: 19px;
	}

	.jara_tm_modalbox .portfolio_main_title {
		margin-bottom: 15px;
	}

	.jara_tm_modalbox .additional_images ul {
		margin: 0px;
	}

	.jara_tm_modalbox .additional_images ul li {
		width: 100% !important;
		padding-left: 0px;
		margin-bottom: 20px;
	}

	.jara_tm_modalbox .news_popup_informations .title h3 {
		font-size: 19px;
	}

	.jara_tm_modalbox .news_popup_informations .title {
		margin-bottom: 15px;
	}

	.conversation {
		width: 300px;
	}

	.conversation p {
		font-size: 16px;
		font-weight: 600;
	}

	.title-whats h3 {
		font-size: 32px !important;
		text-align: center;
	}

	.button-whats {
		width: 300px;
	}

	.container-about-professional {
		width: 100%;
		margin: 0;
		padding: 40px;
	}

	.form-box-mobile {
		padding: 5px !important;
	}

	.jara_tm_testimonials .testimonials_inner {
		width: 100%;
	}

	.container-testimonial {
		width: 100%;
	}

	.first-video-about {
		height: 350px;
	}

	.jara_tm_about .inside {
		background-position: center;
	}

	.first-container {
		background-image: url(../img/thumbs/Banner-mobile\ 2.png);
		background-size: cover;
		background-position: center;
	}

	.jara_tm_hero .content {
		justify-content: center;
		margin-top: 190px;
		align-items: flex-start;
		margin-left: 5px;
	}


	.title-atuations h3 {
		font-size: 32px;
	}

	.jara_tm_services {
		padding: 40px 0;
	}

	.process-image {
		display: none;
	}

	.first-video {
		width: 100%;
		height: 350px;
	}

	.jara_tm_all_wrap.ready .tm_partners {
		padding: 0 50px;
		flex-direction: column;
		align-items: center;
	}

	.tm_partners .text {
		width: 100%;

	}

	.tm_partners .text p {
		font-size: 22px;

	}


}

.cont-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: auto;
	background: #6c466b;
	margin-left: 100px;
	border-radius: 10px;
	padding: 50px;
}

.banner-2-presente {
	display: none;
}

.presente-area {
	background-color: #fde2e1;
}

.cont-form h2 {
	text-align: center;
    color: #fde2e1;
	padding: 0 50px;
    
}

.cont-form p {
	text-align: center;
    color: #fde2e1;
	padding-bottom: 50px;
	font-size: 18px;
}

.cont-form img {
	opacity: 0.5;
    position: absolute;
    height: 80px;
    right: 9%;
    bottom: 90%;
	
}

.form-control-1 {
	width: 500px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #555555;
	font-weight: 400;
}

.btn-simulator {
	color: #6c466b;
	background: #fde2e1;
	border: none;
	width: 500px;
	height: 50px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 18px;
}

.form-gr input, select {
	border-radius: 10px;
}

.btn-simulator:hover {
	color: #fde2e1;
	background: transparent;
	border: 1px solid #fde2e1 ;
	
}
.wpp-icon-head {
	width: 13%;
	filter: invert(1);
}
.wpp-link-middle {
	background-color: #26d367;
    padding: 20px 50px;
    font-size: 22px;
    color: white;
    border-radius: 10px;
    margin-top: 50px;
}
#about {
	margin-bottom: 140px;
}
@keyframes fadeInScale {
	0% {
	opacity: 0;
	transform: scale(0.8);
  }
  100% {
	opacity: 1;
	transform: scale(1);
  }
  }
.faq-text {
	max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out;
	background-color: #6c466b;
	color: #fff;
	padding: 2px;
}
.active-text {
	display: inline !important;
    /* margin-top: 20px; */
    max-height: 500px;
	padding: 50px 60px;
	color: #fff;
	background-color: #6c466b;
	border-radius: 0px 0px 10px;
}

.faq-item {
	display: flex;
	width: 100%;
	margin-bottom: 10px;
    flex-direction: column;
	justify-content: center;
    animation: fadeInScale 0.3s ease-in-out;
	
}
.container-faq {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.btn-show-faq {
	border: none;
	background-color: #e5e1ef;
	padding: 20px 60px;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	border-radius: 10px 10px 0px 0px;
}
.container-faq .title-atuations{
	margin-bottom: 50px;
}
.img-arrow {
	width: 2%;
}
.faqs-section {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.faq-itens {
	width: 40%;
}
.image-faq-container {
	width: 40%;
}
.testimonnials-title h3{
	color: #fff;
	padding-top: 50px;
}
@media (max-width: 1300px) {
	.cont-form {
		padding: 20px;
		
	}
	.cont-form h2 {
		padding: 0;
		
	}
	.form-control-1 {
		width: 400px;
	}
	.btn-simulator {
		width: 400px;
	}
	.cont-form img {
		right: 8%;
		bottom: 90%;
		
	}
}
@media (max-width: 1366px) {
	.cont-banner .title h2 {
		font-size: 50px;
	}
	.cont-banner .end-nut h3 {
		font-size: 30px;
	}
	.article-img {
		height: 600px !important;
	}
}

@media (max-width: 1040px) {
	.banner-1-presente {
		display: none;
	}
	.banner-2-presente {
		display: block;
		width: 100% !important;
		height: auto;
	}
	.form-area-leads {
		align-items: center !important;
	}
	.cont-form {
		width: 100%;
		margin-left: 0;
	}
	.cont-form img {
		right: 5%;
		bottom: 50%;
	}
	.form-control-1 {
		width: 500px;
	}
	.btn-simulator {
		width: 500px;
	}
	.cont-form h2 {
		padding: 30px;
	}
}

@media (max-width: 600px) {
	.cont-form img {
		display: none;
	}
	.form-control-1 {
		width: 350px;
	}
	.btn-simulator {
		width: 350px;
	}
	.jara_tm_about {
		padding: 50px 0px 50px 0px;
	}
	/* .first-container {
		background-image: none;
		background-color: #6c466b;
	} */
	.cont-banner .title h2 {
		font-size: 45px;
		color: white;
	}
	.cont-banner .end-nut h3 {
		font-size: 32px;
	}
	.faqs-section {
		flex-direction: column-reverse;
	
	}
	.faq-itens {
		width: 90%;
		margin-top: 50px;
	}
	.image-faq-container {
		width: 90%;
	}
	.jara_tm_all_wrap.ready .jara_tm_hero .left {
		width: 100% !important;
		background-color: #0000002e;
    border-radius: 20px;
	}
}
