li#menu-item-213, li#menu-item-212 {
    display: none;
}
footer .site-info img {
    max-width: 260px;
}
.emergency-phone a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-image: url(../images/iconoEmergencia.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    /* padding-bottom: 18px; */
    padding-bottom: 30px;
}
.emergency-phone i {
    color: #ffffff;
    margin-right: 12px;
}
.right-box {
    text-align: left;
    color: #fff;
}
.right-box h6 {
    font-weight: 900;
}
.mainBanner h5, .mainBanner p {
    text-align: center;
}
@font-face {
    font-family: LED Dot-Matrix;
    src: url(../font/LED-Dot-Matrix.ttf);
}
.scrollVariable {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}
.scrollVariable h3 {
    font: 21px LED Dot-Matrix;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0px 0px 10px var(--primary-color);
    /* background-color: rgb(0 0 0 / 58%); */
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    padding: 10px 50px;
    border-radius: 8px;
    /* border: solid 2px var(--primary-color); */
    height: 75px;
}
/* .scrollVariable h3 {
    font: 30px LED Dot-Matrix;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0px 0px 10px var(--primary-color);
    background-color: rgb(0 0 0 / 58%);
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    border: solid 2px var(--primary-color);
} */

.scrollVariable h3:before {
    content: '';
    position: absolute;
    width: 60%;
    height: 28px;
    /* border-left: solid 2px var(--primary-color); */
    /* border-right: solid 2px var(--primary-color); */
    bottom: -28px;
    left: 20%;
}
.titleFlex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.titleFlex img {
    margin-right: 15px;
    height: 90px;
}
.trafic-state h3 {
    margin-bottom: 10px;
}
.titleCont {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scrollVariable ul {
    padding: 0;
    list-style-type: none;
    margin: 0 auto;
    /* width: 90%; */
}
.scrollCont {
    overflow: auto;
    height: 53vh;
}
.scrollVariable li {
    padding: 8px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
    margin: 0 0 15px 0;
    position: relative;
    border-bottom: solid 2px var(--primary-color);
    border-radius: 0 0 4px 4px;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 30%);
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fafe00;
}
.trafic-state .embed-container iframe, .trafic-state .embed-container object, .trafic-state .embed-container embed {
    height: 110%;
}
.ruteCont {
    padding-bottom: 70px;
}
.rutes li {
    margin-bottom: 10px;
}
.conexiones {
    border-top: solid 1px #eb8316;
    display: flex;
    width: 100%;
    padding: 15px 0;
    flex-direction: row;
}

.conexiones h6 {
    width: 130px;
    color: #eb8316;
    padding-right: 15px;
}

