@font-face {
    font-family: 'Emmanuel Sans';
    src: url('sf-pro-rounded.ttf');
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
body{
    padding: 0;
    margin: 0;
    cursor: none;
}


.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    pointer-events: none; /* Allow interaction with elements behind the cursor */
    border-radius: 50%; /* Example: make them circular */
    /* Add other styling like background-color, border, size, etc. */
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background-color: black;
    z-index: 9999; /* Ensure it's on top */
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid black;
    transition: transform 0.1s ease-out; /* Smooth following animation */
    z-index: 9998;
}
.menuSVG{
    display: none;
}
.header{
    position: fixed;
    padding: 2% 5%;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    z-index: 9;
    background-color: white;
}
.logo{
    width: 50%;
    height: auto;
    justify-content: center;
    align-items: center;
}
.logo-img{
    display: flex;

    width: 15rem;

}
.dropdown{
    display: none;
}

.utilities{
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Emmanuel Sans';
    gap: 5%;
    width: 50%;
    height: auto;
    transition: 500ms all ease-in-out;

}
.utilities span:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.utilities a {
    text-decoration: none;
    color: black;
}
.utilities span{
    font-size: 1.5rem;
    transition: 500ms all ease-in-out;

}
.es{
    font-family: 'Emmanuel Sans';
}

.main{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2%;
}
.hero{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 2%;
    position: absolute;
}

.hero-title{
    font-size: 5rem;
    text-align: center;
    font-weight: bolder;

}
.hero-desc{
    font-size: 2.5rem;
    color: grey;
}
.hero-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 1rem;
    border-radius: 9999px;
    padding: 1.5rem 3rem;
    background-color: #000;
    color: #fff;
    font-size: 25px;
    text-align: center;
    text-wrap: wrap;
    margin-top: 5%;
    transition: 500ms all ease-in-out;
    text-decoration:none ;
}
.hero-button a{
    text-decoration: none;
    color: white;
}
.hero-button:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.banner-img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    margin-top: 10%;
    position: relative;
    align-self: center;
    justify-self: center;
    /*filter: grayscale(70%);*/
    opacity: 0.2;

}
.section-title{
    width: 100%;
    text-align: center;
    height: auto;
    background-color: #fff;
    padding-bottom: 2rem;
}
.section-title span{
    font-size: 5rem;
    font-weight: bolder;
    text-align: center;
    font-family: 'Emmanuel Sans', sans-serif;

}
footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    background-color: black;
    padding: 5rem 0 3rem 0 ;
}
footer span{
    font-size: 1.5rem;
    color: white;
}
.copyright{
    color: white;
    font-size: 1.5rem;
}

.hidden{
    display: none;

}
.card-img{
    width: 30px;
    height: auto;
    display: flex;
}
.section-cards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1rem 0;
    gap: 1rem;
}
.card{
    width: 30rem;
    height: auto;
    border-radius: 10px;
    background-color: rgba(223, 223, 223, 0.43);
    padding: 40px;
}
.card-title{
    font-size: 1.5rem;
    font-weight: bolder;
}
.card-desc{
    font-size: 1.5rem;
}
.section{
    padding-bottom: 10rem;
}

@media(max-width: 800px){
    html{
        overflow-x: hidden;

    }
    body{
        cursor: default;
    }
    header{
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5% 2%;
    }
    .logo{
        align-items: flex-start;
        justify-content: flex-start;
    }
    .hero-title{
        font-size: 3rem;

    }
    .hero-desc{
        font-size: 1.5rem;
    }
    .logo-img{
        width: 10rem;
    }
    .utilities{
        display: none;
    }
    .menuSVG{
        display: flex;
        width: 2rem;
        height: 2rem;
    }
    footer{
        width: 100%;
        padding: 3% 1%;
        flex-direction: column;
        gap: 2rem;
    }
    footer span{
        font-size: 0.8rem;
    }
    .copyright{
        font-size: 0.8rem;
    }
    .dropdown{
        display: flex;
        flex-direction: row;
        padding: 5%;
        gap: 5%;
    }
    /*.closeIcon{*/
    /*    width: 40px;*/
    /*    height: auto;*/
    /*}*/
    .dropdown{
        width: 100%;
        height: 60vh;
        color: #000;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: center;
        justify-self: center;
        position: fixed;
        margin-top: 60vh;
        font-size: 2.5rem;
        gap: 1rem;
        z-index: 5;
        display: none;


    }
    .info{
        width: 80%;
        display: flex;
        flex-direction: column;
    }
    .section-title span{
        font-size: 3rem;
    }
    .card{
        width: 10rem;
        padding: 15px;
    }
    .custom-cursor {
        display: none;
    }
    .custom-cursor-follower {
     display: none;
    }
    
}

