@charset "UTF-8";
.site-header {
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Barlow";
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 3;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.site-header_logo {
  flex-shrink: 0;
  width: 50px;
}
.site-header_nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header .navbar-toggler {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}
.site-header .navbar-toggler:focus-visible {
  outline: 2px solid rgb(var(--color-6));
  outline-offset: 2px;
  border-radius: 6px;
}
.site-header .navbar-toggler-icon {
  display: block;
  width: 28px;
  height: 2px;
  background: #000;
  position: relative;
}
.site-header .navbar-toggler-icon::before, .site-header .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #000;
}
.site-header .navbar-toggler-icon::before {
  top: -8px;
}
.site-header .navbar-toggler-icon::after {
  top: 8px;
}

@media (max-width: 900px) {
  .site-header_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    padding: 14px 16px;
  }
  .site-header_nav .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .site-header_nav .main-nav > li,
  .site-header_nav .main-nav > li > a,
  .site-header_nav .main-nav > li > .nav-toggle {
    width: 100%;
  }
  .site-header_nav .main-nav > li > a,
  .site-header_nav .main-nav > li > .nav-toggle {
    height: auto;
    line-height: 1.35;
    padding: 12px 0;
    text-align: left;
  }
  .site-header_nav .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 8px 12px;
    display: none;
  }
  .site-header_nav .main-nav > li.is-open .dropdown {
    display: block;
  }
  .site-header .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header.is-menu-open .site-header_nav {
    display: block;
  }
  .site-header .container {
    justify-content: space-between;
  }
}
.site-footer {
  background: #123c4e;
  color: #fff;
  padding: 5rem 3rem 2rem;
}
.site-footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
.site-footer a:hover {
  opacity: 0.8;
}

.site-footer_top {
  display: flex;
  justify-content: space-between;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 2rem;
  margin: 0 3rem 1rem;
}

.site-footer_logo img,
.site-footer_partner img {
  max-width: 170px;
  width: 100%;
  height: auto;
}

.site-footer_partner {
  display: flex;
  justify-content: flex-end;
}

.site-footer_nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.site-footer_nav .main-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer_nav .main-nav > li > a,
.site-footer_nav .main-nav > li > .nav-toggle,
.site-footer_nav .main-nav a {
  color: #fff;
  transition: none;
}
.site-footer_nav .main-nav > li > a:hover,
.site-footer_nav .main-nav > li > .nav-toggle:hover,
.site-footer_nav .main-nav a:hover {
  opacity: 1;
}
.site-footer_nav .main-nav .dropdown a {
  color: #212529;
}

.site-footer_partners {
  margin-bottom: 60px;
}
.site-footer_partners ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer_partners img {
  width: 140px;
  border-radius: 12px;
  background: #fff;
}

.site-footer_social {
  text-align: center;
  margin-bottom: 50px;
}
.site-footer_social h3 {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.social-link-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-link-list li {
  list-style: none;
}
.social-link-list a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0d4b63;
  transition: 0.25s;
}
.social-link-list a:hover {
  transform: translateY(-4px);
}
.social-link-list img,
.social-link-list svg {
  width: 24px;
  height: 24px;
}
.social-link-list svg,
.social-link-list svg path,
.social-link-list svg g,
.social-link-list svg circle,
.social-link-list svg rect,
.social-link-list svg polygon {
  fill: #004f5a;
  stroke: #004f5a;
}

.site-footer_bottom {
  text-align: center;
  margin: 0 0 3rem;
}
.site-footer_bottom ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer_bottom li {
  list-style: none;
}
.site-footer_bottom a {
  color: #fff;
}
.site-footer_bottom .legal-link-list li {
  font-size: 0.95rem;
}

.site-footer_legal {
  margin: 0 3rem;
}
.site-footer_legal p {
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 2.5rem 1rem 1rem;
  }
  .social-link-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .site-footer_top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .site-footer_logo,
  .site-footer_partner {
    justify-content: center;
  }
  .site-footer_nav .main-nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }
  .site-footer_nav .main-nav > li,
  .site-footer_nav .main-nav > li > .nav-toggle,
  .site-footer_nav .main-nav > li > a {
    width: 100%;
  }
  .site-footer_nav .main-nav > li > .nav-toggle,
  .site-footer_nav .main-nav > li > a {
    display: block;
    height: auto;
    line-height: 1.35;
    text-align: center;
    padding: 10px 0;
  }
  .site-footer_nav .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 4px;
    display: none;
  }
  .site-footer_nav .main-nav .dropdown a {
    color: #fff;
    display: block;
    text-align: center;
    padding: 8px 0;
  }
  .site-footer_nav .main-nav > li.is-open .dropdown {
    display: block;
  }
  .site-footer_partners ul {
    gap: 16px;
  }
  .site-footer_partners img {
    width: 110px;
  }
  .site-footer_bottom ul {
    flex-direction: column;
    gap: 0.75rem;
  }
  .site-footer_legal {
    margin: 0 1.5rem;
  }
}
.funding-form-section {
  width: 100%;
  padding: 0 20px 60px;
}

