:root {
  --black: #222222;
  --grey: #f5f5f5;
  --blue: #215bfa;
  --green: #2b7d4b;
  --pink: #ca678f;
  --pink-darken: #ab4d73;
  --black20: rgba(39, 39, 39, 0.2);
  --black40: rgba(39, 39, 39, 0.4);
  --black60: rgba(39, 39, 39, 0.6);
  --white40: rgba(255, 255, 255, 0.4);

  --content-width: min(1520px, 90vw);
  --content-mobile-width: min(768px, 84vw);
  --content-padding-x: max(calc(50vw - 800px), calc(50vw - 700px), calc(5vw - 7px));
  --content-padding: 0 var(--content-padding-x);

  --text-size: min(1.1vw, 16px);

  --shadow: -0.1875rem -0.1875rem 1.25rem 0px rgba(41, 10, 105, 0.05), 0.1875rem 0.1875rem 1.25rem 0px rgba(41, 10, 105, 0.05)
}

@media (max-width: 768px) {
  :root {
    --text-size: 16px;

    --shadow: -1.565px -1.565px 10.435px 0px rgba(41, 10, 105, 0.05), 1.565px 1.565px 10.435px 0px rgba(41, 10, 105, 0.05);
  }
}

html {
  overflow-x: hidden;
  font-size: var(--text-size);
}

body {
  margin: 0;
  font-family: "Mont";
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--grey);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.main-text {
  font-size: 1.25rem;
  margin: 0;
}

.main-text:not(:last-child) {
  margin-bottom: 1.5rem;
}

.semi-bold {
  font-weight: 600;
}

.no-margin {
  margin: 0 !important;
}

.content,
.container {
  width: var(--content-width);
  margin: 0 auto;
}

.text-link {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .text-link {
    font-size: 1rem;
  }

  .main-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (min-width: 520px) {
  .tablet-hide {
    display: none !important;
  }
}

.header-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  place-items: center;
}

.header-logo-wrapper {
  display: flex;
  gap: 1rem;
}
.header-logo {
  width: 8.75rem;
  height: 4rem;
  background-color: white;
  border-radius: 999px;
  padding: 0.75rem;
}

.header-logo--scrolled {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow:
		0 4px 30px rgba(0, 0, 0, 0.1),
		inset -13.84px -13.84px 6.92px -13.84px rgb(255, 255, 255, 1),
		inset 13.84px 13.84px 6.92px -13.84px rgb(255, 255, 255, 1),
		inset 0 0 0 2px rgba(153, 153, 153, 0.2),
		inset 0 0 10px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1600px) {
  .header-logo {
    width: 6.5rem;
    height: 3.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header-layout {
    grid-template-columns: 1fr auto;
    justify-items: start;
  }

  .header-logo-wrapper {
    gap: 0.625rem;
  }

  .header-logo {
    width: 5.25rem;
    height: 2.5rem;
    padding: 0.5rem;
  }
}

/* Sections */

section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section__layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.section__heading {
  font-family: "Halo Grotesk", "Mont", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.section__heading--bright {
  color: white;
}

.columns-layout {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: 1.5rem;
}

.section__title {
  position: relative;
  font-family: "Bounded", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(34, 34, 34, 0.5);
  text-transform: uppercase;
  padding-left: 1rem;
  margin-bottom: 4rem;
}

.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: var(--pink);
}

.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(34, 34, 34, 0.2);
}

