:root {
	--color-web: #b58d6b; 
	--color-web2: #1a73a3d4;
	--color-menu: #b58d6b; 
	--altoCabecera: 91vh;
	--altoCabeceraMovil :95vh;
	
  --BottomOffset: 2px;
  --LineHeight: 3px;
  --LineColor: #937053;
	
}

@font-face {
    font-family: 'Raleway Regular';
    src: url('../fonts/Raleway-Regular.ttf');
}


body{
	font-family: 'Raleway Regular', sans-serif;
}

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

.color-negro{
	color: black !important;
}

.btn-personalizado {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-web);
    --bs-btn-border-color: var(--color-web);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #856346;
    --bs-btn-hover-border-color: #856346;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #856346;
    --bs-btn-active-border-color: #856346;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-web);
    --bs-btn-disabled-border-color: var(--color-web);
}

.list-group{
	list-style:none;	
}

.filaFormulario{
	display: flex;
}

.borde-formulario{
    padding: 20px;
}	

#emailToast{
	position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2000;
}

@media (max-width: 717px) {
	#emailToast{
		width: 50%;
	}
}

#logoCabecera-completo {
    position: absolute;
    z-index: 1022;
    background: url(../images/logos/logo-tematiza-3.png);
    background-size: cover;
    width: 340px;
    height: 200px;
    left: calc(50% - 170px);
    top: 10%;
    filter: invert(1) brightness(150%);
}

#logoCabecera-menu{	
	background: url(../images/logos/logo-tematiza-9.png);
	background-size: cover;
   position: absolute;
   top: 10px;
}

.logoCabecera-menu-despues{
	width: 200px;
	height: 60px;
}

@media (min-width: 992px) and (max-width: 1399px) {
	#logoCabecera-menu{	
		background: url(../images/logos/logo-tematiza-17.png);
		background-size: cover;
		top: 15px;
	}
	.logoCabecera-menu-despues {
		width: 55px;
		height: 55px;
	}
}

@media (max-width: 991px) {
	.primer-item-menu{
		border-top: 1px solid #b7a691;
	}
	#logoCabecera-completo {
		top: 5%;
	}
	#logoCabecera-menu{	
		position: absolute;
		left: 0;
		top: -5px;	
	}
}

@media (max-width: 768px) {
	#logoCabecera-completo {
		width: 270px;
		height: 160px;
		left: calc(50% - 135px);
	}
}

.carousel-caption{
	background-color: #ffffff6e;
    width: 100%;
    right: 0;
    left: 0;
    color: #000000;
    bottom: 5rem;
	font-family: system-ui;
	font-family: 'Raleway Regular';
}

.flecha-carrusel{
	cursor: pointer;
}

.flecha-carrusel:hover{
	color: #976e4a;
}

#navbar{
    background: rgba(0, 0, 0, 0.5) url(../images/fondo-nav.webp);
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    font-weight: bold;
	color: black !important;
}

.nav-link.active {
	color: #4c3c2e !important;
}

.nav-link {
	color: #8d4910;
	position: relative;
	z-index: 1;
}

.nav-link:hover, .nav-link.active:hover, #menu-desplegable:hover {
	color: #8d4910 !important;
	font-weight: bold;
}

.navbar-toggler{
    background-color: var(--color-web);
	background-color: #7e550042;
	background-color: #b58d6b80;

}

.nav-link:focus{
	color: black;
}

.colorMenu{
	background-color: white;
	box-shadow: 1px 1px 10px 0px rgb(155 120 74);
}

#ulDropDownMenu{
	border-radius: 0;
	border: none;
	border: 1px solid var(--color-web);
}

.dropdown-item{
	color: #8d4910;
	position: relative;
	z-index: 1;
}

.dropdown-item:hover{
	color: #8d4910 !important;
	font-weight: bold;
	background: none;
}

.menuCentrado{
	flex-grow: 0;
	margin: 0 auto;
}

.div-menu-con-fondo{
	background-color: white;
}

.menugrande{
	min-height: 90px;
}

@media (max-width: 992px) {
	.menugrande{
		min-height: 40px;
    }
}	

