@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');/*
RESET
*/
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
  }
  
  /* 2. Remove default margin */
  * {
    margin: 0;
    padding: 0;
  }
  
  html {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
    font-size: 16pt;
  }
  
  /* 5. Improve media defaults */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  /* 6. Inherit fonts for form controls */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 7. Avoid text overflows */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  
  /* 8. Improve line wrapping */
  p {
    text-wrap: pretty;
  }
  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
  }
  
  table{
    border: var(--borderclrs) 1pt solid;
    border-radius: 4pt;
    font-size: 3vw;
  }

  th, td{
    
    padding: 0px 8px;
  }

  /*
    9. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }



button,
fieldset,
input,
legend,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}
/*
Variable declarations
*/
:root{
    --dark: #222222;
    --electric:#1E1EDA;
    --cream: #FCF8EE;
    --orange: #EB6132;
    --borders: rgba(0, 0, 0, 0.11);
    --inputs: rgba(255, 255, 255, 0.13);

}

/*
HTML elements
*/
html{
    font-family: "sora",Helvetica, sans-serif;
    font-size: 12pt;
}

input, textarea, select{
  border: 1pt solid var(--inputs);
  background-color: var(--inputs);
  border-radius: 4pt;
  color: white;
  width: 100%;
}
option{
  color: var(--dark);
}
address{
  color: var(--electric);
  padding: 8px 0px;
}

form{
  display: grid;
  gap: 8px;
  text-align: left;
}

.full_card
{
  color: var(--dark);
    background-color: white;
box-shadow: 0px 0px 6.7px rgba(0, 0, 0, 0.15);
padding: 24px 16px;
display: grid;
justify-items: center;
font-size: 12pt;
}

.wrapper{
  max-width: 900px;
  justify-items: center;
display: grid;
width: 100%;
}

.card_format{
  max-width: 920px;
  display: grid;
  gap: 24px;
  justify-content: center;
  text-align: center;
  font-size: 14pt;
  justify-items: center;
}

.what_we_do_descriptions{
  display: grid;
}

.heading_and_text{
  text-align: left;
  }



/*
ID SELECTORS
*/

#contact{
  height: fit-content;
  margin-bottom: 40px;
}

#consulting{
  color: var(--electric);
  background: var(--cream);
  animation: none;
  border-radius: 0;
}

#consulting > .hero__content{
  max-width: 1000px;
}


#consulting >.hero__content > .what-we-do-img-container > img{
  max-height: 280px;
}

/*
Classes
*/

.header{
    width: 100%;
    background-color: white;
    border-bottom: 1pt solid var(--dark);
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 10;
    transition: top 0.3s; /* Transition effect when sliding down (and up) */
}
.header__navigation{
    color: var(--dark);
    max-width: 900px;
    margin: auto;
}

.header__navigation__list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    align-items: center;
}

.header__navigation__list__item{
    display: none;
}
.home-logo-mobile, .nav-icon{
    display: flex;
}
.home-logo__text{
    font-weight: bold;
    color: var(--dark);
}

.sidebarmenudefault{
    display: none;
}

.sidebarmenuactive{
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    color: white;
}


.sidenav{
  height: 100%;
  position: fixed;
  top: 0;
  right: 0%;
  background-color: var(--electric);
  overflow-x: hidden;
  transition: 0.3s ease-in;
  padding-top: 16px;
  width: 0%;
  z-index: 1;
}

