/* – – – – – – */
/* ROOT */
/* – – – – – – */

  
  :root {
    --black: #000000;
    --white: #FFFFFF;
    --hotpink: #FFB3EE;
    --hotred: #F02925;
    --grey: #b9b9b9;
  
    --font-family-june-regular: "june-expt-variable", sans-serif;
    --font-family-bast-regular: "cofo-sans-variable", sans-serif;
  
    --font-size-sm: 0.85rem;
    --font-size-base: clamp(1rem, 0.19vi + 0.95rem, 1.13rem);
    --font-size-md: clamp(1.2rem, 0.75vi + 1.01rem, 1.69rem);
    --font-size-lg: clamp(1.44rem, 1.68vi + 1.02rem, 2.53rem);
    --font-size-xl: clamp(1.73rem, 3.18vi + 0.93rem, 3.8rem);

    --oval-height: clamp(2.25rem, 2.248rem + 3.127vi, 6rem);
    --oval-width: clamp(2.25rem, 2.248rem + 3.127vi, 6rem);
  
    --padding-xs: .5rem;
    --padding-sm: 1rem;
    --padding-md: 2rem;
    --padding-lg: 4rem;
  
    --padding-md-responsive: clamp(1rem, 1.82vw + 0.55rem, 2rem);
    --padding-lg-responsive: clamp(1rem, 5.45vw + -0.36rem, 4rem);
  
    --main-max-width: 70rem;
    --narrow-max-width: 50rem;
  
  }

  
  /* – – – – – – */
  /* TYPOGRAPHY */
  /* – – – – – – */
  
  html {
    scroll-behavior: smooth;
    scroll-behavior: smooth !important;
    /* For browser compatibility */
    scroll-behavior: smooth, cubic-bezier(0.25, 0.1, 0.25, 1);
    /* Custom timing function */
  }
  
  body {
    font-family: var(--font-family-bast-regular);
    font-size: var(--font-size-base);
    background-color: var(--hotpink);
  }
  
  h1,
  h2 {
    font-size: var(--font-size-xl);
    font-family: var(--font-family-june-regular);
    font-variation-settings: "STYL" 100;

  }

  .oval {
    margin: auto;
    line-height: var(--oval-height);
    border: 1px solid;
    height: var(--oval-height);
    border-radius: 50%;
    display: inline-block;

    padding-inline: 30px;
    color: black;
    text-align: center;
    font-size: var(--font-size-xl);
    font-family: var(--font-family-june-regular);
    font-variation-settings: "STYL" 100;
  }

  .lg {
    font-family: var(--font-family-bast-regular);
    font-size: var(--font-size-lg);
    text-transform: none;
  }

  h3 {
    font-family: var(--font-family-june-regular);
    font-size: var(--font-size-md);
    text-transform: none;
    font-variation-settings: "STYL" 30;
    padding-bottom: 0.5rem;
  }

  .md {
    font-family: var(--font-family-bast-regular);
    font-size: var(--font-size-md);
    text-transform: none;

  }

  h4 {
    font-family: var(--font-family-june-regular);
    font-size: var(--font-size-base);
    text-transform: none;
    font-variation-settings: "STYL" 30;
    padding-bottom: 1rem;
  }
  
  h1,
  p strong,
  .flow h2 {
    font-family: var(--font-family-june-regular);
  }
  
  .flow ul,
  .content ul {
    list-style-type: disc;
    list-style-position: inside;
  }
  

  
  
  
  /* – – – – – – */
  /* LAYOUT ELEMENTS */
  /* – – – – – – */
  
  body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #FFB3EE;
    margin: 0;
  }

  main {
    margin-bottom: 12rem;
    margin: 6px 36px 288px 36px;
  }

  main a:link {

    text-decoration: underline;
  
  }
  
  section {
    border-bottom: 1px solid black;
  }
  
  
  /* – – – – – – */
  /* LINKS */
  /* – – – – – – */


  a:hover {
    text-decoration: none;
  }




  /* – – – – – – */
  /* NAV & FOOTER*/
  /* – – – – – – */
  
  nav {
    padding: 32px 0 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--padding-sm);
    position: fixed;
    width: 100%;
    z-index: 100;
    background: linear-gradient(0deg,rgba(255, 179, 238, 0) 0%, rgba(255, 179, 238, 1) 25%, rgba(255, 179, 238, 1) 0%);
    top: 0;
  }

  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

  }
  
  .nav-center ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: var(--padding-sm);
    border-bottom: solid 1px;
  }

  .nav-center ul li {
    display: inline-block;
    padding-bottom: 12px;
    min-width: 12rem;
    text-align: center;
  }

  .active {
    text-decoration: underline;
  }


  .nav-right {
    position: absolute;
    right: 36px;
    display: flex; 
    padding: 0;
    gap: 0.5rem;
  }

  .nav-right ul li{
    display: inline-block;
    padding: 0 0 12px 0.5rem;
  }

  .active-lang {
    font-weight: bold;
  }




  footer {
    padding: var(--padding-md) var(--padding-md-responsive) var(--padding-sm);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 12rem;
    
  }

  footer a:link {

    text-decoration: underline;
  
  }
 
  .footer-container {
    padding-top: 36px;
    border-top: solid 1px;
    margin-top: auto;
    gap: var(--padding-sm) var(--padding-md-responsive);
    display: grid;
    grid-template-columns: repeat(3, auto);
    flex-grow: 1;
    justify-content: space-between;
  }

  .footer-container ul {
    list-style-type: none;
    margin: 0 0 48px 0;
    padding-top: 2.5rem;   
  }

  .footer-container ul li {
    padding-bottom: 0.5rem;
  }

  .logo {
    width: 200px;
  }


  
  
  
  /* – – – – – – */
  /* GRID */
  /* – – – – – – */
  
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--padding-md);
    border: none;
    margin-left: 144px;
    margin-right: 144px;
    
  }

  .header {
    grid-column-start: 2;
    grid-column-end: 12;
    text-align: center;
    margin-top: 144px;
  }



  .section-header {
    grid-column-start: 1;
    grid-column-end: 13;
    text-align: center;
    margin-top: 144px;
  }


  .intro {
  grid-column-start: 2;
  grid-column-end: 12;
  text-align: left;
  font-size: var(--font-size-md);
  margin-top: 144px;
  }

  .section-content {
    grid-column-start: 4;
    grid-column-end: 10;
    width: 100%;
    text-align: left;
    margin-top: 48px;
  }




  /* – – – – – – */
  /* HERO */
  /* – – – – – – */

  .hero {
    margin-top: 120px;
    text-align: center;
    position: relative;
  }

  .hero img {
    margin: auto;
    width: 75%;
    height: auto;
    top: 0;
    object-fit: contain;
    vertical-align: top;
    margin-inline: auto;
  }

  .support {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(5rem);
    height: auto;
    width: 100%;


  }

  .support a img {
        width: 11%;
        object-fit: contain;
      }
    


        
    
     

  
  /* – – – – – – */
  /* NEWSLETTER */
  /* – – – – – – */

  .newsletter {
    margin: 96px 0px 144px 0px;
    border: none;

  }

  .newsletter-header {
    text-align: center;
    padding: 0;
  }

  #sib-container input:-ms-input-placeholder {
    text-align: left;
    font-family: var(--font-family-bast-regular);
    color: var(--black);
  }

  #sib-container input::placeholder {
    text-align: left;
    font-family: var(--font-family-bast-regular);
    color: var(--black)
  }

  #sib-container textarea::placeholder {
    text-align: left;
    font-family: var(--font-family-bast-regular);
    color: var(--black)
  }

  #sib-container a {
    text-decoration: underline;
    color: var(--black);
  }
  
  
  /* – – – – – – */
  /* MEDIA QUERIES */
  /* – – – – – – */
  
  @media (width < 90rem) {
    .intro {
      grid-column-start: 2;
      grid-column-end: 12;
      width: fit-content;
      text-align: left;
      font-size: var(--font-size-md);
      margin-top: 96px;
      }

      .grid {
        margin-inline: 0;
      }


      .header {
        margin-top: 144px;

      }

      .section-header {
        margin-top: 96px;
      }

      .section-content {
        grid-column-start: 3;
        grid-column-end: 11;
        margin-top: 48px;
        list-style-type: none;

      }


      .support {

    transform: translateY(4rem);

    

  }

   .support a img {
    width: 12%;
  }


  
    
  }

  @media (width < 70rem) {
  
    main {
      margin: 0px 36px 96px 36px;
    }

    .hero {
      margin-top: 60px;
      margin-inline: 0;
      text-align: center;
    }

    .hero img {
      width: 95%;
    }
  

    .intro {
      grid-column-start: 1;
      grid-column-end: 13;
      font-size: var(--font-size-md);
      margin-top: 96px;
      }
    
    

      footer {
        padding: var(--padding-md) var(--padding-md-responsive) var(--padding-sm);
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 15rem;
      }

      .footer-container {
        margin: 0 auto;
        position: relative;
        width: 100%;
        gap: var(--padding-sm) var(--padding-md-responsive);
        display: inline-block;
        text-align: center;
      }
    
      .footer-container ul {
        list-style-type: none;
        margin-bottom: 36px;
 
        padding: 2rem 0 3rem 0;  
        text-align: center;
      }
    
      .footer-container ul li {
        padding-bottom: 0.5rem;
        display: flex;        
      }

      .footer-container ul li a {
        margin-inline: auto;
        }

 
 

 .support a img {
    width: 15%;
  }


  
  
  }
  
  @media (width < 50rem) {

    h3, h4 {
      text-align: center;
    }

    main {
      margin: 0px 12px 48px 12px;
    }
  
    .header {
      margin-top: 96px;
    }

    .section-header {
      margin-top: 48px;
    }

    .intro {
      margin-top: 96px;
    }

    .section-content {
      grid-column-start: 1;
      grid-column-end: 13;
      margin-top: 12px;
    }

  
    
    nav {
      padding: 32px 0 12px 0;
border-bottom: solid 1px;
background-color: var(--hotpink);
        align-items: left;
    justify-content:flex-start;
    gap: var(--padding-sm);
    position: fixed;
    


  }

  .nav-center {
    position: absolute;
    left: 12px;
    display: flex; 
    padding: 0;
    gap: 0.5rem;
    transform: translateX(0);   

  }

  .nav-center ul {
 border: none;
  }
  


  .nav-center ul li {
display: inline-block;
    padding: 0 1rem 1rem 0;
          min-width: 1rem;

  }



  .nav-right {
    position: absolute;
    right: 12px;
    display: flex; 
    padding: 0;
    gap: 0.5rem;
  }

   .support a img {
    width: 15%;
  }


  footer {
        height: 8rem;
      }



  
  }

@media (width < 30rem) {
  .support {
  transform: translateY(3.5rem);

    }

     .support a img {
    width: 20%;
  }


}