@CHARSET "UTF-8";

/*
* INDICE
* Colores							 26
* Correcciones 						 47
* Alineaciones						 57
* General							 74
* Búsqueda							157
* Pie							   	221
* Login								317
* Aviso Cookies						344
* Cabecera							366
* Elementos 						590
* Inicio							668
* Equipo							810
* Servicios							918
* Tech							   1008
* Noticias						   1176
* Oficina						   1274
* Contactar						   1405
* Trabaja con nosotros			   1485
* Página legal					   1524
*/

/* Colores */

:root {
  --rojo: #ce0e2d;
  --blanco: #ffffff;
  --blancoroto: #a7a6a2;
  --gris: #36362d;
  --negro: #000000;
  --grisclaro: #76756b;
  --grisoscuro: #292922;
  --azul: #3a7bfc;
  
  --h1: 2.7vw;
  --h2:	1.9vw;
  --h3: 1.7vw;
  --p: 1.4vw;
  --nav: 21px;
  --carouselh2: 3.8vw;
  --carouselsmall: 1.8vw;
}

/* Correcciones */

.pager li>a:hover, .pager li>a:focus {
    color: #fff;
}

.label-default {
    background-color: #ccc; 
}

/* Alineaciones  */

.derecha {
	text-align: right !important;
}

.izquierda {
	text-align: left !important;
}

.centro {
	text-align: center !important;
}

img {
	height: auto;
	max-width: 100%;
}

main {
    width: 100vw;
    overflow: hidden;
    position: absolute;
    top: 0;
}

/* General */

body { 
	background-color: #fff;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 300;
}

a {
	color: var(--rojo);
}

a:hover {
	color: var(--gris);
}

strong {
	font-weight: 800;
}

p, body {
	font-size: var(--p);
	color: var(--gris);
}

strong {
	font-weight: 700;
}

.parriba {
	position: fixed;
	bottom: 16px;
	right: 16px;
	background-color: var(--rojo);
	display: block;
	width: 32px;
	height: 32px;
	font-size: 16px;
	color: #fff;
	border-radius: 32px;
	text-align: center;
	opacity: 0.5;
	line-height:28px; 
	display: none;
}
.parriba:hover {
	opacity: 1;
}

.mensaje_sistema{
	padding: 20px 20px 10px;
    line-height: 150%;
    border-radius: 10px;
    margin: 32px 0;
}

.container {
	max-width: 1620px;
}

.contenido {
	height: calc(100vh - 192px);
}

.rojo {
	color: var(--rojo);
}

.gris {
	color: var(--gris);
}

.gris-claro {
	color: var(--gris-claro);
}

.blanco {
	color: var(--blanco);
}
.negro {
	color: var(--negro);
}

/* Búsqueda */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    
    opacity: 0;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}
#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
}
#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
	background-color: #428bca;
	border-color: #357ebd;
	opacity: 1;
	padding: 10px 17px;
	font-size: 27px;
}

/* Pie */

#pie {
	 margin-top: 64px;
	 border-top: 5px solid var(--rojo);
	 background: var(--negro);
	 color: #a7a6a2;
	 font-size: 14px;
	 font-weight: 300;
	 padding: 32px;
}
#pie h3 {
	margin-top: 0 !important;
	margin-bottom: 10px;
	font-size: 25px !important;
	font-weight: 300;
	color: var(--blancoroto);
}
#pie img.redes {
	margin: 10px 2px;
}
#pie a {
	font-weight: 300;
	color: var(--blancoroto);
	text-decoration: none;
}
#pie ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#pie li {
	padding: 0;
	list-style: none;
	margin-bottom: 10px
}

#pie ul.menu-pie li a {
	font-weight: 700;
}
#pie .espacio {
	min-height: 216px;
	height: unset;
	margin-bottom: 32px;
}

#pie .linea {
	border-right: 1px solid var(--gris);
}

#pie .logos {
	margin-bottom: 32px;
}

#pie .logos img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: gray;
}
#pie .logos img:hover {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: none;
}


#pie .copyright {
	font-size: 16px;
	font-weight: 300;
} 

.icono-pie span {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 16px;
	/*background-color: #ffffff;*/
	color: var(--blanco);
}

.icono-pie .fa-inverse {
	color: var(--negro);
}

.icono-pie:hover span {
	color: var(--grisclaro);
}

/* login */

#seccion-login-2, #seccion-login-4 {
	background: var(--rojo);
	padding: 32px;
	margin: auto;
	text-align: center;
}

