@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;  
}

body {
  background: #f8f7f7;
}

.titulo {
  background: #ffffff;
  padding: 10px calc((100% - 1400px) / 2);
  display: flex;
  flex-wrap: wrap; 
  border-bottom: 1px solid green; 
}

/*  */

.titulo h2 {
  /* margin: 0 auto; */
  font-size: 24px;
  color: #484848;
  text-align: left;  
  margin-bottom: 20px;
  margin-top: 20px;
  border-bottom: 5px solid green;
}


/* eventos */

.eventos {
  background: #ffffff;
  padding: 10px calc((100% - 1100px) / 2);
  padding: 50px 60px 30px 60px;
  display: flex;
  flex-wrap: wrap;
}

.eventos info {
  background: #ffffff; 
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.eventos h2 {
  margin: 0 auto;
  font-size: 24px;
  color: #efefef;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 5px solid green;
}

.eventos-curso {
  background: #ffffff;
  padding: 10px calc((100% - 1400px) / 2);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.eventos-item {
  flex: 1 1 300px;
  background: #ffffff;
  max-width: 100%;
  padding: 10px;
  margin: 10px;
  animation-duration: 2.5s;
  animation-delay: unset;
  text-align: center;
  border: 1px solid rgb(230, 228, 228);
}

.eventos-item:hover {  
  box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.4);
}

.eventos-item img {
  padding-bottom: 20px;
  width: 430px;
  height: 295px;
  object-fit: cover;
  border: 1px solid #dedcdc;
}

.rodape {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}

.rodape a {
  color: orange;
}

.link {
  font-size: 1.3em;
  color: inherit;
  color: green;
  text-align: left;
  padding-top: 30px;
  margin-bottom: 20px;
  
}

.link:hover {
  color: rgb(12, 158, 12);
  border-bottom: 2px solid rgb(12, 158, 12);
}

.eventos-item p {
  font-size: 1em;
  color: black;
  text-align: justify;
  margin: 20px;
}

.btnfixed {
  display: none;
}

@media (max-width: 700px) {

  .eventos {
    padding: 0px;
  }

  .tab-img label{
    margin: 0 auto;
  }

  .modulo-img {
    border-right: 0;
  }

  .modulo-info {
    text-align: center;
  }

  .titulo {
    justify-content: center; 
  }

  .btnfixed {
    display: flex;
  }
}