@media (min-width: 992px) {
	
	.nav-link::before, .nav-link.active::before, #menu-desplegable::before {
		position: absolute;
		content: '';
		display: block;
		z-index: -1;
		background: var(--LineColor);
		width: 0;
		height: var(--LineHeight);
		bottom: var(--BottomOffset);
		border-radius:var(--LineHeight);
		left: 50%;
		transition: 0.4s cubic-bezier(0.25, 0.1, 0, 2.02);
	}

	.nav-link:hover::before, .nav-link.active:hover::before, #menu-desplegable:hover::before {
		width: calc(100% + var(--LineHeight));
		left: calc(var(--LineHeight) / -2);
	}
	
	.dropdown-item::before, .dropdown-item.active::before {
		position: absolute;
		content: '';
		display: block;
		z-index: -1;
		background: var(--LineColor);
		width: 0;
		height: 2px;
		bottom: 5px;
		border-radius:2px;
		left: 50%;
		transition: 0.4s cubic-bezier(0.25, 0.1, 0, 1.02);
	}

	.dropdown-item:hover::before, .dropdown-item.active:hover::before{
		width: calc(80% + 2px);
		left: 5px ;
	}
}

a.scroll-top {
	color: #fff;
    display: none;
    width: 30px;
    height: 30px;
    position: fixed;
    z-index: 1000;
    bottom: 30px;
    right: 20px;
    font-size: 20px;
	background: #000000;
    border-radius: 50% !important;
    text-align: center;
    border: 1px solid hsla(0, 0%, 78%, 0.3);
    padding: 20px;
}

a.scroll-top i {
	position: relative;
	left: -8px;
    top: -15px;
}

a.scroll-top:hover {
	background: var(--color-web);
}

.letraBlanca{
	color: white;
}

.letraCourier{
	font-family: courier;
}

.img-materiales{
	height: 30vh;
	width: 100%;
}

 @media (max-width: 762px) {
	.img-materiales{
		height: 10vh;
	}
}


@media (min-width: 763px) and (max-width: 992px) {
	.img-materiales{
		height: 20vh;
	}
}

#cabecera{
	background-color: black;
}

@media (max-width: 768px) {
  .filaFormulario{
	  display: block;
  }
  .div-menu-footer {
		width: 100% !important;
		float: none !important;
		text-align: center;
	}
}

@media (min-width: 769px) {
  .logo-footer {
		margin-left: calc(50% - 100px) !important;
	}
	.div-menu-footer ul {
		margin-left: calc(50% - 100px) !important;
	}
}
@media (min-width: 992px) {

  .dropdown:hover .dropdown-menu {
		display: block;
	}
}

@media (max-width: 992px) {
	#gestionar-cookies {
		width: 90% !important;
	}
	#btnGestionarCookies,#btnAceptarCookies, .spanCookies, .learn-more{
		font-size: 12px;
		margin-bottom: 12px;
	}
	.botonesAvisoCookies{
		position: absolute;
		right: 10px;
		top: 60px;
	}
	#politica-de-cookies, #gestionar-cookies, #texto-copyright, #btnPoliticaCookiesFooter, #btnPoliticaPrivacidadFooter, #btnAvisoLegalFooter, #politica-de-privacidad, #aviso-legal{
		font-size: 12px;
	}
	
	#div-img-servicio-1, #div-img-servicio-2, #div-img-servicio-3, #div-img-servicio-4, #div-img-servicio-5{
		height:60%;
	}
	.row-servicios div h2{
		margin-top: 0px !important;
	}
	
	.row-servicios {
		height: 70vh !important;
	}

}

section#cabecera{
	height:  var(--altoCabecera);
	background-color: white;
}

section#idea {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: white;
  color: #854a17;
}

#texto-idea{
	font-size: 1.5rem;
}

section#sliderTransicion {
    overflow: hidden;
}

section#sliderTransicion h2, section#sliderTransicion1 h2{
   padding-top:22vh;
}

#fondo-parallax2 {
    background: rgba(0, 0, 0, 0.5) url(../images/sobre-nosotros/escultura-tematizada.jpg);
    position: relative;
    background-size: cover;
	background-position: center;
    overflow: hidden;
}

#fondo-parallax2:after {
    content: '';
	width: 110%;
	height: 100%;
	background-position: inherit;
	background-image: inherit;
	background-size: inherit;
	background-attachment: inherit;
	background-repeat: inherit;
	position: fixed;
	top: 0;
	z-index: -1;
	filter: brightness(40%);
}

