/*
	!!!IMPORTANT!!!
	ADD HERE THE LINK OF GOOGLE FONT FAMILY
	AFTER THE ADDING OF THIS, CHANGE THE FONT SETTING :ROOT IN 'header.php'
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900&display=swap');

/*
**********
reseting default css of the browser to normalize elements
**********
*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup {
  font-family: var(--main-font);
  font-size: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
textarea {
  font-family: var(--main-font);
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
[type='submit'] {
  cursor: pointer;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: none;
  outline: 0;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
  border-width: 1px;
  border-color: var(--theme-color);
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  outline: none;
}

@media screen and (max-width: 1024px) {
  [type='search'] {
    -webkit-appearance: none !important;
  }
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* end of normalize.css */
/*
**********
aditional normalizations
**********
*/
:focus {
  box-shadow: none !important;
  outline: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
    outline: none !important;
    margin: 0 auto;
    padding: 0;
    vertical-align: baseline;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: ' (' attr(href) ')';
  }

  abbr[title]:after {
    content: ' (' attr(title) ')';
  }

  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  p {
    font-size: 1em;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

input,
select,
textarea {
  width: 100%;
}

style,
script,
head {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
  width: 100vw;
}
html,
body,
html *,
body * {
  transition: 0.3s all ease-out;
}

img {
  max-width: 100%;
}

/* scroll bars */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-button {
  width: 10px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  /* add color here*/
}

::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color-dark);
  /* add color here*/
}

::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-light);
  /* add color here*/
}

::-webkit-scrollbar-track {
  background: transparent;
  /* add color here*/
}

::-webkit-scrollbar-corner {
  background: transparent;
  /* add color here*/
}

::selection {
  background: var(--theme-color);
  color: #fff;
}

html {
  -webkit-text-size-adjust: none;
}

