@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
header#masthead img {
  max-width: 250px;
  padding-right: 20px;
}
:root {
  --primary-color: #eb8316;
  --secondary-color: #003c4b;
  --tertiary-color: #ff4b4b;
  --quaternary-color: #70818e;
  --quinary-color: #ced3cb;
  --sextenary-color: #b26134;

  --primary-font: "Roboto", sans-serif;
}
body{
  overflow-x: hidden;
}
.post,
.page {
  margin: 0;
}

a:visited {
  color: white;
}

a.lineal-btn:visited {
  color: var(--primary-color);
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  color: var(--secondary-color);
}

.no-link {
  cursor: auto;
  pointer-events: none;
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
}

.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free" !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-medium {
  max-width: 985px;
  margin: 0 auto;
}

a {
  text-decoration: none !important;
}

small {
  font-size: 16px;
}

h2,
.h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 2.813rem;
  line-height: 52.73px;
}

h3,
.h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 40px;
}

h4,
.h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 28px;
}

.form-select {
  height: 40px;
  background-color: white;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  color: var(--secondary-color);
}

.form-select:focus {
  border-color: unset;
  outline: 0;
  box-shadow: none;
}

.txt-primary-color {
  color: var(--primary-color);
}

.txt-secondary-color {
  color: var(--secondary-color);
}

