.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 33%; /* IE10 */
  flex: 25%;
  max-width: 33%;
  padding: 0 4px;
  
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  border: none; 
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 40%;
  height: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.column p{
  text-align: center;
  color:white;
}

#contact-name-error, #contact-email-error, #contact-message-error, .response-message, #newsletter-name-error, #newsletter-email-error, #phone-number-error {
  color: #ff0000;
  font-size: 0.75rem;
  position: absolute;
  bottom: 0;
}
#newsletter-name-error, #newsletter-email-error, #phone-number-error {
  bottom: -7px;
  left: 15px;
}
#successMsg {
  color: #3f841c;
  bottom: -25px;
  display: none;
}

#successMsg2 {
  color: #ffffff;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: fit-content;
  font-weight: 500;
  display: none;
}
#failMsg, #failMsg2 {
  bottom: -25px;
  display: none;
}
#loadingIcon {
  display: none;
  position: absolute;
  width: 25px;
  z-index: 1;
  top: 12px;
  right: 15px;
}

#loadingIcon2{
  display: none;
  position: absolute;
  width: 20px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 35%);
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}