/* fonts */
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta_light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta_semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta_extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acta";
  src: url("/career_assets/fonts/acta_black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans";
  src: url("/career_assets/fonts/bentonSans_extralight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans";
  src: url("/career_assets/fonts/bentonSans_light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans";
  src: url("/career_assets/fonts/bentonSans.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Benton Sans";
  src: url("/career_assets/fonts/bentonSans_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* variables */
:root {
  --navy: #011B3D;
  --white: #FFFFFF;
  --cream: #EEEDEA;
  --black: #000000;
  --blue: #0187E8;
  --gray-light: #D9D9D9;
  --gray-body: #4B5563;
  --error: #B42318;
  --font-display: "Acta", Georgia, "Times New Roman", serif;
  --font-body: "Benton Sans", "Helvetica Neue", Arial, sans-serif;
  --container-max: 1200px;
  --radius-sm: 2px;
  --transition: all 0.5s ease;
}

/* general */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0 !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
body {
  overflow-y: auto;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
}
p {
  font-family: var(--font-body);
  line-height: 1.5;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  opacity: 0.8;
}
.text-center {
  text-align: center;
}
.w-100 {
  width: 100%;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
/* buttons */
.outline-cta {
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  background: transparent;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.outline-cta:hover {
  background: var(--white);
  color: var(--navy);
  opacity: 1;
}
.cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray-body);
  justify-content: center;
}
.cta:hover {
  transform: scale(1.1);
}
.cta:hover::before {
  width: 300%;
  height: 300%;
}

/* header */
.header {
  margin-top: 30px;
  padding: 250px 0 0 0;
  border-radius: 30px;
  position: relative;
  min-height: 750px;
}
.site-nav {
  background-color: var(--navy);
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.site-nav__container {
  height: 100%;
}
.site-nav .row {
  height: 100%;
}
.site-nav__logo {
  display: block;
  width: 230px;
  height: auto;
  filter: brightness(0) invert(1);
}
/* hero */
.hero {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.hero .row {
  position: relative;
  z-index: 33;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 110%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 27, 61, 0.98) 0%,
    rgba(1, 27, 61, 0.90) 18%,
    rgba(1, 27, 61, 0.62) 37%,
    rgba(1, 27, 61, 0.24) 58%,
    rgba(1, 27, 61, 0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--container-max));
  margin-inline: auto;
}
.hero__content {
  max-width: 700px;
}
.hero__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1;
  max-width: 585px;
  font-weight: 400;
  text-wrap: balance;
}
.hero h1 span {
  font-weight: 700;
}
.hero__title {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 40px;
  max-width: 520px;
}
.message_hero_title {
  margin-bottom: 20px;
}
.hero__content p {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.1;
  margin-bottom: 50px;
  text-wrap: balance;
}
.header_logo {
  width: 240px;
  margin-bottom: 50px;
  filter: brightness(0) invert(1);
}
.hero__event {
  display: flex;
  gap: 45px;
  margin-bottom: 65px;
}
.event-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.event-detail__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.event-detail__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.1;
  color: var(--white);
}
.hero__actions {
  display: flex;
}
.hero__actions .outline-cta {
  min-width: 220px;
}
/* form box */
.form-box {
  padding: 20px 0 80px 0;
  background-color: var(--white);
}
.form-box__wrapper {
  width: 100%;
}
.form-box__container {
  max-width: var(--container-max);
  margin-inline: auto;
  width: min(calc(100% - 40px), var(--container-max));
}
.form-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 515px;
  align-items: stretch;
}
.form-box__image-col {
  position: relative;
  overflow: hidden;
  height: 555px;
}
.form-box__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.form-box__form-col {
  background-color: var(--cream);
  padding: 50px 55px;
  display: flex;
  flex-direction: column;
}
.form-box__header {
  text-align: center;
  margin-bottom: 32px;
}
.form-box__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-box__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.1;
  color: var(--navy);
  text-wrap: balance;
}
.form-box__form-wrapper {
  width: 100%;
}
.form-box__form-wrapper form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
/* section1 */
.section1 {
  padding-block: 80px;
  background-color: var(--white);
}
.section1 .container {
  position: relative;
  z-index: 33;
}
.section1__container {
  width: min(calc(100% - 40px), var(--container-max));
  margin-inline: auto;
}
.section1__header {
  text-align: center;
  margin: 0 auto 60px auto;
  width: 760px;
  max-width: 100%;
}
.section1__title {
  font-size: 40px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section1__intro {
  font-size: 18px;
  line-height: 1.2;
  color: var(--gray-body);
  text-wrap: balance;
}
.section1__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.section1__cards-wrapper {
  display: flex;
  flex-direction: column;
}
.section1__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}
.section1__card {
  background-color: var(--cream);
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: var(--radius-sm);
}
.section1__card-title {
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section1__card-text {
  font-size: 15px;
  line-height: 1.1;
  color: var(--black);
}
.section1__media {
  width: 100%;
  height: 400px;
}
.section1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* section2 */
.section2 {
  background-color: var(--navy);
  color: var(--white);
  padding-block: 80px;
}
.section2 button {
  margin: 40px auto 0 auto;
}
.section2 h2 {
  font-size: clamp(30px, 6vw, 45px);
  margin-bottom: 20px;
}
.section2__container {
  width: min(calc(100% - 40px), var(--container-max));
  margin-inline: auto;
}
.section2__header {
  margin: 0 auto 60px auto;
  width: 760px;
  max-width: 100%;
}
.section2__title {
  line-height: 1.1;
  margin-bottom: 16px;
}
.section2__description {
  font-size: 18px;
  line-height: 1.2;
  text-wrap: balance;
}
.section2__candidates {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}
.section2__card {
  width: 100%;
  max-width: 310px;
}
.section2__card-media {
  position: relative;
  background: linear-gradient(180deg, rgba(238, 237, 234, 0.00) 0%, #EEEDEA 78.37%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 345px;
}
.section2__card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.section2__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 58px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 22;
}
.section2__card-name {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 400;
  text-align: center;
  margin: 0;
}
.section2__stats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-block: 50px;
  margin-bottom: 60px;
}
.section2__stats h3 {
  width: 100%;
  text-align: center;
  font-size: clamp(30px, 6vw, 45px);
  margin-bottom: 50px;
}
.section2__stat-item {
  flex: 1;
  text-align: center;
}
.section2__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 8px;
}
.section2__stat-text {
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.85;
}
.section2__actions .section2__cta {
  color: var(--white);
  border-color: var(--white);
  min-width: 220px;
}
.section2__actions .section2__cta:hover {
  color: var(--navy);
}
/* section3 */
.section3 {
  padding-block: 100px 80px;
  background-color: var(--white);
}
.section3 img {
  width: 100%;
}
.section3 h3 {
  color: var(--navy);
  font-size: 25px;
}
.section3__header {
  width: 760px;
  max-width: 100%;
  margin: 0 auto 60px auto;
}
.section3__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 45px);
  line-height: 1.1;
  text-align: center;
  color: var(--navy);
}
.section3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
  width: 100%;
}
.section3__card {
  display: flex;
  flex-direction: column;
}
.section3__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55;
  overflow: hidden;
}
.section3__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.section3__card:hover .section3__card-image img {
  transform: scale(1.03);
}
.section3__card-content {
  padding-top: 25px;
  text-align: center;
}
.section3__card-name {
  font-family: var(--font-body);
  font-size: 25px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}