@media screen and (min-width: 769px) {
  .section__content {
    grid-column: 3/13;
  }

  .section__content--short {
    grid-column: 3/12;
  }

  .section__heading--vertical {
    max-width: min-content;
    grid-column: 1/2;
    margin: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
  }

  .columns-layout__left {
    grid-column: 1/6;
  }

  .columns-layout__left--edu {
    grid-column: 1/7;
  }

  .columns-layout__right {
    grid-column: 6/11;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  .section__layout {
    display: block;
  }

  .section__title {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .section__title::before {
    top: 8px;
  }

  .section__heading {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .columns-layout {
    grid-template-columns: 1fr;
  }
}

/* Hero */

section#hero {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: min(100vh, 56.25vw);
  padding: 0;
  background:
    url('/img/hero-bg.png') center / cover no-repeat,
    rgb(255, 255, 255);
  color: white;
  border-radius: 0 0 4rem 4rem;
}

.hero__subtitle {
  font-family: "Bounded";
  font-size: 4rem;
  text-align: left;
  font-weight: 400;
  grid-column: 1 / 5;
  margin-top: 5rem;
}
.hero__title {
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-size: 8rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__text {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 8rem;
  margin-bottom: 0;
  grid-column: 12 / 13;
    text-align: right;
    align-self: center;
}

.hero__text-under {
  font-size: 1.5rem;
  line-height: 1.3;
  grid-row: 2 / 3;
  grid-column: 1 / 6;
  text-align: left;
  margin: 0;
}

.hero__outlined {
  display: inline-block;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.3;
  grid-row: 2 / 3;
  grid-column: 9 / 13;
  justify-self: right;
  margin: 0;
  border: 2px solid white;
    /* background:
        linear-gradient(transparent, transparent) content-box,
        linear-gradient(45deg, #f19a10, #25ac5e) border-box; */
  border-radius: 999px;
  padding: 2rem 4rem;
}

.hero__outlined p {
  margin: 0;
}

@media (max-width: 1600px) {
  .hero__title {
    font-size: 7rem;
  }

  .hero__subtitle {
    font-size: 3.5rem;
  }

  .hero__outlined {
    padding: 1.5rem 3rem;
  }
}
@media (max-width: 768px) {
  section#hero {
    height: clamp(600px, calc(100vh - 2rem), 700px);
    height: clamp(600px, calc(100svh - 2rem), 700px);
    padding-bottom: 5.625rem;
    background:
      url('/img/hero-bg-mobile.png') center / cover no-repeat,
      var(--green);
    align-items: end;
    border-radius: 0 0 2rem 2rem;
  }

  .hero__subtitle {
    line-height: 1.5;
    font-size: 1.25rem;
  }
                                                                  
  .hero__title {
    font-size: 3.4rem;
  }

  .hero__text {
    font-size: 1.125rem;
    position: absolute;
    right: 0;
    bottom: 190px;
  }

  .hero__text-under {
    margin-top: 9rem;
    margin-bottom: 3rem;
  }
  
  .hero__outlined {
    padding: 1.5rem 3rem;
  }
}

@media (max-width: 520px) {
  .header__hide {
    display: none;
  }

  .hero__outlined {
    font-size: 0.875rem;
    padding: 1rem 4rem;
  } 

  .hero__text {
    left: 0;
    bottom: 260px;
    text-align: left;
    font-size: 1rem;
  }

  .hero__text-under {
    font-size: 1.25rem;
    text-align: center;
  }
}



/* @media (max-width: 400px) {
  .hero__outlined{
    display: none;
  }
} */
/* About */

section#about {
  padding-bottom: 0;
}

.about__layout {
  background-color: white;
  border-radius: 2.5rem;
  padding: 5rem;
  background-image: url('/img/about-bg.png');
  background-position: 95% 100%;
  background-repeat: no-repeat;
  background-size: 60rem;
}

.about__content {
  display: grid;
  row-gap: 4rem;
}

.about__part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  align-items: start;
}

.about__container {
  gap: 5rem !important;
}

.about__subtitle {
  font-family: "Bounded";
  color: var(--green);
  margin: 0;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.about__text {
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 1.5rem;
}

.about__award {
  font-size: 1.25rem;
  color: var(--black60);
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.about__award span {
  font-family: "Bounded", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--pink);
}

@media (max-width: 1630px) {
  .about__subtitle {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  section#about {
    padding-top: 3rem;
    padding-bottom: 0;
    background-image: none;
    position: relative;
  }

  .about__layout {
    padding: 2rem 1rem;
    padding-bottom: 25rem;
    background-position: 60% 100%;
  }

  .about__container {
    gap: 2rem !important;
  }

  .about__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about__text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .about__award {
    flex-direction: column-reverse;
    margin-top: 0;
  }
}

@media (max-width: 530px) {
  section#about::before {
    width: 35rem;
    height: 35rem;
  }

  .about__layout {
    background-size: 40rem;
    padding-bottom: 17rem;
  }

  .about__award {
    font-size: 0.75rem;
  }

  .about__award span {
    font-size: 1.5rem;
  }
}

@media (max-width: 425px) {
  section#about {
    padding-top: 2rem;
  }

  section#about::before {
    width: 30rem;
    height: 30rem;
    right: -230px;
  }

  .about__layout {
    background-size: 30rem;
    padding-bottom: 12rem;
  }
}

/* For Who */

.for-who__item {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 2.5rem;
  display: grid;
}

