* {
  box-sizing: border-box;
}

.container {
  line-height: 1.6;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  color: white;
}

ul {
  list-style: none;
  padding: 0;
}

.company-info li {
  margin-top: 40px;
}

.brand {
  text-align: center;
}

.wrapper {
  box-shadow: 0 0 20px 0 rgba(99, 99, 99, 0.7);
}

.wrapper > * {
  padding: 1em;
}

.company-info {
  background: #333;
  line-height: 0.5;
}

.company-info h3,
.company-info ul {
  margin: 0 0 1rem 0;
}

.company-info h3,
ul div {
  text-align: center;
}

.company-info a {
  margin-right: 10px;
}

.contact {
  background: white;
  color: black;
}

/* FORM STYLES */
.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.contact form label {
  display: block;
}

.contact form p {
  margin: 0;
}

.contact form .full {
  grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid black;
}

.contact form button {
  background: white;
  color: black;
  border: 1px solid black;
  text-transform: uppercase;
}

.contact form button:hover,
.contact form button:focus {
  background: black;
  color: #fff;
  outline: 0;
  transition: background-color 0.5s ease-out;
}

.alert {
  text-align: center;
  padding: 10px;
  background: #79c879;
  color: #fff;
  margin-bottom: 10px;
  display: none;
}

.company-info svg {
  fill: #ffe680;
}

.company-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

/* LARGE SCREENS */
@media (min-width: 1000px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .wrapper > * {
    padding: 2em;
  }

  .company-info h3,
  .company-info ul,
  ul div,
  .brand {
    text-align: left;
  }

  .company-info li {
    justify-content: left;
  }
}