.sidenav >a{
  padding: 8px 24px;
  display: block;
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.sidenav > a:hover{
  border-bottom: 1pt solid white;
}

.sidenav :first-child:hover{
  border-bottom: none;
}
.closebtn{
  width: 100%;
  display: flex !important;
  justify-content: flex-end;
}

.sidenav > 
a[href$="/our_blog/index.html"]{
    display: none;
}

.sidenav > a[href$="/our_creations/index.html"]{
    display: none;
}

ion-icon {
    font-size: 30px;
  }
.grid{
  display: grid;
  gap: 24px;
  background-color: var(--cream);

}

.hero{
 /*background-color: var(--electric);*/ 

  background: linear-gradient(-45deg, #5279ee, var(--electric), #23a6d5, var(--electric));
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;

  color: white;
  display: grid;
  justify-content: center;
  border-radius:  0px 0px 24pt 24pt;
  padding: 56px 24px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero__content{
  display: grid;
  gap: 24px;
  justify-items: center;
  max-width: 900px;
}

.hero__content > h2, .hero__content > h1, .hero__content > p{
  animation: fadeInUp 1.2s;
  height: fit-content;
}


.primary{
  width: 100%;
  max-width: 240PX;
  animation: fadeInUp 1.6s;
  text-align: center;
  color: var(--dark);
  height: fit-content;
}

.is-visible{
  animation: fadeInUp 1.2s;
}


.full-width-content{
  background-color: var(--electric);
  color: white;
  padding: 40px 16px;
  display: grid;
  
    justify-content: center;
  
}

.full-width-content > h2{
  text-align: center;
}

.button-container{
  display: grid;
  padding-top: 8px;
  justify-items: center;
  width: 100%;
}

.glass-container{
  padding: 24px 16px;
  backdrop-filter: blur(2px);
  background: linear-gradient(262.84deg, rgba(255, 255, 255, 0.06) 14.19%, rgba(255, 255, 255, 0.14) 45.53%, rgba(255, 255, 255, 0.07) 97.67%);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 16px;
  display: grid;
  justify-content: center;
  gap: 32px;
}

.center{
  text-align: center;
}

.glass-container__heading-and-text{
  display: grid;
  gap: 8px;
}

.what-we-do-img{
  max-height:220px;
}

.what-we-do-img-container{
  display: grid;
  justify-content: center;
}

.heading-outlined{
  border-bottom: 1pt solid white;
  padding: 8px 0px;
}


.product_card_container{
  overflow: auto;
display: flex;
scroll-snap-type: x mandatory;
padding: 24px 16px;
}

.product_card{
  position: relative;
  color: var(--text_dark);
  width: 280px;
  padding: 16px 0px;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  margin-left: 16px;
  flex-shrink: 0;
  scroll-snap-align: start;
  color: var(--dark);
  border: 2pt solid var(--dark);
}

.top_card_container{
  padding: 0px 20px;
  text-align: center;
  display: grid;
  gap: 16px;
}

.title_and_tag{
  display: grid;
  gap: 4px;
}

.tag_text{
  font-size: 12pt;
  font-weight: 300;
}

.product_card_primary_cta{
  background-color: var(--text_dark);
  color: var(--background_color);
  border-radius: 8pt;
  padding: 16px 24px;
  font-weight: bold;
}

.product-card__description{
  border-top: 1pt solid var(--borders);
  border-bottom: 1pt solid var(--borders);
  padding: 16px 0px;
}

.feature_span{
  font-size: 12pt;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 4px 0px;
}

.feature_breakdown{
display: grid;
gap: 8px;
padding: 8px 16px 0px 16px;
border-top: 1pt solid var(--light_grey);
margin-top: 16px;
}

.starred{
  position: absolute;
  top: -24px;
  left: 211.2px;
  height: 87px;
}

.no-color{
  background-color: var(--cream);
  gap: 24px;
}

.shadow-card{
  color: var(--dark);
  display: grid;
  gap:16px;
  align-items: center;
  justify-items: center;
  background-color: white;
  padding: 32px 16px;
  border-radius:  16pt;
  box-shadow: 0px 0px 13.4px 1px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  width: 100%;
}

.shadow-card > h2{
  width: 100%;
}


.secondary > a:any-link{
  color: white;
}
.orange-button{
  background-color: var(--orange);
  color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  padding: 12px 24px;
  font-weight: 600;
  width: 100%;
}
.contents-container{
  display: grid;
}
.junk{
  animation: rotate 5s infinite;
} 
.secondary{
  background-color: #222222;
  color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  padding: 12px 24px;
  font-weight: 700;
  width: 100%;
}
.special-text-container{
  display: grid;
  gap: 4px;
  font-size: 1rem;
  font-weight: 800;
  justify-items: flex-start;
  width: 100%;
  height: fit-content;
}
.special-text-blue{
  background-color: var(--electric);
  color: white;
  padding: 2px 4px;
  width: fit-content;
  border-radius: 2pt;
  height: fit-content;
}
.special-text-orange{
  background-color: var(--orange);
  color: white;
  padding: 2px 4px;
  margin-left: 8px;
  width: fit-content;
  border-radius: 2pt;
  height: fit-content;
}
.special-text{
  font-size: 1.5rem;
  font-weight: 800;
  padding-top: 16px;
}

.footer__Links-container__logo-and-text{
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  padding: 16px 0px;
  gap: 8px;  
}
.footer{
  display: grid;
  justify-items: center;
}
.footer__links-container{
  max-width: 900px;
  width: 100%;
  padding: 16px 0px;
}

.footer__links-container__img{
  height: 48px;
  width: auto;
}

.mail{
  text-decoration: underline;
}

.footer__links-container__title-and-link-section{
  padding: 16px;
}

.footer__links-container__title-and-link-section__link-list{
  text-decoration: underline;
  color: var(--orange);
}

.footer__links-container__title-and-link-section__link-list > li{
  padding: 8px 0px;
}

.footer-text{
  display: grid;
  justify-items: center;
  padding: 8px 0px;
}


.animone{
  animation: swivel 1s infinite;
}
.animtwo{
  animation: swiveltwo 1.5s infinite;
}

.contact{
  text-align: left;
}

.input-container{
  display: grid;
  gap: 4px;
}

.contact-image-and-text{
  display: grid;
  justify-items: center;
  gap: 16px;
}
.contact-image-and-text > .what-we-do-img-container{
  
  justify-items: center;
}
.contact{
  text-align: center;
}

.icon_and_heading{
  display: grid;
  justify-items: flex-start;
  gap: 12px;
}

.grey_divider{
  width: 100%;
  border-bottom: 1pt solid var(--borders);
}

.training-rocket-container{
  display: grid;
  position: relative;
}

.modal-container{
  position: fixed;
  width: 100vw;
  background: rgb(255, 255, 255);
  height: 100vh;
  display: grid;
  align-items: center;
  justify-content: center;
}

.modal{
  background-color: white;
  display: grid;
  height: fit-content;
  width: fit-content;
  padding: 32px;
  border-radius: 4pt;
}


.language-container{

  display: flex;
  justify-content: center;
  border-bottom: 1pt solid var(--borders);
}

.wrapper-lang{
  max-width: 900px;
  padding: 8px 16px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}


.language{
 width: fit-content;
}

.language-button{
  height: fit-content;
  width: fit-content;
  background-color: var(--dark);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 4pt;
}

/*
MORE ID SELECTORS....
*/

#flame-left > img{
  height: 50px;
  width: auto;
  max-width:fit-content ;
}

#flame-center > img{
  height: 70px;
  width: auto;
  max-width:fit-content ;
}

#flame-right > img{
  height: 45px;
  width: auto;
  max-width:fit-content ;
}