#seccion-login-2 .lema h1, #seccion-login-4 .lema h1  {
	color: var(--blanco);
}
#seccion-login-3, #seccion-login-5 {
	margin: 64px auto;
}
#seccion-login-3 .btn-default, #seccion-login-5 .btn-default {
	background: #302b28;
	color: var(--blanco);
}

#seccion-login-5 p.destacado {
	text-align: center;
	font-size: 26px;
	font-weight: 300;
	margin: 32px auto;
}

/* aviso-cookies */

#cookie_avisos {
	position: absolute;
	z-index: 99999999;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
}
.ca_caja {
	position: absolute;
	background-color: var(--blanco);
	width: 60vw;
	left: 20vw;
	top: 10vh;
	border: 5px solid var(--rojo);
	border-radius: 16px;
	padding: 32px;
}

/* Cabecera */
header {
	position: relative;
	z-index: 99999;
}

.margen-superior {
	margin-top: unset;
}

ul#navegacion-horizontal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
ul#navegacion-horizontal li {
	display: inline-block;
}
#navegacion-horizontal a {
	font-size: var(--nav);
	color: var(--blanco);
	margin-left: 50px;
	text-transform: lowercase;
	text-decoration : none;
	border-top: 2px solid transparent;
	padding-top: 5px;
}
#navegacion-horizontal a:hover,
#navegacion-horizontal li.active a {
	border-top: 2px solid var(--rojo);
}

.cabecera-logo {
	margin-top: 64px;
	margin-bottom: 32px;
	text-align: left;
}
#cabecera .cabecera-logo .logo-sidetours .cls-1 {
	fill: var(--blanco);	
}

#iconos-cabecera{	
	position: relative;
}
#iconos-cabecera .icono {
	display:inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px; 
	background-color: var(--rojo);
	border-radius: 44px;
	margin-left: 10px;
}
svg#icono-candado {	
	width: 18px;
}
svg#icono-globo {
	width: 24px;
}
.cabecera-iconos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: end;
}
#cabecera-fija{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 92px;
    background-color: var(--rojo);
    background-image: url(../img/fondo-cabecera-fija.png);
    background-size: 224px auto;
    background-position: 60vw center;
    background-repeat: no-repeat;
    z-index: 9999;
}
#cabecera-fija svg#logo {
	height: 64px;
}
#cabecera-fija .cabecera-logo {
	margin-top: unset;
	margin-bottom: unset;
	text-align: left;
}
#cabecera-fija .cabecera-logo .logo-sidetours .cls-1 {
	fill: var(--blanco);	
}
#cabecera-fija svg#icono-candado .cls-1,
#cabecera-fija svg#icono-globo .cls-1 {	
	fill: var(--rojo);
}
#cabecera-fija #iconos-cabecera .icono {
	background-color: var(--blanco);
}
#cabecera-fija #navegacion-horizontal a,
#cabecera-fija #navegacion-horizontal a:hover {
	color: var(--blanco);
}
#cabecera-fija #navegacion-horizontal a:hover,
#cabecera-fija #navegacion-horizontal li.active a {
	border-top: 2px solid var(--blanco); 
}

#cabecera-fija .cabecera-logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: start;
	height: 92px;
}
#cabecera-movil {
	position: fixed;
	background-color: var(--rojo);
	height: 52px;
	width: 100vw;
	z-index: 999;
}

#cabecera-movil svg#logo {
	height: 32px;
}
svg#icono-candado {	
	width: 14px;
}
svg#icono-globo {
	width: 18px;
}

#fuera-de-lienzo {
	position: absolute;
	top: 52px;
	left: -75vw;
	width: 75vw;
	padding: 32px;
	background-color: var(--rojo);
}

#fuera-de-lienzo a {
	color: var(--blanco);
	text-decoration: none;
	text-transform: lowercase;
}

ul#navegacion-vertical {
	list-style-type: none;
	padding: 0;
	margin: 0;
} 

