* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #112033;
  font-family: "Instrument Sans", sans-serif;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #f5f5f5;
  text-decoration: none;
}

.btn {
  color: #384450;
  background-color: #f5f5f5;
  padding: 15px 50px;
  border-radius: 10px;
  font-size: 14px;
  display: block;
  width: fit-content;
  font-weight: 700;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #cddef6;
}

.section {
  padding: 150px 30px;
}
@media screen and (max-width: 990px) {
  .section {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 500px) {
  .section {
    padding: 50px 30px;
  }
}

.constrained-width {
  max-width: 1200px;
  margin: auto;
}

header {
  padding: 20px;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #112033;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-link {
  margin-left: 10px;
}
header .logo-link img {
  width: 100px;
}
header nav {
  display: flex;
  gap: 15px;
}
header nav a {
  color: rgba(245, 245, 245, 0.6);
  text-decoration: none;
  padding: 20px;
  font-size: 14px;
}
header nav a:hover {
  color: #f5f5f5;
}
header nav .active {
  color: #f5f5f5;
}
@media screen and (max-width: 500px) {
  header nav {
    gap: 10px;
  }
  header nav a {
    padding: 10px;
  }
}
header .mobile-nav {
  display: none;
}
header .large-nav {
  display: block;
}
@media screen and (max-width: 500px) {
  header .mobile-nav {
    display: block;
  }
  header .large-nav {
    display: none;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
  padding: 160px 30px 180px 30px;
}
@media screen and (max-width: 500px) {
  .hero {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 500px) {
  .hero {
    align-items: flex-start;
    gap: 40px;
  }
}
.hero h1 {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .hero h1 {
    font-size: 32px;
    text-align: left;
  }
}
.hero h1 span {
  font-weight: 700;
}
.hero .btn {
  font-size: 20px;
  padding: 20px 35px;
}

.highlights-section {
  background-color: #25426b;
}
.highlights-section .highlights-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 990px) {
  .highlights-section .highlights-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.highlights-section .highlights-wrapper .highlight {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
}
.highlights-section .highlights-wrapper .highlight img {
  margin: auto;
}
.highlights-section .highlights-wrapper .highlight p {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .highlights-section .highlights-wrapper .highlight {
    width: auto;
    flex-direction: row;
  }
  .highlights-section .highlights-wrapper .highlight p {
    font-size: 20px;
    text-align: left;
  }
}

.text-with-image {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .text-with-image {
    flex-direction: column;
  }
  .text-with-image p {
    order: 2;
  }
  .text-with-image div {
    order: 1;
  }
}
.text-with-image p {
  font-size: 24px;
  line-height: 52px;
  max-width: 592px;
}
@media screen and (max-width: 500px) {
  .text-with-image p {
    font-size: 20px;
    line-height: 44px;
  }
}
.text-with-image div img {
  width: 100%;
  max-width: 370px;
}

footer {
  margin-top: auto;
  background-color: #25426b;
  padding: 50px 30px;
}
footer .footer-content-wrapper .logo-link {
  display: block;
  margin: 0 0 30px 10px;
}
footer .footer-content-wrapper .logo-link img {
  width: 100px;
}
footer .footer-content-wrapper .footer-links-wrapper {
  display: flex;
  gap: 100px;
}
footer .footer-content-wrapper .footer-links-wrapper a {
  display: block;
  padding: 15px 10px;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  footer .footer-content-wrapper .footer-links-wrapper a {
    font-size: 14px;
  }
}
footer .footer-content-wrapper .footer-links-wrapper .contact-link-wrapper {
  display: flex;
  gap: 10px;
}
footer .footer-content-wrapper .footer-copyright {
  font-size: 14px;
  font-weight: 300;
  margin: 40px 0 0 10px;
}

.form-section {
  margin: 100px auto;
  max-width: 740px;
}
@media screen and (max-width: 700px) {
  .form-section {
    margin: 50px auto;
  }
}
.form-section .form-wrapper {
  margin: 0 30px;
  background-color: #25426b;
  border-radius: 10px;
  padding: 60px;
}
@media screen and (max-width: 700px) {
  .form-section .form-wrapper {
    background-color: transparent;
    padding: 0;
  }
}
.form-section h1 {
  font-size: 48px;
}
@media screen and (max-width: 700px) {
  .form-section h1 {
    font-size: 32px;
  }
}
.form-section p {
  margin-top: 5px;
  font-size: 14px;
}
.form-section form {
  margin-top: 30px;
}
.form-section form .form-inputs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .form-section form .form-inputs-wrapper {
    grid-template-columns: 1fr;
  }
  .form-section form .form-inputs-wrapper textarea {
    grid-column: auto;
  }
}
.form-section form input,
.form-section form textarea {
  border: 1px solid #d9d9d9;
  background-color: transparent;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 14px;
  color: #f5f5f5;
  display: block;
}
.form-section form input::placeholder,
.form-section form textarea::placeholder {
  font-family: "Instrument Sans", sans-serif;
  color: rgba(245, 245, 245, 0.6);
}
.form-section form textarea {
  grid-column: span 2;
  height: 120px;
}
.form-section form button {
  margin: 20px 0 0 auto;
}

/*# sourceMappingURL=styles.css.map */
