* {
  box-sizing: border-box;
}

body, html {
height: 100vh;
width: 100vw;
}

body {
  background-color: #f1f1f1;
}

h1,h2,h3,h4,h5,h6 {font-family: "Oswald"}
body {font-family: "Open Sans"}

/* questo lo usi per tutti i testi */
.testo {
    font-size:1vw;
    font-family: "Oswald"  
}

/* questo viene usato per collassare le soluzioni */
.collapsible {
  cursor: pointer;

}

/* questo viene usato per collassare le soluzioni */
.content {
  display: none;
  overflow: hidden;
}

/* Questa è la macro classe delle soluzioni */
.responsive {
  float: left;
  width: 19.99999%;
  padding: 0.8vw;
}


/* questo è il bordo delle soluzioni (testo e immagine) */
div.gallery {
  border: 1px solid #ccc;
}

/* questo è usato per il testo sotto le soluzioni...
il padding si rifersisco al padding del testo, non del blocco*/
div.desc {
  padding: 0.5vw;
  text-align: center;
  font-size: 1.2vw;
}


/* questo serve per ripulire gli elementi flottanti  */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


/* immagine principale */
.mainimage img {
        height:100%;
}


/* questo influisce su tutte le immagini delle soluzioni*/
.gallery img {
  width: 100%;

}


/* questo è il form di testo del titolo*/
input[type=text], select, textarea {
  width: 100%;
}


/* questo è usato per la scritta inserisci titolo*/
.col-12 {
  float: left;
  width: 11.5%;

}

/* questo questo è usato per il controlla*/
.col-25 {
  float: left;
  width: 26%;
}

/* questo questo è usato per il form*/
.col-50 {
  float: left;
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;  
}

.footer {
  height: 5vh;
}





/* Responsive layout - when the screen is less than 700px wide,
metti due soluzioni per riga
metti il titolo e il pulsante uno sopra l'altro
riduci le dimensioni dei testi*/
@media screen and (max-width: 700px) {
  .col-25 {
    width: 24.5%;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0%;
  }
    
   .col-50 {
    width: 73.5%;
    margin-top: 0;
    margin-right: 1%;
    margin-left: 0%;
  }
    
    .col-12 {
        width: 49.5%;
    }
    
    .responsive {
    width: 49.99999%;
    }
    
    div.desc {
    font-size: 13px;
    }
    
    .testo {
    font-size: 16px;
    }
    
    .footer {
     height: 5vh;
    }
    
    #superimgcontainer {
        height: 70vh !important;
    }
    
    #imgcontainer {
        height: 70vh !important;

    }
    
    .gallery img{
          height: 125px;
    }
    
}