.foot {
  display: block;
  height: 150px;
  width: 100vw;
  background-color: #E3E3E3;
}

.icons_wrapper {
  display: inline-grid;
  grid-gap: 0vw;
  grid-template-columns: 1vw 32.5vw 32.5vw 32.5vw 1vw;
  grid-template-rows: 140px;
  justify-content: center;
  text-align: center;
}

.icon {
  float: left;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon img {
  position: absolute;
  width: 60px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon img:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.icon a {
  text-decoration: none!important;
  color: #000000;
}

.footnotes {
  font-size: 18pt;
  font-family: 'Century Gothic';
  font-weight: 400;
}

.a {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.c {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.d {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.e {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
}

@media only screen and (max-width: 1250px) {
  .footnotes {
    font-size: 15pt;
  }
}

@media only screen and (max-width: 1050px) {
  .footnotes {
    font-size: 12pt;
  }

  .icon img {
    width: 40px;
  }

}

@media only screen and (max-width: 840px) {
  .footnotes {
    font-size: 11pt;
  }

  .icons_wrapper {
    grid-template-rows: 110px;
  }


  .foot {
    height: 120px;
  }

}

@media only screen and (max-width: 650px) {
  .footnotes {
    font-size: 10pt;
  }


}
@media only screen and (max-width: 500px) {
  .footnotes {
    margin-top: 20px;
    font-size: 7pt;
  }

  .icon img {
    width: 30px;
  }

  .icons_wrapper {
    grid-template-rows: 90px;
  }

  .foot {
    height: 100px;
  }



}
