/*Fonts*/
@font-face {
    font-family: 'Akkurat';
    src: url("./fonts/Akkurat-Bold.otf");
    src: url("./fonts/Akkurat-Regular.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus-Condensed';
    src: url("./fonts/Nimbus-Sans.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #FA4616;
    --secondary-color: #092D4D;
    --tertiary-color: #e9f8e7;
    /* --accent-color: #f1573b; */
    --accent-color: #FA4616;
    --dark-blue-color: #062b49;
    --red-color: var(--primary-color);
    --black-color: #1B1A2C;
    --white-color: #f7f7f7;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-snap-type: y mandatory;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    font-family: 'Akkurat', sans-serif, Arial, Verdana, Trebuchet MS,Helvetica !important;
    margin: 0;
    padding: 0;
    font-size: 100%;
    background: #f7f7f7;
    /*color: #222;*/
    position: relative;
    overflow-x: hidden;
    line-height: 1.8em;
}

img {
    max-width: 100%;
}

.container__wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1070px;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.text-small {
    font-size: 0.8125rem;
}

.text-white {
    color: #fff !important;
}

.socials {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    background: var(--white-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1150;
    border-radius: 1rem;
}

.socials img {
    width: 40px;
    height: 40px;
    transform: translateX(0px);
    transition: 0.3s ease all;
}

.socials img:hover {
    transform: translateX(4px);
}

.btn-main {
    font-family: 'Akkurat', sans-serif, Arial, Verdana, Trebuchet MS,Helvetica !important;
    text-decoration: none;
    text-align: center;
    line-height: 22px;
    padding: 22px 70px;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    border: 4px solid var(--blue-color);
    background: url("./assets/cointreau_img/button_bg.jpg");
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 1rem;
    transition: all .3s ease-in-out;
}

.btn-primary {
    font-family: 'Akkurat', sans-serif, Arial, Verdana, Trebuchet MS,Helvetica !important;
    text-decoration: none;
    text-align: center;
    line-height: 22px;
    padding: 12px 20px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    border: 4px solid #700808;
    background-color: #b00310;
    transition-property: background;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 1rem;
    transition: all .3s ease-in-out;
}

.btn-primary:hover {
    color: #000;
}


img.badge {
    max-width: 8rem;
}

.show-mobile {
    display: none !important;
}

.shadow {
    box-shadow: 8px 6px 6px #6b6b6b41;
}

.blink {
    animation: blinker 2s linear infinite;
}
  
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* .blink-btn {
    animation: blinker-btn 1s infinite;
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}
  
@keyframes blinker-btn {
    0% { box-shadow: 0 0 0 0 #700808; }
} */

.pulse:hover, 
.pulse:focus {
    animation: pulse 1s infinite;
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-color); }
}


.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
/*******************************************/
/* Copy this */



/*LP*/

.page__w *,
.page__w *:before,
.page__w *:after{
	-webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.page__w {
    width: 100%;
    overflow: hidden;
}

.page__w h2 {
    font-family: 'Nimbus-Condensed', sans-serif !important;
    font-size: 2.5vw;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--blue-color);
    line-height: 1.1rem;
    color: var(--secondary-color);
}

h2.section-title {
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-size: 3vW;
}

h2.section-title:not(:first-of-type) {
    margin-top: 3rem;
}


.decorated-title h2::after {
    content: '';
    background: var(--secondary-color);
    width: 20%;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.page__w h2 strong {
    color: var(--red-color);
}

.loader {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.loader img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
}

#hero-img-container {
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
}

#hero-img-container img {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

#led-bottom {
    animation: float ease-in-out 2s .65s 2 forwards;
}

#led-top {
    animation: float2 ease-in-out 2.25s 1.8s 3 forwards;
}


#hero-img-container img:first-of-type {
    position: relative;
}


