body {
    scroll-behavior: smooth;
}

.hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    opacity: 1;
    z-index: 999;
}

.hamburger .line {
    width: 35px;
    height: 2px;
    background-color: #fefefe;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.hamburger:hover{
  cursor: pointer;
}

#mobile_menu .mobile-container {
    align-items: flex-end;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

#mobile_menu .mobile-nav {
    color: #121212;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 123px);
    min-height: 500px;
    justify-content: flex-start;
    /* pointer-events: none; */
    position: absolute;
    top: 100px;
    left: calc(1.5rem + 15px);
    z-index: 1000;
    right: 28px;
    min-height: 100vh;
}

div#mobile_menu {
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 998;
    width: 100%;
    pointer-events: none;
}

div#mobile_menu.active::after {
    background: #0F573B;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: all;
    z-index: 10;
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.mobile-nav a, .mobile-nav p {
    font-size: 1.75em;
    margin-bottom: 10px;
    font-weight: 300;
    color: #fefefe;
    text-decoration: none !important;
    pointer-events: cursor;
    opacity: 0;
    width: 100%;
    padding-bottom: 12px;
}

.mobile-nav p {
    font-size: 1em;
    color: #08314e;
    text-decoration: none !important;
    pointer-events: none;
    opacity: 0;
}

div#mobile_menu.active .mobile-nav a, div#mobile_menu.active .mobile-search {
    -webkit-animation: fade-in-top 0.6s ease-in-out 0.6s both;
    animation: fade-in-top 0.6s ease-in-out 0.6s both;
    pointer-events: all;
    color: #fefefe;
    font-family: "oswald", sans-serif;
    font-size: 2.25rem;
    font-weight: 300;
}

body.no-scroll, body.dont-scroll {
    overflow-y: hidden !important;
}

#hamburger-1.is-active .line:nth-child(2){
  opacity: 0 !important;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.nav {
    position: fixed;
    top: 10px;
    z-index: 9999;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.no-scroll {
    overflow-y: hidden;
}

#hero-scroll {
    position: fixed;
    bottom: 0;
    opacity: 0;
}

#hero-scroll .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #BDBD32;
    border-radius: 60px;
    left: calc(50% - 15px);
    position: relative;
}

#hero-scroll .mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10px;
    background-color: #333;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}

#scroll-indicator {
    position: fixed;
    bottom: 0;
    right: 1%;
    opacity: 0;
    z-index: 100;
}

#scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    background: rgb(255 255 255 / 35%);
    border: 2px solid #fff;
    border-radius: 60px;
    left: calc(50% - 15px);
    position: relative;
}

#scroll-indicator .mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 10px;
    background-color: #333;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}

#scroll-indicator .mouse.light::before {
    background-color: #fff;
}


#scroll-indicator p.scrol-text {
    color: #fff;
}

@keyframes mouse {
    from {
        opacity: 1;
        top: 10px;
    }
    to {
        opacity: 0;
        top: 35px;
    }
}

p.scrol-text {
    color: #0F573B;
    margin-top: 6px;
    font-size: 14px;
}

#hero-logo {
    position: absolute;
    top: 10px;
}

#hero-text-container {
    width: 50%;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

#hero-image-container .img {
    position: absolute;
    overflow: hidden;
}

#interior-logo.invert {
    filter: brightness(0) invert(1) !important;
}

#hero-image-container .img img {
    filter: blur(5px);
    transition: all 0.5s ease-in-out;
}

#hero-image-container .img img.unblur {
    filter: blur(0);
}

.img.img-01 {
    top: 10%;
    left: 0;
    width: 14vw;
}

.img.img-02 {
    top: 12%;
    left: 25%;
    width: 7vw;
}

.img.img-03 {
    top: 10%;
    right: 5%;
    width: 16vw;
}

.img.img-04 {
    top: 50%;
    left: 5%;
    width: 12vw;
}

.img.img-05 {
    top: 45%;
    right: 3%;
    width: 8vw;
}

