/*
Theme Name: LODISNA
Theme URI: https://silencio.es
Version: 1.0
Description: silencio x LODISNA
Author:  silencio
Author URI: http://silencio.es
*/
/*********************GENERAL*********************/
* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: Type1;
  src: url('../font/TomatoGroteskExtraLight.eot'); /* IE9 Compat Modes */
  src: url('../font/TomatoGroteskExtraLight.eot') format('embedded-opentype'), /* IE6-IE8 */ url('../font/TomatoGroteskExtraLight.woff2') format('woff2'), /* Super Modern Browsers */ url('../font/TomatoGroteskExtraLight.woff') format('woff'); /* Pretty Modern Browsers */
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Type2;
  src: url('../font/TomatoGroteskLight.eot'); /* IE9 Compat Modes */
  src: url('../font/TomatoGroteskLight.eot') format('embedded-opentype'), /* IE6-IE8 */ url('../font/TomatoGroteskLight.woff2') format('woff2'), /* Super Modern Browsers */ url('../font/TomatoGroteskLight.woff') format('woff'); /* Pretty Modern Browsers */
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --rojo: #f79239;
  --azul: #011c4d;
  --gris: #d5d5d5;
}
a {
  color: inherit;
  text-decoration: none;
  position: relative;
}
a.link::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  top: 1.2vw;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(right, var(--rojo), transparent);
  background: -o-linear-gradient(right, var(--rojo), transparent);
  background: linear-gradient(to left, var(--rojo), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
a.link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
a.boton {
  text-transform: uppercase;
  font-size: 80%;
  border: 1px solid;
  padding: 0.1vw 0.5vw 0.05vw 0.5vw;
  border-radius: 3vw;
  transition: 400ms ease;
}
a.boton:hover {
  background: var(--azul);
  color: white;
}
.boton span, .botonw span, .post-boton span {
  color: var(--rojo);
  margin-right: 0.3vw;
}
a.botonw {
  text-transform: uppercase;
  font-size: 80%;
  border: 1px solid #fff;
  padding: 0.1vw 0.5vw 0.05vw 0.5vw;
  border-radius: 3vw;
  transition: 400ms ease;
}
a.botonw:hover {
  background: #FFF;
  color: var(--azul);
}
body {
  background: #f2f2f2;
  font-family: Type2;
  font-size: 1vw;
  line-height: 1.2;
  color: var(--azul);
  user-select: none;
  opacity: 0;
}
#transition {
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  position: fixed;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}
.tran1 {
  width: 120vh;
  height: 120vh;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: fixed;
  z-index: 99;
  opacity: .8;
  transform: translateX(-146vh) rotate(225deg);
}
#preload {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #f2f2f2;
  z-index: 999999;
  transition: 1000ms ease-in-out;
  pointer-events: none;
}
#preload.fuera {
  opacity: 0;
}
#bar {
  position: fixed;
  width: 100vw;
  height: .5vw;
  background: linear-gradient(90deg, transparent, var(--rojo));
  z-index: 999999;
  top: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.scroller {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
}
section {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: left;
  overflow: hidden
}
.scrollbar-track-y {
  background: transparent !important;
  height: calc(100% - 6px) !important;
  margin: 3px;
}
.scrollbar-thumb {
  background: var(--rojo) !important;
  opacity: .8;
}
h2 {
  padding: 3vw;
  font-size: 5vw;
  font-family: 'Type1';
  font-weight: 100;
  color: var(--azul);
  line-height: 1;
}
/*********************HEADER*********************/
header {
  position: fixed;
  width: 100vw;
  height: 5vw;
  z-index: 999999;
}
#logo {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1vw 3vw;
  width: 10vw;
}
nav {
  width: 75vw;
  right: 0;
  position: absolute;
  color: white;
  transition: 300ms ease;
}
nav.blue {
  color: var(--azul);
}
nav.blue2 {
  color: var(--azul);
}
nav.blue22 {
  color: #fff;
}
nav ul {
  display: flex;
  list-style: none;
  width: 72vw;
  justify-content: space-between;
  margin-top: 2.5vw;
  text-transform: uppercase;
}
nav ul li a.active, .menu-servicios.active, .menu-contacto.active, .menu-sustainable.active {
  color: var(--rojo);
}
.active li {
  color: #fff;
}
nav.blue .active li {
  color: var(--azul);
}
nav.blue2 .active li {
  color: var(--azul);
}
nav.blue22 .active li {
  color: #fff;
}
#logo svg path {
  fill: #fff;
  transition: 300ms ease;
}
#logo.blue svg path {
  fill: var(--azul);
}
#logo.blue2 svg path {
  fill: var(--azul);
}
#logo.blue22 svg path {
  fill: #fff;
}
.trp-language-switcher {
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  width: 3vw !important;
}
.trp-language-switcher > div {
  width: 5vw !important;
  padding: 0 !important;
  border-radius: 0;
  background-image: linear-gradient(45deg, transparent 50%, var(--rojo) 50%), linear-gradient(135deg, var(--rojo) 50%, transparent 50%) !important;
  background-position: calc(50% - 0.4vw), 50% !important;
  background-size: 0.41vw 0.41vw !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  border: none !important;
}
.trp-language-switcher > div > a {
  display: block !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--rojo) !important;
}
.trp-language-switcher :hover {
  background-image: none !important;
}
.trp-ls-shortcode-language a {
  margin: 0 0 .25vw 0;
}
.trp-ls-shortcode-language a:hover {
  text-decoration: underline;
}
.trp-language-switcher > div > a:hover {
  background: transparent !important;
}
.menu-servicios {
  padding-bottom: 0.8vw;
}
.menu-servicios .submenu, .menu-contacto .submenu, .menu-sustainable .submenu  {
  position: absolute;
  flex-direction: column;
  padding-top: 0.5vw;
  margin-top: 0.8vw;
  margin-left: 0.5vw;
  width: 30vw;
  border-left: 1px solid var(--rojo);
  padding-left: 1vw;
  transition: 300ms ease;
  opacity: 0;
  display: flex;
}
.menu-servicios .submenu li, .menu-contacto .submenu li, .menu-sustainable .submenu li {
  margin-bottom: 0.6vw !important;
}
/*********************FOOTER*********************/
.footer {
  height: 53vh;
  background: var(--azul);
}
.arrow-footer-1 {
  width: 70vh;
  height: 70vh;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: fixed;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  top: -5vh;
  left: -30vw;
  position: absolute;
}
.arrow-footer-2 {
  width: 70vh;
  height: 70vh;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: fixed;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  top: -5vh;
  left: -20vw;
  position: absolute;
}
.pamplona, .francia {
  color: white;
  padding: 3vw;
  z-index: 99;
}
.francia {
  margin-left: 4vw;
}
.lodisna {
  position: absolute;
  color: white;
  font-size: 1vw;
  padding: 3vw;
  bottom: 0;
  line-height: 0.7;
}
.submenu ul {
  flex-direction: column;
  color: white;
}
.submenu ul li {
  border-bottom: 1px solid;
  padding: 0.3vw 0;
  cursor: pointer
}
.submenu ul li span {
  color: var(--rojo);
  margin-right: 0.5vw;
}
.submenu ul li span {
  color: var(--rojo);
  margin-right: 0.5vw;
  transition: 300ms ease;
}
.submenu ul li span.on {
  margin-left: 1vw;
}
.silencio {
  color: white;
  padding: 3vw;
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
}
.silencio a span {
  color: var(--rojo);
  margin-right: 0.5vw;
}
.silencio a:hover, .linkedin a:hover {
  color: var(--rojo);
}
.linkedin{
    position: absolute;
    left: 50vw;
    z-index: 9;
    color: #fff;
    bottom: 17vh;
}
.linkedin a span {
  color: var(--rojo);
  margin-right: 0.5vw;
}

.footer-copy {
  text-transform: uppercase;
  color: white;
  padding: 3vw;
  position: absolute;
  left: 47vw;
  bottom: 0;
}
/*********************BACK TO TOP*********************/
.backtotop {
  height: 47vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-home {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 3vw;
  border: 1px solid;
  padding: 0.1vw 0.4vw;
  border-radius: 3vw;
  text-transform: uppercase;
}
.backtop {
  text-transform: uppercase;
  font-size: 80%;
  border: 1px solid;
  padding: 0.1vw 0.5vw 0.05vw 0.5vw;
  border-radius: 3vw;
  transition: 400ms ease;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 3vw;
  cursor: pointer;
}
.backtop:hover {
  background: var(--azul);
  color: #fff;
}
.back-fondo {
  position: absolute;
  text-transform: uppercase;
  font-size: 45vh;
  font-family: 'Type1';
  -webkit-text-stroke: 1px #011c4d20;
  color: transparent;
  z-index: 0;
  width: 900vh;
  margin-top: 2.8vh;
  left: 0;
  animation: footer-pasa 250s linear infinite;
}
@keyframes footer-pasa {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-533.4vh);
  }
}
/*********************HOME*********************/
canvas {
  position: absolute;
  top: 0;
  left: 0;
  outline: none;
}
#canvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  filter: brightness(1.1) contrast(1.1);
}
#canvas.off {
  display: none;
}
#wrap {
  position: absolute;
  top: 0;
  left: 0;
}
#video_pag {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9;
  pointer-events: none;
  opacity: .75;
}
#video_pag iframe {
  display: none;
  width: 100vw;
  height: 52.73vw;
  min-height: 100vh;
  min-width: 189.63vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .video_pag iframe {
    height: 52.73vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video_pag iframe {
    width: 189.63vh;
  }
}

#desktop-nav ul li {margin: 0 10px;position: relative;}


