@font-face {
    font-family: normalFont;
    src: url(/static/fonts/PoiretOne-Regular.ttf);
}
@font-face {
    font-family: boldFont;
    src: url(/static/fonts/CalSans-Regular.ttf);
}
@font-face {
    font-family: italicFont;
    src: url(/static/fonts/Italianno-Regular.ttf);
}
@font-face {
    font-family: logoFont;
    src: url(/static/fonts/Plaster-Regular.ttf);
}

:root{
    --light-color: #f2f2f2;
    --text-color: #2a282e;
    --text-shade: #2a282ec2;
    --comp-color: #ff6600;
    --asst-color: #f5a844;
}
::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--text-color);
    border-radius: 10px;
}
::-webkit-scrollbar-track{
    background-color: transparent;
    padding: 0.1rem;
}

*{
    position: relative;
    margin: 0;
    padding: 0;
    transform: translate(0%);
    box-sizing: border-box;
    font-family: normalFont;
    color: var(--text-color);
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-drag: none;
}
html, body{
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: hidden;
    background-color: white;
}
canvas{
    /* position: absolute; */
    flex-shrink: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    /* z-index: 10; */
}
body::before,body::after{
    content: "";
    position: absolute;
    width: 30%;
    filter: opacity(0.5);
    aspect-ratio: 1/1;
    top: -30%;
    right: 5%;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--comp-color) 60%, var(--asst-color));
}
body::after{
    right: unset;
    top: unset;
    left: 0%;
    bottom: -10%;
    background: linear-gradient(45deg, var(--asst-color), var(--comp-color));
}

body section{
    width: 100%;
    height: fit-content;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(100px);
    z-index: 1;
}

body section .canvasSect{
    width: 100vw;
    max-height: 0px;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    z-index: 10;
}

body section::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    background: url(/static/images/texture.png) no-repeat;
    background-position: center;
    background-size: cover;
    filter: opacity(0.5);
    pointer-events: none;
    z-index: 15;
}

body section #allContent{
    width: 100%;
    height: fit-content;
    max-height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
    display: flex;
    align-items: center;
    flex-direction: column;
}

body section #allContent .contentCard{
    width: 100%;
    max-width: 1000px;
    min-height: 100vh;
    padding: 1rem;
    padding-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
body section #allContent .contentCard h1{
    font-family: logoFont;
    font-size: 5rem;
    text-align: center;
    color: var(--comp-color);
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease, top 0s;
}
body section #allContent[scrolledUp] .contentCard h1{
    left: 10%;
    top: 100%;
}
body section #allContent[scrolledUp] .contentCard h1 span{
    opacity: 0;
}
body section #allContent .contentCard h1 span{
    font-size: 3rem;
    font-family: logoFont;
    transition: all 0.2s ease;
}
body section #allContent .contentCard h2{
    font-size: 4rem;
    line-height: 4.5rem;
    max-width: 90%;
    text-align: center;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}
body section #allContent .contentCard h2 i{
    font-family: italicFont;
    font-style: normal;
    white-space: nowrap;
    font-size: 5.5rem;
    font-weight: 600;
}
body section #allContent .contentCard h2 span::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(/static/images/marker.png) no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateY(50%);
}
body section #allContent .contentCard p{
    font-size: 1.2rem;
    max-width: 60%;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-shade);
    transition: all 0.4s ease;
}
body section #allContent .contentCard p b{
    font-weight: 700;
    color: var(--comp-color);
    filter: opacity(1);
}
body section #allContent .contentCard .inputSect{
    width: 70%;
    height: fit-content;
    display: flex;
    padding: 0.5rem;
    border-radius: 1rem;
    border: 2px solid var(--text-shade);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}
body section #allContent .contentCard .inputSect input{
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: var(--text-color);
    background-color: transparent;
    z-index: 25;
    flex: 1;
}
body section #allContent .contentCard .inputSect button{
    border: none;
    outline: none;
    background-color: var(--text-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 0.5rem;
    padding-inline: 1.5rem;
}

body section #allContent .contentCard .countdown-data{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
body section #allContent .contentCard .countdown-data .title{
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 70%;
    transition: all 0.4s ease;
}
body section #allContent .contentCard .countdown-data .title span{
    display: flex;
    gap: 0.5rem;
    flex: 1;
}
body section #allContent .contentCard .countdown-data .title span::before,
body section #allContent .contentCard .countdown-data .title span::after{
    content: "";
    flex: 1;
    height: 3px;
    background-color: var(--text-shade);
    border-radius: 1rem;
    opacity: 0.1;
}
body section #allContent .contentCard .countdown-data .countdown-timer{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 70%;
    max-width: 70%;
    transition: all 0.4s ease;
}
body section #allContent .contentCard .countdown-data .countdown-timer span{
    font-size: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 2rem;
    font-family: logoFont;
    letter-spacing: 0.1rem;
    font-weight: 200;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}