.img.img-06 {
    bottom: 5%;
    left: 15%;
    width: 11vw;
}

.img.img-07 {
    bottom: 20%;
    right: 23%;
    width: 7vw;
}

.img.img-08 {
    bottom: 0;
    right: 3%;
    width: 14vw;
}


div.hero-content {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

div.hero-content div {
    width: 100%;
}

h1 {
    font-family: "open-sans", sans-serif;
    font-size: 4.25vw;
    color: #0F573B;
    font-weight: 300;
    position: relative;
}

.final p {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -65px;
    opacity: 0;
    margin-bottom: 0;
    transition: all 1.25s ease-in-out;
}

.final p.show-p {
    margin-top: 28px;
    opacity: 1;
}


.hero-entrance {
	-webkit-animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-top 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.hero-exit {
	-webkit-animation: fade-out-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: fade-out-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fade-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
}

#food-ins {
	background: #0F573B;
	z-index: 5;
    width:100vw;
}

.food-ins-container {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
}

.food-ins-text {
    position: relative;
    transform: translateX(7%) translateY(-50px);
    width: 50vw;
}

h2.food-ins-heading {
    font-family: "open-sans", sans-serif;
    font-size: 4.25vw;
    color: #fefefe;
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0;
}

span.bold-text {
    font-weight: 400;
    color: #BDBD32;
}

.food-ins-text #text-01, .food-ins-text #text-02 {
    position: absolute;
    opacity: 0;
}

#food-ins h2 {
    font-family: "open-sans", sans-serif;
    font-size: 4.25vw;
    color: #fefefe;
    font-weight: 300;
    margin-bottom: 24px;
}

.food-ins-text p.wide {
    width: 100%;
}

.food-ins-text p {
    color: #fefefe;
    font-size: 2.15vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    width: 75%;
}


.food-ins-map {
    width: 40%;
    position: absolute;
    right: 10%;
    bottom: calc( 50% - 40%);
    transition: all 1s ease-in-out;
    height: 80%;
}


.food-ins-map svg {
    height: 100%;
    max-width: 100%;
    width: auto;
}

.data-source-credit {
    position: absolute;
    bottom: 1%;
    width: 50vw;
    transform: translateX(7%);
    opacity: 0;
}

.data-source-credit p {
    font-family: "oswald", sans-serif;
    font-size: 1vw;
    font-weight: 300;
    opacity: 0.25;
    color: #FFF;
}

.spacer {
    height: 200vh;
}

#persona-section {
    background: #fff;
    z-index: 5;
    width:100vw;
    z-index: 10;
    transform: translateX(100vw);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
}

.persona-container {
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
}

.video-container-text {
    position: relative;
    width: 45vw;
    z-index: 2;
    top: 10%;
    height: 100vh;
    left: 5%;
}

h2.video-heading {
    font-family: "oswald", sans-serif;
    font-size: 3.5vw;
    font-weight: 300;
    color: #0F573B;
}

.video-container-text p {
    font-family: "open-sans", sans-serif;
    position: absolute;
    font-size: 1.75vw;
    font-weight: 300;
    line-height: 2.5;
    margin-top: 20px;
}

.video-container-text #parent, .video-container-text #child, .video-container-text #elderly {
    font-size: 50px;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 10%;
}

.social-image-container {
    display: flex;
    position: absolute;
    bottom: 0;
    height: 65vh;
    width: 100%;
}

.slide-img {
    object-fit: cover;
    object-position: center center;
}

.slide-img img, .slide-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slide-img.slide-img-00 {
    width: 50vw;
    position: absolute;
    left: -35vw;
    overflow: hidden;
    height: 50vh;
    bottom: 25%;
}

.slide-img.slide-img-01 {
    position: absolute;
    width: 50vw;
    left: 25vw;
    overflow: hidden;
    height: 50vh;
    bottom: 10%;
}

.slide-img.slide-img-02 {
    width: 50vw;
    position: absolute;
    left: 85vw;
    overflow: hidden;
    height: 50vh;
    bottom: 25%;
}

