:root {
  --verde: #91bf4e;
  --azul: #29415d;
  --verdebajo: #eaebe3;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Sintony", sans-serif;
}
.ancho {
  max-width: 1200px;
  margin: auto;
}
#fondo {
  background-image: url(imagenes/slidefoto.jpg);
  background-size: cover;
  object-fit: cover;
  color: white;
  height: 100vh;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 13px;
  padding-bottom: 10px;
}
header div {
  border: 1px white solid;
  padding: 10px;
  line-height: 30px;
}
header div i {
  font-size: 25px;
}
header div p {
  color: var(--verde);
  padding: 0px 10px;
}
header div a {
  color: white;
  text-decoration: none;
}
.telefonos_header {
  display: flex;
  width: 350px;
}
.correo_header {
  display: flex;
}
.socialmedia_header {
  display: flex;
}
.cont_info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  max-height: 600px;
}
.cont_info h1 {
  letter-spacing: 3px;
  font-size: 30px;
  margin-bottom: 20px;
  padding: 15px;
  border: 2px white solid;
}
.cont_info img {
  max-width: 300px;
}
#copy {
  background-color: var(--azul);
  padding: 10px;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: stretch;
  font-size: 12px;
  flex-wrap: nowrap;
  position: fixed;
  bottom: 0;
  width: 100%;
}
#copy a {
  color: var(--verde);
  text-decoration: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
#btn_verde {
  border-radius: 7px;
  margin-top: 20px;
  display: inline-block;
  background: var(--verde);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  transition: all 0.5s;
}
#btn_verde:hover {
  background-color: var(--azul);
}
@media screen and (max-width:1200px){
    #fondo {
  background-image: url(imagenes/slidefoto1.jpg);
}
@media screen and (max-width: 815px) {
  header div .quitar {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  header {
    justify-content: space-evenly;
  }
  header p {
    display: none;
  }
  .telefonos_header a {
    margin: auto;
  }
  #fondo {
  background-image: url(imagenes/slidefoto2.jpg);
}
@media screen and (max-width: 480px) {
  .telefonos_header {
    justify-content: center;
  }
  #copy {
    flex-wrap: wrap;
    font-size: 12px;
  }
  #copy p {
    margin: auto;
    text-align: center;
  }
  #hector {
    padding: 10px 0px;
    margin: auto;
  }
  .socialmedia_header {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  header {
    width: 100% !important;
    padding-top: 10px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  header div {
    border: 0px white solid;
    padding: 5px;
    line-height: 25px;
  }
  #copy{
    padding: 0;
  }
  #copy p{
    padding: 5px 5px 0 5px;
  }
}