@charset "utf-8";

/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, 
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 
center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, 
details, embed, figure, figcaption, footer, header, hgroup, main, menu, 
nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* reset form elements */
input, textarea, keygen, select, button {
  font:inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* end RESET */



nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0px, 0px, 0px, 0px);
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
}

/* header */

.logo-container {
  font-size: 0;
}

.logo {
  display: inline-block;
  position: relative;
  max-width: 100%;
  width: 140px;
  height: 50px;
}
@media (min-width: 48em) {
  .logo {
    height: 60px;
  }
}
.logo img {
  position: absolute;
  height: 100%;
}
@media (max-width: 47.99em) {
  .logo img {
    top: 5px;
  }
}
@media (max-width: 26.25em) {
  .logo img {
    top: 0;
    height: 100%;
  }
}

.site-header {
  box-sizing: border-box;
  height: 70px;
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: rgba(20,130,118,0);
}
@media (min-width: 48em) {
  .site-header {
    height: 80px;
  }
}

.site-header .button {
  width: auto;
}

.top-menu, .main-menu {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.top-menu {
  margin-left: 50px;
}
@media (min-width: 62em) {
  .main-menu {
    padding: 0 30px;
  }
}

@media (max-width: 61.99em) {
  .top-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -250px;
    width: 250px;
    margin-left: 0;
    transition: right 0.3s ease;
    background-color: #00998c;

    display: block;
    padding: 100px 10px 50px;
  }
  .top-menu.open {
    right: 0;
  }

  .top-menu > nav > ul {
    display: block;
    text-align: center;
    line-height: 2;
  }
}
@media (max-width: 47.99em) {
  .top-menu {
    right: -60vw;
    width: 60vw;
  }
}


.main-menu .menu-item {
  position: relative;
}
.main-menu .menu-item > a {
  padding: 10px 0;
  display: block;
}
.main-menu .menu-item .sub-menu {
  display: none;
  background-color: rgba(255,255,255,0.6);
  padding: 10px 20px;
  text-align: center;
}
@media (min-width: 48em) {
  .main-menu .menu-item .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.main-menu .menu-item:hover .sub-menu {
  display: block;
}
@media (max-width: 47.99em) {
  .main-menu .menu-item:focus .sub-menu {
    display: block;
  }
}
.main-menu .menu-item .sub-menu a {
  color: #00534e;
}
.main-menu .menu-item .sub-menu a:hover {
  color: #f88023;
}

.site-header .social-menu {
  margin: 0 20px;
}

.social-menu li {
  margin-left: 5px;
  display: inline-block;
}

nav ul a, .btn {
  font-size: 0.85em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}

a {
  
}
.site-header a {
  color: #fff;
}
.site-header a:hover {
  color: #fa8000;
}


.icon {
  font-size: 0;
}
a.icon, li.icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 0;
  border: 1px solid #fff;
  border-radius: 30px;
  background-size: auto 55%;
  background-repeat: no-repeat;
  background-position: center center;
}
li.icon a {
  color: #fff;
}
li.icon a svg {
  fill: currentColor;
  margin: 20% 0 0 20%;
  width: 60%;
  height: 60%;
}
li.icon a:hover {
  color: #fa8000;
  background-color: #fff;
}


/* menu hamburger */

.hamburger {
  /*position: fixed;
  top: 0;
  right: 0;*/
  width: 50px;
  height: 50px;
  z-index: 99;
  outline: none;

  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px 0 15px 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: all;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent
}
@media (min-width: 48em) {
  .hamburger {
    height: 60px;
  }
}

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

.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #fff;
}
.hamburger-inner {
  width: 30px;
  /*margin-left: 17px;*/
  transition: all .15s linear;
}

.hamburger-inner:after,.hamburger-inner:before {
  display: block;
  content: "";
  /*left: -10px;*/
}

.hamburger-inner:before {
  top: -10px
}

.hamburger-inner:after {
  bottom: -10px
}

.hamburger--arrow-r.is-active .hamburger-inner {
  margin-left: 0;
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  transform: translate3d(10px,6px,0) rotate(45deg) scaleX(0.5)
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  transform: translate3d(10px,-6px,0) rotate(-45deg) scaleX(0.5)
}


/* overlay */

#overlay {
  display: none;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.2);
}


/* site */

html {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #5b5b5f;
}

h1,
h2,
h3 {
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.5;
}


h3 {
  font-size: 3em;
}

h4 {
  font-size: 2.3em;
  font-weight: bold;
}