.funding-form-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.funding-form-title {
  margin: 0 auto 5px;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.funding-form-intro {
  max-width: 430px;
  margin: 0 auto 5px;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.funding-form-required {
  max-width: 430px;
  margin: 0 auto 30px;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 9px;
  font-style: italic;
}

.form-stage {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-stage-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 36px;
  padding: 22px 26px;
  border: 0;
  border-radius: 7px;
  background: #0d3b66;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.stage-title {
  display: block;
}

.form-stage-body {
  position: relative;
  padding: 30px;
  background: #fff;
}
.form-stage-body.is-hidden {
  display: none;
}

.funding-fields {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px 30px;
}

.funding-field label {
  margin-bottom: 7px;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
.funding-field label span {
  font-weight: 400;
}
.funding-field.input-sm {
  width: 230px;
}
.funding-field.input-md {
  width: 282px;
}
.funding-field.input-lg {
  width: 442px;
}
.funding-field.input-full {
  width: 100%;
  border-radius: 22px !important;
}

.multiple-select {
  max-height: 165px;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 5px 0;
  border: 1px solid rgb(var(--color-1));
  border-radius: 21px;
  background: #fff;
  scrollbar-width: thin;
}

.multiple-select-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 30px;
  margin: 0;
  padding: 3px 9px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.3;
  color: rgb(var(--color-1));
}
.multiple-select-option:hover {
  background: #f3f3f3;
}
.multiple-select-option input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
  cursor: pointer;
}
.multiple-select-option span {
  font-size: 14px;
  line-height: 1.3;
}

.error-field {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.funding-checkbox-field {
  width: 100%;
  margin: 4px 0 12px;
}
.funding-checkbox-field label {
  display: flex;
  align-items: center;
  gap: 7px;
  width: auto;
  margin: 0;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}
.funding-checkbox-field input[type=checkbox] {
  position: static;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 1px solid rgb(var(--color-1)) !important;
  border-radius: 0 !important;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 20px;
  cursor: pointer;
}
.funding-checkbox-field input[type=checkbox]:checked {
  background: rgb(var(--color-1));
}
.funding-checkbox-field input[type=checkbox]:checked::after {
  content: "✓";
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.funding-input-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid rgb(var(--color-1));
  border-radius: 999px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
  transition: height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.funding-input-wrapper input {
  position: relative;
  display: block;
  width: 100%;
  height: 43px;
  box-sizing: border-box;
  margin: 0;
  padding: 6px 18px;
  border: 0 !important;
  border-radius: 999px;
  background: #fff;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  outline: none;
  box-shadow: none !important;
  z-index: 2;
}

.funding-input-wrapper input:focus {
  border: 0 !important;
  outline: none;
  box-shadow: none !important;
}

.funding-input-wrapper select {
  display: block;
  width: 100%;
  height: 43px;
  box-sizing: border-box;
  padding: 0 40px 0 18px;
  border: 0 !important;
  border-radius: 999px;
  background-color: #fff;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  outline: none;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23123c4e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.funding-input-wrapper textarea {
  display: block;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 16px;
  border: 0;
  border-radius: 18px !important;
  background: #fff;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  outline: none;
  resize: vertical;
}

.funding-input-wrapper .error-msg {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 41px;
  box-sizing: border-box;
  align-items: center;
  padding: 0 14px;
  background: rgb(var(--color-9));
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 0 21px 21px;
  z-index: 1;
}

.error-field.has-error .funding-input-wrapper {
  height: 84px;
  background: rgb(var(--color-9));
  border-color: rgb(var(--color-9));
  border-radius: 22px;
}
.error-field.has-error .funding-input-wrapper input {
  height: 43px;
  border: 1px solid rgb(var(--color-9)) !important;
  border-radius: 999px;
  background: #fff;
}
.error-field.has-error .error-msg {
  display: flex;
}

.funding-field.input-full {
  width: 100%;
  grid-column: 1/-1;
  border-radius: 22px !important;
}
.funding-field.input-full .error-field {
  width: 100%;
  border-radius: 18px;
}
.funding-field.input-full .funding-input-wrapper {
  position: relative;
  width: 100%;
  height: 161px;
  border: 1px solid rgb(var(--color-1));
  border-radius: 18px !important;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.funding-field.input-full textarea {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 16px;
  border: 0 !important;
  border-radius: 18px !important;
  background: #fff;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  outline: none;
  resize: none;
  box-shadow: none !important;
}
.funding-field.input-full .error-msg {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 41px;
  box-sizing: border-box;
  align-items: center;
  padding: 0 14px;
  background: rgb(var(--color-9));
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 0 17px 17px;
}
.funding-field.input-full .error-field.has-error .funding-input-wrapper {
  height: 161px;
  background: rgb(var(--color-9));
  border-color: rgb(var(--color-9)) !important;
  border-radius: 18px !important;
}
.funding-field.input-full .error-field.has-error textarea {
  height: 120px;
  background: #fff;
  border: 0 !important;
  border-radius: 18px !important;
}
.funding-field.input-full .error-field.has-error .error-msg {
  display: flex;
}

.save-stage {
  display: block;
  margin: 20px 0 0 auto;
  padding: 8px 20px;
  border: 1px solid rgb(var(--color-1));
  border-radius: 15px;
  background: #fff;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.save-stage:hover {
  background: rgb(var(--color-1));
  color: #fff;
}

.funding-newsletter {
  margin: 12px 0 20px;
}
.funding-newsletter label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(var(--color-1));
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.funding-newsletter input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
}
.funding-newsletter input[type=checkbox]:checked::after {
  content: "✓";
  display: block;
  color: #fff;
  background: rgb(var(--color-1));
  font-size: 14px;
  text-align: center;
}

.funding-submit {
  display: flex;
  justify-content: center;
}

.funding-submit-button {
  padding: 10px 24px;
  border: 0;
  border-radius: 16px;
  background: rgb(var(--color-6));
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.funding-submit-button[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.55;
}
.funding-submit-button:not([aria-disabled=true]):hover {
  background: #ed8b20;
}

@media (max-width: 600px) {
  .input-sm,
  .input-md,
  .input-lg {
    width: 100%;
    max-width: 100%;
  }
}
.partner-form {
  position: relative;
  width: 100%;
  margin-top: 200px;
  padding: 60px 20px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.partner-form-container {
  max-width: 681px;
  margin: 0 auto;
  padding: 50px 80px;
  margin: -200px auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-form-heading {
  color: rgb(var(--color-1));
  text-align: center;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}
.partner-form-heading p {
  margin: 0;
}

.partner-form-introduction {
  margin-bottom: 8px;
  color: rgb(var(--color-1));
  font-size: 16px;
  line-height: 1.55;
}
.partner-form-introduction p {
  margin: 0 0 8px;
}
.partner-form-introduction strong {
  font-weight: 700;
}

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

.partner-form-field {
  margin-bottom: 13px;
}
.partner-form-field label {
  display: block;
  margin-bottom: 6px;
  color: rgb(var(--color-1));
  font-size: 16px;
  line-height: 1.3;
}
.partner-form-field input {
  width: 100%;
  height: 33px;
  padding: 6px 14px;
  border: 1px solid rgb(var(--color-1));
  border-radius: 20px;
  background: #fff;
  color: rgb(var(--color-1));
  font-size: 16px;
  outline: none;
}
.partner-form-field input:focus {
  border-color: rgb(var(--color-1));
}

.partner-form-terms {
  width: 100%;
  margin: 4px 0 20px;
}
.partner-form-terms .partner-form-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
}
.partner-form-terms input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgb(var(--color-1));
  border-radius: 2px;
  background: #fff;
  flex: 0 0 13px;
  appearance: auto;
}
.partner-form-terms .partner-form-terms-text {
  flex: 1;
  color: rgb(var(--color-1));
  font-size: 16px;
  line-height: 1.4;
}
.partner-form-terms .partner-form-terms-text p {
  display: inline;
  margin: 0;
}
.partner-form-terms .partner-form-terms-text a {
  color: rgb(var(--color-1));
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.partner-form-terms .partner-form-error {
  display: none;
  width: 100%;
  margin-top: 5px;
  padding: 6px 10px;
  color: rgb(var(--color-9));
  background-color: #fff;
  border-radius: 0 0 14px 14px;
  font-size: 16px;
  line-height: 1.3;
  box-sizing: border-box;
}
.partner-form-terms .partner-form-error.visible {
  display: block;
}

.partner-form-terms.has-error .partner-form-error {
  display: block;
}

.partner-form-submit {
  display: block;
  width: fit-content;
  min-width: 92px;
  margin: 0 auto;
  padding: 9px 26px;
  border: 0;
  border-radius: 22px;
  background: rgb(var(--color-6));
  color: rgb(var(--color-1));
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.partner-form-submit:hover {
  opacity: 0.9;
}
.partner-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.partner-form-field {
  margin-bottom: 13px;
}
.partner-form-field label {
  display: block;
  margin-bottom: 6px;
  color: rgb(var(--color-1));
  font-size: 16px;
  line-height: 1.3;
}
.partner-form-input-wrapper {
  border-radius: 0 0 16px 16px;
}
.partner-form-field.has-error .partner-form-input-wrapper {
  background: rgb(var(--color-9));
  padding-bottom: 8px;
  border-radius: 22px;
}
.partner-form-field.has-error input {
  border-color: rgb(var(--color-9));
  background: #fff;
}
.partner-form input {
  width: 100%;
  height: 33px;
  padding: 6px 14px;
  border: 1px solid rgb(var(--color-1));
  border-radius: 20px;
  background: #fff;
  color: rgb(var(--color-1));
  font-size: 16px;
  outline: none;
}
.partner-form input:focus {
  border-color: rgb(var(--color-1));
}
.partner-form-error {
  display: none;
  padding: 4px 8px 0;
  border-radius: 22px;
  color: #fff;
  background: rgb(var(--color-9));
  font-size: 16px;
  line-height: 1.3;
}
.partner-form-error.visible {
  display: block;
}
.partner-form-terms.has-error .partner-form-error {
  display: block;
  margin-top: 4px;
  border-radius: 22px;
  padding: 5px 8px;
  font-weight: 500;
  color: rgb(var(--color-9));
  background: #fff;
}

.partner-form-success {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 40px 30px;
  color: rgb(var(--color-1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partner-form-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.partner-form-success .success-envelope {
  position: relative;
  display: block;
  width: 38px;
  height: 27px;
  border: 1.5px solid rgb(var(--color-1));
  border-radius: 3px;
  box-sizing: border-box;
}
.partner-form-success .success-envelope::before, .partner-form-success .success-envelope::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 22px;
  height: 1.5px;
  background: rgb(var(--color-1));
}
.partner-form-success .success-envelope::before {
  left: 0;
  transform: rotate(34deg);
  transform-origin: left center;
}
.partner-form-success .success-envelope::after {
  right: 0;
  transform: rotate(-34deg);
  transform-origin: right center;
}
.partner-form-success .success-check {
  position: absolute;
  z-index: 2;
  top: -9px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4bc23b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.partner-form-success h3 {
  margin: 0 0 4px;
  color: rgb(var(--color-1));
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.partner-form-success p {
  margin: 0 auto 6px;
  max-width: 520px;
  color: rgb(var(--color-1));
  font-size: 16px;
  line-height: 1.5;
}
.partner-form-success p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .partner-form {
    padding: 40px 15px;
    background-color: rgb(var(--color-7));
  }
  .partner-form-container {
    padding: 35px 25px;
    margin: 0 auto;
    border-radius: 16px;
  }
  .partner-form-heading {
    font-size: 1.25rem;
  }
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > li {
  position: relative;
  list-style: none;
}
.main-nav > li > a,
.main-nav > li > .nav-toggle {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.main-nav > li > a::before,
.main-nav > li > .nav-toggle::before {
  content: attr(data-text);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-weight: 700;
}
.main-nav > li > a:hover,
.main-nav > li > .nav-toggle:hover {
  font-weight: 700;
}
.main-nav .active > a,
.main-nav .active > .nav-toggle,
.main-nav .nav-toggle[aria-expanded=true] {
  font-weight: 700;
}
.main-nav .nav-toggle {
  display: inline-block;
  line-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.main-nav .nav-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  padding-inline-start: 0;
}
.main-nav .dropdown li {
  list-style: none;
}
.main-nav .dropdown a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
}
.main-nav .dropdown a:hover {
  font-weight: 700;
}
.main-nav .dropdown .active > a {
  font-weight: 700;
}
.main-nav > li.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-banner-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 6.5rem 0 0;
}

.hero-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 730px;
  max-width: 1320px;
}
.hero-banner .hero-background {
  background-color: #123c4e;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 730px;
  width: 100%;
}
.hero-banner .hero-content {
  padding: 0 2rem 0 5rem;
}
.hero-banner .hero-content p {
  color: #fff;
  font-size: 2.5rem;
  padding: 0 1rem 0 0;
}
.hero-banner .hero-content .hero-logo {
  margin-bottom: 3.5rem;
}
.hero-banner .hero-image {
  display: flex;
  align-self: flex-end;
  padding: 0;
}
.hero-banner .hero-image img {
  max-width: 540px;
  border-bottom-right-radius: 20px;
}
.hero-banner h1 {
  color: #fff;
  font-size: 6rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
  }
  .hero-banner {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 530px;
    max-width: 1320px;
  }
  .hero-banner .hero-background {
    background-color: #123c4e;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 530px;
    width: 100%;
  }
  .hero-background {
    flex-direction: column;
  }
  .hero-background .hero-image img {
    max-width: 260px;
  }
  .hero-banner h1 {
    font-size: 3rem;
    text-align: center;
  }
  .hero-banner .hero-content {
    padding: 2rem 1.5rem 0;
  }
  .hero-banner .hero-content .hero-logo {
    margin-bottom: 1.5rem;
  }
  .hero-banner .hero-content .hero-logo img {
    margin: 0 auto;
    max-width: 150px;
  }
  .hero-banner .hero-content p {
    font-size: 1.5rem;
    text-align: center;
  }
}
.page-introduction {
  width: 100%;
  max-width: 648px;
  text-align: center;
  padding-top: 7.5rem;
  margin: 0 auto;
}
.page-introduction h1 {
  font-weight: 700;
}
.page-introduction .page-introduction_subTitle h2 {
  font-size: 32px;
  font-weight: 300;
  color: #212529;
  line-height: 2.4rem;
}
.page-introduction .page-introduction_subTitle {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.page-introduction .page-introduction_content {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .page-introduction {
    margin: 5.5rem auto 0;
    padding: 0 1.5rem;
  }
  .page-introduction .page-introduction_subTitle h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}
.funding-wrapper {
  position: relative;
  width: 900px;
  height: 900px;
  margin: 70px auto;
  overflow: visible;
  font-family: "Barlow";
  font-size: 16px;
}
.funding-wrapper .body-title {
  font-weight: 700;
}
.funding-wrapper p {
  font-family: "Barlow";
  font-size: 16px;
}

.funding-circle {
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: #123f50;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-orange,
.dot-navy,
.dot-yellow {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
}

.dot-orange {
  width: 300px;
  top: 100px;
  left: -90px;
  z-index: 1;
}

.dot-navy {
  width: 140px;
  top: -20px;
  left: 120px;
  z-index: 1;
}

.dot-yellow {
  width: 180px;
  right: -40px;
  bottom: 120px;
  z-index: 1;
}

.funding-content {
  width: 510px;
  color: #fff;
  z-index: 5;
  position: relative;
}
.funding-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}
.funding-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 49px;
  margin-top: 55px;
}

.stat {
  flex: 1;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.stat span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .funding-wrapper {
    width: 700px;
    height: 700px;
  }
  .funding-circle {
    width: 700px;
    height: 700px;
  }
  .funding-content {
    width: 400px;
  }
  .funding-content h2 {
    font-size: 30px;
  }
  .funding-content p {
    font-size: 16px;
  }
  .dot-orange {
    width: 180px;
    left: -60px;
  }
  .dot-yellow {
    width: 140px;
  }
  .dot-navy {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .funding-wrapper {
    width: 100%;
    height: auto;
    margin: 60px auto;
    padding: 0 1.5rem;
  }
  .funding-circle {
    width: 100%;
    padding: 0 1.5rem;
    height: auto;
    min-height: 560px;
    border-radius: 40px;
    padding: 50px 30px;
  }
  .funding-content {
    width: 100%;
    text-align: center;
  }
  .stats {
    flex-direction: column;
    gap: 25px;
  }
  .dot-orange,
  .dot-navy,
  .dot-yellow {
    display: none;
  }
}
.partner-logo-block {
  width: 100%;
  max-width: 992px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 30px;
}
.partner-logo-block h2 {
  color: rgb(var(--color-1));
  margin-bottom: 1rem;
}

.partner-logo-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.partner-logo-item {
  width: 100%;
  max-width: 220px;
  height: auto;
  justify-self: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 3/2;
  padding: 10px;
}

.partner-logo-content {
  width: 100%;
  max-width: 500px;
  margin-bottom: 1rem;
}
.partner-logo-content p {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .partner-logo-block {
    padding: 0 2rem;
  }
}
@media (max-width: 576px) {
  .partner-logo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-logo-block {
    padding-inline: 1.5rem;
  }
}
.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

.service-section-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.service-section-title h1,
.service-section-title h2,
.service-section-title h3,
.service-section-title h4,
.service-section-title h5,
.service-section-title h6 {
  margin: 0;
  color: rgb(var(--color-1));
  line-height: 1.2;
}

.service-card {
  text-align: center;
}
.service-card .service-image {
  margin: 0 auto 24px;
  display: block;
  object-fit: contain;
  border-radius: 11px;
}
.service-card .service-icon {
  width: 48px;
  height: 62px;
  margin: 0 auto 15px;
  display: block;
  object-fit: contain;
}
.service-card h3 {
  margin: 0 0 16px;
  color: rgb(var(--color-1));
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.service-card .service-description {
  color: #212529;
  font-size: 16px;
}
.service-card .service-description p {
  margin: 0 0 12px;
}
.service-card .service-description p:last-child {
  margin-bottom: 0;
}

.service-section--vertical {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-section--vertical .service-card {
  display: grid;
  grid-template-columns: minmax(0, 219px) minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  text-align: left;
}
.service-section--vertical .service-card .service-card-content {
  border-left: 1px solid rgba(var(--color-1), 0.2);
  padding: 20px 0 20px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-section--vertical .service-card .service-icon,
.service-section--vertical .service-card .service-image {
  width: 100%;
  max-width: 219px;
  height: auto;
  margin: 0;
  align-self: center;
}
.service-section--vertical .service-card h3 {
  margin-bottom: 12px;
}
.service-section--vertical .service-card .service-description {
  line-height: 1.6;
}
.service-section--vertical .service-card--no-icon {
  grid-template-columns: 1fr;
}
.service-section--vertical .service-card--no-icon .service-card-content {
  border-left: 0;
  padding-left: 0;
}

@media (max-width: 991px) {
  .service-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
  .service-section--vertical {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .service-section-title {
    margin-bottom: 24px;
  }
  .service-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 20px;
  }
  .service-card .service-icon {
    width: 48px;
    height: 62px;
    margin-bottom: 20px;
  }
  .service-section--vertical {
    gap: 30px;
  }
  .service-section--vertical .service-card {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
    text-align: center;
  }
  .service-section--vertical .service-card .service-card-content {
    border-left: 0;
    padding: 0;
    text-align: center;
    min-height: 50px;
  }
  .service-section--vertical .service-card .service-icon,
  .service-section--vertical .service-card .service-image {
    width: 100%;
    max-width: 219px;
    height: auto;
    margin: 0 auto;
    align-self: center;
  }
  .service-section--vertical .service-card--no-icon {
    row-gap: 0;
  }
}
.html-text-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 2rem auto 3rem;
  color: rgb(var(--color-1));
  text-align: center;
}
.html-text-wrapper h1 {
  margin-bottom: 1rem;
}

.html-text-wrapper--left {
  text-align: left;
}

.html-text-wrapper--center {
  text-align: center;
}

.content-text-wrapper--left {
  text-align: left;
}

.content-text-wrapper--center {
  text-align: center;
}

.html-text-title {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .html-text-wrapper {
    padding: 0 1rem 0;
    margin: 0 auto 1rem;
  }
}
.content-banner {
  width: 100%;
  padding: 100px 0;
}
.content-banner-container {
  width: 100%;
  max-width: 1200px;
  min-height: 133px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #d9edf7;
}
.content-banner-content {
  flex: 1;
  max-width: 620px;
  color: rgb(var(--color-1));
  font-size: 14px;
  line-height: 1.5;
}
.content-banner-content p {
  margin: 0;
}
.content-banner-content strong {
  font-weight: 700;
}
.content-banner-content a {
  color: rgb(var(--color-1));
  text-decoration: underline;
}
.content-banner-image {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-banner-image img {
  display: block;
  margin-top: -70px;
  width: auto;
  max-width: 300px;
  height: 190px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .content-banner {
    padding: 20px 0;
  }
  .content-banner-container {
    min-height: auto;
    padding: 25px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .content-banner-content {
    max-width: none;
    width: 100%;
    font-size: 14px;
  }
  .content-banner-image {
    display: none;
    flex: none;
    width: 100%;
  }
  .content-banner-image img {
    width: auto;
    max-width: 100%;
    height: 160px;
  }
}
.content-image {
  position: relative;
  width: 100%;
  padding: 70px 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-image-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.content-image-heading {
  color: #fff;
  text-align: center;
  margin: 0 0 50px;
  font-size: 28px;
  font-weight: 700;
}
.content-image-content {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
  gap: 70px;
}
.content-image-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-image-image img {
  display: block;
  width: 100%;
  object-fit: fill;
}
.content-image-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-image-item {
  margin: 0;
}
.content-image-item-title {
  color: #fff;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}
.content-image-item-description {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.content-image-item-description p {
  color: #fff;
  margin: 0;
}

@media (max-width: 767px) {
  .content-image {
    padding: 50px 20px;
  }
  .content-image-heading {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }
  .content-image-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-image-image img {
    max-width: 300px;
  }
  .content-image-items {
    gap: 20px;
  }
}
a[href="/confirmation-page/"] {
  display: none !important;
}

.confirmation-page-body .confirmation-page {
  width: 100%;
  min-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 20px 100px;
  box-sizing: border-box;
  background: #f7f7f7;
}
.confirmation-page-body .confirmation-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.confirmation-page-body .confirmation-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  width: 100%;
}
.confirmation-page-body .confirmation-animation svg {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}
.confirmation-page-body .confirmation-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  text-align: center;
}
.confirmation-page-body .confirmation-content-block {
  width: 100%;
  color: #123c4e;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.confirmation-page-body .confirmation-content-block p {
  margin: 0 0 15px;
}
.confirmation-page-body .confirmation-content-block p:first-child {
  font-size: 28px;
  font-weight: 700;
  color: #123c4e;
}

.container-filter {
  max-width: 1045px;
  width: 100%;
  --bs-bg-opacity: 1;
  margin: 0 auto;
}
.container-filter .article-filter {
  justify-self: start;
  width: 100%;
  border-radius: 0.375rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}
.container-filter .article-filter form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
}
.container-filter .article-filter form > div {
  flex: 1 1 calc(25% - 0.75rem);
  min-width: 0;
}
.container-filter .article-filter form > div:nth-child(5) {
  flex: 0 0 100%;
}
.container-filter .article-filter form > div:nth-child(5) .btn {
  background-color: white;
  padding: 5px 30px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  color: #6c757d;
  border: 1px solid #6c757d;
  font-weight: 400;
  width: 100%;
  max-width: 130px;
  font-size: 16px;
  display: block;
  margin: 10px 0 0;
  text-decoration: none;
}
.container-filter .article-filter form > div:nth-child(5) .btn:hover {
  background-color: #6c757d;
  color: white;
  border-color: #6c757d;
}
.container-filter .article-filter form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.container-filter .article-filter.hide {
  display: none;
}
.container-filter button {
  background-color: rgb(var(--color-1));
  border: none;
  height: 40px;
  padding: 7px 20px;
  color: white;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px 15px;
  cursor: pointer;
  border-radius: 20px;
}

.container-articles {
  max-width: 1045px;
  margin: 0 auto 2rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.article-item {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border-radius: 0.375rem;
}

.card {
  height: 100%;
}

.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-title {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
}
.card-title a {
  color: #212529;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.2;
}

.card-text {
  margin-bottom: 0.5rem;
  color: #212529;
}

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

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: #0d6efd;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #dee2e6;
  --bs-pagination-border-radius: 0.375rem;
  --bs-pagination-hover-color: #0a58ca;
  --bs-pagination-hover-bg: #0a58ca;
  --bs-pagination-hover-border-color: #0a58ca;
  --bs-pagination-focus-color: #0a58ca;
  --bs-pagination-focus-bg: #0a58ca;
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: #212529;
  --bs-pagination-disabled-bg: #212529;
  --bs-pagination-disabled-border-color: #dee2e6;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.disabled > .page-link, .page-link.disabled {
  color: #212529;
  pointer-events: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link {
  color: rgb(var(--color-1));
  min-width: 2.5rem;
  text-align: center;
}

.page-item.active .page-link {
  color: rgb(var(--color-1));
  background: none;
  border-color: rgb(var(--color-1));
}

.page-item.pagination-control .page-link {
  min-width: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
}

.page-link:hover {
  color: rgb(var(--color-1));
}

.page-link:hover {
  z-index: 2;
  color: rgb(var(--color-1));
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .container-articles, .container-filter {
    padding: 0 1.5rem;
  }
  .container-filter .article-filter form > div {
    flex: 1 1 calc(50% - 0.75rem);
  }
}
@media (max-width: 576px) {
  .article-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .container-filter .article-filter form > div {
    flex: 1 1 calc(100% - 0.75rem);
  }
}
.page-introduction.articles {
  margin: 5rem auto 0;
  max-width: unset;
  text-align: left;
  padding: 0 3rem;
}
.page-introduction .back-link {
  font-family: "Barlow";
  font-size: 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  padding: 20px;
}
.page-introduction .article-hero-title {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.article-content-container {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.article-hero-banner {
  max-width: 1000px;
  max-height: 350px;
  display: block;
  margin: 1rem auto 3rem;
}
.article-hero-banner img {
  object-fit: cover;
  border-radius: 0.375rem;
}

@media (max-width: 992px) {
  .page-introduction.articles {
    padding: 0 1.5rem;
  }
  .page-introduction .back-link {
    padding: 20px;
  }
  .page-introduction .article-hero-title h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  .article-hero-banner, .article-content-container {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.single-image-block {
  max-width: 1200px;
  margin: 0 auto 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 576px) {
  .single-image-block {
    padding: 0 1.5rem;
  }
}
.statistics-block {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.statistics-block-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgb(var(--color-2));
  min-height: 320px;
}

.statistics-block-image {
  width: 100%;
  border-radius: 12px;
  height: auto;
  display: block;
}

.statistics-block-overlay {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(92%, 760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  gap: 16px;
}

.statistics-card {
  background: #ffffff;
  width: 100%;
  max-width: 133px;
  box-sizing: border-box;
  border-radius: 14px;
  padding: 25px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.statistics-card > h3 {
  order: 1;
}
.statistics-card > p {
  order: 2;
}
.statistics-card h3 {
  margin: 0 0 6px;
  color: rgb(var(--color-1));
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.statistics-card p {
  margin: 0;
  color: rgb(var(--color-1));
  line-height: 1.5;
  font-size: 0.875rem;
}

.statistics-block-media--no-image {
  min-height: 0;
  background: transparent;
}
.statistics-block-media--no-image .statistics-block-overlay {
  position: static;
  transform: none;
  width: 100%;
}

.stats-cards {
  width: 100%;
  padding: 40px 0;
}
.stats-cards-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  align-items: start;
}

.stats-card {
  min-width: 0;
  text-align: center;
}
.stats-card-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  color: rgb(var(--color-1));
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}
.stats-card-title {
  margin: 28px 0 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.stats-card-description {
  max-width: 240px;
  margin: 0 auto;
  color: #666666;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .stats-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px 25px;
  }
}
@media (max-width: 767px) {
  .statistics-block {
    padding: 30px 20px;
  }
  .statistics-block-media {
    border-radius: 12px;
  }
  .statistics-block-overlay {
    position: static;
    transform: none;
    width: 100%;
    padding: 16px;
  }
  .statistics-card h3 {
    font-size: 24px;
  }
  .stats-cards {
    padding: 30px 20px;
  }
  .stats-cards-container {
    padding: 0;
  }
  .stats-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 15px;
  }
  .stats-card-value {
    min-height: 130px;
    padding: 15px;
    font-size: 34px;
  }
  .stats-card-title {
    margin-top: 18px;
  }
}
.embed-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  overflow-x: auto;
}
.embed-block iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

@media (max-width: 576px) {
  .embed-block {
    padding: 0 1.5rem;
  }
}
body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #efefef;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  background: #fff;
  color: rgb(var(--color-1));
  border: 2px solid rgb(var(--color-1));
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.team-header {
  max-width: 40%;
  margin: 0 auto 60px;
  text-align: center;
  margin: 7.5rem auto 0;
}

.team-section-title {
  margin-bottom: 20px;
}

.team-section-content {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(var(--color-1));
}

.team-section-content p {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  max-width: 1200px;
  margin: 60px auto 40px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
}

.team-name-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.team-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgb(var(--color-1));
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.team-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: rgb(var(--color-1));
}

.team-profile {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.team-left {
  flex: 0 0 420px;
  text-align: center;
}
.team-left .team-name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(var(--color-1));
}

.team-image {
  width: 400px;
  height: 400px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.linkedin-icon-lg {
  width: 28px;
  height: 28px;
}

.team-position {
  margin-top: 10px;
  font-size: 16px;
  color: rgb(var(--color-1));
}

.team-right {
  flex: 1;
}

.who-title {
  margin-bottom: 32px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  color: rgb(var(--color-1));
}

.team-bio {
  font-size: 18px;
  line-height: 1.9;
  color: #000;
}
.team-bio p {
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .team-section-content {
    padding: 0 2rem;
  }
  .team-profile {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .team-left,
  .team-right {
    flex: none;
    width: 100%;
  }
  .team-image {
    width: 260px;
    height: 260px;
  }
  .team-bio {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .team-profile {
    padding: 50px 20px;
  }
  .team-image {
    width: 220px;
    height: 220px;
  }
  .team-name {
    font-size: 16px;
  }
  .who-title {
    font-size: 18px;
  }
  .team-right {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .team-header {
    max-width: 50%;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team-header {
    max-width: 100%;
    margin: 5.5rem auto 0;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-photo {
    width: 120px;
    height: 120px;
  }
}
.newsletter-section {
  background: url("/assets/images/newsletter-bg.svg") center/cover no-repeat;
  padding: 120px 20px 60px;
  position: relative;
  display: flex;
  justify-content: center;
}

.newsletter-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.newsletter-content {
  flex: 1;
  max-width: 560px;
  color: #fff;
}

.newsletter-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}

.newsletter-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
}
.newsletter-description p:last-child {
  margin-bottom: 0;
}

.newsletter-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-form .newsletter-field {
  margin-bottom: 20px;
}
.newsletter-form .newsletter-field label {
  display: block;
  margin-bottom: 8px;
  color: rgb(var(--color-1));
  font-weight: 500;
}
.newsletter-form .newsletter-input {
  border: 1px solid rgb(var(--color-1));
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-form .newsletter-input input {
  width: 100%;
  height: 42px;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: #fff;
}
.newsletter-form .newsletter-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0;
}
.newsletter-form .newsletter-checkbox input {
  margin-top: 4px;
}
.newsletter-form .newsletter-checkbox span {
  color: rgb(var(--color-1));
  font-weight: 700;
  line-height: 1.5;
}
.newsletter-form .newsletter-checkbox a {
  color: rgb(var(--color-1));
  text-decoration: underline;
}
.newsletter-form .newsletter-submit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.newsletter-success {
  padding: 80px 20px;
  text-align: center;
}
.newsletter-success img {
  margin: 0 auto 20px;
}

@media (min-width: 1281px) {
  .newsletter-section {
    background: url("/assets/images/newsletter-bg-lg.svg") center/cover no-repeat;
    padding: 120px 20px;
  }
  .newsletter-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    min-height: 420px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .newsletter-content {
    max-width: 560px;
    padding-left: 40px;
  }
  .newsletter-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .newsletter-description {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .newsletter-card {
    position: absolute;
    right: 0;
    top: 30%;
    width: 100%;
    max-width: 430px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 22px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
  }
}
.error-field {
  position: relative;
  overflow: hidden;
}

.error-field .newsletter-input {
  position: relative;
  height: 43px;
  border: 1px solid #123c4e;
  border-radius: 999px;
  background: #fff;
  transition: all 0.25s ease;
}

.error-field .form-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 43px;
  border: 0;
  outline: 0;
  background: #fff;
  padding: 0 18px;
  border-radius: 999px;
  z-index: 2;
}

.error-field .error-msg {
  display: none;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 0;
  height: 42px;
  background: rgb(var(--color-9));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  align-items: center;
  padding: 0 14px;
  border-radius: 0 0 22px 22px;
  z-index: 1;
}

.error-field.has-error .newsletter-input {
  height: 84px;
  background: rgb(var(--color-9));
  border-color: rgb(var(--color-9));
  border-radius: 22px;
}

.error-field.has-error .form-input {
  top: 0;
  height: 43px;
  border: 1px solid rgb(var(--color-9));
  border-radius: 999px;
}

.error-field.has-error .error-msg {
  display: flex;
}

.privacyCheck {
  font-family: "Barlow";
  font-size: 18px;
  color: rgb(var(--color-1));
  font-weight: 700;
}

#error-privacyCheck {
  display: none;
  color: rgb(var(--color-9));
  padding: 2px 0px;
  border-radius: 6px;
  font-family: "Barlow";
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .newsletter-section {
    background-position: center;
    padding: 70px 20px 50px;
  }
  .newsletter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .newsletter-content {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }
  .newsletter-title {
    justify-items: center !important;
    text-align: center;
    font-size: 42px;
  }
  .newsletter-description {
    text-align: center;
  }
  .newsletter-card {
    width: 100%;
    max-width: 420px;
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .newsletter-form {
    justify-content: center !important;
  }
}
@media (max-width: 576px) {
  .newsletter-section {
    padding: 60px 16px 40px;
  }
  .newsletter-wrapper {
    gap: 28px;
  }
  .newsletter-content {
    max-width: 100%;
  }
  .newsletter-title {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .newsletter-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .newsletter-card {
    width: 100%;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .newsletter-field {
    margin-bottom: 18px;
  }
  .newsletter-submit {
    text-align: center;
    margin-top: 20px;
  }
  .btn-orange-lg {
    width: 140px;
    height: 48px;
    font-size: 22px;
  }
}
button.btn-orange-lg,
a.btn-orange-lg,
input.btn-orange-lg {
  border-radius: 20px !important;
}

.btn-orange {
  background-color: rgb(var(--color-6));
  border: none;
  border-radius: 20px !important;
  height: 40px;
  padding: 7px 20px;
  color: rgb(var(--color-8));
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-orange:hover {
  background-color: rgb(var(--color-6));
  color: rgb(var(--color-8));
  transform: scale(1.1);
}
.btn-orange:focus {
  background-color: rgb(var(--color-6));
  outline: 1px solid #0d6efd;
  outline-offset: 2px;
}
.btn-orange {
  margin: 4px 2px;
}

.btn-orange-lg {
  background-color: rgb(var(--color-6));
  border: none;
  border-radius: 20px !important;
  height: 48px;
  padding: 7px 20px;
  color: rgb(var(--color-1));
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 23px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-orange-lg:hover {
  background-color: rgb(var(--color-6));
  color: rgb(var(--color-1));
  transform: scale(1.1);
}
.btn-orange-lg:focus {
  background-color: rgb(var(--color-6));
  outline: 1px solid #0d6efd;
  outline-offset: 2px;
}

.button-group-container {
  max-width: 1280px;
  margin: 3rem auto;
  text-align: center;
  justify-content: center;
}
.button-group-container .btn-cta-dynamic {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  border: 1px solid var(--cta-btn-border, transparent);
  border-radius: 20px !important;
  height: 40px;
  padding: 7px 20px;
  margin: 0 2rem;
  color: var(--cta-btn-text, rgb(var(--color-8)));
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.button-group-container .btn-cta-dynamic:hover {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  color: var(--cta-btn-text, rgb(var(--color-8)));
  transform: scale(1.1);
}
.button-group-container .btn-cta-dynamic:focus {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  color: var(--cta-btn-text, rgb(var(--color-8)));
  outline: 1px solid #0d6efd;
  outline-offset: 2px;
}

.btn-cta-dynamic {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  border: 1px solid var(--cta-btn-border, transparent);
  border-radius: 20px !important;
  height: 40px;
  padding: 7px 20px;
  color: var(--cta-btn-text, rgb(var(--color-8)));
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn-cta-dynamic:hover {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  color: var(--cta-btn-text, rgb(var(--color-8)));
  transform: scale(1.1);
}
.btn-cta-dynamic:focus {
  background-color: var(--cta-btn-bg, rgb(var(--color-6)));
  color: var(--cta-btn-text, rgb(var(--color-8)));
  outline: 1px solid #0d6efd;
  outline-offset: 2px;
}

.back-link-wrapper {
  margin: 100px 20px 0 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  color: rgb(var(--color-1));
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: #0d3240;
}

.back-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .back-link {
    padding: 0;
  }
  .button-group-container {
    margin: 0.5rem auto;
  }
  .button-group-container .btn-cta-dynamic {
    margin: 0.5rem 1rem;
  }
}
.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #000;
  width: 1.3rem;
  height: 1rem;
  float: left;
  margin-top: 5px;
}

.form-check-input:checked {
  background-color: #fff;
  border-color: #000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23000' d='M13.485 1.929l-7.071 7.071-3.536-3.536L1.515 6.808l4.95 4.95 8.485-8.485z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.faq-block {
  width: min(100%, 980px);
  margin: 70px auto;
  padding: 0 20px;
}

.faq-title {
  color: rgb(var(--color-1));
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(var(--color-1), 0.1);
  border-radius: 18px;
  overflow: visible;
}

.faq-accordion {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  cursor: pointer;
  list-style: none;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  padding: 15px 24px;
}

.faq-question:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-question:focus-visible {
  outline: 2px solid rgb(var(--color-6));
  outline-offset: 4px;
  border-radius: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: "";
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-accordion[open] .faq-icon::before {
  transform: translate(-50%, -38%) rotate(-135deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon::before {
    transition: none;
  }
}
@media (forced-colors: active) {
  .faq-item {
    border-color: CanvasText;
    box-shadow: none;
  }
  .faq-question:focus-visible {
    outline-color: Highlight;
  }
}
.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  color: rgb(var(--color-8));
  line-height: 1.7;
  padding: 0 24px 20px;
  width: 100%;
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
  margin: 12px 0 0;
  padding-left: 30px;
}

.faq-answer-inner ul {
  list-style-type: disc;
}

.faq-answer-inner ul li::marker {
  color: #000;
}

@media (max-width: 768px) {
  .faq-block {
    margin: 48px auto;
  }
  .faq-question {
    padding: 16px 18px;
  }
  .faq-answer-inner {
    padding: 0 18px 16px;
  }
}
:root {
  --color-1: 18, 60, 78;
  --color-2: 239, 239, 239;
  --color-3: 98, 178, 59;
  --color-4: 251, 188, 51;
  --color-5: 216, 235, 245;
  --color-6: 240, 130, 17;
  --color-7: 0, 100, 105;
  --color-8: 13, 19, 19;
  --color-9: 209,38,26;
}

h1 {
  color: rgb(var(--color-1));
  font-size: 2.5rem;
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

h5 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

li p {
  margin-bottom: 0.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img,
picture {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/images/dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
