/************ MAIN ************/
:root {
    --blue: #002F6C;
    --white: #FFFFFF;
    --light-blue: #DFF4FD;
    --gold: #B8A48F;
}

/*
body::after {
  content: url('images/product_bg/bily.jpg') url('images/product_bg/boruvka.jpg') url('images/product_bg/cerny_rybiz.jpg') url('images/product_bg/jahoda.jpg') url('images/product_bg/malina.jpg') url('images/product_bg/cokolada.jpg') url('images/product_bg/irska_kava.jpg') url('images/product_bg/ovocne_musli.jpg') url('images/product_bg/merunka.jpg') url('images/product_bg/visen_a_vanilka.jpg') url('images/product_bg/default.png');
  display: none;
}
*/
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}


* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    margin: 0 auto;
    max-width: 680px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.container p {
    font-size: 18px;
}

.content-container {
    max-width: 1160px;
    display: flex;
    margin: 40px auto;
    padding: 0 40px;
    gap: 40px;
}

.column {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
}

.column p {
    font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
p,
a {
    padding: 0;
    margin: 0;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--blue);
}

h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 115%;
    text-transform: uppercase;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 115%;
    text-transform: uppercase;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
    font-size: 24px;
    line-height: 115%;
    text-transform: uppercase;
}

h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
    font-size: 16px;
    line-height: 115%;
    text-transform: uppercase;
}

h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--blue);
    font-size: 30px;
    line-height: 115%;
    text-transform: uppercase;
}

h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 0 16px;
    margin: 0;
}

p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: var(--blue);
    line-height: 140%;
}

p strong {
    font-weight: 700;
    font-style: normal;
}

a {
    font-family: inherit;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
    cursor: pointer !important;
}

p a {
    font-weight: 700;
    text-decoration: underline; 
}

p a:hover {
    text-decoration: none; 
}

.center-text {
    text-align: center;
}


ul {
    list-style-position: outside;
    list-style: disc;
}

li {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--white);
    font-size: 12px;
    list-style: none;
    text-transform: uppercase;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-content: center;
}

button {
    display: flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue, #002F6C);
    border: 2px solid var(--blue, #002F6C);
    cursor: pointer;
}

button:hover {
    color: var(--white, #FFF);
    background: transparent;
    text-decoration: none;
}

.kariera-detail button:hover {
    color: var(--blue, #002F6C);
    background: transparent;
    text-decoration: none;
}


/************ HEADER ************/

#header {
    position: sticky;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 83px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 30;
    background: var(--blue);
}

.menu-wrapper {
    position: absolute;
    width: 100%;
    height: 83px;
}

.primary-menu {
    display: flex;
    z-index: 10;
    width: 100%;
    align-items: center;
    grid-gap: 40px;
    padding: 0 40px;
    margin: 0;
    height: 83px;
}

.secondary-menu {
    display: flex;
    z-index: 10;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 40px;
    padding: 0 40px;
    margin: 0;
}

.logo {
    position: relative;
    bottom: 17px;
    height: 100px;
    z-index: 10;
}

.flowers {
    position: absolute;
    bottom: 50px;
    pointer-events: none;
}

.social-icons {
    -webkit-transition: .25s cubic-bezier(.175,.885,.52,1.575);
    transition: .25s cubic-bezier(.175,.885,.52,1.575);
}

.text-shadow {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.primary-menu a:nth-child(2):hover {
    text-decoration: none;
}



/************ HERO IMAGE ************/

#uvod iframe {
    position: absolute;
    top: -40px;
    left: 50%;
    transform-origin: top center;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 180vh;
    z-index: -1;
}

#uvod {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-headline {
    position: absolute;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 960px;
    padding: 0 40px;
}



/************ SCROLL DOWN BUTTON ************/

.scroll_down_wrap {
    position: absolute;
    left: 50%;
    bottom: 105px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}

.scroll_down {
	width: 50px;
	height: 50px;
    border-radius: 50px;
    -webkit-transition: .25s cubic-bezier(.175,.885,.52,1.575);
    transition: .25s cubic-bezier(.175,.885,.52,1.575);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
}

.down-arrow {
    position: absolute;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.scroll_down:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: drop-shadow(0px 6.27792px 10.0447px rgba(89, 128, 84, 0.33));
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    40% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
    
    60% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    40% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
    
    60% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
}



/************ NOVINKY ************/


#novinky {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    position: relative;
    text-align: center;
}