body,
html,
textarea {
  font-family: var(--main-font);
  /* add font here*/
  font-size: 16px;
  color: var(--font-color);
  /* add color here*/
  line-height: 1.5em;
}
body * {
  outline-color: transparent !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body a {
  color: var(--theme-color);
}

body,
html,
textarea {
  background: var(--background-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8,
h9 {
  color: var(--theme-color);
  /* add color here*/
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.35em;
  font-weight: normal;
  font-family: var(--title-font);
}

h2 {
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.2em;
}

h4 {
  font-size: 1.2em;
}

h5,
h6,
h7,
h8,
h9 {
  font-size: 1em;
}

p {
  font-size: 1em;
}

figure {
  margin: 0;
}
input,
textarea,
select {
  background: var(--background-color);
  border: 1px solid var(--font-color);
  border-radius: 5px;
  padding: 0.5em 1.2em;
}
#infinite-footer {
  display: none !important;
}
select {
  height: 2.5em;
  font-size: 16px;
}

/*
**********
Grid
**********
*/
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.grid {
  max-width: 1300px;
  margin: 0 auto;
  display: block;
  width: 90%;
}

.mingrid {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  width: 90%;
}

/* columns */
.w1,
.w2,
.w3,
.w4,
.w3-2,
.w5,
.w6,
.w7,
.w8,
.g1,
.g2,
.g3,
.g4,
.g5,
.g6,
.g7,
.g8,
.g9,
.g10,
.g11,
.g12 {
  white-space: normal;
  word-wrap: normal;
  word-spacing: normal;
  word-break: normal;
  display: inline-block;
  vertical-align: top;
}

/* the w[*] split the content in equals pieces */
.w1 {
  width: 100%;
}

.w2 {
  width: 50%;
}

.w3 {
  width: 33.33333%;
}

.w3-2 {
  width: 66.66666%;
}

.w4 {
  width: 25%;
}

.w5 {
  width: 20%;
}

.w6 {
  width: 16.66666%;
}

.w7 {
  width: 14.28571428571429%;
}

.w8 {
  width: 12.5%;
}

/* the g[*] class is based in 12 columns grid */
.g1 {
  width: 8.333333%;
}

.g2 {
  width: 16.666666%;
}

.g3 {
  width: 25%;
}

.g4 {
  width: 33.333333%;
}

.g5 {
  width: 41.666666%;
}

.g6 {
  width: 50%;
}

.g7 {
  width: 58.333333%;
}

.g8 {
  width: 66.666666%;
}

.g9 {
  width: 75%;
}

.g10 {
  width: 83.333333%;
}

.g11 {
  width: 91.666666%;
}

.g12 {
  width: 100%;
}

.rowfix {
  word-break: keep-all;
  word-spacing: -0.3em;
}

/*
**********
Align components
**********
*/
.v-align-top {
  vertical-align: top;
}

.v-align-bottom {
  vertical-align: bottom;
}

.v-align-middle {
  vertical-align: middle;
}

.v-align-base {
  vertical-align: baseline;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.all-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/*
**********
Other components
**********
*/
.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.m-auto {
  margin: auto;
}

.b-inline-block {
  display: inline-block;
}

.t-little-big {
  font-size: 1.5em;
}

.t-big {
  font-size: 2em;
}

.t-bigger {
  font-size: 3em;
}

.t-small {
  font-size: 0.8em;
}

.t-smaller {
  font-size: 0.6em;
}

.t-white {
  color: #fff;
}

.t-uppercase {
  text-transform: uppercase;
}

.t-black {
  color: #000;
}

.t-grey {
  color: #707070;
}

.t-grey-all * {
  color: #707070;
}

.t-grey-all a {
  color: #1592e6;
}

.bg-red {
  background: var(--theme-color);
}

.bg-light-red {
  background: var(--theme-color-light);
}

.bg-dark-red {
  background: var(--theme-color-dark);
}

.f-0 {
  font-size: 0;
  line-height: 0;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}
.clearhead {
  height: 138px;
  display: block;
  clear: both;
}
.bttn-light {
  color: var(--font-color);
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 2em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--background-color);
  border: 1px solid var(--font-color);
  border-radius: 5px;
  min-width: 200px;
}
.bttn-light:hover {
  background-color: var(--font-color);
  color: var(--background-color);
}
.bttn {
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 2em !important;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--theme-color) !important;
  border: 1px solid var(--theme-color);
  border-radius: 5px !important;
  font-weight: normal;
}
.bttn:hover {
  background-color: #fff !important;
  color: var(--theme-color) !important;
}
.bttn svg * {
  transition: 0s;
}
.bttn:hover svg * {
  fill: var(--theme-color);
  transition: 0s;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: block;
  border: 3px solid var(--theme-color-very-light);
  border-radius: 50%;
  border-top: 3px solid var(--theme-color-light);
  width: 36px !important;
  height: 36px !important;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  background-image: none;
  margin: 15px auto;
  clear: both;
}
#header {
  background: var(--background-color);
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 15px 0 #00000038;
  line-height: 1.2em;
}
#header .grid > .g9 {
  width: 70%;
}
#header .grid .op-portal {
  display: none;
}
#header .grid > .g3 {
  width: 30%;
  padding-left: 2em;
}
#header .hed2 .grid > .g3 {
  width: 25%;
}
#header .hed2 .grid > .g9 {
  width: 75%;
}
#header .hed2 .grid > .g8 {
  width: 71%;
}
#header .hed1 {
  padding: 0.8em 0;
  font-size: 0.9em;
  border-bottom: 1px solid #e3e3e3;
}
#header .hed2 {
  padding: 0.75em 0;
}
/* REDES SOCIAIS HEADER */
#header .hed2 .social-list {
  margin-bottom: 8px;
  margin-left: 25px;
  display: inline-flex !important;
}
#header .hed2 .social-list .social-icon.facebook {
  margin-right: -5px;
}
#header .hed2 .social-list .social-icon:hover svg * {
  fill: #868484;
}
#header .hed2 .social-list .social-icon svg {
  max-width: 30px;
  max-height: 20px;
  width: 100%;
  height: 100%;
}
.social-list a {
  margin-right: 12px !important;
}
@media (max-width: 1440px) and (min-width: 1200px) {

}
@media (min-width: 1250px) {
  #header .hed2 .grid.rowfix {
    display: flex;
    align-items: center;
  }
  #header .hed2 .g4 {
    width: calc(100% - 71%);
  }
}
@media (max-width: 1250px) and (min-width: 501px) {
  #header .hed2 .g4 {
    width: calc(100% - 50px) !important;
  }
}
@media (max-width: 500px) {
  #header .hed2 #site_logo .social-list {
    display: none !important;
  }
}
/* FIM - REDES SOCIAIS HEADER */
#header .portal * {
  display: inline-block;
  vertical-align: middle;
}
#header .portal .opt {
  font-size: 0.9em;
  margin-left: -30px;
  line-height: 1.3em;
}
#header .portal .opt a:hover {
  text-decoration: underline;
}
#header .portal a {
  color: var(--theme-color);
}
#header p {
  margin: 0;
  color: var(--theme-color-dark);
}
#header .portal {
  display: flex;
  align-items: flex-end;
}
#header .portal form {
  width: calc(100% - 100px);
  display: flex;
  flex-direction: column;
}
#header .portal form .fields {
  width: calc(100% - 15px);
  padding-left: 0px;
}
#header .portal form input {
  width: calc(50% - 85px);
  margin-right: 8px;
  border: 1px solid var(--theme-color-dark);
}
#header nav {
  color: var(--theme-color);
  margin-top: -1.2em;
}
#header .bttn.bol::before {
  content: '';
  background-image: url(../img/bar-code.svg);
  display: inline-block;
  width: 2em;
  height: 1.2em;
  object-fit: contain;
  background-size: 1.5em 1.6em;
  background-repeat: no-repeat;
  background-position: left center;
  vertical-align: middle;
  margin-top: -0.2em;
  transition: 0.3s all;
}
#header .bttn.bol:hover::before {
  filter: brightness(0.6);
  transition: 0.3s all;
}
#header .bttn.bol * {
  vertical-align: middle;
}
#header .lang {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  width: calc(100% - 240px);
}
#header .lang * {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}
#header .lang img {
  height: 35px;
  width: auto;
}
#header .lang a {
  display: inline-block;
  padding: 0 6px;
  border-radius: 5px;
}
#header .lang .wpml-ls-current-language a,
#header .lang a:hover {
  background: #e3e3e3;
}
#header .hed2 {
  background: var(--background-color);
  position: relative;
  z-index: 3;
}
#header .hed2 *:not(.grid) {
  vertical-align: middle;
  display: inline-block;
  padding: 0;
}
#header .hed2 nav a {
  color: var(--theme-color-dark);
  padding: 0.5em 0.7em !important;
  border-radius: 5px;
}
#header .hed2 nav a:hover {
  background: var(--theme-color);
  color: var(--background-color);
}
#header .hed2 nav,
#header .hed2 ul {
  width: 100%;
  text-align: right;
  margin: 0;
}
#header *,
#header.scrolled * {
  transition: 0.6s all ease;
}
#header .hed1 {
  max-height: 67px;
}
#header.scrolled .hed1 {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  opacity: 0;
}
#header.scrolled .hed2 {
  padding: 1em 0;
}
#header.scrolled .hed2 #site_logo img {
  width: 190px;
}
#header .bttn.bol.only-desktop {
  width: 240px;
  float: left;
}