section#sliderTransicion1 {
  overflow: hidden;
  min-height: 60vh;
}

#fondo-parallax {
	background: rgba(0, 0, 0, 0.5) url(../images/inicio/escultura-escudos.jpg);
    position: relative;
    background-size: cover;
	background-position: center;
    overflow: hidden;
}

#fondo-parallax:after {
    content: '';
	width: 100%;
	height: 100%;
	background-position: inherit;
	background-image: inherit;
	background-size: inherit;
	background-attachment: inherit;
	background-repeat: inherit;
	position: fixed;
	top: 0;
	z-index: -1;
	filter: brightness(40%);
}

section#sliderTransicion a{
   margin-bottom: 15vh;
}    

.carousel-item {
    position: initial;
	height: 100%;
}

.carousel-item img{
        object-fit: cover;
    height: 100%;
	filter: brightness(80%);
}

.carousel-inner {
	height:  var(--altoCabecera);
}

@media (max-width: 769px) {
	.carousel-inner {
		height:  var(--altoCabeceraMovil);
	}
}

section#nosotros {
  overflow: hidden;
}

.div-form-formulario{
    padding-top: 1em;
    padding-bottom: 1em;
}

.div-form-formulario-contacto{
	background-color: #f5ece5;
    padding-top: 1em;
    padding-bottom: 1em;
}

section#servicios {
  padding-bottom: 3rem;
  background-color: white;
  overflow-x: hidden;
  
}
.row-servicios{
	height: 50vh;
	background-color: #f5ece5;
	overflow:hidden;
}

.row-servicios div h2{
	margin-top: 20%;
}

#div-img-servicio-1{
	background: url("../images/inicio/tematizacion.jpg");
}

#div-img-servicio-2{
	background: url("../images/inicio/tematizacion-modular.jpg");
}
#div-img-servicio-3{
	background: url("../images/inicio/escultura.jpg");
}

#div-img-servicio-4{
	background: url("../images/inicio/restauracion.jpg");
}

#div-img-servicio-5{
	background: url("../images/inicio/revestimiento.webp");
}

#div-img-servicio-1, #div-img-servicio-2, #div-img-servicio-3, #div-img-servicio-4, #div-img-servicio-5{
	background-size: cover;
    background-position: center;
}

section#galeria {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: white;
  overflow-x: hidden;
}

section#contacto {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--color-web2);
}

section#formulario {
	overflow: hidden;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: #f5ece5;
}

section#formulario-contacto {
	overflow: hidden;
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: white;
}

.row-nosotros{
	background-color: white;
	padding-bottom: 3em;
    padding-top: 3em;
}

.row-nosotros2{
	background-color: #ffffffad;
}

.div-img-proyect{
	position: absolute;
    bottom: 0;
    left: 0;
    height: 20%;
	background-color: #ffffffbf;
    color: white;
	width:100%;
	display: flex;
	align-items: center;
}

.div-img-proyect h2{
	margin: 0 auto;
	color: var(--color-web);
}

@media (max-width: 991px) {
	#div-img-proyectos2, #div-img-proyectos4{
		margin-top: 3rem!important;
	}
}

.container-nosotros{
	padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
	max-width: fit-content;
}

.row-nosotros div h2{
	margin-top: 15%;
}

#div-texto-nosotros{
	text-align: justify;
    width: 80%;
    margin: 0 auto;
}

.col-nosotros{
	height: 50vh;
}

.separador-nosotros{
	width: 70%;
    margin: 0 auto;
	margin-top: 20px;
	border-bottom: 1px solid var(--color-web);
}

#div-img-nosotros{
	background: url("../images/sobre-nosotros/escultura-guerrero.jpg");
	background-size: cover;
}

#resumen-sobre-nosotros{
	background-color: white;
}

#resumen-sobre-nosotros div{
	background-color: white;
    padding-top: 4em;
    padding-bottom: 4em;
}

#row-en-blanco{
	height: 3rem;
	background-color: white;
}

#row-en-blanco-g{
	height: 5rem;
	background-color: white;
}

.frase-proyectos{
	position: relative;
	z-index: 1;
}