.conexiones ul {
    padding: 0;
    column-count: 3;
    font-size: 0.75em;
    line-height: 1em;
}
.trafic-state {
    padding: 110px 0 180px;
    position: relative;
}
.carretera {
    position: absolute;
    left: 0;
    height: 140px;
    width: 100%;
    background-image: url(../images/carretera.jpg);
    background-size: 100% 120px;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
    padding-top: 20px;
    overflow: hidden;
}
.carAnimated {
    position: absolute;
    top: 0;
    height: 60px;
    width: 150px;
    background-image: url(../images/car.png);
    background-size: 100% 100%;
    z-index: 1;
    -webkit-animation: move 12s linear infinite;
  -moz-animation: move 12s linear infinite;
  -ms-animation: move 12s linear infinite;
  -o-animation: move 12s linear infinite;
  animation: move 12s linear infinite;
}
@-webkit-keyframes move{
  from {
    left: -10vw;
  }
  to {
    left: 110vw;
  }
}
@keyframes move {
  from {
    left: -10vw;
  }
  to {
    left: 110vw;
  }
}
.carAnimated:before, .carAnimated:after {
    content: '';
    height: 30px;
    width: 30px;
    background-image: url(../images/llanta.png);
    background-size: 100% 100%;
    left: 12px;
    bottom: -2px;
    position: absolute;
    -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
.carAnimated:after {
    left: 107px;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.carretera .button-primary {
    position: absolute;
    right: 10vw;
    top: 42%;
    z-index: 1;
}
.turismo .box-alert {
    display: flex;
    position: relative;
    padding: 0;
    flex-direction: row;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
    align-items: center;
    color: #003c4b;
    -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.turismo .box-alert p {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    padding: 20px;
    background: rgb(252 252 252);
    background: linear-gradient(90deg, rgb(252 252 252 / 70%) 0%, rgb(252 252 252 / 50%) 100%);
    backdrop-filter: blur(2px);
}

.turismo figure {
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.turismo figure img {
    object-fit: cover;
    -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.turismo .box-alert:hover figure img {
    transform: scale(1.1);
}
.turismo .box-alert:hover p {
    color: #eb8316;
}
.feed-twitter {
    padding: 0;
}
@media only screen and (max-width: 560px) {
    .menu-left a, .menu-left img {
        width: 100%;
        height: auto;
    }
    section#tourism .col-md-6.col-sm-12.column-left{
        top: 0 !important;
    }
    .pages {
        margin-bottom: 10rem !important;
    }
    /* #trafic-state .scrollVariable ul {
        padding-top: 3rem;
    } */
    /*Scroll para las secciones de trafico y turismo*/
    div#trafic-state, #tourism {
        scroll-margin-top: 200px;
    }
    .trafic-state {
        padding: 60px 0 180px;
    }
    section.mainBanner{
        height: 90vh !important;
    }
    .acentral-oficinas-comerciales .embed-container {
        padding-bottom: 15%;
    }
    .accordion-body {
        padding: 0 25px 30px;
    }
    .single-notas img{
        min-height: 300px;
    }
}
@media only screen and (max-width: 992px) {
    .emergency-phone {
        position: relative;
    }
    .emergency-phone i {
        font-size: 1rem;
        left: -2px;
        position: absolute;
        bottom: 0;
    }
    .menu-right .hamburger-menu {
        margin-left: 20px;
    }
    .logo {
        height: 32px;
        width: auto;
    }
    .right-box h6, .right-box p {
        font-size: 0.8em;
    }
    .trafic-state, .rute-works .column-left, .rute-works .column-right {
        position: relative;
        visibility: inherit;
        transform: inherit!important;
    }
    .rute-works .column-left, .list-alert {
        overflow: auto;
    }
    .box-alert p {
        font-size: 1em;
    }
    .embed-container iframe, .embed-container object, .embed-container embed {
        position: relative;
    }
    .trafic-state .embed-container {
        height: 300px;
        margin-bottom: 20px;
    }
    .trafic-state .container {
        padding: 0 20px;
    }
    section.banner-page h2 {
        line-height: 30px;
    }
    
}
@media only screen and (max-width: 1024px) {
    .container-medium{
        max-width: 80%;
    }
    section#noticias-acentral .container-medium{
        max-width: 80%;
    }
}

/*about*/
section.acentral-about_mapa.Sobre.Autopista.Los.Libertadores  .list-places{
    justify-content: end;
}
section.acentral-about_mapa.Sobre.Autopista.Los.Libertadores h3 {
    text-align: end;
}
section.acentral-about_mapa.Sobre.Autopista.Los.Libertadores .list-places {
    color: white !important;
}
section.acentral-about_mapa.Sobre.Autopista.Los.Libertadores .container-medium  {
    position: absolute;
    bottom: 100px;
    left: unset;
    right: 5%;
}
section.acentral-about_mapa.Sobre.Autopista.Los.Andes .container-medium {
    position: absolute;
    top: 200px;
    left: 0;
    right: 100px;
}
section.acentral-about_mapa.Sobre.Autopista.Los.Andes .container-medium .inner-container * {
    text-shadow: -2.5px 2.5px 2.5px black;
}
/*end about*/
/*tarifa*/
.caja_destacado2 {
    background-color: #fde9cf;
    border-radius: 10px;
    padding: 8px 30px 8px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.caja_destacado {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 8px 30px 8px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.caja_destacado3 {
    background-color: #003c4b;
    border-radius: 10px;
    padding: 8px 30px 8px 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.caja_destacado3 p {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25rem;
}
.caja_destacado3 a {
    color: #eb8316;
    text-transform: uppercase;
    font-size: 1.25rem;
}
/* end tarifa*/
body.page {
    overflow-x: hidden;
}
.single-notas h1.h2 , section.banner-page  h1.h2{
    text-shadow: 0px 5px 10px BLACK;
}

/**/
.content-text-primary{
    padding: 1rem;
    border: 1px solid #eb8316;
    border-radius: 10px;
    background: #eb8316ad;
    color:#fff;
}
.content-text-secondary{
    padding: 1rem;
    border: 1px solid #003c4b;
    border-radius: 10px;
    background: #003c4bad;
    color:#fff;
}
.content-text-secondary *,
.content-text-primary * {
    color: white;
}
.preguntas-frecuentes h2 {
    font-size: 1.5rem;
}
.preguntas-frecuentes a {
    color: #eb8316;
}
.cont-btn-contactanos{
    display: flex;
    justify-content: center;
    margin: 1rem;
}

/**/

/*slider home*/
/*@keyframes tambalear {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
  }
  
.swiper-slide-active .tambaleo {
    animation: tambalear 0.5s infinite;
}*/
@keyframes tambalear {
    0% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
  }
  
.swiper-slide-active .tambaleo {
    animation: tambalear 1s infinite;
}
/**/

/*memmorias*/
.memories{
    margin-block: 77px;
}
.memories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 1fr;
    gap: 80px;
}
.memoryCard{
    text-align: center;
}

.memoryCard__name{
    font: var(--font-18);
    color: var(--secondary);
    margin-block:20px;
}

.memoryCard__image img{
    max-width: 320px;
    height: 414px;
    object-fit: cover;
}

@media (min-width:768px){
    .memoryCard__name{
        font: var(--font-24);
    }
}