.bg-primary-color {
  background-color: var(--primary-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
  color: white;
}

.black-box {
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(2px);
  padding: 60px 40px;
  color: white;
  border-radius: 8px;
}

.box-alert {
  padding: 25px;
  background: var(--primary-color);
  border-radius: 4px;
  color: white;
}

.box-alert small {
  color: #fdcda2;
}

.box-alert p {
  margin-bottom: 0;
  font-size: 20px;
}

.box-alert + .box-alert {
  margin-top: 25px;
}

.button-primary {
  font-size: 1rem;
  min-width: 220px;
  height: 45px;
  display: flex;
  max-width: 220px;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-weight: 400;
  color: white;
  transition: all 0.5s ease;
}

.button-primary:hover {
  background-color: var(--tertiary-color);
  color: white;
  transition: all 0.5s ease;
}

.lineal-btn {
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 20px;
  padding: 0 32px;
  transition: all 0.5s ease;
}

.lineal-btn:hover {
  border: 2px solid var(--primary-color);
  color: white !important;
  background: var(--primary-color);
  transition: all 0.5s ease;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** BREADCRUMBS **/
.breadcrumbs {
  color: #ced3cb;
}

.breadcrumbs a {
  color: #ced3cb;
  transition: all 0.5s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  transition: all 0.5s ease;
}

.breadcrumbs .separator {
  margin: 0 10px;
}

/** HAMBURGER MENU **/
.hamburger-menu {
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto 0;
  height: 30px;
  cursor: pointer;
  margin-right: 20px;
  z-index: 9999;
}

.hamburger-menu + p {
  margin-bottom: 0;
  font-size: 18px;
}

.header-transparent .hamburger-menu + p {
  color: white;
}

.bar,
.bar:after,
.bar:before {
  width: 25px;
  height: 2px;
}

.bar {
  position: relative;
  transform: translateY(12px);
  background: white;
  transition: all 0ms 300ms;
}

.bar.animate {
  background: rgba(0, 0, 0, 0);
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: white;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: white;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

ul {
  font-size: 1rem;
  padding: 0;
  margin: 0 0 25px 15px;
  line-height: 20px;
}

/** BANNER PAGE **/
.banner-page {
  position: relative;
  color: white;
  margin-bottom: 70px;
}

.banner-page img {
  width: 100%;
}
.banner-page img {
  width: 100%;
  /* max-height: 600px; */
  max-height: 300px;
  object-fit: cover;
}
.single-notas img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.banner-page .inner-banner {
  position: absolute;
  top: 50%;
  width: 1200px;
  margin: 0 auto;
  left: 0;
  transform: translateY(-50%);
  right: 0;
  text-align: center;
}

/** ACCORDION **/
.accordion-item {
  background-color: var(--quinary-color);
  border: none;
}

.accordion-header {
  background-color: var(--quinary-color);
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background-color: var(--quinary-color);
  color: var(--secondary-color);
  box-shadow: none;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 600;
}

.accordion-item .inner-button {
  max-width: 765px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.accordion-button[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: all 0.5s ease;
}

.accordion-button[aria-expanded="false"] i {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.accordion-body {
  background: var(--quinary-color);
  color: var(--secondary-color);
  max-width: 765px;
  margin: 0 auto;
  padding: 32px 0 65px 0;
}

.accordion-item + .accordion-item {
  margin-top: 30px;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

/** HOME SLIDER **/
.mainBanner {
  padding: 130px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mainBanner .container:first-child > .row:first-child {
  justify-content: flex-end;
}

.mainBanner h5 {
  margin-bottom: 25px;
}

.mainBanner p {
  color: var(--quinary-color);
}

.mainBanner .black-box .button-primary {
  margin: 60px auto 25px auto;
}

.mainBanner .swiper-pagination {
  position: relative;
  bottom: -6px;
}

.mainBanner .swiper-pagination-bullet {
  background: var(--quaternary-color);
}

.mainBanner .swiper-pagination-bullet-active {
  background: white;
}

.trafic-state {
  padding: 110px 0;
}

.trafic-state h3 {
  margin-bottom: 50px;
}

.trafic-state iframe {
  margin-top: -26px;
}

.rute-works {
  padding: 80px 0;
}

.rute-works h3 {
  margin-bottom: 50px;
}

.rute-works .row:first-child > div[class*="col-md"]:first-child {
  padding-right: 135px;
  border-right: 1px solid #ced3cb;
}

.rute-works .row:first-child > div[class*="col-md"]:last-child {
  padding-left: 135px;
}

.feed-twitter {
  padding: 0 55px;
}

.foot-navegation {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9;
}

.foot-navegation ul {
  list-style: none;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.foot-navegation ul li {
  font-size: 10px;
  transition: all 0.5s ease;
}
.foot-navegation ul li a {
  color: white;
  transition: all 0.5s ease;
}
.foot-navegation ul li:hover,
.foot-navegation ul li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease;
}
.foot-navegation ul li i {
  display: block;
  text-align: center;
  font-size: 30px;
  margin-bottom: 5px;
}

/** OFICINAS COMERCIALES **/
.info-gestiones a {
  color: var(--primary-color);
  text-decoration: underline !important;
  margin-left: 20px;
  margin-bottom: 20px;
  display: flex;
}

.info-gestiones p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.acentral-oficinas-comerciales figure p {
  margin-top: 20px;
}

.embed-container {
  margin-bottom: 3.5rem;
}

.acentral-oficinas-comerciales .accordion-body .lineal-btn {
  margin-top: 85px;
}

/** AUTOPASE PAGE **/
.acentral-autopase .row > div[class*="col-md"] {
  display: flex;
  border-right: 1px solid #ced3cb;
  justify-content: center;
  padding-left: 25px;
}

.acentral-autopase .row > div[class*="col-md"]:nth-child(3n) {
  border-right: none;
}

.acentral-autopase .row > div[class*="col-md"] figure {
  margin-right: 40px;
}

.acentral-autopase .row > div[class*="col-md"] h6 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 19px;
}

.acentral-autopase .row > div[class*="col-md"] .inner-column a {
  margin-top: 20px;
  font-size: 16px;
  width: fit-content;
}

.acentral-autopase .row > div[class*="col-md"] .inner-column a i {
  margin-left: 10px;
}

.acentral-autopase .row > div[class*="col-md"] .inner-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/** DROPDOWNS **/
.group-dropdown {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.dropdown-acentral {
  max-width: 320px;
  border-radius: 4px;
  background: #ced3cb;
}
.dropdown-acentral button i {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.dropdown-acentral button.active i {
  transform: rotate(-180deg);
  transition: all 0.5s ease;
}
.dropdown-acentral button {
  border: none;
  background: #ced3cb;
  min-width: 320px;
  border-radius: 4px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 500;
  padding: 0 32px;
}

.dropdown-acentral button p {
  margin-bottom: 0;
}

.dropdown-inner {
  padding: 0 32px 32px 32px;
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 19px;
}

/** DEVOLUCIÓN TAG **/
.devolucion-nota P {
  font-size: 12px;
}

.devolucion-nota h5 {
  font-size: 16px;
}

.devolucion-nota {
  margin-top: 35px;
}

/** TARIFAS **/
.acentral-tarifas .row div[class*="col-md-"]:first-child {
  padding-right: 100px;
}

.acentral-tarifas .row div[class*="col-md-"]:last-child {
  padding-left: 100px;
}

.group-descriptions p {
  margin-bottom: 0;
}

.tarifario {
  background-color: var(--secondary-color);
  padding: 15px;
  border-radius: 4px;
  color: white;
}

.tarifario.tarifa-base {
  background-color: var(--primary-color);
}

.tarifario.tarifa-punta {
  background-color: var(--quaternary-color);
}

.tarifario.tarifa-saturacion {
  background-color: var(--sextenary-color);
}

.tarifario + .tarifario {
  margin-top: 25px;
}

.tarifario p {
  margin-bottom: 0;
}

.tarifario .horarios {
  margin-top: 15px;
}

.tarifario .horarios p {
  opacity: 0.7;
}

.tarifario .horarios p + p {
  margin-top: 5px;
}

.acentral-about_mapa {
  position: relative;
}

.acentral-about_mapa figure img {
  width: 100%;
}

.acentral-about_mapa .inner-container {
  max-width: 320px;
}

.acentral-about_mapa .container-medium {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

.acentral-about_mapa h3 {
  margin-bottom: 32px;
}

.list-places {
  display: flex;
  gap: 32px;
  color: white;
  font-weight: 400;
  font-size: 16px;
}

/** 404 **/
.error-404.not-found {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.error-404 a {
  margin: 35px auto 0 auto;
  color: white;
}

.error-404 h1 {
  margin-bottom: 35px;
}

.error-404 h4 {
  max-width: 780px;
}

/** FOOTER **/
footer {
  padding: 70px 0;
  color: white;
  margin-top: 55px;
}
footer .no-ftr {
  display: none;
}
.page-id-10 footer {
  margin-top: 0;
}

.bottom-footer {
  margin-top: 110px;
  text-align: center;
}

.bottom-footer p {
  margin-bottom: 0;
  font-size: 12px;
}

.title-widget {
  font-size: 16px;
  margin-bottom: 15px;
}

footer ul {
  padding: 0;
  margin: 0;
  color: white;
  list-style: none;
}

footer ul li,
footer ul li a {
  color: white;
  font-size: 12px;
  line-height: normal;
  transition: all 0.5s ease;
}

footer ul li a:hover {
  color: var(--secondary-color);
  transition: all 0.5s ease;
}

footer ul li + li {
  margin-top: 15px;
}

/** ARCHIVE POST **/
.list-item-post {
  display: flex;
}

.list-item-post .card-thumbnail {
  flex: 0 0 130px;
}

.list-item-post .card-thumbnail img {
  min-height: 100px;
  object-fit: cover;
  border-radius: 0;
}

.list-item-post .card-body {
  padding: 0 0 0 32px;
  margin: 0;
}

.list-item-post .card-body h4,
.list-item-post .card-body h4 a, .acentral-news h4.card-title a {
  font-size: 24px;
  color: var(--secondary-color);
}

.list-item-post .card-body p {
  font-size: 12px;
  color: black;
  line-height: normal;
}

.date {
  color: #ced3cb !important;
  margin-bottom: 0;
}

.acentral-news .page-grid .col-md-4:not(:nth-child(-n + 3)) {
  margin-top: 60px;
}
.acentral-news .card img {
  height: 200px;
  object-fit: cover;	
}
.acentral-news .card-body {
  height: 270px;
}
.pages {
  text-align: center;
  margin-bottom: 100px;
}

.page-numbers {
  font-size: 24px;
  font-weight: 600;
  color: #70818e !important;
}

.page-numbers + .page-numbers {
  margin-left: 30px;
}

.page-numbers.current,
.next.page-numbers,
.prev.page-numbers {
  color: var(--secondary-color) !important;
}

.next.page-numbers,
.prev.page-numbers {
  font-size: 20px;
  font-weight: 700;
}

.pages .container:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single .entry-content {
  margin-bottom: 100px;
}

.single .entry-content p {
  font-size: 12px;
}

.social-profile {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.social-profile a {
  width: 32px;
  height: 32px;
  background: #eb8317;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 2px;
  transition: all 0.5s ease;
}

.social-profile li + li {
  margin-left: 10px;
}

.social-profile li:first-child a {
  background: #3a5a97;
}

.social-profile li:nth-child(2) a {
  background: #0ec2fd;
}

.social-profile li:nth-child(3) a {
  background: #41d329;
}

.social-profile li:nth-child(4) a {
  background: #aaaaaa;
}

.social-profile a:hover {
  background: #eb8317;
  transition: all 0.5s ease;
}

.social-share-wrap p {
  font-size: 16px !important;
}

/** HEADER **/
header {
  color: white;
  padding: 25px 0;
}

header .inner-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-right {
  display: flex;
}

.menu-right .hamburger-menu {
  margin-left: 60px;
}

.emergency-phone {
  display: flex;
}

.emergency-phone i {
  color: var(--tertiary-color);
  font-size: 3rem;
  margin-right: 30px;
}

.right-box {
  text-align: center;
}

.right-box p {
  margin-bottom: 0;
  font-size: 12px;
}

.right-box h6 {
  margin-bottom: 0;
}

.sidebar-menu {
  color: white;
  width: 100%;
  max-width: 1200px;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 999;
  position: fixed;
  right: 0;
  top: 0;
  margin: 0 auto;
  left: 0;
  height: 100%;
}

.open-menu {
  overflow: hidden;
}

.open-menu .sidebar-menu {
  transform: translateX(0);
  transition: transform 0.3s;
}

.sidebar-menu .inner-menu {
  padding: 40px 110px;
  background-color: var(--secondary-color);
  height: 100vh;
  max-width: 50%;
  margin: 0 0 0 auto;
}

.sidebar-menu .inner-menu::after {
  content: "";
  background: var(--secondary-color);
  width: 100%;
  height: 150%;
  display: block;
  top: 0;
  position: absolute;
  left: 100%;
}

.sidebar-menu .header-mnu {
  text-align: right;
}

.sidebar-menu .header-mnu i {
  font-size: 2rem;
  cursor: pointer;
}

.sidebar-overlay.active {
  display: block;
  background: #000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  min-height: 100vh;
  opacity: 0.35;
  transition: opacity 0.2s ease-in-out;
}

.acentral-menu {
  padding: 120px 0;
}

.acentral-menu ul {
  color: white;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.acentral-menu ul li + li {
  margin-top: 30px;
}

.acentral-menu ul a {
  color: white;
  font-size: 1rem;
  padding: 0;
  transition: all 0.5s ease;
}

.acentral-menu ul a:hover {
  color: var(--primary-color);
  transition: all 0.5s ease;
}

@media (max-width: 992px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }

  .container-medium {
    padding: 0 25px;
  }

  .titulo-section {
    font-size: 20px;
    text-align: center;
  }
  .sidebar-menu .inner-menu {
    max-width: 100%;
  }
  .accordion-button,
  .accordion-button:not(.collapsed) {
    font-size: 1rem;
    font-weight: 500;
  }

  .accordion-item + .accordion-item {
    margin-top: 15px;
  }

  .accordion-body {
    padding: 25px 30px;
  }

  .banner-page .inner-banner {
    width: 100%;
  }

  .mainBanner {
    padding: 50px 0 0 0;
  }

  .mainBanner .container:first-child > .row:first-child div[class*="col-md"] {
    padding: 0 30px;
  }

  body:not(.home):not(.error404):not(.page-id-176) main {
    padding-bottom: 50px;
    margin-bottom: 110px;
  }

  body.single main {
    margin-bottom: 0 !important;
  }

  .black-box {
    padding: 48px 40px 20px 40px;
    margin-bottom: 1.5rem;
  }

  .trafic-state,
  .rute-works .column-left,
  .rute-works .column-right {
    position: fixed;
    top: inherit;
    width: 100%;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%) scaleY(0);
    transition: all 0.5s ease;
    z-index: 1;
    visibility: hidden;
    /**/
  }

  .access-works,
  .access-trafic,
  .access-feed {
    overflow: hidden;
  }

  .access-works .rute-works .column-left,
  .access-trafic .trafic-state,
  .access-feed .rute-works .column-right {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.3s;
    /**/
  }

  .trafic-state {
    overflow: hidden;
  }

  .trafic-state h3 {
    /*display: none;*/
  }

  .trafic-state .container {
    padding: 0;
    height: 100%;
  }

  .trafic-state .embed-container {
    height: 100%;
    margin-bottom: 0;
    position: inherit;
    padding: 0;
  }

  .rute-works {
    padding: 0;
  }

  .rute-works .column-left {
    padding: 40px 30px !important;
    background: white;
    overflow: scroll;
  }

  .rute-works .column-right {
    padding: 0px !important;
    background: white;
  }

  .feed-twitter {
    padding: 0 15px;
  }

  .list-alert {
    max-height: calc(100% - 165px);
    overflow: scroll;
  }

  .acentral-oficinas-comerciales .embed-container {
    padding-bottom: 150%;
    margin-bottom: 0 !important;
    margin-top: 3.5rem;
  }

  .acentral-oficinas-comerciales
    .accordion-body
    .row
    div[class*="col-md-"]:last-child {
    display: flex;
    flex-direction: column-reverse;
  }

  .acentral-autopase .row > div[class*="col-md"] {
    border-right: none;
    padding: 0 40px;
    justify-content: flex-start;
  }

  .acentral-autopase .row > div[class*="col-md"] figure {
    margin-right: 60px;
    width: 75px;
    text-align: center;
  }

  .acentral-autopase .row > div[class*="col-md"] + div[class*="col-md"] {
    /*content: '';
        background: #CED3CB;
        height: 1px;
        width: 100%;
        display: block;
        flex: 0 0 100%;
        margin: 50px 0;*/
    border-top: 1px solid #ced3cb;
    margin-top: 30px;
    padding-top: 30px;
  }

  .acentral-autopase .container-medium {
    padding: 0;
  }

  .acentral-autopase .container-medium .row {
    margin: 0;
  }

  .acentral-autopase .lineal-btn {
    padding: 0 25px;
  }

  /** DROPDOWN **/
  .group-dropdown {
    flex-direction: column;
  }

  /** TARIFAS **/
  .acentral-tarifas .row div[class*="col-md-"]:first-child {
    padding-right: 15px;
  }

  .acentral-tarifas .row div[class*="col-md-"]:last-child {
    padding-left: 15px;
  }

  .acentral-tarifas .row div[class*="col-md-"] + div[class*="col-md-"] {
    margin-top: 32px;
  }

  .item-graphic p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .item-graphic i {
    font-size: 10px;
    margin-right: 10px;
  }

  .item-info {
    display: flex;
    padding: 0 20px;
    margin-bottom: 25px;
  }

  .item-info-group {
    flex: 0 0 50%;
  }

  .item-info-group p {
    flex-direction: column;
    font-size: 16px;
    font-weight: 900;
    color: #f15f22;
  }

  .item-info-group p small {
    flex: 0 0 100%;
    color: var(--secondary-color);
    font-weight: normal;
    font-size: 10px;
    text-transform: uppercase;
  }

  .acentral-about_places .inner-container h5 {
    color: var(--secondary-color) !important;
  }

  .list-places {
    gap: 32px;
    color: var(--secondary-color);
  }

  .error-404.not-found {
    align-items: flex-start;
    padding: 55px 0;
  }

  .error-404 h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
  }

  .page-numbers {
    font-size: 16px;
  }

  .next.page-numbers,
  .prev.page-numbers {
    font-size: 15px;
  }

  .acentral-news .col-md-4 + .col-md-4 {
    border-top: 1px solid #d9d9d9;
    margin-top: 50px;
    padding-top: 50px;
  }

  .pages {
    margin-bottom: 0;
  }

  .sidebar-menu {
    max-width: 100%;
    transform: translateX(0) translateY(-250%);
    transition: transform 0.3s;
    z-index: 99;
    position: fixed;
    top: inherit;
    bottom: 0;
    height: calc(100% - 110px);
  }

  .open-menu .sidebar-menu {
    transform: translateX(0) translateY(0);
  }

  .sidebar-overlay.active {
    background: transparent;
    display: none;
  }

  .header-mnu {
    display: none;
  }

  header {
    position: relative;
    z-index: 9999;
  }

  #query-monitor-main:not(.qm-show-right) {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body:not(.home):not(.error404):not(.page-id-176) main {
    padding-bottom: 50px;
    margin-bottom: 110px;
  }

  .button-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transition: all 0.5s ease;
  }
  .acentral-menu {
    padding: 50px 0;
  }
  .sidebar-menu .inner-menu {
    padding: 40px 40px;
  }
  .banner-page {
    margin-bottom: 30px;
  }
  .trafic-state iframe {
    margin-top: -26px;
    height: calc(100% + 26px);
  }
}
