*,
*::before,
*::after,
::before,
::after
{
	box-sizing: border-box;
}

@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 200;
  src: url(../fonts/toyota-type/light/ToyotaType-Light.eot);
  src: url(../fonts/toyota-type/light/ToyotaType-Light.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/light/ToyotaType-Light.woff2) format("woff2"),
    url(../fonts/toyota-type/light/ToyotaType-Light.woff) format("woff"),
    url(../fonts/toyota-type/light/ToyotaType-Light.ttf) format("truetype"),
    url(../fonts/toyota-type/light/ToyotaType-Light.svg#ToyotaType-Light)
      format("svg");
}

@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/toyota-type/book/ToyotaType-Book.eot);
  src: url(../fonts/toyota-type/book/ToyotaType-Book.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/book/ToyotaType-Book.woff2) format("woff2"),
    url(../fonts/toyota-type/book/ToyotaType-Book.woff) format("woff"),
    url(../fonts/toyota-type/book/ToyotaType-Book.ttf) format("truetype"),
    url(../fonts/toyota-type/book/ToyotaType-Book.svg#ToyotaType-Book)
      format("svg");
}

@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/toyota-type/regular/ToyotaType-Regular.eot);
  src: url(../fonts/toyota-type/regular/ToyotaType-Regular.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/regular/ToyotaType-Regular.woff2) format("woff2"),
    url(../fonts/toyota-type/regular/ToyotaType-Regular.woff) format("woff"),
    url(../fonts/toyota-type/regular/ToyotaType-Regular.ttf) format("truetype"),
    url(../fonts/toyota-type/regular/ToyotaType-Regular.svg#ToyotaType-Regular)
      format("svg");
}

@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/toyota-type/semibold/ToyotaType-Semibold.eot);
  src: url(../fonts/toyota-type/semibold/ToyotaType-Semibold.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/semibold/ToyotaType-Semibold.woff2) format("woff2"),
    url(../fonts/toyota-type/semibold/ToyotaType-Semibold.woff) format("woff"),
    url(../fonts/toyota-type/semibold/ToyotaType-Semibold.ttf)
      format("truetype"),
    url(../fonts/toyota-type/semibold/ToyotaType-Semibold.svg#ToyotaType-Semibold)
      format("svg");
}
@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/toyota-type/bold/ToyotaType-Bold.eot);
  src: url(../fonts/toyota-type/bold/ToyotaType-Bold.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/bold/ToyotaType-Bold.woff2) format("woff2"),
    url(../fonts/toyota-type/bold/ToyotaType-Bold.woff) format("woff"),
    url(../fonts/toyota-type/bold/ToyotaType-Bold.ttf) format("truetype"),
    url(../fonts/toyota-type/bold/ToyotaType-Bold.svg#ToyotaType-Bold) format("svg");
}

@font-face {
  font-display: swap;
  font-family: Toyota Type;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/toyota-type/black/ToyotaType-Black.eot);
  src: url(../fonts/toyota-type/black/ToyotaType-Black.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/toyota-type/black/ToyotaType-Black.woff2) format("woff2"),
    url(../fonts/toyota-type/black/ToyotaType-Black.woff) format("woff"),
    url(../fonts/toyota-type/black/ToyotaType-Black.ttf) format("truetype"),
    url(../fonts/toyota-type/black/ToyotaType-Black.svg#ToyotaType-Black) format("svg");
}

html{
    font-size:0.92vw
}

body
{
  	font-family: "Toyota Type";
	font-size:1.3rem;
    color:#fff;
    font-weight:400;
    line-height: 1.2;
    position: relative;
}

h1,h2,h3,h4,h5,h6,p
{
	margin: 0;
}

a
{
	display: inline-block;
	text-decoration: none;
}

header
{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding-top: 4rem;
	padding-bottom: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	z-index: 3;
}

header .logo
{
	width: 9rem;
	height: auto;
	display: block;
}

b, strong
{
	font-weight: 800;
}


