@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,600;0,700;0,800;1,700&display=swap");
.blue {
  color: #124e89;
}

.pink {
  color: #f39daa;
}

.white {
  color: white;
}

.background-blue {
  background-color: #124e89;
}

.background-pink {
  background-color: #f39daa;
}

body {
  font-family: "Raleway", sans-serif;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

body {
  position: relative;
}

h1,
h3 {
  font-weight: 600;
}

p {
  line-height: 1.6;
}

.navbar {
  background-color: #f39daa;
  padding: 1rem;
  position: fixed;
  width: 100vw;
  z-index: 10;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media screen and (min-width: 768px) {
  .navbar {
    padding: 2rem;
  }
}
.navbar.sticky {
  background-color: white;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}
.navbar.sticky .nav-link {
  color: #f39daa;
}
.navbar.sticky .nav-link.active {
  color: #124e89;
}
.navbar.sticky .btn.primary {
  background-color: #f39daa;
  color: white;
}
.navbar.sticky .btn.primary:hover {
  background-color: #124e89;
  color: white;
}
@media screen and (min-width: 768px) {
  .navbar.sticky {
    padding: 1rem 2rem;
  }
}

.navbar-toggler i {
  color: #124e89;
  font-size: 30px;
}

.nav-item .nav-link {
  margin-top: 5px;
}
.nav-item.last {
  margin-right: 20px;
}

.navbar-nav .nav-link {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.nav-link.active {
  color: #124e89;
}

.btn.primary {
  background-color: white;
  color: #124e89;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
}
.btn.primary:hover {
  background-color: #124e89;
  color: white;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 1;
  -webkit-transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -ms-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media screen and (min-width: 768px) {
  .body-overlay {
    display: none;
  }
}

header {
  color: white;
}
header h1 {
  margin-top: 160px;
}
header img {
  margin: 40px 0 -80px;
}
@media (min-width: 768px) {
  header {
    padding-top: 160px;
  }
}

#section-1 {
  margin-top: 120px;
  padding-bottom: 40px;
}
#section-1 p {
  color: #626365;
}

#section-2 {
  color: white;
  padding: 40px 0;
}
#section-2 p {
  color: white;
}

#section-3 {
  padding: 40px 0;
}
#section-3 .box {
  background-color: #f4f4f5;
  color: #070d1b;
  font-weight: 600;
  padding: 40px 20px;
  text-align: center;
}
#section-3 .box:not(.last) {
  margin-bottom: 20px;
}
#section-3 .box img {
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  #section-3 .box {
    margin-bottom: 0 !important;
  }
}

#section-4 {
  padding: 40px 0;
}
#section-4 img {
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  #section-4 img {
    margin-bottom: -80px;
  }
}

#section-5 {
  margin-top: 40px;
  padding-bottom: 40px;
}
#section-5 img {
  margin: -6px 0 0 40px;
}
#section-5 ul {
  column-count: 1;
  margin: 20px 0 0;
  padding: 0;
}
#section-5 ul li {
  list-style-type: none;
  margin: 40px 0;
}
#section-5 ul li:first-child {
  margin-top: 0;
}
#section-5 ul li:last-child {
  margin-bottom: 0;
}
#section-5 ul li i {
  color: #f39daa;
  margin-right: 10px;
}
#section-5 ul li span {
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 768px) {
  #section-5 ul {
    column-count: 4;
  }
}
@media (min-width: 768px) {
  #section-5 {
    margin-top: 100px;
  }
}

#section-6 ul {
  margin: 20px 0;
  padding: 0;
}
#section-6 ul li {
  list-style-type: none;
  margin: 20px 0;
}
#section-6 ul li:first-child {
  margin-top: 0;
}
#section-6 ul li:last-child {
  margin-bottom: 0;
}
#section-6 ul li i {
  margin-right: 10px;
}
#section-6 img {
  margin: 40px 0 -60px;
}

#section-7 {
  margin: 100px 0 40px;
}
#section-7 .box:not(.last) {
  margin-bottom: 20px;
}
#section-7 .box img {
  margin: -6px 20px 6px 0;
}
#section-7 .box h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  #section-7 .box h3 {
    font-size: 1.75rem;
  }
}
#section-7 .box p {
  color: #626365;
}
@media (min-width: 768px) {
  #section-7 .box {
    margin-bottom: 0;
  }
}

#section-8 {
  background-image: url(../images/backgrounds/background-blur.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 80px;
}
#section-8 h3 {
  margin-top: 0;
}
@media (min-width: 768px) {
  #section-8 h3 {
    margin-top: 160px;
  }
}
#section-8 form {
  padding: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
#section-8 form small,
#section-8 form .form-check-label {
  color: white;
  font-size: 12px;
}
#section-8 form small a,
#section-8 form .form-check-label a {
  color: white;
  text-decoration: underline;
}
#section-8 .form-control {
  border: none;
  font-size: 14px;
  padding: 0.75rem 1rem;
}
#section-8 .btn {
  background-color: #124e89;
  color: white;
  display: block;
  margin: 20px auto -70px;
  padding: 15px 0;
  width: 200px;
}
#section-8 .btn:hover {
  background-color: #0c345c;
}
@media (min-width: 768px) {
  #section-8 {
    padding: 80px 0;
  }
}

#section-9 {
  padding: 40px 0;
}

#map {
  height: 80vh;
}
#map h5 {
  color: #124e89;
  font-weight: 700;
}
#map p {
  margin-bottom: 0;
}
#map p a {
  color: #626365;
  font-weight: 700;
}
@media (min-width: 768px) {
  #map {
    height: 40vh;
  }
}

#section-10 {
  padding: 40px 0;
}
#section-10 h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  #section-10 h3 {
    font-size: 1.75rem;
  }
}
#section-10 .form-group {
  margin-top: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  #section-10 .form-group {
    margin-top: 0;
    width: calc(100% - 210px);
  }
}
#section-10 .form-control {
  border: none;
  font-size: 14px;
  height: 56px;
  padding: 0.75rem 1rem;
  width: 100%;
}
#section-10 .btn {
  background-color: #124e89;
  color: white;
  display: block;
  margin-left: 0;
  padding: 15px 0;
  width: 100%;
}
#section-10 .btn:hover {
  background-color: #0c345c;
}
@media (min-width: 768px) {
  #section-10 .btn {
    margin-left: 10px;
    width: 200px;
  }
}
#section-10 .form-check {
  margin-top: 10px;
}
#section-10 .form-check-label {
  color: white;
  font-size: 12px;
}
#section-10 .form-check-label a {
  color: white;
  margin-left: 4px;
  text-decoration: underline;
}

footer {
  font-size: 12px;
  padding: 10px 0;
}
footer a {
  color: #212529;
  text-decoration: underline;
}
footer a:hover {
  color: #212529;
}

.c-new-newsletter .form-control {
  margin-bottom: 15px !important;
}

.c-message.c-message--success {
  display: block;
  margin-top: 10px;
  background: #30cb30;
  width: fit-content;
  padding: 10px;
  border-radius: 10px;
}
.c-form--lp-contact .c-message.c-message--success {
  margin-top: 100px;
}

.c-input-feedback {
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 100%;
  font-size: 12px;
  color: #a00;
}

.newsletter-input{
  position: relative;
}

.newsletter-input .c-input-feedback{
  top: 0px;
}

.form-check .c-input-feedback{
  top: -15px;
}
/*# sourceMappingURL=styles.css.map */
