@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');



@font-face {
  font-family: 'SF Pro Display';
  src: url('fonts/SF-Pro-Display-HeavyItalic.otf') format('otf');
  font-weight: bold;
  font-style: italic;
}



body{
    overflow-x: hidden;
    background: #0a0f3a;
}



h1{

    font-size: clamp(60px, 22vw, 150px);
    text-align: center; /* Center the text */
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: 'SF Pro Display', sans-serif;
    font-style: italic;
    color: white;
    word-break: break-word;

    
}

h2{

    font-weight: 400;
    font-size: clamp(1rem, 4vw, 1.6rem);
    text-align: center; /* Center the text */
    font-family: 'SF Pro Display', sans-serif;
    color: white;


}




p{

  color: white;
  font-family: 'SF Pro Display', sans-serif;
  font-size: clamp(1rem, 4vw, 1.6rem);
  margin: 0;

}

.description{
  max-width: min(75%, 500px);

  margin: auto;
}





a{
    text-decoration: none;
}







.spacer{
    height: 10vh;
}



  
.menu-item:hover .label-up {
    top:-100%;
  }











/* ---------- BUTTONS ---------- */



.instacontainer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

}


.container{

  text-align: center;
  font-family: 'Poppins';
}




.button {
  background: #ffffff;
  color: white;
  width: 200px;
  display: inline-block;
  height: 65px;
  line-height: 65px; /* Adjust the line-height to match the height of the button */
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 4px;
  transition: 0.5s cubic-bezier(0,.8,.50,1);
}




.button1 { /* button for the contact page 1 */

  padding: 4px 20px;
  background: #172073;
  color: #ffffff;
  display: inline-block;
  height: 2em; /* Half the height of the text */
  line-height: 2em; /* Match the line-height to the height of the button */
  overflow: hidden;
  position: relative;
  text-align: center;
  border-radius: 10px;  
  transition: 0.5s cubic-bezier(0,.8,.50,1);
  font-size: 1.2rem;
    
}




.button-container {

  margin-top: clamp(0px, 5vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between buttons */

}


@media (max-width: 500px) {
  .button-container {
    flex-direction: column;
    gap: 7px;
    margin-top: 40px;

  }

  .button1 {
    width: clamp(200px, 60vw, 250px);
}

}


/* ---------- BUTTON ANIMATIONS ---------- */






.button:hover {
  background: #131f89;
}

.button1:hover {
  background: #131f89;
}


.button:hover .label-up {
  top: -100%;
}

.button1:hover .label-up {
  top: -100%;
}



.label-up {
  display:block;
  margin: 0px;
  height:100%;
  position:relative;
  top:0%;
  transition: 0.7s cubic-bezier(0,.8,.50,1);

}






@media (max-width: 768px) {
  .button {
    background: #5c5c5c;
    width: 160px;
  }

  .button .label-up {
    top: -100%;
  }

}




/* ---------- TOP LEFT MENU ---------- */


.menu {
    display: flex;
    justify-content: left;
    align-items: start;
    font-family: 'Poppins';

}



.menu-item {
  font-weight: 400;
  font-size: 16px;   

  color: white;
  height: 35px;
  overflow: hidden;
  transition: cubic-bezier(0,.6,.46,1);
  height: 1.5rem;
  margin: 20px;


  }











    



.hidden{
  opacity: 0;
  transition: all 1s;
  transform: translateY(20%);
}

.show{
  opacity: 1;
  transform: translateY(0);

}
  
  
  /*=== Optional Delays, change values here  ===*/
  .one {
      -webkit-animation-delay: 0.5s;
      -moz-animation-delay: 0.5s;
      animation-delay: 0.5s;
      transition-delay: 0.3s;

    }
    
    .two {
      -webkit-animation-delay: 1.5s;
      -moz-animation-delay: 1.5s;
      animation-delay: 1.5s;
      transition-delay: 1.5s;
    }
    
    .three {
      -webkit-animation-delay: 2.5s;
      -moz-animation-delay: 2.5s;
      animation-delay: 2.5s;
      transition-delay: 2.5s;

    }
    
    .four {
      -webkit-animation-delay: 3.5s;
      -moz-animation-delay: 3.5s;
      animation-delay: 3.5s;
      transition-delay: 3.5s;

    }
    
    .five {
      -webkit-animation-delay: 4.5s;
      -moz-animation-delay: 4.5s;
      animation-delay: 4.5s;
      transition-delay: 4.5s;
    }
    
    .six {
      -webkit-animation-delay: 5.5s;
      -moz-animation-delay: 5.5s;
      animation-delay: 5.5s;
      transition-delay: 5.5s;

    }
    
    .seven {
      -webkit-animation-delay: 6.5s;
      -moz-animation-delay: 6.5s;
      animation-delay: 6.5s;
      transition-delay: 6.5s;

    }
    
    .eight {
      -webkit-animation-delay: 7.5s;
      -moz-animation-delay: 7.5s;
      animation-delay: 7.5s;
      transition-delay: 7.5s;

    }















































































