@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Roboto&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    scroll-behavior: smooth;
}

p {
    line-height: 1.5;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #A0D4D3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #1D1E3B;
}

script {
    display: none !important;
}

@keyframes downpointer {
    0% {
        top: 2.5px;
    }

    50% {
        top: 10px;
    }

    100% {
        top: 2.5px;
    }
}