ul#navegacion-vertical li {
	font-size: var(--nav);
	margin-bottom: 10px;
}
.cabecera-movil-logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 52px;
}
.cabecera-movil-iconos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: end;
}
.cabecera-movil-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: start;
	color: var(--blanco);
}
.cabecera-movil-iconos #iconos-cabecera a {
	margin-left: 5px;
}
.toggle-menu {
	cursor: pointer;
}
.idiomas {
    display: none;
    flex-direction: column;
    font-size: 18px;
    width: 32px;
    justify-content: center;
    position: absolute;
    top: 62px;
    right: 5px;
    text-align: center;
}
#cabecera .idiomas {
	background-color: transparent;
}
#cabecera .idiomas .activo {
	color: var(--blanco);
}
#cabecera .idiomas a {
	color: var(--rojo);
	text-decoration: none;
}
#cabecera-fija .idiomas {
	background-color: var(--rojo);
}
#cabecera-fija .idiomas a {
	color: var(--blanco);
	text-decoration: none;
}
#cabecera-movil .idiomas {
	background-color: var(--rojo);
	top: 36px;
    right: -7px;
}
#cabecera-movil .idiomas a {
	color: var(--blanco);
	text-decoration: none;
	margin-left: 0;
}

/* ELEMENTOS */

.caja-imagen {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	display: block;
}
.caja-imagen::after {
	content: "";
	display: block;
	padding-top: 78%;
}
.caja-imagen-derecha {	
    border-radius: 40% 10% 20% 40%;
}
.caja-imagen-izquierda {	
    border-radius: 10% 40% 40% 20%;
}

h1.titulo-seccion {
	color: var(--grisclaro);
	font-size: var(--h1);
	font-weight: 500;
	text-align: center;
	margin-bottom: 100px;
}

h2.titulo-seccion {
	color: var(--grisclaro);
	font-size: var(--h1);
	font-weight: 500;
	text-align: center;
	margin-bottom: 100px;
}

h1.subtitulo-seccion,
h3.subtitulo-seccion {
	color: var(--grisclaro);
	font-size: var(--h3);
	font-weight: 600;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px
}
.titulo-rojo {
	display: inline-block;
	color: var(--blanco);
	background: var(--rojo);
	padding: 5px;
}
.seccion {
	padding-top: 100px;
	padding-bottom: 100px;
}
.pagina {
	/* padding-bottom: 100px; */
}

.espacio {
	height: 200px;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0000004C; /* 30% */
	z-index: 2;
}

.controles {
	z-index: 4;
}

/* INICIO */

#inicio-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}
.carousel-item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#carousel-cabecera video.img-fluid {
		max-width: unset;
}
	
.fondo-video {
	position: absolute;
	top: 0;
	width: 100%;
}

.carousel-lema {
	position: absolute;
	display: block;
	width: 80vw; 
	top: 50%;
	left: 10vw;
	text-align: center;
}

.carousel-texto {
	position: relative;
	z-index: 3;
}

.carousel-lema .super-rotulo {
	color: var(--blanco);
	font-size: var(--carouselh2);
}
.carousel-lema .super-rotulo .rotulo {
	display: inline-block;
	color: var(--blanco);
	padding: 5px;
	font-weight: 500;
}
.carousel-lema small {
	font-size: var(--carouselsmall);
	color: var(--blanco);
	text-shadow: 2px 2px 10px var(--gris);
}
/*.carousel-lema small:hover {
	font-size: var(--carouselsmall);
	color: var(--azul)
}*/
.carousel-lema small strong {
	text-shadow: 2px 2px 15px var(--negro);
}
#cabecera-movil svg#logo {
	height: 32px;
}

.carousel-boton svg#icono-pabajo {
	width: 32px;
}

.carousel-boton-video-completo  {
	position: absolute; 
	bottom: 32px;
	right: 32px;
	cursor: pointer;
	z-index: 3;
}

.pabajo img {
	width: 92px;
	height: auto;
}
.carousel-boton {
	position: absolute; 
	bottom: 32px;
	width: 92px;
	margin-left: calc(50% - 46px);
	cursor: pointer;
	z-index: 3;
}

#inicio-cifras {
	padding-top: 0;
	padding-bottom: 0;
}
.cifra-circulo {
	font-weight: 700;
	background-color: var(--rojo);
    width: 200px;
    height: 200px;
    border-radius: 100px;
    color: var(--blanco);
    line-height: 58px;
    font-size: 50px;
    margin: auto;
    margin-bottom: 32px;
    padding-top: 50px;
}

.cifra-texto {
	color: var(--blanco);
	font-size: 20px;
	line-height: 1.2em;
	margin-bottom: 32px;
	font-weight: 300;
}

.fondo-oscuro {
	color: var(--blanco) !important;
}

#inicio-siempre,
#inicio-atencion {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	height: 640px;
	position: relative;
}


#inicio-siempre p {
	font-weight: 300;
}