#flame-left, #flame-right, #flame-center{
  position: absolute;
}
#flame-left{
  animation: thruster-small 1s infinite;
  bottom: 28%;
  left: 2%;
  width: auto;
}

#flame-center{
  bottom: 9%;
  animation: thruster-center 1.7s infinite;
}

#flame-right{
  bottom: 12%;
  left: 18%;
  animation: thruster-small 1.3s infinite;
}

/*
animations
*/
@keyframes thruster-small{
  0%{
    opacity: 0%;
  }
  50%{
    transform: rotate(10deg);
    opacity: 100%;
  }
  100%{
    opacity: 0%;
  }
  
}
@keyframes thruster-center {
  0%{
    opacity: 0%;
  }
  50%{
    transform: rotate(-14deg);
    opacity: 100%;
  }
  100%{
    opacity: 0%;
  }
  
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}


@keyframes slide-left {
  from {
    margin-left: 100%;
    width: 300%; 
    opacity: 0;
    
  }

  to {
    margin-left: 0%;
    width: 100%;
    opacity: 1;
  }
}

@keyframes rotate {  
  50% {
    transform: rotate(180deg) translateX(20px) translateY(30px);
  }
}

@keyframes swivel {  
  0%{
    transform: rotate(0deg)
  }
  50% {
    transform: rotate(20deg) ;
  }
}

