* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

p{
  margin-bottom: 0!important;
  line-height: 2.5;
}

html {
  scroll-behavior: smooth;
}

.fondo {
  background-color: #DDDDDD;
}

#intro {
  background-attachment: fixed;
  background-image: url("../img/intro.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.lineas {
  fill: #545454;
  color: #545454;
}

/* header */

#hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}



video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #1e2c1f;
  opacity: 0.4;
}

.cabecera {
  display: flex;
  flex-direction: column;
  place-items: center;
  position: relative;
  z-index: 10;
}

.container-fluid.menu{
  background-color: rgba(0, 0, 0, 0.3);
}


/* Secciones */

.nav-link {
  padding-left: 2em !important;
  padding-right: 2em !important;
}

.lengueta {
  background-color: #667459;
}

.grupo2 {
  background-color: #667459;
}

.grupo-iconos {
  padding: 30px;
  position: relative;
}


h1{
  margin-bottom: 0px;
}

.grupo-iconos>img {
  width: 100px;
  height: 100px;
}

.titulo,
.titulo3 {
  position: relative;
  color: #DDDDDD;
  z-index: 3;
  padding-top: 20px;
  font-weight: 900;
}

.titulo2{
  position: relative;
  color: #212529;
  z-index: 3;
  padding-top: 30px;
  font-weight: bold;
}


.texto {
  margin-top: 30px;
  margin-bottom: 30px;
}

.centered-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 20vh;
  width: 100%;
}


.content a {
  text-decoration: none;
}

.btn, .btn1{
  position: relative;
  display: block;
  height: 70px;
  border-radius: 4px;
  text-transform: uppercase;
  background-color: #545454;
  color: #fff;
  font-size: 18px;
  overflow: hidden;
  transition: all 500ms ease;
  border: 2px solid #D6D692;
  margin-bottom: 40px;
  z-index: 0;
  font-weight: 700;
  cursor: pointer;
}

.btn{
  width: 300px;
}

.btn1{
  width: 100%;
}

.btn--1::before, .btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: #D6D692;
  transition: all 500ms ease;
  z-index: -1;
}



.btn--1::before {
  width: 0;
  height: 100%;
}

.btn--1:hover {
  color: #434343;
}

.btn--1:hover::before {
  width: 100%;
}

/*Tipologías*/
.boton1{
  background-color: #667459;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boton1 a{
  text-decoration: none;
  color: #fff;
}

.boton1 a:hover{
  cursor: pointer;
}

.boton2{
  background-color: #D6D692;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boton2 a{
  text-decoration: none;
  color: #545454;
}

.boton2 a:hover{
  cursor: pointer;
}

.boton3{
  background-color: #545454;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boton3 a{
  text-decoration: none;
  color: #dddddd;
}

.boton3 a:hover{
  cursor: pointer;
}

.row1{
  --bs-gutter-x: 0;
  z-index: 5;
}

.img-dark{
  position: absolute;
  left: 50%;
}




/*Galería de imagenes*/

.image {
  display: block;
  width: 100%;
  height: 100%;
}

.img-container {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(255, 255, 255, 0.9);
}

.caption {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.thumbnail:hover {
  transform: translateY(-4px);
  transform: scale(100%, 100%);
  cursor: pointer;
}

.img-container:hover .overlay {
  opacity: 1;
}


/*Formulario*/
.cloudy-container{
  background-color: #667459!important;
}

.cloudy-container label{
  display: block;
  margin-top: 1.5rem;
  color: #DDDDDD;
  font-size: 20px;
}



.cloudy-container form {
  margin: auto;
  display: inline-flex;
}

.cloudy-container input, textarea {
  height: 40px!important;
  background: #DDDDDD!important;
  border: 2px solid #D6D692!important;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 15px!important;
}

.cloudy-container textarea {
  height: 200px!important;
}

.cloudy-container button{
  width: 100%;
  background-color: #545454!important;
  transition: all 500ms ease;
}

.cloudy-container button:hover{
  border: 2px solid #D6D692;
}


#contacto{
  position: relative;
  background-image: url("../img/fondo-contacto.jpg");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.form-capa{
  z-index: 2;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* footer */

.footer {
  background-color: #545454;
}

.logo-footer {
  left: 50%;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

hr {
  background: #DDDDDD;
  height: 2px;
}

.datos {
  color: #DDDDDD;
  border: 2px #DDDDDD;
}

.datos p span a {
  color: #DDDDDD;
  text-decoration: none;
}

.smi a {
  color: #DDDDDD;
}

.redes {
  display: grid;
  place-items: center;
}

/*boton de whatsapp*/
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 60px;
  bottom: 60px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  animation-name: animWP;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #fff;
}

@keyframes animWP {
  0% {
    transform: scale(1, 1) rotate(0deg);
  }

  50% {
    transform: scale(0.85, 0.85) rotate(5deg);
  }
}

/*boton subir*/
#subir_arriba {
  width: 4rem;
  height: 4rem;
  background: rgba(187, 187, 187, .5);
  color: #FFF;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: fixed;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  display: none;
}