* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial;
    margin: 0;
}

/* Header/logo Title */
.header {
    padding: 80px;
    text-align: center;
    background: #1abc9c;
    color: white;
}

.topnav {
  overflow: hidden;
  background: #14151A;
  text-align:center;
}

.topnav a {
  height: 70px;
  display: inline-block;
  color: #f2f2f2;
  font-size: 10px;
  text-align: center;
  padding: 27px 10px;
  text-decoration: none;
}

.topnav a.imagenSocial {
    height: 70px;
    display: inline-block;
    color: #f2f2f2;
    font-size: 10px;
    text-align: center;
    padding: 17px 5px;
    text-decoration: none;
  }

  .topnav a.imagenLogo {
    height: 70px;
    display: inline-block;
    color: #f2f2f2;
    font-size: 10px;
    text-align: center;
    padding: 10px 5px;
    text-decoration: none;
  }

/* Right-aligned link */
.topnav a.right {
    float: right;
}

.active {
  background-color: #14151A;
  color: white;
  float: left;
}

.topnav .icon {
  display: none;
}

.topnav a:hover {
  background-color: #14151A;
  color: #C1272D;
}


@media screen and (max-width: 600px) {
  .topnav a:not(:first-child){
    display: none;
    padding: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
}

/* Column container */

/* Clear floats after the columns */
.fila:after {
    content: "";
    display: table;
    clear: both;
}


/* Footer */
.footer {
    padding: 40px;
    background: #14151A;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    color: #FFFFFF;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footer-container .footer-columnaImagenUno{
    width: 400px;
    float: left;
}

.footer-container .footer-columnaDescripcion{
    width: 400px;
    float: left;
}

.footer-container .footer-columnaImegenDos{
    width: 400px;
    float: left;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
    color: black;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: large;
}

input[type=submit] {
    background-color: #C1272D;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

input[type=submit]:hover {
    background-color: #C1272D;
}

.contenedorPrincipal {
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 20px;
    width: 100%;
    float: center;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    /* Esto es para el menu principal */
    .barraMenu a {
        float: none;
        width: 100%;
    }

    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }

    .footer-container{
       flex-wrap: wrap;
    }
    .footer-container .footer-columnaImagenUno{
        
        width: 100%;
        display: block;
        float: none;
    }
    
    .footer-container .footer-columnaDescripcion{

        width: 100%;
        display: block;
        float: none;
    }
    
    .footer-container .footer-columnaImegenDos{

        width: 100%;
        display: block;
       float: none;

    }
}