#agencia-de-viajes h1.titulo-seccion {
	font-weight: 500;
}
#inicio-servicios .espacio {
	height: 100px;
} 
#inicio-servicios .icono img {
	max-width: 200px;
}
#inicio-servicios .rotulos {
	font-size: 47px;
	margin-top: 24px;
}

#inicio-servicios.seccion {
	margin-bottom: 100px;
}

#inicio-soluciones h2.titulo-seccion {
	margin-bottom: 100px;
}
#inicio-soluciones.seccion {
	padding-bottom: 0;
}

/* EQUIPO */

#equipo-cabecera {
	height: 640px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.mask {
	background-color: #3d393532;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#equipo-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}

#equipo-carousel  .carousel-indicators button {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--blanco);
	border-radius: 12px;
}
#equipo-carousel  .carousel-indicators button.active {
	background-color: var(--blanco);
}


#equipo-siempre .espacio {
	height: 92px;
}

.equipo-valores-valor {
	background-image: url('../img/sidetours-logo-fondo-gris.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	aspect-ratio: 9 / 4;

}

.equipo-valores-valor h3 {
	font-size: var(--h1);
	color: var(--rojo);
}
.equipo-valores-texto p {
	font-size: 1vw;
	text-align: center;
}

#equipo-dark {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	height: 640px;
	position: relative;
}
#equipo-dark .mask {
	background-color: #00000046;
	z-index: 3;
}
.hero-contenido {
	z-index: 4;
}
.hero-supertitulo {
	color: var(--blanco);
	font-size: var(--h2);
}
.hero-titulo {
	color: var(--blanco);
	font-size: var(--h1);
	font-weight: bold;
}
.hero-subtitulo {
	color: var(--blanco);
	font-size: var(--h3);
	max-width: 768px;
}

#equipo-profesionales {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	height: 640px;
	position: relative;
}
#equipo-profesionales .mask {
	background-color: #00000046;
	z-index: 3;
}

.video-background iframe {
	width: 100vw;
	height: 100vh;
}

/* SERVICIOS */

#servicios-cabecera {
	height: 640px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

#servicios-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}
.carousel-indicators {
	z-index: 10;
}
#servicios-carousel  .carousel-indicators button {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--blanco);
	border-radius: 12px;
}
#servicios-carousel  .carousel-indicators button.active {
	background-color: var(--blanco);
}

#servicios-dmc.seccion {
	padding-bottom: 0;
	margin-bottom: 0;
}

#servicios-iconos.seccion {
	padding-top: 0;
	margin-top: 0;
}

#servicios-iconos h3 {
	font-weight: 300;
	color: #636258;
	margin-top: 10px;
	margin-bottom: 10px;
}

img.icono-servicios {
	max-width: 210px;
}

#servicios-todos {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	height: 640px;
	position: relative;
}
#servicios-todos .mask {
	background-color: #00000046; 
	z-index: 3;
}

#servicios-partners .espacio {
	height: 64px;
}


.logo-partner {
	width: 100%;
	margin-top: 64px;
	margin-bottom: 32px;
}
span.web,
span.telefono {
	display: block;
}
span.web a {
	text-decoration: none;
}
span.telefono a {
	color: var(--negro);
	text-decoration: none;
}

/* TECH */

#tech-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}

#tech-carousel  .carousel-indicators button {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--blanco);
	border-radius: 12px;
}
#tech-carousel  .carousel-indicators button.active {
	background-color: var(--blanco);
}

#tech-soluciones .espacio {
	height: 64px;
}

#tech-soluciones p {
	font-weight: 300;
	margin-bottom: 64px;
}
#tech-soluciones h1 {
	font-weight: 500;
}

#tech-soluciones .caja {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-wrap: wrap;
}
#tech-soluciones .caja-gris {
	background-color: #e9e9e7;
}
#tech-soluciones .caja-derecha {
	border-radius: 10% 40% 40% 20%;
	padding: 64px 104px 64px 52px;
}
#tech-soluciones .caja-izquierda {
	 border-radius: 40% 10% 20% 40%; 
	 padding: 64px 52px 64px 104px;
}

#tech-soluciones .caja h3, 
#tech-soluciones .caja p {
	text-align: center;
	margin-bottom: 48px;
	color: var(--grisclaro);
}
#tech-soluciones .caja h3 {
	font-weight: 500;
	font-size: 35px;
}
#tech-soluciones .caja p {
	font-weight: 300;
	font-size: 25px;
}
#tech-soluciones .caja h3 span {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 48px;
	margin-top: 32px;
	align-items: end;
	height: 48px;
}
#tech-potencial {
	/*font-size: 45px;*/
}
#tech-soluciones .fondo-comillas {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-top: 64px;
	margin-bottom: 32px;
	padding-top: 32px;
	padding-bottom: 32px;
}