.slide-img.slide-img-03 {
    position: absolute;
    width: 50vw;
    left: 150vw;
    overflow: hidden;
    height: 50vh;
    bottom: 10%;
}

.slide-img.slide-img-04  {
    width: 50vw;
    position: absolute;
    left: 150vw;
    overflow: hidden;
    height: 50vh;
    bottom: 25%;
}

.slide-img.slide-img-05  {
    position: absolute;
    width: 50vw;
    left: 150vw;
    overflow: hidden;
    height: 50vh;
    bottom: 10%;
}

.parent-video, .child-video, .elderly-video  {
    opacity: 0;
    left: 30%;
    position: absolute;
    height: 100vh;
    width: 100vw;
}

.numbercount tspan {
    font-family: "open-sans", sans-serif;
    font-weight: 600;
}

.county tspan {
    font-family: "oswald", sans-serif;
    font-weight: 300;
}

.bridge-container {
    height: 100vh;
    position: fixed;
    bottom: 0;
    top: 100%;
    left: 0;
    background: #fefefe;
    z-index: 20;
    width: 100vw;
    transition: all 1s ease-in-out;
}

.bridge-text-container {
    height: 100vh;
}

.bridge-text-container h2 {
    font-family: "open-sans", sans-serif;
    font-size: 4.25vw;
    color: #434343;
    font-weight: 300;
    position: absolute;
    top: 25%;
    left: 7%;
    opacity: 0;
    width: 35%;
}

.bridge-img-container {
    position: absolute;
    bottom: -40px;
    width: 100vw;
}

.bridge-img-container svg {
    width: 100%;
}

.target01:hover, .target02:hover, .target03:hover, .target04:hover {
    cursor: pointer;
}

.bridge-text {
    position: absolute;
    top: 13%;
    left: 40%;
    width: 55%;
    color: #0F573B;
    font-size: 1.75vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    opacity: 0;
}

h2.accordion-header {
    position: unset;
    color: #707070;
    font-size: 1.25vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    opacity: 1;
    width: 100%;
}

.accordion-body, .accordion-body p {
    position: unset;
    color: #707070;
    font-size: 0.9vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    opacity: 1;
}

.instructions {
    display: flex;
    margin-top: 28px;
}

.instructions svg {
    overflow: visible;
    display: inline;
    width: 8%;
    margin-top: 1%;
}

.instructions p {
    font-size: 1.2vw;
    font-weight: 400;
    width: 75%;
}

.accordion-item {
    border: 1px solid #BDBD32;
}

button.accordion-button {
    padding: 1rem 0;
    color: #707070;
}

.accordion-body {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #707070;
    box-shadow: none;
}

.persona-video video {
    bottom: 0;
    position: absolute;
    max-height: 100vh;
}

.btn-container {
    position: absolute;
    bottom: 10%;
    right: 3%;
    z-index: 10;
}

.next-button {
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    padding: 0.25rem 1rem;
    border: 1px solid #707070;
    color: #707070;
    border-radius: 20px;
    background: #F4F4F4;
}

.next-button:hover {
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    padding: 0.25rem 1rem;
    border: 1px solid #BDBD32;
    color: #ffffff;
    border-radius: 20px;
    background: #BDBD32;
    cursor: pointer;
}

.search {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 30;
    background: #FFF;
    left: 100vw;
}

.form-content {
    position: absolute;
    left: 3%;
    width: 60%;
    bottom: 10%;
}

div#form-image-container {
    position: absolute;
    right: 0;
    width: 35%;
    height: 100vh;
}

.form-content p {
    color: #0F573B;
    font-size: 1.75vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
}

p.small {
    font-size: 1vw;
    font-weight: 400;
}

p.small a {
    text-decoration: underline;
    color: #0F573B;
}

#form-image-container .img.img-03 {
    top: 7%;
    left: 24%;
    width: 20vw;
    position: absolute;
    z-index: 0;
}

