
        body, html {
            background-color: #f3f5f6;
            background-color: #f5f0e7;
            width: 100%;
            padding: 0;
            margin: 0;
            /*font-family: "Architects Daughter", "Raleway", 'Segoe UI', Segoe, Arial, Helvetica, sans-serif;*/
            font-family: "Raleway", 'Segoe UI', Segoe, Arial, Helvetica, sans-serif;
            font-size: 30px;
            line-height: 1.3;
            color: #380d21;
        }
        
        *, :after, :before {
            box-sizing: border-box;
            /*border: 1px solid #ff0000;*/
        }
    
        a {
            text-decoration: none;
            color: #e94c8c;
        }

        a:hover {
            text-decoration: none;
            color: #00b2d2;
        }







        .desktopNav {
            position: fixed;
            background: #fff;
            display: flex;
            justify-content: center;
            width: 100%;
            z-index: 100;
            top: 0;
            box-shadow: 0px 4px 28px -6px rgba(56, 12, 32, .27);
            box-shadow: 0px 4px 28px -6px rgba(0, 0, 0, .17);
            /*padding-left: 155px;*/
        }

        .desktopNavItem {
            position: relative;
            display: block;
            text-align: center;
            padding: 35px 65px;
            transition: all .3s;
        }

        .desktopNavItem:hover {
            background: rgba(233,76,140,.08);
            background: rgba(176,248,246,.35);
            background: #e3fdfc;
        }

        .iconOutter {
            position: relative;
            display: inline-block;
            
        }

        .desktopNavItem .icon, .desktopNavItem .icon2 {
            color: #e94c8c;
            font-size: 60px;
            transition: all .3s;
        }


        .desktopNavItem .icon2 {
            opacity: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .desktopNavItem:hover .icon {
            opacity: 0;
        }

        .desktopNavItem:hover .icon2 {
            opacity: 1;
        }
        
        .desktopNavItem .text {
            color: #380d21;
            font-size: 50px;
            font-family: "Architects Daughter", "Cherry Swash", serif;
            white-space: nowrap;
            padding-top: 5px;
            transition: all .3s;
        }

        .desktopNavItem.menuActive .icon, 
        .desktopNavItem.menuActive .icon2,
        .mobileNavItem.menuActive .icon
        {
            color: #00b2d2 !important;
        }
        .desktopNavItem.menuActive .icon {
            font-weight: 400;
        }
        
        .desktopNavItem.menuActive .text {
            /*color: #00b2d2;*/
        }

        
        .desktopNavItem.menuActive::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            width: 25px;
            height: 25px;
            background: #fff;
            transform: translateX(-50%) rotate(45deg);
            transition: all .3s;
        }
        
        .desktopNavItem:hover.menuActive::after {
            background: #e3fdfc;
        }


        

        .desktopNavLogo {
            position: relative;
            display: block;
            text-align: center;
            padding: 0px;
            margin: 0 40px;
            width: 200px;
            transition: all .3s;
        }

        .desktopNavLogo img {
            display: block;
            position: absolute;
            top: 7px;
            left: 0;
            width: 100%;
            
        }




















        .mobilNav {
            position: fixed;
            background: #fff;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            z-index: 1000;
            top: 0;
            box-shadow: 0px 4px 28px -6px rgba(56, 12, 32, .27);
            
            display: none;
        }

        

        .mobileNavLogo {
            position: relative;
            display: block;
            text-align: center;
            padding: 0px;
            margin: 0 20px;
            width: 77px;
            transition: all .3s;
        }

        .mobileNavLogo img {
            display: block;
            position: absolute;
            left: 0;
            width: 100%;
            transform: translateY(-32%);
        }


        .mobileNavTextLogo {
            position: relative;
            width: 110px;
        }

        .mobileNavTextLogo img {
            display: block;
            width: 100%;
            
        }
        
        .mobileHamburger {
            padding: 12px;
        }

        .hamburger {
            padding: 15px 15px 10px;
            display: inline-block;
            cursor: pointer;
            transition-property: opacity, filter;
            transition-duration: 0.15s;
            transition-timing-function: linear;
            font: inherit;
            color: inherit;
            text-transform: none;
            background-color: transparent;
            border: 0;
            margin: 0;
            overflow: visible;
        }
        .hamburger:hover {
            opacity: 0.7;
        }
        .hamburger.is-active:hover {
            opacity: 0.7;
        }
        .hamburger.is-active .hamburger-inner,
        .hamburger.is-active .hamburger-inner::before,
        .hamburger.is-active .hamburger-inner::after {
            background-color: #2c1010;
        }
    
        .hamburger-box {
            width: 40px;
            height: 24px;
            display: inline-block;
            position: relative;
        }
    
        .hamburger-inner {
            display: block;
            top: 50%;
            margin-top: -2px;
        }
        .hamburger-inner,
        .hamburger-inner::before,
        .hamburger-inner::after {
            width: 40px;
            height: 2px;
            background-color: #2c1010;
            border-radius: 4px;
            position: absolute;
            transition-property: transform;
            transition-duration: 0.15s;
            transition-timing-function: ease;
        }
        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }
        .hamburger-inner::before {
            top: -10px;
        }
        .hamburger-inner::after {
            bottom: -10px;
        }
    
    
        /* Elastic */
        .hamburger--elastic .hamburger-inner {
            top: 2px;
            transition-duration: 0.275s;
            transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .hamburger--elastic .hamburger-inner::before {
            top: 10px;
            transition: opacity 0.125s 0.275s ease;
        }
        .hamburger--elastic .hamburger-inner::after {
            top: 20px;
            transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
    
        .hamburger--elastic.is-active .hamburger-inner {
            transform: translate3d(0, 10px, 0) rotate(135deg);
            transition-delay: 0.075s;
        }
        .hamburger--elastic.is-active .hamburger-inner::before {
            transition-delay: 0s;
            opacity: 0;
        }
        .hamburger--elastic.is-active .hamburger-inner::after {
            transform: translate3d(0, -20px, 0) rotate(-270deg);
            transition-delay: 0.075s;
        }
    





        .mobileMenuOutter {
            position: fixed;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            z-index: 900;
            background: rgba(87,13,44,.75);
            background: rgba(255, 255, 255, .85);
            width: 100vw;
            height: 100vh;
            top: 0;
            
            left: 0;
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            pointer-events: none;
            opacity: 0;
            transition: opacity .5s cubic-bezier(0.280, 0.045, 0.690, 0.145);
    
            text-align: center;
        }
    
    
    
    
    
        .mobileMenuOutter.menuOpen {
            pointer-events: auto;
            opacity: 1;
            transition: all .5s cubic-bezier(0.075, 0.820, 0.310, 1.000);
        }
    
    
        .mobileMenuInner {
            display: flex;
            flex-wrap: wrap;
            /*justify-content: center;*/
            transform: scale(0);
            opacity: 0;
            transition: all .5s cubic-bezier(0.280, 0.045, 0.690, 0.145);
        }
    
        .mobileMenuOutter.menuOpen .mobileMenuInner {
            transform: scale(1);
            opacity: 1;
            transition: all .5s cubic-bezier(0.075, 0.820, 0.310, 1.000);
            animation-delay: .5s;
            text-align: left;
            max-width: 260px;
        }
    




        .mobileNavItem {
            display: block;
            color: #380d21;
            flex: 0 0 100%;
            padding: 10px 20px;
            max-width: 100%;
        }
        
        .mobileNavItem .iconOutter {
            margin-right: 11px;
        }


        .mobileNavItem .icon {
            font-size: 30px;
            color: #e94c8c;
        }





        
        .fa-light.icon {
            font-weight: 200;
        }


        .mobileNavItem .text {
            font-size: 26px;
            font-family: "Architects Daughter", "Cherry Swash", serif;
            white-space: nowrap;
            padding-top: 5px;
            /*font-weight: 600;*/
            display: inline-block;
        }














        .homeHeroOutter {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fee6ea;
            overflow: hidden;
            height: calc(100vh - 145px);
            margin-top: 80px;
        }

        .homeHeroGrad {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: linear-gradient(180deg, rgba(233,76,140,0) 0%, rgba(233,76,140,0) 71%, rgba(233,76,140,0.22) 100%);
        }

        
        .homeHeroTextOutter {
            position: relative;
            padding-left: 30px;
            margin-right: 100px;
        }

        .homeHeroHeading {
            position: relative;
            font-family: "Peralta", serif;
            line-height: .9;
            font-size: 120px;
            max-width: 1200px;           
            margin-bottom: 80px;
            transition: all .6s;
        }
        
        .homeHeroHeading i {
            color: #e94c8c;
            font-size: 30%;
            transform: rotate(20deg) translateX(10px);
            display: inline-block;
            vertical-align: super;
            /*animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);*/
        }



        @keyframes lds-heart {
            0% {
              transform: scale(1) rotate(20deg) translateX(20%);
            }
            45% {
              transform: scale(1.1) rotate(20deg) translateX(30%);
            }
            100% {
              transform: scale(1) rotate(20deg) translateX(20%);
            }
        }




        .homeHeroDesc {
            max-width: 900px;
            font-size: 38px;
            margin-bottom: 90px;
            transition: all .6s;
        }
        

        .solidBtn {
            display: inline-block;
            border-radius: 40px;
            background: #e94c8c;
            /*background: linear-gradient(153deg, rgba(245,158,191,1) 0%, rgba(233,76,140,1) 45%, rgba(233,76,140,1) 100%);*/
            color: #fff;
            font-family: "Peralta", serif;
            font-size: 36px;
            padding: 16px 43px;
            transition: all .3s;
        }
        

        .solidBtn:hover {
            background: #fff;
            color: #380d21;
        }


        .homeHeroPhotoOutter {
            position: relative;
            width: 1030px;
            height: 1170px;
            transition: all .6s;
        }


        .homeHeroShape {
            position: absolute;
            width: 100%;
            height: 96%;
            border-radius: 67% 27% 24% 76% / 32% 29% 69% 66%;
            border-radius: 80% 37% 46% 52% / 31% 62% 36% 66%;
            /*border: 2px solid #fff;*/
            background: rgba(176,248,246,.6);
            background: rgba(233,76,140,.2);
        }

        .homeHeroLine {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 67% 27% 24% 76% / 32% 29% 69% 66%;
            border: 2px dashed #fff;
            transform: rotate(333deg);
        }

        .homeHeroPhoto {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 39% 61% 63% 37% / 56% 40% 60% 44%;
            border-radius: 80% 137% 98% 187% / 112% 108% 116% 94%;
            border-radius: 47% 104% 90% 94% / 143% 109% 82% 80%;
            border-radius: 85% 118% 90% 94% / 166% 82% 48% 28%;
            background-image: url(/_media/images/hero-photo-1.jpg);
            background-size: cover;
            animation-delay: .25s;
            animation-direction: normal;
            animation-duration: 1.3s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        .homeHeroPhoto.animate {
            animation-name: mymove;
        }

        @keyframes mymove {
            0% {border-radius: 85% 118% 90% 94% / 166% 82% 48% 28%;}
            30% {border-radius: 80% 137% 98% 187% / 112% 108% 116% 94%;}
            100% {border-radius: 44% 56% 63% 37% / 56% 42% 63% 44%;}
          }


        



        .swooshShape {
            overflow: hidden;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            line-height: 0;
            direction: ltr;
            transform: rotate(180deg);
        }

        .swooshShape.swooshTop {
            top: 0;
            bottom: auto;
            direction: ltr;
            transform: rotate(0deg);
        }

        .swooshShape svg {
            display: block;
            width: calc(100% + 1.3px);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            height: 200px;
            transition: all .6s;
        }
        .swooshShapefill {
            fill: #fff;
            transform-origin: center;
            transform: rotateY(0deg);
        }

        .swooshShapefill.grey {
            fill: #f3f5f6;
        }

        .swooshShapefill.tan {
            fill: #f5f0e7;
        }



        .pinkStripes {
            background: linear-gradient(to right, rgba(233,76,140,.03) 40px, transparent 1px);
        }
        .blueStripes {
            background: linear-gradient(to right, rgba(0,226,226,.06) 40px, transparent 1px);
        } 

        .brownStripes {
            background: linear-gradient(to right, rgba(28,4,14,.16) 40px, transparent 1px);
        } 

        .bgStripes {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background-size: 80px;
        }






        .contentOutter {
            position: relative;
            margin: 0 auto;
            margin: 450px auto;
            max-width: 2700px;
            transition: all .3s;
        }

        .contentOutterLessTop {
            margin-top: 200px;
        }


        .contentInner {
            position: relative;
            padding: 0 20px;

        }






        .introOutter {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .introLeft {
            position: relative;
            width: 730px;
            height: 770px;
            transition: all .6s;
        }

        .introLeftShape {
            position: absolute;
            width: 100%;
            height: 96%;
            border-radius: 31% 50% 33% 34% / 29% 60% 31% 39%;
            background: #a3e9f3;
            transform: rotate(162deg);
        }


        /*
        .introLeftShape.lemonade {
            background: #fbe5a6;
        }

        .introLeftShape.order {
            background: #dfa9d9;
        }
        */
















        

        .introLeftLine {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 67% 27% 24% 76% / 32% 29% 69% 66%;
            border: 2px dashed #e94c8c;
            transform: rotate(140deg);
        }

        .introLeftPhoto {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 44% 56% 63% 37% / 56% 42% 63% 44%;
            background-image: url(/_media/images/welcome-photo-1.jpg);
            background-size: cover;
            background-position: center center;
            animation-delay: .5s;
            animation-direction: normal;
            animation-duration: 2s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-in-out;
        }

        .introLeftPhoto.animate {
            animation-name: mymove2;
        }

        @keyframes mymove2 {
            0% {border-radius: 44% 56% 63% 37% / 56% 42% 63% 44%;}
            100% {border-radius: 31% 50% 33% 34% / 29% 60% 31% 39%;}
          }

















        .introLeftPhoto2 {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 31% 50% 33% 34% / 29% 60% 31% 39%;
            background-image: url(/_media/images/photogallery/photo-gallery-8.jpg);
            background-size: cover;
            background-position: center center;
        }
        .lemonadeLeftPhoto {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 31% 50% 33% 34% / 29% 60% 31% 39%;
            background-image: url(/_media/images/lemonade-photo-1.jpg);
            background-size: cover;
            background-position: center center;
        }



        .introRight {
            position: relative;
            margin-left: 200px;
            max-width: 1000px;
        }

        h1 {
            position: relative;
            font-family: "Peralta", serif;
            font-weight: 400;
            line-height: .9;
            font-size: 80px;
            margin: 0 0 50px;
        }
        h1 span {
            transition: all .2s;
        }

        .contentOutterOutter {
            position: relative;
        }


        .outterBlue {
            background: #b0f8f6;
            background: #b3f2f2;
            background: #a3e9f3;
        }

        .outterBrown {
            background: #3b0d21;
        }

        .photosOutter {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 90px 0;

        }


        .photoGalLink {
            position: relative;
            display: block;
            flex: 0 0 32%;
            height: 550px;
            box-shadow: inset 0 0 0 3px #fff;
        }
        
        .photoGalLink.blue {
            box-shadow: inset 0 0 0 3px #a3e9f3;
        }
        
        .photoGalLink.grey {
            box-shadow: inset 0 0 0 3px #f3f5f6;
        }
        
        .photoGalLink.tan {
            box-shadow: inset 0 0 0 3px #f5f0e7;
        }




        .photosOutter a {
            display: block;
            height: 100%;
            text-decoration: none;
            background-size: cover;
            background-position: center center;
            transition: all .4s;
        }
        .photosOutter a:hover {
            transform: scale(1.02);
        }

        

        .center {
            text-align: center;
        }


        .contentHeader {
            padding-top: 280px;
        }

        .contentHeaderShort {
            padding-top: 0px !important;
        }








        .photo1 {
            background-image: url(/_media/images/photogallery/photo-gallery-1.jpg);
        }
        
        .photo2 {
            background-image: url(/_media/images/photogallery/photo-gallery-2.jpg);
        }
        
        .photo3 {
            background-image: url(/_media/images/photogallery/photo-gallery-3.jpg);
        }
        
        .photo4 {
            background-image: url(/_media/images/photogallery/photo-gallery-4.jpg);
        }
        
        .photo5 {
            background-image: url(/_media/images/photogallery/photo-gallery-5.jpg);
        }
        
        .photo6 {
            background-image: url(/_media/images/photogallery/photo-gallery-6.jpg);
        }
        
        .photo7 {
            background-image: url(/_media/images/photogallery/photo-gallery-7.jpg);
        }
        
        .photo8 {
            background-image: url(/_media/images/photogallery/photo-gallery-8.jpg);
        }
        
        .photo9 {
            background-image: url(/_media/images/photogallery/photo-gallery-9.jpg);
        }
        
        .photo10 {
            background-image: url(/_media/images/photogallery/photo-gallery-10.jpg);
        }
        
        .photo11 {
            background-image: url(/_media/images/photogallery/photo-gallery-11.jpg);
        }
        
        .photo12 {
            background-image: url(/_media/images/photogallery/photo-gallery-12.jpg);
        }
        
        .photo13 {
            background-image: url(/_media/images/photogallery/photo-gallery-13.jpg);
        }
        
        .photo14 {
            background-image: url(/_media/images/photogallery/photo-gallery-14.jpg);
        }
        
        .photo15 {
            background-image: url(/_media/images/photogallery/photo-gallery-15.jpg);
        }
        
        .photo16 {
            background-image: url(/_media/images/photogallery/photo-gallery-16.jpg);
        }
        
        .photo17 {
            background-image: url(/_media/images/photogallery/photo-gallery-17.jpg);
        }
        
        .photo18 {
            background-image: url(/_media/images/photogallery/photo-gallery-18.jpg);
        }
        
        .photo19 {
            background-image: url(/_media/images/photogallery/photo-gallery-19.jpg);
        }
        
        .photo20 {
            background-image: url(/_media/images/photogallery/photo-gallery-20.jpg);
        }
        
        .photo21 {
            background-image: url(/_media/images/photogallery/photo-gallery-21.jpg);
        }
        
        .photo22 {
            background-image: url(/_media/images/photogallery/photo-gallery-22.jpg);
        }
        
        .photo23 {
            background-image: url(/_media/images/photogallery/photo-gallery-23.jpg);
        }
        
        .photo24 {
            background-image: url(/_media/images/photogallery/photo-gallery-24.jpg);
        }
        
        .photo25 {
            background-image: url(/_media/images/photogallery/photo-gallery-25.jpg);
        }
        
        .photo26 {
            background-image: url(/_media/images/photogallery/photo-gallery-26.jpg);
        }
        
        .photo27 {
            background-image: url(/_media/images/photogallery/photo-gallery-27.jpg);
        }
        
        .photo28 {
            background-image: url(/_media/images/photogallery/photo-gallery-28.jpg);
        }
        
        .photo29 {
            background-image: url(/_media/images/photogallery/photo-gallery-29.jpg);
        }
        
        .photo30 {
            background-image: url(/_media/images/photogallery/photo-gallery-30.jpg);
        }
        
        .photo31 {
            background-image: url(/_media/images/photogallery/photo-gallery-31.jpg);
        }
        
        .photo32 {
            background-image: url(/_media/images/photogallery/photo-gallery-32.jpg);
        }
        
        .photo33 {
            background-image: url(/_media/images/photogallery/photo-gallery-33.jpg);
        }
        
        .photo34 {
            background-image: url(/_media/images/photogallery/photo-gallery-34.jpg);
        }
        
        .photo35 {
            background-image: url(/_media/images/photogallery/photo-gallery-35.jpg);
        }
        
        .photo36 {
            background-image: url(/_media/images/photogallery/photo-gallery-36.jpg);
        }
        
        .photo37 {
            background-image: url(/_media/images/photogallery/photo-gallery-37.jpg);
        }
        
        .photo38 {
            background-image: url(/_media/images/photogallery/photo-gallery-38.jpg);
        }
        
        .photo39 {
            background-image: url(/_media/images/photogallery/photo-gallery-39.jpg);
        }
        
        .photo40 {
            background-image: url(/_media/images/photogallery/photo-gallery-40.jpg);
        }
        
        .photo41 {
            background-image: url(/_media/images/photogallery/photo-gallery-41.jpg);
        }
        
        .photo42 {
            background-image: url(/_media/images/photogallery/photo-gallery-42.jpg);
        }
        
        .photo43 {
            background-image: url(/_media/images/photogallery/photo-gallery-43.jpg);
        }
        
        .photo44 {
            background-image: url(/_media/images/photogallery/photo-gallery-44.jpg);
        }
        
        .photo45 {
            background-image: url(/_media/images/photogallery/photo-gallery-45.jpg);
        }
        
        .photo46 {
            background-image: url(/_media/images/photogallery/photo-gallery-46.jpg);
        }
        
        .photo47 {
            background-image: url(/_media/images/photogallery/photo-gallery-47.jpg);
        }
        
        .photo48 {
            background-image: url(/_media/images/photogallery/photo-gallery-48.jpg);
        }
        
        .photo49 {
            background-image: url(/_media/images/photogallery/photo-gallery-49.jpg);
        }
        
        .photo50 {
            background-image: url(/_media/images/photogallery/photo-gallery-50.jpg);
        }
        
        .photo51 {
            background-image: url(/_media/images/photogallery/photo-gallery-51.jpg);
        }
        
        .photo52 {
            background-image: url(/_media/images/photogallery/photo-gallery-52.jpg);
        }
        
        .photo53 {
            background-image: url(/_media/images/photogallery/photo-gallery-53.jpg);
        }
        
        .photo54 {
            background-image: url(/_media/images/photogallery/photo-gallery-54.jpg);
        }
        
        .photo55 {
            background-image: url(/_media/images/photogallery/photo-gallery-55.jpg);
        }
        
        .photo56 {
            background-image: url(/_media/images/photogallery/photo-gallery-56.jpg);
        }
        
        .photo57 {
            background-image: url(/_media/images/photogallery/photo-gallery-57.jpg);
        }
        
        .photo58 {
            background-image: url(/_media/images/photogallery/photo-gallery-58.jpg);
        }
        
        .photo59 {
            background-image: url(/_media/images/photogallery/photo-gallery-59.jpg);
        }
        
        .photo60 {
            background-image: url(/_media/images/photogallery/photo-gallery-60.jpg);
        }
        
        .photo61 {
            background-image: url(/_media/images/photogallery/photo-gallery-61.jpg);
        }
        
        .photo62 {
            background-image: url(/_media/images/photogallery/photo-gallery-62.jpg);
        }
        
        .photo63 {
            background-image: url(/_media/images/photogallery/photo-gallery-63.jpg);
        }
        
        .photo64 {
            background-image: url(/_media/images/photogallery/photo-gallery-64.jpg);
        }
        
        .photo65 {
            background-image: url(/_media/images/photogallery/photo-gallery-65.jpg);
        }
        
        .photo66 {
            background-image: url(/_media/images/photogallery/photo-gallery-66.jpg);
        }

        .photo67 {
            background-image: url(/_media/images/photogallery/photo-gallery-67.jpg);
        }

        .photo68 {
            background-image: url(/_media/images/photogallery/photo-gallery-68.jpg);
        }

        .photo69 {
            background-image: url(/_media/images/photogallery/photo-gallery-69.jpg);
        }

        .photo70 {
            background-image: url(/_media/images/photogallery/photo-gallery-70.jpg);
        }

        .photo71 {
            background-image: url(/_media/images/photogallery/photo-gallery-71.jpg);
        }

        .photo72 {
            background-image: url(/_media/images/photogallery/photo-gallery-72.jpg);
        }

        .photo73 {
            background-image: url(/_media/images/photogallery/photo-gallery-73.jpg);
        }

        .photo74 {
            background-image: url(/_media/images/photogallery/photo-gallery-74.jpg);
        }

        .photo75 {
            background-image: url(/_media/images/photogallery/photo-gallery-75.jpg);
        }

        .photo76 {
            background-image: url(/_media/images/photogallery/photo-gallery-76.jpg);
        }

        .photo77 {
            background-image: url(/_media/images/photogallery/photo-gallery-77.jpg);
        }

        .photo78 {
            background-image: url(/_media/images/photogallery/photo-gallery-78.jpg);
        }

        .photo79 {
            background-image: url(/_media/images/photogallery/photo-gallery-79.jpg);
        }



































        


        .recipe1 {
            background-image: url(/_media/images/photogallery/recipes/blueberry-crumb-bars2.jpg);
        }

        .recipe2 {
            background-image: url(/_media/images/photogallery/recipes/banana-bread.jpg);
        }

        .recipe3 {
            background-image: url(/_media/images/photogallery/recipes/choc-chip-cookies.jpg);
        }

        .recipe4 {
            background-image: url(/_media/images/photogallery/recipes/choc-macarons.jpg);
        }














        




        


        .headingEyebrow {
            text-transform: uppercase;
            color: #e94c8c;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 23px;
        }


        .menuCat {
            text-transform: uppercase;
            font-size: 85%;
            font-weight: 900;
            letter-spacing: 2px;
            text-align: center;
        }



        .btnBottomSpace {
            padding-bottom: 360px;
        }
        


        .menuOutter {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: space-around;
            margin-bottom: 60px;
        }

        .menuItem {
            flex: 0 0 40%;
            padding: 40px;
            /*
            background: #fff;
            margin: 13px;
            box-shadow: 3px 2px 26px -16px rgba(0, 0, 0, .5);
            */
        }

        .menuItemEyebrow {
            background: #fffbb8;
            text-transform: uppercase;
            color: #9c750c;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            display: inline-block;
            line-height: 1;
            padding: 6px 12px 4px;
            border-radius: 30px;
            margin-bottom: 4px;

            
        }


        .menuItemTitle {
            font-family: "Architects Daughter", "Raleway", 'Segoe UI', Segoe, Arial, Helvetica, sans-serif;
            line-height: 1.2;
            padding-bottom: 30px;
            font-weight: 800;
            font-size: 27px;
            text-transform: uppercase;
        }

        .menuItemTitle i {
            color: #00b2d2;
        }


        .menuItemDesc {
            font-weight: 300;
            font-weight: 400;
        }


        .recipeItem {
            background: #fff;
            margin-bottom: 100px;
        }



        .menuLegend {
            text-align: center;
        }
        .menuLegend div {
            display: inline-block;
        }
        .menuLegend i {
            color: #00b2d2;
            font-size: 90%;
        }

        .menuLegend span {
            font-size: 65%;
            text-transform: uppercase;
            font-weight: 800;
            opacity: .6;
        }


        

        
        .footerOutter {
            min-height: 250px;
        }


        .subHeroOutter {
            position: relative;
            height: 500px;
            margin-top: 100px;
        }


        .subHeroOutterBG {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(/_media/images/subpage-hero-bg-1.png);
            opacity: .2;
        }
        

        .subHeroPink {
            background-color: #fbc5d1;
        }
        .subHeroBlue {
            background-color: #b8e1e2;
        }
        .subHeroBeige {
            background-color: #fbf0e8;
        }
        .subHeroYellow {
            background-color: #fbe5a6;
        }
        .subHeroPurple {
            background-color: #df99ce;
            background-color: #f1bfff;
        }
        .subHeroGreen {
            background-color: #b3efa7;
            background-color: #bae39f;
        }
        .subHeroOrange {
            background-color: #ffda9b;
        }


        .keepGoing {
            padding-top: 50px;
            text-transform: uppercase;
            font-size: 70%;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .keepGoing .fa-cat {
            font-size: 200%;
            margin-right: 25px;
        }

        .keepGoing i {
            display: inline-block;
            height: 30px;
            width: 30px;
            text-align: center;
            padding: 5px;
            border-radius: 30px;
        }



        
        .recipeTag {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            font-style: italic;
            font-size: 70%;
        }

        .recipeOutter {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: space-around;
            margin-bottom: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }


    
        .recipeThumb1 {
            position: relative;
            width: 100%;
            height: 500px;
            margin-bottom: 50px;
            background-size: cover;
            background-position: center center;
        }


        .recipePageImg {
            display: block;
            width: 100%;
        }


        .photoFrame {
            position: absolute;
            width: 100.5%;
            height: 100.5%;
            left: -.25%;
            top: -.25%;
        }

        .photoFrameR1 {
            transform: rotateX(180deg) rotateY(180deg);
        }
        .photoFrameFv {
            transform: rotateX(180deg);
        }
        .photoFrameFh {
            transform: rotateY(180deg);
        }
        

        .recipeNote {
            background: #ede4c8;
            padding: 6px 15px;
            margin-bottom: 50px;
            font-weight: 700;
            font-size: 80%;
        }
        
        .recipeInnerImg {
            text-align: center;
            max-width: 800px;
            margin: 100px auto;
        }


        .recipeSubTitle {
            font-weight: 900;
        }


        .recipeInner li {
            padding-bottom: 10px;
        }



        .footerDec {
            position: absolute;
            color: #fff;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            opacity: .5;
            font-size: 70%;
            padding-bottom: 10px;
        }












        


        @media (max-width: 2900px) {


            body, html {
                font-size: 24px;
            }


            .desktopNav {
                /*padding-left: 105px;*/
            }

            .desktopNavItem {
                padding: 27px 50px;
            }

            .desktopNavItem .icon, .desktopNavItem .icon2 {
                font-size: 45px;
            }

            .desktopNavItem .text {
                font-size: 35px;
            }

            .desktopNavLogo {
                margin: 0 30px;
                width: 150px;
    
            }

            .homeHeroOutter {
                height: calc(100vh - 80px);
                margin-top: 60px;
    
            }

            .homeHeroTextOutter {
                margin-right: 75px;    
            }

            .homeHeroHeading {
                font-size: 95px;
                max-width: 900px;
                margin-bottom: 50px;
            }

            .homeHeroDesc {
                max-width: 750px;
                font-size: 30px;
                margin-bottom: 60px;
            }
            
            .solidBtn {
                font-size: 28px;
                padding: 13px 38px;
            }

            .homeHeroPhotoOutter {
                width: 800px;
                height: 900px;
    
            }

            .swooshShape svg {
                height: 170px;
            }


            .pinkStripes {
                background: linear-gradient(to right, rgba(233,76,140,.03) 30px, transparent 1px);
            }
            
            .blueStripes {
                background: linear-gradient(to right, rgba(0,226,226,.06) 30px, transparent 1px);
            } 
    
            .brownStripes {
                background: linear-gradient(to right, rgba(28,4,14,.16) 30px, transparent 1px);
            } 
            
            .bgStripes {
                background-size: 60px;
            }
    

            
            .contentOutter {
                max-width: 1800px;
                margin: 300px auto;
            }

            .contentOutterLessTop {
                margin-top: 150px;
            }

            .introLeft {
                width: 590px;
                height: 610px;
            }

            .introRight {
                margin-left: 140px;
                max-width: 865px;
            }

            h1 {
                font-size: 60px;
                margin: 0 0 40px;
            }
    

            .contentHeader {
                padding-top: 220px;
            }


            .photosOutter {
                padding: 70px 0;

            }
            
            .photoGalLink {
                height: 400px;
            }
            
            .headingEyebrow {
                font-size: 15px;
                margin-bottom: 16px;
            }


            .menuItem {
                padding: 30px;
            }
    
            
            .menuItemTitle {
                padding-bottom: 20px;
                font-size: 25px;
            }

            .recipeThumb1 {
                height: 375px;
            }

            .recipeItem {
                margin-bottom: 75px;
            }
    


            .btnBottomSpace {
                padding-bottom: 295px;
            }

            .footerOutter {
                min-height: 225px;
            }
    

            .subHeroOutter {
                height: 350px;
            }



            .keepGoing .fa-cat {
                margin-right: 10px;
            }







        }
    







































        @media (max-width: 1920px) {





            body, html {
                font-size: 18px;
            }



            .desktopNav {
                /*padding-left: 70px;*/
            }

            .desktopNavItem {
                padding: 20px 35px;
            }

            .desktopNavItem .icon, .desktopNavItem .icon2 {
                font-size: 28px;
            }

            .desktopNavItem .text {
                font-size: 23px;
            }

            .desktopNavLogo {
                margin: 0 15px;
                width: 100px;
    
            }

            .homeHeroOutter {
                height: calc(100vh - 25px);
                margin-top: 10px;
    
            }

            .homeHeroTextOutter {
                margin-right: 50px;    
            }

            .homeHeroHeading {
                font-size: 65px;
                max-width: 600px;
                margin-bottom: 30px;
            }

            .homeHeroDesc {
                max-width: 500px;
                font-size: 23px;
                margin-bottom: 40px;
            }
            
            .solidBtn {
                font-size: 19px;
                padding: 10px 32px;
            }

            .homeHeroPhotoOutter {
                width: 590px;
                height: 665px;
    
            }

            .swooshShape svg {
                height: 130px;
            }


            .pinkStripes {
                background: linear-gradient(to right, rgba(233,76,140,.03) 20px, transparent 1px);
            }

            .blueStripes {
                background: linear-gradient(to right, rgba(0,226,226,.06) 20px, transparent 1px);
            } 

            .brownStripes {
                background: linear-gradient(to right, rgba(28,4,14,.16) 20px, transparent 1px);
            } 
    
            .bgStripes {
                background-size: 40px;
            }
    

            .contentOutter {
                max-width: 1200px;
                margin: 170px auto;
            }

            .contentOutterLessTop {
                margin-top: 90px;
            }

            .introLeft {
                width: 425px;
                height: 460px;
            }

            .introLeftLine {
                border: 1px dashed #e94c8c;
            }
    
            .introRight {
                margin-left: 120px;
                max-width: 580px;
            }

            h1 {
                font-size: 46px;
                margin: 0 0 30px;
            }
    

            .contentHeader {
                padding-top: 170px;
            }



            .photosOutter {
                padding: 60px 0;

            }

            .photoGalLink {
                height: 300px;
            }

            .headingEyebrow {
                font-size: 11px;
                margin-bottom: 10px;
            }

            .menuItem {
                padding: 20px;
            }
            .menuItemTitle {
                padding-bottom: 10px;
                font-size: 17px;
            }

            .recipeThumb1 {
                height: 230px;
            }

            .recipeItem {
                margin-bottom: 50px;
            }
    
            .photoFrame {
                box-shadow: inset 0 0 0 2px #fff;
            }

            .photoGalLink.blue {
                box-shadow: inset 0 0 0 2px #a3e9f3;
            }
            
            .photoGalLink.grey {
                box-shadow: inset 0 0 0 2px #f3f5f6;
            }
            .photoGalLink.tan {
                box-shadow: inset 0 0 0 2px #f5f0e7;
            }

            .btnBottomSpace {
                padding-bottom: 215px;
            }




            .footerOutter {
                min-height: 200px;
            }
    



            .subHeroOutter {
                height: 230px; 
            }




            .keepGoing .fa-cat {
                margin-right: 0px;
            }

            









        }
    







        
        @media (max-width: 1920px) and (min-height: 1000px) {
            
            .homeHeroOutter {
                max-height: 70vh;
            }
            
        }
        


























        @media (max-width: 1200px) {

            body, html {
                font-size: 17px;
            }

            .desktopNavLogo {
                width: 80px;
            }
            .desktopNavItem {
                padding: 15px 20px;
            }

            .desktopNavLogo {
                margin: 0px 6px;
                width: 90px;
            }

            .desktopNavItem .icon, .desktopNavItem .icon2 {
                font-size: 24px;
            }

            .desktopNavItem .text {
                font-size: 20px;
            }

            .homeHeroOutter {
                height: calc(100vh - 80px);
                margin-top: 80px;
            }

            .homeHeroHeading {
                font-size: 50px;
                max-width: 520px;
                margin-bottom: 26px;
            }

            .homeHeroDesc {
                max-width: 455px;
                font-size: 18px;
                margin-bottom: 33px;
            }

            .homeHeroPhotoOutter {
                width: 415px;
                height: 420px;
            }

            .swooshShape svg {
                height: 90px;
            }

            .contentOutter {
                margin: 100px auto;
            }

            .contentOutterLessTop {
                margin-top: 65px;
            }

            .introLeft {
                width: 390px;
                height: 450px;
            }


            .introRight {
                margin-left: 80px;
                max-width: 525px;
            }

            h1 {
                font-size: 35px;
                margin: 0 0 23px;
            }


            .photoGalLink {
                height: 245px;
            }

            .photoGalLink {
                flex: 0 0 26%;
            }


            .recipeThumb1 {
                height: 250px;
            }

            .solidBtn {
                font-size: 16px;
                padding: 10px 27px;
            }

            .menuItem {
                flex: 0 0 45%;
            }

            .menuItemTitle {
                padding-bottom: 11px;
                font-size: 17px;
            }


            .photoFrame {
                box-shadow: inset 0 0 0 1px #fff;
            }

            .photoGalLink.blue {
                box-shadow: inset 0 0 0 1px #a3e9f3;
            }
            
            .photoGalLink.grey {
                box-shadow: inset 0 0 0 1px #f3f5f6;
            }
            .photoGalLink.tan {
                box-shadow: inset 0 0 0 1px #f5f0e7;
            }
            .subHeroOutter {
                margin-top: 70px;
                height: 190px;
            }







        }






        /*
        @media (max-width: 1200px) and (min-height: 1000px) {
            
            .homeHeroOutter {
                max-height: 70vh;
            }
            
        }
        */









        @media (max-width: 900px) {

            body, html {
            }

            .desktopNav {
                display: none;
            }
            .mobilNav {
                display: flex;
            }

            .introLeft {
                width: 275px;
                height: 350px;
            }

            .homeHeroHeading {
                font-size: 40px;
                max-width: 420px;
                margin-bottom: 25px;
            }

            .homeHeroDesc {
                max-width: 380px;
                font-size: 16px;
                margin-bottom: 31px;
            }
            .homeHeroTextOutter {
                margin-right: 10px;
            }

            .introRight {
                margin-left: 77px;
                max-width: 445px;
            }


            .swooshShape svg {
                height: 70px;
            }

            .photosOutter {
                gap: 10px;
            }
            .photoGalLink {
                flex: 0 0 30%;
                height: 201px;
            }

            .contentHeader {
                padding-top: 135px;
            }
            .btnBottomSpace {
                padding-bottom: 140px;
            }

            .homeHeroPhotoOutter {
                width: 337px;
                height: 348px;
            }


            .menuItem {
                flex: 0 0 48%;
            }



            .subHeroOutter {
                height: 185px;
            }









        }


        @media (max-width: 900px) and (min-height: 1000px) {
            
            .homeHeroOutter {
                max-height: 50vh;
            }
            
        }
        




        @media (max-width: 700px) {

            


            .photosOutter {
                padding: 30px 0;
            }


            .introLeft {
                width: 190px;
                height: 270px;
            }

            .introRight {
                margin-left: 58px;
                max-width: 360px;
            }
        
            .photoGalLink {
                flex: 0 0 32%;
                height: 192px;
            }

            .solidBtn {
                font-size: 17px;
                padding: 11px 28px;
            }
        

            .subHeroOutter {
                height: 200px;
            }




        }







        @media (max-width: 600px) {

            
            .homeHeroOutter {
                height: calc(745px);
                margin-top: 75px;
                flex-direction: column;
                justify-content: flex-start;
            }

            .homeHeroTextOutter {
                text-align: center;
                padding: 0 20px 50px;
                margin-right: 0;
            }

            .introOutter {
                flex-wrap: wrap;
            }

            .introLeft {
                width: 270px;
                height: 290px;
                /*width: 316px;
                height: 370px;*/
            }

            .introRight {
                margin-left: 0;
                max-width: 90%;
                text-align: center;
                padding-top: 60px;
            }

            .homeHeroHeading {
                font-size: 38px;
                max-width: 275px;
                margin-bottom: 25px;
                margin: 65px auto 25px;
                
            }
            .homeHeroDesc {
                font-size: 19px;
            }
            .swooshShape svg {
                height: 45px;
            }
        

            .photoGalLink {
                flex: 0 0 48%;
            }



            .menuItem {
                flex: 0 0 100%;
            }
            



            .subHeroOutter {
                height: 170px;
            }






        }






        @media (max-width: 400px) {


            /*
            .mobileNavItem {
                padding: 10px 11px;
            }

            .mobileNavItem .text {
                font-size: 20px;
            }
            */


        }



        