#uno h1 {
  position: absolute;
  padding: 3vw;
  z-index: 99;
  color: white;
  font-family: "Type1";
  font-weight: 100;
  font-size: 11vw;
  width: 94vw;
  line-height: 1;
  bottom: 11.5vw;
  height: 18vw;
}
#uno h1 span {
  position: absolute;
  bottom: 0;
  text-align: right;
  width: 94vw;
}
#uno h1 span:first-child {
  text-align: left;
  top: 0;
}
#tralog {
  position: absolute;
  z-index: 99;
  margin: 3vw;
  bottom: 9vw;
  width: 94vw;
  transform: rotateX(0deg);
}
.arrow {
  width: 70vh;
  height: 70vh;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: absolute;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
}
#arrow_1 {
  top: 20vh;
  left: -53vh;
}
#arrow_2 {
  top: 20vh;
  left: -23vh;
}
#uno {
  background: var(--azul);
}
.addpart{position: absolute;left: -50%;top: 2%;width: 37%;opacity: 1;}
.addpart.show{opacity: 1;}
.videon{
  position: absolute;
  right: 3%;
  top: 9%;
  width: 37%;
}
.videon video{width: 100%;}
#uno_text {
  position: absolute;
  z-index: 9;
  color: white;
  height: 46vw;
  width: 40vw;
  top: calc(100vh - 13vw);
  padding: 3vw;
  left: 35.5vw;
}
#uno_text article {
  transition: 1000ms ease;
}
#uno_text.blue {
  color: var(--azul);
}
#year {
  position: absolute;
  z-index: 9;
  color: var(--rojo);
  bottom: 36vw;
  left: 3vw;
}
#start-scroll {
  color: white;
  position: absolute;
  z-index: 9999;
  top: calc(100vh - 12vw);
  padding: 2vw 3vw;
  right: 0;
  cursor: pointer;
}
#start-scroll span {
  position: absolute;
  border-bottom: 1px solid var(--rojo);
  border-right: 1px solid var(--rojo);
  width: 1vw;
  height: 1vw;
  transform: rotate(45deg);
  left: 1vw;
}
#start-scroll span:first-child {
  margin-top: -1.5vw;
  opacity: 0;
  animation: flechita1 3s infinite ease;
}
#start-scroll span:nth-child(2n) {
  margin-top: -0.5vw;
  animation: flechita2 3s infinite ease;
}
#start-scroll span:nth-child(3n) {
  animation: flechita3 3s infinite ease;
}
@keyframes flechita1 {
  0% {
    margin-top: -1.5vw;
    opacity: 0;
  }
  30% {
    margin-top: -.5vw;
    opacity: 1;
  }
  100% {
    margin-top: -.5vw;
    opacity: 1;
  }
}
@keyframes flechita2 {
  0% {
    margin-top: -.5vw;
  }
  30% {
    margin-top: 0;
    opacity: 1;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes flechita3 {
  0% {
    margin-top: 0;
    opacity: 1;
  }
  30% {
    margin-top: 0.5vw;
    opacity: 0;
  }
  100% {
    margin-top: 0.5vw;
    opacity: 0;
  }
}
#start-in {
  animation: parpadeo 1.5s linear infinite;
  font-size: 80%;
  text-transform: uppercase;
  border: 1px solid;
  padding: 0.1vw 0.5vw 0.05vw 0.5vw;
  border-radius: 3vw;
  transition: 400ms ease;
}
#start-in:hover {
  background: #fff;
  color: var(--azul);
  animation: none;
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
h3, h1 {
  color: var(--rojo);
  text-transform: uppercase;
  width: 17vw;
  font-size: 1.2vw;
}
.content {
  margin: 3vw;
  top: 22vw;
  width: 56vw;
  display: flex;
  position: absolute;
}
.content article {
  width: 30vw;
  margin-left: 3vw;
}
.line {
  width: 100%;
  position: absolute;
  height: 1px;
  background: var(--azul);
  top: -3vw;
  transform-origin: left;
}
.number {
  position: absolute;
  right: 0;
  font-size: 9vw;
  top: -3vw;
  z-index: -1;
  color: var(--gris);
}
#content_logistica {
  opacity: 0;
}
#numeritos {
  flex-direction: column;
  height: 90vh;
  margin-top: -237vh;
  position: absolute;
  margin-left: 40vw;
  width: 10vw;
  z-index: -1;
  overflow: visible;
}
#numeritos div {
  position: relative;
  margin-bottom: 55vh;
  font-size: 15vw !important;
  width: 19vw;
  text-align: right;
  color: #fff !important;
}
#gap {
  height: 20vh;
  width: 100vw;
}
#cuatro {
  width: 100vw;
  height: 100vh;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background-image: url("../image/bg2.jpg");
  background-size: cover;
  background-position: center;
  padding-bottom: 30vh;
}
#gps {
  background-image: url("../image/sus1.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#kilometros {
  text-align: center;
  color: white;
  position: absolute;
  right: 10vw;
  font-size: 3vw;
  width: 20vw;
  height: 20vw;
  justify-content: center;
  display: flex;
  align-items: center;
  border: 1px dashed #ffffff36;
  border-radius: 30vw;
}
#dot {
  position: absolute;
  width: 0.5vw;
  height: 0.5vw;
  background: var(--rojo);
  border-radius: 3vw;
  transform: rotate(270deg);
  transform-origin: 10.25vw;
  left: -0.25vw;
  top: calc(50% - 0.25vw);
  z-index: 9;
}
#kilometros svg {
  fill: none;
}
#tiempo {
  position: absolute;
  top: 12vw;
  text-transform: uppercase;
  font-size: 1vw;
  color: var(--rojo);
  opacity: 0;
}
#kilometrosnum {
  display: inline;
  margin-right: 1vw;
}
#kilometros svg {
  position: absolute;
}
#tiemponum {
  display: inline;
  margin-right: .5vw;
}
.st0 {
  stroke: white;
  stroke-width: 3px;
}
#cuatro h2 {
  width: 70vw;
  color: #fff;
}
.contenido {
  width: 50vw;
  padding: 3vw;
  display: flex;
  color: #fff;
}
.contenido article {
  width: 50vw;
  color: #fff;
}
#degradado {
  height: 50vh;
  position: absolute;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(0deg, var(--azul), transparent);
}
#carrusel-home {
  width: 100vw;
  height: 26.5vw;
  z-index: 99999;
  overflow: hidden;
  background: var(--azul);
  margin-top: -1px;
  padding-bottom: 10vw;
}
#carrusel-imagenes {
  display: flex;
  width: 133vw;
  margin-top: 7vw;
}
.carrusel-img1 {
  background-image: url(http://fsee2.10u.org/static/images/img4.jpg);
}
.carrusel-img2 {
  background-image: url(http://fsee2.10u.org/static/images/img5.jpg);
}
.carrusel-img3 {
  background-image: url(http://fsee2.10u.org/static/images/img6.jpg);
}
.carrusel-img4 {
  background-image: url(http://fsee2.10u.org/static/images/img4.jpg);
}
.carrusel-img {
  width: 30vw;
  height: 16vw;
  margin: 3vw;
  background-size: cover;
  background-position: center;
}
#lodisna-grande {
  width: 100vw;
  height: 40vw;
  overflow: hidden;
  position: absolute;
  font-size: 38vw;
  margin-top: -5vw;
  -webkit-text-stroke: 1px #fff;
  opacity: .2;
}
#lodisna-grande span {
  width: 120vw;
  position: absolute;
  transform: translateX(-52vw);
}
#mark1 {
  margin-top: -1px;
}
#cinco {
  width: 100vw;
  height: 100vh;
  background: var(--azul);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#cinco h2 {
  color: #fff;
}
#cinco article {
  color: #fff;
  padding: 0 3vw;
  width: 40vw;
}
#cinco article ul{padding-left: 1.1rem;}
#numeros {
  width: 100vw;
  height: 18vw;
  overflow: hidden;
}
#numeros_in {
  display: flex;
  width: 300vw;
}
#numeros_in .dato {
  padding: 3vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 3vw;
}
#numeros_in .num {
  color: white;
  font-size: 10vw;
  line-height: 1;
}
#numeros_in .desc {
  color: #fff;
  line-height: 1;
}
#arrow_3 {
  top: 20vh;
  left: -53vh;
  transform: rotate(45deg);
}
#arrow_4 {
  top: 20vh;
  left: -23vh;
  transform: rotate(45deg);
}
#gap2 {
  width: 100vw;
  height: 80vw;
  background: var(--azul);
}
#mark2 {
  margin-top: -60vh;
}
#seis {
  margin-top: -60vh;
  z-index: -1;
}
#seis-inner {
  width: 300vw;
  display: flex;
  flex-direction: row-reverse;
  transform: translateX(-100vw);
}
#siete, #ocho {
  align-items: center;
}
#siete {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#siete h2 {
  width: 50vw;
}
#siete h3, #ocho h3 {
  padding: 0 3vw;
}
#puntos {
  display: flex;
  width: 60vw;
  flex-wrap: wrap;
}
#puntos div {
  width: 20vw;
  padding: 1vw 3vw;
}
#puntos h3 {
  width: auto;
  margin-bottom: 0.5vw;
  color: var(--azul);
  padding: 0;
}
#gps {
    position: absolute;
    width: 40vw;
    height: 75vh;
    top: 19vh;
    right: 65px;
}
#ocho {
  right: 100vw;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#ocho article {
  width: 50vw;
  margin: 0 3vw
}
#sellos {
  display: flex;
  margin-top: 3vw;
}
.sello {
  width: 7.2vw;
  height: 5vw;
  margin-left: 3vw;
  display: flex;
  align-items: center;
}
.sello img {
  width: 100%;
  height: auto;
}
#marker {
  width: 5vw;
  height: 1px;
  margin-top: -60vh;
}
#nueve {
  margin-top: 100vh;
  flex-direction: column;
  justify-content: center;
  height: 70vh;
}
#clients {
  margin: 0 3vw;
  padding: 2vw 0;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