#footer.com-selos {
  margin-top: 0;
}
#footer {
  border-top: 4px solid var(--theme-color);
  margin-top: 7em;
}
#footer .rows > .grid.rowfix {
  padding: 2em 0;
}
#footer .logo {
  width: 200px;
  height: 138px;
}
#footer h3 {
  font-weight: 600;
}
#footer ul,
#footer li,
#footer a {
  list-style: none;
  padding: 0;
  color: var(--font-color);
}
#footer a:hover {
  margin-left: 5px;
  opacity: 0.8;
}
#footer li {
  line-height: 2em;
}
#footer .ctc img {
  display: inline-block;
  vertical-align: top;
  margin-top: 3px;
}
#footer .ctc > div {
  margin-bottom: 1em;
}
#footer .appbtn {
  margin: 0 !important;
  display: flex;
  gap: 5px;
}
#footer .btn-app {
  display: block;
}
#footer .btn-app svg {
  max-width: 155px;
}

/* REDES SOCIAIS FOOTER */
#footer .social-list {
  margin-top: 30px;
  display: inline-block;
  width: 200px;
  text-align: center;
}
#footer .social-list .social-icon.facebook {
  margin-right: -5px;
}
#footer .social-list .social-icon:hover {
  margin-left: 0px;
  opacity: 1;
}
#footer .social-list .social-icon:hover svg * {
  fill: #868484;
}
#footer .social-list .social-icon svg {
  max-width: 30px;
  max-height: 20px;
  width: 100%;
  height: 100%;
}
/* FIM - REDES SOCIAIS FOOTER */