.for-who__image-box {
  width: 15rem;
  height: 100%;
  border-radius: 1.875rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* position: relative; */
}

/* .for-who__image-box img {
  height: 100%;
  position: absolute;
  top: -35px;
  object-fit: cover;
} */

.for-who__subtitle {
  font-family: "Bounded", sans-serif;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}

.for-who__text {
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 0.4;
}

.for-who__item--last {
  grid-column: 1 / -1;
  gap: 0 !important;
}

.for-who__item--last p {
  font-family: "Bounded", sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  section#for-who {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .for-who__item {
    grid-template-rows: repeat(2, auto);
    border-radius: 1.5rem;
    gap: 2rem !important;
  }

  .for-who__item--last {
    gap: 0 !important;
  }

  .for-who__image-box {
    height: 20rem;
    width: 100%;
    border-radius: 1.2rem;
  }

  .for-who__subtitle {
    font-size: 2rem;
    text-align: center;
    margin: 0;
  }

  .for-who__text {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .for-who__item--last p {
    font-size: 1.3rem;
  }
}

@media (max-width: 530px) {
  .for-who__image-box {
    height: 15rem;
  }

  .for-who__subtitle {
    font-size: 1.5rem;
  }

  .for-who__text {
    font-size: 1.2rem;
  }
}

@media (max-width: 425px) {
  .for-who__item {
    padding: 2rem;
    gap: 1.25rem !important;
  }

  .for-who__item--last {
    gap: 0 !important;
  }

  .for-who__image-box {
    height: 7rem;
  }

  .for-who__item--last {
    padding: 1rem;
  }

  .for-who__item--last p {
    font-size: 1rem;
  }

  .for-who__subtitle {
    font-size: 1rem;
  }

  .for-who__text {
    font-size: 0.75rem;
  }
}

/* Reg */

.reg__layout {
  background-image: url('/img/reg-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2.5rem;
  padding: 5rem;
  color: white;
}

.reg__box {
  grid-column: 1 / 7;
}

.reg__title {
  font-family: "Bounded", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0;
}

.reg__text {
  font-family: "Bounded", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0;
}

.reg__text--blur {
  font-family: "Mont", sans-serif;
  opacity: 0.7;
}

.reg__text:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .reg__type {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .reg__info {
    margin-bottom: 2.5rem;
    row-gap: 1.5rem;
  }

  .reg__text {
    font-size: 1rem;
  }

  .reg__text:not(:last-child) {
    margin-bottom: 1rem;
  }

  .reg__highlight {
    padding-left: 1.25rem;
  }
}

.regform {
  display: block;
  position: relative;
  border-radius: 1.25rem;
  background-color: transparent;
  padding-top: 4rem;
  grid-column: 8 / 13;
}

.regform button.regform__button.button {
  margin: 0 auto;
  font-size: 1.5rem;
  min-width: 70%;
  height: 5rem;
}

.regform__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
}

.regform__consent {
    display: block;
    color: var(--white40);
    line-height: 1.5;
    text-align: center;
    margin: 1.5rem 0;
}

input:focus,
select:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .reg__layout {
    padding: 3rem;
  }

  .regform {
    border-radius: 0.75rem;
    padding: 2.5rem 1rem;
  }

  .reg__title {
    font-size: 2rem;
  }

  .regform__fieldset {
    row-gap: 0.5rem;
    margin: 0;
  }

  .regform__consent {
    font-size: 0.625rem;
    line-height: normal;
    text-align: center;
    margin: 1.5rem 0;
    margin-top: 0.6rem;
  }
}

@media screen and (max-width: 530px) {
  .reg__layout {
    padding: 2rem 1rem;
    border-radius: 1.5rem;
  }

  .regform {
    padding: 0;
    padding-top: 2.5rem;
  }

  .regform button.regform__button.button {
    font-size: 1rem;
    height: 3rem;
  }
}

/* Program */

section#program {
  min-height: 46.25rem;
}

.program__title {
  margin-bottom: 2rem;
}

.program__radio {
  grid-column: 6 / 13;
}

.program__slider-buttons {
  display: flex !important;
  justify-content: space-between;
}

.program__slider-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}


.program__slider-pagination span {
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--black40);
  border-radius: 100%;
}

.program__slider-pagination span.active {
  background-color: var(--green);
}

/* Nomination */

.nomination__layout {
  background-color: white;
  border-radius: 40px;
  padding: 5rem;
}

