html {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}


body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

* {
    -webkit-overflow-scrolling: touch;
}

/*
header {
    position: fixed;
    height: 10vh;
    width: 100vw;
    background-image: url(img/bg-header.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
}
*/
section {
    min-height: fit-content;
}

h1 {
    margin: 0;
    font-size: 4vh;
}

h2 {
    margin: 0;
    font-size: 2.5vh;
    font-weight: 500;
}

h3 {
    margin: 0;
    font-size: 2vh;
    font-weight: 500;
}

p {
    font-size: 2vh;
}


a {
    text-decoration: none;
    color: #000;
   /* border: 1px solid #000; */
   padding: 1vh;
    border-radius: 1vh;
}

a.notpadded {
    padding: 0.1rem;
}

#disclaimer {
    position: fixed;
    width: fit-content;
    height: fit-content;
    background: #87166eef;
    color: white;
    z-index: 10;
    bottom: 2vh;
    right: 2vw;
    padding: 0 5px;
    border-radius: 1vh;
    text-align: center;
}

.backpos {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* header */

#homelogo {
    display: block;
    width: 100%;
    height: 100%;
}

header {
    margin-top: -0vh;
    width: 96vw;
    height: 6.5vh;
    margin-left: 2vw;
    position: fixed;
    z-index: 10;
    background: #87166f;
    background: linear-gradient(180deg, #e74d68 -100%, #922777 90%);
    transition: 800ms;
    border-radius: 0 0 1vh 1vh;
}

.header-logo {
    height: 8vh;
    width: 40vw;
    position: absolute;
    background-image: url(img/Apetister_logo.webp);
    background-color: rgb(255, 255, 255);
    margin: 0vh 0 0 5vw;
    border-radius: 0 0 1vh 1vh;
    border-style: none;
    border-top: none;
    border-width: 1px;
    border-color: #87166eef;
    z-index: 10;
}

.menubtn {
    position: relative;
    float: right;
    height: 5vh;
    width: 15vw;
    text-align: center;
    margin: 1vh 1vw 0 0;
}

.menubtn i {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 4.3vh;
    position: relative;
}

nav {
    height: 100vh;
    width: 100vw;
    position: fixed;
    transition-duration: 600ms;
    transition-timing-function: ease-in-out;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.856);
}

.nav-mobile {
    width: 80vw;
    margin: 15vh auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.nav-mobile a {
    width: 60vw;
    height: 4vh;
    margin: auto;
    font-size: 3.5vh;
    font-weight: 300;
    text-decoration: none;
    line-height: 6vh;
    transition: 300ms;
    color: white;
}

.nav-close {
    position: relative;
    height: 5vh;
    width: 30px;
    margin-top: 1vh;
    margin-right: 20px;
    float: right;
}

.nav-close i {
    color: #fff;
    font-size: 4.3vh;
    position: relative;
    margin: 0.5vh 1vw 0 0;
}

.navigation {
    display: none;
}

#menu {
    top: -100vh;
}

#firstbutton {
    position: absolute;
    margin: 85vh 0 0 25vw;
}

@media only screen and (min-width: 1030px) {
    .header-logo {
        height: 9vh;
        width: 18vw;
        margin: 0 0 0 4vw;
    }
    
    .navigation {
        position: relative;
        width: 50vw;
        min-width: fit-content;
        float: right;
        display: block;
        text-align: right;
        margin: 2vh 3vw 0 0;
    }

    .navigation a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-size: 2vh;
        margin-left: 2vw;
        font-family: 'Montserrat regular', sans-serif;
        transition: 300ms;
    }

    .navigation a:hover {
        color: rgb(204, 204, 204);
    }
    
    .navigation a:before {
        color: #fff;
        content: "";
        position: fixed;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: rgb(185, 185, 185);
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }
    
    .navigation a:hover:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .nav-mobile {
        display: none;
    }

    .menubtn {
        display: none;
    }
    #menuopn {
        display: none;
    }

    #menu {
        display: none;
    }
}

/* btn-link */

.btn-link {
    font-size: 2.1vh;
    border: 2px solid #922777;
    transition: 300ms;
    background-color: white;
    color: #922777;
}

.btn-link:hover {
    background-color: rgba(77, 77, 77, 0.191);
    cursor: pointer;
}

/* grids */

.more-grid, .apetister-grid, .slozeni-grid, .chut-grid {
    height: fit-content;
    width: 90vw;
    margin-left: 5vw;
    display: flex;
    flex-direction: column;
}

.more-cell, .apetister-cell, .slozeni-cell, .chut-cell {
    height: fit-content;
    text-align: center;
    margin-top: 3vh;
}

