        /* Global Styles */
        body {
            background-color: #fff;
            margin: 0;
            padding: 0;
        }

        header {
            align-items: center;
            background-color: #fff;
            display: flex;
            height: 5.5vh;
            justify-content: space-between;
            padding: 20px;
        }

        .logo {
            color: #000;
            font-family: 'Encode Sans Expanded';
            font-size: 2.5vw;
            margin-left: 1.3vh;
            text-transform: capitalize;
        }

        .container {
            text-align: center;
        }

        .carousel {
            display: inline-block;
            margin-top: 8px;
            width: 83%;
        }

        .carousel-inner {
            text-align: center;
        }

        .hamburger1 {
            display: grid;
            display: -ms-grid;
            grid-template-rows: repeat(3, 1fr);
            height: 36px;
            justify-items: right;
            margin: 10px;
            z-index: 120;
        }

        .hamburger1 div {
            background-color: rgb(61, 61, 61);
            height: 4px;
            margin-top: 7px;
            position: relative;
            transition: all 0.2s ease-in-out;
            width: 36px;
            -webkit-transition: all 0.2s ease-in-out;
        }

        #toggle1 {
            display: none;
        }

        #toggle1:checked + .hamburger1 .top {
            transform: rotate(-45deg);
            margin-top: 22.5px;
            -webkit-transform: rotate(-45deg);

        }

        #toggle1:checked + .hamburger1 .meat {
            margin-top: -5px;
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
        }

        #toggle1:checked + .hamburger1 .bottom {
            transform: scale(0);
            -webkit-transform: scale(0);
        }

        #toggle1:checked ~ .menu1 {
            height: 340px;
        }

        /* Menu */
        .menu1 {
            background-color: rgba(255, 255, 255);
            border-radius: 8px;
            clear: both;
            display: grid;
            grid-template-rows: 1fr repeat(4, 0.5fr);
            grid-row-gap: 6px;
            height: 0;
            list-style: none;
            margin: 0;
            position: absolute;
            right: 10px;
            width: auto;
            overflow: hidden;
            padding: 5px;
            text-align: right;
            transition: height .4s ease;
            z-index: 120;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
        }

        .menu1 a:first-child {
            margin-top: 40px;
        }

        .menu1 a:last-child {
            margin-bottom: 40px;
        }

        #toggle1:checked ~ .menu1 {
            height: 300px;
            overflow: hidden;
        }

        .link0 {
            font-family: 'Encode Sans Expanded';
            font-weight: 400;
            color: black;
            margin: 0;
            padding: 10px 0;
            width: 100%;
        }

        .link0:hover {
            background-color: #fff;
            color: rgb(61, 61, 61);
            transition: all 0.3s ease;
            text-decoration: none;
            -webkit-transition: all 0.3s ease;
        }

        .link1 {
            font-family: 'Encode Sans';
            font-size: 18px;
            font-weight: 400;
            color: black;
            margin: 0;
            padding: 10px 0;
            width: 100%;
        }

        .link1:hover {
            background-color: #fff;
            color: rgb(61, 61, 61);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
        }

        .footer {
            background-color: #fff;
            bottom: 0;
            color: #000;
            height: 5.5vh;
            position: fixed;
            text-align: center;
            width: 100%;
        }

        .footer-content {
            align-items: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .footer-line {
            font-family: 'Encode Sans';
            font-size: 1.1vw;
            line-height: 1.6vw;
            margin-top: .5vh;
        }

        .footer-line-1 {
            font-family: 'Encode Sans Semi Expanded';
            font-size: 0.8vw;
            font-weight: 300;
            line-height: .9vw;
            margin-top: 0.2vh;
        }

        .instagram-link,
        .email-link,
        .privacy-link {
            color: #000;
            text-decoration: none;
            transition: color 0.3s, text-decoration 0.3s;
        }

        .instagram-link:hover,
        .email-link:hover,
        .privacy-link:hover {
            color: #000;
            text-decoration: underline;
        }

        .image-container {
            padding: 20px;
            height: auto;
            max-width: 91%;
        }

        .image-container img {
            height: auto;
            max-width: 100%;
        }

        .text-container {
            align-items: center;
            display: flex;
            flex-direction: column;
            font-family: 'Encode Sans Semi Expanded';
            font-size: 18px;
            height: 100%;
            justify-content: center;
            padding: 20px;
            text-align: justify;
        }

        .container1 {
            align-items: center;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }

        .text-container1 {
            font-family: 'Encode Sans Semi Expanded';
            margin-bottom: 10px;
            max-width: 75vh;
            padding: 20px;
            text-align: center;
            text-align: justify;
}

        .scroll-container {
          height: 88vh;
          margin-top: 8px;
          max-width: 100%;
          overflow-x: scroll;
          position: relative;
          -webkit-overflow-scrolling: touch;
          white-space: nowrap;
        }

        .image-gallery {
          align-items: center;
          display: flex;
          height: 100%;
          max-width: 100%;
          position: absolute;
          white-space: nowrap;
        }

        .image-gallery img {
          margin-right: 75px;
          max-height: 100%;
          max-width: 100%;
          object-fit: contain;
        }

        .image-gallery img:first-child {
          margin-left: 550px;
        }
        
        .image-gallery:hover {
            cursor: url('assets/images/arrow.png'), auto;
        }

        .page-word {
            color: black;
            font-family: 'Encode Sans';
            font-size: 18px;
            left: 30px;
            position: absolute;
            text-align: right;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .footer1 {
            display: none;
        }

       @media (max-width: 768px) {
           body {
                padding-bottom: 12vh;
            } 

           header {
                margin-top: 10px;
            }

            .hamburger1 {
                height: 0px;
                margin-bottom: 36px;
            }

            .hamburger1 div {
                width: 28px;
                height: 3px;
            }

            #toggle1:checked + .hamburger1 .top {
                margin-top: 16px;
                transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
            }

            #toggle1:checked + .hamburger1 .meat {
                margin-top: -3px;
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
            }

            #toggle1:checked + .hamburger1 .bottom {
                transform: scale(0);
                -webkit-transform: scale(0);
            }

            .logo {
                font-size: 5.5vw !important;
                margin-left: 8px;
                margin-top: 1.3vh;
                padding-top: 0;
                z-index: 2;
            }

            .carousel {
                height: auto;
                margin-top: 5vh;
                width: 92vw;
            }

            .carousel img {
                height: auto;
                width: 100%;
            }

            .mobile-scroll {
                overflow-x: hidden;
                overflow-y: scroll;
              }

            .scroll-container {
                overflow-x: hidden;
            }

            .image-gallery {
                align-items: center;
                display: flex;
                flex-direction: column;
                height: auto;
                margin-top: 1.5vh;
              }

            .image-gallery img {
                object-fit: contain;
                margin: 20px;
                margin-right: 0;
                margin-left: 0;
                max-height: auto;
                max-width: 100%;
              }

            .image-gallery img:first-child {
                margin-left: 0;
              }
           
            .footer {
                height: 12vh;
                position: fixed;
            }

            .footer-line {
                font-family: 'Encode Sans';
                font-size: 4.5vw;
                line-height: 1.6vw;
                margin-top: 12%;
                margin-top: 5.5vh;
           }
           
            .footer-line-1 {
                font-family: 'Encode Sans Semi Expanded';
                font-size: 3vw;
                font-weight: 300;
                line-height: .9vw;
                margin-top: 2.5vh;
           }

            .menu1 {
                text-align: center;
                width: 100%;
                z-index: 1;
            }

            .menu1 a {
                display: inline-block;
            }

            .menu1 a.link1:first-child {
                margin-top: 10px;
            }       

            .page-word {
               display: none !important;
           }

            body.page3 .footer {
                display: none;
            }

            .image-container {
                display: inline-block;
            }

            .footer-content p {
            margin: 0px 0;
               }   

            .text-container1 {
                font-family: 'Encode Sans Semi Expanded';
                font-weight: 300;
                font-size: 12px;
            }

            .desktop-image {
                display: none !important;
            }

            .mobile-image {
                display: block;
            }  
        }   

            @media (max-width: 375px) {

                .logo {
                    font-size: 5vw !important;
                    margin-top: 2vh;
                }

                .footer-line {
                    font-size: 14px;
                    margin-top: 18px;
                }

                .footer1 {
                    display: block;
                }    
            }

            @media (min-width: 769px) {
                
                .mobile-image {
                    display: none !important;
                }

                .desktop-image {
                    display: block;
                }    
            }