body section #allContent .contentCard .countdown-data .countdown-timer span::after{
    content: attr(class);
    font-size: 1.2rem;
    font-family: normalFont;
}

body section #allContent .contentCard:last-child{
    justify-content: flex-start;
    padding-top: 2%;
}
body section #allContent .contentCard h3{
    font-size: 2.5rem;
    font-family: italicFont;
    transition: all 0.4s ease;
}
body section #allContent .contentCard .FAQCards{
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 0.5rem;
}
body section #allContent .contentCard .FAQCards .faq{
    width: 100%;
    padding: 0.5rem;
    border-radius: 1.5rem;
    background-color: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 5rem;
    overflow: hidden;
    transition: all 0.6s ease;
}
body section #allContent .contentCard .FAQCards .faq[active]{
    max-height: 30rem;
}
body section #allContent .contentCard .FAQCards .faq[active] p{
    transition: all 0.3s 0.4s ease;
    opacity: 1;
}
body section #allContent .contentCard .FAQCards .faq[active] i{
    transform: rotateZ(225deg);
}
body section #allContent .contentCard .FAQCards .faq h4{
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: white;
    border-radius: 1rem;
    height: 4rem;
    max-height: 4rem;
    flex-shrink: 0;
}
body section #allContent .contentCard .FAQCards .faq h4 i{
    font-size: 0.8rem;
    width: 2rem;
    aspect-ratio: 1/1;
    background-color: var(--comp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    transition: all 0.3s ease;
}
body section #allContent .contentCard .FAQCards .faq p{
    font-size: 1rem;
    text-align: left;
    width: 100%;
    max-width: unset;
    height: fit-content;
    font-weight: 600;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}
body section #allContent .contentCard .rights{
    width: 80%;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-width: unset;
}
body section #allContent .contentCard .rights span{
    color: unset;
}

* .animateElement:not(h1){
    opacity: 0;
    transform: translateY(30%);
}
h1.animateElement{opacity: 0;}



/* LOADING SCREEN CUSTOMIZATION  */

.loadingScreen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: var(--comp-color);
    transform: translateY(0%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
    overflow: hidden;
}
.loadingScreen::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--asst-color);
    transform: translateY(0%);
    transition: all 2s ease;
}

@keyframes fonter {
    0%{scale: 1;}
    50%{scale: 1.2;}
}

.loadingScreen .content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
    transition: all 1s ease;
    background-color: white;
    font-size: 4rem;
    font-family: logoFont;
    animation: fonter 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    color: var(--comp-color);
}
.loadingScreen[active],
.loadingScreen[active]::before,
.loadingScreen[active] .content{
    transform: translateY(100%);
}


















@media (max-width: 768px) {
  ::-webkit-scrollbar{width: 0;}
  body::before,body::after{
    right: -20%;
    width: 100%;
  }
  body::after{
    right: unset;
    width: 60%;
  }
  canvas {
    display: none !important;
  }
  body section #allContent .contentCard h1{
    font-size: 8vw;
    white-space: nowrap;
  }
  body section #allContent .contentCard h1 span{
    font-size: 6vw;
  }
  body section #allContent .contentCard h2{
    font-size: 14vw;
    line-height: 15vw;
    max-width: 100%;
  }
  body section #allContent .contentCard h2 i{
    font-size: 20vw;
  }
  body section #allContent .contentCard p{
    max-width: unset;
    margin-block: 1rem;
  }
  body section #allContent .contentCard .inputSect{
    max-width: 100%;
    width: 100%;
  }
  body section #allContent .contentCard .countdown-data{margin-top: 2rem;}
  body section #allContent .contentCard .countdown-data .countdown-timer{gap: 0.5rem;}
  body section #allContent .contentCard .countdown-data .countdown-timer span{
    font-size: 1.2rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
  }
  body section #allContent .contentCard .countdown-data .countdown-timer span::after{
    font-size: 0.8rem;
  }
  body section #allContent .contentCard{
    padding-top: 8%;
  }
  body section #allContent .contentCard .FAQCards{
    width: 100%;
    max-width: unset;
  }
  body section #allContent .contentCard .FAQCards .faq{
    padding: 0.1rem;
    max-height: 3.5rem;
    gap: 0.1rem;
  }
  body section #allContent .contentCard .FAQCards .faq h4{
    font-size: 4vw;
  }
  body section #allContent .contentCard .FAQCards .faq p{
    font-size: 0.8rem;
  }
}

@media (max-height: 700px){
    body section #allContent .contentCard h1{display: none;}
}