.more-cell-img, .apetister-cell-img, .slozeni-cell-img, .chut-cell-img {
    height: 18vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.more-cell-text, .apetister-cell-text, .slozeni-cell-text, .chut-cell-text {
    font-weight: 300;
}

/* landing */

.landing {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 90vh;

    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(146, 39, 119, 0.507) 100%);
}

.landing-backdrop {
    position: absolute;
    height: 100vh;
    width: 100vw;
}

.backdrop-ribbon {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-image: url(img/ribbon.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.backdrop-seniors {
    display: none;
    height: 90vh;
    width: 100vw;
    background-image: url(img/seniors.webp);
    z-index: 2;
}

.backdrop-packshot {
    position: absolute;
    height: 60vh;
    width: 85vw;
    top: 5vh;
    margin-left: 5vw;
    background-image: url(img/pack.webp);
    background-repeat: no-repeat;
    background-size: 155%;
    background-position: center;
    z-index: 2;
    /* transform: scale(1.65); */
}

.landing-text {
    position: absolute;
    height: fit-content;
    width: 90vw;
    margin-left: 5vw;
    bottom: 5vh;
    z-index: 3;
}

.landing-text h2 {
    padding-bottom: 2vh;
}

/* more */

.more {
    padding-bottom: 5vh;
}

.more-cell {
    position: relative;
    min-height: 35vh;
    margin-top: 5vh;
}

.more-cell-text {
    border-radius: 2vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.more-cell p {
    height: 8vh;
    padding-top: 20vh;
    padding-bottom: 2vh;
    color: #fff;
    font-size: 1.8vh;
}

.koreni {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 0;
    margin-bottom: 5vh;
}

.geezers {
    background-image: url(img/geezers.webp);
}

.geezer {
    background-image: url(img/geezer.webp);
}

.food {
    background-image: url(img/food.webp);
}

.more-button {
    bottom: -5vh;
    width: 100%;
    margin: 0 auto;
    border-style: solid;
    border-radius: 1vh;
    border-width: 2px;
    border-color: #922777;
    position: absolute;
    transition: 300ms;
}

.more-button:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

.more-button a {
    font-size: 2.3vh;
    display: block;
    padding: 1vh 0;
    width: 100%;
    height: 100%;
    color: #922777;
}

.more-text {
    width: 86vw;
    margin-top: 6vh;
    margin-left: 7vw;
}

.more-text p {
    padding-bottom: 1vh;
    font-weight: 300;
}


/* apetister */

#apetister {
    position: relative;
    display: block;
    top: -4vh;
}

.apetister {
    height: fit-content;
    padding-top: 5vh;
    padding-bottom: 5vh;
    background: #87166f;
    background: linear-gradient(90deg, #e74d69e8 -100%, #904e80a8 90%);
}

.apetister-text {
    width: 90vw;
    margin-left: 5vw;
    color: #fff;
}

.apetister-text p {
    font-weight: 300;
}

.apetistermiddle {
    width: 100vw;
    margin: 2vh auto 5vh auto;
    height: fit-content;
    background-image: url(img/bg_line.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}



#apetisterpackshot {
    position: relative;
    height: 37vh;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    background-image: url(img/pack.webp);
}

.apetistereffects {
    position: relative;
    height: fit-content;
    width: fit-content;
    margin: 0 auto;
}

.effectitem {
    height: 5vh;
    margin: 0;
    padding: 0.6vh 0;
}

.effectitem p {
    font-size: 2.3vh;
    display: inline-block;
}

.effectitem p:last-child {
    padding-left: 0.8vh;
    vertical-align: -0.5vh;
}

.apetisterpic {
    width: 7vw;
    height: 5vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    text-indent: -9999999px;
}

#icon1 {
    background-image: url(img/forcc.webp);
}

#icon2 {
    background-image: url(img/zaludecc.webp);
}

#icon3 {
    background-image: url(img/listecc.webp);
}

#icon4 {
    background-image: url(img/ccapicka.webp);
}

@media only screen and (min-width: 1025px) {
    .apetistermiddle {
        width: 70vw;
        margin: 5vh auto;
        display: flex;
        height: fit-content;
        margin-left: 20vw;
        background-size: cover;
        background-image: none;
    }

    #wrapper {
        width: 100vw;
        margin: 0;
        padding: 0;
        background-image: url(img/bg_line.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center -15vh;
    }
    
    .apetistermiddle div {
        margin: auto;
    }
    
    #apetisterpackshot {
        display: inline-block;
        width: 50%;
        height: 50vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 105%;
        background-image: url(img/pack.webp);
    }
    
    .apetistereffects {
        width: 50%;
        display: inline-block;
    }
    
    .effectitem {
        padding: 1.1vh 0;
    }

    .effectitem p {
        font-size: 2.3vh;
        display: inline-block;
    }
    
    
    .effectitem p:last-child {
        padding-left: 0.8vh;
        vertical-align: -1.3vh;
    }
    
    .apetisterpic {
        width: 3.5vw;
        height: 6vh;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        text-indent: -9999999px;
    }


    .koreni {
        bottom: 5vh;
    }
}

