#header-logo-small {
    opacity: 0;
    pointer-events: none;
    transition: .5s all;
}

.header-logo-small__link {
    pointer-events: none;
}

#header-logo-small.visible {
    opacity: .8;
}

#header-logo-small.visible .header-logo-small__link {
    pointer-events: auto;
}

#main section:first-child {
    margin-top: 60px;
}

section, footer {
    position: relative;
    z-index: 5;
}

@media screen and (min-width: 992px) {
    #main section:first-child {
        margin-top: 100px;
    }
}

#banner,
#learn-more-sec {
    overflow: hidden;
}

#learn-more-sec {
    z-index: 4;
}

#banner {
    margin-top: 60px;
}

.banner__bg-img {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 450px;
    max-height: 100vh;
    z-index: 1;
}

.learn-more-sec__bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner__bg-img > *,
.learn-more-sec__bg-img > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#banner .container,
#learn-more-sec .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

#banner .text-block {
    padding: 20px 0;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

#banner .text-block .sec-title {
    font-size: 60px;
    text-shadow: 0 0 5px rgba(255,255,255,.6);
    margin-bottom: 200px;
}

.text-block__top-img {
    display: none;
}

.text-block__bottom-img {
    margin: 0 auto;
    max-width: 140px;
}

.text-block__bottom-img.jiggle-active {
    animation: jiggle ease-in-out .4s infinite;
}

#banner .btn,
#learn-more-sec .btns-block .btn {
    display: inline-block;
    height: 44px;
    font-size: 22px;
    line-height: 42px;
    padding: 0 30px 4px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s all;
}

#banner .btn.dark-btn {
    color: #fff;
    background-image: url(../images/btn_dark.png);
}

#banner .btn.dark-btn:hover {
    background-image: url(../images/btn_green.png);
    color: #000;
}

#story-sec {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
}

.story-sec__title {
    font-size: 52px;
    margin: 0 0 20px;
}

.story-sec__image-container {
    margin-bottom: 20px;
}

.story-sec__image {
    max-width: 100%;
}

.story-sec__text {
    font-size: 16px;
    line-height: 1.625em;
    color: #3D3D3D;
}

.story-sec__text > *:first-child {
    margin-top: 0;
}

.story-sec__text > *:last-child {
    margin-bottom: 0;
}

.story-sec__quote-container {
    position: relative;
    padding: 37px 58px;
    margin-bottom: 70px;
}

.story-sec__quote-container::before,
.story-sec__quote-container::after {
    display: block;
    font-size: 120px;
    line-height: 146px;
    width: 46px;
    height: 146px;
    position: absolute;
}

.story-sec__quote-container::before {
    content: '“';
    top: 0;
    left: 0;
}

.story-sec__quote-container::after {
    content: '”';
    bottom: -70px;
    right: 0;
}

.story-sec__quote {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    margin: 0;
}

.story-sec__signature {
    display: block;
    width: 87px;
    height: 87px;
    object-fit: contain;
    position: absolute;
    bottom: -70px;
    right: 58px;
}

#how-do-sec {
    position: relative;
    padding: 50px 0 30px;
    background-image: url(../images/bg_recipes.jpg);
    background-size: auto;
    background-position: top center;
    background-repeat: repeat;
    background-attachment: fixed;
}

#how-do-sec::before {
    content: '';
    display: block;
    width: 100%;
    height: 500px;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,.4) 80%, rgba(255,255,255,.2) 90%, rgba(255,255,255,.1) 95%, rgba(255,255,255,0) 99%);
}

#how-do-sec .container {
    position: relative;
    z-index: 2;
}

.how-do-sec__title-col {
    text-align: center;
}

.how-do-sec__sec-title {
    position: relative;
    display: inline-block;
    font-size: 36px;
    margin: 0 0 8px;
}

.how-do-sec__sec-title::before {
    content: '';
    display: block;
    width: 1.69em;
    height: 1.5em;
    background-image: url(../images/made-with-love.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: -2.13em;
    bottom: 0;
    transform: rotate(-50deg);
}

.how-do-sec__sec-title.jiggle-active::before {
    animation: jiggle_six ease-in-out .4s infinite;
}

.how-do-sec__sec-subtitle {
    display: block;
    font-size: 16px;
    line-height: 1.625em;
    font-weight: 600;
    margin: 0 auto 17px;
    max-width: 570px;
}

.how-do-sec__mention {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.how-do-sec__mention > * {
    vertical-align: middle;
}

.how-do-sec__mention a {
    display: inline-block;
    font-family: 'Ogenblik', sans-serif;
    font-size: 24px;
    line-height: 24px;
    color: #000;
    border-bottom: 2px solid #8fb852;
    padding-bottom: 2px;
    transition: .3s all;
}

.how-do-sec__mention a:hover {
    color: #8fb852;
}

.steps-row {
    margin-top: 33px;
    counter-reset: steps-counter;
}

.step-col {
    margin-bottom: 30px;
    counter-increment: steps-counter;
}

.step-title-block {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 29px;
    font-family: 'Ogenblik', sans-serif;
}

.step-title-block::before {
    content: counter(steps-counter) '.';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(../images/square_green.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    font-size: 46px;
    line-height: 56px;
}

.step-title-block:hover::before {
    animation: zoom ease-in-out .4s infinite;
}

.step-title {
    display: block;
    width: calc(100% - 60px);
    padding-left: 18px;
    font-size: 26px;
    line-height: 1.17em;
    text-shadow: 0 0 15px #fff;
}

.step-image {
    display: block;
    max-width: 100%;
}

#learn-more-sec .btns-block {
    padding: 250px 0 30px;
    text-align: center;
}

.learn-more-sec__bg.upperLayer {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
}

#learn-more-sec .btns-block .btn.green-btn {
    padding: 0 20px 4px;
    color: #000;
    background-image: url(../images/btn_green.png);
    transition: .3s all;
}

#learn-more-sec .btns-block .btn.green-btn:hover {
    background-image: url(../images/btn_dark.png);
    color: #fff;
}