#form-image-container .img.img-06 {
    top: 30%;
    left: 10%;
    width: 11vw;
    position: absolute;
}

#form-image-container .img.img-05 {
    top: 45%;
    right: -5%;
    width: 13vw;
    position: absolute;
}

#form-image-container .img.img-04 {
    top: 60%;
    left: 28%;
    width: 11vw;
    position: absolute;
}

#form-image-container .img.img-07 {
    top: 53%;
    left: 0;
    width: 6vw;
    position: absolute;
}

#form-image-container .img.img-02 {
    top: 75%;
    right: 5%;
    width: 6vw;
    position: absolute;
    left: unset;
}

#form-image-container .img.img-08 {
    bottom: -5%;
    right: 12%;
    width: 9vw;
    position: absolute;
}

#form-image-container .img.img-01 {
    bottom: 1%;
    left: 2%;
    width: 13vw;
    position: absolute;
    top: unset;
}

.btn-primary {
    color: #fff;
    background-color: #BDBD32;
    border-color: #BDBD32;
    font-family: "open-sans", sans-serif;
    font-weight: 300;
    padding: 0.5rem 1rem;
    margin-right: 1em;
}

.btn-primary:hover {
    color: #fff;
    background-color: #a9a926;
    border-color: #a9a926;
}

.btn-secondary {
    color: #fff;
    background-color: #0F573B;
    border-color: #0F573B;
    font-family: "open-sans", sans-serif;
    font-weight: 300;
    padding: 0.5rem 1rem;
    margin-right: 1em;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #134a35;
    border-color: #134a35;
}

.form-control {
    height: calc(1.5em + 1.75rem + 2px);
    font-size: 1rem;
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #707070;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.search-transition {
    height: 100vh;
    width: 100vw;
    background: #0F573B;
    position: relative;
    z-index: 25;
    top: 0;
    left: 100vw;
    position: fixed;
}

#interior-logo {
    position: fixed;
    top: 10px;
    left: 10px;
    filter: brightness(0) invert(1);
    z-index: 999999;
    opacity: 0;
}

.scroll {
    display: none;
}

.bridge-mobile {
    display: none;
}

.btn {
    font-size: 0.8rem;
}

.social-container {
    background: #fff;
    height: 100vh;
    position: fixed;
    z-index: 15;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    transform: translateY(100vh);
    justify-content: center;
}

.social-container-slider-main {
    display: flex;
    justify-content: center;
}

.slide-text {
    position: absolute;
    top: 10%;
    opacity: 1;
    width: 50%;
    text-align: center;
    margin-left: 5rem;
    opacity: 0;
}

.slide-text.slide-text-01 {
    margin-left: 0;
}

.slide-text.slide-text-02 {
    width: 60%;
}

.slide-text-02, .slide-text-03, .slide-text-04, .slide-text-05  {
    margin-left: 100px;
}

.slide-text h2 {
    font-family: "open-sans", sans-serif;
    font-size: 3.05vw;
    color: #0F573B;
    font-weight: 300;
}

.bridge-container {
    height: 100vh;
    position: fixed;
    bottom: 0;
    top: 100vh;
    left: 0;
    background: #fefefe;
    z-index: 20;
    width: 100vw;
    transition: all 1s ease-in-out;
}

