@font-face {
  font-family: "Red Hat Display";
  src: url(fonts/Red_Hat_Display/RedHatDisplay-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Red Hat Display";
  font-style: italic;
  src: url(fonts/Red_Hat_Display/RedHatDisplay-Italic-VariableFont_wght.ttf);
}
html {
  height: 100%;
}

body {
  height: auto;
}

body {
  font-family: "Red Hat Display", sans-serif;
  color: #002f73;
  font-size: 18px;
}

#topbar {
  background-color: #002f73;
  color: #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
#topbar .topbar-logo-financor-link {
  display: block;
}
#topbar .topbar-logo-financor-img {
  max-height: 2rem;
}
#topbar .topbar-text-wrapper-text {
  font-weight: 300;
  font-style: italic;
}

#header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  box-shadow: rgba(110, 110, 110, 0.2) 0px 2px 8px 0px;
  font-size: 0.9em;
}
#header .header-logo {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#header .header-logo-img {
  max-width: 100%;
  width: 21.5rem;
}
#header .header-navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#header .header-navbar .nav .nav-link {
  color: #002f73;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}
#header .header-navbar .nav .nav-link::after {
  opacity: 0;
  content: "";
  position: absolute; /* or relative */
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 80%;
  background-color: #ad9657;
  transition: opacity 0.3s linear;
}
#header .header-navbar .nav .nav-link.active, #header .header-navbar .nav .nav-link:hover {
  color: inherit;
  background-color: inherit;
  border: inherit;
}
#header .header-navbar .nav .nav-link.active::after, #header .header-navbar .nav .nav-link:hover::after {
  opacity: 1;
}

.container-small-right {
  max-width: 767px;
  margin: 0 auto 0 0;
}

.content-programa-bottom {
  position: relative;
  overflow: hidden;
}

.content-programa-bottom::before {
  content: "";
  position: absolute;
  left: -53%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(45deg) translate(0%, 50%);
}

.content-programa-bottom::after {
  content: "";
  position: absolute;
  right: -49rem;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(45deg) translate(0%, -50%);
}

.content-programa-top-img-wrapper {
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

@media (max-width: 991px) {
  #header {
    justify-content: center;
  }
  #header .header-navbar .nav {
    justify-content: center;
  }
}
@media (max-width: 620px) {
  #header .header-navbar .nav .nav-item {
    width: 50%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  #header .header-navbar .nav .nav-item .nav-link {
    padding: calc(var(--bs-nav-link-padding-y) / 2) calc(var(--bs-nav-link-padding-x) / 2);
  }
}
#footer {
  border-top: 3rem solid #002f73;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
#footer .footer-top {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
#footer .footer-top-contents-wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  row-gap: 2rem;
}
#footer .footer-top-contents-wrapper-content img {
  max-height: 4rem;
  width: auto;
}
#footer .footer-bottom {
  border-top: 1px solid #ad9657;
  padding-top: 1rem;
}

@media (min-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
.section-heading {
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 2rem;
}
.section-heading::after {
  content: "";
  position: absolute; /* or relative */
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: 100%;
  background-color: #ad9657;
}

.text-custom-color {
  color: #ad9657;
}

p {
  text-align: justify;
}

hr {
  border-color: #ad9657;
  border-top-width: 1px;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: underline;
}

h6, .h6 {
  font-size: 1.125rem;
}

@counter-style custom-letters {
  system: extends lower-alpha;
  suffix: ") ";
}
@counter-style custom-numbers {
  system: extends decimal;
  suffix: " - ";
}
@counter-style custom-letters-upper {
  system: extends upper-alpha;
  suffix: " - ";
}
ol.list-custom-style-letters {
  list-style-type: custom-letters;
}

ol.list-custom-style-numbers, ol.list-custom-style-decimal {
  list-style-type: custom-numbers;
}

ol.list-custom-style-letters-upper {
  list-style-type: custom-letters-upper;
}

ul.list-custom {
  list-style-type: disc;
}
ul.list-custom > li::marker {
  color: #ad9657;
}

.btn.btn-custom-secondary {
  color: #002f73;
  background-color: #fff;
  border-color: #808eb8;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.btn.btn-custom-secondary:hover, .btn.btn-custom-secondary:active, .btn.btn-custom-secondary:focus {
  color: #ad9657;
  border-color: #e0d1a6;
}

.btn-check:checked + .btn-custom-secondary {
  color: #fff;
  background-color: #ad9657;
  border-color: #ad9657;
}

.btn.btn-custom-primary {
  color: #fff;
  background-color: #002f73;
  border-color: #002f73;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.btn.btn-custom-primary:hover, .btn.btn-custom-primary:active, .btn.btn-custom-primary:focus {
  background-color: #ad9657;
  border-color: #ad9657;
}

form .form-control, form input, form select {
  border-radius: 0;
  color: inherit;
}

.form-floating > label {
  max-width: 100%;
  background-color: transparent;
}

.bio-img-wrapper {
  height: 100%;
  text-align: center;
}
.bio-img-wrapper-img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 24em;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  border-top-right-radius: 25%;
  border-bottom-left-radius: 25%;
}