p {
  margin: 20px 0px;
  line-height: 1.5;
}

form{
  max-width: 800px;
  margin: 0 auto;
}

label{
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: left;
}

input{
  display: block;
  width: 90%;
  /*margin-bottom: 30px;*/
  font-size: 16px;
  color: white;
  text-align: left;
  
  border-radius: 0;
  border-color: white;
  border-width: 0 0 1px 0;
  border-style: none none solid none;
  box-shadow: none;
  background-color: transparent;
}
@media (max-width: 61.99em){
  input {
    width: 100%;
  }
}

select{
  display: block;
  width: 90%;
  margin-bottom: 30px;
  font-size: 16px;
  color: white;
  background-color: #0a8583;
  border-color: #0a8583;
  border-radius: 0px;
  text-align: left;
}

textarea{
  display: block;
  width: 95%;
  margin-bottom: 30px;
  font-size: 16px;
  color: white;
  text-align: left;
  
  border-radius: 0;
  border-color: white;
  border-width: 1px;
  border-style: solid;
  box-shadow: none;
  background-color: transparent;
  resize: none;
}

input[type=button] {

}

input:focus, select:focus, textarea:focus{
  outline: none;
}

aside {
    color: black;
    background-color: #ebebeb;
}

aside h4 {
    text-align: right;
    font-size: 1.2em;
    font-weight: bold;
    color: #00534f;
    text-transform: uppercase;
}

.frame {
    padding: 0px 20px;
}

