@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
}
a{
  text-decoration: none;
}
.hero {
  background-image:  linear-gradient(to top, #617b7ba7 0%, #3308676d 100%), url('DSC_0733.JPG');
  width: 100%;
  height: 650px;
  background-repeat: no-repeat;
  block-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.textos-hero {
  height: 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}



.botones {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.caja {
  background-color: orange;
  color: white;
  text-align: center;
}

.textos-hero h1 {
  font-size: 60px;
}

.textos-hero p {
  font-size: 25px;
  margin-bottom: 20px;
}
.redonda {
  border-radius: 50%;
  width: 150px;
  
}

.textos-hero a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 15px;
  background: #ed9529;
  border-radius: 8px;
  color: #fff;
}



.svg-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Estilos generales */

.contenedor,
.wave-contenedor {
  width: 90%;
  max-width: 1000px;
  overflow: hidden;
  margin: auto;
  padding: 0 0 80px 0;
}

.contenedor {
  padding: 80px 0;
}

.titulo {
  font-weight: 300;
  font-size: 35px;
  text-align: center;
  margin-bottom: 30px;

}

.titulo.left {
  text-align: left;
}

.titulo.right {
  text-align: right;
}

/*section*/

.website {
  display: flex;
  justify-content: space-between;
}

.website img {
  width: 48%;

}

.website .contenedor-textos-main {
  
  width: 100%;
  padding: 20px;
  
  
}

.parrafo {
  text-align: justify;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  text-decoration: none;
  background-color: blue;
  padding: 12px 15px;
  border-radius: 8px;
  color: white;
}

.cto {
  display: block;
  text-decoration: none;
 
 
  border-radius: 8px;
  color: wheat;
}

.info {
  background: #0f4911da;
  color: white;

  display: flex;
  justify-content: space-between;
}

.info img {
  width: 58%;

}

.info .contenedor-textos-main {
  width: 40%;
  padding: 20px;
  display: block;
}

.content-cards {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.card {
  width: 30%;
  text-align: center;
  height: 300px;
  box-shadow: 0 0 3px rgb(0,0,0,.5 );
  transform: scale(1);
  transition: transform 0.6s;
}

.card:hover {
  box-shadow: 0 0 6px 0 rgba(0,0,0,.6);
  transform: scale(1.03);
  cursor: pointer;
}

.card i {
  margin: 30px 0 20px 0;
  color: #ed9529;
  font-style: 50px;
}

.card p {
  font-weight: 300;
  font-style: 25px;
  margin-bottom: 10px;
}

/* galeria */

.galeria {
  background: #f2f2f2;
}

.galeria-cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  overflow: hidden;
}

.galeria-cont>img {
  width: 30%;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 0 3px 0 rgba(0,0,0,.5);
  cursor: pointer;
  overflow: hidden;
  
}

/* info2*/

.last-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  width: 100%;
  

}
.info img {
  width: 98%;
}
.last-section img {
  width: 40%;
  border-radius: 10px;
}

.last-section .contenedor-textos-main {
  width: 40%;
}
/* footer */

footer {
  background: #08f;
  color: white
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.input {
  background: transparent;
  border: 0;
  outline: none;
  color: white;
  border: 1px solid white;
  padding: 20px 10px;

}
.input::placeholder {
  color: white;
  font-family: 'raleway', 'sans-serif';
}

input[type="text"],
input[type="email"] {
  display: inline-block;
  width: 49%;
  margin-bottom: 15px;
}
input[type="submit"] {
  width: 120px;
  text-align: center;
  padding: 14px 0;
}

.form textarea {
  width:100%;
  margin-bottom: 15px;
}

input[type="submit"]:hover{
  cursor: pointer;
  color: blue;
  background: white;
}

@media screen and (max-width:800px) {
  .textos-hero h1 {
    text-align: center;
    font-size: 50px;
  }
  .titulo {
    font-size: 35px;
    text-align: center;
  }
  .titulo.left{
    text-align: center;
  }
  .info p {
    text-align: center;
  }
  /* section website*/
  .website{
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;

}
  .website img {
    width: 100%;
  }

  .website .contenedor-textos-main {
    width: 100%;
  }

  /*cards*/
  .card{
    width: 100%;
    margin-bottom: 20px;
  }

  /*galeria*/
  .galeria-cont>img {
    width: 48%;
  }

  /*last*/
  .last-section img {
    width: 98%;
  }

  .last-section .contenedor-textos-main {
    width: 98%;
    margin-bottom: 0px;
  }
}

@media screen and (max-width:400px) {
  .titulo, .textos-hero h1 {
    font-size: 30px;

  }
  .textos-hero p {
    font-size: 20px;
    text-align: center;
  }
  .card {
    height: 380px;
  }
  .website .contenedor-textos-main {
    margin-bottom: 30px;
  }

  .galeria-cont>img {
    width: 97%;
  }

    
  }