@media (max-width: 767px) {
  .bio-img-wrapper-img {
    width: 100%;
    height: auto;
    max-height: unset;
    position: relative;
  }
}
@media (max-width: 500px) {
  #content-programa .content-programa-top-img-wrapper-img {
    transform: scale(0.95) translateY(2rem) !important;
  }
}
@media (max-width: 440px) {
  #content-programa .content-programa-top-img-wrapper-img {
    transform: scale(0.945) translateY(2.5rem) !important;
  }
}
@media (max-width: 400px) {
  #content-programa .content-programa-top-img-wrapper-img {
    transform: scale(0.93) translateY(2rem) !important;
  }
}
@media (max-width: 370px) {
  #content-programa .content-programa-top > .container {
    transform: unset !important;
  }
  #content-programa .content-programa-top > .container .overlay {
    display: none !important;
  }
}
#abovecontents-banners .abovecontents-banners-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#content-programa {
  margin-bottom: 6rem;
}
#content-programa .content-programa-top-img-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
#content-programa .content-programa-top-img-wrapper-img {
  max-width: 100%;
  position: relative;
}
#content-programa .content-programa-bottom {
  background-color: #002f73;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  color: #fff;
}

#content-programa-regulamento {
  margin-bottom: 6rem;
}

#content-candidaturas {
  margin-bottom: 6rem;
}
#content-candidaturas #formFieldAnexarFicheirosWrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-items: flex-start;
}
#content-candidaturas #formFieldAnexarFicheirosWrapper label {
  margin-right: 0.5rem;
}
#content-candidaturas #formFieldAnexarFicheirosWrapper span {
  display: inline-block;
}
#content-candidaturas #formFieldAnexarFicheirosWrapper input[type=file] {
  display: none !important;
}

@media only screen and (min-width: 2000px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -53%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1920px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -53%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1600px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -60%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1366px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -65%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1333px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -65%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1330px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -65%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -49rem;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: rotate(45deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 1310px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -53%;
    bottom: -75%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -53%;
    top: -75%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 575px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -40%;
    bottom: -100%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -15.85rem;
    top: -85%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(68deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 498px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -40%;
    bottom: -100%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -14.5rem;
    top: -85%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(70deg) translate(0%, -50%);
  }
}
@media only screen and (max-width: 480px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -40%;
    bottom: -100%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -14rem;
    top: -85%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(70deg) translate(-30vw, -50%);
  }
}
@media only screen and (max-width: 370px) {
  .content-programa-bottom::before {
    content: "";
    position: absolute;
    left: -40%;
    bottom: -100%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(77deg) translate(0%, 50%);
  }
  .content-programa-bottom::after {
    content: "";
    position: absolute;
    right: -18rem;
    top: -85%;
    width: 100%;
    height: 200%;
    background-color: #fff;
    transform: rotate(70deg) translate(-65vw, -50%);
  }
}
@media (max-width: 471px) {
  #content-candidaturas .form-floating #formFieldRendimentoAnualPorElementoAgregadoFamiliar {
    height: calc((3.5rem + var(--bs-border-width) * 2) * 1.5);
    padding-top: 3rem;
  }
  #content-candidaturas .form-floating #formFieldRendimentoAnualPorElementoAgregadoFamiliar ~ label {
    word-wrap: normal !important;
    white-space: normal !important;
  }
}
@media (max-width: 460px) {
  #content-candidaturas .form-floating #formFieldEmCasoAfirmativoNomeCompletoColaborador {
    height: calc((3.5rem + var(--bs-border-width) * 2) * 1.5);
    padding-top: 3rem;
  }
  #content-candidaturas .form-floating #formFieldEmCasoAfirmativoNomeCompletoColaborador ~ label {
    word-wrap: normal !important;
    white-space: normal !important;
  }
}
@media (max-width: 386px) {
  #content-candidaturas .form-floating #formFieldClassificacaoAcessoEnsinoSuperior {
    height: calc((3.5rem + var(--bs-border-width) * 2) * 1.5);
    padding-top: 3rem;
  }
  #content-candidaturas .form-floating #formFieldClassificacaoAcessoEnsinoSuperior ~ label {
    word-wrap: normal !important;
    white-space: normal !important;
  }
}
#secRegDAAlert {
  scroll-margin-top: 16rem;
}

#content-contactos {
  margin-bottom: 4rem;
}
#content-contactos .content-contactos-map-wrapper {
  max-width: 100%;
}
#content-contactos .content-contactos-map-wrapper iframe {
  max-width: 100%;
  max-height: 100%;
}/*# sourceMappingURL=custom.css.map */