/* form */
#contactform {
  height: 100%;
}
#contactform h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  margin-bottom: 20px;
}
#contactform h3 span {
  font-weight: 700;
}
#contactform h5 {
  font-size: 20px;
  font-weight: 400;
  margin: 5px auto;
}
#contactform h6 {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 30px;
}
#contactform hr {
  width: 230px;
  height: 4px;
  opacity: 1;
  margin: 0 auto 10px auto;
  border: none;
}
#contactform .row {
  justify-content: space-between !important;
  gap: 20px 0;
}
#contactform .row .col-12 {
  padding: 0;
}
.form-step {
  display: none;
}
.form-step.active {
  display: flex;
  flex-direction: column;
}
.form-step h5 {
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 6px;
  margin-bottom: 25px;
}
.form-step img {
  margin-bottom: 20px;
}
.form-step h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
  margin: 10px auto 20px auto;
}
.form-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-cta {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 30px;
}
.form-input, .form-select {
  width: 48%;
  border: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  padding: 0;
  font-family: var(--font-body);
  font-size: 15px;
  box-shadow: none;
  outline: none;
}
/*.form-input:first-of-type {
  width: 100%;
}*/
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(1, 27, 61, 0.4);
}
:-moz-placeholder {
  color: rgba(1, 27, 61, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(1, 27, 61, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(1, 27, 61, 0.4);
}
::-ms-input-placeholder {
  color: rgba(1, 27, 61, 0.4);
}
::placeholder {
  color: rgba(1, 27, 61, 0.4);
}
.form-input input {
  width: 100%;
  height: 40px;
  padding: 0 0 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0px;
  font-size: 16px;
}
.form-input input:focus-visible {
  outline: none !important;
}
.form-input label {
 display: none;
}
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-inputs input:focus-visible {
  outline: none !important;
}
.form-inputs p strong {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
}
.form-upload, .time-select {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0 0;
  flex-wrap: wrap;
}
.file-list, .file-list p {
  width: 100% !important;
}
.file-list p {
  text-align: right;
  font-size: 10px;
  margin-top: 10px;
}
#cv-upload, #foto-upload {
  display: none;
}
.form-upload p, .form-upload label, .time-select p, .time-selects {
  width: 48%;
}
.form-upload p, .time-select p {
  line-height: 1.1;
}
.form-upload p span, .time-select p span {
  font-size: 10px;
}
.time-toggle {
  width: 100%;
  height: 45px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--navy);
  text-align: left;
  padding: 0;
  color: rgba(1, 27, 61, 0.4);
  overflow: hidden;
}
.time-toggle.selected {
  color: var(--navy);
}
.time-toggle::after {
  display: none;
}
.time-list {
  width: 100%;
  border-radius: 0;
}
.residence-list {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.residence-list::-webkit-scrollbar {
  width: 10px;
}
.residence-list::-webkit-scrollbar-track {
  border-radius: 10px;
}
.residence-list::-webkit-scrollbar-thumb {
  background: rgba(1, 27, 61, 0.3);
  border-radius: 10px;
}
.dropdown-item:hover {
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
}
.upload-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--navy);
  width: 100%;
  height: 45px;
  color: var(--navy);
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.upload-btn:hover {
  background: var(--navy);
  color: var(--white);
}
#cv-upload-error, #foto-upload-error, #hora-error {
  display: none;
}
.form-control-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  margin: 20px auto 0 auto;
}
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  margin-top: 10px;
}
.form-button:hover {
  background-color: var(--white);
  color: var(--navy);
}
.form-check {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.4;
}
.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-check input[type="checkbox"]:checked + .checkmark::after {
  content: "✔";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 1px;
  margin-top: 0px;
  font-size: 11px;
}
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 12px;
  width: 12px;
  border: 1px solid var(--navy);
  background-color: transparent;
  border-radius: var(--radius-sm);
}
.form-check input:checked ~ .radio-label .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
#politica-link {
  text-decoration: none;
}
#politica-link:hover {
  text-decoration: underline;
}
label.error, #termos-error {
  width: 100%;
  text-align: left;
  font-size: 10px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
  color: var(--error);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* footer */
