
@font-face {
    font-family: 'youngserifregular';
    src: url('../fonts/youngserif-regular-webfont.woff2') format('woff2'),
         url('../fonts/youngserif-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
    padding: 0;
    margin: 0;
    font-size: 100%;
}
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  
}
img{
    display: block;
}
a{
    display: block;
    text-decoration: none;
}
.whole-page{
    overflow: hidden;
    margin-top: 80px;
}
header{
    width: 100%;
    height: 80px;
    background: #ffffff;
    position: fixed;
    top: 0;
    background: #ffffff;
    z-index: 1000;
}
.inner-header{
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.logo-top{
    width: 200px;
    line-height: 80px;
    padding-top: 20px;
}
.logo-top img{
    width: 100%;
    
}
.topnav {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: #ffffff;
}
.inner-topnav{
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.topnav a {
  color: #2d3832;
  width: 25%;
  text-align: center;
  padding: 0 16px;
  line-height: 80px;
  text-decoration: none;
  font-size: 17px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
  background: #ffffff;
}

.topnav a:hover {
  color: #13a05d;
}



.topnav .icon {
  display: none;
}

@media screen and (max-width: 700px) {
  .topnav a {display: none;}
  .topnav a.icon {
      width: 20%;
    position: absolute;
    right: -8%;
    top: 0;
    display: block;
    background: none;
  }
  
}

@media screen and (max-width: 700px) {
  .topnav.responsive {position: absolute;
    top: 80px;
    right: 3%;
}
  .topnav.responsive .icon {
    position: fixed;
    right: -48%;
    top: 0;
  }
  .topnav{
      overflow: visible;
  }
  .inner-topnav{
      margin-top: 0px;
      
      width: 100%;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      background: transparent;
  }
  .topnav.responsive a {
    width: 100%;
    display: block;
    -webkit-box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
            box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .topnav.responsive a:first-of-type{
      margin-top: 0px;
  }
  
  .topnav a.icon {
        -webkit-box-shadow: 2px 2px 2px transparent;
                box-shadow: 2px 2px 2px transparent;
      border-bottom: 1px solid #fff;
  }
}

.title-banner{
    width: 100%;
    height: 450px;
    background: rgba(46,193,232,0.1);
    background-size: 100%;
    position: relative;
    
}
.title-banner::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 30%;
    height: 120%;
    background: url("../images/left-top-flowers.png") no-repeat;
    background-size: contain;
}
.title-banner::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 30%;
    height: 120%;
    background: url("../images/right-top-flowers.png") no-repeat;
    background-size: contain;
    background-position: top right;
}
.inner-title{
    width: 70%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 100px;
}
.inner-title-text{
    width: 40%;
    z-index: 1;
}
.inner-title-text h1{
    color: #2d3832;
    font-size: 1em;
    line-height: 1.1em;
    position: relative;
    font-weight: 200;
}
.inner-title-text h2{
    font-family: 'youngserifregular', serif;
    color: #2d3832;
    font-size: 2.8em;
    line-height: 1.1em;
    position: relative;
    margin-top: 20px;
    letter-spacing: 0em;
}
.inner-title-text a{
    width: 180px;
    line-height: 3em;
    font-family: 'youngserifregular', serif;
    border: 1px solid #2ec1e8;
    background: #2ec1e8;
    color: #ffffff;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: block;
    position: relative;
}
.inner-title-text a:hover{
    background: transparent;
    color: #2ec1e8;
}
.title-img{
    width: 70%;
    margin-top:-20px;
    
}
.title-img img{
    width: 120%;
    display: block;
    
    max-width: 800px;
}
/*Title Area Media Queries */
@media screen and (max-width: 1200px) {
    .title-banner::after{
        display: none;
    }
    .inner-title{
        width: 80%;
        margin-left: 10%;
        margin-right: 0;
        
    }
    .title-img{
        width: 50%;
        right: 2%;
    }
}
@media screen and (max-width: 950px) {
    .inner-header{
      width: 95%;
  }
    .title-banner::after{
        display: block;
        background-position: top right;
    }
    .inner-title{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding-top: 0px;
    }
    .inner-title-text{
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .inner-title-text h1{
        text-align: center;
        margin-top: 20px;
    }
    .inner-title-text h2{
        font-size: 2em;
        text-align: center;
        width: 100%;
        margin-top: 5px;
    }
    .inner-title-text a{
        margin: 0 auto;
        margin-top: 5px;
        line-height: 2em;
        width: 140px;
    }
    .title-img{
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin-top: 20px;
    }
    .title-img img{
        width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 740px) {
    .title-banner{
        height: 400px;
    }


}
@media screen and (max-width: 680px){
.title-img{
    margin-top: 40px;
}

}

.featured-products{
    width: 79%;
    margin: 0 auto;
    position: relative;
    top: 120px;
}
.featured-products h3{
    font-family: 'youngserifregular', serif;
    color: #2d3832; 
    width: 100%;
    font-size: 1.5em;
    position: relative;
}
.featured-products h3::after{
    position: absolute;
    content: "";
    display: block;
    width: 200px;
    height: 20px;
    background: url("../images/border-wave.png") no-repeat;
    background-position: center;
    background-size: 100%;
}

.featured-list{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 25px;
}
.item-holder{
    width: 33%;
}
.item-holder img{
    width: 100%;
}
.item-holder p{
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
    color: #2d3832; 
    margin-top: -40px;
    letter-spacing: 0.1em;
}
.item-holder p span{
    font-family: 'youngserifregular', serif;
    font-size: 0.6em;
    text-transform: none;
    letter-spacing: 0;
}

.item-holder a{
    width: 120px;
    border: 1px solid #2d3832;
    color: #2d3832;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    font-family: 'youngserifregular', serif;
    line-height: 2em;
    border-radius: 20px;
    padding-top: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.item-holder a:hover{
    background: #2ec1e8;
    border: 1px solid #2ec1e8;
    color: #ffffff;
}

.ginseng-holder{
    width: 25%;
}

.ginseng-holder img{
    width: 70%;
    transform: scale(0.9);
    margin: 0 auto;
    transition: 0.3s all;
}
.ginseng-holder p{
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    color: #2d3832; 
    margin-top: 0px;
    letter-spacing: 0.1em;
}
.ginseng-holder:hover p{
    color: #13a05d;
}
.ginseng-holder:hover img{
    transform: scale(1);
}
.ginseng-holder span{
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto;
    color: #2d3832;
    opacity: 0.6;
    font-size: 0.9em;
}

/*Featured Products Media Queries*/

@media screen and (max-width: 1100px){
    .ginseng-holder{
        width: 33%;
    }
    .ginseng-holder p{
        font-size: 0.7em;
    }
}

@media screen and (max-width: 1050px) {
    
    .featured-list{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .item-holder p{
        font-size: 1.1em;
        margin-top: -20px;
    }
    .item-holder p span{
        font-size: 0.7em;
    }
    .item-holder a{
        font-size: 0.9em;
        margin-top: 10px;
    }
}

@media screen and (max-width: 950px) {
    .featured-products{
        width: 95%;
    }

}
@media screen and (max-width: 780px) {
    .featured-products{
        top:40px;
    }
    .ginseng-holder{
        width: 50%;
    }
    .featured-list{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .item-holder{
        width: 80%;
    }
    .item-holder p{
        font-size: 1.1em;
        margin-top: -50px;
    }
}


.mission-statement{
    width: 100%;
    position: relative;
    height: 450px;
    background: #fdf3ff;
    margin-top: 200px;
}
.mission-statement::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 30%;
    height: 100%;
    background: url("../images/mission-left-flowers.png") no-repeat;
    background-size: contain;
}
.mission-statement::after{
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    width: 30%;
    height: 100%;
    background: url("../images/mission-right-flowers.png") no-repeat;
    background-size: contain;
    background-position: right bottom;
}
.inner-mission{
    color: #2d3832;
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.inner-mission h4{
    font-family: 'youngserifregular', serif;
    width: 100%;
    font-size: 1.6em;
    text-align: center;
    letter-spacing: 0.05em;
}

.inner-mission p{
    padding: 20px;
    line-height: 1.8em;
    text-align: center;
    letter-spacing: 0.01em;
}

.inner-mission a{
    width: 140px;
    border: 1px solid #13a05d;
    background: #13a05d;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    font-family: 'youngserifregular', serif;
    line-height: 2em;
    border-radius: 20px;
    padding-top: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.inner-mission a:hover{
    border: 1px solid #2d3832;
    background: transparent;
    color: #2d3832;
}

/*Mission Statment Media Queries */

@media screen and (max-width: 950px) {
    .inner-mission{
        width: 70%;
    }
    .mission-statement::before{
        width: 23%;
        height: 100%;
        background-position: left bottom;
    }
    .mission-statement::after{
        width: 40%;
    }

}
@media screen and (max-width: 780px) {
    .mission-statement{
        margin-top: 100px;
    }
}
@media screen and (max-width: 550px) {
    .inner-mission{
        width: 90%;
    }

}



.ginseng-statement{
    width: 100%;
    position: relative;
    height: 450px;
    background: #fffff8;
    margin-top: 0px;
}
.ginseng-statement::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 30%;
    height: 100%;
    background: url("../images/ginseng-left-statement.png") no-repeat;
    background-size: contain;
    background-position: bottom left;
}
.ginseng-statement::after{
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: url("../images/ginseng-right-statement.png") no-repeat;
    background-size: contain;
    background-position: right bottom;
}
.inner-ginseng{
    color: #2d3832;
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.inner-ginseng h4{
    font-family: 'youngserifregular', serif;
    width: 100%;
    font-size: 4em;
    letter-spacing: 0.01em;
    line-height: 1em;
    padding-top: 5px;
}

.inner-ginseng a{
    width: 140px;
    border: 1px solid #d02545;
    background: #d02545;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    font-family: 'youngserifregular', serif;
    line-height: 2em;
    border-radius: 20px;
    padding-top: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.inner-ginseng a:hover{
    border: 1px solid #d02545;
    background: transparent;
    color: #d02545;
}

/*Ginseng Banner Media Queries */

@media screen and (max-width: 1450px) {

    .ginseng-statement::after{
        background-size: 110%;
        background-position: left bottom;
    }

}
@media screen and (max-width: 1200px) {
    .ginseng-statement::before{
        width: 40%;
        background-size: 120%;
        background-position: right bottom;
    }
    .ginseng-statement::after{
        background-size: 150%;
        background-position: -50% bottom;
    }
    .inner-ginseng{
        width: 50%;
    }

}
@media screen and (max-width: 880px) {
    .ginseng-statement::before{
        background-size: 140%;
        background-position: right bottom;
    }
    .ginseng-statement::after{
        background-size: 200%;
        background-position: -40% bottom;
    }
    .inner-ginseng h4{
        font-size: 3.7em;
    }

}

@media screen and (max-width: 700px) {
    .inner-ginseng{
        width: 70%;
    }
    .inner-ginseng h4{
        font-size: 3em;
    }
    
}

.small-banner{
    width: 100%;
    height: 225px;
    background: #c8ffe5;
    position: relative;
}
.small-banner::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 27%;
    height: 100%;
    background: url("../images/supplement-left-bottles.png") no-repeat;
    background-size: contain;
    background-position: left center;
}
.small-banner::after{
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 27%;
    height: 100%;
    background: url("../images/supplement-right-bottles.png") no-repeat;
    background-size: contain;
    background-position: right center;
    z-index: 0;
}
.small-banner-inner{
    width: 40%;
    position: absolute;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.small-banner h5{
    color: #2d3832;
    font-family: 'youngserifregular', serif;
    font-size: 2.5em;
    line-height: 0.8em;
    text-align: center;
    width: 50%;
    margin-top: -10px;
}

.small-banner h5 span{
    font-family: 'Lato', sans-serif;
    font-weight: 200;
    font-size: 0.6em;
}
.small-banner a{
    width: 140px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #2d3832;
    text-align: center;
    margin-top: 10px;
    font-family: 'youngserifregular', serif;
    line-height: 2em;
    border-radius: 20px;
    padding-top: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    position: relative;
}
.small-banner a:hover{
    border: 1px solid #2d3832;
    background: transparent;
    color: #2d3832;
}

@media screen and (max-width: 1200px){
.small-banner-inner{
    left: 32%;
    width: 50%;
}

.small-banner::before{
    display: none;
}

.small-banner::after{
    width: 40%;
    background-size: 100%;

}
    
}

@media screen and (max-width: 950px){
    .small-banner{
        height: 200px;;
    }
    .small-banner-inner{
        left: 30%;
        width: 50%;
        display: block;
        -webkit-box-pack: initial;
            -ms-flex-pack: initial;
                justify-content: initial;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .small-banner h5{
        width: 100%;
        text-align: left
    }
    .small-banner a{
        
        margin-top: 20px;
    }
    .small-banner::after{
        width: 65%;
        background-size: 100%;
    
    }

}
@media screen and (max-width: 800px){
    .small-banner h5{
        font-size: 2em;
    }

}
@media screen and (max-width: 700px){
    .small-banner{
        height: 160px;;
    }
    .small-banner-inner{
        left: 38%;
        z-index: 1;
    }

    .small-banner::after{
        width: 50%;
        background-size: 160%;
        background-position: 10vw center;
    }
    .small-banner a{
        margin-top: 10px;
        z-index: 1;
    }

}

.second-featured{
    margin-top: -30px;
}
@media screen and (max-width: 780px){
    .second-featured{
        margin-top: 0px;
    }

}


.other-title{
    width: 100%;
    height: 225px;
    
    position: relative;
}
.about-title{
    background: url("../images/about-bg.png") no-repeat;
    background-size: cover;
}
.about-title::before{
    position: absolute;
    bottom: -50%;
    left: 2%;
    content: "";
    display: block;
    width: 35%;
    height: 120%;
    background: url("../images/about-top-left.png") no-repeat;
    background-size: contain;
    background-position: left center;
}
.about-title::after{
    position: absolute;
    bottom: -10%;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background: url("../images/about-top-right.png") no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.other-title h1{
    text-align: center;
    color: #2d3832;
    font-family: 'youngserifregular', serif;
    font-size: 3.5em;
    line-height: 0.7em;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

}
.other-title h1 span{
    font-family: "Lato", sans-serif;
    font-size: 0.35em;
    font-weight: 200;
}

.about-holder{
    width: 70%;
    margin: 0 auto;
    margin-top: 80px;
}
.inner-about{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.about-left{
    width: 50%;
}
.about-right{
    width: 50%;  
}
.about-left img{
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
}
.about-right p{
    width: 80%;
    display: block;
    padding: 5% 5% 40px 10%;
    font-size: 1.1em;
    line-height: 1.8em;
}
.about-right p::first-letter{
    font-family: 'youngserifregular', serif;
    font-style: italic;
    padding: 15px 5px 0px 0px;
    font-size: 2em;
    color: #2d3832;
    display: block;
    opacity: 0.5;
}
.about-right p .border-wave{
    width: 200px;
    margin: 0 auto;
    opacity: 0.2;
}
.about-right p #ginsengField{
    width: 50%;
    float: left;
    padding: 0 20px 10px 0;
}
.about-right p #jointFlex{
    width: 50%;
    float: right;
    padding: 0 0px 10px 20px;
}
.about-contact-p{
    width: 100%;
    text-align: center;
    margin-top: 120px;
    opacity: 0.8;
    color: #2d3832;
}
.about-contact-a{
    width: 140px;
    border: 1px solid #13a05d;
    background:#13a05d;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    font-family: 'youngserifregular', serif;
    line-height: 2em;
    border-radius: 20px;
    padding-top: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.about-contact-a:hover{
    background: transparent;
    color: #13a05d;
}
/*About Media Queries*/
@media screen and (max-width: 950px){
    .other-title{
        height: 180px;
    }
    
    .other-title::after{
        top: 0%;
        background-position: right top;
    }
    .other-title h1{
        font-size: 2.8em;
        width: 100%;
    }
    .other-title h1 span{
        font-size: 0.5em;
    }
    .about-right p #ginsengField, .about-right p #jointFlex{
        width: 80%;
        float: none;
        margin: 0 auto;
    }

}

@media screen and (max-width: 1350px){
    .about-holder{
        width: 90%;
    }
    .about-right p{
        padding: 5% 0;
        width: 90%;
    }

}
@media screen and (max-width: 2000px){
    .inner-about{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .about-right{
        width: 100%;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
    }
    .about-left{
        width: 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .about-right p{
        margin: 0 auto;
    }
}
.contact-title{
    background: url("../images/contact-bg.png") no-repeat;
    background-size: cover;
    
}
.contact-title::before{
    position: absolute;
    bottom: -50%;
    left: 0;
    content: "";
    display: block;
    width: 35%;
    height: 120%;
    background: url("../images/contact-left-top.png") no-repeat;
    background-size: contain;
    background-position: left center;
}
.contact-title::after{
    position: absolute;
    bottom: -50%;
    right: -2%;
    content: "";
    display: block;
    width: 35%;
    height: 120%;
    background: url("../images/contact-right-top.png") no-repeat;
    background-size: contain;
    background-position: right bottom;
}
.contact-holder{
    width: 600px;
    margin: 0 auto;
    margin-top: 80px;
    color: #2d3832;
}
.contact-holder form{
    width: 100%;
}
.contact-holder form input, textarea{
    width: 100%;
    border: none;
    background: #efefef;
    margin-top: 10px;
    border-radius: 15px;
    padding: .5em;
    font-family: "Lato", sans-serif;
}
.contact-holder form p{
    margin-top: 20px;
}
.contact-holder form select{
    border-radius: 5px;
    width: 100%;
    border: 1px solid rgba(2, 46, 58, 0.4);
    margin-top: 10px;
    color: #2d3832;
    height: 40px;
}
.contact-holder form input{
    line-height: 2em;
    
    
    text-align: center;
}

.contact-holder form p:last-of-type{
    text-align: center;
}
#submit-button{
    width: 140px;
    border: 1px solid #13a05d;
    background:#13a05d;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    font-family: 'youngserifregular', serif;
    border-radius: 25px;
    padding-top: 8px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
#submit-button:hover{
    background: transparent;
    color: #13a05d;
    cursor: pointer;
}
.thanks-middle{
    text-align: center;
}
@media screen and (max-width: 601px){
    .contact-holder{
        width: 90%;
        margin: 0 auto;
        margin-top: 100px;
    }
    .contact-title::after{
        top: 0;
        right: -25%;
        background-position: top right;
    }
}

.product-main-title{
    background: url("../images/products-bg.png") no-repeat;
    background-size: cover;
    
}
.product-main-title::before{
    position: absolute;
    bottom: -30%;;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 120%;
    background: url("../images/contact-left-top.png") no-repeat;
    background-size: contain;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    background-position: left center;
}
.product-main-title h1{
    text-align: left;
    width: 80%;
}

.products-all{
    width: 80%;
    margin: 0 auto;
    color: #2d3832;
}
.products-all-inner{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.prods-all-left{
    width: 20%;
}
.prods-all-right{
    width: 80%;
}
.prods-all-left p{
    font-family: 'youngserifregular', serif;
    margin-top: 80px;
}
.prods-all-left ul{
    width: 60%;
    margin-top: 20px;
}
.prods-all-left ul li{
    line-height: 2em;
    list-style: none;
    border-bottom: 1px solid rgba(45,56,50,0.2);
    border-left: 1px solid rgba(45,56,50,0.2);
    margin-top: 10px;
    padding: 10px;
}

.prods-all-left ul li a{
    color: #2d3832;
    font-style: italic;
}

.prods-all-left ul li a:hover{
    color: #13a05d;
    font-weight: 700;
}
.prods-all-right-describer p{
    font-size: 1.1em;
    line-height: 1.8em;
    margin-top: 80px;
    padding-right: 10%;
}
.prods-all-right-describer p::first-letter{
    font-family: 'youngserifregular', serif;
    font-style: italic;
    padding: 15px 5px 0px 0px;
    font-size: 2em;
    color: #2d3832;
    display: block;
    opacity: 0.5;
}
.ginseng-cat-list{
    width: 100%;
    display: flex;
    margin-top: 40px;
}
.ginseng-cat-list-item{
    width: 25%;
}
.ginseng-cat-list-item a{
    width: 100%;
    transition: 0.3s all;
}
.ginseng-cat-list-item a img{
    width: 100%;
    transform: scale(0.9);
    margin: 0 auto;
    transition: 0.3s all;
}
.ginseng-cat-list-item a p{
    width: 100%;
    text-align: center;
    font-family: 'youngserifregular', serif;
    color: #2d3832;
    font-size: 1.1em;
}
.ginseng-cat-list-item a:hover p{
    color: #13a05d;
}
.ginseng-cat-list-item a:hover img{
    transform: scale(0.95);
}
.all-products-holder{
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 80px;
}
.all-products-holder h3{
    font-family: 'youngserifregular', serif;
    color: #2d3832; 
    width: 100%;
    font-size: 1.5em;
    position: relative;
}
.all-products-holder h3::after{
    position: absolute;
    content: "";
    display: block;
    width: 200px;
    height: 20px;
    background: url("../images/border-wave.png") no-repeat;
    background-position: center;
    background-size: 100%;
}
@media screen and (max-width: 1300px){
    .all-products-holder p{
        font-size: 1.2em;
    }
    .ginseng-holder p{
        font-size: 1em;
    }
    .all-products-holder a{
        margin-top: 10px;
    }
}

@media screen and (max-width: 1205px){
    .prods-all-left ul{
        width: 80%;
    }


}

@media screen and (max-width: 1100px){
    .products-all-inner{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .prods-all-left{
        width: 100%;
    }
    .prods-all-left p{
        display: inline-block;
        padding-right: 20px;
        margin-top: 20px;
    }
    .prods-all-left ul {
        display: inline-block;
        margin-top: 0px;
    }
    .prods-all-left ul li{
        display: inline-block;
    }
    .prods-all-right{
        width: 100%;
    }
}
@media screen and (max-width: 950px){
    .all-products-holder .item-holder{
        width: 50%;
    }
    .product-main-title h1{
            font-size: 2.8em;
            width: 95%;
        }
    
    }

@media screen and (max-width: 780px){
    .products-all{
        width: 95%;
    }
    .all-products-holder .item-holder{
        width: 100%;
    }
    .ginseng-cat-list{
        flex-wrap: wrap;
    }
    .ginseng-cat-list-item{
        width: 50%
    }
}
@media screen and (max-width: 780px){
    .products-all{
        width: 90%;
    }
    .prods-all-left ul {
        font-size: 0.8em;
        width: auto;
    }
}
.single-prod-title .amazon-button{
    position: absolute;
    width: 380px;
    text-align: right;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 14%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.single-prod-title .amazon-button p{
    width: 50%;
    padding-right: 20px;
    font-style: italic;
    opacity: 0.6;
}
.single-prod-title .amazon-button a{
    width: 120px;
    opacity: 0.7;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.single-prod-title .amazon-button a:hover{
    opacity: 1;
}
.single-product-holder{
    position: relative;
    margin: 0 auto;
    width: 80%;
}
.sub-category-title{
    background: url("../images/products-bg.png") no-repeat;
    background-size: cover;
}
.single-product-inner{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.single-product-main-image{
    width: 50%;
}
.single-product-main-image img{
    width: 100%;
}
.ginseng-product-main-image{
    width: 50%;
}
.ginseng-product-main-image img{
    width: 60%;
    margin: 0 auto;
    margin-top: 40px;
}


.single-product-right{
    width: 50%;
}
.single-product-right p{
    padding: 80px 30px;
    font-size: 1.1em;
    line-height: 1.8em;
}
.single-product-right p a{
    width: 140px;
    border: 1px solid #13a05d;
    background:#13a05d;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-family: 'youngserifregular', serif;
    border-radius: 25px;
    padding-top: 0px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.single-product-right p span{
    opacity: 0.6;
}
.single-product-right p a:hover{
    background: transparent;
    color: #13a05d;
    cursor: pointer;
}
.supplement-table{
    width: 50%;
}
.supplement-table .NutritionInfo{
    width: 100%;
    line-height: 1.8em;
    padding: 0 30px;
}
.ProductNutritionInfo{
    font-family: 'youngserifregular', serif;
    color: #2d3832;
    font-size: 1.5em;
    background: #c8ffe5;
    line-height: 2em;
    position: relative;
}
.ProductNutritionInfo::after{
    display: block;
    position: absolute;
    content: "";
}

@media screen and (max-width: 1400px){
    .single-prod-title .amazon-button{
        flex-wrap: wrap;
    }
    .single-prod-title .amazon-button p{
        width: 100%;
        line-height: 2em;
        text-align: right;
    }
}
@media screen and (max-width: 1100px){
    .single-prod-title .amazon-button{
        display: none;
    }
}
@media screen and (max-width: 950px){
    

    .single-product-holder{
        width: 90%;
    }
}

@media screen and (max-width: 950px){



    .single-product-inner{
       -ms-flex-wrap: wrap;
           flex-wrap: wrap; 
    }
    .single-product-main-image{
        width: 100%;
    }
    .single-product-main-image img{
        width: 80%;
        margin: 0 auto;
    }
    .ginseng-product-main-image{
        width: 100%;
    }
    .ginseng-product-main-image img{
        width: 60%;
        margin: 0 auto;
        margin-top: 40px;
    }
    .single-product-right{
        width: 100%;
    }

    .single-product-right p {
        padding: 0px;
    }
    .supplement-table{
        width: 100%;
        margin-top: 40px;
    }
}

@media screen and (max-width: 700px){
    .single-prod-title .amazon-button{
        right: 2%;
    }
    .single-prod-title .amazon-button p{
        display: none;
    }
}




.sub-category-title h1{
    text-align: left;
    width: 80%;
}

.ginseng-title::before{
    position: absolute;
    bottom: 0%;;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 130%;
    background: url("../images/ginseng-left-statement.png") no-repeat;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    background-size: contain;
    background-position: left bottom;
}
.foods-title::before{
    position: absolute;
    bottom: -10%;;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background: url("../images/about-top-right.png") no-repeat;
    
    background-size: contain;
    background-position: right center;
}
.specials-title::before{
    position: absolute;
    bottom: 0%;;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background: url("../images/mission-right-flowers.png") no-repeat;
    
    background-size: contain;
    background-position: right bottom;
}
.supplement-title::before{
    position: absolute;
    bottom: 0%;;
    right: 0;
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background: url("../images/mission-left-flowers.png") no-repeat;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    background-size: contain;
    background-position: left center;
}
@media screen and (max-width: 950px){
    .sub-category-title h1{
            font-size: 2em;
            line-height: 1em;
            width: 95%;
        }
    
    }

footer{
    height: 300px;
    position: relative;
    width: 100%;
    background: #efefef;
    margin-top: 200px;
    
}
.footer-inner{
    position: absolute;
    top:50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
}
.footer-left{
    width: 30%;
}
.footer-left a img{
    width: 200px;
}
.footer-left p{
    opacity: 0.6;
}
.footer-right{
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-right ul{
    list-style: none;
    width: 33%;
}
.footer-right ul li a{
    color:#2d3832;
    opacity: 0.6;
    line-height: 2em;
}
.footer-right ul li a:hover{
    color:#13a05d;
    opacity: 1;
}
.social-section{
    width: 33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.social-section p{
    width: 100%;
    text-align: center;
    font-family: 'youngserifregular', serif;
    opacity: 0.5;
}
.social-section a{
    width: 30px;
    opacity: 0.8;
    border-bottom: 2px solid transparent;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}
.social-section a:hover{
    opacity: 1;
    border-bottom: 2px solid #13a05d;
}
.social-section a img{
    width: 100%;
}

/*Footer Media Queries */

@media screen and (max-width: 950px){
    .footer-inner{
        width: 95%;
    }
}

@media screen and (max-width: 780px){
    .footer-inner{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .footer-left{
        width: 100%;
    }
    .footer-left a {
        width: 200px;
        margin: 0 auto;
    }
    .footer-left p {
        text-align: center;
    }
    .footer-right{
        width: 80%;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 auto;
        margin-top: 20px;
    }

}

@media screen and (max-width: 680px){
    .footer-right{
        width: 90%;
    }
    
    .social-section a{
        width: 25px;
    }
}