@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    outline: none;
}

@font-face {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-display: swap;
    src: url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap) format('woff2');
}

body{
    overflow-x: hidden;
}

*::selection{
    background-color: #5755d9;
    color: white;
}

 /* SCROLL */
 *::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #F9F8FE;
    cursor: pointer;
}

*::-webkit-scrollbar-track{
    border-left: 0px solid #000;
    background-color: #F9F8FE;
}

*::-webkit-scrollbar-thumb{
    background: #5755d9;
}

*::-webkit-scrollbar-thumb:hover{
    background: #5188d6;
}

html {
    scroll-behavior: smooth;
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    color: #5755d9;
}

img{
    pointer-events: none !important;
}

.c-purple{
    color: #5755d9 !important;
}

.c-grey{
    color: #66758c;
}

.c-gray{
    color: gray;
}

.opacity{
    opacity: .1 !important;
}

.c-pointer{
    cursor: pointer !important;
}

.w-80{
    width: 80% !important;
}

.ml-1{
    margin-left: 10px !important;
}

.br-10{
    border-radius: 10px !important;
}

.active{
    color: #5755d9 !important;
    position: relative;
    text-decoration: none;
}

.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #5755d9;
    bottom: -3px;
    left: 0;
    transition: transform .3s ease-in-out;
    transform-origin: left;
    transform: scaleX(1);
}