#novinky .hero-headline {
    position: relative;
}

.novinky-cup {
	height: 65vh;
	position: relative;
    pointer-events: none;
    margin-top: 80px;
}

.novinky-cup img {
    position: relative;
    height: 100%;
}

.tooltip {
    width: 200px;
    position: absolute;
    z-index: 10;
}

.tooltip p {
    font-size: 13px;
}

.t1 img {
    position: absolute;
    top: 5px;
    right: 210px;
}

.t2 img {
    position: absolute;
    top: 5px;
    left: 125px;
}

.t3 img {
    position: absolute;
    top: 5px;
    right: 210px;
}

.t1 {
    top: 37%;
    left: 50%;
    transform: translateX(175%);
}

.t2 {
    top: 60%;
    right: 50%;
    transform: translateX(-100%);
}

.t3 {
    top: 75%;
    left: 50%;
    transform: translateX(125%);
}

.cup-numbers {
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 800px;
    background: var(--gold, #B8A48F);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25), 0px 6px 24px 0px rgba(0, 0, 0, 0.30);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    z-index: 30;
}

.n1 {
    top: 12%;
    left: 84%;
}

.n2 {
    top: 50%;
    right: 82%;
}

.n3 {
    top: 70%;
    left: 77%;
}

.legend {
    width: 90%;
    padding: 0 40px;
    margin: 0 auto;
    display: none;
}

.legend-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.legend .tooltip,
.legend .cup-numbers {
    position: relative;
}

.legend .tooltip {
    width: 100%;
}



/************ JOGURTY ************/

#jogurty {
    position: relative;
    min-height: 400px;
    padding: 80px 0 120px;
    background-image: url(../images/product_bg/default.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.jogurty-bg {
    /*background-image: url(../images/product_bg/bily.jpg);*/
    background-repeat: no-repeat;
    background-size: contain;
}

#jogurty .hero-headline {
    position: relative;
}

.jogurty {
    position: relative;
    width: 100%;
    padding: 40px 80px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    grid-row-gap: 80px;
}

.product {
    display: flex;
    padding: 0px 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    /*flex: 0 0 2.3333%;*/
    width: 19%;
    min-width: 180px;
    cursor: pointer;
}

.product:hover .product-image {
    transform: translateY(-20px);
}

.product p {
    font-size: 14px;
    margin-bottom: -8px;
}

.productt {
    cursor: pointer;
}

.product h5,
.productt h5 {
    font-size: 30px;
    text-align: center;
}

.product-image {
    width: 100%;
    transition: .25s cubic-bezier(.175,.885,.52,1.575);
}


/************ O NAS ************/

#o-nas {
    width: 100%;
    padding: 120px 40px 220px 40px;
    background-image: url(../images/about_us_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% bottom;
    position: relative;
}

.about-us-fe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}


/************ KARIERA ************/

.kariera {
    margin-bottom: 120px;
}

.kariera .nutrition-item p:first-child {
    font-size: 18px;
}

.kariera .nutrition-item p:last-child {
    font-size: 24px;
}

.kariera .nutrition-item {
    margin-bottom: 12px;
    transition: .25s cubic-bezier(.175,.885,.52,1.575); 
}

.kariera .nutrition-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 6.27792px 10.0447px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.kariera-detail {
    gap: 80px;
}

.kariera-detail .column:first-child {
    width: 40%;
}

.kariera-detail .column:last-child {
    padding-top: 36px;
}

.kariera-detail ul {
    margin: 0;
    padding: 0 0 0 15px;
}

.kariera-detail ul li {
    list-style-position: outside;
    list-style: disc;
    color: var(--blue);
    text-transform: inherit;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
}

.benefit-item {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    align-items: center;
}

.job-info {
    display: flex;
    gap: 40px;
}

.job-info-item {
    width: 100%;
}

.kariera-detail .paragraph-title,
.job-info-item .paragraph-title,
.job-info-item img {
    margin-bottom: 8px;
}

