/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
@-webkit-keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/* -----------------------------------------
	01. General
----------------------------------------- */
html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}

* {
	box-sizing: inherit;
}

*::before, *::after {
	box-sizing: inherit;
}

/* Basic Typography
=================================== */
body {
	line-height: 1.625;
	font-size: 16px;
	background-color: #f6f6f6;
	color: #484848;
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	line-height: normal;
	margin: 0 0 15px;
	word-wrap: break-word;
	text-rendering: optimizeLegibility;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

p {
	margin: 0 0 15px;
}
.fake-p {
  font-size: 14px;   /* mesmo tamanho do <p> */
  font-weight: normal;
  margin: 0 0 1em;
  line-height: 1.5;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	-webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	outline: none;
	color: #00c6ff;
	text-decoration: none;
	cursor:pointer;
}

a:hover {
	color: #33d1ff;
	outline: none;
	text-decoration: none;
}

a:active {
	outline: none;
}

.group::after {
	content: "";
	display: table;
	clear: both;
}

/* General Element Styling
=================================== */
/* Reset figure margin from normalize.css */
figure {
	margin: 0;
}

/* Lists */
ul, ol {
	padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

dl {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 15px;
}

/* Blockquotes */
blockquote {
	margin: 20px 0;
	padding-left: 15px;
	border-left: 3px solid #e9e9e9;
	font-size: 17px;
	font-weight: 300;
}

blockquote cite {
	display: block;
	font-weight: bold;
	font-style: italic;
	margin: 10px 0 0;
	color: rgba(72, 72, 72, 0.8);
	font-size: 14px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.entry-content table {
	border-width: 1px 0 0 1px;
	margin-bottom: 24px;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.entry-content th:first-child,
.entry-content td:first-child {
	padding-left: 0;
}

.entry-content caption,
.entry-content th,
.entry-content td {
	font-weight: normal;
	text-align: left;
	padding: 5px;
	vertical-align: middle;
}

.entry-content th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 85%;
}

.entry-content td {
	border-width: 0 1px 1px 0;
}

/* Code */
code, kbd, tt, var, samp, pre {
	font-family: monospace, serif;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	font-style: normal;
}

pre {
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Various */
address {
	margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Embeds and iframes
=================================== */
embed,
iframe,
object,
video,
audio {
	margin-bottom: 15px;
	max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
	margin-bottom: 0;
}

#map *,
.map * {
	max-width: none !important;
}

/* General Form Styling
=================================== */
label {
	display: block;
	margin: 0 0 2px;
	font-weight: normal;
}

label input[type="checkbox"] {
	display: inline-block;
	margin-right: 5px;
}

input,
textarea {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: 42px;
	padding: 6px 12px;
	box-shadow: none;
	line-height: normal;
	border: 2px solid #e9e9e9;
	border-radius: 3px;
	background-color: #fff;
	background-image: none;
	color: #484848;
	font-size: 15px;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
}

input:hover, input:focus,
textarea:hover,
textarea:focus {
	border-color: #00c6ff;
	outline: none;
}

@media (max-width: 991px) {
	input,
	textarea {
		font-size: 16px;
	}
}

@media (max-width: 543px) {
	input,
	textarea {
		width: 100%;
	}
}

input[type="search"] {
	/* Restoring box-sizing */
	box-sizing: border-box;
}

textarea {
	height: auto;
}

select {
	max-width: 100%;
	color: #484848;
	height: 42px;
	border-color: #e9e9e9;
	border-style: solid;
	border-width: 2px;
	padding-left: 12px;
	padding-right: 12px;
	padding: 0;
	background-color: #fff;
	border-radius: 2px;
}

.ci-select {
	position: relative;
	width: 100%;
	height: 42px;
}

.ci-select select {
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 3px;
	border: 2px solid #e9e9e9;
	padding: 6px 12px;
	color: #828282;
	background-color: #fff;
}

.ci-select select::-ms-expand {
	display: none;
}

.ci-select::after {
	font-family: "FontAwesome";
	content: "\f107";
	font-size: 20px;
	position: absolute;
	top: 0;
	line-height: 42px;
	right: 12px;
	height: 100%;
	color: #484848;
	pointer-events: none;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 4px 0 0;
	line-height: normal;
	width: auto;
	height: auto;
}

fieldset {
	margin: 0 0 15px;
	padding: 0;
	border: 0;
	min-width: 0;
}

.form-field {
	margin-bottom: 20px;
}

.form-field-inline {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 21px;
}

.form-field-inline::after {
	content: "";
	display: table;
	clear: both;
}

.form-field-inline label {
	float: left;
	width: 30%;
	padding-top: 5px;
}

.form-field-inline label small {
	opacity: .6;
}

.form-field-inline .field {
	float: left;
	width: 70%;
}

.field-hint {
	opacity: .8;
	font-size: 13px;
	margin-bottom: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
	color: rgba(72, 72, 72, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(72, 72, 72, 0.5);
	font-weight: normal;
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(72, 72, 72, 0.5);
	font-weight: normal;
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(72, 72, 72, 0.5);
	font-weight: normal;
	opacity: 1;
}

/* Buttons
=================================== */
.btn,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
	position: relative;
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease, .18s opacity ease;
	transition: .18s background-color ease, .18s color ease, .18s border-color ease, .18s opacity ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-image: none;
	text-transform: uppercase;
	background-color: #00c6ff;
	border: 2px solid transparent;
	color: #fff;
	font-weight: 700;
	border-radius: 3px;
	padding: 11px 38px;
	font-size: 13px;
	height: 42px;
}

.btn:active,
.comment-reply-link:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
	outline: none;
}

.btn:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
	color: #fff;
	background-color: #00bef5;
	text-decoration: none;
}

.btn::before,
.comment-reply-link::before,
input[type="submit"]::before,
input[type="reset"]::before,
button::before {
	border: 3px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 24px;
	width: 24px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
	opacity: 0;
	-webkit-transition: opacity .18s ease;
	transition: opacity .18s ease;
}

.btn-sm {
	padding: 8px 18px;
	font-size: 11px;
	height: auto;
}

.btn-lg {
	padding: 16px 42px;
	font-size: 16px;
	height: auto;
}

.btn-block {
	min-width: 100%;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}

.btn-round {
	border-radius: 30px;
}

.btn-transparent {
	background-color: transparent;
	border-color: #00c6ff;
	color: #00c6ff;
}

.btn-transparent:hover {
	color: #fff;
	background-color: #00c6ff;
}

.btn-transparent.btn-loading:hover {
	background-color: transparent;
	color: #00c6ff;
}

.btn-white {
	background-color: #fff;
	color: #00c6ff;
}

.btn-white:hover {
	color: #00c6ff;
	background-color: #fff;
}

.btn-white.btn-transparent {
	border-color: #fff;
	color: #fff;
	background-color: transparent;
}

.btn-white.btn-transparent:hover {
	background-color: #fff;
	color: #00c6ff;
}

.btn-white.btn-transparent.btn-loading:hover {
	color: #fff;
	background-color: transparent;
}

.btn-loading {
	cursor: not-allowed;
	pointer-events: none;
	text-indent: -999em;
}

.btn-loading::before {
	opacity: 1;
}

/* Magnific Popup Overrides
=================================== */
.mfp-bg {
	background-color: #000;
}

.mfp-preloader {
	color: #fff;
}

.mfp-preloader a {
	color: #fff;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	background-color: transparent;
	text-indent: -999em;
	margin: 0 auto;
}

button.mfp-close, button.mfp-arrow {
	border: 0;
	opacity: 1;
}

button.mfp-close:hover, button.mfp-arrow:hover {
	background: none;
	border: 0;
}

.mfp-close-btn-in .mfp-close {
	color: #fff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #fff;
}

.mfp-arrow {
	line-height: .3;
}

.mfp-arrow::before, .mfp-arrow::after {
	border: 0;
}

.mfp-arrow::after {
	font-family: FontAwesome;
	font-size: 70px;
	color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
	content: "\f105";
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
	content: "\f104";
}

/* Text Alignment Helpers
=================================== */
.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justified {
	text-align: justify;
}

/* Other Text Helpers
=================================== */
.text-theme {
	font-weight: 700;
	color: #00c6ff;
}

.text-secondary {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
}

/* Alignment Helpers
=================================== */
.align-items-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* Spacing Helpers
=================================== */
.mt-1 {
	margin-top: 15px;
}

.mt-2 {
	margin-top: 30px;
}

.mb-1 {
	margin-bottom: 15px;
}

.mb-2 {
	margin-bottom: 30px;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */
.nav {
	display: block;
	margin-left: auto;
}

.navigation-main {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	/* Functional Styles
	=================================== */
	/* Visual Styles
	=================================== */
}

.navigation-main::after {
	content: "";
	display: table;
	clear: both;
}

.navigation-main li {
	position: relative;
}

.navigation-main > li {
	display: inline-block;
}

.navigation-main a {
	display: block;
	white-space: nowrap;
}

.navigation-main ul {
	position: absolute;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	-webkit-transform: translate(0, 15px);
	-ms-transform: translate(0, 15px);
	transform: translate(0, 15px);
}

.navigation-main > li:last-child > ul {
	right: 0;
}

.navigation-main > li:last-child > ul::before {
	left: auto;
	right: 10px;
}

.navigation-main ul ul {
	top: 0;
	right: 100%;
	-webkit-transform: translate(-5px, 0);
	-ms-transform: translate(-5px, 0);
	transform: translate(-5px, 0);
}

.navigation-main li:hover a {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.navigation-main li:hover > ul {
	-webkit-transition-delay: 0s, 0s, 0s;
	transition-delay: 0s, 0s, 0s;
	visibility: visible;
	opacity: 1;
}

.navigation-main li:hover ul {
	z-index: 15;
}

.navigation-main > li:hover > ul {
	-webkit-transform: translate(0, 10px);
	-ms-transform: translate(0, 10px);
	transform: translate(0, 10px);
}

.navigation-main li li:hover > ul {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.navigation-main ul {
	padding: 0;
	margin: 0 0 0 30px;
	list-style: none;
	background-color: #fff;
	min-width: 200px;
	border-radius: 3px;
	border-bottom: 2px solid #e9e9e9;
}

.navigation-main a {
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.navigation-main > li > a {
	padding: 8px 0;
	margin-left: 30px;
	color: #fff;
	border-bottom: 2px solid transparent;
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
}

.navigation-main > li.menu-item-btn > a {
	padding: 6px 12px;
	border: 2px solid #00c6ff;
	font-weight: 700;
	border-radius: 2px;
}

.navigation-main > li.menu-item-btn > a:hover {
	background-color: #00c6ff;
}

.navigation-main > li > ul::before {
	content: "";
	position: absolute;
	border: 5px solid transparent;
	border-bottom-color: #fff;
	top: -10px;
	left: 10px;
}

.navigation-main > li:hover > a,
.navigation-main > li > a:focus,
.navigation-main > .current-menu-item > a,
.navigation-main > .current-menu-parent > a,
.navigation-main > .current-menu-ancestor > a {
	border-bottom: 2px solid #00c6ff;
}

.navigation-main li li a {
	font-size: 11px;
	padding: 9px 12px;
	border-bottom: 1px solid #e9e9e9;
	color: #484848;
}

.navigation-main li li:last-child > a {
	border-bottom: 0;
}

.navigation-main li li:hover > a,
.navigation-main li li > a:focus,
.navigation-main li .current-menu-item > a,
.navigation-main li .current-menu-parent > a,
.navigation-main li .current-menu-ancestor > a {
	color: #00c6ff;
}

.navigation-main .menu-item-has-children > a::after {
	content: "\f078";
	font-family: FontAwesome;
	font-size: 8px;
	position: relative;
	top: -4px;
	right: -3px;
	line-height: normal;
}

.navigation-main li .menu-item-has-children > a::after {
	content: "\f054";
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* -----------------------------------------
	03. Header
----------------------------------------- */
.header {
	z-index: 50;
	position: absolute;
	top: 0;
	width: 100%;
	padding: 25px 0;
}

.mast-head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.site-logo {
	line-height: normal;
	font-size: 24px;
	margin: 0;
	max-width: 225px;
}

.site-logo a {
	color: #fff;
}

.site-tagline {
	text-transform: uppercase;
	color: #fff;
	font-size: 10px;
	margin: 0;
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */
/* Page Hero
=================================== */
.page-hero {
	
	background-image: url(images/brasil.png);
	background-color: #2f3043;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	color: #fff;
	height: 350px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.page-template-template-builder-php .page-hero {
	height: 82px;
}

.page-hero .container {
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
}

.page-hero::before {
	content: "";
	background-color: rgba(47, 48, 67, 0.82);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.page-hero-lg {
	height: 500px;
}

.page-template-template-builder-php .page-hero-lg {
	height: 82px;
}

.page-hero-xl {
	height: 640px;
}

.page-hero-parallax {
	background-attachment: fixed;
}

.page-hero-center {
	text-align: center;
}

.page-hero-content {
	margin-top: 50px;
}

.page-hero-lg .page-hero-content {
	margin-top: 60px;
}

.page-title {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 300;
	margin: 0;
}

.page-hero-lg .page-title {
	max-width: 570px;
}

.widget-section .page-title {
	margin-bottom: 20px;
}

.page-subtitle {
	margin: 15px 0 0;
}

.page-subtitle + .btn {
	margin-top: 40px;
}

.page-hero-details span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-right: 20px;
}

.page-hero-details span::after {
	content: "\2022";
	position: absolute;
	right: -16px;
	font-size: 16px;
	text-transform: none;
	font-weight: 400;
	opacity: .3;
}

.page-hero-details span.item-badge::after {
	top: -1px;
}

.page-hero-details span:last-child::after {
	display: none;
}

/* Filter Form
=================================== */
.form-filter {
	position: relative;
	background-color: rgba(0, 0, 0, 0.25);
	padding: 30px 0;
}

/* Content Wrappers
=================================== */
.main {
	padding: 60px 0;
	position: relative;
}

.main-elevated {
	padding-top: 0;
	margin-top: -72px;
}

.content-wrap {
	background-color: #fff;
	border-radius: 3px;
	padding: 50px;
	border-bottom: 2px solid rgba(233, 233, 233, 0.8);
}

.content-wrap-footer {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	padding: 15px 0;
}

.section-title-wrap::after {
	content: "";
	display: table;
	clear: both;
}

.section-title {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;
}

.entry-related .section-title {
	font-weight: 700;
}

.section-title-wrap .section-title {
	float: left;
}

.section-title-compliment {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;
	float: right;
}

.section-title-compliment a {
	color: #484848;
}

.section-title-compliment .fa {
	margin-right: 5px;
}

/* Sidebar
=================================== */
.main-elevated .sidebar {
	margin-top: 100px;
}

/* Badges
=================================== */
.item-badge {
	display: inline-block;
	margin: 0;
	line-height: normal;
	padding: 2px 6px 3px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background-color: #00c6ff;
	vertical-align: middle;
	border-radius: 2px;
}

.item-badge:hover {
	color: #fff;
}

/* List Items
=================================== */
.item-listing,
ul.job_listings {
	position: relative;
	margin-bottom: 0;
	border-top: 0;
}

.item-listing::after,
ul.job_listings::after {
	border: 6px solid rgba(0, 198, 255, 0.35);
	border-top-color: rgba(0, 198, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -20px;
	z-index: 11;
	display: none;
}

.item-listing::before,
ul.job_listings::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	z-index: 10;
	opacity: .6;
	display: none;
}

.item-listing.is-loading::after, .item-listing.is-loading::before,
ul.job_listings.is-loading::after,
ul.job_listings.is-loading::before {
	display: block;
}

ul.job_listings li.list-item.job_listing {
	padding: 30px;
	border-bottom: 1px solid #e9e9e9;
}

ul.job_listings li.list-item.job_listing a {
	background: none;
	padding: 0;
	opacity: 1;
	display: inline-block;
	line-height: normal;
}

ul.job_listings li.list-item.job_listing a:hover, ul.job_listings li.list-item.job_listing a:focus {
	background: none;
}

.list-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 30px;
	background-color: #fff;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: normal;
	border-bottom: 1px solid #e9e9e9;
}

.list-item:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.list-item-sm {
	padding: 10px;
}

.list-item-featured,
.job_position_featured {
	background-color: #fffded;
}

.list-item-callout {
	background-color: #00c6ff;
	border-top: 2px solid rgba(0, 0, 0, 0.03);
	border-bottom: 2px solid rgba(0, 0, 0, 0.03);
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.list-item-error {
	background-color: #ff6452;
	text-align: center;
	display: none;
}

.list-item-error .fa-warning {
	text-align: center;
	display: block;
	font-size: 30px;
	margin-bottom: 15px;
}

.list-item-secondary-info {
	text-align: right;
	margin-left: auto;
}

.widget .list-item-secondary-info {
	display: none;
}

.list-item-title-eyebrow {
	display: block;
	text-transform: uppercase;
	font-size: 10px;
	opacity: .4;
	margin: -13px 0 3px;
	padding: 0;
	line-height: 1;
	font-weight: 400;
}

.widget .list-item-title-eyebrow {
	display: none;
}

.list-item-title {
	font-size: 20px;
	margin: 0 0 4px;
	letter-spacing: -.025em;
	line-height: 1;
}

.entry-content .list-item-title {
	margin: 0 0 4px;
}

.list-item-callout .list-item-title {
	font-weight: 700;
	color: #fff;
}

.widget .list-item-title {
	font-size: 15px;
	margin-bottom: 5px;
}

.list-item-error .list-item-title {
	color: #fff;
	width: 100%;
}

.list-item-location {
	margin: 0 0 3px;
	line-height: normal;
	color: #343434;
}

.entry-content .list-item-location {
	margin: 0 0 3px;
}

.list-item-time,
.list-item-company {
	font-size: 13px;
	color: #828282;
	margin: 0;
	display: inline-block;
	vertical-align: middle;
}

.list-item-callout .list-item-time, .list-item-callout
.list-item-company {
	color: #fff;
}

.list-item-sm .list-item-time, .list-item-sm
.list-item-company {
	font-size: 12px;
}

.list-item-sm .list-item-company {
	max-width: 140px;
}

.list-item-tag {
	margin-right: 5px;
}

.list-item-secondary-wrap {
	background-color: #00c6ff;
	padding: 30px;
	text-align: center;
}

.list-item-secondary-wrap:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom: 2px solid #e9e9e9;
}

.no_job_listings_found {
	list-style: none;
	text-align: center;
	padding: 30px;
	background-color: #fff;
}

/* Custom Filters
=================================== */
.item-filters-array {
	margin: 0;
	padding: 0;
}

.item-filter {
	display: block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e9e9e9;
	line-height: normal;
	background-color: #fff;
}

.item-filter:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.item-filter:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-width: 2px;
}

.item-filter input:not([type="checkbox"]), .item-filter input:not([type="radio"]) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.checkbox-filter-label {
	margin: 0;
	padding: 12px;
	display: block;
	cursor: pointer;
	position: relative;
	top: 2px;
	color: #828282;
}

.checkbox-filter-label::before {
	content: "";
	width: 18px;
	height: 18px;
	background-color: #e9e9e9;
	position: absolute;
	right: 12px;
	border-radius: 2px;
	-webkit-transition: background-color .18s ease;
	transition: background-color .18s ease;
}

.checkbox-filter-label::after {
	font-family: "FontAwesome";
	content: "\f00c";
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 12px;
	color: #fff;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	-webkit-transition: opacity .18s ease, -webkit-transform .18s ease;
	transition: opacity .18s ease, -webkit-transform .18s ease;
	transition: opacity .18s ease, transform .18s ease;
	transition: opacity .18s ease, transform .18s ease, -webkit-transform .18s ease;
}

.item-filter-tag {
	margin-left: -12px;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	display: inline-block;
	height: 18px;
	padding: 2px 20px 2px 15px;
	min-width: 96px;
	position: relative;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
	-webkit-transition: color .18s ease .075s;
	transition: color .18s ease .075s;
}

.item-filter-tag-bg {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: #00c6ff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	-webkit-transform: translateX(calc(-100% + 5px));
	-ms-transform: translateX(calc(-100% + 5px));
	transform: translateX(calc(-100% + 5px));
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease;
}

.checkbox-filter {
	position: absolute;
	left: -9999px;
}

.checkbox-filter:checked + label::before {
	background-color: #00c6ff;
}

.checkbox-filter:checked + label::after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.checkbox-filter:checked + label .item-filter-tag-badge {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	color: #fff;
}

.checkbox-filter:checked + label .item-filter-tag-bg {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

/* Tag & Filter Colors
=================================== */
.item-filter-tag-bg.job-type-clt,
.item-badge.job-type-clt {
	background-color: #1cbbb4;
}

.item-filter-tag-bg.job-type-presencial,
.item-badge.job-type-presencial {
	background-color: #1db954;
}
.item-filter-tag-bg.job-type-vip,
.item-badge.job-type-vip {
	background-color: #FFD700;
}

.item-filter-tag-bg.job-type-juridica,
.item-badge.job-type-juridica {
	background-color: #0072bc;
}

.item-filter-tag-bg.job-type-aprendiz,
.item-badge.job-type-aprendiz {
	background-color: #f26c4f;
}

.item-filter-tag-bg.job-type-estagio,
.item-badge.job-type-estagio {
	background-color: #630460;
}

.item-filter-tag-bg.job-type-temporario,
.item-badge.job-type-temporario {
	background-color: #edc214;
}

.item-filter-tag-bg.job-type-remoto,
.item-badge.job-type-remoto {
	background-color: #ed848f;
}

/* Entry Styles
=================================== */
.entry {
	margin: 0 0 200px;
}

.entry:only-of-type, .entry:last-child {
	margin: 0;
}

.entry:first-child img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.search-results .entry {
	margin-bottom: 60px;
}

.search-results .entry:last-child {
	margin-bottom: 0;
}

.entry-thumb {
	display: block;
	margin: -100px -100px 30px;
}

.entry-meta {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	margin-bottom: 10px;
}

.entry-time + .entry-categories::before {
	content: "\2022";
	display: inline-block;
	margin: 0 5px;
	opacity: .4;
}

.entry-title {
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 30px;
}

.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
	margin-top: 40px;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content iframe,
.entry-content blockquote,
.entry-content .fluid-width-video-wrapper {
	margin: 25px 0;
}

.entry-content .fluid-width-video-wrapper iframe {
	margin: 0;
}

.entry-content .mce-tinymce iframe {
	margin: 0;
}

.btn-read-more {
	margin-top: 20px;
}

.btn-apply-content {
	margin-top: 35px;
}

.search-notice {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.search-notice p:only-child {
	margin-bottom: 0;
}

.search-notice:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Entry Item Styles
=================================== */
.entry-related {
	margin: 50px 0 40px;
}

.entry-related:last-child {
	margin-bottom: 0;
}

.entry-item {
	background-color: #fff;
	font-size: 15px;
	border-bottom: 2px solid #e9e9e9;
	margin-bottom: 30px;
}

.entry-item p {
	margin-bottom: 0;
}

.entry-item-thumb img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.job_listing .entry-item-thumb {
	text-align: center;
	padding: 25px 10px 0;
}

.job_listing .entry-item-thumb img {
	border-radius: 0;
	position: relative;
	display: inline-block;
	width: auto;
	max-height: 90px;
}

.entry-item-content-wrap {
	padding: 25px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.entry-item-title {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -.025em;
	margin: -5px 0 10px;
}

/* Entry Sharing
=================================== */
.entry-share {
	display: inline-block;
	margin-left: 5px;
	color: #484848;
	font-weight: 700;
}

.entry-share:hover {
	color: inherit;
}

.entry-share-facebook {
	color: #3b5998;
}

.entry-share-twitter {
	color: #00acee;
}

.entry-share-google-plus {
	color: #0077b5;
}

.entry-share-linkedin {
	color: #dd4b39;
}

.entry-share-whatsapp {
	color: #25d366;
}

/* Pagination
=================================== */
.navigation {
	text-align: center;
	margin: 40px 0 0;
}

.navigation a,
.navigation span {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	display: inline-block;
	margin: 0 3px;
	padding: 9px 16px;
	font-size: 12px;
	color: #484848;
	background-color: #fff;
	border-radius: 3px;
	border-bottom: 2px solid #e9e9e9;
}

.navigation a:hover,
.navigation .current {
	background-color: #00c6ff;
	color: #fff;
}

.navigation .nav-links::after {
	content: "";
	display: table;
	clear: both;
}

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}

/* Landing Sections
=================================== */
.widget-section {
	padding: 100px 0;
	background-size: cover;
	background-position: top center;
}

.widget-section-pad-lg {
	padding: 150px 0;
}


.widget-section-dark {
	color: #fff;
}

.widget-section-overlay {
	position: relative;
}

.widget-section-overlay::before {
	content: "";
	background-color: rgba(47, 48, 67, 0.82);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.widget-section-title {
	text-align: center;
	font-size: 29px;
	margin-bottom: 30px;
	font-weight: normal;
}

.section-shape {
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	line-height: 0;
	direction: ltr;
}

.section-shape svg {
	display: block;
	width: calc(100% + 1px);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.section-shape-top {
	top: -1px;
}

.section-shape-bottom {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	bottom: -1px;
}

.section-shape-bg-color {
	fill: #f6f6f6;
}

/* Icon Items
=================================== */
.item-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 15px;
	display: inline-block;
	background-color: #00c6ff;
	color: #fff;
	border-radius: 50%;
	font-size: 21px;
	line-height: 58px;
}

.item-title {
	font-size: 18px;
	font-weight: bold;
}

/* Testimonial Items
=================================== */
.item-testimonial {
	text-align: center;
}

.item-testimonial > p {
	font-style: italic;
	font-family: Georgia, serif;
}

.item-cite {
	margin-top: 20px;
}

.item-cite img {
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 15px;
	width: 64px;
}

.item-cite-title {
	font-size: 18px;
	margin-bottom: 0;
}

.item-cite-subtitle {
	text-transform: uppercase;
	margin-bottom: 0;
	color: #828282;
	font-size: 12px;
	letter-spacing: 3.1px;
}

/* Social Icons
=================================== */
.list-social-icons {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-social-icons::after {
	content: "";
	display: table;
	clear: both;
}

.list-social-icons li {
	float: left;
	margin: 0 5px 3px 0;
}

.social-icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 28px;
	font-size: 16px;
	text-align: center;
	color: #828282;
	background-color: transparent;
	border: 2px solid #828282;
	border-radius: 50%;
	opacity: .7;
}

.social-icon:hover {
	color: #00c6ff;
	border-color: #00c6ff;
}

/* Message Boxes
=================================== */
.box-message {
	background-color: #e9e9e9;
	margin-bottom: 30px;
	padding: 15px;
	border-radius: 3px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
}

.box-message::before {
	content: "\f05a";
	font-size: 27px;
	font-family: FontAwesome;
	float: left;
	margin-right: 15px;
	line-height: 1;
}

.box-message p {
	margin-bottom: 10px;
}

.box-message ul {
	margin: 0;
	list-style: none;
	padding: 0;
	font-size: 14px;
}

.box-message p:last-child,
.box-message ul:last-child {
	margin-bottom: 0;
}

.box-message-success {
	background-color: #6ec772;
	color: #fff;
}

.box-message-success::before {
	content: "\f058";
}

.box-message-error {
	background-color: #ff5858;
	color: #fff;
}

.box-message-error::before {
	content: "\f06a";
}

/* -----------------------------------------
	05. Footer
----------------------------------------- */
.footer {
	padding: 60px 0 55px;
	background-color: #fff;
}

.footer-widgets {
	padding-bottom: 20px;
}

.footer-copy {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	font-weight: 400;
	border-top: 1px solid #e9e9e9;
	padding-top: 17px;
}

.footer-copy p {
	margin-bottom: 0;
}

/* -----------------------------------------
   06. Comments
----------------------------------------- */
#comments {
	margin: 0;
}

#comment-list {
	margin: 0;
	list-style: none;
	padding: 0;
}

#comment-list ol {
	list-style: none;
}

@media (max-width: 767px) {
	#comment-list ol {
		margin: 0;
		padding: 0;
	}
}

#comment-list .comment-body {
	margin-bottom: 20px;
	padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body {
	border-top: 0;
	padding-top: 0;
}

.post-comments {
	margin: 0 0 80px;
}

.post-comments > h3 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;
	font-weight: 700;
	margin-bottom: 35px;
}

.comment-author {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	font-size: 12px;
	margin-bottom: 5px;
}

.comment-author .avatar {
	width: 64px;
	height: 64px;
	float: left;
	margin: 0 15px 15px 0;
	overflow: visible;
	border-radius: 3px;
}

@media (max-width: 543px) {
	.comment-author .avatar {
		display: none;
	}
}

.comment-content {
	overflow: hidden;
	zoom: 1;
	font-size: 14px;
}

.comment-metadata {
	font-size: 12px;
	margin: 0 0 5px;
}

.comment-reply-link {
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 10px;
	margin-left: 80px;
	height: auto;
	width: auto;
}

@media (max-width: 767px) {
	.comment-reply-link {
		margin: 0;
	}
}

.bypostauthor > article .fn::before {
	font-family: FontAwesome;
	content: "\f005";
	margin: 0 2px 0 -2px;
	position: relative;
	top: -1px;
	font-size: 11px;
}

#cancel-comment-reply-link {
	font-size: 13px;
	font-weight: normal;
	margin-left: 5px;
}

.comment-respond > h3 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	display: block;
	margin-bottom: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.form-allowed-tags,
.comment-notes {
	font-size: 14px;
	line-height: 1.5;
	opacity: .7;
}

.form-submit {
	margin-bottom: 0;
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */
.widget {
	margin: 0 0 55px;
	font-size: 13px;
	/* Nullify bottom margin for last elements in widgets and sidebars */
}

.footer .widget {
	margin-bottom: 35px;
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.widget p:last-child {
	margin-bottom: 0;
}

.widget select {
	width: 100%;
	padding: 5px 10px;
	border-radius: 0;
	border: 1px solid #e9e9e9;
}

.widget-title {
	font-size: 14px;
	font-weight: 700;
	color: #343434;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding: 0;
}

.widget-title label {
	text-transform: none;
	display: block;
	font-size: inherit;
	margin: 0;
	line-height: inherit;
	font-weight: inherit;
}

/* WIDGET: #Apply Button Widget
========================================= */
.widget_ci-apply-button-widget:first-child {
	margin-top: -100px;
	margin-bottom: 90px;
}

/* WIDGET: #Company Info Widget
========================================= */
.card-info-media {
	margin-bottom: 20px;
}

.card-info-media::after {
	content: "";
	display: table;
	clear: both;
}

.card-info-thumb {
	float: left;
	width: 66px;
	height: 66px;
	margin-right: 15px;
	border-radius: 3px;
	background-color: #fff;
	padding: 3px;
	border-bottom: 2px solid #e9e9e9;
}

.card-info-thumb img {
	border-radius: 2px;
	position: relative;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	display: inline-block;
}

.card-info-title {
	font-size: 16px;
	line-height: normal;
	margin-bottom: 3px;
}

.card-info-link {
	font-size: 12px;
	margin-bottom: 5px;
}

.card-info-socials {
	font-size: 14px;
	margin: 0;
}

.card-info-socials a {
	display: inline-block;
	margin-right: 5px;
}

/* WIDGET: #Company Info Widget
========================================= */
.callout-wrapper {
	padding: 35px 30px;
	background-color: #fff;
	border-radius: 3px;
	border-bottom: 2px solid #e9e9e9;
	text-align: center;
}

.callout-wrapper p {
	font-size: 15px;
	margin-bottom: 8px;
	line-height: 1.35;
}

.callout-wrapper .text-secondary {
	font-weight: 400;
	margin-bottom: 20px;
	font-size: 11px;
}

.callout-thumb {
	margin-bottom: 17px;
}

/* WIDGET: #List Widgets
========================================= */
.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul,
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul ul {
	margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	line-height: normal;
	display: block;
	position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_nav_menu li a,
.widget_recent_entries li a {
	color: #828282;
	display: inline-block;
	margin: 0 3px 6px 0;
}

.widget_meta li a:hover,
.widget_pages li a:hover,
.widget_categories li a:hover,
.widget_archive li a:hover,
.widget_nav_menu li a:hover,
.widget_recent_entries li a:hover {
	color: #00c6ff;
}

.widget_recent_comments ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_recent_comments li {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid #e9e9e9;
}

.widget_pages select,
.widget_categories select,
.widget_archive select {
	display: block;
	width: 100%;
	padding: 6px 15px;
	border-radius: 0;
	font-size: 14px;
	height: 40px;
	font-weight: normal;
	border: 1px solid #e9e9e9;
	background: #fff;
}

/* WIDGET: #Search
========================================= */
.searchform > div {
	position: relative;
}

.searchform .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-left: 20px;
	padding-right: 20px;
}

/* WIDGET: #Text Widget
========================================= */
.widget_text p:last-child {
	margin-bottom: 0;
}

/* WIDGET: #Calendar
================================================== */
#wp-calendar {
	width: 100%;
}

#wp-calendar a {
	font-weight: bold;
	font-style: italic;
}

#wp-calendar caption {
	text-align: left;
	margin-top: 10px;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
	padding: 9px;
}

#wp-calendar thead {
	font-size: 10px;
}

#wp-calendar thead th {
	background: rgba(0, 0, 0, 0.1);
	font-weight: bold;
	padding: 8px;
}

#wp-calendar tbody td {
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 3px;
}

#wp-calendar tbody td:hover {
	background: rgba(0, 0, 0, 0.1);
}

