/* <!-- Colors 
Methodology, section header (background): #BACEC1
Methodology, section header (buttons): FF7F00
Methodology, section transports (background): #F6F4E8 
Methodology, section transports (boxes): #BACEC1 
*/ 

/* Utilities  */
p {
    margin: 10px 0;
    font-size: 18px;
  }
  h4 {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
  }
  ol {
    font-size: 18px;
  }
  /* Section header */
  .section_header_methodology {
    background-color:#BACEC1;
  }
  .header {
    display: flex;  
    align-items: start;
    background: #BACEC1;
  }
  .header img {
    width:325px;
    height:337px;
  }
  .header .box {
    flex: 1;
    color: #000;
    border-radius: 10px;
    margin: 20px 10px;
    padding: 15px 20px;
    text-align:center;
    align-items: center;
    justify-content: center;
  }
  .header .box:nth-of-type(1) {
    flex-grow:2;
  }
  .header .box:nth-of-type(2) {
    flex-grow:1;
  }


  .section_header_methodology .button {
    margin: 10px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    background-color: #FF7F00;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 20px;
    width: 150px;
    margin: 5px;
  }
  
  /* Section methodology */
  .section_transports{
    background-color:#F6F4E8;
  }
  .transports{
    display: flex;  
    align-items: start;
    text-align: left;

  }
  /* Table with one column */
  .transports .box {
    flex: 1;
    background: #BACEC1;
    color: black;
    border-radius: 10px;
    margin: 10px 10px 10px 10px;
    padding: 15px 15px;
    text-align:center;
    align-items: center;
    justify-content: center;
  }
  .transports .box_table1:nth-of-type(1) {
    flex-grow:1;
    background: #BACEC1;
  }
  .transports .box_table1:nth-of-type(2) {
    flex-grow:4;
  }
  .transports .box_table1:nth-of-type(3) {
    flex-grow:1;
    background: #BACEC1;
  }
  /* Table with two columns */
  .transports .box2 {
    flex: 1;
    background: #BACEC1;
    color: black;
    border-radius: 10px;
    margin: 10px 10px 10px 10px;
    padding: 15px 15px;
    text-align:center;
    align-items: center;
    justify-content: center;
  }
  .transports .box_table2:nth-of-type(1) {
    flex-grow:1;
    background:#BACEC1 ;
  }
  .transports .box_table2:nth-of-type(2) {
    flex-grow:1;
    background: #BACEC1 ;
  }
  
  
  @media (max-width:768px) { 
    .header {
      flex-direction: column;
    } 
    .transports {
      flex-direction: column;
    } 
  }