.bridge-img-container {
    position: absolute;
    bottom: -17px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bridge-img-container svg {
    width: auto;
    max-height: 280px;
}

.btn-container {
    position: absolute;
    bottom: 3%;
    right: 1%;
    z-index: 10;
}

@media only screen and (max-width: 991px) {

    .food-ins-container {
        align-items: unset;
    }

    .food-ins-text {
        display: block;
        transform: translateX(7%) translateY(25%);
        width: 80%;
    }

    .food-ins-text p.wide, .food-ins-text p {
        width: 100%;
    }

    .btn {
        font-size: 0.75rem;
    }

    p.bridge {
        font-family: "open-sans", sans-serif;
        position: absolute;
        font-size: 0.6rem;
        font-weight: 300;
        line-height: 2.5;
    }

    .bridge-desktop {
        display: none;
    }

    .bridge-mobile {
        display: block;
    }

    .slide-text {
        position: absolute;
        top: 18%;
    }

    .bridge-text-container h2 {
        font-size: 1.5rem;
        top: 16% !important;
        left: 5% !important;
        width: 90% !important;
    }

    .bridge-text-container h2.accordion-header {
        width: 100% !important;
    }

    .bridge-text {
        top: 24% !important;
        left: 5% !important;
        width: 90%;
        font-size: 0.9rem;
    }

    div#form-image-container {
        display: none;
    }

    .form-content {
        position: absolute;
        left: 3%;
        width: 94%;
        bottom: 10%;
    }

    .form-content p {
        color: #0F573B;
        font-size: 1rem;
        font-weight: 300;
        font-family: "open-sans", sans-serif;
    }

    p.small {
        font-size: 0.8rem;
        font-weight: 400;
        line-height: 1.5;
    }

    .form-content h1 {
    font-size: 3.25vw;
    }

    .video-container-text {
        width: 90%;
        top: 0%;
        left: 5%;
    }

    h2.video-heading {
        font-size: 7.25vw;
        max-width: 100%;
    }

    .video-container-text p {
        font-size: 0.8rem;
        line-height: 2.5;
    }

    .parent-video, .child-video, .elderly-video {
        left: 0%;
        width: 150%;
    }

    #interior-logo img {
        max-width: 135px;
    }

    .form-content h1 {
        font-size: 2.5rem;
    }

    .food-ins-map {
        width: 50%;
        right: 25%;
        bottom: 0;
        height: 80%;
    }

    .bridge-img-container {
        position: absolute;
        bottom: -12px;
        width: 400%;
        display: flex;
        justify-content: start;
    }

    .bridge-img-container svg {
        width: auto;
        max-height: 40%;
    }

    #Rectangle_224 {
        display: none;
    }

    .bridge-mobile p {
        font-size: 1rem;
    }

}

@media only screen and (max-width: 768px) {

    img.logo {
        max-width: 135px;
    }

    #hero-text-container {
        width: 85%;
    }

    h1 {
        font-size: 8.25vw;
    }

    .img.img-01 {
        top: 12%;
        left: 0;
        width: 30vw;
    }

    .img.img-02 {
        top: 22%;
        width: 20vw;
        z-index: -1;
    }

    .img.img-03 {
        top: 15%;
        right: 5%;
        width: 25vw;
    }

    .img.img-04 {
        left: -4%;
        top: unset;
        width: 30vw;
        bottom: 10%;
    }

    .img.img-05 {
        top: unset;
        bottom: 14%;
        right: -4%;
        width: 32vw;
    }

    .img.img-06, .img.img-07, .img.img-08  {
        display: none;
    }

    .final p {
        width: 100%;
    }

    .mouse {
        display: none;
    }

    .scroll {
        width: 30px;
        height: 30px;
        border: 2px solid #BDBD32;
        border-radius: 50%;
        position: relative;
        animation: down 1.5s infinite;
        -webkit-animation: down 1.5s infinite;
        display: block;
        left: calc( 50% - 15px);
    }

    .scroll::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 7px;
        width: 12px;
        height: 12px;
        border-left: 2px solid #0F573B;
        border-bottom: 2px solid #0F573B;
        transform: rotate(-45deg);
    }

    .scroll.light::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 7px;
        width: 12px;
        height: 12px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg);
    }

    @keyframes down {
      0% {
        transform: translate(0);
      }
      20% {
        transform: translateY(8px);
      }
      40% {
        transform: translate(0);
      }
    }

    #food-ins h2 {
        font-size: 8.25vw;
    }

    .food-ins-text p {
        font-size: 4.15vw;
    }

    .food-ins-text.wide {
        width: 80%;
    }

    .food-ins-map {
        width: 80%;
        position: absolute;
        left: 10%;
        bottom: calc( 50% - 40%);
        transition: all 1s ease-in-out;
        height: 50%;
    }

    .video-container-copy {
        top: 17vh;
    }

    #parent, #child, #elderly {
        font-size: 4.15vw;
    }

    .slide-text h2 {
        font-size: 6.05vw;
    }

    .slide-text {
        top: 20%;
        width: 80%;
        margin-left: 0;
        left: 10%;
    }

    .slide-text.slide-text-02 {
        width: 80%;
    }

    .slide-img.slide-img-00 {
        width: 65vw;
        left: -60vw;
        height: 35vh;
        bottom: 35%;
    }

    .slide-img.slide-img-01 {
        height: 35vh;
        width: 65vw;
        left: 17.5vw;
    }

    .slide-img.slide-img-02 {
        height: 35vh;
        bottom: 35%;
        left: 95vw;
        width: 65vw;
    }

    .slide-img.slide-img-03 {
        width: 65vw;
        left: 150vw;
        height: 35vh;
    }

    .slide-img.slide-img-04 {
        width: 65vw;
        left: 150vw;
        height: 35vh;
        bottom: 35%;
    }

    .slide-img.slide-img-05 {
        width: 65vw;
        left: 150vw;
        height: 30vh;
    }

}