#wp-calendar tbody .pad {
	background: none;
}

#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
}

#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */
/* WordPress Galleries
=================================== */
.gallery {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 25px;
}

.gallery-item {
	margin-bottom: 10px;
}

.gallery-item img {
	width: 100%;
	max-width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-1 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.33333%;
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 20%;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 767px) {
	.gallery-columns-5 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-6 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 16.66667%;
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

@media (max-width: 767px) {
	.gallery-columns-6 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-7 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 14.28571%;
	-ms-flex: 0 0 14.28571%;
	flex: 0 0 14.28571%;
	max-width: 14.28571%;
}

@media (max-width: 991px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-8 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 12.5%;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%;
}

@media (max-width: 991px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-9 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 11.11111%;
	-ms-flex: 0 0 11.11111%;
	flex: 0 0 11.11111%;
	max-width: 11.11111%;
}

@media (max-width: 991px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 0 5px;
	max-height: 50%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: calc(100% - 10px);
	-webkit-transition: opacity .18s ease;
	transition: opacity .18s ease;
}

.gallery-caption::before {
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/* WordPress Classes
=================================== */
/* Alignment */
.alignnone {
	margin: 5px 0 20px;
}

p .alignnone {
	margin-bottom: 0;
}

.aligncenter {
	display: block;
	margin: 7px auto;
}

.alignright {
	float: right;
	margin: 7px 0 7px 24px;
}

.alignleft {
	float: left;
	margin: 7px 24px 7px 0;
}

/* Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text {
	font-size: 12px;
	line-height: 17px;
	margin: 3px 0 0;
	padding: 5px 0 0;
	text-align: left;
}

.sticky {
	/* Provide sticky styles */
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */
.mm-page {
	position: static;
}

.mm-opened .mm-page {
	position: relative;
}

#mobilemenu {
	display: none;
}

@media (max-width: 991px) {
	#mobilemenu {
		display: block;
	}
}