#learn-more-sec .btns-block .btn.green-btn.add-to-cart-btn {
    position: relative;
    padding-right: 58px;
}

#learn-more-sec .btns-block .btn.green-btn.add-to-cart-btn::after {
    content: '';
    display: block;
    width: 27px;
    height: 23px;
    background-image: url(../images/cart-icon2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: .3s all;
}

#learn-more-sec .btns-block .btn.green-btn.add-to-cart-btn:hover::after {
    background-image: url(../images/cart-icon2_white.svg);
}

.learn-more-sec__heart-icon {
    display: block;
    position: absolute;
    top: 7%;
    left: calc(50% - 10px);
    width: 80px;
    height: auto;
    z-index: 4;
}

.learn-more-sec__heart-icon.jiggle-active {
    animation: jiggle ease-in-out .4s infinite;
}

@media screen and (min-width: 768px) {
    .banner__bg-img {
        height: 642px;
    }

    #banner .container {
        text-align: right;
    }

    #banner .text-block {
        width: 30%;
        padding: 70px 0;
    }

    #banner .text-block .sec-title {
        margin-bottom: 30px;
    }

    .text-block__top-img {
        display: inline-block;
        max-width: 150px;
    }

    .banner__bg-img > * {
        object-position: center;
    }

    .story-sec-content {
        display: grid;
        grid-template-areas: "a b";
        grid-gap: 20px 30px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr auto;
    }

    .story-sec__title {
        margin-bottom: 0;
    }

    .story-sec__image-container {
        position: relative;
        grid-area: 1 / 2 / 3 / 3;
        margin-bottom: 0;
    }

    .how-do-sec__mention a {
        color: #8fb852;
    }

    .how-do-sec__mention a:hover {
        color: #000;
        border-color: transparent;
    }

    .story-sec__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .story-sec__quote-container {
        grid-area: 3 / 1 / 4 / 3;
        margin: -20px 0 70px;
    }

    .how-do-sec__sec-title {
        font-size: 42px;
    }

    .step-title-block span {
        font-size: 24px;
    }

    #learn-more-sec .btns-block {
        padding: 150px 0;
    }

    .learn-more-sec__heart-icon {
        top: calc(50% - 140px);
        left: 31%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .banner__bg-img > * {
        width: calc(100% + 200px);
    }
}

@media screen and (min-width: 992px) {
    .banner__bg-img {
        top: 100px;
    }

    #banner {
        margin-top: 100px;
    }

    #banner .text-block {
        width: 50%;
        padding: 50px 0;
    }

    #story-sec {
        padding: 90px 0;
    }

    .story-sec__image-container {
        grid-area: 1 / 2 / 4 / 3;
    }

    .story-sec__quote-container {
        grid-area: 3 / 1 / 4 / 2;
    }

    #how-do-sec {
        padding: 75px 0 45px;
    }

    .how-do-sec__sec-title {
        font-size: 48px;
    }

    .step-title-block::before {
        width:80px;
        height:80px;
        font-size: 62px;
        line-height: 75px;
    }

    .step-title-block span {
        width: calc(100% - 80px);
        font-size: 32px;
    }

    #learn-more-sec .btns-block {
        padding: 240px 0;
    }

    #learn-more-sec .btns-block .btn:first-child {
        margin-right: 28px;
    }

    .learn-more-sec__heart-icon {
        top: calc(50% - 215px);
        left: calc(50% - 220px);
        width: 120px;
    }

    .learn-more-sec__bg {
        top: 100px;
        height: calc(100% - 100px);
    }
}

@media screen and (min-width: 1200px) {

    #story-sec {
        z-index: 6;
    }

    .story-sec-content {
        grid-gap: 20px 52px;
    }

    #how-do-sec {
        padding: 100px 0 70px;
    }

    .how-do-sec__sec-title {
        font-size: 52px;
    }

    .step-title-block::before {
        width: 92px;
        height: 92px;
        font-size: 72px;
        line-height: 87px;
    }

    .step-title-block span {
        width: calc(100% - 92px);
        font-size: 36px;
    }

    #learn-more-sec .btns-block {
        padding: 300px 0;
    }

    .learn-more-sec__heart-icon {
        top: calc(50% - 260px);
        left: calc(50% - 270px);
        width: 138px;
    }

    #learn-more-sec .btns-block .btn {
        height: 54px;
        font-size: 28px;
        line-height: 51px;
    }

    #learn-more-sec .btns-block .btn.green-btn.add-to-cart-btn::after {
        top: 16px;
    }
}

@media screen and (min-width: 1400px) {
    .learn-more-sec__heart-icon {
        width: 10%;
        top: auto;
        bottom: 70%;
        left: 31%;
    }
}