.height-fixer {
  height: 100%;
}

.container {
  padding: 0;
}

.section {
  display: grid;
  grid-template-columns: minmax(auto, 1320px);
  justify-content: center;
}

h1 {
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

p {
  line-height: 1.4;
}

a {
  color: #0072bc;
  text-decoration: none;
  font-size: 16px;
}
a:hover {
  color: #0072bc;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: #F5AE29;
  border: none;
  outline: 0;
  border-radius: 3px;
  padding: 15px 25px;
  font-size: 16px;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #F5AE29;
  border: none;
  outline: 0;
}

.secondary-text {
  color: #979BA3;
}

.contact-section {
  position: relative;
  height: 100%;
}
.contact-section .content {
  padding: 5rem 20px;
}
.contact-section .content .title-mobile {
  display: block;
}
.contact-section .content .title-desktop {
  display: none;
}
.contact-section .content .info-section {
  width: 100%;
  padding-right: 100px;
  border-top: 1px solid #E6E9EF;
  margin-top: 20px;
}
.contact-section .content .info-section .email-item {
  border-bottom: 1px solid #E6E9EF;
  padding-bottom: 20px;
}
.contact-section .content .info-section .email-item a {
  display: block;
  margin-top: 10px;
}
.contact-section .content .info-section .email-item:last-child {
  border-bottom: none;
}
.contact-section .content .form-section {
  width: 100%;
}
.contact-section .content .form-section h2 {
  margin-top: 0;
}
.contact-section .content .form-section input {
  display: block;
  border-radius: 3px;
  border: 1px solid #E6E9EF;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.contact-section .content .form-section textarea {
  border: 1px solid #E6E9EF;
}
@media (min-width: 992px) {
  .contact-section {
    padding: 7rem 20px;
    background: rgb(247, 248, 250);
    background: linear-gradient(90deg, #F7F8FA 50%, #fff 50%);
  }
  .contact-section .content {
    display: flex;
    justify-content: space-between;
  }
  .contact-section .content .title-mobile {
    display: none;
  }
  .contact-section .content .title-desktop {
    display: block;
  }
  .contact-section .content .info-section {
    order: 1;
    border-top: none;
    margin-top: 0;
  }
  .contact-section .content .form-section {
    order: 2;
    padding-left: 50px;
  }
}