#ingredientsbutton {
    width: 60vw;
    height: 6vh;
    margin: 0 auto;
    text-align: center;
    border-radius: 1vh;
    border-width: 2px;
    border-style: solid;
    border-color: #922777;
    padding: 0.2vh 0;
    transition: 300ms;
}

#ingredientsbutton:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

#ingredientsbutton a {
    text-decoration: none;
    font-size: 2.4vh;
    font-weight: 500;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

/* slozeni */
#ingredients {
    position: relative;
    display: block;
    top: -4vh;
}


#ingredientstitle {
    padding-top: 4vh;
    width: 85vw;
    height: fit-content;
    font-size: 2.7vh;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
}

.slozeni {
    padding-bottom: 2vh;
}

.slozeni-grid {
    padding-top: 5vh;
}

.slozeni-cell-text h3 {
    padding-top: 1vh;
    font-weight: 400;
}

.slozeni-cell-text p {
    font-weight: 300;
}

.slozeni-text {
    width: 90vw;
    margin-left: 5vw;
    font-weight: 400;
}

.slozeni-cell-img {
    background-size: contain;
}

.mata {
    background-image: url(img/mata.webp);
}

.cekanka {
    background-image: url(img/cekanka.webp);
}

.anyz {
    background-image: url(img/anyz.webp);
}

.fenykl {
    background-image: url(img/fenykl.webp);
}

/* container */

.four-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.priciny, .vliv, .chut, .byliny {
    position: relative;
    width: 100%;
    margin: 0;
    min-height: 50vh;
} 

.priciny-text, .vliv-text, .chut-text, .byliny-text {
    width: 80%;
    margin-left: 10%;
}


/* priciny */

#tasteanchor {
    position: relative;
    display: block;
    top: -4vh;
}

#dietanchor {
    position: relative;
    display: block;
    top: -4vh;
}

.sectiongraphics {
    width: 70%;
    height: 20vh;
    margin: 0 auto 3vh auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#causesgraphics {
    background-image: url(img/apetite-loss.webp);
}

#effectgraphics {
    background-image: url(img/dehydration.webp);
}

#tastegraphics {
    background-image: url(img/healthy-food.webp);
}

#flowergraphics {
    background-image: url(img/kytí.webp);
}

.priciny p, .vliv p, .chut p, .byliny p {
    font-weight: 400;
    margin-bottom: 4vh;
    line-height: 1.37em;
}

.priciny {
    min-height: 0;
    height: fit-content;
    background-color: rgba(146, 39, 119, 0.507);
}

.priciny-text {
    height: fit-content;
    padding-top: 6vh;
    padding-bottom: 7.5vh;
    text-align: center;
}

.priciny-text h2, .vliv-text h2, .chut-text h2 {
    margin-bottom: 3vh;
    font-weight: 500;
}

/* vliv */

#hydrationanchor {
    position: relative;
    display: block;
    top: -4vh;
}

#mobileanchor {
    display: block;
}

#desktopanchor {
    display: none;
}

.vliv {
    min-height: 0;
    height: fit-content;
}

.vliv-text {
    height: fit-content;
    padding-top: 4vh;
    padding-bottom: 5vh;
    text-align: center;
}



/* chut */

.chut {
    padding-top: 5vh;
    padding-bottom: 6vh;
    background-color: rgba(146, 39, 119, 0.507);
}

.chut-text {
    text-align: center;
}


/* byliny */

.byliny {
    min-height: 0;
    height: fit-content;
    padding-top: 5vh;
    padding-bottom: 10vh;
    
}

.byliny-text {
    text-align: center;
}

.byliny-text h2 {
    margin-bottom: 2.5vh;
    text-align: center;
}



.byliny-drop {
    position: relative;
    height: 6vh;
    max-height: 6vh;
    width: 90vw;
    margin-left: 5vw;
    margin-bottom: 2vh;
    overflow: hidden;
    border-radius: 2vh;
    transition: max-height 500ms;
    background-color: #f6958650;
}

.byliny-drop:hover {
    height: fit-content;
    max-height: 1000px;
    transition: max-height 500ms;
}

.byliny-drop-trigger {
    height: 6vh;
    margin: 0;
    background-color: rgba(146, 39, 119, 0.507);
    text-align: center;
}

.byliny-drop-trigger p {
    margin: 0;
    padding-top: 1.5vh;
    font-size: 2vh;
}