@keyframes swiveltwo {  
  0%{
    transform: rotate(0deg)
  }
  50% {
    transform: rotate(-17deg) ;
  }
}

/*
hero background animation*/
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}






.primary, .primary-large{
  background-color: white;
  font-weight: 700;
  border: 1pt solid var(--dark);
  padding: 16px 8px;
  border-radius: 8pt;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: grid;
  justify-items: center;
}

.primary-large{
  width: 100%;
}

form > .primary{
margin-top: 16px;
}

.contact-us{
  margin-bottom: 32px;
}
  /*
  Media queries
  */

  @media (min-width:320px){
    .special-text-container{
      font-size: 1.2rem;
    }
  }
@media (min-width: 400px){
  #flame-left{
    bottom: 28%;
    left: 5%;
  }
  
  #flame-center{
    bottom: 14%;
    left: 5%;
  }
  
  #flame-right{
    bottom: 15%;
    left: 20%;
  }
}

  @media (min-width: 560px) {
    .header__navigation__list__item{
        display: flex;
        font-size: 12pt;
    }
    .home-logo__text{
        width: max-content;
    }
   .hero{
    height: auto;
    padding-bottom: 6rem ;
   }
   .hero__content{
    display: flex;
    flex-direction: column;
    gap: 16px;
   }
   .hero__content > h2,  .hero__content > h1{
    font-size: clamp(1.5rem, 40pt, 11vh);

   }

   .full_card{
    font-size: 14pt;
   }
   .training-img{
    height: inherit;
    width: 60%;
   }
   .what-we-do-img-container{
    justify-items: center;
    align-content: center;
   }
   .hero__content__text {
    font-size: 16pt;
   }

    .home-logo-mobile, .nav-icon{
        display: none;
    }
    .glass-container{
      grid-template-columns: 1fr 1fr;
      align-items: center;
      grid-row-gap: 64px;
    }
    .contect-container{
    grid-row-gap: 16px;
    }
    .left{
      order: 3;
    }
    .right{
      order: 4;
    }
    .rightone{
      order: 2;
    }
    .leftone{
      order: 1;
    }

    .glass-container > h2 , .contact{
      grid-column-start: span 2;
    }
    .contents-container{
      gap: 16px;
    }
    .special-text-container{
      gap: 8px;
      font-size: 1.5rem;
    }
    .secondary{
      margin-top: 8px;
    }
    .shadow-card{
      padding: 48px 16px;
    }

    #consulting{
      height: auto;
    }
    .footer__links-container{
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .footer__Links-container__logo-and-text{
      padding: 0px 0px;
    }
    .footer-text{
      grid-column-start: span 2;
    }
    .training_container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;

  }

  .icon_and_heading{
    grid-template-columns: max-content 80%;
    align-items: center;
    align-content: center;
    gap: 16px;
}
.icon_and_heading > h3 {
    padding-bottom: 0px;
}

#flame-left{
  bottom: 28%;
  left: 17%;
}
 
#flame-center{
  bottom: 6%;
  left: 19%;
}

#flame-right{
  bottom: 10%;
  left: 30%;
}

  }

  @media (min-width: 740px) {
    #train-consult{
      font-size: 3rem;
    }
    .glass-container{
      max-width: 900px;
      padding: 32px;
    }
    .shadow-card {
      grid-template-columns: 1fr 1fr;
      font-size: 14pt;
    }
    .secondary{
      width: 240px;
      height: fit-content;
    }

    .large{
      justify-items: flex-start;
    }
    .primary-large{
      width: 240px;
    }
   
  }