.nomination__title {
  grid-column: 1 / 13;
  color: var(--green);
  margin: 0;
  font-family: "Bounded", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.nomination__grid {
    grid-column: 1 / 13;
    gap: 5rem !important;
}

.nomination__radio {
  grid-column: 1 / 2;
}

@media (max-width: 768px) {
  .nomination__layout {
    padding: 1rem;
    border-radius: 20px;
  }

  .nomination__title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }

  .nomination__grid {
    gap: 1rem !important;
  }
}

/* Manifest */

.manifest__container {
  background-color: white !important;
  padding: 5rem;
  border-radius: 40px;
  grid-column: 1 / 13;
}

.manifest__subtitle {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}

.manifest__expand-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.manifest__text {
  margin: 0;
  font-size: 1.125rem;
  text-align: justify;
}

.manifest__expand-button {
  font-size: 1.5rem;
  padding: 1.75rem 10rem;
  border: 1px solid var(--pink);
  border-radius: 3rem;
  width: max-content;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section#manifest {
    padding-bottom: 2rem;
  }

  .manifest__container {
    padding: 1rem;
    gap: 1rem !important;
    border-radius: 20px;
  }

  .manifest__container-text {
    gap: 0.75rem !important;
  }

  .manifest__expand-container {
    gap: 0.75rem;
  }

  .manifest__subtitle {
    font-size: 1.25rem;
  }

  .manifest__text {
    font-size: 0.7rem;
  }

  .manifest__expand-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}

/* Partner */

.partners__subtitle {
  font-family: "Bounded", sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.partners__container {
  grid-template-columns: repeat(6,minmax(0,1fr)) !important;
  row-gap: 3.75rem !important;
}

/* .partners__grid--founders,
.partners__grid--official {
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
} */

.partners__grid--founders {
  grid-column: span 2;
}

.partners__grid--official {
  grid-column: 4 / span 2;
}

.partners__grid--partners {
  grid-column: 1 / 5;
}

@media (max-width: 1200px) {
  .partners__container {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }

  .partners__grid--official {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section#partner {
    padding-bottom: 2rem;
  }

  .partners__container {
    row-gap: 2rem !important;
  }

  .partners__grid--founders,
  .partners__grid--official{
    grid-column: span 4;
  }

  .partners__bottom {
    height: 7.5rem !important;
  }

  .partners__subtitle {
    font-size: 0.75rem;
  }
}

/* FAQ */

section#faq {
  background-color: white;
}

.faq__layout {
  display: block;
}

@media screen and (max-width: 768px) {
  section#faq {
    padding-bottom: 0.1rem;
  }
}

/* Question */

.question__text {
  font-family: "Bounded", sans-serif;
  line-height: 1.1;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin: 0;
}

.question__text a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 3px;
}

@media (max-width: 768px) {
  .question__text {
    font-size: 1.4rem;
  }
}

@media (max-width: 530px) {
  .question__text a {
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }
}

/* Footer */

#footer {
  padding-top: 4.375rem;
  padding-bottom: 2.5rem;
  color: white;
  background-color: var(--orange);
}

.footer__container {
  display: flex;
  align-items: center;
  position: relative;
	max-width: var(--content-width);
  overflow: visible;	
  margin: 0 auto;
  background-color: var(--pink);
  border-radius: 40px;
  height: 120px;
  margin-bottom: 2.5rem;
}

.footer__box {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-left: 4rem;
  padding-right: 2rem;
  gap: 3rem;
}

.footer__grid {
  align-items: center !important;
}

.footer__social-box {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center
}

.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.footer__socials a {
  display: flex;
}

@media screen and (max-width: 768px) {
  #footer {
    padding-top: 2.5rem !important;
  }

  .footer__container {
    height: 200px;
    margin-bottom: 0;
    max-width: none;
    border-radius: 20px 20px 0 0;
  }

  .footer__box {
    gap: 1rem;  
    padding: 1.5rem;
  }

  .footer__box, .footer__social-box {
    flex-direction: column-reverse;
  }

  .footer__social-box {
    gap: 1rem;  
  }

  .footer__social-box a {
    font-size: 0.875rem;
  }

  .footer__grid--logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem !important;
  }

  .footer__grid--logos img {
    width: 4rem;
  }

  .footer__socials {
    gap: 1.25rem;
  }

  .footer__socials img {
    width: 3rem;
  }
}

/* Modals */

.modal__heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.modal__text {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.modal__button {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .modal__heading {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 85%;
  }

  .modal__text {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .modal__button {
    width: fit-content !important;
  }
}