footer .cta {
  font-size: clamp(16px, 2vw, 24px);
}
/* section ads */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Media Queries */
@media only screen and (max-width: 1200px) {
  .hero__brand {
    right: 20px;
  }
  .section1__title {
    font-size: 36px;
  }
  .section1__media {
      height: 500px;
  }
}
@media only screen and (max-width: 1120px) {
    .form-box__image-col {
        height: 600px;
    }
}
@media only screen and (max-width: 992px) {
  .hero__title {
    font-size: 60px;
  }
  .form-box__form-col {
    padding: 40px;
  }
  .section1__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section1__media {
    order: 2;
    height: 350px;
  }
  .section1__cards-wrapper {
    order: 1;
  }
  .section1__header {
    margin-bottom: 40px;
  }
  .section2__stat-number {
    font-size: 48px;
  }
  .section3__grid {
    max-width: 720px;
  }
  #contactform {
    height: auto;
    padding: 40px 30px;
  }
  .form-box__image-col {
    height: 730px;
  }
}
@media only screen and (max-width: 768px) {
  .site-nav {
    height: 65px;
  }
  .site-nav__logo {
    width: 172px;
  }
  .hero {
    min-height: 560px;
    height: auto;
    align-items: flex-start;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(1, 27, 61, 0.93) 0%,
      rgba(1, 27, 61, 0.78) 100%
    );
  }
  .hero__container {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .hero__kicker {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .hero__title {
    font-size: 46px;
    line-height: 44px;
    margin-bottom: 24px;
  }
  .hero__event {
    flex-direction: column;
    gap: 20px;
    margin-bottom: auto;
  }
  .hero__actions {
    width: 100%;
    margin-top: 80px;
  }
  .hero__actions .outline-cta {
    min-height: 52px;
  }
  .form-box {
    padding: 20px 0 0 0;
  }
  .form-box__container {
    width: 100%;
    max-width: none;
  }
  .form-box__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .form-box__image-col {
    height: 240px;
  }
  .form-box__form-col {
    padding: 40px 20px 48px;
  }
  .section1 {
    padding-block: 56px;
  }
  .section1__title {
    font-size: 32px;
  }
  .section1__intro {
    font-size: 16px;
  }
  .section1__card {
    padding: 32px 24px;
  }
  .section1__card-title {
    font-size: 22px;
  }
  .section2 {
    padding-block: 60px;
  }
  .section2__title {
    font-size: 32px;
  }
  .section2__candidates {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .section2__card {
    max-width: 350px;
  }
  .section2__stats {
    flex-direction: column;
    padding-block: 0;
    border-bottom: 0;
  }
  .section2__stat-item {
    padding-block: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .section2__actions .section2__cta {
    margin-top: 24px;
  }
  .section2__stats h3 {
    margin: 50px auto 10px auto; 
  }
  .section3 {
    padding-block: 64px 56px;
  }
  .section3__title {
    line-height: 1.2;
    margin-bottom: 40px;
    padding-inline: 10px;
  }
  .section3__grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: 20px;
  }
  .section3__card-name {
    font-size: 22px;
    font-weight: 600;
  }
  #contactform {
    padding: 40px 20px 48px;
  }
  .form-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .form-cta {
    margin-bottom: 40px;
  }
  .form-button.cta {
    width: 100%;
    max-width: 100%;
  }
  .form-button:not(.cta) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 550px) {
  .section1__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section1__layout {
    gap: 16px;
  }
  .section1__media {
    height: 280px;
  }
  .form-upload p, .time-select p {
    line-height: 1;
  }
  .form-upload p span, .time-select p span {
    font-size: 9px;
  }
  .hero {
    text-align: center;
  }
  .event-detail__text {
    text-align: left;
  }
  .hero__event {
    justify-content: center;
    align-items: center;
  }
  .event-detail {
    width: 230px;
  }
  .hero__actions .outline-cta {
    margin: 0 auto;
  }
  .header_logo {
    margin: 0 auto 40px auto;
  }
}
@media only screen and (max-width: 475px) {
  .hero__title {
    font-size: 40px;
    line-height: 1.1;
  }
  .radio-label {
    font-size: 10px;
  }
  .section2__description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 414px) {
  .form-input, .form-select, .form-upload p, .form-upload label, .time-select p, .time-selects {
    width: 100%;
  }
  .form-upload, .time-select {
    flex-direction: column;
    gap: 10px 0;
  }
  .upload-btn {
    margin-top: 10px;
  }
  .form-upload p span, .time-select p span {
    font-size: 10px;
  }
  #contactform {
    padding: 0 20px 30px 20px;
  }
  .file-list p {
    text-align: left;
  }
}
@media only screen and (max-width: 390px) {
  .form-box__header {
    margin-bottom: 24px;
  }
  .form-box__kicker {
    font-size: 13px;
  }
  .section1 {
    padding-block: 48px;
  }
  .section1__header {
    margin-bottom: 32px;
  }
  .section1__title {
    font-size: 22px;
    line-height: 1.1;
  }
  .section1__intro {
    font-size: 14px;
    line-height: 1.3;
  }
  .section1__card {
    padding: 30px 20px;
  }
  .section1__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .section1__card-text {
    font-size: 14px;
  }
  .section1__media {
    height: 240px;
  }
  .section2__title {
    font-size: 30px;
  }
  .section2__stat-number {
    font-size: 42px;
  }
  .section2__description {
    font-size: 15px;
  }
}
/* modal overide */
.modal-content {
  color: var(--navy) !important;
}
.modal .btn {
  border-radius: 0 !important;
  background: var(--navy) !important;
}
.modal .btn:hover {
  background: var(--blue) !important;
}