* {
  box-sizing: border-box;
}
html {
  max-width: 100vw;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url(images/purple-bg.png);
  font-family: "Poppins";
  position: relative;
}
#main-title {
  display: none;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content > p {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.content .companies {
  display: flex;
  flex-direction: row;
  gap: 89px;
  margin-top: 40px;
  width: 100%;
}
.companies img {
  width: 90%;
}
.content .companies > div {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.35);
  padding: 40px;
}
.content .companies > div p {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.button {
  border-radius: 10px;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.button-blue {
  background: #005172;
}
.button-red {
  background: #cf152d;
}
footer {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
}
.footer p {
  color: #333;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer a {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline;
}
.footer-contact-logo {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.label {
  color: #7255a4;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.footer-legal {
  margin-top: 20px;
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
@media (min-width: 1024px) {
  .content {
    max-width: 1221px;
    margin: 56px auto;
  }
  .content .companies > div p {
    margin: 20px;
  }
  footer {
    padding: 50px;
  }
  .footer-legal-spacer-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  .content {
    max-width: 100%;
    width: 100%;
    padding: 0.5rem;
  }
  .content > p {
    font-size: 22px;
  }
  .content .companies {
    width: 100%;
    flex-direction: column;
    gap: 50px;
    margin: 30px;
  }
  footer {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }
  #white-logo {
    max-width: 90%;
    margin-top: 30px;
  }
  .content .companies > div {
    flex: 1 1 330px;
    margin: 0 10px;
  }
  .content .companies > div p {
    font-size: 16px;
  }
  footer img {
    max-width: 90%;
  }
  .footer-contact-logo {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-desktop {
    display: none;
  }
}
/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  font-family: Poppins;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #7255a4;
  cursor: pointer;
}