#client-line {
  width: 94vw;
  height: 1px;
  background: var(--azul);
  margin-left: 3vw;
  transform-origin: left;
}
#logos-clientes {
  width: 100vw;
  height: 36vh;
  overflow: hidden;
}
.logo {
  margin: 2vh 3vw;
  width: 10vw;
  height: 12vh;
  display: flex;
  align-items: center;
}
.logo img {
  width: 100%;
  height: auto;
  transform: scale(.6);
  filter: grayscale(1);
  opacity: .5;
  transition: 400ms ease;
}
.logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}
#clientes-1, #clientes-2 {
  display: flex;
  width: 225vw;
}
#clientes-2 {
  transform: translateX(-125vw);
}
#apostamos_home{
	margin-top: -60vw;
    margin-bottom: 60vw;
    display: flex;
    height: 29vw;
}
#vehiculosimg_home {
    position: absolute;
    left: 3vw;
    background: url(../image/image8.jpeg);
    width: 50vw;
    height: 28vw;
    top: 3vw;
    background-size: cover;
    background-position: center;
}
#apostamos_home_cont{
	width: 42vw;
    margin-left: 55vw;
}
#apostamos_home_cont article{
	padding: 0 3vw;
}
#cienpor{
	position: absolute;
    width: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6vw;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 3vw;
    z-index: 9;
    top: 1vw;
    left: 32vw;
    background: var(--azul);
    color: white;
    transform: rotate(346deg);
}
/*********************EMPRESA*********************/
#empresa {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#empresa h2 {
  width: 86vw;
}
#empresa h1 {
  width: 30vw;
  padding: 0 3vw;
}
#empresa article {
  position: absolute;
  width: 40vw;
  left: 45vw;
  bottom: 5vw;
}
#empresa #kilometrosnum {
  display: none;
}
#timeline {
  margin-top: -30vh;
  padding: 0 3vw;
  width: 94vw;
  justify-content: space-between;
  overflow-x: hidden;
  align-items: center;
}
.timeline-item {
  opacity: 0;
  width: 12vw;
}
#todos {
  display: flex;
  justify-content: space-between;
  width: 94vw;
}
#timeline .arrow {
  transform: translateX(-92vh) rotate(225deg);
}
#timeline .tag {
  position: absolute;
  margin-top: -18vw;
  opacity: 0;
}
#actualidad {
  align-items: center;
  margin-top: -70vh;
}
#actualidad .tag {
  right: 3vw;
  position: absolute;
  text-align: right;
  margin-top: -21vw;
  opacity: 0;
}
#actualidad #numeros_in {
  border-top: 1px solid;
  border-bottom: 1px solid;
}
#actualidad #numeros_in .num, #actualidad #numeros_in .desc {
  color: var(--azul);
}
#actualidad #numeros {
  opacity: 0;
}
#mark-num {
  background: #f44336;
  margin-top: -110vh;
}
#equipo {
  margin-top: 80vh;
  flex-direction: column;
  justify-content: center;
}
#equipo h2 {
  width: 64vw;
}
#equipo h3 {
  padding: 0 3vw;
}
#equipo article {
  padding: 0 3vw;
  width: 40vw;
  margin-left: 10vw;
}
#equipo-img {
  width: 35vw;
  height: 25vw;
  background-image: url(../image/equipo_joven.jpg);
  position: absolute;
  right: 3vw;
  top: 30vh;
  background-size: cover;
}
#valores {
  height: 6vw;
  font-size: 5vw;
  text-transform: uppercase;
  margin-bottom: 20vh;
  -webkit-text-stroke: 1px var(--azul);
  color: transparent;
}
#valores-inner {
  position: absolute;
  width: 900vw;
}
#eficiencia {
  background: var(--azul);
  flex-direction: column;
  justify-content: center;
}
#eficiencia h3 {
  padding: 0 3vw;
}
.info h3 {
  padding: 0 !important;
}
#eficiencia iframe {
  width: 100vw;
  height: 52.73vw;
  min-height: 100vh;
  min-width: 189.63vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  opacity: .4;
}
@media (min-aspect-ratio: 16/9) {
  .video_pag iframe {
    height: 52.73vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video_pag iframe {
    width: 189.63vh;
  }
}
#eficiencia h2 {
  color: #fff;
}
#eficiencia .line-cont {
  width: 94vw;
  left: 3vw;
  height: 1px;
  background: #fff;
  position: relative;
  top: 0;
}
#eficiencia .eficiencia-contenido {
  height: 20vh;
  width: 94vw;
  position: relative;
  margin-top: 3vw;
}
#eficiencia .eficiencia-contenido .contenido-uno {
  position: absolute;
  right: 3vw;
}
#eficiencia .eficiencia-contenido .contenido-uno article {
  width: 35vw;
  color: #fff;
}
#eficiencia .eficiencia-contenido .contenido-dos {
  width: 94vw;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}
