.lead-label{
  margin-top: 64px;
  margin-bottom: 10px;
  background: var(--lead-color);
  width: 100%;
  font-size: 14pt;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--main-color);
}

section{
  width: 100%;
  display:flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.content-title{
  box-sizing: border-box;
  max-width: 300px;
  height: auto;
  background: var(--main-color);
  color: var(--back-color);
  padding: 5px 20px;
  margin-top: 30px;
  border-radius: 3px;
  text-align: center;
}

.content-container{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.content-img{
  width: 100%;
  margin-bottom: 10px;
}

.content-img img{
  width: 100%;
}

.content{
  width: 100%;
}

.content-word-title{
  margin-bottom: 5px;
}

table{
  width: 100%;
}

@media (min-width: 900px){
  section{
    margin-bottom: 70px;
  }

  .lead-label{
    margin-top: 136px;
    height: 130px;
    font-size: 38pt;
    line-height: 130px;
  }


  .content-title{
    max-width: 700px;
    width: 700px;
    height: 80px;
    line-height: 80px;
    font-size: 25pt;
    border-radius: 10px;
    padding: 0;
    margin-top: 70px;
    margin-bottom: 40px;
  }

  .content-container{
    width: 80%;
    flex-direction: row;
    align-items: flex-start;
  }

  .content-img{
    width: 50%;
    margin-bottom: 10px;
  }

  .content{
    width: 50%;
    padding: 0 20px;
    font-size: 14pt;
  }
  
}