/*Burger*/

.burger-menu {
    position: relative;
    width: 30px;
    height: 21px;
    margin: 0 auto;
    text-transform: uppercase;
}

.burger-menu .burger-click-region {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.burger-menu-piece {
    display: block;
    position: absolute;
    width: 100%;
    border-top: 3px solid #077d69;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 400ms ease-out;
    transition: transform 400ms ease-out;
}

.burger-menu-piece:nth-child(1) {
    top: 0;
}

.burger-menu-piece:nth-child(2) {
    top: 8px;
    opacity: 1;
}

.burger-menu-piece:nth-child(3) {
    top: 16px;
}

@media screen and (max-width: 1200px) {
    .active .burger-menu-piece {
        border-color: #077d69;
    }
    .active .burger-menu-piece:nth-child(1) {
        -webkit-animation: burger-open-top 400ms ease-out forwards;
        animation: burger-open-top 400ms ease-out forwards;
        top: -4px;
    }
    .active .burger-menu-piece:nth-child(2) {
        opacity: 0;
        -webkit-transition: -webkit-transform 400ms ease-out, opacity 0ms linear 200ms;
        transition: transform 400ms ease-out, opacity 0ms linear 200ms;
    }
    .active .burger-menu-piece:nth-child(3) {
        -webkit-animation: burger-open-bot 400ms ease-out forwards;
        animation: burger-open-bot 400ms ease-out forwards;
        top: 20px;
    }
    .closing .burger-menu-piece:nth-child(1) {
        -webkit-animation: burger-close-top 400ms ease-out forwards;
        animation: burger-close-top 400ms ease-out forwards;
    }
    .closing .burger-menu-piece:nth-child(3) {
        -webkit-animation: burger-close-bot 400ms ease-out forwards;
        animation: burger-close-bot 400ms ease-out forwards;
    }
}

@-webkit-keyframes burger-open-top {
    50% {
        -webkit-transform: translate3d(0, 12px, 0);
        transform: translate3d(0, 12px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
        transform: translate3d(0, 12px, 0) rotate(45deg);
    }
}

@keyframes burger-open-top {
    50% {
        -webkit-transform: translate3d(0, 12px, 0);
        transform: translate3d(0, 12px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
        transform: translate3d(0, 12px, 0) rotate(45deg);
    }
}

@-webkit-keyframes burger-open-bot {
    50% {
        -webkit-transform: translate3d(0, -12px, 0);
        transform: translate3d(0, -12px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
        transform: translate3d(0, -12px, 0) rotate(-45deg);
    }
}

@keyframes burger-open-bot {
    50% {
        -webkit-transform: translate3d(0, -12px, 0);
        transform: translate3d(0, -12px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
        transform: translate3d(0, -12px, 0) rotate(-45deg);
    }
}

@-webkit-keyframes burger-close-top {
    0% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
        transform: translate3d(0, 12px, 0) rotate(45deg);
    }
    50% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
        transform: translate3d(0, 12px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes burger-close-top {
    0% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(45deg);
        transform: translate3d(0, 12px, 0) rotate(45deg);
    }
    50% {
        -webkit-transform: translate3d(0, 12px, 0) rotate(0deg);
        transform: translate3d(0, 12px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes burger-close-bot {
    0% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
        transform: translate3d(0, -12px, 0) rotate(-45deg);
    }
    50% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
        transform: translate3d(0, -12px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes burger-close-bot {
    0% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(-45deg);
        transform: translate3d(0, -12px, 0) rotate(-45deg);
    }
    50% {
        -webkit-transform: translate3d(0, -12px, 0) rotate(0deg);
        transform: translate3d(0, -12px, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.header {
    padding: 33px 0;
    position: relative;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 999;
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
    background: #fff;
}

@media only screen and (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
}

.header__row {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.header__logo {
    width: 191px;
    margin-right: 30px;
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.header__logo a {
    display: block;
}

.header__nav {
    margin-left: auto;
}

@media only screen and (max-width: 768px) {
    .header__logo {
        width: 100px;
    }
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        padding: 20px;
        overflow: auto;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        display: none;
        z-index: 9998;
    }
    .header__nav.active {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.header__nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .header__nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.header__nav ul li {
    margin: 0 0 0 47px;
    padding: 0;
}

@media only screen and (max-width: 992px) {
    .header__nav ul li {
        margin: 0 0 0 20px;
    }
}

@media only screen and (max-width: 768px) {
    .header__nav ul li {
        margin: 0 0 30px;
    }
}

.header__nav ul li:before {
    display: none;
}

.header__nav ul li a {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 3.33;
    letter-spacing: normal;
    text-align: center;
    color: #000000;
    padding-bottom: 5px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .header__nav ul li a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .header__nav ul li a {
        line-height: normal;
        padding: 10px 0;
        display: block;
        font-size: 20px;
    }
}

.header__nav ul li a:before,
.header__nav ul li a:after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 2px;
    background: #2E6514;
    width: 0;
    -webkit-transition: ease all 0.3s;
    transition: ease all 0.3s;
    left: 50%;
}

.header__nav ul li a:hover {
    color: #2E6514;
    text-decoration: none;
}

.header__nav ul li a:hover:before,
.header__nav ul li a:hover:after {
    width: 50%;
}

.header__nav ul li a:hover:after {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.header__burger {
    display: none;
    margin-left: auto;
    z-index: 9999;
}

@media only screen and (max-width: 768px) {
    .header__burger {
        display: block;
    }
}

.lame,
.lame-page {
    background: #fff;
}

.lame-page .wrapper {
    max-width: 1140px;
}

.one-product-section {
    /* padding: 140px 0 250px; */
    padding: 140px 0 150px;
}

.one-product-section__row {
    display: flex;
    flex-wrap: wrap;
}

.one-product-section__text {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
    padding-top: 10px;
    padding-right: 20px;
}

.one-product-section__img {
    text-align: center;
    flex: 0 0 50%;
    max-width: 50%;
}

.one-product-section__img img {
    margin-bottom: 20px;
}

.one-product-section__img p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.one-product-section__img p img {
    margin-right: 19px;
}

.one-product-section__text h2 {
    font-size: 40px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #2E6514;
    margin: 0 0 20px;
}

.one-product-section__text p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin: 0 0 30px;
}

.lame-btns {
    text-align: center;
    margin-bottom: 115px;
}

.btn-lame {
    font-size: 27px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.37;
    letter-spacing: -0.41px;
    text-align: center;
    color: #000000;
    border-radius: 20px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
    border: solid 2px #d19118;
    background-image: linear-gradient(to bottom, #ffe47a, #ffe47a 51%, #ffb62b 89%, #ffe47a);
    padding: 15px 45px;
    display: inline-block;
}

.btn-lame:hover {
    background: transparent linear-gradient(180deg, #FFF4C8 0%, #FFECA4 51%, #FFB62B 89%, #FFF4C8 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 10px #00000029;
    color: #2E6514;
    text-shadow: 0px 2px 1px #FFF1B9;
    border-color: #d19118;
}

.blue-bg-one {
    background-color: #1f65c4 !important;
}

.product-blue {
    background: linear-gradient(360deg, #596D0D 0%, #2A3E00 100%);
}

.product-blue__row {
    display: flex;
    align-items: center;
}

.product-blue__img {
    flex: 0 0 280px;
    max-width: 280px;
    margin-right: 58px;
}

.product-blue__img img {
    margin-top: -50px;
    position: relative;
    bottom: 50px;
}

.product-blue__text {
    flex: 1 1 100%;
}

.product-blue__text p {
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.lame-section {
    padding: 80px 0;
}

.lame-section h6 {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: center;
    color: #2E6514;
    margin: 0 0 1px;
    text-transform: uppercase;
}

.lame-section h3 {
    font-size: 30px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin: 0 0 30px;
}

.lame-section__row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    padding: 20px 0;
}

.lame-section__img {
    flex: 0 0 43%;
    max-width: 43%;
}

.lame-section__text {
    flex: 0 0 57%;
    max-width: 57%;
}

.big-heading {
    padding: 21px 26px 21px;
    border-radius: 20px;
    background-color: #4C8631;
}

.big-heading p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin: 0 0 1px;
    text-transform: uppercase;
}

.big-heading h3 {
    font-size: 30px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin: 0;
}

.lame-boxes {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.lame-boxes__col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-top: 30px;
}

.lame-boxes__wrap {
    padding: 21px 26px 31px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow: 0 3px 30px 0 rgba(212, 212, 212, 0.33);
    border: solid 2px #D4D4D4;
    background-color: #fff;
    height: 100%;
}

.lame-boxes__wrap h4 {
    font-size: 25px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: #2E6514;
    margin: 0 0 5px;
}

.lame-boxes__wrap p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin: 0;
}

.lame-boxes-img {
    padding: 20px 140px 85px;
}

.lame-boxes-img__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
    justify-content: center;
}

.lame-boxes-img__col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 30px;
    margin-bottom: 36px;
}

.lame-boxes-img__wrap {
    padding: 29.6px 23px 24px;
    border-radius: 20px;
    border: solid 2px #D2D2D2;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    color: #2E6514;
    text-transform: uppercase;
}

.lame-boxes-img__wrap .icon {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ingredients {
    padding: 0px 0;
}

.ingredients__row {
    display: flex;
}

.ingredients__list {
    flex: 0 0 75%;
    max-width: 75%;
}

.ingredients__list p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin: 0 0 30px;
}

.ingredients__item {
    margin-bottom: 17px;
}

.ingredients__wrap {
    padding: 20px 31px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow: 0 3px 30px 0 rgba(212, 212, 212, 0.33);
    border: solid 2px #D4D4D4;
    background-color: #fff;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: left;
    color: #2E6514;
}

.ingredients__img {
    flex: 0 0 25%;
    max-width: 25%;
    text-align: right;
    padding-left: 40px;
}

.lame-page .faq {
    margin: 0;
    padding-bottom: 215px;
}

.lame-page .faq .faq__heading {
    margin-bottom: 30px;
}

.lame-page .faq .faq__heading+p {
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}

.one-heading {
    color: #003a8a !important;
}

.faq-heading-one {
    color: #003a8a !important;
}

.lame-page .money-back-bg {
    margin-top: 0;
}

.lame-page .free-delivery-section {
    /* margin-bottom: 90px; */
}

.free-delivery-one-text h3 {
    font-size: 35px !important;
    color: #2E6514 !important;
}

.free-delivery-one-text span {
    font-size: 25px;
    line-height: 1.15;
}

.del-option {
    color: #2E6514;
}

/* bottle style */

.best-blue-value {
    background-color: #1f65c4 !important;
}

.best-blue-value-text {
    color: #1f65c4 !important;
    border-color: #c1dbff;
}

.best-blue-value-border-color {
    border-color: #c1dbff !important;
}

.best-blue-value-light-blue {
    color: #7e97b9;
}

.best-dark-blue-value {
    color: #003a8a;
}

.text-d-blue {
    color: #003a8a !important;
}

@media screen and (max-width:1100px) {
    .lame-boxes-img {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width:992px) {
    .lame-page .faq .faq__heading+p {
        font-size: 18px;
        line-height: 1.4;
    }
    .one-product-section {
        padding: 120px 0;
    }
    .product-blue__img {
        margin-right: 20px;
    }
    .product-blue__text p {
        font-size: 20px;
        padding: 30px 0;
    }
    .lame-boxes {
        margin: 0;
    }
    .lame-boxes__col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .lame-boxes-img__col {
        padding: 0 15px;
    }
    .lame-boxes-img__row {
        margin: 0 -15px;
    }
    .lame-boxes-img__wrap {
        font-size: 18px;
    }
}

@media screen and (max-width:768px) {
    .one-product-section__img {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto 30px;
        order: -1;
    }
    .one-product-section__text {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .one-product-section__text h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    .product-blue__img {
        flex: 0 0 150px;
        max-width: 150px;
    }
    .product-blue__text p {
        font-size: 18px;
    }
    .lame-boxes {
        margin: 0 -15px;
    }
    .lame-boxes__col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }
    .lame-section__row {
        flex-wrap: wrap;
    }
    .lame-section__img {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .lame-section__text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .lame-boxes-img__col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .ingredients__wrap {
        padding: 14px 21px;
        font-size: 20px;
    }
    .ingredients__list {
        flex: 0 0 70%;
        max-width: 70%;
    }
    .ingredients__img {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

@media screen and (max-width:576px) {
    .one-product-section {
        padding: 60px 0 100px;
    }
    .one-product-section__text p {
        font-size: 16px;
    }
    .product-blue__row {
        flex-wrap: wrap;
    }
    .product-blue__img {
        margin: 0 auto 20px;
    }
    .product-blue__text p {
        padding-top: 0;
    }
    .lame-boxes {
        margin: 0;
    }
    .lame-boxes__col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .lame-boxes-img__row {
        margin: 0;
    }
    .lame-boxes-img__col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .ingredients__list p {
        font-size: 16px;
        margin-bottom: 90px;
    }
    .ingredients__wrap {
        font-size: 16px;
        padding: 10px 15px;
        margin-right: -43%;
    }
    .ingredients__img {
        padding-left: 20px;
    }
    .ingredients__img img {
        width: 90px;
        margin: 0 auto;
        display: block;
    }
    .lame .free-delivery-section {
        margin-top: 0;
    }
    .lame-page .faq {
        padding-bottom: 135px;
    }
}

@media screen and (max-width:370px) {
    .ingredients__list p {
        margin-bottom: 60px;
    }
}

@media screen and (max-width:340px) {
    .ingredients__list p {
        margin-bottom: 40px;
    }
}

.wow {
    visibility: hidden;
}