 /* Scroll bar START */
 ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(255, 255, 255, 0);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--color1);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color1text);
}

:root {
    --color1: #78b848;
    --color1dark: #4f8129;

    --backcolor1: #5c924e;
    --backcolor2: #4b4b4b;

    --color1text: #555555;
}


/* Scroll bar END */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-family: 'Nunito', sans-serif;
    color: #222222;
    background: #f8f8f8;
    line-height: 1.6;
    margin-top: 80px;
}

.button {
    display: inline-block;
    background: var(--color1);
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.button-2 {
    background: #ffffff;
    color: var(--color1);
}

.button-2:hover {
    color: #ffffff;
    background: var(--color1text);
}


.button:hover {
    background: var(--color1text);
}

.button-full {
    width: 100%;
    height: 50px;
}