.carrier-contact {
    width: 100%;
    padding: 40px 24px;
    border-radius: 8px;
    background: var(--light-blue, #DFF4FD);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carrier-contact .benefit-item {
    font-weight: 500;
    margin-bottom: 0;
}

.carrier-contact .benefit-item p {
    font-weight: 500;
}

.back-btn-wrap {
    position: relative;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: fit-content;
}

.back-btn-wrap:hover .back-btn img {
    transform: translateX(-8px);
}

.back-btn-wrap:hover p {
    text-decoration: underline;
}

.back-btn-wrap p {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.back-btn {
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 0 50px 50px 0;
    background: var(--blue);
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-btn img {
    height: 16px;
    transition: .25s cubic-bezier(.175,.885,.52,1.575);
}


/************ KE STAZENI ************/

.downloads {
    flex-direction: column;
    margin-bottom: 120px;
}

.certifikaty {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    grid-row-gap: 40px;
}

.certifikat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    /*flex: 0 0 2.3333%;*/
    width: 14.8%;
    min-width: 120px;
    cursor: pointer;
}

.certifikat img {
    width: 100%;
}

.download-wrap {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 8px;
}

.download-wrap p{
    font-size: 13px;
}

.preview-wrap {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-blue, #DFF4FD);
    border-radius: 8px;
}

.preview-wrap img {
    width: 80%;
}


/************ PRODUCT DETIAL ************/

.product-container {
    max-width: 1160px;
    display: flex;
    margin: 40px auto;
    padding: 0 40px;
}

.image-column {
    width: 100%;
    display: flex;
    justify-content: center;
    height: fit-content;
}

.image-column img {
    width: 100%;
    height: auto;
    transform: translateX(-40px) scale(1.25);
    z-index: -1;
}

.info-column {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
}

.info-column h1,
.info-column h2,
.info-column h3,
.info-column h4,
.info-column h5,
.info-column h6,
.info-column p {
    text-align: left;
}

.info-column p {
    font-size: 14px;
}

.title h3 {
    padding-bottom: 8px;
}

.contain,
.packaging {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contain-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.packaging-item {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.paragraph-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}

.nutrition-item {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background: var(--light-blue, #DFF4FD);
    margin-bottom: 4px;
}

.nutrition-item p:nth-child(2) {
    font-size: 18px;
}

.product-list-container {
    max-width: 1160px;
    margin: -170px auto 100px;
    padding: 0 40px;
}

.product-list-container h1 {
    text-align: left;
    margin-bottom: 16px;
}

.product-list-itemss {
    display: flex;
    width: 100%;
    gap: 24px;
}

.product-list-items .productt p {
    font-size: 14px;
    margin-bottom: -8px;
}

.product-list-items .productt {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    min-width: 240px;
}

.product-list-items .productt .product-image {
    background: var(--light-blue);
    padding: 20px;
    display: flex;
    justify-content: center;
}

.product-list-items .productt .product-image img {
    max-height: 240px;
}

.product-list-items .productt:hover .product-image img {
    transform: translateY(-20px);
}

.product-list-items img {
    transition: .25s cubic-bezier(.175,.885,.52,1.575);
}

/************ FOOTER ************/

footer {
    width: 100%;
    position: relative;
    padding: 12px 40px 24px;
    background: var(--blue);
    z-index: 40;
}

.footer-scenery {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 55vw;
    transform: translateX(-20%) translateY(-20%);
    pointer-events: none;
}

.footer-info {
    display: flex;
    grid-gap: 40px;
    margin-bottom: 40px;
}

.footer-info h6 {
    color: var(--gold);
}

.footer-info p {
    font-size: 12px;
    color: var(--white);
}

.footer-info p a {
    font-size: 12px;
    color: var(--white);
    font-weight: inherit;
    text-decoration: none;
}

.footer-info p a:hover {
    text-decoration: underline;
}

.footer-contact p a {
    font-weight: 700;
}

.footer-legal p {
    font-weight: 500;
    font-size: 10px;
    opacity: 0.5;
    color: var(--white);
}

.footer-legal p a {
    color: inherit;
    font-weight: inherit;
}

/*-- COOKIEYES --*/

.cky-accordion-btn,
.cky-preference-title,
.cky-always-active,
.cky-show-desc-btn,
.cky-accordion-header {
    font-family: "Poppins", sans-serif !important;
    color: var(--blue) !important;
}

.cky-prefrence-btn-wrapper,
.cky-btn {
    font-family: "Poppins", sans-serif !important;
}

.on-desktop-flex {
    display: flex;
}
    
.on-mobile-flex {
    display: none;
}

.on-desktop {
    display: block;
}
    
.on-mobile {
    display: none;
}

.cky-revisit-bottom-right {
    top: 15px;
}

.cky-cookie-des-table li {
    text-transform: none;
    color: inherit;
}


/************ RESPONSIVE ************/

@media (max-width: 1204px) {
    #content {
        visibility: visible;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    
    body {
        overflow-x: hidden;
        overflow-y: scroll;
    }
    
    .on-desktop-flex {
        display: none;
    }
    
    .on-mobile-flex {
        display: flex;
    }
    
    .on-desktop {
        display: none;
    }
    
    .on-mobile {
        display: block;
    }
    
    .navbar {
        display: flex;
        pointer-events: all;
    }
    
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h1, h2, h3 {
        text-align: center;
    }
    
    p {
        font-size: 18px;
    }
    
    
    #hero-image {
        height: 300px;
        background-position: 30% bottom;
        margin-bottom: 480px;
    }
    
    .hero-headline {
        width: 100%;
    }
    
    .scroll_down_wrap {
        bottom: 135px;
    }
    
    .parallax-image {
        position: absolute;
        -webkit-transform: translateY(var(--translateY));
        transform: none;
    }
    
    #header {
        display: none;
    }
    
    .jogurty {
        padding: 40px 0px 40px;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .footer-info p,
    .footer-info h6,
    .footer-info p a {
        font-size: 14px;
        text-align: center;
    }
    
    .footer-legal p {
        font-size: 12px;
        line-height: 24px;
        text-align: center;
    }
    
    .footer-scenery {
        position: relative;
        top: 0px;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%) translateY(0%);
        pointer-events: none;
    }
    
    .footer-info {
        grid-gap: 16px;
        margin-bottom: 16px;
    }
    
    #uvod,
    #novinky,
    #o-nas {
        width: 100%;
        overflow-x: hidden;
    }
    
    #uvod {
        height: 80vh;
    }
    
    #uvod iframe {
        top: -10px;
        transform: translateX(-50%);
    }
    
    #novinky {
        height: auto;
        padding-bottom: 60px;
    }
    
    #novinky .hero-headline {
        position: relative;
    }
    
    .product-container {
        flex-direction: column;
    }
    
    .content-container {
        flex-direction: column-reverse;
    }
    
    .downloads {
        flex-direction: column;
        margin-bottom: 60px;
    }
    
    .column {
        width: 100%;
    }
    
    .column h1,
    .content-container h1,
    .content-container h3 {
        text-align: left;
    }
    
    .image-column {
        margin-bottom: 24px;
    }
    
    .kariera {
        margin-bottom: 60px;
    }
    
    .kariera-detail .column:first-child {
        width: 100%;
    }
    
    .kariera-detail .column:last-child {
        padding-top: 0;
    }
    
    .kariera-detail {
        gap: 40px;
    }
    
    .kariera-image img {
        width: 120%;
    }
    
    .product-list-container {
        margin: 0 auto 60px;
        padding: 0;
    }
    
    .product-list-container h1,
    .swiper-3d {
        padding: 0 40px;
    }
    
    .novinky-cup {
        position: relative;
        width: 50vh;
        margin: 40px auto 0;
    }
    .novinky-cup img {
        width: 100%;
        height: auto;
    }
    
    .t1, .t2, .t3 {
        display: none;
    }
    
    .cup-numbers {
        display: flex;
    }
    
    .legend {
        display: block;
    }
    
    footer {
        overflow-x: hidden;
    }

}




/************ SWIPER ************/

.slide-container {
    margin: 0;
}

.swiper {
    padding-top: 20px;
}

.swiper-navBtn {
    height: 50px;
    width: 50px;
    transform: translateY(-40%);
    background: #fff;
    border-radius: 50px 0 0 50px;
    background: var(--blue);
    right: 0;
}

.swiper-button-prev {
    border-radius: 0 50px 50px 0;
    left: 0;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}

.swiper-pagination-bullet {
    height: 11px;
    width: 11px;
}

.swiper-navBtn {
    /* display: none; */
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
}

.swiper-3d {
    perspective: 30000px;
}

.swiper-wrapper.disabled {
    transform: translate3d(0px, 0, 0) !important;
}
.swiper-pagination.disabled {
    display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    content: none;
}