section#proyectos {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: white;
  overflow: hidden;
}

.col-proyectos{
	height: 40vh;
}

.card-proyectos img{
	width:100%;
	transition:0.5s;
}

.card-proyectos{
  transition:0.5s;
  cursor:pointer;
}

.card-proyectos img:hover {
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
	filter: saturate(150%);
}
.card-proyectos {
	overflow:hidden;
	border-radius: 0px;
	height: 40vh;
}

@media (max-width: 769px) {
	.card-proyectos {
		height: auto;
		max-height: 50vh;
	}
}

#div-img-proyectos1{
	background: url("../images/proyectos/modulares.jpg");
	background-size: cover;
    background-position: center;
}

#div-img-proyectos2{
	background: url("../images/proyectos/tematizacion.jpg");
	background-size: cover;
    background-position: center;
}

#div-img-proyectos3{
	background: url("../images/proyectos/esculturas.jpg");
	background-size: cover;
    background-position: center;
}

#div-img-proyectos4{
	background: url("../images/proyectos/restauracion.jpg");
	background-size: cover;
    background-position: center;
}

#div-img-proyectos5{
	background: url("../images/proyectos/revestimiento.jpg");
	background-size: cover;
    background-position: center;
}

#div-img-proyectos1:hover,#div-img-proyectos2:hover,#div-img-proyectos3:hover,#div-img-proyectos4:hover,#div-img-proyectos5:hover {
	filter: saturate(150%);
}

#div-img-proyectos1:hover > div > h2,#div-img-proyectos2:hover > div > h2,#div-img-proyectos3:hover > div > h2,#div-img-proyectos4:hover > div > h2,#div-img-proyectos5:hover > div > h2 {
    color: black !important;
}

#row-fondo-proyectos{
	position: relative;
    overflow: hidden;
	background-color: #f5ece5;
    z-index: 1;
}

#row-fondo-materiales{
	position: relative;
    overflow: hidden;
	background-color: white;
    z-index: 1;
}

.icono-proyecto{
	color: #b58d6b;
	font-size: 4em;
}

.h4-proyecto{
	font-size: x-large;
	color: #5f5e5e;
}

#texto-proyectos, .sec-proyectos{
	position: relative;
    z-index: 1;
	background-color: white;
}

 @media (max-width: 762px) {
	.icono-proyecto{
		font-size: 2em;
	}
	.h4-proyecto{
		font-size: small;
	}
	#texto-proyectos h5{
		font-size: medium;
	}
}

@media (min-width: 763px) and (max-width: 992px) {
	.icono-proyecto{
		font-size: 3em;
	}
	.h4-proyecto{
		font-size: larger;
	}
}

footer{
	background: linear-gradient(to bottom, rgb(255 255 255), rgb(215 180 150 / 85%)), url(../images/fondo-footer.jpg);
    background-size: cover;
}

#contenedor-menu-footer{
	font-size: 12px;
	width: 100%;
	clear: both;
}

.div-menu-footer{
	padding: 2em;
	width: 50%;
}

.div-logo-footer{
    padding-bottom: 2em;
}

.div-menu-footer p, .div-menu-footer ul{
	color: black;
}

@media (min-width: 769px) {
  #info-footer{
	position: relative;
    bottom: -50px;
  }
}

#texto-copyright {
    clear: both;
    font-family: 'Raleway Regular';
    font-size: 12px;
	background-color: var(--color-web);
}

#enlaces-legales{
	background-color: white;
}

.links-del-footer{
	color: #8f4609;
	text-decoration: none;
}	

.links-del-footer:hover{
	text-decoration: none;
}

#btnPoliticaCookiesFooter,#btnPoliticaPrivacidadFooter, #btnAvisoLegalFooter{
	text-decoration: none;
	color: #6a4d33;
}	

#btnPoliticaCookiesFooter:hover, #btnPoliticaPrivacidadFooter:hover, #btnAvisoLegalFooter:hover {
    color: var(--color-web);
	font-weight: bold;
}

.logo-footer{
    width: 200px;
	filter: opacity(0.8) !important;
}

.learn-more {
  text-decoration: none;
  color: var(--color-web);
  margin-top: 8px;
}