#eficiencia .eficiencia-contenido .contenido-dos .info {
  padding-left: 5vw;
  width: 17vw;
  opacity: 0;
  color: #fff;
}
#eficiencia .eficiencia-contenido .contenido-dos .info article {
  margin-top: 1vw;
  width: 100%;
}
#mark-efic {
  margin-top: -100vh;
  width: 2vw;
  height: 1px;
  position: relative;
}
#empresa-calidad {
  margin-top: 100vh;
}
#empresa-calidad h2 {
  margin-top: 15vh;
}
#empresa-calidad h3 {
  margin: 0 3vw;
  position: absolute;
  top: 9vw;
}
#empresa-calidad-cont {
  margin-top: -200vh;
  width: 47vw;
  margin-left: 47vw;
  padding: 3vw;
  flex-direction: column;
  height: auto;
}
.upper {
  text-transform: uppercase;
}
#empresa-calidad-cont article {
  border-bottom: 1px solid;
  padding-bottom: 3vw;
  margin-top: 10vh;
}
.empresa-sellos {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid;
  padding: 2vw 0;
  height: 6vw;
}
.translatepress-fr_FR .empresa-sellos {
	  height: 8vw;
}
.empresa-sellos h3 {
  color: var(--azul);
  position: absolute;
  width: 12vw;
}
.empresa-sellos h3 span {
  width: 56vw;
  color: var(--rojo);
}
.empresa-sellos .descripcion {
  position: absolute;
  width: 20vw;
  margin-left: 15vw;
}
.empresa-sellos .sello {
  margin-top: -1.6vw;
  height: 7vw;
  margin-left: 3vw;
  position: absolute;
  width: 10vw;
  right: 3vw;
}
.empresa-sellos .sello.sqas {
  width: 8vw;
  right: 4vw;
  margin-left: 4vw;
  margin-top: -1vw;
}
#aclaracion {
  margin-top: 3vw;
}
#empresa-imagenes {
  height: 100vh;
  overflow: visible;
}
#imagen2 {
  width: 30vw;
  height: 40vw;
  background: lightgrey;
  margin: 3vw;
  margin-top: 20vw;
  background-image: url('../image/oficina1.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
}
#imagen3 {
  width: 47vw;
  height: 30vw;
  background-image: url('../image/empresa.jpg');
  margin: 3vw;
  margin-top: 20vw;
  position: absolute;
  right: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
}
#imagen4 {
  width: 47vw;
  height: 30vw;
  background-image: url('../image/gureak.jpg');
  margin: 3vw;
  margin-top: 20vw;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
}
#imagen5 {
  width: 30vw;
  height: 40vw;
  background: lightgrey;
  margin: 3vw;
  right: 0;
  margin-top: 30vw;
  background-image: url('../image/bosque.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.2);
  position: absolute;
}
#empresa-imagenes-2 {
  overflow: visible;
  margin-top: -10vw;
  height: 64vw;
}
#sociedad {
  background: #f2f2f2;
  height: 55vh;
  overflow: visible;
}
#sociedad h3 {
  margin: 0 3vw;
  position: absolute;
}
#sociedad article {
  width: 40vw;
  margin-left: 9.55vw;
  margin-top: 4vw;
}
.camara-comercio {
  position: absolute;
  width: 9vw;
  mix-blend-mode: darken;
  left: 3vw;
  top: 23vw;
}
.astic {
  position: absolute;
  width: 8vw;
  mix-blend-mode: darken;
  left: 15vw;
  top: 23vw;
}
#flecha-imagenes-1 {
  width: 20vw;
  height: 20vw;
  background: linear-gradient(315deg, var(--rojo), transparent, transparent);
  position: fixed;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  left: 35vw;
  margin-top: 35vw;
}
#medio-ambiente {
  height: 46vw;
}
#medio-ambiente h3 {
  position: absolute;
  padding: 0 3vw;
}
#medio-ambiente h2 {
  width: 44vw;
}
#medio-ambiente article {
  width: 35vw;
  margin-top: 4vw;
}
.volvo, .renault {
  position: absolute;
  width: 6vw;
  left: 3vw;
  top: 22.3vw;
}
.renault {
  left: 11vw;
  width: 7vw;
  top: 21.5vw;
  opacity: .8;
}
.carbono{
	position: absolute;
    width: 7vw;
    mix-blend-mode: multiply;
    margin: 3vw;
    bottom: 0;
}
/*********************FLOTA*********************/
#video-flota {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -9;
  pointer-events: none;
  position: absolute;
}
#video-flota iframe {
  width: 100vw;
  height: 52.73vw;
  min-height: 100vh;
  min-width: 189.63vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  #video-flota iframe {
    height: 52.73vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  #video-flota iframe {
    width: 189.63vh;
  }
}
#flota-superior h2 {
  color: #fff;
  position: absolute;
  top: 5vw;
  left: 47vw;
  font-size: 8.5vw;
  text-transform: uppercase;
}
#flota-superior article {
  position: absolute;
  top: 26vw;
  left: 74vw;
  color: white;
  width: 20vw;
}
#flota {
  flex-direction: column;
  justify-content: center;
}
#flota h3, #flota article {
  padding: 0 3vw;
  width: 30vw;
}
#flota-deg {
  height: 30vh;
  width: 100vw;
  top: 70vh;
  position: absolute;
  background: linear-gradient(360deg, black, transparent);
  z-index: -1;
  opacity: .5;
}
#flota-deg-1 {
  height: 40vh;
  width: 100vw;
  top: 0;
  position: absolute;
  background: linear-gradient(180deg, black, transparent);
  z-index: -1;
  opacity: .5;
}
#flota-img {
  position: absolute;
  width: 35vw;
  right: 2vw;
}
#flota-img img {
  width: 100%;
}
#fondo-flota {
  background: var(--azul);
  margin-top: -100vh;
  opacity: 0;
  height: 130vh;
}
#flota-contenido {
  width: 100vw;
  position: absolute;
  bottom: 30vh;
  display: flex;
  color: white;
}
.op1 {
  padding: 3vw;
  display: flex;
  width: 20vw;
  align-items: center;
}
.op-num {
  font-size: 5vw;
}
.op-desc {
  padding-left: 2vw;
  margin-top: -1vw;
}
#flota-line-1 {
  width: 94vw;
  height: 1px;
  position: absolute;
  bottom: calc(30vh + 10vw);
  background: #fff;
  margin: 3vw;
}
#flota-contenido article {
  padding: 3vw;
  width: 27vw;
}
#investiga {
  margin-top: -30vh;
  flex-direction: column;
  height: 35vw;
}
#flecha-flota-1, #flecha-flota-2 {
  width: 30vw;
  height: 30vw;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  position: absolute;
}
#flecha-flota-2 {
  left: -12vw;
}
#flechas-flota {
  position: absolute;
  top: 30vh;
  transform: translateX(-37vw);
}
#investiga article {
  width: 40vw;
  margin-left: 50vw;
}
#investiga-img {
  height: 36vw;
  display: flex;
}
#investiga-img div {
  margin: 3vw;
  width: 47vw;
  height: calc(47vw*(9/16));
  margin-left: 3vw;
  background-image: url("../image/lonas.jpg");
  background-size: cover;
}
#localiza {
  flex-direction: column;
  justify-content: center;
}
#localiza h2 {
  width: 50vw;
}
#localiza article {
  width: 45vw;
  padding: 0 3vw;
}
#localiza-img {
  position: absolute;
  width: 39vw;
  height: 40vw;
  right: 4vw;
  background-image: url(../image/ipad_iphone.png);
  margin: 3vw;
  background-size: cover;
}
#flota-calidad {
  flex-direction: column;
  justify-content: center;
  margin-top: -20vh;
  background: #f2f2f2;
  z-index: -1;
}
#flota-calidad h2 {
  width: 40vw;
  margin-left: 47vw;
}
#flota-calidad article {
  padding: 0 3vw;
  width: 40vw;
  margin-left: 47vw;
}
#flota-sellos {
  flex-direction: row;
  display: flex;
  margin-left: 47vw;
  margin-top: 2vw;
}
#flota-sellos .sello {
  width: 7vw;
}
#flota-calidad-img {
  position: absolute;
  width: 40vw;
  margin-left: 3vw;
  mix-blend-mode: multiply;
  margin-top: 3vw;
}
#flota-calidad-img img {
  width: 100%;
}
/*****************TRANSPORTE POR CARRETERA*********************/
#carretera {
  background: var(--azul);
  flex-direction: column;
  justify-content: end;
}
#carretera h3 {
  padding: 0 3vw;
}
#main_carretera {
  width: 94vw;
  padding: 0 3vw 1vw 3vw;
  left: 0;
  z-index: 9;
}
#main_carretera h1 {
  z-index: 99;
  color: white;
  font-family: "Type1";
  font-weight: 100;
  font-size: 12vw;
  width: 94vw;
  line-height: 1;
  height: 25vw;
}
#carretera article {
  width: 32vw;
  color: white;
  padding: 0 3vw 3vw 3vw;
  margin-left: 59.5vw;
}
#imagen_carretera, #imagen_logistica, #imagen_ultimamilla {
  width: 47vw;
  height: calc(47vw / 1.9);
  position: absolute;
  right: 3vw;
  bottom: 15vw;
  opacity: 0;
  pointer-events: none;
}
#imagen_ultimamilla {
    background-image: url(../image/ultima-milla.jpg);
    opacity: 1;
    background-position: bottom;
    background-size: cover;
    height: 29vw;
	    bottom: 22vw;
}
#imagen_carretera iframe, #imagen_logistica iframe {
  width: 100%;
  height: 100%;
}
#ftl {
  flex-direction: column;
  justify-content: center;
  height: 39vw;
}
#ftl h2 {
  width: 40vw;
}
#ftl article {
  width: 40vw;
  padding: 0 3vw;
}
#mapa {
  position: absolute;
  width: 50vw;
  right: 0;
}
#ondas {
  width: 74vw;
  height: 51.5vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  left: 26vw;
  top: 100vh;
}
.onda {
  width: 2vw;
  height: 2vw;
  border: 1px solid var(--rojo);
  border-radius: 40vw;
  position: absolute;
}
#onda1 {
  animation: 9s infinite ease wave;
}
#onda2 {
  animation: 9s infinite ease wave;
  animation-delay: 3s;
  opacity: 0;
}
#onda3 {
  animation: 9s infinite ease wave;
  animation-delay: 6s;
  opacity: 0;
}
@keyframes wave {
  0% {
    width: 2vw;
    height: 2vw;
    opacity: 1;
  }
  100% {
    width: 60vw;
    height: 60vw;
    opacity: 0;
  }
}
#pamplona, #mouguerre {
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: 2vw;
  font-size: 80%;
  text-transform: uppercase;
}
#pamplona span, #mouguerre span {
  width: 0.5vw;
  height: 0.5vw;
  border: 1px solid var(--rojo);
  display: block;
  border-radius: 2vw;
  position: absolute;
  margin-top: -2vw;
}
#mouguerre {
  position: absolute;
  margin-top: -3vw;
  margin-left: 1vw;
  opacity: .4;
}
#distancia-km {
  position: absolute;
  font-size: 10vw;
  right: 6vw;
  margin-top: -6vw;
}
#distancia-mins {
  position: absolute;
  font-size: 10vw;
  right: 6vw;
  margin-top: 12vw;
}
#distancia-km span, #distancia-mins span {
  font-size: 1vw;
  text-transform: uppercase;
  color: var(--rojo);
  position: absolute;
  top: 2.5vw;
}
#distancia-km span {
  margin-left: 2vw;
}
#flechi {
  position: absolute;
  right: 9vw;
  -webkit-text-stroke: 1px var(--azul);
  color: transparent;
  font-size: 80%;
  margin-top: 1.5vw;
  animation: flechita 2s infinite ease;
}
@keyframes flechita {
  0% {
    transform: translateX(0vw);
  }
  50% {
    transform: translateX(-1vw);
  }
  100% {
    transform: translateX(0vw);
  }
}
#carretera-imagenes {
  min-height: calc(100vh - 39vw);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 30vw;
  width: 94vw;
  padding: 0 3vw;
}
#carretera-imagenes div {
  width: 30vw;
  height: 20vw;
  z-index: 9;
  background-size: cover;
  background-position: center center;
}
#carretera-imagen-1 {
  background-image: url('../image/doble_con.jpg');
}
#carretera-imagen-2 {
  background-image: url('../image/puente.jpg');
}
#carretera-imagen-3 {
  background-image: url('../image/enfrentado.jpg');
}
#regular {
  flex-direction: column;
  justify-content: center;
  height: 60vh;
}
#imagen-regular {
  background-image: url('../image/render_uno.jpg');
  width: 82vw;
  height: 20vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  margin-left: -29vw;
  top: 11vw;
}
#imagen-adr {
  background-image: url('../image/render_dos.jpg');
  width: 82vw;
  height: 20vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 11vw;
  right: -20vw;
}
#regular h2 {
  margin-left: 46.5vw;
}
#regular article {
  width: 40vw;
  margin-left: 50vw;
}
#adr {
  flex-direction: column;
  justify-content: center;
  height: 60vh;
}
#adr article {
  padding: 0 3vw;
  width: 40vw;
}
/*********************ULTIMA MILLA*********************/
#apostamos{
	display: flex;
    height: 28vw;
}
#electric{
	width: 32vw;
    height: 22vw;
    background-image: url(../image/electric.jpg);
    margin: 3vw;
	    background-position: center;
    background-size: cover;
}
#apostamos_cont{
	width: 60vw;
}
#apostamos_cont article{
padding: 0 3vw;
    width: 45vw;
}
#icons{
	    height: 17vw;
    margin-top: 5vw;
    margin-bottom: 5vw;
}
.icongroup{
	    position: relative;
    width: 27vw;
    padding: 3vw;
}
.iconimg{
	width: 10vw;
    height: 7.95vw;
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(.7);
    filter: saturate(1.1) brightness(.8) hue-rotate(19deg);
}
.icon1{
	background-image: url(../image/icon1.png);
}
.icon2{
	background-image: url(../image/icon2.png);
}
.icon3{
	background-image: url(../image/icon3.png);
}
#icons h3{
	    margin-left: 12vw;
}
#icons article{
	    margin-left: 12vw;
    padding: 2vw 0;
}
#carrusel-um{
	display: flex;
	height: 26vw;
}
#carrusel-um div{
	width: 30.3vw;
    height: 20vw;
    margin: 3vw;
    background-size: cover;
	background-position: center;
}
#um_img1{
	  background: url(../image/paquete.jpg);
}
#um_img2{
	  background: url(../image/scoobic.jpg);
}
#um_img3{
	  background: url(../image/entrega1.jpg);
}
#vehiculos{
	    height: 37vw;
}
#vehiculoscont{
	width: 40vw;
}
#vehiculoscont article{
	    padding: 0 3vw;
}
#vehiculosimg{
	position: absolute;
    right: 3vw;
    background: url(../image/furgo_moto.png);
    width: 55vw;
    height: 28vw;
    background-size: cover;
    background-position: center;
}
#navarra{
	 flex-direction: column;
    justify-content: center;
    height: 42vw;
}
#navarra h2{
    width: 40vw;
    margin-left: 50vw;
}
#navarra article{
    width: 35vw;
    margin-left: 53vw;
}
#mapa-um{
	width: 45vw;
    background: url(../image/mapa.png);
    height: 42vw;
    position: absolute;
    left: 0;
    margin: 3vw;
    background-position: center;
    background-size: cover;
}
/*********************LOGISTICA INTEGRAL*********************/
#logistica {
  background: var(--azul);
  flex-direction: column;
  justify-content: end;
}
#main_logistica {
  width: 94vw;
  padding: 0 3vw;
  z-index: 9;
}
.ultima-milla #main_logistica{
	    margin-bottom: 9vw;
}
#main_logistica h1 {
  z-index: 99;
  color: white;
  font-family: "Type1";
  font-weight: 100;
  font-size: 12.1vw;
  width: 94vw;
  line-height: 1;
  height: 25vw;
}
#main_logistica h1 span {
  width: 94vw;
  text-align: right;
  position: absolute;
}
#main_logistica h1 span:first-child {
  text-align: left;
}
#logistica h3 {
  padding: 0 3vw;
}
#logistica article {
  position: absolute;
  width: 34vw;
  color: white;
  bottom: 7.5vw;
  left: 3vw;
}
#logistica.ultima-milla article {
     width: 34vw;
    bottom: 3.4vw;
    margin-left: 26.5vw;
}
#logistica.ultima-milla h3{
	    margin-bottom: 4vw;
}
#warehousing {
  width: 50vw;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