.container{
	max-width: 90%;
    padding-right:1.2rem;
    padding-left:1.2rem;
    position:relative;
    margin:0 auto
}
.container-fluid{
    width:100%;
    padding-right:1.2rem;
    padding-left:1.2rem;
    position:relative
}
.row{
    position:relative;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    margin-right:-1.2rem;
    margin-left:-1.2rem
}
	
.row-vertical
{
	flex-direction: column;
}

.row-centrada{
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
}
.row-derecha{
    -webkit-box-pack:end;
    -ms-flex-pack:end;
    justify-content:flex-end
}
.row-extremos{
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between
}
.row-centrada-vertical{
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center
}

.columna
{
    padding-right:1.2rem;
    padding-left:1.2rem;
    position:relative
}

.columna-50
{
	width: 50%;
}

.columna-58
{
	width: 58.3%;
}

.columna-100
{
	width: 100%;
}

.mt-2
{
	margin-top: 2.4rem;
}

.mb-2
{
	margin-bottom: 2.4rem;
}

.mt-10
{
	margin-top: 10rem;
}

.mt-55
{
	margin-top: 55rem;
}

.ta-d
{
	text-align: right;
}

.seccion{
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
}

.boton
{
	font-size: 0.9rem;
	padding: 0.9rem 2rem;
	line-height: 1;
	border: 0.15rem solid;
	transition: all .3s ease-out;
	border-radius: 1.5rem;
	letter-spacing: 0.35rem;
}

.boton.boton-grande
{
	font-size: 1.6rem;
	padding: 1.7rem 2.5rem;
	border-radius: 2.5rem;
}

.boton:hover
{
	opacity: 0.75;
}

.boton.boton-negro
{
	border-color: #000;
	color: #fff;
	background-color: #000;
}

.boton.boton-blanco
{
	border-color: #fff;
	color: #000;
	background-color: #fff;
}

.boton.boton-transparecnte
{
	border-color: #fff;
	color: #fff;
	background-color: rgba(255, 255, 255, 6%);
}

.boton.boton-vacio
{
	font-size: 1.13rem;
	border-color: #3e3e3e;
	color: #3e3e3e;
}

.boton.boton-transparecnte span
{
	margin-right: 0.9rem;
	display: inline-flex;
	align-items: center;
}

.boton.boton-transparecnte span img
{
	display: block;
	width: 0.9rem;
	height: auto;
}

.bloque-vermas
{
	position: relative;
}

.bloque-vermas h3,
.bloque-vermas h3
{
	font-weight: 400;
	font-size: 1.5rem;
	letter-spacing: 0.5rem;
	margin-bottom: 1rem;
}


.bloque-vermas .bloque-vermas-texto,
.bloque-vermas .bloque-vermas-boton
{
	padding: 0 1.2rem;
}

.bloque-vermas-previo
{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	margin: 0 -1.2rem;
}

.bloque-vermas-detalle
{
	padding: 2rem;
	background-color: rgba(0, 0, 0, 60%);
	border-radius: 2rem;
	position: relative;
	left: 0%;
	bottom: 0%;
	width: 100%;
}

.bloque-vermas-detalle p
{
	font-size: 1.1rem;
}

.bloque-vermas-previo h3 strong
{
	display: block;
}

.bloque-cuadrado
{
	position: relative;
}

.espacio-vermas
{
    padding: 0 4rem;
    width: 100%;
    bottom: 3rem;
    left: 0;
    position: absolute;
}

.espacio-vermas-ultimo
{
	width: 50%;
}

.espacio-vermas-ultimo .bloque-vermas-boton
{
	margin-top: 2rem;
	width: 100%;
}

.espacio-contenido
{
	position: relative;
}

.modulo-360
{
	display: none;
	position: relative;
	padding-bottom: 58.27%;
}