.learn-more:hover {
  text-decoration: none;
  color: #6f4f34;
  margin-top: 8px;
}

#cookies{
	display: none;
	position: fixed;
    bottom: 0;
    z-index: 1022;
	width: 100%;
}

#btnGestionarCookies{
	--bs-btn-border-width: 2px;
}

#fondo-cookies{
	display:none;
	background: rgba(0,0,0,.5);
	position: fixed;
	z-index: 1021;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;	
}

#gestionar-cookies{
	display:none;
	position: fixed;
	z-index: 1023;
	width: 60%;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#politica-de-cookies, #politica-de-privacidad, #aviso-legal{
	display:none;
	background: white;
	position: fixed;
	z-index: 1024;
	width: 95%;
	height: 95%;
	top: 0;
	left: 0;
	overflow: scroll;
    padding: 3em;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	border-radius: 0.375rem;
}

#cookies.activo,#fondo-cookies.activo,
#gestionar-cookies.activo, #politica-de-cookies.activo, #politica-de-privacidad.activo, #aviso-legal.activo{
	display:block;
}

.parrafo-gestion-cookies{
	clear:both;
	width: 90%;
}

.checkCookies{
	width: 3em;
	height: 1.5em;
}

.div-gestion-cookies{
	border-bottom: 1px solid #ced4da;
}

section#indicadores {
	overflow: hidden;
	padding-bottom: 3em;
    padding-top: 2em;
	background-color: white;
}

section#indicadores h2{
	padding-bottom: 3em;
}

.circulo-indicador{
	width:200px;
	height: 200px;
	margin: auto;
	border-radius: 50%;
	overflow: hidden;
}

.circulo-tiempo{
	transform: rotate(115deg);
}

.circulo-obras{
	transform: rotate(135deg);
}

.cont1{
	height:100px;
	width:200px;
	background-color: #b58d6b66;
}

.cont2{
	height:100px;
	width:200px;
	background-color: var(--color-web);
}

.circulo-centro{
	width:150px;
	height: 150px;
	background-color: white;
	margin: auto;
	border-radius: 50%;
	margin: auto;
	position: relative;
	margin: -175px auto 50px;
}

.rectangulo{
	width:200px;
	height: 100px;
	background-color: white;
	margin: auto;
	position: relative;
	margin: -125px auto 50px;
}

.texto-circulo{
	position: relative;
	margin: -125px auto 50px;
}

.texto-circulo-centro{
	font-size: xx-large;
    font-weight: bold;
    padding-top: 30px;
}
   

@media (max-width: 769px) {
	.circulo-indicador{
		width:100px;
		height: 100px;
	}
	.cont1{
		height:50px;
		width:100px;
	}

	.cont2{
		height:50px;
		width:100px;
	}

	.circulo-centro{
		width:75px;
		height: 75px;
		margin: -85px auto 30px;
	}

	.rectangulo{
		width:100px;
		height: 50px;
		margin: -65px auto 25px;
	}

	.texto-circulo{
		margin: -65px auto 50px;
	}

	.texto-circulo-centro{
		font-size: larger;
		padding-top: 15px;
	}
}  

#breadcrumb-pryectos{
		margin-top: 2em;
	}

#breadcrumb-pryectos p a{
	color: var(--color-web);
}

#breadcrumb-pryectos p a:hover {
    color: #5f95db;
}

@media (max-width: 992px) {
	#breadcrumb-pryectos p{
		font-size: small;
	}
	
}

.card-modulares img{
	width:100%;
	transition:0.5s;
}
.div-col-modulares{
	padding:1em;
}
.card-modulares{
  transition:0.5s;
  cursor:pointer;
}

.card-modulares img:hover {
	-webkit-transform:scale(1.3);
	transform:scale(1.3);
	filter: saturate(150%);
}
.card-modulares {
	overflow:hidden;
	border-radius: 0px;
	height: 33vh;
}

@media (max-width: 769px) {
	.card-modulares {
		height: auto;
		max-height: 50vh;
	}
}

.fondo-parallax{
      content: '';
    position: fixed;
    z-index: -1;
    display: block;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.5) url(../images/esculturas-setas.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-blend-mode: darken;
    min-height: 40vh;
}

section#cabecera-titulos{
    padding-top: 2em;
    padding-bottom: 2em;
	background-color: white;
}

