
/*
     CSS HEX
    --eerie-black: #141414;
    --forest-green-traditional: #084921;
    --green-pigment: #009e3c;
    --turquoise-green: #99d6b0;
    --cultured: #f5f5f5;
    --orange-peel: #ffa10a;

     CSS HSL
    --eerie-black: hsla(0, 0%, 8%, 1);
    --forest-green-traditional: hsla(143, 80%, 16%, 1);
    --green-pigment: hsla(143, 100%, 31%, 1);
    --turquoise-green: hsla(143, 43%, 72%, 1);
    --cultured: hsla(0, 0%, 96%, 1);
    --orange-peel: hsla(37, 100%, 52%, 1);

     SCSS RGB
    $eerie-black: rgba(20, 20, 20, 1);
    $forest-green-traditional: rgba(8, 73, 33, 1);
    $green-pigment: rgba(0, 158, 60, 1);
    $turquoise-green: rgba(153, 214, 176, 1);
    $cultured: rgba(245, 245, 245, 1);
    $orange-peel: rgba(255, 161, 10, 1);
 */

/* Fonts */

    html, body, p, a {
        font-family: 'Montserrat', sans-serif;
        overflow-x: hidden;
        color: #f5f5f5;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Teko', sans-serif;
        font-weight: bold;
        font-style: normal;
    }
    hr {
        border-top: ;
    }
    button:focus {
        box-shadow: none;
    }
    .btn:focus {
        box-shadow: none;
    }
    .mobile_show {
        display: none;
    }
    .header_mobile_show {
        display: none;
    }

    .mobile_hide {
        display: block;
    }
    .mobile_hide_footer {
        display: inline-block;
    }

    .tablet_show {
        display: none;
    }
    .header_tablet_show {
        display: none;
    }
    .tablet_hide {
        display: block;
    }
    @media (max-width: 768.98px) {
        .tablet_show {
            display: block;
        }
        .tablet_hide {
            display: none;
        }
        .header_tablet_show {
            display: block;
        }

    }
    @media (max-width: 575.98px) {
        .mobile_show {
            display: block;
        }
        .mobile_hide {
            display: none;
        }
        .mobile_hide_footer {
            display: none;
        }

        .header_mobile_show {
            display: block;
        }
    }
/* Stile Sito */

    body {
        background-color: #f5f5f5;
        position: relative;
        min-height: 100vh;
    }
    .parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .bg-image {
        position: fixed;
        height: 100vh;
        width: 100%;
        filter: grayscale(1) blur(4px);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;

    }
    .titolo_pagina {
        color: #009e3c;
        text-align: center;
        margin-top: 6rem;
        margin-bottom: 6rem;
        text-transform: uppercase;
        font-size: 4rem;
        text-shadow: 2px 2px #141414;
    }

    .sidebar-btn + label, .website_container {
      transition: left 0.1s;
    }

    .sidebar-btn:checked + label {
      left: 245px;
    }

    .sidebar-btn:checked ~ .website_container {
      left: 230px;
    }
    .hamburger {
        position: fixed;
        z-index: 12;
        padding: 1.5rem;
    }
    .hamburger-box {
        width: 35px;
    }
     .hamburger-inner,  .hamburger-inner::before, .hamburger-inner::after {
        background-color: #009e3c;
        width: 25px;
        height: 2px;
        box-shadow: 2px 1px 2px #f5f5f5;
    }
    .hamburger.is-active .hamburger-inner,  .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
        background-color: #009e3c;
    }
    .hamburger.is-active .hamburger-inner {
        box-shadow: 1px 1px 2px #f5f5f5;

    }
    .hamburger.is-active .hamburger-inner::before {
        box-shadow: 2px -1px 2px #f5f5f5;

    }
    .hamburger.is-active .hamburger-inner::after {
        box-shadow: 2px -1px 2px #f5f5f5;

    }
    /* `md` applies to small devices (landscape phones, less than 768px) */
    @media (max-width: 768.98px) {
         .is-active{
            right: 0;
        }
         .is-active .hamburger-box{
            width: 24px;
        }
         .is-active .hamburger-inner,  .is-active .hamburger-inner::before,  .is-active .hamburger-inner::after {
            background-color: #ffa10a !important;
        }

    }
