.color-gold {
  color: rgb(255, 191, 0) !important;
}

.color-blue {
  color: #16467d !important;
}

.color-white {
  color: #fff !important;
}

.brand {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .brand {
    font-size: 24px;
  }
}

.site-title {
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .site-title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .site-title {
    font-size: 4rem;
  }
}

.site-subtitle {
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  .site-subtitle {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .site-subtitle {
    font-size: 18px;
  }
}

.btn {
  font-weight: 500;
}

.btn-gold {
  border-radius: 0;
  background: rgb(255, 191, 0);
  padding: 10px 50px;
  margin: auto;
  display: inline-block;
  border: 2px solid rgb(255, 191, 0);
  color: #16467d;
}

.btn-blue {
  border-radius: 0;
  background: #16467d;
  padding: 10px 50px;
  margin: auto;
  color: #fff;
  border: 2px solid #16467d;
}

.btn-outline-blue {
  border-radius: 0;
  background: transparent;
  padding: 10px 50px;
  display: inline-block;
  color: #16467d;
  border: 2px solid #16467d;
}
.btn-outline-blue:hover {
  background: #16467d;
  border-color: #16467d;
}

.desktop-only {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .desktop-only {
    display: block !important;
  }
}

header {
  padding-top: 15px;
  background: #16467d;
  background: linear-gradient(60deg, #1e5da5, #112152);
}
@media screen and (min-width: 1200px) {
  header {
    padding-top: 30px;
  }
}
header .site-title {
  color: #fff;
}
header .register-form {
  background: #fff;
  padding: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: -38px;
}
@media screen and (min-width: 1200px) {
  header .register-form {
    padding: 30px;
    margin-bottom: -52px;
  }
}
header .cards {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  header .cards {
    margin-bottom: 0;
  }
}
header .img-badge {
  max-width: 180px;
  margin-bottom: -120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (min-width: 1200px) {
  header .img-badge {
    display: inline-block;
    max-width: 200px;
    margin-bottom: -228px;
    margin-left: unset;
    margin-right: unset;
  }
}

section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-partners {
  padding-top: 80px;
}
@media screen and (min-width: 1200px) {
  .section-partners {
    padding-top: 120px;
  }
}
.section-partners .wrap-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media screen and (min-width: 992px) {
  .section-partners .wrap-partners {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .section-partners .wrap-partners {
    grid-template-columns: repeat(6, 1fr);
  }
}
.section-partners .wrap-partners .partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
}
.section-partners .wrap-partners .partner .img {
  display: block;
  max-height: 100px;
  max-width: 100%;
}

.section-data {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-data {
    text-align: left;
  }
}

.section-far {
  background: #16467d;
}
.section-far h2, .section-far p {
  color: #fff;
}
.section-far .subtitle {
  font-size: 18px;
  font-weight: 500;
}
.section-far .amount-value {
  display: block;
  font-weight: 700;
  font-size: 36px;
  color: rgb(255, 191, 0);
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .section-far .amount-value {
    font-size: 48px;
    text-align: center;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .section-far .amount-value {
    font-size: 64px;
  }
}

.section-stepper {
  background: #16467d;
}
.section-stepper h2, .section-stepper p {
  color: #fff;
}
.section-stepper .wrap-stepper .step:nth-child(n+2) {
  border: 2px solid rgb(255, 191, 0);
  background: #fff;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}
@media screen and (min-width: 1200px) {
  .section-stepper .wrap-stepper .step:nth-child(n+2) {
    padding: 30px;
  }
}
.section-stepper .wrap-stepper .step:first-child {
  text-align: center;
}

.section-services .wrap-services {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}
.section-services .wrap-services .title {
  font-weight: 600;
  color: #16467d;
}
@media screen and (min-width: 576px) {
  .section-services .wrap-services {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .section-services .wrap-services {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.section-services .service {
  background: #fff;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-services .service {
    padding: 30px;
  }
}
.section-services .service img {
  display: inline-block;
  margin-bottom: 15px;
}
.section-services .service .title {
  margin-bottom: 0;
}

.section-how .how {
  border-radius: 5px;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.15);
  padding: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .section-how .how {
    margin: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .section-how .how {
    padding: 30px;
  }
}
.section-how .how .index {
  margin-right: 15px;
  color: #fff;
  width: 32px;
  height: 32px;
  background: #16467d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 20px;
}

footer p {
  color: #fff;
  font-size: 14px;
}
footer .footer-top {
  background: #16467d;
}
footer .footer-bot {
  background: #112152;
}
footer .footer-bot img {
  display: inline-block;
  max-width: 100%;
}

.form-control, .form-select {
  padding: 10px 15px;
  border-radius: 0;
  border-color: #678;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.accordion-button {
  font-weight: 500;
  font-size: 20px;
}
.accordion-button:focus {
  outline: none;
}
.accordion-button:not(.collapsed) {
  background: #fff;
  box-shadow: none;
}

.centered-image {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 150px;
}
@media screen and (min-width: 992px) {
  .centered-image {
    max-width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .centered-image {
    max-width: 250px;
  }
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 191, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 191, 0, 0);
  }
}/*# sourceMappingURL=app.css.map */