.modulo-360 .product-viewer,
.modulo-360 iframe
{
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modulo-360.open
{
	display: block;
}

.boton-modulo-360
{

}

.boton-modulo-360.activo
{
	border-color: #000;
	color: #fff;
	background-color: #000;
}

#inicio
{
	position: relative;
	height: 100vh;
	overflow: hidden;
}

#inicio .fondo
{
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#inicio .bloque-inicio
{
	text-align: center;
	position: absolute;
	left: 50%;
	bottom: 8rem;
	transform: translateX(-50%);
}

#inicio .bloque-inicio h2
{
	font-size: 2.25rem;
	letter-spacing: 0.75rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 3.5rem;
}

#inicio .bloque-inicio p
{
	margin-bottom: 3rem;
}

#inicio .bloque-inicio .logo-4runner
{
	width: 50rem;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-bottom: 1.5rem;
}

#inicio video
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#experiencia
{
	height: auto;
	position: relative;
}

#experiencia .fondo
{
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

#experiencia .container,
#experiencia .container .row
{

}

#experiencia h2
{
	text-align: center;
	font-size: 2.85rem;
	letter-spacing: 0.75rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 2rem;
	color: #3e3e3e;
}

#experiencia .icono-360
{
    display: block;
    margin: 0 auto;
    width: 8rem;
}

#experiencia .botonera
{
	text-align: center;
}

#experiencia .boton-vacio
{
	margin: 0 1rem;
}

#exterior,
#interior,
#galeria,
#final
{
	padding-top: 8rem;
	padding-bottom: 7rem;
	background-color: #000;
	position: relative;
}

#exterior .fondo,
#interior .fondo,
#galeria .fondo,
#final .fondo
{
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
}

.titulo
{
	text-align: center;
	font-size: 3.3rem;
	letter-spacing: 0.75rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 3rem;
	color: #fff;
}

.parrafo
{
	text-align: center;
}

#interior,
#exterior
{
	overflow: hidden;
}

#exterior .bloque-vermas-especial,
#interior .bloque-vermas-especial
{
	width: 50%;
	margin: 0 auto;
}

#exterior .imagen-exterior,
#interior .imagen-exterior
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

#galeria .pretitulo
{
	text-align: center;
	font-size: 2.6rem;
	font-weight: 200;
	letter-spacing: 0.35rem;
}

#galeria .titulo
{
	letter-spacing: 1rem;
	font-size: 8.5rem;
}

.swiper{
	margin-top: 75rem;
}

.swiper-slide {
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  width: 70%;
}

.swiper-pagination
{
	position: relative;
	margin: 0 auto;
	margin-top: 3rem;
}


.swiper-pagination-bullet
{
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 2rem;
	background-color: rgba(255, 255, 255, 0.40);
}


.swiper-pagination-bullet-active
{
	width: 5rem;
	background-color: rgba(255, 255, 255, 0.75);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,.swiper-pagination-fraction {
	width: 15%;
	margin: 0 auto;
	margin-top: 3rem;
	padding: 0.5rem 1rem;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 2rem;
}

.trama
{
	position: fixed;
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	z-index: 9999;
}

.trama.open
{
	display: block;
}

.cuerpo-modal
{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50%; 
	transform: translate(-50%, -50%);
}

.contenedor-video
{
	position: relative;

  padding-bottom: 58.27%;
  width: 100%;
}

.contenedor-video iframe
{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.cerrar-modal
{
  position: absolute;
  font-size: 3rem;
  color: #fff;
  top: -2.5rem;
  right: -1.5rem;
  line-height: 1;
  cursor: pointer;
}

.solodesktop
{
	display: block;
}

.solomobile
{
	display: none;
}

#final .titulo
{
	font-size: 2.3rem;
}

#final .botonera
{
	text-align: center;
}

#final .botonera .boton
{
	margin: 0 1rem;
}

#product_viewer .axigear-inner-box
{
    background-color: transparent !important;
}


.w-8 {
  width: 2.5rem;
  margin: 0 auto;
  margin-top: 3rem;
  animation: bounce 2s cubic-bezier(.445,.05,.55,.95) infinite;
}

@keyframes bounce {
		0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-15px)
    }
    100% {
        transform: translateY(0)
    }
}

@media(max-width:1199px)
{
	html{
	    font-size:1.2vw;
	}


	#inicio .bloque-inicio
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.swiper-horizontal>.swiper-pagination-bullets, 
	.swiper-pagination-bullets.swiper-pagination-horizontal, 
	.swiper-pagination-custom, 
	.swiper-pagination-fraction {
		width: 25%;
	}

	.columna-tablet-h-100
	{
		width: 100%;
	}

	.mt-tablet-h-30
	{
		margin-top: 30rem;
	}

	.espacio-vermas
	{
		padding: 0 1.2rem;
		bottom: 1.2rem;
	}

	.bloque-vermas-detalle
	{
		padding: 1.2rem;
	}

	.swiper {
	    margin-top: 50rem;
	}
}

@media(max-width:991px)
{
	html{
	    font-size:1.35vw;
	}

	.solodesktop
	{
		display: none;
	}

	.solomobile
	{
		display: block;
	}
}

@media(max-width:767px)
{
	html{
	    font-size:3.5vw
	}

	body{
	    font-size:1rem
	}

	header .logo
	{
		width: 5.7rem;
	}

	.boton
	{
		font-size: 0.75rem;
		letter-spacing: 0.20rem;
		padding: 0.65rem 1.5rem;
	}

	.boton.boton-vacio
	{
		font-size: 0.75rem;
	}

	.boton.boton-grande {
		font-size: 0.75rem;
		padding: 0.5rem 1rem;

	}

	.sinpadding-mobile
	{
		padding: 0;
	}

	.columna-mobile-100
	{
		width: 100%;
	}

	.mt-mobile-7
	{
		margin-top: 7rem;
	}

	.mt-mobile-22
	{
		margin-top: 22rem;
	}

	.titulo
	{
		font-size: 1.4rem;
		letter-spacing: 0.35em;
		margin-bottom: 1rem;
	}

	.parrafo
	{
		font-size: 0.75rem;
	}

	#inicio .bloque-inicio
	{
    width: 90%;
    padding: 0 1.2rem;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
	}

	#inicio .bloque-inicio .logo-4runner
	{
		width: 100%;
		margin-bottom: 1rem;
	}

	#inicio .bloque-inicio h2
	{
    font-size: 1.1rem;
    letter-spacing: 0.35em;
    margin-bottom: 1.5rem;
	}

	#inicio .bloque-inicio p
	{
		font-size: 0.75rem;
	}

	#experiencia h2
	{
    font-size: 1.4rem;
    letter-spacing: 0.37em;
    margin-bottom: 1rem;
	}

	#experiencia .icono-360
	{
		width: 4rem;
	}

	#exterior, #interior, #galeria, #final {
	    padding-top: 4rem;
	    padding-bottom: 3rem;

	}

	#exterior .bloque-vermas-especial, 
	#interior .bloque-vermas-especial
	{
		width: 100%;
	}

	.bloque-vermas h3, .bloque-vermas h3
	{
		font-size: 1rem;
    letter-spacing: 0.37em;
	}

	.bloque-vermas-detalle p
	{
		font-size: 0.75rem;
	}

	.espacio-vermas
	{
		padding: 0 1.2rem;
		bottom: 1.2rem;
	}

	.espacio-vermas-ultimo
	{
		width: 100%;
	}

	.bloque-vermas-detalle
	{
		padding: 1.2rem;
		border-radius: 1.5rem;
	}

	.swiper {
	  margin-top: 29rem;
	}

	.swiper-slide {
	  width: calc(90% - 1.2rem);
	}

	#galeria .pretitulo
	{
		font-size: 0.9rem;
		letter-spacing: 0.2rem;
	}

	#galeria .titulo {
		letter-spacing: 0.5rem;
		font-size: 3.1rem;
	}

	.swiper-horizontal>.swiper-pagination-bullets, 
	.swiper-pagination-bullets.swiper-pagination-horizontal, 
	.swiper-pagination-custom, .swiper-pagination-fraction
	{
		width: 41.6%;
		padding: 0.5rem 0.5rem
	}

	.swiper-pagination-bullet
	{
		width: 1rem;
		height: 1rem;
	}

	.swiper-pagination-bullet-active
	{
		width: 3rem;
	}

	.cuerpo-modal
	{
		width: 83.3%;
	}


	#final .titulo {
	  font-size: 0.9rem;
		letter-spacing: 0.25rem;
	}

	#final .botonera .boton
	{
		margin: 0 0.5rem;
	}


}