/*
Theme Name: Academia Navastri
Author: Jonatas Reis
Author URI: https://www.linkedin.com/in/jonatas-reis-75567b101/
Description: Tema desenvolvido para Navastri
Version: 1.0
*/
@font-face {
	font-family: 'Gotham Book';
	src: url('css/fonts/GothamBook.eot');
	src: url('css/fonts/GothamBook.eot?#iefix') format('embedded-opentype'),
		url('css/fonts/GothamBook.woff2') format('woff2'),
		url('css/fonts/GothamBook.woff') format('woff'),
		url('css/fonts/GothamBook.ttf') format('truetype'),
		url('css/fonts/GothamBook.svg#GothamBook') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Regular';
	src: url('css/fonts/gotham-light-webfont.eot');
	src: url('css/fonts/gotham-light-webfont.eot?#iefix') format('embedded-opentype'),
		url('css/fonts/gotham-light-webfont.woff2') format('woff2'),
		url('css/fonts/gotham-light-webfont.woff') format('woff'),
		url('css/fonts/gotham-light-webfont.ttf') format('truetype'),
		url('css/fonts/gotham-light-webfont.svg#gotham_lightregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Gotham medium';
	src: url('css/fonts/gotham-medium-webfont.eot');
	src: url('css/fonts/gotham-medium-webfont.eot?#iefix') format('embedded-opentype'),
		url('css/fonts/gotham-medium-webfont.woff2') format('woff2'),
		url('css/fonts/gotham-medium-webfont.woff') format('woff'),
		url('css/fonts/gotham-medium-webfont.ttf') format('truetype'),
		url('css/fonts/gotham-medium-webfont.svg#gotham_mediumregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

* {
	outline: none !important;
	box-shadow: none !important;
}

html,
body {
	background-color: #000;
	width: 100%;
}

main {
	padding: 0 15px 0;
	overflow: hidden;
	color: #fff;
	font-family: 'Gotham Regular';
	font-size: 16px;
}

header {}

header .row .col-md-2:last-child {
	background-color: #38ac59;
}

.logo {
	position: relative;
	margin: 10px auto;
	width: 100%;
	max-width: 300px;
	float: left;
	margin-left: -15px;
}

@media (max-width: 400px) {
	.logo {
		max-width: 250px;
	}
}

.logo img {
	width: 100%;
}

.content_hamburger {
	display: table;
	width: 70px;
	height: 100%;
	min-height: 94px;
	background-color: #38ac59;
	position: relative;
	float: right;
	margin-right: -15px;
	cursor: pointer;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	z-index: 15;
}

.hamburger {
	display: table-cell;
	background-color: #38ac59;
	vertical-align: middle;
	text-align: center;
}

.hamburger span {
	position: relative;
	display: block;
	height: 2px;
	background-color: #000;
	margin-bottom: 7px;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.hamburger span:nth-child(1) {
	width: 30px;
	margin-top: 7px;
	margin-left: 25px;
}

.hamburger span:nth-child(2) {
	width: 40px;
	margin-left: 15px;
}

.hamburger span:nth-child(3) {
	width: 20px;
	margin-left: 35px;
}

.hamburger:hover span:nth-child(1) {
	margin-left: 15px;
}

.hamburger:hover span:nth-child(3) {
	margin-left: 15px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	margin-left: 18px;
	margin-top: 5px;
	width: 40px;
	position: absolute;
}

.hamburger.active span:nth-child(3) {
	width: 40px;
	transform: rotate(-45deg);
	margin-left: 16px;
	margin-top: -4px;
	position: absolute;
}

.content_hamburger:hover {
	background-color: #409E44;
}

.max_line {
	position: relative;
	margin: 0 auto !important;
	width: 100%;
	max-width: 1200px;
}

.tit_treina {
	margin-bottom: 10px !important;
}

.tit_treina h2 {
	color: #94eaad;
	font-size: 16px;
}

.subt_treina {
	font-size: 30px;
	width: 100%;
	max-width: 540px;
}

.subt_treina p {
	font-weight: 100;
}

.line_p_treinamento {
	padding-left: 20px;
}

.line_p_treinamento {
	padding-left: 100px;
}

.img_treinamento {
	cursor: pointer;
}

.img_treinamento figure {
	position: relative;
	overflow: hidden;
}

.img_treinamento figure {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.line_bottom_treinamento {
	position: relative;
	margin: 0 auto;
	width: 95%;
	max-width: 500px;
	height: 15px;
	background-color: #38ac59;
}

.img_treinamento figure:before {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background-image: url(imgs/player.svg);
	background-size: cover;
	left: 50%;
	top: 50%;
	margin-left: -100px;
	margin-top: -100px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.img_treinamento:hover figure {
	transform: scale(1.1);
}

.img_treinamento:hover figure:before {
	transform: scale(1.2);
}

.col_white p {
	color: #000;
}

.tit_venha_fazer {
	padding-left: 20px;
	font-size: 25px;
	line-height: 1.3em;
	width: 280px;
}

.tx_faca_parte {
	padding-left: 70px;
}

.tx_faca_parte {
	padding: 0 30px 0 70px;
}

.img_planos figure {
	position: relative;
	overflow: hidden;
}

.img_planos figure img {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.img_planos:hover figure img {
	transform: scale(1.2);
}

.img_planos:after {
	content: '';
	background: #38ac59;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -50px;
	margin-left: 50px;
	z-index: -1;
}

.tit_planos {
	position: relative;
}

.tit_planos h2 {
	position: absolute;
	margin-top: 20px;
}

.part_equipe {
	position: absolute;
	z-index: 1;
	top: 30px;
	left: -100px;
	margin-bottom: 0;
}

.img_equipe figure {
	position: relative;
	overflow: hidden;
}

.img_equipe figure img {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.img_equipe:hover figure img {
	transform: scale(1.2);
}

.img_equipe:after {
	content: '';
	position: absolute;
	width: 130px;
	height: 110px;
	background: #38ac59;
	bottom: 0;
	right: 0;
	margin-right: 8%;
	margin-bottom: -6%;
	z-index: -1;
}

.subt_equipe p {
	font-size: 25px;
	line-height: 1.3em;
}

.subt_planos p {
	font-size: 30px;
	line-height: 1.3em;
}

.block_conquistas {
	position: relative;
	margin: 0 auto;
	width: 95%;
	max-width: 300px;
	background: transparent;
	color: #000;
	padding: 30px 0;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.block_conquistas:hover {
	margin-top: -15px;
}

.img_conq {
	position: relative;
	margin: 0 auto;
	width: 95%;
	max-width: 245px;
	height: auto;
	margin-bottom: 20px;
}

.title_conq {
	font-family: 'Gotham Medium';
	font-size: 16px;
	font-weight: 900;
	margin-bottom: 5px;
	padding: 0 10px;
	text-align: center;
}

.desc_conq {
	padding: 0 10px;
	text-align: center;
	min-height: 50px;
}

.content_owl_conquistas .owl-nav {
	display: none;
}

.content_owl_conquistas .owl-carousel .owl-item:nth-child(even) {
	margin-top: 50px;
}

.owl_conquistas .owl-stage-outer {
	padding-top: 20px;
}

.owl_conquistas .owl-dots {
	text-align: center;
	padding-bottom: 30px;
}

.tit_post_home a {
	color: #94eaad;
	text-decoration: none;
}

.tit_post_home a:hover {
	text-decoration: none;
}

.img_thumb_post {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 370px;
	overflow: hidden;
}

.img_thumb_post img {
	width: 100%;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.tit_post_home {
	color: #94eaad;
	width: 100%;
	margin: 30px 0 20px !important;
	font-size: 16px;
	padding: 0 10px 0;
}

.desc_post_home {
	font-size: 16px;
}

.line_posts {
	margin-top: -140px !important;
}

.content_post {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.content_post:hover {
	/* margin-top: -15px; */
}

.lk_thumb_post,
.lk_thumb_post:hover {
	text-decoration: none;
}

.lk_thumb_post .desc_post_home {
	color: #fff;
	padding: 0 10px;
}

.col_tit_contato {
	padding: 0 50px 0 20px !important;
}

.insta_nava {
	color: #38ac59;
	text-decoration: none;
}

.insta_nava:hover {
	text-decoration: none;
	color: #38ac59;
}

.subt_insta_home p {
	color: #94eaad;
}

.col_form_home .row {
	margin: 0;
}

.col_form_home .row .col-md-6:first-child {
	padding-right: 30px;
}

.col_form_home input,
.col_form_home label,
.col_form_home textarea {
	width: 100%;
}

.col_form_home label {
	margin-bottom: 0;
}

.col_form_home .col {
	padding: 0;
}

.col_form_home textarea {
	height: 200px;
}

.col_form_home textarea {
	height: 60px;
	background: transparent;
	border: none;
	border-bottom: solid 1px #fff;
	color: #fff;
	font-size: 14px;
	padding: 10px 0;
}

.col_form_home input {
	background: transparent;
	border: none;
	border-bottom: solid 1px #fff;
	color: #fff;
	font-size: 14px;
	height: 50px;
}

.col_form_home .wpcf7-submit {
	cursor: pointer;
	width: 150px;
	float: right;
	border-bottom: solid 1px #38ac59;
	color: #38ac59;
	padding: 0 110px 0 0;
	background-image: url(imgs/setaLink.svg);
	background-repeat: no-repeat;
	background-position: right center;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.col_form_home .wpcf7-submit:hover {
	padding: 0 0 0 98px;
	background-position: left center;
}

.btn_ver_todos button {
	padding: 20px 0 !important;
	width: 150px;
	border-radius: 0 !important;
	background-color: transparent !important;
	border: none !important;
	border-bottom: solid 1px #38ac59 !important;
	color: #38ac59 !important;
	text-align: left !important;
	background-image: url(imgs/setaLink.svg) !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
}

.btn_arrow button {
	padding: 20px 70px 20px 0px !important;
	background-image: url(imgs/setaLink.svg) !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	border: none !important;
	border-bottom: solid 1px #38ac59 !important;
	color: #38ac59 !important;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.btn_arrow button:hover {
	background-position: left center !important;
	padding: 20px 0 20px 70px !important;
}

footer {
	background-color: #38ac59;
	padding: 60px 15px 70px;
}

.row_footer1 {
	padding-bottom: 50px;
	border-bottom: solid 1px rgba(255, 255, 255, .3);
}

.row_copy {
	color: #fff;
	font-size: 12px;
}

.row_copy .col-md-6 {
	line-height: 60px;
}

.row_copy .col-md-6:last-child {
	text-align: right;
}

.row_copy a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.row_copy a:hover {
	color: #1d6933;
	text-decoration: none;
}

.col_footer1 .menu {
	padding: 0;
	margin: 30px 0 0;
}

.col_footer1 .menu li {
	list-style: none;
	height: 30px;
	line-height: 30px;
}

.col_footer1 .menu li a {
	color: #fff;
	display: block;
	font-size: 14px;
}

.row_footer1 h2 {
	position: relative;
	float: left;
	width: 100%;
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	margin-bottom: 10px;
}

.col_footer2 .tnp-widget-minimal input.tnp-email {
	width: 70%;
	float: left;
}

.col_footer2 .tnp-widget-minimal input.tnp-submit {
	width: 25%;
	float: right;
}

.col_footer2 .tnp-widget-minimal input.tnp-submit {
	height: 42px;
	background: transparent;
	border-bottom: solid 1px #fff;
	padding: 0 70px 0 0;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	cursor: pointer;
	background-image: url(imgs/setaLink2.svg) !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
	background-size: 40px;
	font-size: 14px;
}

.col_footer2 .tnp-widget-minimal input.tnp-submit:hover {
	padding: 0 0 0 70px;
	background-position: left center !important;
}

.col_footer2 .tnp-widget-minimal input.tnp-email {
	font-size: 14px;
	width: 70%;
	float: left;
	background: transparent;
	border: none;
	border-bottom: solid 1px #fff;
	color: #fff;
	padding-left: 0;
}

.col_footer2 .tnp-widget-minimal input.tnp-email::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #fff;
}

.col_footer2 .tnp-widget-minimal input.tnp-email:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
	opacity: 1;
}

.col_footer2 .tnp-widget-minimal input.tnp-email::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
	opacity: 1;
}

.col_footer2 .tnp-widget-minimal input.tnp-email:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

.col_footer2 .tnp-widget-minimal input.tnp-email::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #fff;
}

.col_footer2 .tnp-widget-minimal input.tnp-email::placeholder {
	/* Most modern browsers support this now. */
	color: #fff;
}

.col_form_home select {
	min-width: inherit;
	width: 100%;
	height: 50px;
	color: #757575;
	border-bottom: solid 1px #fff;
	background-color: transparent;
	font-size: 14px;
}

.col_footer2 .tnp-form {
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
}

.row_patrocinadores {
	margin-top: 20px;
	margin-bottom: 30px;
	max-width: 350px;
}

.tit_patrocinadores {
	margin-bottom: 30px !important;
}

.logo_p_footer {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.logo_p_footer img {
	width: 100%;
}

.content_apoadores {
	position: relative;
	width: 100%;
	max-width: 170px;
}

.row_cert {
	margin-bottom: 20px;
}

.content_certificacaoes {
	margin-bottom: 30px;
}

.social-icon:before {
	color: #38ac59;
}

.social-icon {
	border-radius: inherit !important;
}

#back_to_top {
	position: fixed;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 33px;
	text-align: center;
	background: transparent;
	bottom: 30px;
	right: 40px;
	font-size: 20px;
	border: solid 2px #fff;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	z-index: 10;
}

#btn_whats {
	position: fixed;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 33px;
	text-align: center;
	background: transparent;
	bottom: 30px;
	right: 100px;
	font-size: 20px;
	border: solid 2px #fff;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	background-color: #25d366;
	border: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
}

#btn_whats:hover {
	background-color: #38ac59;
}

#btn_whats a {
	color: #fff;
}

#btn_whats a i {
	margin-top: 7px;
	font-size: 25px;
}

.subt_equipe {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 620px;
}

.subt_equipe p {
	font-weight: 300;
	font-size: 30px;
}

.thumb_func {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 520px;
}

.thumb_func img {
	width: 100%;
}

.tit_func {
	position: absolute;
	bottom: 0;
	padding: 0 40px 50px 40px;
	font-size: 50px;
	width: 100%;
}

.linha_equipe {
	margin-bottom: 100px;
	display: table;
	width: 100%;
}

.col_img,
.col_desc {
	position: relative;
	width: 50%;
	display: table-cell;
	vertical-align: bottom;
}

.block_equipe {
	margin-bottom: 100px;
}

.block_equipe .row:nth-child(even) .col_img {
	left: 50%;
}

.block_equipe .row:nth-child(even) .col_desc {
	left: -50%;
}

.block_equipe .row:nth-child(even) .col_img .tit_func {
	text-align: right;
}

.desc_func {
	background: #fff;
	color: #000;
	padding: 30px;
	margin-left: -50px;
}

.block_equipe .row:nth-child(even) .desc_func {
	margin-left: initial;
	margin-right: -50px;
}

.col_desc {
	padding-bottom: 50px;
}

/* .block_equipe .row:nth-child(1) .desc_func {
	margin-top: 200px;
}
.block_equipe .row:nth-child(2) .desc_func {
	margin-top: 200px;
}
.block_equipe .row:nth-child(3) .desc_func {
	margin-top: 0;
}
.block_equipe .row:nth-child(4) .desc_func {
	margin-top: 100px;
}
.block_equipe .row:nth-child(5) .desc_func {
	margin-top: 150px;
} */
.img_zoom_hover figure {
	overflow: hidden;
}

.img_zoom_hover figure img {
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.img_zoom_hover:hover figure img {
	transform: scale(1.2);
}

.subt_treinamento {
	width: 100%;
	max-width: 590px;
}

.subt_treinamento p {
	font-size: 30px;
}

.tx_treinamento {
	padding-left: 20%;
}

.tx_treinamento p {
	font-size: 16px;
}

.img02_treinamento {
	position: absolute;
	width: 250px;
	margin-top: -70px;
	margin-left: 30px;
	z-index: 2;
}

.img03_treinamento {
	z-index: 1;
}

.modal_menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #38ac59;
	top: 0;
	left: 0;
	margin-top: -100vh;
	z-index: 14;
}

.content_modal_menu {
	position: absolute;
	width: 100%;
	height: 100%;
	display: table;
}

.content_modal_menu .menu-principal-container {
	display: table-cell;
	vertical-align: middle;
}

.content_modal_menu .menu-principal-container .menu {
	margin: 0 auto;
	padding: 40px 20px 0;
	width: 100%;
	max-width: 400px;
}

.content_modal_menu .menu-principal-container .menu li {
	position: relative;
	list-style: none;
}

.content_modal_menu .menu-principal-container .menu li:nth-child(even) {
	padding-left: 100px;
}

.content_modal_menu .menu-principal-container .menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 40px;
	padding-left: 30px;
	padding-bottom: 5px;
	border-bottom: solid 1px #38ac59;
}

.content_modal_menu .menu-principal-container .menu li a:before {
	content: '';
	position: relative;
	width: 20px;
	height: 20px;
	background: transparent;
	left: -20px;
	bottom: 0px;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
	opacity: .5;
}

.content_modal_menu .menu-principal-container .menu li:nth-child(1) a:before {
	content: '01';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(2) a:before {
	content: '02';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(3) a:before {
	content: '03';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(4) a:before {
	content: '04';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(5) a:before {
	content: '05';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(6) a:before {
	content: '06';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(7) a:before {
	content: '07';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(8) a:before {
	content: '08';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(9) a:before {
	content: '09';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(10) a:before {
	content: '10';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(11) a:before {
	content: '11';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(12) a:before {
	content: '12';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(13) a:before {
	content: '13';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(14) a:before {
	content: '14';
}

.content_modal_menu .menu-principal-container .menu li:nth-child(15) a:before {
	content: '15';
}

.content_modal_menu .menu-principal-container .menu li a:hover {
	color: #000;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	border-bottom: solid 1px #000;
}

.col_img_3 .vc_column-inner {
	padding: 0 !important;
}

.PatternTreinamento01 {
	margin-bottom: 0;
	position: absolute;
	bottom: 110px;
	left: 0;
	margin-left: -90px;
}

.img_planos {
	position: relative;
	width: 100%;
	max-width: 500px;
}

.img01_treinamento:after {
	content: '';
	position: absolute;
	width: 70%;
	height: 90%;
	background: #38ac59;
	z-index: -1;
	margin-right: 30px;
	margin-top: -30px;
	right: 0;
}

.patterntreinamento02 {
	position: absolute;
	bottom: 0;
	z-index: 0;
	margin-bottom: -50px !important;
	margin-left: -170px;
}

.line_subt_planos {
	position: relative;
	margin: 0 auto !important;
	width: 100%;
	max-width: 660px;
}

.content_plano {
	background: #fff;
	color: #000;
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 450px;
}

.line_planos {
	max-width: 1200px;
}

.body_plano {
	padding: 40px;
}

.body_plano h3 {
	color: #38ac59;
	margin-bottom: 10px !important;
}

.list_plano {
	padding-left: 20px;
}

.list_plano li {
	font-size: 14px;
	margin-bottom: 3px;
}

.footer_plano {
	background: #38ac59;
	padding: 40px;
	margin: 0 -40px 40px;
}

.row_prices .col-md-4 {
	text-align: center;
	color: #fff;
	font-size: 14px;
}

.row_prices .col-md-4:first-child {
	color: #000;
}

.price_plano {
	font-family: 'Gotham medium';
	font-size: 16px;
}

.row_prices {
	border-bottom: solid 1px rgba(255, 255, 255, .3);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.footer_plano .col-md-12 {
	padding: 0;
}

.p_footer_plano {
	font-size: 12px;
	color: #fff;
}

.btn_planos {
	border: solid 2px #38ac59;
	color: #38ac59;
	background-color: #fff;
	padding: 10px 20px;
	margin-bottom: 30px !important;
	display: inline-block;
	text-decoration: none;
}

.btn_planos:hover {
	text-decoration: none;
	color: #fff;
	background-color: #38ac59;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.block_plano2 h3 {
	color: #fff;
}

.block_plano2 .body_plano {
	background-color: #38ac59;
	color: #fff;
}

.block_plano2 .footer_plano {
	background-color: #fff;
}

.block_plano2 .row_prices .col-md-4:first-child {
	color: #38ac59;
}

.block_plano2 .row_prices .col-md-4 {
	color: #000;
}

.block_plano2 .p_footer_plano {
	color: #000;
}

.block_plano2 .row_prices {
	border-bottom: solid 1px rgba(0, 0, 0, .3);
}

.block_plano2 .btn_planos {
	border: solid 2px #fff;
	color: #fff;
	background-color: #38ac59;
	padding: 10px 20px;
	margin-bottom: 30px !important;
	display: inline-block;
	text-decoration: none;
}

.block_plano2 .btn_planos:hover {
	color: #38ac59;
	background-color: #fff;
}

.partner_planos {
	position: absolute;
	top: 0;
	left: 0;
	margin-left: -70px;
	margin-top: 10px;
	z-index: 1;
}

.block_plano1 {
	position: relative;
	margin-top: 70px;
	z-index: 2;
}

.line_conquistas .vc_grid-item .vc_gitem-zone {
	background-color: transparent !important;
}

.line_conquistas .vc_grid-item .vc_grid-item-mini {
	background-color: transparent !important;
	padding-bottom: 10px;
}

.line_conquistas .vc_grid-item .vc_gitem-animated-block .vc_gitem-zone {
	max-width: 200px;
	position: relative;
	margin: 0 auto;
	background-size: contain;
}

.line_conquistas .vc_grid-item .vc_gitem-zone .vc_gitem_row {
	text-align: center;
	color: #000;
}

.line_conquistas .vc_grid-item .vc_gitem-zone .vc_gitem_row .vc_custom_heading h4 {
	font-family: 'Gotham medium';
	text-align: center !important;
	font-size: 16px;
}

.line_conquistas .vc_grid-item .vc_gitem-zone .vc_gitem_row .vc_btn3-container {
	display: none;
}

.line_conquistas .vc_grid-item .vc_gitem-animated-block .vc_gitem-zone a {
	cursor: initial !important;
}

.content_blog {
	padding: 200px 0 100px 0;
}

.title_blog {
	font-size: 30px;
	margin-bottom: 0;
	height: 40px;
	line-height: 40px;
}

.content_pre_header_blog {
	padding-bottom: 30px;
}

.content_pre_header_blog .col-sm-4 {
	text-align: right;
}

select {
	color: #38ac59;
	padding: 10px 20px 10px 0px;
	min-width: 120px;
	border: none;
	border-bottom: solid 1px #38ac59;
	background-color: #000;
}

.subt_contato p {
	font-size: 23px;
}

.content_single_post {
	padding: 150px 0 200px;
}

.content_banner img {
	width: 100%;
}

.breadcrumbs {
	margin-bottom: 10px;
	padding-left: 30px;
}

.breadcrumbs .cat {
	display: inline-block;
	padding-right: 10px;
}

.breadcrumbs .cat:after {
	content: '/';
	margin-left: 10px;
	color: #94EAAD;
}

.breadcrumbs .cat:last-child:after {
	display: none;
}

.breadcrumbs a {
	color: #94EAAD;
	text-decoration: none;
	font-size: 16px;
}

.title_page {
	margin-bottom: 30px;
	padding-left: 30px;
	font-size: 30px;
}

.content_single {
	position: relative;
	margin: 60px auto 0;
	width: 95%;
	max-width: 700px;
}

.content_single p {
	font-size: 16px;
}

.content_owl {
	position: relative;
	width: 100%;
	min-height: 1000px;
	margin: 50px auto 80px !important;
}

.img_timeline img {
	width: 100%;
}

.img_timeline {
	position: relative;
	margin: 0 auto;
	width: 95%;
	max-width: 450px;
}

.desc_timeline {
	position: relative;
	margin: 90px auto 30px;
	width: 100%;
	max-width: 750px;
	text-align: center;
	display: none;
}

.content_menu_owl {
	position: absolute;
	z-index: 2;
	top: 0;
	margin-top: 30%;
	width: 100%;
}

.owl_menu .owl-item a {
	text-decoration: none;
	color: #fff;
	font-size: 60px;
}

.owl_menu .owl-item a:hover {
	text-decoration: none;
}

.owl_menu .owl-item a:hover .bullet_time {
	background-color: #fff !important;
}

.owl_menu .owl-item a:hover .tx_year {
	opacity: 1 !important;
}

.owl_historia .owl-item .img_timeline {
	margin-top: 100px;
	max-width: 200px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.content_img_timeline {
	min-height: 490px;
}

.item_owl.active .img_timeline {
	margin-top: 0;
	max-width: 450px;
}

.item_owl.active .desc_timeline {
	display: block;
}

.owl_historia .owl-item:first-child .img_timeline {
	opacity: 1;
	max-width: 450px;
	margin: 0;
}

.owl_historia .owl-item:first-child .desc_timeline {
	display: block;
}

.bullet_time_content {
	position: relative;
	width: 100%;
	height: 20px;

}

.bullet_time {
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: transparent;
	left: 50%;
	top: 0;
	margin-left: -7px;
	border-radius: 50%;
	border: solid 3px #fff;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.bullet_time_content:after {
	content: '';
	width: 405px;
	height: 3px;
	border: dashed 2px #fff;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 85px;
	margin-top: 6px;
}

.tx_year {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	display: block;
	width: 140px;
	height: 90px;
	font-size: 20px;
	line-height: 90px;
	text-align: center;
	opacity: .5;
}

.owl-nav {
	display: none;
}

#homeslider .tp-bullets {
	background: #fff;
	padding: 20px 10px;
	width: 145px !important;
	height: 43px !important;
	transform: translate(-380px, -133px) !important;
}

#homeslider .mkdf-nav-dark .tp-bullet {
	width: 30px;
	height: 3px;
	margin: 0 5px;
	border-radius: inherit;
	left: 0 !important;
}

#homeslider .mkdf-nav-dark .tp-bullet {
	position: relative;
	float: left;
}

#homeslider .mkdf-nav-dark .tp-bullet.selected {
	background-color: #3fab5c;
}

.owl_conquistas .owl-dots.disabled {
	margin-top: 40px;
	display: block !important;
	text-align: center !important;
}

.owl_conquistas button.owl-dot {
	position: relative;
	width: 30px;
	height: 3px;
	background: #fff !important;
	margin-right: 6px;
}

.owl_conquistas button.owl-dot.active {
	background-color: #3fab5c !important;
}

.col_footer2 {
	padding-right: 100px;
}

.block_pre_imagefooter_treinamento {
	height: 150px !important;
}

.traco_bullet {
	position: absolute;
	width: 405px;
	height: 4px;
	background: #fff;
	left: 0;
	top: 0;
	margin-left: 19px;
	margin-top: 3px;
	-webkit-transition: all 500ms ease-in;
	-moz-transition: all 500ms ease-in;
	-ms-transition: all 500ms ease-in;
	-o-transition: all 500ms ease-in;
	transition: all 500ms ease-in;
}

.col_page_contato form .row {
	margin: 0;
}

.col_tit_page_contato {
	padding-right: 50px !important;
}

.img_thumb_pg_hist {
	position: relative;
}

.img_thumb_pg_hist figure {
	display: inline-block;
}

.img_thumb_pg_hist:before {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: #38ac59;
	z-index: -1;
	margin-left: -20px;
	margin-top: -20px;
	left: 0;
}

.img_rep:after {
	position: absolute;
	content: '*Imagem representativa';
	bottom: 0;
	right: 0;
	font-size: 12px;
	margin-bottom: -25px;
}

.content_posts .col-md-4 {
	padding-bottom: 100px;
}

.desc_post_home {
	padding: 0 10px;
}

.desc_post_home a {
	text-decoration: none;
	color: #fff;
}

.desc_post_home a:hover {
	text-decoration: none;
}

.bt_home_planos {
	margin-left: 20px;
}

.posts_conquistas .vc_gitem-zone-mini {
	display: none;
}

.content_footer2 {
	margin-left: -50px;
	width: 100%;
}

.content_owl_conquistas .block_conquistas {
	padding-bottom: 40px;
}

.col_tit_contato_home:before {
	content: '';
	width: 300px;
	position: absolute;
	height: 210px;
	background-image: url(../../uploads/2021/02/PatternFormulario.svg);
	background-repeat: no-repeat;
	background-size: contain;
	left: 0;
	margin-left: -300px;
}

.tit_conq a {
	text-decoration: none;
	color: #fff;
}

.tit_conq a:hover {
	text-decoration: none;
}

.line_header {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 1200px;
}

.pos_burger {
	position: absolute;
	width: 100vw;
	height: 100%;
	background-color: #38ac59;
	left: 100%;
	top: 0;
}

.line_header .row {
	margin: 0;
}

.tit_video_treinamento {
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 600px;
}

.tit_video_treinamento h2 {
	font-size: 30px;
	text-align: center;
}

.wpcf7-not-valid-tip {
	font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
	border: none;
	text-align: center;
	color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
	border: solid 1px #38ac59;
	height: 50px;
	line-height: 50px;
	padding: 0;
	text-align: center;
}

.element {
	animation: pulse 5s infinite;
}

@keyframes pulse {
	0% {
		margin-top: 0px;
	}

	25% {
		margin-top: 50px;
	}

	50% {
		margin-left: 40px;
	}

	75% {
		margin-top: 0px;
	}

	100% {
		margin-left: 0px;
	}
}

.confirm_news {
	padding: 100px 0 50px 0;
}

.content_button {
	text-align: center;
	padding-bottom: 100px;
}

.btn_voltar_confirm {
	cursor: pointer;
}

.content_big_number {
	text-align: center;
	margin-bottom: 30px !important;
}

.tx_num {
	font-family: 'Gotham medium';
	font-size: 40px;
	line-height: 1.3em;
	color: #38ac59;
	margin-bottom: 10px;
}

.line_bignumbers_home {
	position: relative;
	margin: 0 auto !important;
	width: 100%;
	max-width: 700px;
}

.first_section {
	padding-top: 200px;
}

.line_bignumbers_home .wpb_content_element {
	margin-bottom: 0;
}

.page-conquistas .first_section {
	/* border-bottom: dashed 1px #3a6285; */
	margin-bottom: 70px;
}

.line_video {
	max-width: 800px;
}

.cargo {
	padding-left: 45px;
	margin-top: -55px;
	position: absolute;
	font-size: 20px;
}

.modal-header {
	height: 55px;
}

.modal-title {
	color: #000;
}

.modal-body ul li {
	color: #000;
}

.clique_modal_number {
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
	font-size: 12px;
}

button.close {
	cursor: pointer;
}

.modal-dialog.modal-dialog-centered {
	padding-top: 20vh;
}

.container_logos {
}

.container_logos .row .col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.container_logos .row .col img {
	width: 100%;
}
.partner_planos {
    z-index: 0;
}



















@media (max-width: 1200px) {
	.logo {
		margin-left: 0;
	}
}

@media (max-width: 1024px) {
	.col_text_sec_two_treina .vc_inner .vc_col-sm-3 {
		display: none;
	}

	#sec_two_treinamento {
		padding-bottom: 100px !important;
	}

	.content_certificacaoes .col-sm-6 img {
		max-width: 100%;
	}

	.content_footer2 {
		margin-left: -20px;
	}

	.block_pre_imagefooter_treinamento {
		height: 230px !important;
	}

	.col_text_sec_two_treina .vc_inner .vc_col-sm-9 {
		width: 100%;
	}

	.desc_timeline {
		margin: 0px auto 30px;
	}

	#homeslider .tp-bullets {
		transform: translate(-250px, -100px) !important;
	}
}

@media (max-width: 1000px) {
	.content_img_timeline {
		min-height: 350px;
	}
}

@media (max-width: 980px) {
	.line_conquistas .vc_grid-item {
		width: 50%;
	}

	.bullet_time_content:after {
		width: 210px;
	}
}

@media (max-width: 768px) {
	.vc_btn3-container.vc_btn3-right {
		text-align: left !important;
	}

	#sec_two_treinamento {
		padding-bottom: 80px !important;
	}

	.logo_p_footer {
		max-width: 250px;
		margin-bottom: 30px;
		float: left;
	}

	.col_footer1,
	.col_footer2,
	.col_footer3 {
		margin-bottom: 30px;
	}

	.tnp-widget-minimal {
		width: 100%;
		max-width: 400px;
	}

	.row_copy {
		margin-top: 30px !important;
	}

	.row_copy .col-md-6 {
		line-height: 30px;
	}

	.row_copy p {
		text-align: center;
		margin-bottom: 0;
	}

	.content_apoadores {
		float: left;
	}

	.logo_a_footer {
		text-align: center;
		margin-bottom: 30px;
	}

	#wpcf7-f132-p117-o1 .row {
		margin: 0 25px !important;
	}

	header .row .col-md-2:last-child {
		background-color: transparent;
	}

	.content_hamburger {
		float: none;
		margin: 0 auto;
	}

	.line_conquistas .vc_grid-item {
		margin: 0 auto;
		max-width: 300px;
		padding: 0 0 30px 0 !important;
	}

	.line_header .col-md-6 {
		display: none;
	}

	.line_header .col-md-3:first-child {
		width: 180px;
	}

	.line_header .col-md-3:last-child {
		width: 70px;
		float: right;
		position: absolute;
		right: 0;
		top: 0;
	}

	.img_treinamento figure:before {
		width: 150px;
		height: 150px;
		margin-left: -75px;
		margin-top: -75px;
	}

	.bullet_time_content:after {
		width: 210px;
	}

	.content_menu_owl {
		margin-top: 50%;
	}

	.desc_timeline {
		margin: 30px auto 30px;
	}

	.content_img_timeline {
		min-height: 470px;
	}

	.img_planos:after {
		margin-top: 50px;
	}

	.content_post {
		margin-bottom: 50px !important;
	}

	.col_tit_eq_home .vc_column-inner {
		padding-left: 15px !important;
	}

	#contato {
		padding-top: 0 !important;
	}

	.page-contato #contato {
		padding-top: 150px !important;
	}

	#equipe {
		padding-bottom: 100px !important;
	}

	.content_footer2 {
		margin-left: 0;
	}

	.row_cert .col-sm-6 {
		width: 50%;
	}

	.content_certificacaoes {
		max-width: 230px;
	}

	.content_apoadores .col-md-6 {
		width: 50%;
	}

	.col_footer2 {
		padding-right: 0;
	}

	.tit_func {
		font-size: 20px;
	}

	.block_equipe .row:nth-child(even) .desc_func {
		margin-right: -30px;
	}

	.desc_func {
		margin-left: -30px;
	}

	.block_pre_imagefooter_treinamento {
		height: 90px !important;
	}

	.tit_video_treinamento {
		margin-top: 70px;
	}

	.p_footer_plano {
		text-align: center;
	}

	#homeslider .tp-bullets {
		transform: translate(-250px, -70px) !important;
	}

	.line_conquistas .vc_grid.vc_row.vc_grid-gutter-30px .vc_pageable-slide-wrapper {
		text-align: center;
	}

	.content_modal_menu .menu-principal-container .menu li a:before {
		font-size: 12px;
	}

	.content_modal_menu .menu-principal-container .menu li a {
		padding-left: 10px;
	}

	.tit_planos {
		padding-bottom: 30px;
	}

	.col_white {
		width: 100%;
	}

	.cargo {
		padding-left: 40px;
		margin-top: -50px;
		position: absolute;
		font-size: 14px;
	}
}

@media (max-width: 680px) {

	.col_img,
	.col_desc {
		width: 100%;
		display: inline-block;
	}

	.block_equipe .row:nth-child(even) .col_img {
		left: 0;
	}

	.block_equipe .row:nth-child(even) .col_desc {
		left: 0%;
	}

	.desc_func {
		margin-left: 0;
	}

	.block_equipe .row:nth-child(even) .desc_func {
		margin-right: 0;
	}

	.tit_func {
		text-align: center;
		font-size: 50px;
	}

	.block_equipe .row:nth-child(even) .col_img .tit_func {
		text-align: center;
	}

	.linha_equipe {
		margin: 0;
	}

	.row_patrocinadores .logo_p_footer img {
		width: initial;
	}

	.content_pre_header_blog .col-sm-4 {
		text-align: left;
	}

	.cargo {
		padding-left: 0;
		margin-top: -60px;
		position: absolute;
		font-size: 24px;
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.owl_historia .owl-item .img_timeline {
		margin-top: 70px;
		max-width: 120px;
	}

	.bullet_time_content:after {
		width: 140px;
	}

	.content_menu_owl {
		margin-top: 50%;
	}

	.content_img_timeline {
		min-height: 340px;
	}

	.desc_timeline {
		margin: 40px auto 30px;
	}

	.content_owl {
		min-height: 800px;
	}

}

@media (max-width: 480px) {
	.content_modal_menu .menu-principal-container .menu {
		padding: 20px 20px 0;
		max-width: 230px;
		margin-top: 30px;
	}

	.content_modal_menu .menu-principal-container .menu li a {
		font-size: 20px;
	}

	.content_modal_menu .menu-principal-container .menu li a:before {
		left: -10px;
	}

	.content_modal_menu .menu-principal-container .menu li:nth-child(even) {
		padding-left: 40px;
	}

	.bullet_time_content:after {
		width: 110px;
	}

	.content_img_timeline {
		min-height: 430px;
	}

	.content_menu_owl {
		margin-top: 100%;
	}

	.line_p_treinamento {
		padding-left: 15%;
	}

	.tit_func {
		font-size: 30px;
		line-height: 1.1em;
	}

	.col_desc {
		width: 90% !important;
		left: 5% !important;
		margin-top: -30px !important;
	}

	#homeslider .tp-bullets {
		transform: translate(-150px, -40px) !important;
	}

	.part_equipe {
		margin-top: -110px;
	}

	#planos {
		padding-bottom: 0 !important;
	}

	.line_conquistas .vc_grid-item {
		max-width: 250px;
		width: 100%;
	}

	.content_owl_conquistas .owl-carousel .owl-item:nth-child(even) {
		margin-top: 0;
	}

	.col_tit_contato_home:before {
		margin-left: -290px;
	}

	.line_conquistas .vc_grid.vc_row.vc_grid-gutter-30px .vc_pageable-slide-wrapper {
		margin-right: 0;
	}

	.line_conquistas .vc_grid-item .vc_gitem-animated-block .vc_gitem-zone {
		max-width: 250px;
	}

	.content_blog {
		padding: 80px 0 100px 0;
	}

	.content_pre_header_blog select {
		width: 100%;
	}

	.title_blog {
		margin-bottom: 30px;
	}

	.first_section {
		padding-top: 80px !important;
	}

	rs-sbg {
		background-size: 200% !important;
		background-color: #000 !important;
		background-position: center top !important;
	}

	.cargo {
		margin-top: -56px;
		font-size: 18px;
	}
}