.intro__w {
    width: 100%;
    position: relative;
    background: var(--tertiary-color);
    /* background: url('./assets/metaxa_img/textura.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.intro__w .intro-aside {
    color: #fff;
    background: transparent;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}


.intro__w > img {
    width: 40%;
    height: 95vh;
    object-fit: contain;
    display: block;
    margin-right: -10rem;
    z-index: 5;
}

.intro-text-popis {
    width: 60%;
    font-size: 24px;
    line-height: 1.7;
    text-align: center;
}

.intro-header {
    text-align: center;
    padding: 2rem 0 0;
    margin-bottom: 1vw;
}

.intro-header img {
    max-width: 74%;
}


.intro-text__content {
    font-size: 1.25rem;
    font-family: 'Nimbus-Condensed', sans-serif !important;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    color: var(--dark-blue-color);
}

.intro-text__content h1 {
    font-size: 3.75vw;
    margin: 1rem 0 0;
    color: var(--accent-color);
    letter-spacing: 4px;
    line-height: .8em;
}

.intro-text h2 {
    font-family: 'Akkurat', sans-serif, Arial, Verdana, Trebuchet MS,Helvetica !important;
    color: var(--dark-blue-color);
    letter-spacing: 2px;
    text-transform: none;
    font-size: 2vW;
}
/* text pod h1 */

.intro-text-popis__content span {
    line-height: 1.2;
    display: block;
}

.intro-text-popis__content span{
    font-size: 1.1vw;
    color: var(--black-color);
    margin-bottom: 0;
    line-height: 1.3em;
}



.intro-text-popis__content 

.intro-text__action {
    text-align: center;
}

.intro-action {
    margin-top: 2rem;
}

.intro-products {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.intro-product {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.intro-product .thumbnail img {
    max-width: 180px;
}

.intro-product .product-details {
    text-align: center;
    padding-left: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-product .product-name {
    font-size: 1vw;
    min-height: 60px;
}

.intro-product .product-action {
    margin-top: 1rem;
}

/* .intro-text__top{
    font-size: 3vw;
}

.intro-text__bottom{
    font-size: 1.5vw;
} */

.intro-bottle{
    width: 280px;
    position: absolute;
    bottom: 50px;
    right: 100px;
    z-index: 100;
}

.intro-bottle img{
    display: block;
    width: 100%;
    height: auto;
}

.herbs {
    text-align: center;
}

.herbs > img {
    max-width: 16vw;
}

.herbs h3 {
    font-family: 'Nimbus-Condensed', sans-serif !important;
    font-size: 2vw;
    text-transform: uppercase;
}

.herbs h3 span {
    display: block;
}

.herbs-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.herbs-wrapper .herb {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.herb .herb__text {
    font-family: 'Nimbus-Condensed', sans-serif !important;
}

.info-section-content {
    font-size: 18px;
}

.info-section-img {
    background: url(./assets/cointreau_img/margarita-bg.jpg) right center no-repeat;
    background-size: 50%;
    background-attachment: fixed;
    position: relative;
}

.lime {
    max-width: 9rem;
    position: absolute;
    left: -1.5rem;
    bottom: 1rem
}

.limes {
    max-width: 16rem;
    position: absolute;
    bottom: -5rem;
    z-index: 99;
    left: 7.5rem;
}

.ice {
    position: absolute;
    left: 5rem;
    bottom: 0;
    z-index: 9999;
    max-width: 6rem;
    animation: float ease-in-out 2s .65s infinite;
}

.lime-right {
    left: unset;
    right: -3.5rem;
    bottom: -5rem;
    transform: rotate(71deg);
}

.limes-right {
    left: unset;
    right: 7.5rem;
}

.ice-right {
    left: unset;
    right: 5rem;
    bottom: -2rem;
    animation: none;
}

#info-section strong {
    color: var(--secondary-color)}

.icons {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        /* max-width: 35rem; */
        gap: 2rem;
        text-align: center;
        margin-top: 4rem;
    }

.icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons img {
    max-width: 5rem;
}

.icons h3 {
        color: var(--accent-color);
    }

.slozeni_video {
    padding: 9vw;
    z-index: 2;
    background: url("./assets/metaxa_img/bg_video.jpg");
}

.slozeni_video video {
    border: 12px solid var(--white-color);
    object-fit: cover;
}

.info-section-content {
    padding: 6rem 4vw;
    position: relative
}

.info-section-content .badge {
    opacity: 0.1;
    position: absolute;
    left: 2rem;
    top: 3rem;
    max-width: 12rem;
}

.slozeni_obsah h3 {
    color: var(--blue-color);
    font-size: 1.4vw;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.slozeni_obsah p {
    font-size: 18px;
}

/* degustacni profil */

.degu_profil {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

h3.degu_profil_title {
    margin-top: 2rem;
}

.degu_profil_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.degu_header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.degu_profil_box img {
    max-width: 3.5rem;}

.degu_profil_box h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0px;
    margin-top: 0px;
}

.degu_profil_box p {
    font-size: 16px;
}

.prvky_circle {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.profil_prvky_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
}

.profily_prvky {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* gap blok */

.gap_blok {
    display: flex;
    flex-wrap: wrap;
}

.gap_blok_video,
.gap_blok_img {
    width: 50%;
    display: flex;
    align-items: center;
}

.gap_blok_video video,
.gap_blok_img img {
    object-fit: cover;
    width: 100%;
    height: 62%;
}

.gap_blok_video {
    padding: 9vw;
    z-index: 2;
    background: url("./assets/metaxa_img/bg_leaf.jpg");
}

.gap_blok_video video {
    border: 12px solid var(--white-color);
    object-fit: cover;
}

.gap_blok_img {
    padding: 9vw;
    z-index: 2;
}

.gap_blok_img img {
    border: 12px solid var(--blue-color);
    object-fit: cover;
}



/* recept sekce */

#recept {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0px;
    position: relative;
    background: var(--white-color);
    flex-wrap: wrap;
}

.recept_video,
.recept_obsah {
    width: 50%;
}

.recept_video {
    padding: 2rem 9vw;
    z-index: 2;
    background: url("./assets/cointreau_img/textura.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

.recept_video video {
    border: 12px solid var(--white-color);
    object-fit: cover;
    height: 80vH;
    width: auto;
    text-align: center;
}

.recept_obsah {
    padding-top: 4vw;
    padding-right: 9vw;
    padding-bottom: 4vw;
    padding-left: 3vw;
}

.recept_obsah h3 {
    color: var(--blue-color);
    font-size: 1.4vw;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.recept strong {
    display: block;
    font-family: 'Nimbus-Condensed';
    font-size: 1.75rem;
    text-transform: uppercase;
    color: var(--white-color);
}

.recept_obsah p {
    font-size: 18px;
}

.blue_text {
    color: var(--blue-color);
}

.orange_vibes_foto {
    max-width: 100%;
}

.recept_blok h2 {
    font-size: 1.5vw;
    color: var(--dark-blue-color);
    margin-bottom: 3rem;
}

.recept_blok {
    position:relative
}

.recept_blok_text {
    position: relative;
    max-width: 57%;
    float: right;
    margin-right: -5rem;
}

.recept_blok h2::after {
    background: var(--dark-blue-color);
}

.recept_blok_img {
    position: absolute;
    max-width: 75%;
    margin-left: -2rem;
}

.recept {
    background: var(--secondary-color);
    color:white;
    padding: 2rem;
    height: max-content;}

.recept ul {
    list-style: none;
    padding-left: 0;
}

.recept li {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.objednat_btn {
    position: relative
}

/* .panel {
    overflow: hidden;
    height: 100vh;
    scroll-snap-align: start;
} */

#usp {
    background: #113727 url('./assets/bg-usp.jpg') no-repeat center top;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}



.cards {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding-bottom: 4rem;
}

.cards .card {
    width: 33.333%;
    padding: 10px;
}

.cards .card:first-child {
    padding: 10px 10px 10px 0;
}

.cards .card:last-child {
    padding: 10px 0 10px 10px;
}

.card .card-wrapper {
    /* background: rgba(0, 92, 56, .65); */
    height: 100%;
    /* padding: 20px 20px 40px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.cards .card .card-title {
    font-family: 'Nimbus-Condensed', sans-serif !important;
    font-size: 1.2vw;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.cards .card .card-text {
    font-size: .8vw;
    text-align: center;
    color: #fff;
}

.cards .card .card-icon img {
    max-width: 6vw;
}

#video {
    background: #000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
}

#video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.img-container img {
    object-fit: cover!important;
    height: 100%;
}

.img-container img {
    object-fit: cover;
    height: 100%!important;
    max-height: 55rem;
    width: 100%;
    margin: 0!important;
    margin-bottom: -0.5rem!important;
} 

section#gallery {
    grid-template-columns: 3fr 2fr;
}

section#gallery .info-section-content {
    padding: 4rem 4vw;
} 

#gallery .gallery-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
}

#gallery .gallery-wrapper .gallery__image {
    overflow: hidden;
    line-height: 0;
    flex: 1;
    transition: 1s;
}

#gallery .gallery-wrapper .gallery__image img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

img.cup {
    max-height: 55vH;
    margin-top: 2rem;
}

.grid-2.puvod-text {
    grid-template-columns: 2fr 3fr;
}

.word-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.25vW;
    line-height: 1.2em;
    color: white;
    background:var(--secondary-color);
    padding: 4rem 2rem;
    margin-top: 3rem;}

.word-wrap span {
    margin: 0;
    font-weight: 600;
}

.word-wrap .intro-action{
    margin-top: 0!important;
}


.small-text {
    font-size: 1.25vw;
}

#gallery .info-section-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

#gallery .gallery-wrapper .gallery__image:hover {
    flex: 1 1 50%;
}

#gallery .gallery-wrapper .gallery__image:hover img {
    width: 100%;
    height: 100%;
}

#gallery h2 {
    margin-top: 0!important;
}

#ingredience {
    font-size: 1vw;
    color: #fff;
    background: #000 url('./assets/banner-glasses.webp') no-repeat center top;
    background-size: cover;
    height: 70vh;
    padding: 40px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    position: relative;
}

#ingredience::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#ingredience-large {
    font-size: 1vw;
    color: #fff;
    background: #000 url('./assets/banner-glasses.webp') no-repeat center top;
    background-size: cover;
    height: 100vh;
    padding: 40px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    position: relative;
}

#ingredience-large::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.products {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
}

.product {
    width: 33.333%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.product .thumbnail {
    width: 60%;
    position: relative;
}

.product .thumbnail img {
    max-width: 260px;
    width: 100%;
}

.product .product-details {
    text-align: center;
    width: 70%;
    padding-left: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product .product-name {
    font-size: 1vw;
    min-height: 60px;
}

.product .product-price {
    font-family: 'Nimbus-Condensed', sans-serif !important;
    font-size: 1vw;
    font-weight: 700;
    color: #b00310;
}

.product-flags {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
}

.product-flag.shipping {
    font-size: .7rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    background: rgba(45, 180, 1, .8);
    padding: 0.2rem 0.5rem 0.1rem;
}

.bg-right {
    background: #000;
}

.bg-overlay::after {
    content: '';
    background: rgba(0, 0, 0, .25);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.heading img {
    max-width: 300px;
}
.fading-left:not(.fadeinleft) {
    opacity: 0;
    transform: translateX(-20px);
}
.fadeinleft {
    animation: fadeInLeft ease-in 0.45s;
}

.fading-right:not(.fadeinright) {
    opacity: 0;
    transform: translateX(20px);
}
.fadeinright {
    animation: fadeInRight ease-in 0.45s;
}
.zooming:not(.zoomin) {
    opacity: 0;
    transform: scale(0);
}
.zoomin {
    animation: zoomIn ease-in 0.45s;
}

#cointreau {
    position: relative;
}

#cointreau .info-section-content {
    background: url("./assets/cointreau_img/textura.jpg");
    padding: 3rem 4vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 35rem;
}

#cointreau h2.section-title,
#cointreau p {
    color: #fff;
}

@keyframes fadeInLeft {
    0% {
       opacity: 0;
       transform: translateX(-20px);
    }
    to {
       opacity: 1;
       transform: translateX(0);
    }
 } 

 @keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(20px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 } 

 @keyframes zoomIn {
    0% {
       opacity: 0;
       transform: scale(0);
    }
    100% {
       opacity: 1;
       transform: scale(1);
    }
 } 

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
    
    100% {
        transform: translateY(0);
    }
}

@keyframes float2{
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-0.15rem) rotate(0.5deg);
    }
    
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 1574px) {
    .lime-right {
        bottom: -5rem;
    }
}


@media (max-width:1200px) {
    .intro__w > img {
        margin-right: -5rem;
    }
}
@media (max-width:1100px) {
    .slozeni_video,
    .slozeni_obsah,
    .gap_blok_video,
    .gap_blok_img,
    .recept_video,
    .recept_obsah {
        width: 100%;
    }

    .slozeni_video,
    .recept_video {
        order: 2;
    }

    .intro__w {
        padding-top: 5rem;
        height: auto;
    }

    .intro-text-popis {
        width: 100%;
    }

    .intro-text-popis__content span:nth-child(1) {
        font-size: 2.6vw;
    }

    .intro__w > img {
        width: 80vw;
        order: 2;
        margin-right: 0px;
        width: 100%;
        max-height: 420px;
        margin-top: 2rem;
    }

    .intro__w .intro-aside {
        background: transparent;
        width: 100%;
        min-height: unset;
        padding: 0 14vw;
        position: relative;
    }

    .intro-text__content h1 span:nth-child(1) {
        font-size: 6.2vw;
    }
    
    .intro-text__content h1 span:nth-child(2) {
        font-size: 10vw;
    }
    
    .intro-text__content h1 span:nth-child(3) {
        font-size: 6.9vw;
    }

    .slozeni_obsah,
    .recept_obsah {
        padding-top: 4rem;
        padding-right: 2rem;
        padding-bottom: 4rem;
        padding-left: 2rem;
    }

    .recept_blok {
        flex-wrap: wrap;
        justify-content: center;
    }

    .listy {
        width: 150px;
        height: auto;
    }

}

@media (max-width:950px) {
    .recept_blok_text {
        width: 100%;
    }

    .recept {
        margin-left: 0px;
    }

    .orange_vibes_foto {
        margin-bottom: 1rem;
    }

    .gap_blok_video video {
        height: 100%;
    }

    section#gallery  {
        grid-template-columns: repeat(1, 1fr);
    }
    

    section#gallery .info-section-content {
        padding: 6rem 4vw 2rem;
    } 
    
}


@media (max-width: 786px) {

    .mobile-hide {
        display: none;
    }

    .grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .info-section-content {
        padding: 3rem 4vw;
    }

    .slozeni_obsah,
    .recept_obsah {
        padding-top: 3rem;
        padding-right: 1rem;
        padding-bottom: 3rem;
        padding-left: 1rem;
    }

    .recept {
        padding: 2rem 1rem;
    }

    #recept .recept_blok {
        display: flex;
        flex-direction: column;
    }

    .recept_blok_img {
        position: static;
        margin: 0 auto;
    }

    .recept_blok_text {
        max-width: 100%;
    }

    #recept .btn-main {
        width: 100%;
    }

    .intro__w {
        width: 100%;
        padding-bottom: 14vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .intro-header {
        padding: 0;
    }

    .intro-header img {
        max-width: 50%;
    }

    .intro-text {
        padding-bottom: 0px;
    }

    .intro-action {
        margin-top: 0;
    }

    .btn-main {
        padding: 4vw 10vw;
    }

    .page__w h2 {
        font-size: 12.5vw;
        margin-bottom: 6vw;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 4.5vw;
    }

    .page__w h3 {
        font-size: 4vw;
        margin-bottom: 6vw;
    }

    .listy {
        width: 60px;
        height: auto;
    }

    .intro-text-popis__content span:nth-child(1) {
        font-size: 3.8vw;
    }

    .intro-text__content h1 {
        font-size: 14.75vw;
        line-height: 1;
        margin-top: 0;
    }

    .limes {
        max-width: 10rem;
        left: unset;
        right: 0;
        bottom: -8rem;
    }

    .lime {
        max-width: 5rem;
        left: unset;
        right: -1.5rem;
    }

    .ice {
        left: unset;
        right: 10rem;
        bottom: -3rem;
    }

    .lime-right {
        bottom: -2rem;
    }

    .mb-sm-4 {
        margin-bottom: 4rem;
    }

    .word-wrap {
        font-size: 5.25vw;
    }

    .small-text {
        font-size: 3.25vw;
    }

    .img-container img {
        width: 100%;
        height: auto;
    }

    #cointreau .img-container img {
        width: 100%;
        height: 100%;
    }

    #cointreau .info-section-content {
        position: static;
        transform: none;
    }
}




/* animace listů */

#snow-container {  
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: opacity 200ms;
    width: 100%;
  }
  .snow {
    animation: fall linear infinite, sway ease-in-out infinite, rotate ease-in-out infinite;
    color: skyblue;
    position: absolute;
  }

@keyframes fall {
    0% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
    100% {
      top: 100vh;
      opacity: 1;
    }
  }

  @keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
  }

  @keyframes sway {
    0% {
      margin-left: 0;
    }
    25% {
      margin-left: 50px;
    }
    50% {
      margin-left: -50px;
    }
    75% {
      margin-left: 50px;
    }
    100% {
      margin-left: 0;
    }
  }