/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */


/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */


/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/*
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem


#0AC8A9 - Dark green
#2BF4A1 - Green
#bd87c6 - pikish liliac
#938ed7 - liliac
#8367d8 - Purple
#c6bd87 - Light gold
#D2A337 - gold
*/


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),  url('../fonts/Gotham-Bold.otf')  format('opentype'),
         url('../fonts/Gotham-Bold.woff') format('woff'), url('../fonts/Gotham-Bold.ttf')  format('truetype'), url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),  url('../fonts/Gotham-Book.otf')  format('opentype'),
           url('../fonts/Gotham-Book.woff') format('woff'), url('../fonts/Gotham-Book.ttf')  format('truetype'), url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),  url('../fonts/Gotham-Medium.otf')  format('opentype'),
         url('../fonts/Gotham-Medium.woff') format('woff'), url('../fonts/Gotham-Medium.ttf')  format('truetype'), url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
}

:root {
  --color-hellolife: #ff5100;
  --color-yellow: #f9ce07;
  --color-maroon: #4e0800;
  --color-purple: #6e1399;
  --color-graphite: #333;
  --color-grey-1: #3F3F3F;
  --color-grey-2: #777;
  --color-grey-3: #F7F7F7;
  --color-black: #000;
  --color-text: #151515;
  --color-body-bg: #f0f1f1;
}

html {
  color: #1a1a1a;
  font-size: 1em;
  line-height: 1.4;
}

html {
  font-size: 16px;
}

body,
html {
  height: 100%;
  width: 100%;
}

body {
  font-size: 1rem;
  color: var(--color-text);
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.8px;
  background-color: var(--color-body-bg);
}

*:focus {
  outline: transparent;
}

:after,
 :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

div {
  position: relative;
  display: block;
}

p {
  padding: 0;
  margin: 0;
}

a {
  color: var(--color-maroon);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: var(--color-grey-1);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-graphite);
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.font-light {
  font-weight: 300;
}

.font-reg {
  font-weight: 400;
}

.font-it {
  font-style: italic;
}

.font-med {
  font-weight: 500;
}

