/* -- Import Font -- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* -- Basic CSS -- */
::-webkit-scrollbar {
    display: none;
}
:root {
    /* -- Colors -- */
    --blue: #1E6761;
    --black: #1E1E1E;
    --gray: #E6E2E2;
    --green: #6DBE45;
    --orange-t: #FF8A32;
    --orange-e: #FE6D11;
    /* -- Font size -- */
    --size-xs: 0.875rem;
    --size-s: 1rem;
    --size-m: 1.5rem;
    --size-l: 2rem;
    --size-xl: 2.5rem;
    /* -- Radius variables -- */
    --radius-s: 1rem;
    --radius-m: 2rem;
    /* -- Shadow variables -- */
    --shadow-l: 0px 0px 4px 1px rgba(30, 30, 30, 0.3);
    --shadow-d: 0px 0px 4px 2px rgba(30, 30, 30, 0.4);
    /* -- Transition variables -- */
    --fast: all 0.3s ease-in-out;
    --normal: all 0.4s ease-in-out;
    --slow: all 0.6s ease-in-out;
}
/* -- General CSS -- */
* {
    margin: 0;
    padding: 0;
}
/* -- */
*, *::before, *::after {
  box-sizing: border-box;
}
/* -- */
h1,h2,h3,h4,h5,h6, p {
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
}
/* -- */
h1,h2,h3,h4,h5,h6 {
    font-weight: 500;
    line-height: 3rem;
}
/* -- */
p {
    font-weight: 400;
    line-height: 2rem;
}
/* -- */
ul,li {
    list-style-type: none;
}
/* -- */
button,a {
    border: none;
    cursor: pointer;
    text-decoration: none;
    /* -- */
    letter-spacing: 0.04em;
    font-size: var(--size-s);
    font-family: "Montserrat", sans-serif;
}
/* -- Body CSS -- */
body {
    width: 100%;
    height: 100%;
    /* -- */
    color: var(--black);
    background: var(--gray);
    font-family: "Montserrat", sans-serif;
    /* -- */
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}