* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.banner{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75),rgba(0, 0, 0, 0.75)),url(images/chispa2.jpeg);
  background-size: cover;
  background-position: center;
}

.logo{
  width: 250px;
  cursor: pointer;
}

.navbar{
  width: 85%;
  margin: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
}

.navbar ul li{
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.navbar ul li a{
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
}

.navbar ul li::after{
  content: '';
  height: 3px;
  width: 0;
  background: #f87503;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.5s;
}

.navbar ul li:hover::after{
  width: 100%;
}

.content{
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

.content h1{
  font-size: 70px;
  margin-top: 80px;
  font-family: 'Roboto', sans-serif;
}

.content p{
  margin: 20px auto;
  font-weight: 100;
  line-height: 25px;
}

.about{
  width: 100%;
  height: 20vh;
  background-size: cover;
  background-position: center;
  background-color: rgb(255, 255, 255);
  text-align: center;
}

.about h2{
  font-size: 50px;
  margin-top: 80px;
}

.about span{
  font-size: 25px;
  color: grey;
}


.container {
  display: grid;
  column-gap: 5px;
  grid-template-columns: 3fr 3fr;
 }

.image {
  max-width: 100%;
  max-height:100%;
  float: right;
 }

.image img{
  border-radius: 20%;
}

.text{
  font-size: 35px;
  color: grey;
  background-color: #ffffff;
}

.map{
  background-color: white;
  text-align: center;
  padding: 50px;
  
}

h2{
  font-size: 50px;
  font-family: 'Roboto', sans-serif;
}


.contacto{
background-color: grey;
text-align: center;
padding: 50px
}

.contacto{
  color:white;
}