body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #404040;
}

h1, h2, h3, h4, h5 {
  font-family: "Source Sans 3", sans-serif;
}

.container {
  display: inherit;
  flex-flow: inherit;
  -webkit-box-pack: inherit;
  justify-content: inherit;
  -webkit-box-align: inherit;
  align-items: inherit;
  max-width: 1200px;
  margin: 0px auto;
  width: 100%;
  gap: inherit;
}

header {
  background: #021E45;
  flex-flow: row;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  padding: 24px 40px;
}

header .phone {
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: initial;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

header .logo {
  max-width: 300px;
  width: 100%;
}

.home {
  padding: 80px;
}

.home h2 {
  color: rgb(67, 30, 185);
  text-align: left;
  text-shadow: none;
  font-family: Roboto;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0px;  
}

.home p {
  text-align: initial;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

.icons {
  padding: 70px 52px;
  background-color: #795dd3;
  color: #fff;
  margin-bottom: 80px;
}

.icons h2 {
  font-size: 36px;
}

#get-started {
  margin-bottom: 80px;
}

#get-started h2 {
  font-size: 48px;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  margin: 0px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
  border: 1px solid rgb(222, 222, 222);
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0px;
  padding: 16px;
}

form button {
  width: 270px;
  height: 64px;
  padding: 16px;
  background-color: rgb(121, 93, 211);
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1px;
  color: #fff;
  border: 0;
  border-radius: 5px;
}

#formulario-success-message {
  display: none;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(216, 216, 216);
  color: rgb(80, 80, 80);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px;
  text-align: center;
}

footer {
  background-color: #021E45;
  padding: 40px;
}

footer p,
footer a {
  color: #ffffff;
  font-size: 14px;
}

footer .logo {
  max-width: 300px;
  width: 100%;
}

@media (max-width: 768px) {
  .icons img {
    max-width: 100px;
  }
}