.byliny-drop-content {
    font-size: 2vh;
    font-weight: 300;
    width: 90%;
    margin-left: 5%;
}

@media only screen and (min-width: 600px) {

    .more-grid, .apetister-grid, .slozeni-grid, .chut-grid {
        padding-top: 5vh;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .more-cell, .apetister-cell, .slozeni-cell, .chut-cell {
        width: 40vw;
        margin-left: 1vw;
        margin-right: 1vw;
    }

    .byliny-drop {
        width: 40vw;
        margin-left: 30vw;
    }

}

@media only screen and (min-width: 1030px) {

    

    /* grids */

    .more-grid, .apetister-grid, .slozeni-grid, .chut-grid {
        margin-bottom: 5vh;
    }

    .more-cell, .apetister-cell, .slozeni-cell, .chut-cell {
        width: 20vw;
    }

    /* landing */

    .backdrop-ribbon {
        background-position: bottom;
    }

    .backdrop-seniors {
        display: block;
        position: absolute;
        height: 50vh;
        width: 45vw;
        right: 12vw;
        top: 20vh;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    .backdrop-packshot {
        height: 65vh;
        width: 50vw;
        left: -6vw;
        top: 14vh;
        background-size: 87%;
        /* transform: scale(1); */
    }

    .landing-text {
        width: 40vw;
        margin-left: 15vw;
        bottom: 10vh;
    }

    .more-cell {
        min-height: 40vh;
        position: relative;
    }

    .more-button {
        width: 20vw;
        margin: 0 auto;
        bottom: 0vh;
        border-style: solid;
        border-radius: 1vh;
        border-width: 2px;
    }
    
    .more-button a {
        display: block;
        padding: 1vh 0;
        width: 100%;
        height: 100%;
        color: #922777;
    }

    #desktopanchor {
        display: block;
    }
    
    #mobileanchor {
        display: none;
    }

    #hydrationanchor {
        display: none;
    }

    .priciny, .vliv, .chut, .byliny {
        position: relative;
        width: 50%;
        margin: 0;
        min-height: 50vh;
    }

    .chut {
        background-color: #fff;
    }

    .byliny {
        background-color: rgba(146, 39, 119, 0.507);
    }


    .more-text {
        width: 60vw;
        margin-left: 20vw;
    }
    
    .apetister-text {
        width: 40vw;
        margin-left: 30vw;
        text-align: center;
    }

    .slozeni-text {
        width: 60vw;
        margin-left: 20vw;
        text-align: center;
    }

    #ingredientsbutton {
        width: 20vw;
        height: 5vh;
    }

}

/* Youtube video embed */

.video-container {
    width: 90vw;
    margin: 0 auto;
    padding: 0 0 5vh 0;
    display: flex;
}

@media only screen and (min-width: 1030px) {
    .video-container {
        padding-top: 5vh;
        width: 65vw;
    }
}

@media only screen and (min-width: 1700px) {
    .video-container {
        width: 52vw;
    }
}

.video {
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-muted-2 {
    color: #edf3f3!important;
}

/* Footer */
.bg-footer {
    background: #87166f;
    background: linear-gradient(90deg, #e74d69e8 -100%, #904e80a8 90%);
}


.footer-nav a {
    color: #edf3f3;
    text-decoration: none;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    transition: 300ms;
}

.footer-nav a:hover {
    color: rgb(189, 189, 189);
    text-decoration: none;
}


@media only screen and (max-width: 991px) {
    .footer-navigation {
        border-left: 1px solid #dee2e6!important;
    }
}

@media only screen and (min-width: 992px) {
    .footer-nav {
        border-right: 1px solid #dee2e6!important;
    }
}



#bottomdisclaimer { 
    width: 80vw;
    margin: 2vh auto;
    padding: 1vh;
    text-align: center;
    border-radius: 1vh;
    border-style: solid;
    border-color: #87166f;
    border-width: 2px;
    font-size: 2vh;
    font-weight: 500;
}

@media only screen and (min-width: 768px) {
    #bottomdisclaimer { 
        width: 70vw;
    }
}


@media only screen and (min-width: 1025px) {
    #bottomdisclaimer { 
        width: 50vw;
    }
}


.anchorpoint {

    position: relative;

    display: block;

}

#videoanchor {

    top: -2.5rem;

}

a:hover {
    text-decoration: none!important;
    color: inherit!important;
}

.disclaimer-corner {
    right: 2rem;
    bottom: 2rem;
    background-color: #87166eef;
    color: white;
    border-radius: 1rem;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .disclaimer-corner {
        right: 1rem;
        bottom: 1rem;
        max-width: 50vw;
    }
}

.categorization {
  font-size: 0.95rem;
  color: #ffffffad;
}