
  body, html{
    height:100%;
    margin:0;
    font-size:16px;
    font-family: "Roboto", sans-serif;
    font-weight:400;
    line-height:1.8em;
    color:#666;
  }

    /*Styles for top menu*/
    .topcontact {
      background-color:rgba(24, 58, 102, 1);
      overflow: hidden;
      z-index: 10;
      text-align: center;
      font-weight: bold;
      position: fixed;
      top: 0px;
      width: 100%;
      transition-property: background-color, opacity;
      transition-duration: 0.5s;
  }

    .topcontact a {
      display: inline-block;
      color: #ffffff;
      text-align: center;
      padding: 14px 2%;
      text-decoration: none;
      font-size: 16px;
      transition-property: background-color, opacity;
      transition-duration: 0.5s;
  }

  .contactInfo{
    visibility: visible;
    display: inline;
  }

    /*Styles for top menu*/
  .topnav {
      background-color:rgba(255, 255, 255, 1);
      overflow: hidden;
      z-index: 10;
      text-align: center;
      font-size: 30px; 
      font-weight: bold;
      position: fixed;
      top: 56px;
      width: 100%;
      transition-property: background-color, opacity;
      transition-duration: 0.5s;
  }

  /* Style the links inside the navigation bar */
  .topnav a {
      display: inline-block;
      color: #183A66;
      text-align: center;
      padding: 20px 2%;
      text-decoration: none;
      font-size: 16px;
      transition-property: background-color, opacity;
      transition-duration: 0.5s;
  }

  #homeBtn{
    padding: 9px 36px;
    position: absolute;
    left: 0px;
  }

  /* Change the color of links on hover */
  .topnav a:hover {
      text-decoration: underline;
      text-decoration-color: #ff0000;
      transition-property: text-decoration;
      transition-duration: 0.2s;
  }

  /* Add an active class to highlight the current page */
  .topnav  .active {
      text-decoration: underline;
      text-decoration-color: #ff0000;
  }

  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
      display: none;
  }

  #myIcon {
    width: 15px;
  }

  .topblock{
    min-height: 70px;
  } 

  .titulo{
    color: #213963;
    font-size: 32px;
    font-family: 'PT Serif';
    font-weight: bold;
  }

  .subtitulo{
    /*color: #be0712;*/
    color: #df020b;
    font-size: 28px;
    font-weight: bold;
  }

  .section{
    text-align:justify;
    padding:20px 50px;
  }

  .section-light{
    background-color:#ffffff;
    color:#000000;
    margin: auto;
    max-width: 1200px;
  }

  #contactBtn{
    background-color: #CB4661;
    padding: 15px;
    border: 0px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
  }

  hr.separador {
    margin: 44px 0;
    border-top: 2px solid #CB4661;
  }

  .sep1 {
      margin-top: 1.5rem!important;
  }

  .footer{
    background-color:rgba(12, 30, 92, 1);
    color:#ffffff;
    text-align:left;
    padding-bottom: 30px;
  }

  .footer a{
    color:#ffffff;
    text-decoration: none;
  }

  .footerBar{
    /*background-color:rgba(61, 73, 149, 1);*/
    background-color:rgba(61, 136, 175, 1);
    width: 100%;
    height: 20px;
  }

  .footerContainer{
    width: 90%;
    margin: auto;
    min-height: 210px;
    display: flex;
    flex-wrap: nowrap;
  }

  #footerCol1{
    flex: 0 30%;
    width: 30%;
  }

  #footerCol1 img{
    width: 160px;
  }

  #footerCol2{
    flex: 0 30%;
    width: 30%;
  }

  #footerCol3{
    flex: 0 40%;
    width: 40%;
  }

  /* --------------------- FIN DE ARCHIVO ---------------------- */

  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-width:600px){
    .pimg1{
      background-attachment:scroll;
    }
  }

  /* The Close Button */
  .close {
      color: #eeeeee;
      float: right;
      font-size: 28px;
      font-weight: bold;
  }

  .close:hover, .close:focus {
      color: #000000;
      text-decoration: none;
      cursor: pointer;
  }

  /*When the screen is less than 1024 pixel wide */
  @media screen and (max-width: 1068px) {
    .topcontact a {
      font-size: 14px;
    }
  }

  /*When the screen is less than 1024 pixel wide */
  @media screen and (max-width: 1024px) {
    .topcontact a {
      font-size: 12px;
    }
  }

  /*When the screen is less than 1008 pixel wide */
  @media screen and (max-width: 1008px) {
    .topnav a {
      font-size: 14px;
    }
  }

  /* When the screen is less than 920 pixels wide, adjust topnav font*/
  @media screen and (max-width: 920px) {
    .topnav{
      text-align: right;
    }
  }

  /* When the screen is less than 840 pixels wide, adjust topnav font*/
  @media screen and (max-width: 840px) {
    .contactInfo{
      visibility: hidden;
      display: none;
    }
  }

  /* When the screen is less than 800 pixels wide, adjust topnav font*/
  @media screen and (max-width: 800px) {
    .topnav a {
      font-size: 12px;
    }
  }

  /* When the screen is less than 720 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
  @media screen and (max-width: 720px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }

    .topcontact{
      position: fixed !important;
      top: 0px  !important;
      background-color:rgba(24, 58, 102, 1);
    }

    .topcontact a {
      font-size: 16px;
    }

    .topnav{
      position: fixed !important;
      top: 57px  !important;
      background-color:rgba(255, 255, 255, 1);
    }
    .topnav a{
      font-size: 19px;
    }
    .ptextlogo{
      top:30%;
    }

    .ptextlogo .border img{
      width: 70% !important;
    }

    .contactInfo{
      visibility: hidden;
      display: none;
    }

    .topblock{
      min-height: 80px;
    } 

    .titulo{
      font-size: 28px;
    }
  
    .subtitulo{
      font-size: 20px;
    }
  
    .section{
      text-align:justify;
      padding:10px 30px;
    }

    hr.separador {
      margin: 44px 0 22px;
    }

    .footerContainer{
      width: 90%;
      margin: auto;
      min-height: 210px;
      display: block;
    }
  
    #footerCol1{
      width: 100%;
    }
  
    #footerCol2{
      width: 100%;
    }
  
    #footerCol3{
      width: 100%;
    }
  }

  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 720px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 10px;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      padding-top: 10px;
    }

    .topnav.responsive #homeBtn {
      position: relative;
    }
  }