#ae_footer {
  padding: 0.8em 0;
  font-size: 0.8em;
  background: var(--theme-color);
}

#ae_footer .grid * {
  vertical-align: middle;
  display: inline-block;
  font-size: 1em;
  color: var(--background-color);
  margin: 0;
}
#ae_footer .grid img {
  margin-left: 5px;
}
:root {
  --swiper-theme-color: var(--theme-color) !important;
  --swiper-navigation-size: 19px !important;
}
.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.only-mobile {
  display: none !important;
}
.only-desktop {
  display: block;
}
#footer .rows .ctc > a {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
}
#footer .rows .ctc a * {
  display: inline-block;
}
#footer .rows .ctc a div {
  padding-left: 10px;
  width: calc(100% - 28px);
}
#footer .mapbtn a {
  padding: 0.35em;
  width: 90%;
  margin-top: 1em;
  min-width: fit-content;
  font-size: 0.9em;
}
#footer .mapbtn .maps::before,
#footer .mapbtn .waze::before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  background-image: url('../img/map.svg');
  background-size: contain;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}
#footer .mapbtn .waze::before {
  background-image: url('../img/waze.svg');
}
#footer .mapbtn a:hover {
  color: #fff;
}

/****** SELOS *****/
#selos {
  padding: 60px 20px;
}
#selos .selos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#selos .selo {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
/****** FIM - SELOS *****/