#tech-soluciones ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: unset;
	margin: unset;
	list-style-type: none;
}

#tech-soluciones ul li {
	padding: unset;
	margin: unset;
	font-weight: 400;
	font-size: 45px;
	color: var(--grisclaro);
}

#tech-soporte {
	padding-top: 48px;
	padding-bottom: 48px;
	background-color: var(--rojo);
	display: flex;
	align-items: center;
	justify-content: center;
}

#tech-soporte h2 {
	font-size: 66px;
	margin-top: unset;
	margin-bottom: 48px;
}
#tech-soporte p {
	font-weight: 300;
}

#tech-como-funciona {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#tech-como-funciona h2,
#tech-como-funciona p {
	text-align: center;
	font-weight: 300;
}

#tech-como-funciona h2 {
	font-size: 66px;
	color: var(--grisclaro);
	font-weight: 400;
}
.tech-como-funciona {
	margin-top: 64px;
	margin-bottom: 64px;
}
.tech-como-funciona,
.tech-contacta {
	display: flex;
	justify-content: center;
}
.tech-contacta button {
	font-size: 40px;
	font-weight: 500;
	border-radius: 10px;
	padding: 20px 40px;
	margin-top: 64px;
	margin-bottom: 64px;
}
#tech-como-funciona a {
	text-decoration: none;
}

#tech-como-funciona .iconos {
	margin-bottom: 64px;
}

.tech-icono-item h3 {
	font-weight: 300;
	font-size: 32px;
	margin-top: 16px;
	color: var(--grisclaro);
}
/* NOTICIAS */

#noticias-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}

#noticias-carousel  .carousel-indicators button {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--blanco);
	border-radius: 12px;
}
#noticias-carousel  .carousel-indicators button.active {
	background-color: var(--blanco);
}


#noticias a {
	text-decoration: none;
}

#noticias h2,
#noticias h1 {
	font-size: 36px;
	font-weight: 500;
	color: var(--gris);
	margin-bottom: 64px;
} 

#noticias h2 a {
	text-decoration: none;
	color: var(--grisoscuro);
}

#noticias h4  {
	font-size: 25px;
	font-weight: 300;
}
#noticias p {
	font-size: 25px;
	font-weight: 300;
}


.noticia-imagen {
	display: block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	margin-bottom: 64px;
	margin-top: 64px;
}

.noticia-imagen:before {
	content: "";
	display: block;
	padding-top: 30%;
} 

.paginacion a {
	margin-left: 10px;
	margin-right: 10px;
}

#navegacion-noticias {
	margin-top: 64px;
}

#navegacion-noticias .imagen {
	display: block;
	width: 96px;
	min-width: 96px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#navegacion-noticias .anterior .imagen {
	border-radius: 40px 10px 20px 40px;
}

#navegacion-noticias .siguiente .imagen {
	border-radius: 10px 40px 40px 20px;
}


#navegacion-noticias .imagen:before {
	display: block;
	content: "";
	padding-top: 66%;
}

#navegacion-noticias .titulo {
	font-size: 16px;
}

/* OFICINA */

#oficinas {
	padding-bottom: 0;
}

#oficinas-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}
#oficinas-carousel carousel-item {
	height: 100vh;
}
#oficinas-mapa.seccion {
	margin-bottom: 0;
	padding-bottom: 0;
}

#map {
	height: 100vh;
}

#oficinas h1,
#oficinas h2 {
	font-size: 42px;
	font-weight: bold;
	color: var(--grisclaro);
	margin-bottom: 64px;
}
#oficinas h2 {
	margin-bottom: unset;
}

#oficinas h3 {
	font-size: 80px;
	font-weight: 500;
	margin-top: 120px;
}

#oficinas span a {
	font-size:  72px;
	color: var(--rojo);
	font-weight: 500;
	text-decoration: none;
} 
#oficinas span a:hover  {
	font-weight: bold;
}

#oficinas span img {
	margin-left: 16px;
	margin-right: 16px;
}

#oficinas p {
	font-weight: 300;
	margin-bottom: 64px;
}

.alineacion-izquierda {
	justify-content: flex-start;
}

