main > section > article {
  width: 98%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  border-radius: 1rem;
  margin: 0 auto 1rem auto;
  padding: 1.8rem 1rem;
  position: relative;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  top: 0;
  /* text-align: justify; */
  word-break: keep-all;
  box-shadow: 0 2px 3px rgba(0,0,0,0.06), 0 3px 6px rgba(0,0,0,0.13);
}

main > section > article > img {
    	max-width: 1000px;
        width: 98%;
        margin:2% 0;
    }

main > section > article p {
    margin-left: 1.5%;  
    font-size: 1.1em;
    font-weight: 600;
    color: #093487;
    margin-top: 15px;
  }
  
  main > section > article table {
    border: none;
    width: 97%;
    margin: 0 1.5%;
    word-break:keep-all;
  }
  
  main > section > article table tr {
    margin-bottom: 50px;
  }
  
  main > section > article table td {
    padding-top: 3px;
    vertical-align: top;
    font-size: 1em;
    word-break:break-word;
  }

  main > section > article table td:first-child {
    width: 25px;
    text-align: center;
  }

  main > section > article table td span.BR {
    font-size: 1em;
    color:#e81c42;
    font-weight:600
  }
  
  main > section > article table td span {
    font-size: 0.89em;
  }
  
  main > section > article table td span a {
    font-size: 1.1em;
    font-weight:600
  }
  
  main > section > article table td span a:hover {
    color:#e81c42
  }
  
  main > section > article table.regifee {
  	text-align:center;
    border-top: 1px solid #9fa5a9;
    border-bottom: 1px solid #9fa5a9;
    font-size: 1em; 
    margin-bottom: 15px;   
  }
  
  main > section > article table.regifee th {
    border-right: 1px solid #9fa5a9;
    border-bottom: 1px solid #9fa5a9;
    color: #000;
    font-weight: 400;
    background: #eaf4f7;  
    font-size: 0.89em;
    padding: 8px;  
    width: 20%;
  }
  
  main > section > article table.regifee th:last-child {
    border-right: none;
  }
  
  main > section > article table.regifee td {
    border-right: 1px solid #9fa5a9;
    border-bottom: 1px solid #9fa5a9;
    text-align: center;
    font-weight: 400;
    background: #fff;  
    font-size: 0.89em;
    padding: 5px 0;  
  }
  
  main > section > article table.regifee td:first-child {
    background: #fff; 
    width: 15%;
  }

  main > section > article table.regifee td:last-child {
    border-right: none;
  }
  
  @media (max-width:645px) {
    main > section > article p {
      font-size: 1em;
    }
  
    main > section > article table td {
      font-size: 0.89em;
    }
  
    main > section > article table td span {
      font-size: 0.82em;
    }
    main > section > article table.regifee th,
      main > section > article table.regifee td {
        font-size: 0.8em;
    }
    main > section > article table td:first-child {
        width: 20px;
    }
  }
 /* Text color */
/* Tabs menu */
main > section > nav {
  margin: 0.5rem 0 0 0;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.125rem;
  border-radius: .125rem .125rem 0px 0px;
}

@media screen and (max-width: 512px) {
  main > section > nav {
    height: 1.875rem;
  }
}

main > section > nav > button {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(70%, transparent), to(rgba(255, 255, 255, 0.2)));
  background-image: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.2) 100%);
  border-top: 1px groove rgba(0, 0, 0, 0.1);
  border-right: 1px groove rgba(0, 0, 0, 0.1);
  border-bottom: 1px groove rgba(0, 0, 0, 0.1);
  outline: none;
  cursor: pointer;
  width: 50%;
  height: 3.125rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 512px) {
  main > section > nav > button {
    height: 1.875rem;
    font-size: 1rem;
  }
}

main > section > nav > button:before {
  background-image: linear-gradient(135deg, #374e7a 0%, #0e1734 100%);
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

main > section > nav > button:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}

main > section > nav > button.active {
  background-color: white;
  z-index: 3;
  border-right: 0px;
  border-left: 0px;
  height: 3.75rem;
  bottom: 0px;
  color: #0c1631;
  overflow: hidden;
  font-weight: 600;
}

@media screen and (max-width: 512px) {
  main > section > nav > button.active {
    height: 2.5rem;
  }
}

main > section > nav > button.active:before {
  content: "";
  width: 100%;
  height: .3125rem;
  top: 0;
  left: 0;
  z-index: 2;
  color: #0c1631;
}

main > section > nav > button.active p {
  opacity: 1;
  z-index: 3;
  background: -webkit-linear-gradient(135deg, #24909f 0%, #5db6ce 100%);
  -webkit-background-clip: text;
  color: #0c1631;
}

main > section > nav > button.active:hover p {
  opacity: 1;
  z-index: 3;
  background: -webkit-linear-gradient(135deg, #24909f 0%, #5db6ce 100%);
  -webkit-background-clip: text;
  color: #0c1631;
}

main > section > nav > button p {
  opacity: 0.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-weight: 600;
  color: #0c1631;
}

main > section > nav > button p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
  color: #0c1631;
}

@media screen and (max-width: 512px) {
  main > section > nav > button p:before {
    display: none;
    color: #10495f;
  }
}

main > section > nav > button:hover p {
  color: white;
  opacity: 1;
}

@media screen and (max-width: 512px) {
  main > section > nav > button:hover p {
    color: white;
    opacity: 0.6;
  }
}

main > section > nav > button:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}

@-webkit-keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}

@keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}

@-webkit-keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}

@keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}