.master-footer {
  background: #001f40;
}
.master-footer .wrapper-row-1 {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  column-gap: 60px;  
}
.voci-menu,
.social-link {
  display: flex;
  column-gap: 25px;
}
.voci-menu a {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  max-width: 80px;
}
.voci-menu a:hover {
  text-decoration: underline;
}
.social-links__icon {
  display: inline-block;
  position: relative;
  background-color: transparent;
  border: 3px solid #fff;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: all 200ms ease-in-out;
}

.social-links__icon:hover {
  transform: scale(1.2);
  transition: all 200ms ease-in-out;
}

.social-links__icon svg {
  fill: #fff;
  height: 40px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.master-footer .wrapper-row-2 {
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin: 30px 0 20px;
}
.master-footer hr {
    height: 1px;
    opacity: 0.4;
    background-color: #ffffff;
    margin: 30px 0;
}

@media (max-width: 768px) {
  .master-footer .wrapper-row-1 {
    flex-flow: column wrap;
  }
  .voci-menu {
    flex-flow: column wrap;
    margin: 20px 0;
  }
    .voci-menu a {
      max-width: 100%;
  }
.social-links__icon {
  width: 30px;
  height: 30px;
  }
.social-links__icon svg {
  height: 20px;
  }
.master-footer .wrapper-row-2 {
  font-size: 11px;
  margin: 10px 0;
}
.master-footer hr {
  margin: 5px 0;
  }
  .wrapper-row-3 p {
    font-size: 11px !important;
  }
    .wrapper-row-3  img {
      max-width: 80px;
  }