/* -- -- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* -- -- */
::-webkit-scrollbar {
    display: none;
}
:root {
    /* -- -- */
    --blue-d: #045B8E;
    --blue-l: #067EC3;
    --black: #1E1E1E;
    --gray-d: #3B3B3B;
    --gray-l: #5b5b5b;
    --green: #259800;
    --white: #EFEFEF;
    /* -- -- */
    --shadow-i: 0px 0px 4px 2px rgba(239, 239, 239, 0.24);
    --shadow-d: 0px 0px 4px 2px rgba(30, 30, 30, 0.32);
    /* -- -- */
    --fast: all 0.3s ease-in-out;
    --base: all 0.4s ease-in-out;
    --slow: all 0.6s ease-in-out;
}
/* -- -- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* -- -- */
h1,h2,h3,h4,h5,h6, p {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.04em;
}
    /* -- */
    h1,h2,h3,h4,h5,h6 {
        font-weight: 500;
        color: var(--black);
    }
    /* -- */
    p {
        font-weight: 400;
        color: var(--gray-l);
    }
/* -- -- */
ul,li {
    list-style-type: none;
}
/* -- -- */
button,a {
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* -- */
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.04em;
    font-size: 1rem;
    /* -- */
    color: var(--white);
}
/* -- -- */
body {
    width: 100%;
    height: 100%;
    /* -- */
    background: var(--white);
}