#warehousing-img {
  width: 40vw;
  height: 20vw;
  margin: 3vw;
  position: relative;
}
#warehousing-img img {
  width: 100%;
  height: auto;
  position: absolute;
  opacity: 0;
}
.wh1 {
  opacity: 1;
}
#warehousing article {
  padding: 0 3vw;
  width: 40vw;
}
#warehousing-items {
  width: 50vw;
  display: flex;
  flex-direction: column;
  height: auto;
  top: -190vh;
  margin-left: 50vw;
}
.warehousing-item {
  width: 30vw;
  height: auto;
  justify-content: center;
  display: flex;
  margin: 5vw 0;
  flex-direction: column;
  margin-left: 15vw;
}
.warehousing-item li {
  list-style: circle;
  margin-left: 1.5vw;
}
.numero {
  position: absolute;
  font-size: 10vw;
  left: 0;
  color: white;
}
#mercancias {
  flex-direction: column;
  margin-top: -160vh;
  justify-content: center;
}
#mercancias-superior, #mercancias-inferior {
  flex-direction: row;
  display: flex;
}
#mercancias-inferior {
  margin: 0 1.5vw;
  width: 400vw;
  transform: translateX(24.3vw);
}
#mercancias-inferior div {
  margin: 0 1.5vw;
}
#aereo, #maritimo, #ferrocarril, #intermodal {
  width: 30vw;
}
#aereo-img, #maritimo-img, #ferrocarril-img, #intermodal-img {
  width: 30vw;
  height: 17vw;
  background-size: cover;
  background-position: center;
}
#aereo-img {
  background-image: url('../image/avion.jpg');
}
#maritimo-img {
  background-image: url('../image/barco.jpg');
}
#ferrocarril-img {
  background-image: url('../image/tren.jpg');
}
#intermodal-img {
  background-image: url('../image/intermodal.jpg');
}

#mercancias-superior h2 {
  width: 51.33vw;
}
#mercancias-superior article {
  width: 36.6vw;
  padding: 4.5vw 3vw;
}
#mercancias-line {
  width: 94vw;
  margin-left: 3vw;
  margin-bottom: 3vw;
  transform-origin: left;
  height: 1px;
  background: var(--azul);
}
/*********************NOTICIAS*********************/
.navigation.pagination {
  position: relative;
}
.fecha {
  color: var(--rojo);
  text-transform: uppercase;
  width: 9vw;
}
.post-img {
  width: 15vw;
  padding: 0 3vw;
}
.post-img img {
  width: 100%;
  height: auto;
}
#noticias {
  display: flex;
  flex-wrap: wrap;
  margin-top: 11vw;
}
.post:first-child {
  border-top: 1px solid;
}
.post {
  display: flex;
  width: 100vw;
  margin: 0 3vw;
  border-bottom: 1px solid;
  padding: 3vw 0;
  position: relative;
}
.post a {
  display: flex;
}
.post_title {
  font-size: 4vw;
  margin-bottom: 1vw;
  line-height: 1;
  font-family: 'Type1';
}
.post-content {
  width: 50vw;
}
.post-arrow, .post-arrow-1 {
  width: 20vw;
  height: 20vw;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: absolute;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  top: 3vw;
  left: -20vw;
}
.post-arrow-1 {
  left: -13vw;
}
.post-arrow-todo {
  position: absolute;
  transform: translateX(75vw);
  top: -5vw;
  opacity: 0;
  transition: 800ms ease;
  pointer-events: none;
  z-index: -999;
}
.post-arrow-todo.on {
  transform: translateX(82vw);
  opacity: 1;
}
.post-boton {
  text-transform: uppercase;
  font-size: 80%;
  border: 1px solid;
  padding: 0.1vw 0.5vw 0.05vw 0.5vw;
  border-radius: 3vw;
  transition: 400ms ease;
  margin-top: 1vw;
  display: inline-block;
}
.post-boton:hover {
  background: var(--azul);
  color: white;
}
.nav-links {
  position: relative;
}
.navigation {
  height: 47vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 4vw;
  font-family: 'Type1';
  color: var(--azul);
}
.next.page-numbers {
  position: absolute;
  margin-left: 8vw;
  color: var(--azul);
}
.prev.page-numbers {
  position: absolute;
  margin-left: -24vw;
  color: var(--azul);
}
.page-numbers {
  color: var(--gris);
  transition: 300ms ease;
}
.page-numbers.current {
  color: var(--azul);
}
.page-numbers:hover {
  color: var(--azul);
}
.row_noticia {
  margin: 8vw 3vw 0 3vw;
  padding-top: 3vw;
  border-top: 1px solid var(--azul);
}
.noticia_fecha {
  color: var(--rojo);
  text-transform: uppercase;
  width: 9vw;
  display: flex;
  float: left;
}
.noticia_img {
  width: 15vw;
  padding: 0 3vw;
  display: flex;
  float: left;
}
.noticia_img img {
  width: 15vw;
  height: auto;
}
.noticia_tit {
  width: 50vw;
  display: flex;
}
.noticia_tit h1 {
  font-size: 4vw;
  margin-bottom: 1vw;
  line-height: 1;
  font-family: 'Type1';
  text-transform: none;
  font-weight: 300;
  color: var(--azul);
  width: 100%;
}
.noticia_cont {
  display: flex;
  width: 50vw;
  flex-direction: column;
}
.noticia_cont .vc_row {
  width: 100% !important;
}
.lead {
  font-size: 80%;
}
.volver_noticia {
  display: block;
  text-align: right;
  padding-right: 3vw;
  margin-bottom: 3vw;
  margin-top: 3vw;
}
/*********************CONTRATACIÓN*********************/
#contratacion {
  flex-direction: column;
  justify-content: center;
}
#contratacion h3 {
  padding: 0 3vw;
}
#texto-contratacion {
  width: 60vw;
  padding: 0 3vw;
  display: flex;
}
#texto1 {
  padding-right: 3vw;
}
#interesado {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 3vw;
  width: 16vw;
}
#contratacion-flecha {
  position: absolute;
  bottom: 0;
  right: 18vw;
  padding: 3vw;
  font-size: 4vw;
  transform: rotate(90deg);
  animation: contratacion-flecha 2s ease infinite;
}
@keyframes contratacion-flecha {
  0% {
    transform: rotate(90deg) translateX(-0.5vw);
  }
  50% {
    transform: rotate(90deg) translateX(0.5vw);
  }
  100% {
    transform: rotate(90deg) translateX(-0.5vw);
  }
}
#vacantes {
  margin: 3vw;
  width: 61vw;
}
#vacante-title {
  font-size: 2vw;
  text-transform: uppercase;
  margin-bottom: 1vw;
  color: var(--azul);
  font-family: 'Type2';
}
#formulario {
  height: calc(47vh - 9vw);
  margin: 3vw;
  width: 94vw;
  border: 1px solid;
  border-radius: .5vw;
}
#formulario input {
  width: 100%;
  text-transform: uppercase;
  font-size: 1vw;
  background-color: transparent;
  border: none;
  color: var(--azul);
  font-weight: normal;
  outline: none;
  font-family: "Type1";
  border-bottom: 1px solid var(--azul);
}
#formulario select {
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 1vw;
  font-family: "Type1";
  border-bottom: 1px solid var(--azul);
  text-transform: uppercase;
}
#formulario input[type="submit"i] {
  width: fit-content !important;
  padding: 0.2vw 1vw !important;
  border: 1px solid !important;
  border-radius: 4vw !important;
  background-color: var(--azul);
  color: white;
  cursor: pointer;
}
form {
  height: calc(47vh - 9vw);
  width: 94vw;
  display: flex;
}
label {
  height: 33.33%;
}
#formulario input[type="submit"i]:hover {
  background-color: var(--rojo);
  color: var(--azul);
}
#formulario .wpcf7 input[type="file"] {
  background-color: transparent;
  border-bottom: none !important;
}
#formulario form {
  display: flex;
}
#form-izq, #form-dch {
  width: 41vw;
  padding: 3vw 0 3vw 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#form-nombre, #form-tfn, #form-email, #form-puesto {
  border-bottom: 1px solid;
  padding-bottom: 1vw;
  text-transform: uppercase;
}
#form-enviar {
  display: block;
  width: 5vw;
  text-transform: uppercase;
  border: 1px solid;
  text-align: center;
  border-radius: 3vw;
  padding: 0.21vw;
  background: var(--azul);
  color: #fff;
}
#form-cv span {
  display: block;
  width: 8vw;
  text-transform: uppercase;
  border: 1px solid;
  text-align: center;
  border-radius: 3vw;
  padding: 0.21vw;
  margin-right: 3vw;
  line-height: 1;
  color: var(--azul);
}
#form-cv {
  display: flex;
  color: var(--gris);
}
#enviar_form{
	position: relative;
}
#aceptar_form{
	position: absolute;
    top: 0.1vw;
    left: 7vw;
}
#aceptar_form .wpcf7-list-item{
	width: 1vw;
}
#aceptar_form a{
	text-decoration: underline;
}
/*********************COMPLIANCE*********************/
.compliance_uno{
	margin-top: 4vw;
}
.compliance_dos{
	margin-left: 0;
    margin-right: 0;
}
.compliance_dos .wpb_column{
	padding: 3vw;
}
.compliance_download{
	color: var(--rojo);
    text-transform: uppercase;
}
/*********************COOKIES*********************/
#cookie-law-info-bar {
  z-index: 99999 !important;
  margin: 2vw 3vw !important;
  width: 94vw !important;
  height: 3vw !important;
  border-radius: 3vw !important;
  padding: 1vw 0.5vw 1vw 1.5vw !important;
}
.cli-bar-container {
  font-size: 1vw !important;
  line-height: 1 !important;
  height: 1vw !important;
}
.cli-bar-message {
  color: var(--azul);
}
.cli-plugin-button {
  background-color: var(--gris) !important;
  transition: 300ms ease;
}
.cli-plugin-button:hover {
  background-color: var(--azul) !important;
  color: #FFF !important;
}
.cli-style-v2 .cli-bar-btn_container .cli-plugin-button {
  border-radius: 3vw;
  text-transform: uppercase;
  font-size: 1vw;
  padding: 0.5vw 0.8vw;
}
#wt-cli-accept-all-btn {
  background-color: var(--rojo) !important;
}
.cli-modal-backdrop {
  z-index: 99999 !important;
  background: transparent !important;
  transition: 400ms ease !important;
}
.cli-modal-backdrop.cli-show {
  backdrop-filter: blur(10px) !important;
  opacity: 1 !important;
}
.cli-tab-footer .wt-cli-privacy-accept-btn {
  background-color: var(--rojo) !important;
  border-radius: 3vw !important;
}
.cli-switch input:checked + .cli-slider {
  background-color: var(--rojo) !important;
}
/*********************Contacto*********************/
#direcciones {
  position: absolute;
  left: 50vw;
  width: 50vw;
  top: 10vw;
}
#direcciones-contacto-1, #direcciones-contacto-2 {
  display: flex;
  position: relative;
}
#direcciones-contacto-2 {
  margin-top: 5vw;
}
#direcc-spain, #direcc-france {
  position: absolute;
  top: -2vw;
  text-transform: uppercase;
}
#direcc-spain span, #direcc-france span {
  color: var(--rojo);
}
#maps-spain, #maps-france {
  width: 30vw;
  height: 27vh;
  margin-right: 2vw;
  background: var(--azul);
  border: 1px solid var(--azul);
}
#maps-spain iframe, #maps-france iframe {
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  filter: grayscale(1);
}
#contacto h2 {
  width: 30vw;
  margin-top: 5vw;
  z-index: 99;
}
#contacto {
  overflow: visible;
}
#arrow-contacto-1, #arrow-contacto-2 {
  width: 70vh;
  height: 70vh;
  background: linear-gradient(45deg, var(--rojo), transparent, transparent);
  position: absolute;
  transform: rotate(225deg);
  z-index: 99;
  opacity: .8;
  pointer-events: none;
}
#arrow-contacto-1 {
  margin-left: -12vw;
}
/*********************PAGE DEFAULT*********************/
.aviso {
  margin-top: 4vw;
}
.aviso p {
  padding: 0 3vw;
margin-bottom: 1vw;
}
.aviso li{
	    list-style: disc;
    margin-left: 6vw;
}
.certi {
  padding: 0 3vw;
  margin-top: 8vw;
}
.vc_row {
  width: 100vw !important;
}
.poli {
    width: 94vw !important;
    padding: 0 3vw;
    margin-top: 4vw;
}
.poli .vc_row{
	    width: 94vw !important;
}
.poli h2, .cookie_pag h2 {
  padding-left: 0 !important;
	font-weight:300;
}
.poli h3, .cookie_pag h3 {
  width: 100% !important;
}
.poli table, .cookie_pag table {
  width: 100%;
}
.poli td, .cookie_pag td {
  height: 1vw;
  padding: 0.5vw;
  border: 1px solid var(--azul);
}
.sig {
  margin-top: 8vw;
  padding: 0 3vw;
}
.corpo_uno {
  width: 80vw;
  height: calc(80vw * (9/16));
  left: 10vw;
  position: relative;
  margin-top: 8vw;
}