.mobile-nav-trigger {
	display: none;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
	padding: 5px 0;
}

.mobile-nav-trigger:hover, .mobile-nav-trigger:focus {
	color: #fff;
}

.mobile-nav-trigger .fa {
	margin-right: 5px;
}

/* Mobile Triggers
=================================== */
.mobile-triggers {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	background-color: #fff;
	border-top: 1px solid #e9e9e9;
	display: none;
	z-index: 99;
}

.mobile-triggers::after {
	content: "";
	display: table;
	clear: both;
}

.mobile-trigger {
	text-transform: uppercase;
	font-size: 11px;
	line-height: normal;
	font-weight: 700;
	color: #828282;
	font-size: 13px;
	width: 50%;
	float: left;
	padding: 12px 10px;
}

.mobile-trigger:hover {
	color: #00c6ff;
}

.mobile-trigger:hover, .mobile-trigger:focus {
	color: #828282;
}

.mobile-trigger:first-child {
	border-right: 1px solid #e9e9e9;
}

.mobile-trigger .fa {
	margin-right: 7px;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */
/* Jetpack Sharing */
.sharedaddy {
	margin-top: 30px;
}

/* WP Instagram */
.null-instagram-feed p {
	padding-top: 10px;
}

.widget .instagram-pics {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget .instagram-pics::after {
	content: "";
	display: table;
	clear: both;
}

.widget .instagram-pics li {
	border-bottom: 0;
	padding: 0;
	float: left;
	width: 33.33333333333%;
}

.widget .instagram-pics li a {
	display: block;
	color: #484848;
}

/* jQuery Chosen
===================================== */
.chosen-container {
	font-size: 15px;
	max-width: 100%;
	color: #484848;
}

.chosen-container .chosen-single {
	color: #484848;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
	line-height: 24px;
	border: 2px solid #e9e9e9;
	border-radius: 3px;
	padding: 6px 12px;
	height: 42px;
	box-shadow: none;
	background-color: #fff;
	background-image: none;
}

.chosen-container .chosen-single div b {
	background: none;
	position: relative;
}

.chosen-container .chosen-single div b::before {
	font-family: FontAwesome;
	content: '\f107';
	position: relative;
	top: 6px;
}

.ci-select .chosen-container .chosen-single div b::before {
	display: none;
}

.chosen-container .chosen-drop {
	border: 2px solid #e9e9e9;
	border-top: none;
	margin-top: -2px;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
}

.chosen-container .chosen-results li {
	font-size: 15px;
}

.chosen-container .chosen-results li.highlighted {
	background: #00c6ff;
	border-radius: 2px;
}

.chosen-container-single .chosen-search {
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	line-height: normal;
}

.chosen-container-single .chosen-search::after {
	font-family: FontAwesome;
	content: '\f002';
	position: absolute;
	right: 20px;
	top: 13px;
	opacity: 0.6;
}

.chosen-container-single .chosen-search input[type="text"] {
	height: 36px;
	border-color: #e9e9e9;
	border-width: 2px;
	border-radius: 3px;
	background: none;
}

.chosen-container-multi .chosen-choices {
	color: #484848;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
	line-height: 30px;
	border: 2px solid #e9e9e9;
	border-radius: 3px;
	padding: 3px 6px;
	min-height: 42px;
	box-shadow: none;
	background-color: #fff;
	background-image: none;
}

.chosen-container-multi .chosen-choices li.search-choice {
	font-size: 10px;
	text-transform: uppercase;
	padding: 6px 20px 6px 10px;
	background: #e9e9e9;
	border: 0;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
	top: 7px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	background: #fff;
	border: 2px solid #e9e9e9;
}

/* WP Job Manager Plugin
====================================== */
div.job_listings {
	margin-bottom: 0;
}

.entry-content .job_listing_preview_title .button,
.job_listing_preview_title .button {
	padding: 5px 16px;
	font-size: 11px;
	height: auto;
}

.single_job_listing .application .application_button {
	position: relative;
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease, .18s opacity ease;
	transition: .18s background-color ease, .18s color ease, .18s border-color ease, .18s opacity ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-image: none;
	text-transform: uppercase;
	background-color: #00c6ff;
	border: 2px solid transparent;
	color: #fff;
	font-weight: 700;
	border-radius: 3px;
	padding: 11px 38px;
	font-size: 13px;
	height: 42px;
}

.single_job_listing .application .application_button:active {
	outline: none;
}

.single_job_listing .application .application_button:hover {
	color: #fff;
	background-color: #00bef5;
	text-decoration: none;
}

.job-listing-meta {
	margin: 0;
	padding: 0;
}

.job-listing-meta li {
	text-transform: uppercase;
	font-size: 11px;
	list-style: none;
}

.company_video {
	margin-top: 20px;
	background-color: #fff;
	padding: 5px;
	border-bottom: 2px solid #e9e9e9;
	border-radius: 3px;
}

.google_map_link::before {
	font-family: FontAwesome;
	content: '\f041';
	margin-right: 5px;
	font-size: .9em;
	opacity: .7;
}

.widget ul.job_listings {
	border-top: 0;
}

.widget ul.job_listings li.job_listing {
	border-bottom-color: #e9e9e9;
	background-color: #fff;
	padding: 10px;
}

.footer .widget ul.job_listings li.job_listing {
	padding-left: 0;
	padding-right: 0;
}

.widget ul.job_listings li.job_listing:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.widget ul.job_listings li.job_listing:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.widget ul.job_listings li.job_listing a {
	padding: 0;
	background: none;
}

.widget ul.job_listings li.job_listing a:hover, .widget ul.job_listings li.job_listing a:focus {
	background: none;
}

.widget:not(.widget_featured_jobs) ul.job_listings li.job_listing.job_position_featured {
	background-color: #fffded;
	padding-left: 10px;
	padding-right: 10px;
}

.job-manager-jobs tr:hover .job-dashboard-actions {
	visibility: visible;
}

.job-dashboard-actions {
	list-style: none;

	margin: 0;
	padding: 0;
	visibility: hidden;
}

.job-dashboard-actions li {
	display: inline-block;
	font-size: 13px;
}

.job-dashboard-actions li::after {
	content: "\2022";
	opacity: .6;
	margin: 0 5px;
	font-size: .9em;
}

.job-dashboard-actions li:last-child::after {
	display: none;
}

.job-dashboard-action-delete {
	color: red;
}

/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */
.sidebar-wrap {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	width: 80%;
	max-width: 330px;
	padding: 65px 0 0;
	background-color: #f6f6f6;
	border-left: 1px solid #e9e9e9;
	z-index: 100;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease;
}

.sidebar-wrap .sidebar {
	max-height: 100%;
	overflow-y: scroll;
	padding: 0 25px 25px;
	margin: 0;
}

.sidebar-wrap-visible {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.sidebar-wrap-header,
.form-filter-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: right;
	background-color: #fff;
	height: 40px;
}

.sidebar-wrap-dismiss,
.form-filter-dismiss {
	display: inline-block;
	font-size: 30px;
	color: #343434;
	line-height: normal;
	position: relative;
	right: 15px;
}

.sidebar-wrap-dismiss:hover,
.form-filter-dismiss:hover {
	color: #343434;
}

@media (min-width: 992px) {
	.sidebar-wrap:not(.sidebar-fixed-default) {
		position: static;
		padding: 0;
		border: 0;
		width: auto;
		max-width: none;
		background-color: transparent;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.sidebar-wrap:not(.sidebar-fixed-default) .sidebar-wrap-header {
		display: none;
	}
	.sidebar-wrap:not(.sidebar-fixed-default) .sidebar {
		padding: 0;
		max-height: none;
		overflow-y: visible;
	}
	.form-filter-header {
		display: none;
	}
}

@media (max-width: 1199px) {
	.content-wrap {
		padding: 50px;
	}
	.entry {
		margin-bottom: 130px;
	}
	.entry-thumb {
		margin-top: -50px;
		margin-right: -50px;
		margin-left: -50px;
	}
	.entry-item {
		background-color: transparent;
		border: 0;
		margin-bottom: 40px;
	}
	.entry-item::after {
		content: "";
		display: table;
		clear: both;
	}
	.entry-item-thumb {
		float: left;
		width: 200px;
		margin-right: 20px;
	}
	.entry-item-thumb img {
		border-radius: 3px;
	}
	.job_listing .entry-item-thumb {
		padding: 0;
	}
	.entry-item-content-wrap {
		padding: 0;
		overflow: hidden;
		font-size: 13px;
	}
	#job-manager-alerts {
		overflow-x: scroll;
	}
	#job-manager-alerts .job-manager-alerts {
		font-size: 14px;
	}
	#job-manager-alerts .job-manager-alerts .job-alert-actions {
		margin-top: 10px;
		padding: 2px 10px;
		background-color: rgba(233, 233, 233, 0.35);
		visibility: visible;
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	.navigation-main {
		display: none;
	}
	.mobile-nav-trigger {
		display: inline-block;
	}
	.mobile-triggers {
		display: block;
	}
	.form-filter {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		width: 80%;
		padding-top: 60px;
		max-width: 300px;
		background-color: #f6f6f6;
		color: #484848;
		z-index: 200;
		border-right: 1px solid #e9e9e9;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: -webkit-transform .25s ease;
		transition: -webkit-transform .25s ease;
		transition: transform .25s ease;
		transition: transform .25s ease, -webkit-transform .25s ease;
	}
	.form-filter input,
	.form-filter .ci-select {
		margin-bottom: 25px;
	}
	.form-filter select {
		background-color: #fff;
	}
	.form-filter-visible {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.page-hero {
		height: 300px;
	}
	.page-hero-lg {
		height: 380px;
	}
	.page-hero-xl {
		height: 540px;
	}
	.page-hero-content {
		margin: 0;
	}
	.page-hero-lg .page-hero-content {
		margin-top: 35px;
	}
	.page-title {
		font-size: 34px;
	}
	.section-title-compliment .sidebar-wrap-trigger {
		display: none;
	}
	.sidebar {
		margin-top: 50px;
	}
	.sidebar .widget_ci-apply-button-widget {
		display: none;
	}
	.main-elevated .sidebar {
		margin-top: 50px;
	}
	.form-field-inline label,
	.form-field-inline .field {
		float: none;
		width: auto;
	}
	.widget-section-split img {
		max-height: 400px;
	}
	.widget-section-split .text-right,
	.widget-section-split .text-left {
		text-align: center;
	}
	.widget-section-split .text-right {
		margin-bottom: 30px;
	}
	.widget-section-split .text-left {
		margin-top: 30px;
	}
}

@media (max-width: 767px) {
	.site-logo {
		max-width: 180px;
	}
	.content-wrap-footer .text-right {
		text-align: left;
		margin-top: 10px;
	}
	.entry-title {
		font-size: 26px;
		margin-bottom: 20px;
	}
	.entry-related {
		margin: 30px 0 10px;
	}
	.comment-author .avatar {
		display: none;
	}
	.footer {
		padding-bottom: 30px;
	}
	#job-manager-job-dashboard {
		overflow-x: scroll;
	}
	#job-manager-job-dashboard .job-manager-jobs {
		font-size: 14px;
	}
	#job-manager-job-dashboard .job-manager-jobs .job_title {
		min-width: 250px;
	}
	#job-manager-job-dashboard .job-manager-jobs .filled {
		width: 40px;
	}
	#job-manager-job-dashboard .job-manager-jobs .date,
	#job-manager-job-dashboard .job-manager-jobs .expires {
		min-width: 120px;
	}
	#job-manager-job-dashboard .job-manager-jobs .job-dashboard-actions {
		margin-top: 10px;
		padding: 2px 10px;
		background-color: rgba(233, 233, 233, 0.35);
		visibility: visible;
		font-size: 12px;
	}
	.job-manager-form fieldset {
		margin-bottom: 5px;
	}
	.job-manager-form fieldset label {
		float: none;
		width: 100%;
		display: block;
	}
	.job-manager-form fieldset div.field {
		float: none;
		width: 100%;
		display: block;
	}
}