section#cabecera-titulos h1 {
    margin-bottom: -30px;
    position: relative;
    z-index: 5;
	color: #ffffff;
	text-align: center;
	font-size: 1.2rem;
	filter: drop-shadow(2px 4px 6px #3c1c00);
}

.encabezado-parte1 {
  width: 80%;
  height: 45px;
  display: block;
  position: absolute;
  z-index: 2;
}

.encabezado-parte1::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 120%;
  height: 35px;
  background: var(--color-web);
  transform: skew(40deg);
}

.encabezado-parte2 {
  background: rgb(215 180 150);
  width: 35%;
  margin-top: 10px;
  right: 0px;
  height: 45px;
  display: block;
  position: absolute;
  z-index: 1;
}

.encabezado-parte2::before {
  content: "";
  position: absolute;
  left: -32px;
  width: 65px;
  height: 45px;
  background: rgb(215 180 150);
  transform: skew(40deg);
}

@media (max-width: 1028px) {
	section#cabecera-titulos h1 {
    margin-bottom: -30px;
	font-size: 1.2rem;
  }
}
  
.containerAD {
	position: relative;
	border: 2px solid white;
	margin: 0 auto;
	width: 50vw;
	height: 45vh;
}
 .containerAD .img {
	 position: absolute;
	 z-index: 0;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: 50vw 100%;
}
 .containerAD .background-img {
	 background-image: url(../images/proyectos/proyecto-despues.jpg);
}
 .containerAD .foreground-img {
	 background-image: url(../images/proyectos/proyecto-antes.jpg);
	 filter: brightness(0.8);
	 width: 20%;
}

@keyframes .foreground-img {
  0% {width: 0%; }
  50% {width: 80%; }
  100% {width: 50%; }
}

@-webkit-keyframes .foreground-img {
  0% {width: 0%; }
  50% {width: 80%; }
  100% {width: 50%; }
}

.slider {
	 position: absolute;
	 z-index: 0;
	 -webkit-appearance: none;
	 appearance: none;
	 width: 100%;
	 background: rgb(242 242 242 / 0%);
	 outline: none;
	 margin: 0;
	 transition: all 0.2s;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}

 .slider::-webkit-slider-thumb {
	 -webkit-appearance: none;
	 appearance: none;
	 width: 6px;
	 height: 45vh;
	 background-color: #ffffffcf;
	 cursor: pointer;
}

.slider-button {
	 pointer-events: none;
	 position: absolute;
	 border-radius: 50%;
	 background-color: white;
	 left: calc(20% - 31px);
	 top: calc(50% - 18px);
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 
	 background: url(../images/flechas-separador.png) no-repeat scroll 0 center transparent;
	height: 100%;
    top: 0;
    width: 64px;
}

 @media (max-width: 762px) {
	.containerAD {
		width: 100vw;
		height: 35vh;
	}
	.containerAD .img {
		background-size: 100vw 100%;
	}
	.slider::-webkit-slider-thumb {
		height: 35vh;
	}
}

@media (min-width: 763px) and (max-width: 992px) {
	.containerAD {
		width: 80vw;
		height: 40vh;
	}
	.containerAD .img {
		 background-size: 80vw 100%;
	}
	.slider::-webkit-slider-thumb {
		height: 40vh;
	}
}

@media (min-width: 993px) and (max-width: 1399px) {
	.containerAD {
		width: 70vw;
		height: 40vh;
	}
	.containerAD .img {
		 background-size: 70vw 100%;
	}
}

#btnCerrarPoliticaCookies, #btnCerrarPoliticaCookies2, #btnCerrarAvisoLegal, #btnCerrarAvisoLegal2, #btnCerrarPoliticaPrivacidad, #btnCerrarPoliticaPrivacidad2{
	background-color: var(--color-web);
    border-color: var(--color-web);
}

#btnCerrarPoliticaCookies:hover, #btnCerrarPoliticaCookies2:hover, #btnCerrarAvisoLegal:hover, #btnCerrarAvisoLegal2:hover, #btnCerrarPoliticaPrivacidad:hover, #btnCerrarPoliticaPrivacidad2:hover{
	background-color: #6f4f34;
    border-color: #6f4f34;
}