.cookie_pag {
  margin-top: 8vw;
  padding: 0 3vw;
  width: 94vw !important;
}
.grecaptcha-badge {
  opacity: 0 !important;
}
#video-corp-in {
  width: 70vw;
  height: calc(70vw * (9/16));
}
#video-corp-in iframe {
  width: 100%;
  height: 100%;
}
#video-corp-in-en {
  width: 70vw;
  height: calc(70vw * (9/16));
}
#video-corp-in-en iframe {
  width: 100%;
  height: 100%;
}
.video-corp {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
}
/*********************Quitar movil*********************/
#movil-menu {
  display: none;
}
/*********************MEDIAS*********************/
@media screen and (max-width: 600px) and (orientation: landscape), screen and (max-device-width: 600px) and (orientation: landscape) {
  body {
    opacity: 0 !important;
  }
}
@media screen and (max-device-width:440px) {
  #desktop-nav {
    display: none;
  }
  #movil-nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: var(--azul);
    transform: translateX(-100%);
    pointer-events: initial;
    transition: 800ms ease;
  }
  #arrow_mov1 {
    margin-top: 50vw;
    right: 80vw;
    z-index: 0;
    pointer-events: none;
  }
  #arrow_mov2 {
    margin-top: 50vw;
    right: 80vw;
    z-index: 0;
    transition: 1200ms ease;
    pointer-events: none;
  }
  #movil-nav.open {
    transform: translateX(0);
  }
  #movil-nav ul {
    flex-direction: column;
    margin-top: 30vw;
    margin-left: 3vw;
    width: 94vw;
    font-size: 120%;
  }
  #movil-nav ul li {
    border-bottom: 1px solid;
    padding: 1vw 0;
    color: #fff !important;
  }
  body {
    font-size: 3.5vw;
  }
  .scrollbar-track-y {
    display: none !important;
  }
  #logo {
    width: 37vw;
    top: 1vw;
    z-index: 999;
  }
  #cookie-law-info-bar {
    height: 30vw !important;
    padding: 3vw !important;
    margin: 3vw !important;
  }
  .cli-bar-container {
    font-size: 3.5vw !important;
    line-height: 1.2 !important;
  }
  .cli-style-v2 .cli-bar-btn_container .cli-plugin-button {
    border-radius: 5vw;
    font-size: 3.5vw;
    padding: 1vw 2.2vw;
  }
  #movil-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    display: flex;
  }
  .arrow {
    width: 50vh;
    height: 50vh;
  }
  h2 {
    font-size: 8vw;
  }
  h3, h1 {
    font-size: 3.5vw;
  }
  a.boton, a.botonw {
    padding: 0.2vw 2vw 0.4vw 2vw;
  }
  #movil-menu-boton {
    position: absolute;
    width: 9vw;
    height: 9vw;
    right: 3vw;
    top: 1vw;
    z-index: 999;
  }
  #movil-menu-boton.blue span {
    background: var(--azul);
  }
  #movil-menu-boton.blue22 span {
    background: #fff;
  }
  #movil-menu-boton.openb span {
    transform: rotate(45deg);
    top: 5vw;
  }
  #movil-menu-boton.openb span:first-child {
    transform: rotate(-45deg);
    top: 5vw;
  }
  #logo.whiteopen svg path {
    fill: #fff !important;
  }
  #movil-menu-boton.whiteopen span {
    background: #fff !important;
  }
  #movil-menu-boton span {
    top: 3vw;
    width: 8vw;
    height: 0.8vw;
    background: #fff;
    position: absolute;
    transition: 400ms ease;
  }
  #movil-menu-boton span:first-child {
    top: 5.5vw;
  }
  #logo.blue-mov svg path {
    fill: var(--azul);
  }
  nav.blue-mov {
    color: var(--azul);
  }
  .boton span, .botonw span, .post-boton span {
    margin-right: 1vw;
  }
  .submenu li {
    font-size: 4vw;
    border-bottom: none !important;
    margin-left: 1vw;
  }
  .menu-servicios.open, .menu-contacto.open, .menu-sustainable.open {
    height: 31vw;
  }
  .menu-servicios .submenu, .menu-contacto .submenu ,.menu-sustainable .submenu{
    display: none;
  }
  .submenu {
    margin-top: 1vw !important;
  }
  .menu-servicios span, .menu-contacto span , .menu-sustainable span {
    position: absolute;
    right: 3vw;
    color: var(--rojo);
    transform: rotate(90deg);
    transition: 400ms ease;
  }
  a.link::before {
    display: none;
  }
  nav ul li a.active, .menu-servicios.active, .menu-contacto.active, .menu-sustainable.active  {
    color: inherit;
  }
  #tralog2 {
    padding: 3vw;
    bottom: 20vw;
    position: absolute;
    left: 0;
    width: 94vw;
    height: auto;
	font-size: 16vw;
    font-family: 'Type1';
    font-weight: 100;
    line-height: 1;
    text-transform: uppercase;
	 color: #fff !important;
  }
  /*********************Movil/idiomas*********************/
  .trp-language-switcher {
    top: 9vw;
    left: 92vw;
    width: 5vw !important;
  }
  .trp-ls-shortcode-current-language {
    display: none !important;
  }
  .trp-language-switcher > div > a {
    font-size: 4vw;
  }
  .trp-ls-shortcode-language.movil {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 5vw !important;
    top: 0 !important;
    flex-direction: row;
    height: 14vw !important;
    background: none !important;
  }
  .trp-language-switcher a {
    padding: 0 3vw !important;
  }
  .cli-tab-footer .cli-btn {
    padding: 2vw;
    border-radius: 4vw !important;
  }
  /*********************Footer - Movil*********************/
  .footer {
    height: calc(100vh - 12vw);
  }
  .pamplona, .francia {
    width: 42vw;
  }
  .footer .submenu {
    width: 94vw;
    margin-top: 70vw !important;
    left: 3vw;
    z-index: 9999;
  }
  .submenu ul {
    width: 100%;
  }
  .footer-copy {
    bottom: 11vw;
    width: 80vw;
    left: 0;
    z-index: 99;
	display: none;
  }
  .linkedin {
    left: 3vw;
    position: absolute;
    bottom: 66vw;
    z-index: 99;
  }
  .silencio {
   left: 0;
    bottom: 32vw;
    z-index: 99;
  }
  .lodisna {
    font-size: 12.4vw;
    bottom: 20vw;
    z-index: 99;
  }
  .arrow-footer-1 {
    top: 36vh;
    left: -100vw;
  }
  .arrow-footer-2 {
    top: 36vh;
    left: -121vw;
  }
  /*********************HOME - Movil*********************/
	#uno h1{
    font-size: 16.4vw;
    width: 94vw;
    bottom: 64.3vw;
    height: 25vw;	
	}
	#uno h1 span:first-child {
    text-align: left;
}
  #uno_text {
    height: 39vw;
    width: 94vw;
    top: calc(100vh - 67vw);
    padding: 3vw;
    left: 0;
  }
  #tralog {
    bottom: 65vw;
  }
  #start-scroll span {
    display: none !important;
  }
  #start-in {
    font-size: 3vw;
    padding: 1vw 2.2vw;
  }
  #start-scroll {
        right: 3vw;
    left: auto;
    top: calc(100vh - 32vw);
  }
  #year {
    bottom: 96vw;
  }
  #arrow_1 {
    top: 20vh;
    left: -40vh;
  }
	#mark0{
		margin-top: -15vh;
	}
	#tres{
		margin-top: 15vh;
	}
  .content {
    top: 32vw;
    width: 90vw;
    flex-direction: column;
  }
  .content article {
    width: 84vw;
    margin-left: 0;
    margin-top: 2vw;
  }
  .line {
    top: -4vw;
  }
  .content h3 {
    width: 100%;
  }
  #content_logistica {
    opacity: 1;
    margin-top: 56vw;
  }
  #numeritos {
    margin-left: 59vw;
    margin-top: -86vh;
  }
  #numeritos div {
    margin-bottom: 26vw;
    font-size: 22vw !important;
    width: 35vw;
  }
  #cuatro h2 {
    width: 95vw;
    margin-top: 21vw;
  }
  .contenido {
    width: 80vw;
    flex-direction: column;
  }
  .contenido h3 {
    width: 80vw;
  }
  .contenido article {
    margin-top: 3vw;
    width: 100%;
  }
  #cuatro {
    justify-content: flex-start;
  }
  #kilometros {
    top: 111vw;
    right: 25vw;
    font-size: 7vw;
    width: 50vw;
    height: 50vw;
  }
  #dot {
    width: 1.4vw;
    height: 1.4vw;
    transform-origin: 25.7vw;
    left: -0.6vw;
    top: calc(50% - 0.7vw);
  }
  #tiempo {
    top: 29vw;
    font-size: 3vw;
  }
  #carrusel-home {
    height: 89.5vw;
    margin-top: -1px;
    padding-bottom: 10vw;
  }
  #lodisna-grande {
    height: 109vw;
    font-size: 107vw;
    margin-top: -5vw;
  }
  #carrusel-imagenes {
    width: 400vw;
    margin-top: 26vw;
    transform: translateX(0);
  }
  .carrusel-img {
    width: 94vw;
    height: 60vw;
    margin: 3vw;
  }
  #cinco {
    height: calc(100vh + 1px);
  }
  #cinco article {
    width: 80vw;
  }
  #numeros_in .desc {
    color: #fff;
    position: absolute;
    width: 49vw;
    text-align: right;
    margin-top: 22vw;
  }
  #numeros {
    height: 23vh;
  }
  #numeros_in {
    width: 521vw;
    transform: translateX(0);
  }
  #numeros_in .num {
    font-size: 25vw;
  }
  #numeros_in .desc {
    width: 50vw;
    text-align: right;
    margin-top: 25vw;
  }
  #seis {
    margin-top: -60vh;
    z-index: -1;
    height: 300vh;
  }
  #seis-inner {
    width: 100vw;
    flex-direction: column;
  }
  #ocho {
    right: 0;
    margin-top: 115vh;
  }
  #seis-inner {
    transform: translateX(0);
  }
  #siete h3, #ocho h3 {
    width: 70vw;
    margin-top: 16vw;
  }
  #siete h2 {
    width: 80vw;
  }
  #puntos {
    width: 400vw;
    margin-top: 65vw;
  }
  #puntos div {
    width: 60vw;
    padding: 1vw 3vw;
  }
  #siete {
    justify-content: flex-start;
  }
  #gps {
    position: absolute;
    width: 94vw;
    height: 94vw;
    top: 42vw;
    right: 3vw;
  }
  #ocho article {
    width: 90vw;
  }
  #sellos {
    margin-top: 6vw;
  }
  .sello {
    width: 16.2vw;
  }
  #clients {
    flex-wrap: wrap;
    font-size: 92%;
  }
  #clients div {
    padding: 1vw;
  }
  #logos-clientes {
    height: 26vh;
  }
  .logo {
    height: 7vh;
    margin: 2vh 3vw;
    width: 19vw;
  }
  .logo img {
    transform: scale(1);
  }
  #nueve {
    height: 54vh;
  }
  /*********************EMPRESA - Movil*********************/
  #empresa h1 {
    width: 80vw;
  }
  #empresa h2 {
    width: 94vw;
  }
  #empresa article {
    position: relative;
    width: 94vw;
    left: 3vw;
    bottom: auto;
  }
  #timeline {
    flex-direction: column;
    margin-top: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #timeline .tag {
    position: relative;
    margin-top: 0;
    opacity: 1;
    right: 0;
    margin-bottom: 15vw;
    width: 40vw;
  }
  #timeline .arrow {
    display: none;
  }
  #todos {
    width: 289vw;
  }
  .timeline-item {
    opacity: 1;
    width: 44vw;
  }
  #actualidad .tag {
    opacity: 1;
    width: 50vw;
    margin-top: -53vw;
  }
  #actualidad #numeros {
    opacity: 1;
  }
  #numeros_in {
    height: 36vw;
  }
  #equipo {
    height: 210vw;
  }
  #equipo article {
    padding: 0 3vw;
    width: 94vw;
    margin-left: 0;
  }
  #equipo h2 {
    width: 90vw;
  }
  #equipo-img {
    width: 94vw;
    height: 67vw;
    margin: 3vw;
    position: relative;
    top: 0;
    left: 0;
  }
  #valores {
    height: 17vw;
    font-size: 15vw;
    margin-bottom: 6vh;
  }
  #valores-inner {
    transform: translateX(-44vw);
  }
  #eficiencia h3 {
    width: 40vw;
  }
  #eficiencia .eficiencia-contenido .contenido-uno {
    right: auto;
    left: 3vw;
    width: 94vw;
  }
  #eficiencia .eficiencia-contenido .contenido-uno article {
    width: 94vw;
  }
  #eficiencia .eficiencia-contenido .contenido-dos {
    width: 94vw;
    display: flex;
  }
  #eficiencia .eficiencia-contenido .contenido-dos .info {
    padding-left: 3vw;
    margin-bottom: 4vw;
    width: 44vw;
  }
  #empresa-calidad h3 {
    top: 25vw;
  }
  #empresa-calidad-cont {
    margin-top: -141vw;
    width: 94vw;
    margin-left: 0;
  }
  .empresa-sellos {
    height: 35vw;
  }
  .empresa-sellos h3 {
    width: 80vw;
  }
  .empresa-sellos .descripcion {
    width: 94vw;
    margin-left: 0;
    margin-top: 13vw;
  }
  .empresa-sellos .sello {
    height: 13vw;
    width: 27vw;
  }
  .empresa-sellos .sello.sqas {
    width: 18vw;
  }
  #imagen2 {
    width: 44vw;
    height: 61vw;
  }
  #flecha-imagenes-1 {
    left: 38vw;
  }
  #empresa-imagenes {
    height: 50vh;
  }
  #sociedad {
    flex-direction: column;
  }
  #sociedad h3 {
    width: 50vw;
    top: -4vw;
  }
  #sociedad article {
    width: 94vw;
    margin-left: 3vw;
    margin-top: 0vw;
  }
  .camara-comercio {
    width: 19vw;
    right: 3vw;
    top: -3vw;
    left: auto;
  }
  .astic {
    position: absolute;
    width: 18vw;
    right: 3vw;
    top: 7vw;
    left: auto;
  }
  #empresa-imagenes-2 {
    margin-top: 40vw;
    height: 80vw;
  }
  #imagen5 {
    width: 41vw;
    height: 55vw;
  }
  .back-home, .backtop {
    bottom: 10vw;
  }
  #medio-ambiente {
    flex-direction: column;
  }
  #medio-ambiente h2 {
    width: 90vw;
    margin-top: 5vw;
  }
  #medio-ambiente h3 {
    width: 30vw
  }
  .volvo, .renault {
    width: 10vw;
    left: auto;
    top: 0.3vw;
    right: 3vw;
  }
  .renault {
    left: auto;
    right: 1vw;
    width: 13.5vw;
    top: 12.5vw;
  }
  #medio-ambiente article {
    width: 94vw;
    margin-left: 3vw;
    margin-top: 4vw;
  }
  #medio-ambiente {
       height: 269vw;
  }
	.carbono{
		width: 29vw;
	}
  .back-fondo {
    font-size: 41vh;
  }
  /*********************Flota - Movil*********************/
  #flota h3, #flota article {
    padding: 0 3vw;
    width: 94vw;
  }
  #flota-img {
    width: 100vw;
    margin-top: 5vw;
    position: relative;
  }
  #fondo-flota {
    margin-top: 0;
    opacity: 1;
    height: 100vh;
  }
  #flota-superior h2 {
    top: 0;
    left: 0;
  }
  #flota-superior article {
    top: 14vw;
    left: 3vw;
    width: 71vw;
  }
  #flota-contenido {
    bottom: 3vw;
    flex-direction: column;
    z-index: 999;
  }
  #flota-line-1 {
    bottom: 18vw;
    z-index: 999;
  }
  #investiga {
    margin-top: 0;
  }
  .op1 {
    width: 67vw;
    line-height: 1;
  }
  #flota-contenido article {
    width: 94vw;
  }
  .op-num {
    font-size: 9vw;
  }
  #investiga article {
    width: 94vw;
    margin-left: 3vw;
  }
  #investiga {
    height: 100vw;
  }
  #investiga-img div {
    margin: 3vw;
    width: 94vw;
    height: 56vw;
  }
  #investiga-img {
    height: 66vw;
    width: 100vw;
  }
  #video-flota {
    z-index: 9;
  }
  #flota-deg, #flota-deg-1 {
    z-index: 99;
  }
  #flota-superior {
    position: absolute;
    width: 100%;
    z-index: 999;
  }
  #localiza h2 {
    width: 90vw;
  }
  #localiza article {
    width: 94vw;
    padding: 0 3vw;
  }
  #localiza {
    height: 201vw;
  }
  #localiza-img {
    width: 94vw;
    height: 100vw;
    position: relative;
  }
  #flota-calidad h2, #flota-calidad article {
    width: 94vw;
    margin-left: 0;
  }
  #flota-sellos {
    margin-left: 0;
    margin-top: 5vw;
  }
  #flota-sellos .sello {
    width: 16vw;
  }
  #flota-calidad-img {
    position: relative;
    width: 94vw;
    margin-top: 8vw;
  }
  #flota-calidad {
    margin-top: 0;
    height: 112vw;
  }
  /*********************Carretera- Movil*********************/
  #carretera {
    justify-content: start;
  }
  #carretera article {
    width: 94vw;
    margin-left: 0;
    margin-top: 2vw;
  }
  #carretera h3 {
    margin-top: 96vw;
    z-index: 9;
  }
  #main_carretera {
    margin-top: 2vw;
  }
  #imagen_carretera, #imagen_logistica {
    width: 94vw;
    height: calc(94vw / 1.9);
    right: 3vw;
    bottom: 84vw;
  }
  #carretera h3 {
    width: 30vw;
  }
  #ftl article {
    width: 94vw;
  }
  #ftl {
    height: 90vw;
  }
  #mapa {
    top: 0;
  }
  #distancia-km {
    top: 8vw;
    right: 15vw;
  }
  #distancia-mins {
    top: 0vw;
    right: 15vw;
  }
  #distancia-km span, #distancia-mins span {
    font-size: 3vw;
    margin-left: 2vw;
  }
  #flechi {
    -webkit-text-stroke: 0;
    color: var(--azul);
  }
  #carretera-imagen-3 {
    display: none;
  }
  #carretera-imagenes div {
    width: 46vw;
    height: 28vw;
  }
  #carretera-imagenes {
    min-height: 35vw;
  }
  #imagen-regular {
    width: 151vw;
    height: 78vw;
    left: -32vw;
    top: -14vw;
  }
  #regular h2 {
    margin-left: 0;
    margin-top: 27vw;
  }
  #regular article {
    width: 94vw;
    margin-left: 3vw;
  }
  #adr {
    height: 121vw;
    justify-content: flex-start;
  }
  #adr article {
    width: 94vw;
  }
  #adr h2 {
    margin-top: 39vw;
  }
  #imagen-adr {
    width: 151vw;
    height: 78vw;
    top: -19vw;
    right: -53vw;
  }
  /*********************logistica- Movil*********************/
  #logistica {
    justify-content: start;
  }
  #logistica h3 {
    margin-top: 96vw;
  }
  #logistica article {
    width: 94vw;
    padding: 0;
    position: relative;
    bottom: 0;
    margin-bottom: 20vw;
    left: 3vw;
  }
  #logistica h3 {
    width: 30vw;
    z-index: 9;
  }
  #warehousing h2 {
    width: 60vw;
  }
  #warehousing article {
    width: 94vw;
  }
  #warehousing {
    width: 100vw;
    height: 110vw;
  }
  #warehousing-img {
    width: 94vw;
    height: 53vw;
  }
  .wh3 {
    opacity: 1 !important;
  }
  #warehousing-items {
    width: 94vw;
    margin-left: 3vw;
    top: 0;
  }
  #mercancias {
    margin-top: 0;
  }
  .numero {
    left: -14vw;
    top: -1.7vw;
    color: var(--azul);
    margin-bottom: 2vw;
  }
  .warehousing-item {
    width: 75vw;
    position: relative;
  }
  #warehousing-items h3 {
    margin-bottom: 3vw;
    width: 28vw;
  }
  #mercancias {
    justify-content: flex-start;
    height: 553vw;
  }
  #mercancias-superior, #mercancias-inferior {
    flex-direction: column;
    display: flex;
  }
  #mercancias-superior h2 {
    width: 94vw;
  }
  #mercancias-superior article {
    width: 94vw;
    padding: 3vw;
  }
  #mercancias-inferior {
    left: 3vw;
    height: auto;
    transform: translate(0);
    margin: 0 3vw;
  }
  #mercancias-inferior div {
    margin: 0;
    width: 94vw;
    height: 54vw;
  }
  #mercancias-inferior div {
    margin: 2vw 0;
    height: 54vw;
    padding-bottom: 3vw;
    border-bottom: 1px solid;
  }
  #mercancias-inferior h3 {
    width: 40vw;
  }
  /*********************Noticias - Movil*********************/
  .post a {
    flex-direction: column;
  }
  .post-img {
    width: 94vw;
    padding: 3vw 0;
  }
  .post-content {
    width: 94vw;
  }
  .post-boton {
    border: 1px solid;
    padding: 0.1vw 1vw;
    margin: 2vw 0;
    font-size: 100%;
  }
  .post_title {
    font-size: 8vw;
  }
  /*********************Contacto - Movil*********************/
  #contacto {
    flex-direction: column;
    overflow: hidden !important;
  }
  #contacto h2 {
    width: 68vw;
    margin-top: 15vw;
  }
  #direcciones {
    position: relative;
    left: 0;
    width: 94vw;
    margin: 3vw;
  }
  #direcciones-contacto-1, #direcciones-contacto-2 {
    display: flex;
    position: relative;
    margin-bottom: 27vw;
  }
  #direcc-spain, #direcc-france {
    top: -5vw;
  }
  #maps-spain, #maps-france {
    position: absolute;
    width: 50vw;
  }
  #datos-spain, #datos-france {
    margin-left: 54vw;
  }
  #arrow-contacto-1, #arrow-contacto-2 {
    display: none;
  }
  #contratacion {
    margin: 5vh 0 0 0;
  }
  #contratacion h3 {
    width: 100%;
    padding: 0 3vw;
  }
  #texto-contratacion {
    width: calc(100% - 6vw);
    padding: 0 3vw;
    flex-direction: column;
    display: flex;
  }
  #interesado {
    position: relative;
    margin: 3vw;
    width: calc(100% - 6vw);
  }
  #contratacion-flecha {
    bottom: 10vh;
    right: 0;
    padding: 3vw;
    font-size: 16vw;
  }
  #vacantes {
    margin: 2vw 7vw;
    width: calc(100% - 14vw);
  }
  #formulario {
    height: 50vh;
    margin-bottom: 8vh;
  }
  #formulario form {
    display: flex;
    flex-direction: column;
  }
  #form-izq, #form-dch {
    height: 25vh;
    width: calc(100% - 8vw);
    padding: 4vw 0 0 4vw;
  }
  #form-dch {
    padding-top: 0 !important;
  }
  #formulario input {
    font-size: 3vw;
    border-radius: 0;
  }
  #formulario select {
    font-size: 3vw;
  }
  #formulario input[type="submit"i] {
    padding: 1.2vw 2vw !important;
    border: 1px solid !important;
    border-radius: 4vw !important;
  }
	.certi, .aviso, .poli, .sig, .cookie_pag {
    margin-top: 10vh;
}
	#apostamos_home {
    margin-top: -90vw;
    margin-bottom: 150vw;
    display: flex;
    height: 119vw;
    align-items: flex-end;
    padding-bottom: 1vw;
}
	#vehiculosimg_home{
	top: 0;
    width: 94vw;
    height: 49vw;	
	}
	#apostamos_home_cont{
	width: 96vw;
    margin-left: 2vw;	
	}
	#logistica.ultima-milla article {
    width: 96vw;
    bottom: 3.4vw;
    margin-left: 0;
	}
	#imagen_ultimamilla{
	height: 61vw;
    bottom: auto;
    top: 20vw;
    width: 70vw;	
	}
	#apostamos{
		flex-direction: column;
    height: auto;
	}
	#electric{
	width: 94vw;
    height: 61vw;	
	}
	#apostamos_cont {
    width: 96vw;
	}
	#apostamos_cont article {
    width: 96vw;
	}
	#icons{
	flex-direction: column;
    height: auto;
	margin-top: 10vw;
    margin-bottom: 10vw;
	}
	.icongroup{
	    width: 94vw;
		margin-bottom: 3vw;
	}
	.iconimg {
    width: 26vw;
    height: 19.95vw;
	}
	#icons article {
    margin-left: 26vw;
    padding: 2vw 0;
    width: 50vw;
	}
	#icons h3 {
    margin-left: 26vw;
    width: 50vw;
	}
	#vehiculos {
    height: 118vw;
    align-items: flex-end;
    margin-bottom: 20vw;
	}
	#vehiculoscont {
    width: 90vw;
	}
	#vehiculosimg{
	width: 90vw;
    height: 42vw;
    top: 0;	
	}
	#navarra h2 {
    width: 70vw;
    margin-left: 0;
	}
	#navarra article {
    width: 92vw;
    margin-left: 0;
	}
	#navarra{
	    height: auto;
    margin-top: 12vw;	
	}
	#mapa-um {
    display: none;
	}
	#cienpor{
	width: 20vw;
	height: 20vw;
	top: 0vw;
    left: 3vw;
	border-radius: 30vw;
	}
	
}