.content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact-header {
  margin-top: 30px;
  margin-bottom: 60px;
  width: 75%;
  text-align: center;
}

.contact-header h1 {
  font-size: 40px;
  color: #025e73;
  font-style: italic;
}

.contact-header p {
  margin-top: 20px;
  color: black;
  font-size: 1em;
}

.contact-header p b {
  color: #025e73;
  font-size: 1.2em;
  font-style: italic;
}

.contact-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 100px;
}

.contact-wrapper h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #025e73;
  font-style: italic;
}

.contact-left ul {
  list-style-type: none;
}

.contact-left ul li {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.contact-left ul li i {
  font-size: 1.25em;
  width: 50px;
}

.contact-left ul li a {
  font-size: 1.15em;
  text-decoration: none;
  color: black;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1); /* ease (default) */
}

.contact-left ul li a:hover {
  color: #34a6c0;
}

label {
  font-size: 12.5px;
  color: #000;
  opacity: 0.8;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  justify-content: space-between;
}

.form input {
  font-size: 16px;
  padding: 20px 0px;
  height: 56px;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  min-width: 280px;
  width: 90%;
  box-sizing: border-box;
  transition: all 0.3s linear;
  color: #000;
  font-weight: 400;
  -webkit-appearance: none;
}

.form select {
  font-size: 16px;
  padding: 20px 0px;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  min-width: 280px;
  width: 90%;
  box-sizing: border-box;
  transition: all 0.3s linear;
  color: #000;
  font-weight: 400;
}

.form input:focus,
select:focus {
  border-bottom: solid 1px #025e73;
  outline: 0;
  box-shadow: 0 2px 6px -8px rgba(#025e73, 0.45);
}

.form textarea {
  margin-top: 30px;
  width: 100%;
  height: 250px;
  border-radius: 3px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-family: inherit;
  padding: 0.5rem 0 0 0.5rem;
  transition: all 0.3s;
}

.form input {
  font-size: 16px;
  padding: 20px 0px;
  height: 56px;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  min-width: 280px;
  width: 90%;
  box-sizing: border-box;
  transition: all 0.3s linear;
  color: #000;
  font-weight: 400;
  -webkit-appearance: none;
}

.floating-label {
  position: relative;
  margin-bottom: 10px;
}

.floating-label > label {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.form input:not(:placeholder-shown) {
  padding: 28px 0px 12px 0px;
}
.form input:not(:placeholder-shown) + label {
  transform: translateY(-10px);
  opacity: 0.7;
}

.form > .center-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form button {
  margin: 10px 0;
  position: relative;
  bottom: 0px;
  background-color: #025e73;
  color: white;
  font-size: 1.25em;
  padding: 10px 25px;
  border: 1px solid #025e73;
  border-radius: 4px;
  outline: none;

  -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1); /* ease-in-out */
}

.form button:hover {
  position: relative;
  bottom: 4px;
  box-shadow: -4px 4px 11px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: -4px 4px 11px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -4px 4px 11px 1px rgba(0, 0, 0, 0.3);
}

/*Desktop */
@media only screen and (min-width: 1224px) {
}

/*Tablet */
@media only screen and (min-width: 600px) and (max-width: 1224px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    margin-bottom: 50px;
  }

  .form input {
    min-width: 240px;
    width: 90%;
  }

  .form select {
    min-width: 240px;
    width: 90%;
  }
}

/* Smartphones */
@media only screen and (max-width: 600px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    margin-bottom: 50px;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
  }

  .form input {
    min-width: 240px;
    width: 90%;
  }

  .form select {
    min-width: 240px;
    width: 90%;
  }
}
