/* Text Elements */

p.paragraph.paragraph-1 {
  font-family: 'Arial', cursive;
  color: Black;
  text-align: center;
  font-size: 18px;
  font-family: Verdana;
} 


.container.footer {
  padding-top: 50px;
  padding-bottom: 50px;
  /* è un grigio */
  /* background-color: #141d23; */
  background-color: Black;
}

.container.footer-cards-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 20px;
  /* è un grigio */
  /* background-color: #141d23; */
  background-color: Black;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
}

.container.footer-card {
  padding-right: 20px;
  padding-left: 10px;
}

@media screen and (min-width: 40rem) {
  /* Text Elements */

  .container.footer-cards-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display:    -moz-box;
    display: -ms-flexbox;
    display:         flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }

  .container.footer-card {
    padding-left: 10px;
    width: 50%;
  }
}

@media screen and (min-width: 64rem) {
  /* Text Elements */

  h4.footer-title {
    font-family: 'Arial Black', cursive;
  }
  
  .container.footer {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: none;
    /* è un grigio */
  /* background-color: #141d23; */
  background-color: Black;
  }

  .container.footer-cards-wrapper {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }

  .container.footer-card {
    width: 25%;
    color: #fff;
  }

 }