.alineacion-derecha {
	justify-content: flex-end;
}

#oficinas .caja-texto h3 {
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
}

#oficinas .caja-texto p {
	font-weight: 300;
	font-size: 30px;
}
#oficinas .caja-texto a {
	color: var(--negro);
	font-weight: bold;
	text-decoration: none;
}
#oficinas img.pin_ver_en_mapa {
	width: 64px;
	height: 64px;
	position: absolute;
	right: -16px;
	top: -16px;
}
#oficinas .caja-imagen-derecha {
	border-top-right-radius: 0;
	position: relative;
}
#oficinas-listado .pais {
	text-align: center;
}
#oficinas-listado h2 {
	font-size: 64px;
	margin-bottom: 64px;
	text-transform: uppercase;
	color: var(--rojo);
}

#navegacion-horizontal.oficinas a {
	color: var(--rojo);
}
.oficinas #navegacion-horizontal a:hover,
.oficinas #navegacion-horizontal li.active a {
	border-top: 2px solid var(--rojo);
}

#cabecera .cabecera-logo.oficinas .logo-sidetours .cls-1 {
	fill: var(--rojo);	
}


.gm-style-iw {
	border-radius: 10px 70px 70px 50px !important;
    padding: 32px 90px 32px 32px !important;
}

.caja-pin-sidetour .sucursal-contenido {
	font-weight: 300;
	font-size: 14px;
	text-align: right;
}
.caja-pin-sidetour p {
	margin: unset !important;
	color: var(--rojo);
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 500;
}

.gm-style-iw-d {
	overflow: visible !important;
}

.ver_en_mapa {
	cursor: pointer;	
} 

/* CONTACTAR */


#contactar-carousel .carousel-item .item-wrap {
	height: 100vh;
	position: relative;
	text-align: center;
}

#contactar-carousel  .carousel-indicators button {
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: 2px solid var(--blanco);
	border-radius: 12px;
	z-index: 3;
}
#contactar-carousel  .carousel-indicators button.active {
	background-color: var(--blanco);
}

#contacto-formulario {
	margin-bottom: 64px;
}

#contacto-formulario label {
	text-transform: uppercase;
	font-size: 30px;
	color: var(--grisclaro);
	margin-top: 25px;
	margin-bottom: 25px;
	font-weight: 300;
}

#contacto-formulario label.form-check-label {
	font-size: 17px;
}
#contacto-formulario input,
#contacto-formulario select,
#contacto-formulario textarea {
	border: 1px solid var(--grisclaro);
	border-radius: 0 20px 20px 20px;
}

#contacto-formulario textarea {
	height: 350px;
	resize: none;
}

#contacto-formulario .help-block.with-errors {
	color: var(--rojo);
	font-size: 16px;
}

#contacto-formulario label.form-check-label {
	text-transform: unset;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 18px;
}
#contacto-formulario label.form-check-label a {
	color: var(--grisclaro);
	text-decoration: none;
}
#contacto-formulario input#legal {
	width: 32px;
	height: 32px;
	border-radius: unset;
	margin-right: 16px;
	margin-top: 16px;
	margin-bottom: 16px;
}
#contacto-formulario small {
	font-size: 12px;
	font-weight: 300;
	color: var(--blancoroto);
}


/* TRABAJA CON NOSOTROS */

#tcn-formulario {
	margin-bottom: 64px;
}

#tcn-formulario label {
	text-transform: uppercase;
	font-size: 30px;
	color: var(--griscolor);
	margin-top: 25px;
	margin-bottom: 25px;
	font-weight: 300;
}

#tcn-formulario label.form-check-label {
	font-size: 17px;
}
#tcn-formulario input,
#tcn-formulario select,
#tcn-formulario textarea {
	border: 1px solid var(--grisclaro);
	border-radius: 0 20px 20px 20px;
}

#tcn-formulario textarea {
	height: 350px;
	resize: none;
}

#tcn-formulario .help-block.with-errors {
	color: var(--rojo);
	font-size: 16px;
}

#tcn-formulario button {
	width: unset;
}

/* PÁGINA LEGAL */

.pagina-legal h1 {
	text-align: center;
	color: var(--grisoscuro);
	margin-bottom: 64px;
	margin-top:64px;
}

/* VIDEO */

#cabecera.espacio-rojo {
	background-color: var(--gris);
	height: 120px;
}
#video-completo {
		background-color: var(--gris);
}

.video-completo-caja video {
		max-height: 75vh;
}


