@font-face {
    font-family: 'Surgena';
    src: url('/static/fonts/Surgena.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Poppins Light */
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
:root
{
    --mainPadding:25px;
    --bgColor: #0c0c0c;
    --whiteOp: rgba(255, 255, 255, 0.105);
    --primaryRadius: 15px;
    --containerPadding: 100px;
}
html,body
{
    padding: 0;
    margin: 0;
    background-color: var(--bgColor);
    color: white;
    font-family: "Poppins";
    overflow-x: hidden !important;
}
h4,h1,h2,h3,h5
{
    font-weight: 500;
}
header
{
    padding: var(--mainPadding);
    padding-inline: var(--containerPadding);
}
.container
{
    margin-inline: var(--containerPadding);;
    padding: var(--mainPadding);
    background-color: var(--whiteOp);
    border-radius: var(--primaryRadius);
    padding-inline: var(--containerPadding);
    width: 100%;
}
.logoText
{
    font-family: "Surgena";
    margin: 0;
    font-size: 30px;
}
.circle1
{
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgb(255 255 255 / 10%) 0%, rgba(255, 255, 255, 0) 50%);
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: -125px;
}
.circle2
{
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgb(255 255 255 / 10%) 0%, rgba(255, 255, 255, 0) 50%);
    content: "";
    display: block;
    position: absolute;
    top: -125px;
    left: 50%;
}
.circle3
{
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgb(255 255 255 / 3%) 0%, rgba(255, 255, 255, 0) 50%);
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    right: 10%;
}
.circle4
{
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgb(255 255 255 / 3%) 0%, rgba(255, 255, 255, 0) 50%);
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    left: 11%;
}
.transparentContainer
{
    background-color: transparent;
    padding-inline: 0px;
}
.products
{
    display: flex;
    gap: 20px;
}
.products img
{
    border-radius: 25px;
    width: 200px;
    border-radius: 25px;
    border: 1px solid #ffffff0f;
}
.product
{

}
footer
{
    padding-inline: var(--containerPadding);
    display: flex;
    margin-top: var(--containerPadding);
    border-top: 1px dashed #ffffff08;
    padding-block: 25px;
}
.footerLeft
{
    display: grid;
    max-width: 400px;
}
.footerLeft:nth-child(2)
{
    margin-left: 40px;
}
.footerLeft a
{
    font-size: 14px;
    font-weight: 300;
    color: #ffffffa3;
    text-decoration: none;
}
.footerRight
{
    margin-left: auto;
}
.footerRight span
{
    font-size: 14px;
    font-weight: 300;
    color: #ffffffa3;
}
.footerRight span a
{
    font-weight: 400;
    color: #ffffffd5;
    text-decoration: none;
}
.heroText {
  
}

.heroText span {
  display: inline-block;
  white-space: pre;
  filter: blur(12px);
  opacity: 0;
}
[data-aos="blur-up"] {
  filter: blur(12px);
  transform: translateY(40px);
  opacity: 0;
  transition: 
    filter 1.2s ease,
    transform 1.2s ease,
    opacity 1.2s ease;
}

[data-aos="blur-up"].aos-animate {
  filter: blur(0);
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
    :root
    {
        --containerPadding: 5%;
    }
    .products
    {
        flex-wrap: wrap;
    }
    .product
    {
        width: 100%;
        border-radius: 40px;
    }
    .products img
    {
        width: 100%;
        border-radius: 40px;
    }
    h1
    {
        font-size: 17px;
        width: 90%;
        line-height: 33px;
    }
    footer
    {
        flex-wrap: wrap;
        gap: 40px;
        border-top: 1px dashed #ffffff2c;
    }
    .footerRight
    {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .circle4
    {
        width: 300px;
        top: 27%;
        left: -4%;
    }
    .container
    {
        width:90%;
    }
    .footerLeft:nth-child(2)
    {
        margin-left: 0px;
    }
    
}