@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

body {
  background: rgb(236, 235, 235);
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.banner img{
  width: 100%;
  max-width: 2000px;  
}

.card-header{
  background: #fff;
}

.card-header .image-logo{
  display: flex;

}

.box{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top: 50px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.title{
  text-align: center;
  margin-top: 20px;
  font-size: 36px;
  color: #007934;
}

footer{
  display: flex;
  justify-content: center;
  margin-top: 48px;
  background: #007934;
  padding-top: 28px;
  align-items: center;
}

.link_social a{
  font-size: 35px;
  padding: 10px;
  text-decoration: none;
  color: #fff;
  

}

footer p{
  color: #fff;
}

footer p:hover{
  color: rgb(240, 238, 238);
}


