@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.centerFlex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marginCenter {
    margin: 0 auto;
}

.navbar {
    z-index: 999;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    padding: 20px;
}

.navbar .navLogo img {
    width: 50px
}

.navbar .navLogo #hamburger {
    width: 30px;
    display: none;
}

.nav-menu {
    z-index: 10;
    position: fixed;
    top: -100px;
    width: 100%;
    min-height: 100px;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nav-menu.active {
    top: 0;
}

.navbar .fixed-button {
    z-index: 9999;
    margin-top: 0;
    padding-left: 0;
    position: fixed;
    top: 20px;
    bottom: auto;
    left: auto;
    right: 20px;
    border-style: none;
    border-radius: 5px;
    margin-left: auto;
    margin-right: 16px;
    padding: 4px 8px;
}

.navbar .fixed-button {
    position: fixed;
    background-color: #df8368;
    color: rgb(244, 233, 221);
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    padding: 10px 15px;
}

.hero-section {
    z-index: 0;
    position: relative;
    overflow: hidden;
}

.hero-section .elements-wrapper {
    z-index: 1;
    background-color: #80a188;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
}

@keyframes waves {
    0% {
        transform: translate3d(0px, 0px, 0px) scale3d(2, 2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(-50deg, 15deg);
    }

    100% {
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }
}

.hero-section .elements-wrapper .hero {

    mix-blend-mode: normal;
    background-image: url("../images/Waves.svg");
    mix-blend-mode: soft-light;
    background-position: 0%;
    background-repeat: repeat;
    background-size: cover;
    min-width: 100%;
    min-height: 100%;

    animation: waves 5s ease-in-out 0s;
}

@keyframes transletHeart {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-80px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-section .elements-wrapper img {
    width: 6vw;
    position: absolute;
    top: auto;
    bottom: 15%;
    left: auto;
    right: 10%;
    animation: transletHeart 5s linear 0s infinite;
}

.images-container {
    z-index: 5;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3vh;
    padding-bottom: 12vh;
    display: block;
    position: relative;
}

.images-container .imageGrid {
    grid-column-gap: 16vw;
    grid-row-gap: 24vh;
    grid-template:
        "Area-2 ."
        ". Area" / 1fr 1fr;
    width: 100%;
    grid-auto-columns: 1fr;
    display: grid;
}



@keyframes rotateImage1 {
    0% {
        transform: rotate(13.6725deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

@keyframes rotateImage2 {
    0% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-26deg);
    }
}

@keyframes TranslateImage1 {
    0% {
        transform: translate(74px, -350px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

@keyframes TranslateImage2 {
    0% {
        transform: translate(-50px, 350px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

/* Image wrapper styles - these are the grid items */
.images-container .imageGrid .image-wrapper {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

/* Wrapper 1: Translate animation (slides from top-left) */
.images-container .imageGrid .image1-wrapper {
    opacity: 0;
    transform: translate(74px, -350px);
}

.images-container .imageGrid .image1-wrapper.animate-in {
    animation: TranslateImage1 1.2s ease-out forwards;
}

/* Wrapper 2: Translate animation (slides from bottom-right) */
.images-container .imageGrid .image2-wrapper {
    opacity: 0;
    transform: translate(-50px, 350px);
}

.images-container .imageGrid .image2-wrapper.animate-in {
    animation: TranslateImage2 1.2s ease-out 0.3s forwards;
}

/* Image 1: Rotate animation on scroll */
.images-container .imageGrid .image1 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transform: rotate(13.6725deg);
    animation: rotateImage1 linear forwards;
    animation-timeline: scroll(root);
    animation-range: 0% 3%;
}

/* Image 2: Rotate animation on scroll */
.images-container .imageGrid .image2 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transform: rotate(10deg);
    animation: rotateImage2 linear forwards;
    animation-timeline: scroll(root);
    animation-range: 0% 7%;
}

.images-container .imageGrid .placeholder1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

.images-container .imageGrid .placeholder2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

.text-container {
    z-index: 10;
    justify-content: center;
    align-items: center;
    min-width: 100vw;
    height: 100vh;
    min-height: 700px;
    display: flex;
    position: absolute;
    top: 0;
}

.text-container .vertical-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

@keyframes ZoomInOutHeading {
    0% {
        transform: scale(2);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.text-container .heading-container {
    justify-content: flex-end;
    align-items: flex-start;
    display: block;
    position: relative;
    animation:  ZoomInOutHeading 1s linear;
}

.text-container .heading-container h1 {
    color: #f4e9dd;
    text-align: center;
    max-width: 8ch;
    margin: 0 auto;
    font-family: Poppins, sans-serif;
    font-size: 13vw;
    font-weight: 800;
    line-height: 84%;
}

.text-container .heading-container h2 {
    color: #f4e9dd;
    text-transform: uppercase;
    margin-top: 0;
    font-family: Poppins, sans-serif;
    font-size: 5vw;
    font-weight: 800;
    line-height: 98%;
    text-align: center;
}

@keyframes translating-plane-animation {
    0% {
        transform: translate3d(-2500px, 0px, 0px);;
    }

    75% {
        transform: translate3d(200px, 0px, 0px);;
        opacity: 1;
    }

    100% {
        transform: translate3d(0px, 0px, 0px);;
    }
}

.text-container .plane-animation {
    object-fit: fill;
    width: 30vw;
    max-width: 100%;
    position: absolute;
    top: 39px;
    left: 443px;
    overflow: visible;

    animation: translating-plane-animation 3s linear forwards;
}

@keyframes translating-plane-animation-img {
    0% {
        transform: translate3d(-6px, 7px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }

    50% {
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        opacity: 1;
    }

    100% {
        transform: translate3d(-6px, 7px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        opacity: 1;
    }
}

.text-container .plane-animation img {
    width: 100%;
    height: 100%;

    animation: translating-plane-animation-img 2s ease-in-out infinite;
}

/* Styling of Section 2 starts here */

.animated-text {
    z-index: 10;
    background-color: #f4e9dd;
    border-top: 8px solid #000;
    border-bottom: 8px solid #000;
    position: relative;
    overflow: hidden;
}

@keyframes translateText {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(-100vw);
    }
}

.animated-text .animated-text-wrapper {
    justify-content: space-between;
    align-items: center;
    width: 200vw;
    display: flex;
    animation: translateText 12s linear infinite;
}

.animated-text .animated-text-wrapper .w-clearfix {
    background-image: url("../images/bgPattern-stripe-2.png");
    background-position: 0 0;
    background-size: 20%;
    flex: 0 auto;
    width: 100vw;
}

.w-clearfix::before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-clearfix::after {
    clear: both;
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.animated-text .animated-text-wrapper .w-clearfix span {
    color: rgb(128, 161, 136);
}

.animated-text .animated-text-wrapper .divider-text {
    float: left;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: #f4e9dd;
    border-left: 8px solid #000;
    border-right: 8px solid #000;
    margin-left: 5vw;
    margin-right: auto;
    padding: 10px 15px;
    font-size: 6vw;
    font-weight: 800;
    font-family: poppins, sans-serif;
    line-height: 96%;
    display: block;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 6vw;
    font-weight: 800;
    line-height: 96%;
}

/* Section 3 Styling starts here */
.subscription-box {
    z-index: 10;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.layout-container {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.food {
    grid-area: span 1 / span 1 / span 1 / span 1;
    background-color: white;
    opacity: 1;
    background-image: url('../images/bgPattern-dot-round.png');
    background-repeat: repeat-x;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    display: flex;
    position: relative;
    background-position: center;
}


@keyframes FoodScale {
    0% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ManSlideDown {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}


.image-container {
    background-image: none;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    align-items: stretch;
    justify-items: stretch;
    max-width: 90%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    height: 100%;
    max-height: 80%;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    display: grid;
    opacity: 0;
    transform: scale(3);
}

.image-container.animate-in {
    animation: FoodScale 1s ease-out forwards;
}

.images-container img {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    vertical-align: middle;
}

.bling-left {
    width: 6vw;
    position: absolute;
    top: 10%;
    left: 5%;
    opacity: 0;
    transform: scale(3);
}

.bling-left.animate-in {
    animation: FoodScale 1s ease-out forwards;
}

.bling-right {
    width: 6vw;
    position: absolute;
    bottom: 10%;
    right: 4%;
    opacity: 0;
    transform: scale(3);
}

.bling-right.animate-in {
    animation: FoodScale 1s ease-out forwards;
}

/* Man section specific styles */
.man .image-container {
    opacity: 0;
    transform: translateY(-10px);
}

.man .image-container.animate-in {
    animation: ManSlideDown 1s ease-out forwards;
}

.man .bling-left {
    opacity: 0;
    transform: scale(3);
}

.man .bling-left.animate-in {
    animation: FoodScale 1s ease-out forwards;
}

.man .bling-right {
    opacity: 0;
    transform: scale(3);
}

.man .bling-right.animate-in {
    animation: FoodScale 1s ease-out forwards;
}

.content {
    grid-area: span 1 / span 1 / span 1 / span 1;
    background-color: #df8368;
    background-image: url('../images/Waves.svg');
    background-position: 50%;
    background-repeat: repeat;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.intro-content-wrapper {
    margin-left: 5vw;
    margin-right: 5vw;
}

.heading-section-display {
    color: #f4e9dd;
    text-align: left;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    font-size: 5vw;
    font-weight: 800;
    line-height: 98%;
}

.stroke {
    color: #45704c;
    -webkit-text-fill-color: #45704c;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #F4E9DD;
}

/* About Section Start Here */

.about {
    z-index: 10;
    background-color: #80a5b5;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    position: relative;
    overflow: visible;
}

.about-bg-element-wrapper {
    z-index: 1;
    height: 100vh;
    min-height: 700px;
    padding: 5vh;
    position: sticky;
    top: 0%;
    left: 0;
    overflow: hidden;
}

.about-bg-element-wrapper .bg-sun {
    border-style: none;
    border-color: #f4e9dd;
    background-color: #80a5b5;
    object-fit: fill;
    background-image: none;

    background-repeat: repeat;
    background-size: auto;
    border: .8vh #000;
    border-radius: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
}

.about-bg-element-wrapper .bg-sun img {
    width: 100%;
    height: 100%;
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
}

.about-bg-content-wrapper {
    z-index: 10;
    margin-top: -100vh;
    position: relative;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
    overflow: visible;
}

.left-text-content {
    float: left;
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: 100vh;
    min-height: 700px;
    padding-left: 7vh;
    padding-right: 4vh;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    bottom: 0;
}

p {
    max-width: 52ch;
    margin-bottom: 20px;
    font-size: 1.25rem;
    line-height: 128%;
    color: white;
    font-family: Poppins, sans-serif;
    ;
}

.paragraph {
    max-width: 52ch;
    margin-bottom: 20px;
    font-size: 1.25rem;
    line-height: 128%;
    color: white;
    font-family: Poppins, sans-serif;
    ;
}

.right-picture-content {
    float: left;
    justify-content: center;
    width: 50%;
    padding-top: 50vh;
    padding-bottom: 50vh;
    display: flex;
    overflow: hidden;
}

.about-image-grid {
    grid-row-gap: 49px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 85%;
    grid-column-gap: 16px;
    grid-auto-columns: 1fr;
    display: grid;
}

/* 
.about-image-grid img{
    grid-area: span 1 / span 1 / span 1 / span 1;
} */

.about-image-grid .about-image1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    width: 70%;
}

.about-image-grid .about-image2 {
    grid-area: 2 / 1 / 3 / 2;
    width: 80%;
}

.about-image-grid .about-image3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    width: 70%;
}

.about-image-grid .about-image4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    width: 70%;
}

.about-image-grid .about-image5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    width: 70%;
}


/* Introduction Section */

.intro-section {
    z-index: 10;
    background-color: var(--default-bg);
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.intro-section .content {
    grid-area: span 1 / span 1 / span 1 / span 1;
    background-color: #80a188;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    background-image: none;
}

.intro-section .div-block-2 {
    color: #f4e9dd;
    padding-top: 24px;
}

.intro-section .man {
    grid-area: span 1 / span 1 / span 1 / span 1;
    background-color: white;
    opacity: 1;
    background-image: url('../images/bgPattern-dot-round.png');
    background-repeat: repeat-x;
    background-size: contain;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    display: flex;
    position: relative;
    background-position: center;
}

.intro-section .man .image-container {
    background-image: url('../images/youngManImageInBalckandWhite.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 70%;
    max-width: 90%;
    height: 100%;
    max-height: 80%;
}

/* Features Section */

.features-section {
    z-index: 10;
    background-image: url("../images/bgPattern-dots-yellow.png");
    background-position: 50%;
    background-size: 400px;
    background-attachment: scroll;
    padding-top: 200px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

.running-text-bg {
    z-index: 0;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    overflow: hidden;
}

@keyframes translateScrollText {
    0% {
        transform: translateX(27vw);
    }

    100% {
        transform: translateX(-1400vw);
    }
}

.running-content-wrapper {
    mix-blend-mode: normal;
    justify-content: flex-start;
    align-items: center;
    display: flex;

    animation: translateScrollText linear;
    animation-timeline: scroll(root);
    animation-range: 0% 100%;
}

.bg-text-heavy {
    float: left;
    color: #ffeb6c;
    letter-spacing: -.5vw;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 10vw;
    font-size: 24vw;
    font-weight: 800;
    line-height: 96%;
    display: block;
}

.features-section .container {
    z-index: 10;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.heading-section {
    color: black;
    text-align: center;
    max-width: 20ch;
    margin: 0 auto 60px;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 100%;
}

.featured-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;

    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    display: grid;
}

.feature-card {
    background-color: #f4e9dd;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.product-visual {
    padding: 10%;
    display: flex;
    position: relative;
}

@keyframes TranslateFeatures {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.featured-product-image {
    object-fit: contain;
    flex: 1;
    display: inline-block;
    opacity: 0;
    transform: translateX(-150px);
}

.featured-product-image.animate-in {
    animation: TranslateFeatures 1s ease-out forwards;
}

.card-deco-right-bottom {
    z-index: 100;
    width: 20%;
    position: absolute;
    bottom: 18%;
    right: 0%;
}

.heading-card {
    z-index: 100;
    color: black;
    text-transform: uppercase;
    white-space: break-spaces;
    max-width: 12ch;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Rubik, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 96%;
    position: absolute;
    top: 4%;
    left: 6%;
}

/* Testimonial Section */
.testimonial {
    z-index: 10;
    background-color: #f4e9dd;
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.testimonial-bg-elements-wrapper {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}

.bg-element-dots {
    background-image: url("../images/bgPattern-square-dot-1.png");
    background-position: 0 0;
    background-size: 150px;
    width: 20vw;
    height: 20vw;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.second {
    height: 30vw;
    top: 20%;
    bottom: auto;
    left: auto;
    right: 0%;
}

.third {
    height: 20vw;
    top: 60%;
    bottom: auto;
    left: 0%;
    right: auto;
}

.bg-element-message {
    background-image: url("../images/Decorative-graphic-message-s.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 5%;
    right: 20%;
}

.three-hearts {
    grid-column-gap: 8px;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
}

.three-hearts > * {
    opacity: 0;
}

@keyframes ScaleHeart1 {
    0% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ScaleHeart2 {
    0% {
        transform: scale(2.25);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ScaleHeart3 {
    0% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.three-hearts.animate-in > *:nth-child(1){
    animation: ScaleHeart1 0.5s ease-out forwards;
}

.three-hearts.animate-in > *:nth-child(2){
    animation: ScaleHeart2 0.75s ease-out 0.2s forwards;
}

.three-hearts.animate-in > *:nth-child(3){
    animation: ScaleHeart3 1s ease-out 0.4s forwards;
}

.testimonial-container {
    z-index: 10;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.testimonial-content {
    direction: ltr;
    column-count: 3;
}

.customer-review-card {
    background-color: #45704c;
    margin-bottom: 16px;
    padding: 30px;
    display: inline-block;
}

.five-star {
    grid-column-gap: 2px;
    justify-content: flex-start;
    margin-bottom: 15px;
    display: flex;
}

.customer-review-text {
    color: #f4e9dd;
    text-align: right;
    margin-bottom: 0;
}

.customer-image {
    margin-bottom: 16px;
}

/* Footer Section */

footer {
    z-index: 10;
    background-color: rgb(255, 255, 255);
    padding-top: 10vh;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

footer.top {
    background-color: rgb(69, 112, 76);
}

.footer-container {
    z-index: 10;
    max-width: 1380px;
    padding-top: 60px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-wrapper {
    background-image: url('../images/bgPattern-dots-yellow.png');
    background-position: 0 0;
    background-size: 25%;
}

.w-row {
    margin-left: -10px;
    margin-right: -10px;
}

.w-row:before,
.w-row:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-row:after {
    clear: both;
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.newsletter-column {
    padding-left: 0;
    padding-right: 0;
}

.w-col-8 {
    width: 66.6667%;
}

.w-col {
    float: left;
    min-height: 1px;
    position: relative;
}

.newsletter-content-wrapper {
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    padding: 40px 60px;
    display: flex;
}

.heading-3 {
    color: black;
    font-size: 1.75rem;
}

.newsletter-form-block {
    align-self: auto;
}

.newsletter-form {
    display: block;
}

.form-label {
    text-align: left;
    margin-top: 10px;
    font-family: Rubik, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 140%;
}

.newsletter-input-wrapper {
    align-items: center;
    max-width: 550px;
    display: flex;
}

.newsletter-text-content p {
    color: #000;
}

.text-field {
    background-color: var(--default-bg);
    border: 4px solid #000;
    margin-bottom: 0;
    margin-right: 10px;
    padding: 20px 15px;
    line-height: 20px;
}

.w-input,
.w-select {
    color: #333;
    width: 100%;
    height: 38px;
    font-size: 14px;
    display: block;
}

.button-holder {
    height: 48px;
    cursor: pointer;
}

.button-animated {
    background-color: #df8368;
    border: 4px solid #000;
    transition: all .2s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.button-inner-filling-layer {
    background-color: black;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(-100%);
    cursor: pointer;
}

.button-animated:hover .button-inner-filling-layer {
    transform: translate(0%);
    transition: all .3s;
}

.button-core {
    color: white;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0);
    padding: 10px 15px;
    font-family: Rubik, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    position: relative;
    border: none;
    cursor: pointer;
}

.w-col-4 {
    width: 33.3333%;
}

.newsletter-image {
    z-index: 10;
    background-image: url("../images/cakeWithSauce.webp");
    background-position: 0 0;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    display: flex;
    position: relative;
}

.div-block {
    z-index: 1;
    background-image: url("../images/bgPattern-square-dot-1.png");
    background-position: 0 0;
    background-size: 150px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(10%, 10%);
}

.spacing-mid {
    height: 140px;
}

.social-media-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.socialmedia-link {
    margin-left: 30px;
    transition: all .2s;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.socialmedia-icon-group .socialmedia-link img {
    cursor: pointer !important;
}

.socialmedia-link:hover {
    transform: translate(0, -10px);
    cursor: pointer !important;
}

.heading-social {
    color: #f4e9dd;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.75rem;
    display: inline-block;
}

.footer-moving-text {
    position: static;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

@keyframes translate-footer-text {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(-240vw);
    }
}

.running-text-wrapper {
    mix-blend-mode: normal;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    animation: translate-footer-text 20s linear infinite;
}

.bg-text-heavy-dark {
    color: rgba(0, 0, 0, .15);
    padding-left: 0;
    float: left;
    letter-spacing: -.5vw;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 10vw;
    font-size: 24vw;
    font-weight: 800;
    line-height: 96%;
    display: block;
}

/* Media Queries for responsiveness */

/* ========================================
   TABLET - 991px and below
   ======================================== */
@media screen and (max-width: 991px) {

    /* Hero Section - Section 1 */
    .hero-section .elements-wrapper img {
        width: 8vw;
        bottom: 12%;
        right: 8%;
    }

    .images-container {
        width: 95vw;
        padding-top: 5vh;
        padding-bottom: 10vh;
    }

    .images-container .imageGrid {
        grid-column-gap: 9vw;
        grid-row-gap: 20vh;
    }

    .images-container .imageGrid .image1,
    .images-container .imageGrid .image2 {
        object-fit: cover;
        width: 100%;
        height: auto;
    }

    .text-container {
        min-height: 600px;
    }

    .text-container .vertical-info {
        width: 40px;
    }

    .text-container .heading-container {
        top: 100px;
    }

    .text-container .heading-container h1 {
        font-size: 15vw;
        line-height: 90%;
        max-width: 10ch;
    }

    .text-container .heading-container h2 {
        font-size: 6vw;
        margin-top: 10px;
    }

    .text-container .plane-animation {
        width: 35vw;
        top: 10%;
        left: 60%;
    }

    /* Section 3 | Subscription Box */
    .food {
        min-height: 75vh;
    }

    /* Section 4 | About Section */
    .about-bg-element-wrapper .bg-sun {
        transform: scale(1.1);
    }

    /* Section 5 | Intro Section */
    .intro-section .div-block-2 {
        padding-top: 0px;
    }

    .intro-section .div-block-2 p {
        margin-bottom: 10px;
    }

    /* Section 6 | Features Section */

    .features-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .testimonial-container {
        padding: 30px;
    }

    .heading-section {
        font-size: 2.75rem;
    }

    .heading-card {
        font-size: 1.4rem;
        top: 5%;
    }

    /* Section 8 | Testimonoal Section */
    .bg-element-message {
        width: 60px;
        height: 60px;
    }

    .testimonial {
        padding-top: 100px;
    }

    .testimonial-content {
        column-count: 3;
    }

    .customer-review-card {
        padding: 20px;
    }

    .five-star {
        margin-bottom: 10px;
    }

    .five-star img {
        width: 26px;
    }

    .customer-review-text {
        font-size: .875rem;
        line-height: 140%;
    }

    /* Footer */
    footer {
        padding-top: 20vh;
    }

    footer .footer-container {
        padding: 30px;
    }

    .newsletter-content-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .spacing-mid {
        height: 300px;
    }

    .social-media-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .heading-social {
        font-size: 2.75rem;
    }

    .socialmedia-link {
        width: 50px
    }
}

/* ========================================
   SMALL TABLET - 767px and below
   ======================================== */
@media screen and (max-width: 767px) {

    /* Hero Section - Section 1 */
    .hero-section .elements-wrapper img {
        width: 10vw;
        bottom: 10%;
        right: 6%;
    }

    .images-container {
        width: 100vw;
        padding-top: 8vh;
        padding-bottom: 8vh;
    }

    .images-container .imageGrid {
        grid-column-gap: 6vw;
        grid-row-gap: 15vh;
    }

    .text-container {
        min-height: 550px;
    }

    .text-container .heading-container {
        top: 75px;
    }

    .text-container .heading-container h1 {
        font-size: 18vw;
        line-height: 85%;
    }

    .text-container .heading-container h2 {
        font-size: 7vw;
    }

    .text-container .plane-animation {
        width: 40vw;
        top: 5%;
        left: 55%;
    }

    /* Section 3 - Subscription Box */

    .layout-container .food {
        min-height: 60vh;
    }

    .food .heading-section-display {
        font-size: 6vw;
    }

    /* Section 4 | About Section */
    .about-bg-element-wrapper .bg-sun {
        transform: scale(1.2);
    }

    /* Section 6 | Features Section */

    .features-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .heading-section {
        font-size: 2.5rem;
    }

    .container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .testimonial-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .featured-grid {
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr 1fr;
    }

    /* Section 8 | Testimonoal Section */
    .testimonial-content {
        column-count: 2;
        justify-content: flex-start;
        align-items: center;
        overflow: auto;
    }

    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0;
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto;
    }

    p,
    li {
        font-size: 1rem;
    }

    .spacing-mid {
        height: 140px;
    }

    .socialmedia-link {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* ========================================
   MOBILE - 479px and below
   ======================================== */
@media screen and (max-width: 479px) {

    /* Navbar */
    .navbar .navLogo img {
        display: none;
    }

    .navbar .navLogo #hamburger {
        display: block;
    }

    /* Hero Section - Section 1 */
    .hero-section .elements-wrapper img {
        width: 12vw;
        bottom: 8%;
        right: 15%;
    }

    .images-container {
        width: 100vw;
        padding-top: 10vh;
        padding-bottom: 5vh;
        height: auto;
    }

    .images-container .imageGrid {
        grid-column-gap: 0vw;
        grid-row-gap: 12vh;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .images-container .imageGrid .image1,
    .images-container .imageGrid .image2 {
        width: 85%;
        margin: 0 auto;
    }

    .text-container {
        min-height: 500px;
    }

    .text-container .heading-container {
        top: -65px;
    }

    .text-container .vertical-info {
        display: none;
    }

    .text-container .heading-container h1 {
        font-size: 20vw;
        line-height: 88%;
        max-width: 100%;
    }

    .text-container .heading-container h2 {
        font-size: 8vw;
        margin-top: 15px;
    }

    .text-container .plane-animation {
        width: 45vw;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Section 3 - Subscription Box */

    .layout-container {
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
    }

    .layout-container .food {
        padding-top: 20px;
        padding-bottom: 50px;
        min-height: 40vh;
    }

    .layout-container .content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .heading-section-display {
        margin-top: 5px;
        font-size: 10vw;
    }

    /* Section 4 | About Section */

    .about-bg-element-wrapper .bg-sun {
        border-style: none;
        width: 200%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0%;
        bottom: auto;
        left: -61%;
        right: 0%;
        transform: scale(1);
    }

    .left-text-content {
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        height: auto;
        min-height: auto;
        padding-top: 120px;
        padding-left: 6%;
        padding-right: 6%;
        position: relative;
    }

    .right-picture-content {
        width: 100%;
        padding-top: 5vh;
        padding-bottom: 10vh;
        overflow: hidden;
    }

    .about-image-grid {
        grid-column-gap: 0px;
        grid-row-gap: 40px;
        flex: 0 auto;
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        width: 100%;
    }

    /* Section 5 | Intro Section */
    .intro-section .man {
        min-height: 60vh;
    }

    /* Section 6 | Features Section */

    .features-section {
        background-position: 0%;
        background-size: 200px;
    }

    .heading-section {
        letter-spacing: 0;
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .featured-grid {
        grid-template-rows: auto auto auto auto auto auto;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        align-content: space-between;
        justify-items: center;
    }

    .heading-card {
        font-size: 2.4rem;
        top: 5%;
    }

    /* Animated Text Section */
    .animated-text {
        border-top-width: 5px;
        border-bottom-width: 5px;
    }

    .animated-text .animated-text-wrapper .divider-text {
        border-left-width: 5px;
        border-right-width: 5px;
        padding: 4px;
        font-size: 7.5vw;
    }

    /* Section 8 | Testimonoal Section */
    .bg-element-message {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 5%;
    }

    .testimonial {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .testimonial .three-hearts {
        max-height: 1.5rem;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .testimonial-content {
        white-space: normal;
        column-gap: 10px;
    }

    .customer-review-card {
        margin-bottom: 10px;
        padding: 15px 10px;
    }

    .five-star {
        margin-bottom: 5px;
    }

    .five-star img {
        width: 16px;
    }

    .customer-review-text {
        font-size: .75rem;
        font-weight: 500;
        line-height: 128%;
    }

    /* Footer Section */
    footer {
        padding-top: 0;
        position: relative;
    }

    footer .footer-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .newsletter-content-wrapper {
        min-height: auto;
        padding: 40px 6% 20px;
    }

    h2 {
        font-size: 2rem;
    }

    .newsletter-input-wrapper {
        flex-flow: column wrap;
        align-items: stretch;
    }

    .text-field {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .button-holder {
        height: auto;
    }

    .button-core {
        align-self: flex-start;
        padding: 8px 10px;
        font-size: 1rem;
        line-height: 1rem;
    }

    .w-col {
        width: 100%;
    }

    .newsletter-image {
        min-height: 250px;
        margin-bottom: 6%;
        margin-left: 6%;
        margin-right: 6%;
    }



    .spacing-mid {
        height: 80px;
    }

    .social-media-wrapper {
        padding: 6%;
    }

    .heading-social {
        flex: 0 auto;
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .socialmedia-link {
        width: 44px;
        height: 44px;
        margin-left: 0;
    }

    .bg-text-heavy-dark {
        font-size: 24vw;
    }

}