.font-semi {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.translate-x {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.translate-y {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.translate-xy {
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.transition-3 {
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.transition-4 {
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.r-mb-0 {
    margin-bottom: 0.25rem !important;
  }
  .r-mb-1 {
    margin-bottom: 0.5rem !important;
  }

  .r-mb-2 {
    margin-bottom: 1rem !important;
  }

  .r-mb-3 {
    margin-bottom: 1.5rem !important;
  }

  .r-mb-4 {
    margin-bottom: 2rem !important;
  }

  .r-mb-5 {
    margin-bottom: 2.5rem !important;
  }

  .r-mb-6 {
    margin-bottom: 3rem !important;
  }

  .r-mb-7 {
    margin-bottom: 3.5rem !important;
  }

  .r-mb-8 {
    margin-bottom: 4rem !important;
  }

  .r-mb-9 {
    margin-bottom: 4.5rem !important;
  }

  .r-mb-10 {
    margin-bottom: 5rem !important;
  }

  .r-mb-11 {
    margin-bottom: 5.5rem !important;
  }

  .r-mb-12 {
    margin-bottom: 6rem !important;
  }

  .r-mb-13 {
    margin-bottom: 6.5rem !important;
  }

  .r-mb-14 {
    margin-bottom: 7rem !important;
  }

  .r-mb-15 {
    margin-bottom: 7.5rem !important;
  }

  .r-mb-16 {
    margin-bottom: 8rem !important;
  }

  .r-mt-1 {
    margin-top: 0.5rem !important;
  }

  .r-mt-2 {
    margin-top: 1rem !important;
  }

  .r-mt-3 {
    margin-top: 1.5rem !important;
  }

  .r-mt-4 {
    margin-top: 2rem !important;
  }

  .r-mt-5 {
    margin-top: 2.5rem !important;
  }

  .r-mt-6 {
    margin-top: 3rem !important;
  }

  .r-mt-7 {
    margin-top: 3.5rem !important;
  }

  .r-mt-8 {
    margin-top: 4rem !important;
  }

  .r-mt-9 {
    margin-top: 4.5rem !important;
  }

  .r-mt-10 {
    margin-top: 5rem !important;
  }

  .r-mt-11 {
    margin-top: 5.5rem !important;
  }

  .r-mt-12 {
    margin-top: 6rem !important;
  }

  .r-mt-13 {
    margin-top: 6.5rem !important;
  }

  .r-mt-14 {
    margin-top: 7rem !important;
  }

  .r-mt-15 {
    margin-top: 7.5rem !important;
  }

  .r-mt-16 {
    margin-top: 8rem !important;
  }

  .r-mr-1 {
    margin-right: 0.5rem !important;
  }

  .r-mr-2 {
    margin-right: 1rem !important;
  }

  .r-mr-3 {
    margin-right: 1.5rem !important;
  }

  .r-mr-4 {
    margin-right: 2rem !important;
  }

  .r-mr-5 {
    margin-right: 2.5rem !important;
  }

  .r-mr-6 {
    margin-right: 3rem !important;
  }

  .r-mr-7 {
    margin-right: 3.5rem !important;
  }

  .r-mr-8 {
    margin-right: 4rem !important;
  }

  .r-mr-9 {
    margin-right: 4.5rem !important;
  }

  .r-mr-10 {
    margin-right: 5rem !important;
  }

  .r-mr-11 {
    margin-right: 5.5rem !important;
  }

  .r-mr-12 {
    margin-right: 6rem !important;
  }

  .r-mr-13 {
    margin-right: 6.5rem !important;
  }

  .r-mr-14 {
    margin-right: 7rem !important;
  }

  .r-mr-15 {
    margin-right: 7.5rem !important;
  }

  .r-mr-16 {
    margin-right: 8rem !important;
  }
  .text-orange{
    color: var(--color-hellolife)!important;
  }
  .text-purple{
    color: var(--color-purple)!important;
  }
  .text-yellow{
    color: var(--color-yellow)!important;
  }
  .text-black{
    color: var(--color-black)!important;
  }

  /*Loader *******************************/

.loading-wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 2000;
  max-width: 0%;
  background: var(--color-body-bg);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  -webkit-transition: opacity 0.5s .1s, max-width 0s 1.3s;
  transition: opacity 0.5s .1s, max-width 0s 1.3s;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.loading-wrap.visible {
  max-width: 100%;
  pointer-events: auto;
  opacity: 1;
  -webkit-transition-delay: .1s, 0s;
  transition-delay: .1s, 0s;
  -webkit-transition-duration: .1s, 0s;
  transition-duration: .1s, 0s;
}

.loading {
  font-size: 1.625rem;
  color: var(--color-hellolife);
  -webkit-perspective: 100px;
  perspective: 100px;
  font-weight: 700;
}

.loading>span {
  -webkit-animation: flip 2s infinite;
  animation: flip 2s infinite;
  display: inline-block;
  -webkit-transform-origin: 50% 50% -10px;
  transform-origin: 50% 50% -10px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.loading>span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading>span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading>span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading>span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading>span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading>span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading>span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

@-webkit-keyframes flip {
  to {
    -webkit-transform: rotateX(1turn);
    transform: rotateX(1turn);
  }
}

@keyframes flip {
  to {
    -webkit-transform: rotateX(1turn);
    transform: rotateX(1turn);
  }
}
/* Menu Navigation  */
.navbar {
    padding: 0 40px;
    box-shadow: transparent 0 0 0 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    height: 70px;
    background:#ff5100!important;
}
.logo {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}
.logo-div {
    line-height: 60px;
    text-align: center;
    height: 60px;
}
.logo-div img {
    height: 100%;
    padding:0px!important;
}
.logo-img {
    width: 100%!important;
}

@media only screen and (min-width: 768px) {
  .navbar-expand-lg .navbar-nav .nav-link {
        padding: 4px 16px;
        margin: 0 4px;
        color: #fff;
    }
}
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .nav-link:hover{
  border-radius: .5rem .5rem 0 0;
  background-color: var(--color-yellow);
  color:  #151515;
}
.navbar.nav-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 40px 0px;
    background-color: var(--color-hellolife);
}
.dropdown-item.active, .dropdown-item:active {
    color: #000;
    text-decoration: none;
    background-color: var(--color-yellow);
}
.navbar-light .navbar-toggler {
    color: #fff;
    border-color: transparent;
}
.navbar-light .navbar-toggler-icon {
  background-image: url(../img/menu.svg);
}
/* Main Sections */
.main-container section {
    position: relative;
}
.opening-section {
    width: 100%;
    min-height: calc(100vw / 1.882);
}
.landing-section{
  background-image: url(../img/home-hero.png);
  background-size: cover;
  background-position: center;
  padding: 128px 0;
  z-index: 1;
}
.hero-head-img{
  width: 100%;
}
.body-section{
  padding: 96px 0;
}
/* Home section 1 */
.home-section-1{
  background-image: url(../img/section-bg-1.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  margin-top: -100px;
}
.ray-img{
  width: 400px;
  margin: 8px auto 0 auto;
}
.ray-img img{
  position: relative;
  display: block;
  margin: 0 auto;
}
.drop-img-1{
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -150px;
    z-index: 2;
    width: 500px;
}
.drop-img-1 img{
  width: 100%;
}
/* Home Section 2 */
.home-section-2{
  background-image: url(../img/home-section-break.png);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.5216);
  z-index: 1;
}
/* Home Section 3 */
.home-section-3{
  min-height: 100vh;
  margin-top: -200px;
  padding-top: 0;
}
.home-section-3 .home-inner-1{
  background-image: url(../img/home-section-3.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.460);
  padding-top: 400px;
}
.home-section-3 .home-inner-1 img{
  width: 100%;
}
.feature-summary{
    min-height: 360px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 24px 16px;
    -webkit-transition: all .8s cubic-bezier(.23, 1, .32, 1);
    transition: all .8s cubic-bezier(.23, 1, .32, 1);
}
.feature-summary:hover {
    background: #fff;
    -webkit-box-shadow: 27px 23px 107px -6px rgb(0 0 0 / 32%);
    box-shadow: 27px 23px 107px -6px rgb(0 0 0 / 32%);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.feature-icon {
    margin: 0px 0 16px 0;
}
.feature-icon img{
  width: 100%;
}
/* Home Section 4 */
.home-section-4{
  background-image: url(../img/section-breaker-2.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 2.367);
  border-top: 6px solid var(--color-hellolife);
}

/* Home Section 5 */
.home-section-5{
  background-image: url(../img/home-product.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.7193);
}

/* Typography */
.big-line-height{
  line-height: 2;
}
.copy-1-1{
  font-size: 0.75rem;
}
.copy-1-2{
  font-weight: 500;
}
.copy-2{
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.copy-2-1{
  color: var(--color-maroon);
  font-size: 1.5rem;
  margin-bottom: 24px;
  margin-top: 24px;
}
.copy-3-1{
  color: var(--color-maroon);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.8125rem;
}
.copy-4{
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1.375rem;
}
.copy-5{
  font-size: 2.5rem;
}
.text-with-disc::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-maroon);
  position: absolute;
  top: 12px;
}
/* Footer */
footer{
  width: 100%;
  position: relative;
  display: block;
  padding: 32px;
  background-color: var(--color-hellolife);
  color: #fff;
  font-style: 0.825rem;
}
.social-link-wrap{
  text-align: right;
}
.social-link{
  position: relative;
  display: inline-block;
  margin: 0 10px;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  transform-origin: center;
  transform: scale(1);
}
.social-link:hover{
  transform: scale(1.1);
}
.social-fb{
  background-image: url(../img/fb.svg);
}
.social-youtube{
  background-image: url(../img/youtube.svg);
}
.social-insta{
  background-image: url(../img/instagram.svg);
}
/* About Page */
.about-landing-section{
  background-image: url(../img/about-hero.png);
  background-size: cover;
  background-position: center;
  padding: 128px 0;
  z-index: 1;
  min-height: calc(100vw / 1.348);
}
/* About section 1 */
.about-section-1{
  background-image: url(../img/about-section-bg-1.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.11449);
  margin-top: -150px;
}
.drop-img-2{
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 32px;
    z-index: 2;
    width: 320px;
}
.drop-img-2 img{
  width: 100%;
}
.about-text-1{
  margin-top: 450px;
  z-index: 3;
}
.about-text-1 .copy-2{
  margin-bottom: 64px;
}
/* About Section 2 */
.about-section-2{
  background-image: url(../img/orange-factory.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.52);
  z-index: 1;
}
/* About Section 3 */
.about-section-3{
  margin-bottom: 32px;
}
/* About Section 4 */
.about-section-4{
  border-top: 2px dashed var(--color-maroon);
}
.video-wrap {
    width: 100%;
    padding-bottom: calc(100% / 1.777);
    height: 0;
    box-shadow: 27px 23px 107px -6px rgb(0 0 0 / 32%);
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Sunflower Page */
.sunflower-landing-section{
  background-image: url(../img/product-1-hero.png);
  background-size: cover;
  background-position: center;
  padding: 128px 0;
  z-index: 1;
  min-height: calc(100vw / 1.2547);
}
.sunflower-section-1{
  background-image: url(../img/section-breaker-4.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 0.9471);
  margin-top: -150px;
}
.sub-heading-img{
  margin-top: 128px;
}
.sub-heading-img img{
  width: 100%;
}
.sunflower-section-2{
  background-image: url(../img/section-breaker-7.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.4416);
}

.vitalife-img{

}
.vitalife-img img{
  width: 100%;
}
.vitalife-section{
  /*margin-top: calc((100vw / 1.4416) * 0.35);*/
  position: absolute;
  bottom: 0;
  left: 50%;
}
.sunflower-section-3{
  background-color: var(--color-hellolife);
  padding: 48px 0;
}
.sunflower-section-3 .feature-summary:hover {
    background: var(--color-hellolife);
}
.sunflower-section-4{
  background-image: url(../img/section-breaker-5.png);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 2.1011);
  z-index: 1;
}
.sunflower-section-5{
  background-image: url(../img/section--breaker-6.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.686);
  margin-top: -98px;
}
.hellolife-list{
  list-style: none;
  margin: 16px 0;
}
.hellolife-list li{
  margin-bottom: 16px;
}
.hellolife-list li:before{
  content: "";
  width: 8px;
  height: 10px;
  background-image: url(../img/drop-point.svg);
  background-size: contain;
  display: inline-block;
  position: relative;
  margin-right: 4px;
}
/* Ricebran Page */
.ricebran-body{
  background-color: #fff;
}
.ricebran-landing-section{
  background-image: url(../img/product-2-hero.png);
  background-size: cover;
  background-position: center;
  padding: 128px 0;
  z-index: 1;
  min-height: calc(100vw / 1.668);
}


.ricebran-section-1{
  margin-top: -150px;
  background-color: transparent;
  padding-top: 128px;
  z-index: 1;
}
.ricebran-section-2{
  background-image: url(../img/section-breaker8.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 0.959);
  padding-top: 0;
  margin-top: -200px;
}
.ricebran-section-3{
  background-image: url(../img/section-breaker9.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.2797);
}
.ricebran-section-5{
  background-image: url(../img/section-breaker10.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 2.2817);
}

.ricebran-section-4{
  background-color: var(--color-purple);
  padding: 48px 0;
}
.ricebran-section-4 .feature-summary:hover {
    background: var(--color-purple);
}

.ricebran-section-4 .copy-3-1 {
    color: var(--color-yellow);
}

.ricebran-section-6{
  padding: 48px 0;
  background-image: url(../img/section-wave.svg);
  background-size: cover;
  background-position: center;
}

/* Career Page */
.career-landing-section{
  background-image: url(../img/career-hero.png);
  background-size: cover;
  background-position: center;
  padding: 300px 0;
  z-index: 1;
  min-height: calc(100vw / 1.405);
}
.career-section-1{
  background-image: url(../img/section-bg-2.png);
  background-size: cover;
  background-position: center;
  min-height: calc(100vw / 1.2448);
}
.drop-img-3{
    margin-top: -200px;
    z-index: 2;
}
.drop-img-3 img{
  width: 100%;
}
.mailto-text{
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}
/*Contact us*/
.contact-landing-section{
  background-image: url(../img/contact-hero.png);
  background-size: cover;
  background-position: center;
  padding: 300px 0;
  z-index: 1;
  min-height: calc(100vw / 1.405);
}
.contact-section-1{
  background-image: url(../img/section-breaker-12.jpg);
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: calc(100vw / 1.2323);
  margin-top: -150px;
}
textarea.input-description{
  min-height: 200px;
}
.contact-submit{
  min-width: 200px;
  background-color: var(--color-hellolife);
  border-color: var(--color-hellolife);
}
.contact-info{
  display: flex;
  align-items: center;
}
.contact-icon{
  width: 64px;
  flex: none;
  margin-right: 20px;
}
.contact-icon img{
  width: 100%;
}
/*Media*/
.media-landing-section{
  background-image: url(../img/media-hero.png);
  background-size: cover;
  background-position: center;
  padding: 96px 0;
  z-index: 1;
  min-height: calc(100vw / 1.882);
}
.media-slider-wrap{
  width: 100%;
}
.media-slider-item{
  width: 100%;
}
.slick-dots li button:before{
  font-size: 10px;
  color: #fff;
  opacity: 1;
}
.slick-dots{
  bottom: -32px;
}
.media-section-1{
  background-image: url(../img/section-bg-2.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: calc(100vw / 1.2448);
  margin-top: -100px;
}
.drop-img-4{
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -70px;
    z-index: 2;
}
#instafeed{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-top: 70px;
}
#instafeed a{
  flex: 0 0 auto;
  width: 33.33333333%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin: 16px 0;
  box-shadow: 4px 6px 25px rgb(0 0 0 / 20%);
}
#instafeed a img{
  width: 100%;
}
.insta-handle{
  margin-top: 250px;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  display: block;
  text-decoration: none;
}
.drop-heading{
  width: 100%;
  position: absolute;
  bottom: 60px;
  text-align: center;
  z-index: 1;
}
.privacy{
	text-align: center;
   
	color:#fff;
	
}

.input-error-wrap {
    display: flex;
    position: absolute;
    bottom: -22px;
    left: 0;
    z-index: 3;
    display: none;
}

.input-error {
    font-size: 0.875rem;
    margin-top: 6px;
    color: #dd4433;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}
.shake {
    animation-name: shake;
}

@keyframes shake {

    from,
    to {
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
} 
/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}


/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}


/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}


/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}


/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}