@media only screen and (max-height: 690px) {
    .bridge-desktop {
        display: none;
    }

    .bridge-mobile {
        display: block;
    }
}


.hamburger.is-active .line {
    background-color: #FFF !important;
}
#chat-rows .row {
    margin-bottom: 0.5rem;
}
#chat-rows .row:last-child {
    margin-bottom: 1rem;
}

.question-icon {
    background-color: #0F573B;
    color: white;
    border-radius: 11px 11px 0px 11px;
    opacity: 1;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 1.5rem;
    line-height: 2;
    font-weight: 300;
}

.question {
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.question svg {
    border-radius: 11px 11px 0px 11px;
    padding: 0.5rem;
    background: #74aa9c;
}

.answer {
    color: #495057;
    letter-spacing: 1px;
}

/**
 * ==============================================
 * Dot Falling
 * ==============================================
 */
.dot-falling {
    position: relative;
    left: -9999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    box-shadow: 9999px 0 0 0 #9880ff;
    animation: dot-falling 1s infinite linear;
    animation-delay: 0.1s;
}
.dot-falling::before, .dot-falling::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}
.dot-falling::before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-falling-before 1s infinite linear;
    animation-delay: 0s;
}
.dot-falling::after {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-falling-after 1s infinite linear;
    animation-delay: 0.2s;
}

@keyframes dot-falling {
    0% {
        box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
    }
    25%, 50%, 75% {
        box-shadow: 9999px 0 0 0 #9880ff;
    }
    100% {
        box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
    }
}
@keyframes dot-falling-before {
    0% {
        box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
    }
    25%, 50%, 75% {
        box-shadow: 9984px 0 0 0 #9880ff;
    }
    100% {
        box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
    }
}
@keyframes dot-falling-after {
    0% {
        box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
    }
    25%, 50%, 75% {
        box-shadow: 10014px 0 0 0 #9880ff;
    }
    100% {
        box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
    }
}

.gpt-content {
    max-height: 500px;
    overflow: scroll;
}

.form-content .btn-container {
    position: relative;
    display: inline-block;
    right: unset;
}

.prev-button {
    font-weight: 300;
    font-family: "open-sans", sans-serif;
    padding: 0.25rem 1rem;
    border: 1px solid #707070;
    color: #707070;
    border-radius: 20px;
    background: #F4F4F4;
}

.modal h3 {
    color: #0F573B;
    font-size: 1.75vw;
    font-weight: 300;
    font-family: "open-sans", sans-serif;
}

label {
    font-size: 0.8rem;
}

.form-control {
    margin-top: 7px;
}

.modal .btn {
    border-radius: 25px;
}


.wpcf7-spinner {
    display: block;
}

.modal-header {
    border-bottom: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.modal {
    border-radius: 25px;
}