.hidden {
	display: none;
}

.page-wrapper {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 7.5vw;
	padding-right: 7.5vw
}

@media screen and (min-width:968px) {
	.page-wrapper {
		display: flex;
		flex-flow: row wrap;
		max-width: 968px;
		margin-left: auto;
		margin-right: auto;
		align-items: center
	}
}

@font-face {
	font-family: Avaunt;
	font-style: "normal";
	font-weight: "normal";
	src: url(AvauntStencil-Bold.woff) format("woff"), url(AvauntStencil-Bold.woff2) format("woff2")
}

.row {
	width: 100%
}

.row:after,
.row:before {
	content: "";
	display: table
}

.row:after {
	clear: both
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

body {
	line-height: 1
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

a {
	color: #000
}

body {
	font-size: 14px;
	line-height: 21px;
	font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
	color: #242424;
	-webkit-text-size-adjust: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	touch-action: manipulation
}

img {
	max-width: 100%;
	font-style: italic;
	vertical-align: middle;
	display: block
}

.meta {
	font-size: .6em;
	line-height: 1em;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: 4em;
	margin-bottom: 2em
}

h1,
h2,
h3 {
	font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif
}

h1 {
	font-size: 3.1em;
	line-height: 1.16666em;
	font-weight: 400
}

h2 {
	font-size: 1.5em;
	text-align: center;
	line-height: 1.35em
}

@media screen and (min-width:768px) {
	h2 {
		font-size: 1.8em
	}
}

h3 {
	font-size: 1.45em;
	line-height: 1.3em
}

h3 span {
	display: inline-block;
	text-decoration: underline
}

.column h3:first-of-type {
	margin-bottom: 1em
}

h4 {
	font-size: 1.05em;
	font-weight: 700;
	padding-bottom: 8px
}

h4:not(:first-child) {
	padding-top: 90px
}

h5 {
	font-size: .9em;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-weight: 700;
	padding-top: 1.5em
}

p.teaser__text {
	margin-top: 1em
}

.m-newsletter p.teaser__text {
	width: 80%;
	margin: 1em auto 0
}

p strong, p b {
	font-size: .85em;
	letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.site-logo-link {
	width: 100px;
	height: 45px;
	margin: 14px 0;
	background-image: url(../../img/logo.png);
	background-repeat: no-repeat;
	background-position: 0;
	background-size: contain
}

.site-nav {
	float: right;
	margin-left: auto
}

.header--fixed {
	position: fixed;
	z-index: 4;
	right: 0;
	left: 0;
	top: 0
}

.headroom--not-top {
	background-color: #fff
}

.headroom--not-top a {
	position: relative
}

.headroom--not-top a .letter {
	background-size: 70%;
	width: 33px
}

.headroom--not-top .line2 {
	height: 8px;
	top: -3px;
	width: 2px
}

@media screen and (min-width:968px) {
	.headroom--not-top a {
		margin-bottom: 15px;
		margin-top: 15px
	}
}

.animated {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	will-change: transform, opacity
}

@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: .8
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

@keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: .8
	}
	to {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

.animated.slideDown {
	-webkit-animation-name: slideDown;
	animation-name: slideDown
}

@-webkit-keyframes slideUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
	to {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: .8
	}
}

@keyframes slideUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
	to {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		opacity: .8
	}
}

.animated.slideUp {
	-webkit-animation-name: slideUp;
	animation-name: slideUp
}

.main-nav {
	display: none
}

.site-head {
	float: right
}

.site-head .desktop-main-nav {
	display: none
}

.site-head .desktop-main-nav a {
	text-decoration: none
}

.site-head .desktop-main-nav a.uppercase {
	font-size: .8em;
	text-transform: uppercase;
	letter-spacing: 1px
}

.site-head .desktop-main-nav a.search {
	display: block;
	background-image: url(aebde1e69b05bc2690feb9ade5e2d799.png);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	width: 17px;
	height: 17px;
	top: 5px;
	position: relative
}

.site-head .desktop-main-nav ul {
	margin-left: auto;
	margin-top: 30px;
	margin-bottom: 1.5em
}

.site-head .desktop-main-nav ul li {
	display: inline-block;
	padding-left: 10px
}

.site-head .desktop-main-nav ul li.padding-left {
	padding-left: 40px
}

.site-head .desktop-secondary-nav {
	display: none;
	background-color: #f8f8f8
}

.site-head .desktop-secondary-nav ul {
	width: 100%;
	text-align: center
}

.site-head .desktop-secondary-nav ul li {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: Monaco, Courier New, Courier, monospace;
	padding: 20px 10px
}

.site-head .desktop-secondary-nav ul li a {
	font-size: .75em;
	text-decoration: none
}

.site-head .mobile-main-nav {
	display: block
}

.site-head .mobile-main-nav .page-wrapper {
	justify-content: space-between;
	margin: 30px auto 15px
}

.site-head .mobile-main-nav a.hamburger {
	font-size: 18px;
	text-decoration: none
}

.site-head .mobile-main-nav a.hamburger button {
	padding-right: 0
}

@media screen and (min-width:968px) {
	.site-head .mobile-main-nav {
		display: none
	}
}

@media screen and (min-width:968px) {
	.site-head .desktop-main-nav {
		display: block
	}
	.site-head .desktop-main-nav ul li {
		padding-left: 10px
	}
	.site-head .desktop-secondary-nav {
		display: block
	}
}

@media screen and (min-width:1024px) {
	.site-head .desktop-main-nav ul li {
		padding-left: 15px
	}
}

a.selected {
	font-weight: 700;
	border-bottom: 1px solid #000
}

.menu {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100vw;
	height: calc(100vh - 75px);
	background-color: #fff;
	opacity: 0;
	z-index: -1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .4s cubic-bezier(.645, .045, .355, 1)
}

.menu a {
	text-decoration: none
}

.menu .page-wrapper>ul {
	margin-top: 1em
}

.menu li {
	font-size: 18px;
	padding: .5em 0
}

.menu li.expandable>a:after {
	display: inline-block;
	padding-left: .5em;
	content: "+"
}

.menu li.expandable ul {
	display: none
}

.menu li.expandable.is-open>a:after {
	content: "\2013"
}

.menu li.expandable.is-open ul {
	display: block
}

.menu li.expandable.is-open ul li {
	padding-left: 1em;
	font-size: 17px
}

.menu li.expandable.is-open ul li:first-child {
	margin-top: .75em
}

.is-open .menu {
	opacity: 1;
	z-index: 3
}

footer {
	background-color: #f8f8f8;
	padding-top: 30px;
	padding-bottom: 30px;
	margin: 1em auto 0
}

footer:after,
footer:before {
	content: "";
	display: table
}

footer:after {
	clear: both
}

footer .page-wrapper {
	display: block
}

footer p.header {
	display: block;
	clear: both;
	float: left;
	width: 100%;
	line-height: 34px
}

footer .col {
	margin-bottom: 30px
}

footer .col:last-child {
	margin-bottom: 0
}

@media screen and (min-width:768px) {
	footer {
		padding-top: 90px;
		padding-bottom: 90px
	}
	footer .col {
		margin-bottom: 0
	}
	footer .disclaimer {
		width: calc(42.81429% - 22.85714px)
	}
	footer .disclaimer:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	footer .disclaimer:last-child {
		margin-right: 0
	}
	footer .disclaimer:nth-child(14n) {
		margin-right: 0;
		float: right
	}
	footer .disclaimer:nth-child(14n+1) {
		clear: both
	}
	footer .links {
		width: calc(21.40714% - 31.42857px);
		margin-left: calc(7.13571% + 2.85714px) !important
	}
	footer .links:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	footer .links:last-child {
		margin-right: 0
	}
	footer .links:nth-child(14n) {
		margin-right: 0;
		float: right
	}
	footer .links:nth-child(14n+1) {
		clear: both
	}
	footer .links a {
		text-decoration: none
	}
}

.o-ingress p.ingress {
	font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
	font-size: 1.2em;
	line-height: 1.4em
}

@media screen and (min-width:968px) {
	.o-ingress {
		font-size: 1.4em;
		line-height: 1.35em
	}
	.o-ingress p.ingress {
		width: calc(74.925% - 10px);
		margin-left: calc(7.4925% + 3px) !important
	}
	.o-ingress p.ingress:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-ingress p.ingress:last-child {
		margin-right: 0
	}
	.o-ingress p.ingress:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.o-ingress p.ingress:nth-child(12n+1) {
		clear: both
	}
}

.o-newsletter {
	position: relative;
	background-color: #f8f8f8;
	padding: 30px 0
}

.o-newsletter p.teaser__text {
	width: 80%;
	margin-left: auto;
	margin-right: auto
}

.o-newsletter .cta {
	margin-top: 30px
}

@media screen and (min-width:768px) {
	.o-newsletter {
		padding: 70px 0
	}
	.o-newsletter p.teaser__text {
		width: 60%
	}
}

.inner__wrap {
	text-align: center;
	margin: 0 auto
}

.form,
.inner__wrap {
	transition: all .2s ease-out
}

.form {
	position: relative;
	z-index: 3
}

.input {
	font-size: 1.2em;
	line-height: 1.41667em;
	height: 1.7em;
	text-align: center;
	width: 60%;
	background: none;
	border: none;
	border-bottom: 1px solid #ededed;
	margin-bottom: 1.17647em;
	display: inline-block
}

.input:focus {
	outline: 0
}

@media screen and (min-width:1024px) {
	.input {
		margin-top: 1em;
		font-size: 1.5em;
		line-height: 2.17647em
	}
}

.news-list.paddingTop {
	padding-top: 2em
}

@media screen and (min-width:768px) {
	.news-list.paddingTop {
		padding-top: 90px
	}
}

.news-list>li {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 1.2em;
	padding-bottom: 1.2em;
	border-bottom: 1px solid #242424
}

.news-list>li figure {
	width: calc(37.4625% - 18.75px);
	padding-bottom: 25px
}

.news-list>li figure:nth-child(1n) {
	float: left;
	margin-right: 30px;
	clear: none
}

.news-list>li figure:last-child {
	margin-right: 0
}

.news-list>li figure:nth-child(2n) {
	margin-right: 0;
	float: right
}

.news-list>li figure:nth-child(odd) {
	clear: both
}

.news-list>li figure figcaption {
	display: block;
	font-size: .9em;
	line-height: 1.2em;
	margin-top: 1em
}

.news-list>li .news__text {
	display: none;
	margin-top: 1em
}

.news-list>li a {
	position: relative
}

.news-list>li a span {
	width: 80%
}

.news-list>li a.news__title:before {
	content: "+";
	position: absolute;
	right: 0;
	bottom: 0
}

.news-list>li a.news__title.opened:before {
	content: "\2013"
}

.news__title {
	font-size: 1.05em;
	line-height: 1.42857em;
	text-decoration: none;
	display: block;
	width: 100%
}

.cta {
	margin-top: 1.5em
}

@media screen and (min-width:768px) {
	.news__text {
		margin-top: 60px;
		margin-bottom: 30px
	}
	.news__text .textBlock__inner {
		width: calc(58.275% - 16.66667px);
		margin-left: calc(8.325% + 3.33333px) !important
	}
	.news__text .textBlock__inner:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.news__text .textBlock__inner:last-child {
		margin-right: 0
	}
	.news__text .textBlock__inner:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.news__text .textBlock__inner:nth-child(12n+1) {
		clear: both
	}
}

.o-featuredPost.option1 {
	background-color: #f8f8f8;
	z-index: 1;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.o-featuredPost.option1:after,
.o-featuredPost.option1:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 50vw;
	z-index: 2
}

.o-featuredPost.option1:before {
	right: 0;
	z-index: 0;
	background-color: #03ff9c
}

.o-featuredPost.option1:after {
	z-index: 1;
	right: 0;
	background-position: 50%;
	background-size: cover;
	background-image: url(../../img/banner.jpg);
	opacity: .3
}

.o-featuredPost.option1 .page-wrapper {
	width: 100%;
	position: relative
}

.o-featuredPost.option1 div.article,
.o-featuredPost.option1 div.encontro {
	width: 49.95%;
	z-index: 3
}

.o-featuredPost.option1 div.article:nth-child(1n),
.o-featuredPost.option1 div.encontro:nth-child(1n) {
	float: left;
	margin-right: 0;
	clear: none
}

.o-featuredPost.option1 div.article:last-child,
.o-featuredPost.option1 div.encontro:last-child {
	margin-right: 0
}

.o-featuredPost.option1 div.article:nth-child(2n),
.o-featuredPost.option1 div.encontro:nth-child(2n) {
	margin-right: 0;
	float: right
}

.o-featuredPost.option1 div.article:nth-child(odd),
.o-featuredPost.option1 div.encontro:nth-child(odd) {
	clear: both
}

.o-featuredPost.option1 div.article {
	position: relative;
	padding: 70px 0
}

.o-featuredPost.option1 div.article .article__inner {
	width: calc(74.925% - 10px);
	text-align: center
}

.o-featuredPost.option1 div.article .article__inner:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.o-featuredPost.option1 div.article .article__inner:last-child {
	margin-right: 0
}

.o-featuredPost.option1 div.article .article__inner:nth-child(4n) {
	margin-right: 0;
	float: right
}

.o-featuredPost.option1 div.article .article__inner:nth-child(4n+1) {
	clear: both
}

.o-featuredPost.option1 div.article .article__inner h3 {
	margin-top: 30px;
	margin-bottom: 60px
}

.o-featuredPost.option1 div.article .article__inner a {
	text-decoration: none
}

.o-featuredPost.option1 div.encontro {
	position: relative
}

.o-featuredPost.option1 div.encontro div.encontro__inner {
	margin-left: calc(24.975% + 10px) !important;
	width: calc(59.94% - 16px);
	max-height: 300px;
	top: 50%;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.o-featuredPost.option1 div.encontro div.encontro__inner:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.o-featuredPost.option1 div.encontro div.encontro__inner:last-child {
	margin-right: 0
}

.o-featuredPost.option1 div.encontro div.encontro__inner:nth-child(10n) {
	margin-right: 0;
	float: right
}

.o-featuredPost.option1 div.encontro div.encontro__inner:nth-child(10n+1) {
	clear: both
}

.o-featuredPost.option2 {
	background-color: #f8f8f8;
	z-index: 1;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.o-featuredPost.option2:after,
.o-featuredPost.option2:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100vw;
	z-index: 2
}

.o-featuredPost.option2:before {
	right: 0;
	z-index: 0;
	background-color: #03ff9c
}

.o-featuredPost.option2:after {
	z-index: 1;
	right: 0;
	background-size: cover;
	background-position: 50% 10%;
	background-image: url(../../img/banner.jpg);
	opacity: .3
}

.o-featuredPost.option2 .page-wrapper {
	width: 100%;
	position: relative
}

.o-featuredPost.option2 .imagem {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 70px 0
}

.o-featuredPost.option2 .imagem .imagem__inner {
	width: 100%;
	height: auto
}

@media screen and (min-width:768px) {
	.o-featuredPost.option2 .imagem {
		width: calc(84.915% - 6px);
		margin-left: calc(7.4925% + 3px) !important
	}
	.o-featuredPost.option2 .imagem:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-featuredPost.option2 .imagem:last-child {
		margin-right: 0
	}
	.o-featuredPost.option2 .imagem:nth-child(10n) {
		margin-right: 0;
		float: right
	}
	.o-featuredPost.option2 .imagem:nth-child(10n+1) {
		clear: both
	}
}

.o-contentTeasers .article {
	padding: 70px auto;
	margin-bottom: 30px
}

.o-contentTeasers .article h3 {
	margin-top: 15px
}

.o-contentTeasers .article .article__text {
	margin: 1em auto
}

.o-contentTeasers .callToAction {
	color: #fff;
	background-color: #5e6f36
}

.o-contentTeasers .callToAction .callToAction__inner {
	padding: 30px 0;
	text-align: center
}

.o-contentTeasers .callToAction .callToAction__text {
	margin-top: 1em
}

@media screen and (min-width:968px) {
	.o-contentTeasers {
		text-align: center
	}
	.o-contentTeasers .article {
		width: calc(58.275% - 16.66667px)
	}
	.o-contentTeasers .article:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-contentTeasers .article:last-child {
		margin-right: 0
	}
	.o-contentTeasers .article:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.o-contentTeasers .article:nth-child(12n+1) {
		clear: both
	}
	.o-contentTeasers .article img {
		width: 100%;
		height: auto
	}
	.o-contentTeasers .article h3 {
		margin-top: 0
	}
	.o-contentTeasers .article .article__img {
		margin-bottom: 30px
	}
	.o-contentTeasers .article .article__heading {
		margin-top: 30px;
		margin-bottom: 20px
	}
	.o-contentTeasers .article .article__text {
		margin-top: 0;
		margin-bottom: 30px
	}
	.o-contentTeasers .callToAction {
		width: calc(41.625% - 23.33333px)
	}
	.o-contentTeasers .callToAction:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-contentTeasers .callToAction:last-child {
		margin-right: 0
	}
	.o-contentTeasers .callToAction:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.o-contentTeasers .callToAction:nth-child(odd) {
		clear: both
	}
	.o-contentTeasers .callToAction .callToAction__inner {
		padding: 100px 0
	}
	.o-contentTeasers .callToAction .callToAction__heading {
		font-size: 1.8em;
		margin-bottom: 30px
	}
	.o-contentTeasers .callToAction .callToAction__text {
		width: 80%;
		margin: auto
	}
	.o-contentTeasers .callToAction .callToAction__cta {
		margin-top: 40px
	}
}

.o-grupos a {
	text-decoration: none
}

.o-grupos__inner {
	position: relative;
	display: block
}

.o-grupos__inner .o-grupos__list {
	width: calc(49.95% - 20px);
	display: block
}

.o-grupos__inner .o-grupos__list:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.o-grupos__inner .o-grupos__list:last-child {
	margin-right: 0
}

.o-grupos__inner .o-grupos__list:nth-child(2n) {
	margin-right: 0;
	float: right
}

.o-grupos__inner .o-grupos__list:nth-child(odd) {
	clear: both
}

.o-grupos__inner .group__selected {
	width: calc(49.95% - 20px)
}

.o-grupos__inner .group__selected:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.o-grupos__inner .group__selected:last-child {
	margin-right: 0
}

.o-grupos__inner .group__selected:nth-child(2n) {
	margin-right: 0;
	float: right
}

.o-grupos__inner .group__selected:nth-child(odd) {
	clear: both
}

.o-grupos__list li {
	opacity: .3;
	font-size: 1.4em;
	line-height: 1.2em;
	margin: 30px 0
}

.o-grupos__list li .group__description {
	display: none
}

.o-grupos__list li.active {
	opacity: 1
}

.group__selected {
	display: block;
	position: relative
}

.group__description {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	width: 100%
}

.group__description img {
	max-width: 90%;
	max-height: 300px;
	height: auto;
	margin-bottom: 30px
}

.group__description p {
	padding-bottom: 1em
}

.group__description p strong {
	letter-spacing: 1px;
	font-weight: 700;
	font-size: .9em;
	text-transform: uppercase
}

.group__description p a,
.group__description p span {
	border-bottom: 1px solid #000
}

.o-grupos__grid a {
	width: 99.9%;
	margin-bottom: 30px;
	padding-bottom: 0;
	position: relative
}

.o-grupos__grid a:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.o-grupos__grid a:last-child {
	margin-right: 0
}

.o-grupos__grid a:nth-child(30n) {
	margin-right: 0;
	float: right
}

.o-grupos__grid a:nth-child(30n+1) {
	clear: both
}

.o-grupos__grid a figure {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	height: 165px
}

.o-grupos__grid a figcaption {
	margin-top: 15px
}

.o-grupos__grid a figcaption p:first-child {
	font-size: 1.2em
}

.o-grupos__grid a figcaption p.sc {
	margin-top: 1em;
	text-transform: uppercase;
	font-size: .85em;
	letter-spacing: 1px
}

.o-grupos__grid a figcaption p:last-child {
	font-size: 1em
}

@media screen and (min-width:768px) {
	.o-grupos__grid a {
		width: calc(49.95% - 15px)
	}
	.o-grupos__grid a:nth-child(1n) {
		float: left;
		margin-right: 30px;
		clear: none
	}
	.o-grupos__grid a:last-child {
		margin-right: 0
	}
	.o-grupos__grid a:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.o-grupos__grid a:nth-child(odd) {
		clear: both
	}
	.o-grupos__grid a figure:after {
		z-index: 1;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: orange
	}
	.o-grupos__grid a figcaption,
	.o-grupos__grid a figure:after {
		position: absolute;
		opacity: 0;
		transition: opacity .15s ease-in-out
	}
	.o-grupos__grid a figcaption {
		z-index: 2;
		top: 50%;
		left: 10%;
		width: 80%;
		-webkit-transform: translate(-50%, -50%);
		transform: translateY(-50%);
		text-align: center;
		margin-top: 0
	}
	.o-grupos__grid a:hover figure:after {
		opacity: .9
	}
	.o-grupos__grid a:hover figcaption {
		opacity: 1
	}
}

@media screen and (min-width:968px) {
	.o-grupos__grid a {
		width: calc(24.975% - 22.5px);
		margin-bottom: 25px
	}
	.o-grupos__grid a:nth-child(1n) {
		float: left;
		margin-right: 30px;
		clear: none
	}
	.o-grupos__grid a:last-child {
		margin-right: 0
	}
	.o-grupos__grid a:nth-child(4n) {
		margin-right: 0;
		float: right
	}
	.o-grupos__grid a:nth-child(4n+1) {
		clear: both
	}
}

.textBlock p {
	margin-bottom: 1em
}

.textBlock ul {
	list-style-type: disc;
	padding-left: 1em
}

.textBlock ul li {
	margin-bottom: .5em
}

.textBlock i {
	font-style: italic
}

.t-encontro header {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	height: 430px
}

.t-encontro header .header__text {
	width: calc(83.25% - 6.66667px);
	margin-left: calc(8.325% + 3.33333px) !important
}

.t-encontro header .header__text:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.t-encontro header .header__text:last-child {
	margin-right: 0
}

.t-encontro header .header__text:nth-child(12n) {
	margin-right: 0;
	float: right
}

.t-encontro header .header__text:nth-child(12n+1) {
	clear: both
}

.t-encontro header .header__text img {
	position: relative;
	z-index: 2;
	left: 0
}

.t-encontro header .header__image {
	position: absolute;
	right: 0;
	width: 99.9%;
	height: 100%
}

.t-encontro header .header__image:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.t-encontro header .header__image:last-child {
	margin-right: 0
}

.t-encontro header .header__image:nth-child(NaNn) {
	margin-right: 0;
	float: right
}

.t-encontro header .header__image:nth-child(NaNn+1) {
	clear: both
}

.t-encontro header .header__image:after,
.t-encontro header .header__image:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2
}

.t-encontro header .header__image:before {
	right: 0;
	z-index: 0;
	background-color: #03ff9c
}

.t-encontro header .header__image:after {
	z-index: 1;
	right: 0;
	background-position: 50%;
	background-size: cover;
	background-image: url(../../img/banner.jpg);
	opacity: .3
}

.t-encontro table {
	width: 100%
}

.t-encontro table form {
	padding-top: 1em
}

.t-encontro table tr {
	width: 100%;
	display: block;
	float: left;
	clear: both;
	padding-top: 30px;
	padding-bottom: 30px
}

.t-encontro table tr:not(:first-child) {
	border-top: 1px solid #000
}

.t-encontro table td:first-child {
	width: 99.9%;
	font-weight: 700;
	padding-bottom: 1em;
	margin-right: 0!important
}

.t-encontro table td:first-child:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.t-encontro table td:first-child:last-child {
	margin-right: 0
}

.t-encontro table td:first-child:nth-child(NaNn) {
	margin-right: 0;
	float: right
}

.t-encontro table td:first-child:nth-child(NaNn+1) {
	clear: both
}

.t-encontro table td:last-child {
	width: 99.9%
}

.t-encontro table td:last-child:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.t-encontro table td:last-child:last-child {
	margin-right: 0
}

.t-encontro table td:last-child:nth-child(NaNn) {
	margin-right: 0;
	float: right
}

.t-encontro table td:last-child:nth-child(NaNn+1) {
	clear: both
}

@media screen and (min-width:768px) {
	.t-encontro header .header__text {
		width: calc(33.3% - 26.66667px);
		margin-left: 0 !important;
		margin-right: 40px !important
	}
	.t-encontro header .header__text:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.t-encontro header .header__text:last-child {
		margin-right: 0
	}
	.t-encontro header .header__text:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.t-encontro header .header__text:nth-child(12n+1) {
		clear: both
	}
	.t-encontro header .header__image {
		width: calc(74.925% - 10px)
	}
	.t-encontro header .header__image:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.t-encontro header .header__image:last-child {
		margin-right: 0
	}
	.t-encontro header .header__image:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.t-encontro header .header__image:nth-child(12n+1) {
		clear: both
	}
	.t-encontro table td:first-child {
		font-weight: 400;
		width: calc(24.975% - 30px)
	}
	.t-encontro table td:first-child:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.t-encontro table td:first-child:last-child {
		margin-right: 0
	}
	.t-encontro table td:first-child:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.t-encontro table td:first-child:nth-child(odd) {
		clear: both
	}
	.t-encontro table td:last-child {
		width: calc(74.925% - 10px)
	}
	.t-encontro table td:last-child:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.t-encontro table td:last-child:last-child {
		margin-right: 0
	}
	.t-encontro table td:last-child:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.t-encontro table td:last-child:nth-child(odd) {
		clear: both
	}
}

.o-text p {
	margin-bottom: .5em
}

.o-text a.documentos:before,
.o-text a.indice:before {
	content: "";
	display: inline-block;
	position: relative;
	padding-right: 6px;
	background-repeat: no-repeat;
	background-size: contain
}

.o-text a.documentos:before {
	top: 2px;
	width: 6px;
	height: 12px;
	background-image: url(../../img/doc.png)
}

.o-text a.indice:before {
	top: 2px;
	width: 6px;
	height: 12px;
	margin-right: 3px;
	background-image: url(../../img/indice.png)
}

@media screen and (min-width:768px) {
	.o-text .o-text__inner {
		width: calc(83.25% - 6.66667px);
		margin-left: calc(8.325% + 3.33333px) !important
	}
	.o-text .o-text__inner:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text .o-text__inner:last-child {
		margin-right: 0
	}
	.o-text .o-text__inner:nth-child(12n) {
		margin-right: 0;
		float: right
	}
	.o-text .o-text__inner:nth-child(12n+1) {
		clear: both
	}
}

.o-text.o-text--withImages .o-text__inner .image-wrapper {
	padding-bottom: 30px
}

.o-text.o-text--withImages .o-text__inner .column:first-child {
	margin-bottom: 30px
}

@media screen and (min-width:768px) {
	.o-text.o-text--withImages .o-text__inner {
		width: 99.9%;
		margin-left: 0 !important;
		margin-right: 40px !important
	}
	.o-text.o-text--withImages .o-text__inner:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text.o-text--withImages .o-text__inner:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner:nth-child(NaNn) {
		margin-right: 0;
		float: right
	}
	.o-text.o-text--withImages .o-text__inner:nth-child(NaNn+1) {
		clear: both
	}
	.o-text.o-text--withImages .o-text__inner .column {
		width: calc(49.95% - 20px)
	}
	.o-text.o-text--withImages .o-text__inner .column:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text.o-text--withImages .o-text__inner .column:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.o-text.o-text--withImages .o-text__inner .column:nth-child(odd) {
		clear: both
	}
	.o-text.o-text--withImages .o-text__inner .column:first-child {
		margin-bottom: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .row {
		display: flex
	}
	.o-text.o-text--withImages .o-text__inner .column.smaller {
		width: calc(39.96% - 24px)
	}
	.o-text.o-text--withImages .o-text__inner .column.smaller:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text.o-text--withImages .o-text__inner .column.smaller:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column.smaller:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.o-text.o-text--withImages .o-text__inner .column.smaller:nth-child(odd) {
		clear: both
	}
	.o-text.o-text--withImages .o-text__inner .column.bigger {
		width: calc(59.94% - 16px)
	}
	.o-text.o-text--withImages .o-text__inner .column.bigger:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text.o-text--withImages .o-text__inner .column.bigger:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column.bigger:nth-child(2n) {
		margin-right: 0;
		float: right
	}
	.o-text.o-text--withImages .o-text__inner .column.bigger:nth-child(odd) {
		clear: both
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns {
		align-self: flex-end;
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(59.94% - 12px);
		max-width: calc(59.94% - 12px);
		width: calc(59.94% - 12px)
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:nth-child(1n) {
		margin-right: 30px;
		margin-left: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:nth-child(2n) {
		margin-right: 0;
		margin-left: auto
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:first-child {
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: calc(39.96% - 18px);
		max-width: calc(39.96% - 18px);
		width: calc(39.96% - 18px)
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:first-child:nth-child(1n) {
		margin-right: 30px;
		margin-left: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:first-child:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns:first-child:nth-child(2n) {
		margin-right: 0;
		margin-left: auto
	}
	.o-text.o-text--withImages .o-text__inner .column .two-columns div {
		width: 100%;
		height: 200px;
		background-repeat: no-repeat;
		background-size: cover
	}
	.o-text.o-text--withImages .o-text__inner .column .one-column {
		width: 99.9%
	}
	.o-text.o-text--withImages .o-text__inner .column .one-column:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.o-text.o-text--withImages .o-text__inner .column .one-column:last-child {
		margin-right: 0
	}
	.o-text.o-text--withImages .o-text__inner .column .one-column:nth-child(NaNn) {
		margin-right: 0;
		float: right
	}
	.o-text.o-text--withImages .o-text__inner .column .one-column:nth-child(NaNn+1) {
		clear: both
	}
}

.m-list {
	padding-left: 1em;
	margin-bottom: 1em;
	list-style-type: disc
}

.m-list.long {
	list-style-type: none;
	padding-left: 0;
	padding-top: 1em
}

.m-list.long li {
	padding-top: 2.4em
}

.m-list.long li a {
	margin-right: 20px;
	text-decoration: none;
	position: relative
}

.m-list.long li a:after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: -2px;
	background-color: #000;
	right: 0
}

.m-list:not(.long) li {
	padding-top: .5em
}

.m-list.twoColumns {
	padding-left: 0
}

.m-list.twoColumns:before {
	content: "";
	display: table
}

.m-list.twoColumns:after {
	content: "";
	display: table;
	clear: both
}

.m-list.twoColumns li {
	list-style-type: none;
	width: calc(49.95% - 20px)
}

.m-list.twoColumns li:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.m-list.twoColumns li:last-child {
	margin-right: 0
}

.m-list.twoColumns li:nth-child(2n) {
	margin-right: 0;
	float: right
}

.m-list.twoColumns li:nth-child(odd) {
	clear: both
}

.m-list.imagens {
	padding-left: 0;
	list-style: none
}

.m-list.imagens li {
	width: calc(49.95% - 20px);
	margin-bottom: 2em
}

.m-list.imagens li:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

.m-list.imagens li:last-child {
	margin-right: 0
}

.m-list.imagens li:nth-child(2n) {
	margin-right: 0;
	float: right
}

.m-list.imagens li:nth-child(odd) {
	clear: both
}

@media screen and (min-width:768px) {
	.m-list.imagens {
		padding-left: 0;
		list-style: none
	}
	.m-list.imagens li {
		width: calc(33.3% - 26.66667px);
		margin-bottom: 30px
	}
	.m-list.imagens li:nth-child(1n) {
		float: left;
		margin-right: 40px;
		clear: none
	}
	.m-list.imagens li:last-child {
		margin-right: 0
	}
	.m-list.imagens li:nth-child(3n) {
		margin-right: 0;
		float: right
	}
	.m-list.imagens li:nth-child(3n+1) {
		clear: both
	}
	.m-list.imagens li p {
		padding-left: 1em;
		padding-top: 1em
	}
}

.o {
	margin: 4em auto 3em;
	width: 100%;
	position: relative
}

.o:first-of-type {
	margin-top: 0
}

.o.o-featuredPost.option2 {
	margin-top: 90px
}

.o .header {
	text-align: center;
	float: left;
	clear: both;
	margin-bottom: 3.5em;
	position: relative
}

.o .header:after,
.o .header:before {
	content: "";
	display: table
}

.o .header:after {
	clear: both
}

.o .header line {
	display: block;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: #e8e8e8;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	will-change: transform;
	transition: -webkit-transform 1s cubic-bezier(.19, 1, .22, 1);
	transition: transform 1s cubic-bezier(.19, 1, .22, 1);
	transition: transform 1s cubic-bezier(.19, 1, .22, 1), -webkit-transform 1s cubic-bezier(.19, 1, .22, 1);
	-webkit-transform: scaleX(.001);
	transform: scaleX(.001);
	z-index: -1;
	top: 35px;
	-webkit-transform: scale(1);
	transform: scale(1);
	position: absolute;
	top: 50%
}

.o .header h2 {
	background: #fff;
	padding: 0 20px;
	margin: auto;
	display: table
}

@media screen and (min-width:768px) {
	.o {
		margin: 2em auto 90px
	}
	.o:first-of-type {
		margin-top: 2em
	}
	.o .header h2 {
		margin-bottom: 0;
		padding-bottom: 0
	}
}

.teaser {
	text-align: center
}

.readMore {
	position: relative;
	overflow: hidden;
	padding-bottom: 1px;
	vertical-align: bottom;
	font-size: .65em;
	line-height: 1em;
	letter-spacing: 1px;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid #242424
}

button.cta {
	font-size: .85em;
	line-height: 1.05882em;
	font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
	display: inline-block;
	background: none;
	border: 1px solid #242424;
	padding: .70588em 2.11765em .64706em;
	border-radius: 2px;
	transition: all .1s ease-in-out
}

button.cta:hover {
	color: #fff;
	background-color: #242424
}

button.cta.white {
	border: 1px solid #fff;
	color: #fff
}

button.cta.white:hover {
	color: #242424;
	background-color: #fff
}


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.btn-toggle {
	padding: 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	outline: 0
}

.btn-toggle:hover {
	opacity: .7
}

.box {
	width: 16px;
	height: 14px;
	display: inline-block;
	position: relative;
	margin-right: 5px
}

.inner {
	display: block;
	top: 50%;
	margin-top: -1px
}

.inner,
.inner:after,
.inner:before {
	width: 16px;
	height: 2px;
	background-color: #000;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: .15s;
	transition-timing-function: ease
}

.inner:after,
.inner:before {
	content: "";
	display: block
}

.inner:before {
	top: -6px
}

.inner:after {
	bottom: -6px
}

.btn-toggle .inner {
	transition-duration: .22s;
	transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.btn-toggle .inner:before {
	transition: top .1s ease-in .25s, opacity .1s ease-in
}

.btn-toggle .inner:after {
	transition: bottom .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
	transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.btn-toggle.is-active .inner {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.btn-toggle.is-active .inner:before {
	top: 0;
	transition: top .1s ease-out, opacity .1s ease-out .12s
}

.btn-toggle.is-active .inner:after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
	transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s
}

html {
	font-size: 16px;
	line-height: 24px;
	color: #242424
}

main {
	padding-top: 90px
}

@media screen and (min-width:768px) {
	main {
		padding-top: 180px
	}
}

span.column {
	width: calc(7.13571% - 37.14286px);
	height: 20px;
	background-color: red;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none
}

span.column:nth-child(1n) {
	float: left;
	margin-right: 40px;
	clear: none
}

span.column:last-child {
	margin-right: 0
}

span.column:nth-child(14n) {
	margin-right: 0;
	float: right
}

span.column:nth-child(14n+1) {
	clear: both
}

div.line {
	pointer-events: none;
	height: 100vh;
	width: 1px;
	background-image: linear-gradient(-180deg, #ededed, #fff 90%, #fff);
	position: fixed;
	top: 0;
	z-index: 0;
	display: none
}

div.line.em-comprimento {
	z-index: -1;
	position: absolute;
	background-image: linear-gradient(-180deg, #ededed, #fff 40%, #fff)
}

.cover-layer {
	position: fixed;
	z-index: 5;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	background-color: #f8f8f8;
	transition: opacity .4s .4s, visibility 0s .8s
}

.nav--active {
	overflow: hidden
}

/* LOGIN */
	.login-area .card-container.card {
		max-width: 350px;
		padding: 40px 40px;
	}

	.login-area .btn {
		font-weight: 700;
		height: 36px;
		-moz-user-select: none;
		-webkit-user-select: none;
		user-select: none;
		cursor: default;
	}

	/*
	 * Card component
	 */
	.login-area .card {
		padding: 20px 25px 30px;
		margin: 0 auto 25px;
		margin-top: 50px;
	}

	.login-area .profile-img-card {
		width: 96px;
		height: 96px;
		margin: 0 auto 10px;
		display: block;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}

	/*
	 * Form styles
	 */
	.login-area .profile-name-card {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin: 10px 0 0;
		min-height: 1em;
	}

	.login-area .reauth-email {
		display: block;
		color: #404040;
		line-height: 2;
		margin-bottom: 10px;
		font-size: 14px;
		text-align: center;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.login-area .form-signin #inputEmail,
	.login-area .form-signin #inputUsername,
	.login-area .form-signin #inputPassword {
		direction: ltr;
		height: 44px;
		font-size: 16px;
		padding: 10px;
	}
	::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	  padding: 10px;
	}
	::-moz-placeholder { /* Firefox 19+ */
	  padding: 10px;
	}
	:-ms-input-placeholder { /* IE 10+ */
	  padding: 10px;
	}
	:-moz-placeholder { /* Firefox 18- */
	  padding: 10px;
	}
	
	.login-area .form-signin input[type=email],
	.login-area .form-signin input[type=password],
	.login-area .form-signin input[type=text],
	.login-area .form-signin button {
		width: 100%;
		display: block;
		margin-bottom: 10px;
		z-index: 1;
		position: relative;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.login-area .form-signin .form-control:focus {
		border-color: rgb(104, 145, 162);
		outline: 0;
		-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
		box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgb(104, 145, 162);
	}

	.login-area .btn.btn-signin {
		/*background-color: #4d90fe; */
		background-color: rgb(104, 145, 162);
		/* background-color: linear-gradient(rgb(104, 145, 162), rgb(12, 97, 33));*/
		padding: 0px;
		font-weight: 700;
		font-size: 14px;
		height: 36px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		border: none;
		-o-transition: all 0.218s;
		-moz-transition: all 0.218s;
		-webkit-transition: all 0.218s;
		transition: all 0.218s;
	}

.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f8f8f8;
  padding: 0 20px;
}

.single-input:focus {
  outline: none;
}

.single-select {
    display: block;
    padding: 12px 20px;
    line-height: 40px;
    vertical-align: middle;
    background: #f8f8f8;
    border: 0px solid transparent;
}

.input-group-icon {
  position: relative;
}

.input-group-icon .icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  z-index: 3;
}

.input-group-icon .icon i {
  color: #797979;
}

.input-group-icon .single-input {
  padding-left: 45px;
}

.single-textarea {
  display: block;
  width: 100%;
  line-height: 24px;
  border: none;
  outline: none;
  background: #f8f8f8;
  padding: 0 20px;
  height: 100px;
  resize: none;
}

.single-textarea:focus {
  outline: none;
}

.single-input-primary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-primary:focus {
  outline: none;
  border: 1px solid #111111;
}

.single-input-accent {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-accent:focus {
  outline: none;
  border: 1px solid #eb6b55;
}

.single-input-secondary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-secondary:focus {
  outline: none;
  border: 1px solid #f09359;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  width: 100%;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.modal-window {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.25);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.modal-window:target {
	opacity: 1;
	pointer-events: auto;
	overflow: scroll;
}
.modal-window > div {
	width: 80%;
	position: absolute;
	top: 5%;
	left: 50%;
	transform: translate(-50%, 0%);
	padding: 2em;
	background: #f8f8f8;
	color: #333333;
}
.modal-window header {
	font-weight: bold;
}
.modal-window h1 {
	margin: 0 0 15px;
	color: #333333;
}

.modal-close {
	color: #aaa;
	line-height: 50px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 70px;
	text-decoration: none;
}
.modal-close:hover {
	color: #000;
}