.cover {
    height: 100vh;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.cover-info {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    margin: -5% 0 0 -30%;
    transform: translateY(-50%);
}
@media (max-width: 47.99em) {
  .cover-info {
    top: 50%;
    transform: translateY(-50%);
  }
}


.reduced {
    height: 50vh;
    min-height: 400px;
}

.reduced .cover-info {
    top: 70%;
}

.featured {
    /*    background-blend-mode: multiply;*/
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    height: 100%;
}

.light-bg {
    background-color: #f4f4f4;
}

.dark-bg {
    background-color: #dbd8d8;
}

.darker-bg{
    background-color: #2d3e50;
}

.filled-bg {
    color: white;
    background-color: #00534f;
}

.filled-bg h4 {
    color: #0a8583;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
}

.narrow {
    max-width: 800px;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.fully-colored {
    color: white;
    background-color: #fa8000;
}

.orange-green-gradient {
  background-image: radial-gradient(at bottom left, #676831, #016961);
}

.colored-teal {
    background-color: rgba(0, 130, 119, 0.8);
}

.colored-green {
  position: relative;
}
.colored-green::before {
  background-color: #004d49;
  mix-blend-mode: multiply;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.colored-green > * {
  position: relative;
  z-index: 1;
}

.colored-red {
  position: relative;
}
.colored-red::before {
  /*background-color: #733c03;*/
  background-color: #904900;
  mix-blend-mode: multiply;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.colored-red > * {
  position: relative;
  z-index: 1;
}

.colored-black {
    background-color: rgba(0, 0, 0, 0.8);
}

.light-green-bg {
  background-color: #2a7c77;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 30px;
}

.center {
  text-align: center;
}


/*---------------------------------------------------------*/

/*Timeline*/

.tl {
  width: 70%;
  margin: 0 auto;
  padding: 0;
  padding-top: 40px;
  list-style: none;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.tl::before {
  content: '';
  width: 1px;
  height: calc(100% - 3.25em);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background-color: #c16706;
  transform: translateX(-50%);
}
.tl-item {
  width: 45%;
  position: relative;
  left: 50%;
  margin-bottom: 40px;
}
.tl-item:nth-child(odd) {
  transform: translateX(-100%);
  text-align: right;
  padding-right: 30px;
}
.tl-item:nth-child(even) {
  text-align: left;
  padding-left: 30px;
}
.tl-item::before {
  content: '';
  height: 1px;
  width: 25px;
  position: absolute;
  left: 0;
  top: 9px;
  background-color: #c16706;
}
.tl-item::after {
  content: '';
  display: block;
  width: 20px;
  height: 40px;
  position: absolute;
  left: 0;
  top: -31px;
  background-image: url(../img/pin.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  transform: translateX(-50%);
}
.tl-item:nth-child(odd)::before {
  left: auto;
  right: 0;
}
.tl-item:nth-child(odd)::after {
  left: auto;
  right: 0;
  transform: translateX(50%);
}

.tl-item__title, .tl-item__desc {
  margin: 0;
}
.tl-item__title {
  margin-bottom: 5px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 47.99em) {
  .tl {
    width: 100%;
  }
  .tl-item {
    width: 45%;
  }
  .tl-item__desc {
    font-size: .9em;
  }
}







/*---------------------------------------------------------*/

/*Boxes*/

.contentbox {
  display: none;
  color: white;
  background-color: #00534f;
  min-height: 100px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.contentbox h3 {
  font-size:1.4em;
  font-weight: bold;
  /*text-transform: uppercase;*/
  margin-bottom: 10px;
}

.contentbox p {
  margin: 5px 0px;
}


.contentbox-container {
  margin: 10px 0;
  height: calc(100% - 20px);
}
.contentbox-info {
  padding: 30px;
}


.legenda.triangulo {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 28px solid #df7f04;
}
.legenda.circulo {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #df7f04;
}
.legenda.info {
  vertical-align: middle;
}
@media (min-width: 48em) {
  .legenda > .legenda {
    margin-left: 20px;
  }
}
@media (max-width: 47.99em) {
  .legenda.info {
    display: block;
    margin: 12px 0;
    line-height: 1.4;
  }
}


/*---------------------------------------------------------*/

/*Tab*/

.tab-list {
  padding: 50px 0px;
}

.tab-item {
  display: inline-block;
  margin: 0px 5px;
  padding: 0;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  color: #0a8583;
}
.tab-item a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a8583;
}

.tab-list .tab-item.active, .tab-list .tab-item:hover {
  border-bottom: 2px solid #0a8583;
}

/*---------------------------------------------------------*/

/*Botao*/

.button-row {
    max-width: 550px;
    margin: 0 auto;
}

.button-box {
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
    border-spacing: 5px;
}

.button, input[type="button"] {
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
  box-sizing: border-box;
  font-size: 0.8em;
  font-weight: bold;
  height: 50px;
  width: 160px;
  padding: 0px 20px;
  color: #c16505;
  border: 2px solid #c16505;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-align: center;
}
.button + .button {
  margin-top: 20px;
}
@media (min-width: 500px) {
  .button + .button {
    margin-left: 20px;
    margin-top: 0;
  }
}


button:focus, input[type="button"]:focus {
  outline: none;
}

.button:hover, input[type="button"]:hover {
  background-color: #c16505;
  color: white;
  border: 2px solid #c16505;
}

.button.flexible {
  width: auto;
}

.button--cta {
  background-color: #fa8000;
  color: white;
  border: 2px solid #fa8000;
}
.button--cta:hover {
  background-color: #fff;
  color: #fa8000;
  border: 2px solid #fff;
}

.blank, .filled input[type="button"] {
  color: white;
  border-color: white;
  background-color: transparent;
}

.blank:hover, .filled input[type="button"]:hover {
  background-color: white;
  color: #0a8583;
  border: 2px solid white;
}

.tint {
  color: #0a8583;
  border-color: #0a8583;
  background-color: transparent;
}

.tint:hover {
  background-color: #0a8583;
  color: white;
  border: 2px solid #0a8583;
}

.dark {
  color: #00534f;
  border-color: #00534f;
  background-color: transparent;
}

.dark:hover {
  background-color: #00534f;
  color: white;
  border: 2px solid #00534f;
}

.medium {
  box-sizing: border-box;
  height: 40px;
  width: 120px;
  padding: 0px 15px;
}

.mini {
  font-size: 0.7em;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;

  box-sizing: border-box;
  height: auto;
  width: 120px;
  padding: 6px 10px;
  display: block;
}




.disciplina__seq {
  width: 190px;
  padding: 10px 20px;
  margin: 20px 0;
  display: inline-block;
  height: auto;
}





/*---------------------------------------------------------*/

/*Imagens*/

.img-fluid {
  width: 100%;
}

.img-content {
  opacity: 0.9;
}

.img-frame {
  display: block;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  height: 262px;
  overflow: hidden;
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
}

.img-text {
  margin: auto;
  font-size: 1.4em;
  font-weight: bold;
  color: white;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /*word-break: break-word;*/
}

.img-text-title {
  margin: auto;
  font-size: 1em;
  font-weight: bold;
  color: white;
  opacity: 1;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  word-break: break-word;
}

.img-text-desc {
  margin: auto;
  font-size: 1em;
  font-weight: normal;
  color: white;
  opacity: 1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  word-break: break-word;
  width: 80%;
}



/*---------------------------------------------------------*/

/*Post*/


.post {
  text-align: left;
  margin: 30px 0px;
}

.post-frame {
  background: black;
}

.post-img-wrapper {
  font-size: 0;
  display: block;
  width: 100%;
  height: 256px;
}
.post-img-wrapper > .post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.post-img {
  opacity: 0.7;
}

.post-content {
  padding: 10px;
}

.post-category, .post-category a {
  color: #c16505;
  font-size: 12px;
  font-weight: bold;
  margin: 5px 0px;
  text-decoration: none;
  text-transform: uppercase;
}

.post-title {
  font-size: 25px;
  margin-bottom: 30px;
  color: #5b5b5f;
  text-decoration: none;
}

.post-category a:hover, a.post-category:hover, a.post-title:hover {
  text-decoration: underline;
}

.post-text {
  font-size: 14px;
  margin: 15px 0px;
}

.cont-title {
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}


/*---------------------------------------------------------*/

/*Cards*/

.card {
    padding: 60px 50px;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
}

.card-group {
    margin: 80px 0px;
}

.card-title {
    font-size: 2em;
    margin-bottom: 30px;
}

.card-text {
    font-size: 0.8em;
    margin: 15px 0px;
}

/*---------------------------------------------------------*/

/*Espaçador*/

.spacer {
    position: relative;
    margin: 30px 0px;
}

.spacer:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: #88878c;
    z-index: -9999;
}

.spacer img{
    max-width: 300px;
}


@media (max-width: 768px) {

  html {
    font-size: 14px;
  }

  h1,
  h2,
  h3 {
    font-size: 2em;
  }

  h3 {
    font-size: 2.5em;
  }

  .cover-info {
    top: 40%;
    left: 60%;
    width: 80%;
    margin: -5% 0 0 -50%;
  }

}

@media (max-width: 375px) {

  h1,
  h2,
  h3 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 2em;
  }
}

@media (min-width: 1366px) {

  html {
    font-size: 16px;
  }
  .cover {
    font-size: 18px;
  }

  .section-container {
    max-width: 1200px;
  }
}







/* ninja forms */

.nf-form-title {
  max-width: 800px;
  display: block;
  margin: 0 auto;
}
.nf-form-title > h3 {
  color: #0a8583;
  font-size: 2.3em;
  font-weight: bold;
  line-height: 1;
}

.nf-form-fields-required {
  display: none;
}
.ninja-forms-req-symbol {
    display: none;
}


.nf-field-element input[type="button"] {
  height: 50px;
  width: 160px !important;
  border-color: #fff;
  color: #fff;
}
.nf-field-element input[type="button"]:hover {
  background-color: #fff;
  color: #00534f;
}
.nf-before-form-content {
    margin: 10px 0 40px;
}

.contenos-div .nf-before-form-content::before {
  content: 'Queremos ouvir você.';
  display: inline-block;
  margin: 10px 0 20px;
}
.contenos-alunos-div .nf-before-form-content::before {
  content: 'Vamos analisar sua indicação e disponibilizá-la para outros alunos.';
  display: inline-block;
  margin: 10px 0 20px;
}
.contenos-contato-div .nf-before-form-content::before {
  content: 'Envie uma mensagem para contato@cidadeemjogo.org.br ou deixe aqui seu recado, e entraremos em contato em breve!';
  display: inline-block;
  margin: 10px 0 20px;
}


.nf-form-content .list-checkbox-wrap .nf-field-element li, .nf-form-content .list-radio-wrap .nf-field-element li {
  display: inline-block;
  margin-bottom: 6px !important;
}
.nf-form-content .list-checkbox-wrap .nf-field-element li, .nf-form-content .list-radio-wrap .nf-field-element li:not(:first-child) {
  margin-left: 25px !important;
}
.nf-form-content .list-checkbox-wrap .nf-field-element li input, .nf-form-content .list-radio-wrap .nf-field-element li input {
  margin-top: 0 !important; 
}
.nf-form-content .list-checkbox-wrap .nf-field-element li label, .nf-form-content .list-radio-wrap .nf-field-element li label {
  margin-bottom: 0;
  margin-top: 2px; 
}

@media (min-width: 62em) {
  .contenos-div nf-field {
    display: block;
    width: 48%;
  }
  /*.contenos-div nf-field:first-child {
    display: block;
    width: 100%;
  }*/
  .contenos-div nf-field:nth-child(n+5):not(:nth-last-child(-n+2)) {
    margin-left: 52%;
    transform: translateY(-17.9em);
  }
  .contenos-div nf-field:nth-last-child(2) {
    margin-top: -17em;
    width: 100%;
  }


  .contenos-alunos-div nf-field {
    display: block;
    width: 48%;
  }
  /*.contenos-alunos-div nf-field:first-child {
    display: block;
    width: 100%;
  }*/
  .contenos-alunos-div nf-field:nth-child(n+4):not(:nth-last-child(-n+2)) {
    margin-left: 52%;
    transform: translateY(-13.45em);
  }
  .contenos-alunos-div nf-field:nth-last-child(2) {
    margin-top: -13em;
    width: 100%;
  }
}

/* footer */

.site-footer {
  background-image: url(../img/city.png);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;  
  color: #00534f;
}
.site-footer h2, .site-footer h3 {
  text-transform: uppercase;
  font-size: 1.3em !important;
}

.site-footer .creditos {
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 0;
}

.site-footer .copyright {
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: bold;
  padding: 40px 0 20px;
}
.site-footer .copyright span {
  padding: 0 20px;
}


.cookie-policy { display: none;
    background: #222;
    color: #FFF;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    padding: 20px;
    font-size: 1rem;
	z-index: 999;
}
.cookie-policy a { color: #FFF; }

/* newsletter */

.newsletter-div {
  background-color: #ebebeb;
  color: #00534f;
  padding: 30px 0;
}

.newsletter-div form .form-field-wrapper {
  white-space: nowrap;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
}
.newsletter-div form .form-field-wrapper input {
  border-bottom: 2px solid #00534f;
  color: #00534f;
}
.newsletter-div form .form-field-wrapper input:-ms-input-placeholder {
  color: transparent;
  opacity: 0;
}
.newsletter-div form .form-field-wrapper input::-ms-input-placeholder {
  color: transparent;
  opacity: 0;
}
.newsletter-div form .form-field-wrapper input::placeholder {
  color: transparent;
  opacity: 0;
}

.newsletter-div form .button {
  margin: 10px 0;
  background: transparent !important;
  border-color: #00534f !important;
  color: #00534f;
}
.newsletter-div form .button:hover, .newsletter-div form .button:focus {
  background: #00534f !important;
  border-color: #fff !important;
  color: #fff;
}


@media (min-width:992px) {
  .newsletter-div .col-xs-12 > div {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
  }
  .newsletter-div h2 {
      width: 20%;
      text-align: right;
      margin-top: 5px;
      font-weight: bold;
  }
  .newsletter-div form {
    width: 70%;
  }
  .newsletter-div form .form-field-wrapper {
      margin-top: 10px;
      margin-bottom: 0;
  }
  .newsletter-div form .mc4wp-form-fields {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  }
  .newsletter-div form .mc4wp-form-fields > div {
    display: inline-block;
  }
  .newsletter-div form .form-field-wrapper input {
    width: 250px;
      background: transparent;
  }
}





/* classes para ocultar e mostrar um elemento de acordo com o breakpoint */
.dn-xs {
  display: none;
}
.db-xs {
  display: block;
}
@media (min-width: 48em) {
  .dn-sm {
  display: none;
  }
  .db-sm {
  display: block;
  }
}
@media (min-width: 62em) {
  .dn-md {
  display: none;
  }
  .db-md {
  display: block;
  }
}
@media (min-width: 75em) {
  .dn-lg {
  display: none;
  }
  .db-lg {
  display: block;
  }
}




/* the content */

.the-content img {
  width: 100%;
  height: auto;
  max-width: 1000px;
}
.the-content ul li {
  margin: 10px 0px;
  padding-left: 20px;
  line-height: 1.5;
}
.the-content ul li::before {
  content: "\2022";
  color: #fa8000;
  font-size: 1.4em;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: relative;
  top: 2px;
}
.the-content img.aligncenter {
  margin: 0 auto;
  display: block;
}




/* glide.js */

.glide__bullets {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 48em){ 
  .glide__bullets {
    bottom: 100px;
  }
}

.glide__bullets button.glide__bullet {
  outline: 0;
  background: #fff;
  border: 0;
  width: 12px;
  margin: 0;
  padding: 0;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}
.glide__bullets button.glide__bullet + button.glide__bullet {
  margin-left: 15px;
}



/* titulos */

@media (max-width: 47.99em) {
  .cover-info > h1 {
    line-height: 1.1;
    font-size: 1.9em;
  }

  .section-container > h2, .section-container > h3 {
    line-height: 1.1;
    font-size: 1.8em;
  }
}