@media screen and (max-width: 1400px) and (min-width: 1301px) {
  #header .grid>.g9 {
    width: 65%;
  }
  #header .grid>.g3 {
    width: 35%;
  }
  #header .hed2 .g4 {
      width: calc(100% - 68%);
  }
  #header .hed2 .grid>.g8 {
      width: 68%;
  }
  #header .hed2 nav a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 1250px) {
  #header .grid>.g9 {
      width: 65%;
  }
  #header .grid>.g3 {
      width: 35%;
  }
  #header .hed2 .g4 {
    width: calc(100% - 65%) !important;
  }
  #header .hed2 .grid>.g8 {
      width: 65%;
  }
  #header .hed2 nav a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1249px) and (min-width: 1099px) {
  #header .grid>.g9 {
      width: 60%;
  }
  #header .grid>.g3 {
      width: 40%;
      padding-left: 1em;
  }
  #header .hed2 .g4 {
    width: calc(100% - 67%) !important;
  }
  #header .hed2 .grid>.g8 {
      width: 67%;
  }
  #header #site_logo img {
    max-width: 210px;
  }
  #header .hed2 nav a {
    font-size: 12px;
  }
  #footer .g4 {
    width: 27%;
  }
  #footer .mapbtn {
    display: flex;
    gap: 5px;
  }
  #footer .mapbtn a {
    width: 100%;
    font-size: .8em;
  }
}
@media screen and (max-width: 1099px) and (min-width: 1000px) {
  #header .grid>.g9 {
      width: 60%;
  }
  #header .grid>.g3 {
      width: 40%;
      padding-left: 0;
  }
  #header .hed2 .g4 {
    width: calc(100% - 75%) !important;
  }
  #header .hed2 .grid>.g8 {
      width: 75%;
  }
  #header #site_logo img {
    max-width: 210px;
  }
  #header #site_logo .social-list {
    display: none !important;
  }
  #header .hed2 nav a {
    font-size: 12px;
  }
  #footer .g4 {
    width: 25%;
  }
  #footer .mapbtn {
    display: flex;
    gap: 5px;
  }
  #footer .mapbtn a {
    width: 100%;
    font-size: .7em;
  }
}
@media screen and (max-width: 1000px) {
  
  #header #main_navigation {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    height: 100vh;
    width: 80vw;
    box-shadow: 0 0 25px 0 #00000080;
    z-index: 19999;
    transform: translateX(110%);
    pointer-events: none;
  }
  #header.act #main_navigation {
    transform: translateX(0);
    pointer-events: all;
  }
  #main_navigation li {
    display: block;
    width: 100%;
    padding: 0 10% !important;
  }
  #main_navigation li a {
    display: block;
    width: 100%;
    font-size: 1.25em;
  }
  #main_navigation nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  #main_navigation .close {
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
  }
  #main_navigation .close::before,
  #main_navigation .close::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    height: 100%;
    width: 3px;
    border-radius: 10px;
    background: var(--font-color);
  }
  #main_navigation .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #header .hed2 .grid::before {
    background: #000;
    content: '';
    display: block;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
  }
  #header.act .hed2 .grid::before {
    opacity: 0.3;
  }
  #header .nav-mobile {
    position: absolute;
    height: 35px;
    width: 35px;
    right: 5%;
    display: block;
    line-height: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #header .nav-mobile span {
    height: 3px;
    width: 100%;
    margin-bottom: 7px;
    border-radius: 10px;
    background: var(--font-color);
  }
  #header .nav-mobile span:last-child {
    margin-bottom: 0;
  }
  #header .nav-mobile span:first-child {
    margin-top: 6px;
  }
}
@media screen and (max-width: 1000px) {
  .only-mobile {
    display: block !important;
  }
  .only-desktop {
    display: none;
  }
  #header.scrolled .hed2 {
    padding: 0.5em 0;
  }
  
  #header .grid > .g9,
  #header .grid > .g3 {
    width: 100%;
    padding-left: 0;
  }
  #header .grid .op-portal {
    display: block;
    position: relative;
  }
  #header .grid .op-portal::before,
  #header .grid .op-portal::after {
    content: '';
    height: 10px;
    width: 2px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    right: 1.3em;
    transition: 0.5s all;
  }
  #header .grid .op-portal::before {
    transform: translate(-180%, -50%) rotate(-45deg);
  }
  #header .grid .op-portal::after {
    transform: translate(180%, -50%) rotate(45deg);
  }
  #header .grid .op-portal:hover::before {
    background: var(--theme-color);
  }
  #header .grid .op-portal:hover::after {
    background: var(--theme-color);
  }
  #header .grid .op-portal.act::before {
    transform: translate(-190%, -50%) rotate(45deg);
  }
  #header .grid .op-portal.act::after {
    transform: translate(190%, -50%) rotate(-45deg);
  }
  #header .grid > .g9 {
    width: calc(100% - 110px);
  }
  #header .lang {
    width: fit-content;
  }
  #header .grid > .g3 {
    width: 110px;
    text-align: right;
  }
  #header .portal form {
    padding: 1em 0;
  }
  #header .portal form .bttn {
    margin-left: 8px;
    width: 15%;
  }
  #header .grid > .g9 {
    padding-bottom: 0.5em;
  }
  #header .hed1 {
    max-height: 300px;
  }
  #footer .rows .grid>.g3 {
      width: 28%;
  }
  #footer .rows .grid > .g4 {
    width: 25%;
  }
  #header .portal {
    align-items: center;
    overflow: hidden;
    max-height: 0;
  }
  #header .portal.act {
    height: auto;
    max-height: 3000px;
    width: calc(100% + 110px);
  }

  #header .portal.act a:first-of-type {
    width: 30%;
    margin-right: 0;
  }
  #header .portal a:first-of-type {
      width: 30%;
  }
  /* #header .portal p, #header .portal .opt {
		display: none;
	} */

  #header .portal .opt {
    margin-left: 0;
    padding-bottom: 10px;
  }
  #header .portal .opt br {
    display: none;
  }
  #header .portal .opt a {
      width: 100% !important;
  }
  #header .portal form .fields,
  #header .portal form {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  #header .portal form .bttn {
    padding: 0.5em 1em !important;
  }
  #header .portal form input {
    width: calc(50% - 10%);
  }
  #header .portal form input[type='password'] {
    margin-right: 0;
  }
  #header .bttn.bol {
    width: 100%;
    background-color: #828181 !important;
    border-color: #828181;
  }
  #header .bttn.bol:hover {
    color: #000 !important;
    background-color: #fff !important;
  }
  #footer .mapbtn {
      display: flex;
      gap: 5px;
  }
  #footer .mapbtn a {
    width: 100%;
    font-size: .7em;
  }
}
@media screen and (max-width: 800px) {
  .clearhead {
    height: 132px;
  }
  #header .lang img {
    width: 30px;
    height: 40px;
  }
  #header .hed2 .grid > #site_logo {
    /* width: 50%; */
    width: 70%;
  }
  #header .portal {
    width: calc(100% + 110px);
    flex-wrap: wrap;
  }
  #header .portal form input {
        width: calc(50% - 7px);
  }
  #header .portal form .bttn {
      width: 100%;
      margin: 8px 0 0;
  }
  #header .portal .opt {
      width: 50%;
      padding: 0;
  }
  #header .portal .opt a:first-of-type {
      padding: 0.3em 0 !important;
  }
  #header .portal > a:first-of-type {
      width: 50% !important;
      padding: 0.7em 0 !important;
  }
  #header .bttn.bol {
    padding: 0.5em 1em !important;
  }
  #header .hed2 nav a {
    border-bottom: 1px solid #cdcdcd;
    padding: 0.75em 0.5em !important;
  }
  #header .hed2 nav li:last-child a {
    border-bottom: 0;
  }
  #footer .rows .grid > .g1 {
    width: 100%;
  }
  #footer .rows .grid > .g1 img {
    max-width: 50px;
  }
  #footer .rows .grid > .g3 {
    width: 100%;
  }
  #footer .rows .grid > .g4 {
    display: none;
  }
  #footer .rows .grid > .g2 {
    width: 100%;
  }
  #ae_footer {
    font-size: 0.7em;
    padding-bottom: 2em;
  }
  #ae_footer img {
    width: 80px;
  }
  #ae_footer .grid .w2 {
    width: 100%;
    text-align: center;
  }
  #header .grid .op-portal {
    font-size: 0.9em;
    line-height: 1.9em;
  }

  #selos {
      padding: 30px 20px;
  }
  #selos .selos {
      justify-content: center;
  }
  #selos .selos .selo {
      padding: 10px;
      width: 50%;
  }
}

ul.tags li {
  margin: 3px !important;
}

.single.single-post img {
  height: auto;
}


#header .portal #new_login_buttons {
    display: flex;
    gap: 20px;
}
@media screen and (max-width: 1000px) {
    #header .portal #new_login_buttons a.bttn {
        width: 100%;
    }
    #header .portal #new_login_buttons {
        padding:15px 0;
        width: 100%;
    }
}