@media (max-width: 543px) {
	.header {
		padding: 15px 0;
	}
	.page-hero {
		height: 230px;
	}
	.page-hero .page-hero-content {
		margin-top: 25px;
	}
	.page-hero .page-title {
		font-size: 26px;
	}
	.page-hero-lg {
		height: 300px;
	}
	.page-hero-lg .page-hero-content {
		margin-top: 40px;
	}
	.page-hero-lg .page-title {
		font-size: 28px;
	}
	.page-hero-lg .page-title br {
		display: none;
	}
	.page-hero-xl {
		height: 440px;
	}
	.page-hero-content br {
		display: none;
	}
	.main {
		padding: 40px 0;
	}
	.widget-section {
		padding: 55px 0;
	}
	.widget-section-pad-lg {
		padding: 75px 0;
	}
	.content-wrap {
		padding: 15px;
	}
	.entry {
		margin-bottom: 60px;
	}
	.entry-title {
		font-size: 24px;
	}
	.entry-thumb {
		margin-top: -15px;
		margin-left: -15px;
		margin-right: -15px;
	}
	.entry-related {
		margin: 25px 0;
	}
	.entry-item-thumb {
		float: none;
		margin-bottom: 20px;
	}
	.job_listing .entry-item-thumb {
		text-align: left;
	}
	.post-comments {
		margin-bottom: 40px;
	}
	.navigation a,
	.navigation span {
		padding: 5px 9px;
	}
	/* List Items */
	.list-item {
		padding: 23px 15px 27px;
	}
	.list-item-main-info {
		margin-right: 10px;
	}
	.list-item-title {
		font-size: 18px;
	}
	.list-item-secondary-info {
		max-width: 30%;
	}
	.list-item-location {
		font-size: 13px;
	}
	.list-item-callout {
		display: block;
		text-align: center;
	}
	.list-item-callout .list-item-secondary-info {
		max-width: none;
		text-align: center;
		margin-top: 15px;
	}
	/* Footer */
	.footer {
		padding: 40px 0 50px;
	}
	.footer-copy {
		text-align: center;
	}
	.footer-copy .text-right {
		text-align: center;
		margin-top: 5px;
	}
	
	#lista {
	display:none;
	}
	
	
	
}
