@media (max-width: 960px) {
    #desktop {
        display: none;
    }

}

@media (min-width: 960px) {
    #mobile {
        display: none;
    }
    
}

body {
    overflow: hidden;
}

#desktop .container {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('../img/bg-01.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.2s ease-in-out;

}

.logo {
    position: absolute;
    top: 30px;
    left: 40px;
}

.logo img {
    width: 250px;
    transition: all 0.2s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

.social-icons {
    position: absolute;
    top: 20px;
    right: 40px;
}

.social-icons img {
    margin-left: 8px;
    transition: all 0.2s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.text-div {
    position: absolute;
    right: 70px;
    width: 300px;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

.text-div h1,
.text-div h4 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 1px 1px 7px #5d5d5d;
}

.text-div h1{
    font-size: 42px;
}

.text-div h4 {
    font-size: 16px;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 4px;
}

.tooltip img {
    width: 20px;
}

#ballz {
    opacity: 0.7;
}

#ballz img{
    height: 100vh;

}

.bottles-carousel {
    position: absolute;
    top: 60%;
    left: 25px;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}

.carousel {
    height: 500px;
}

.carousel-large {
    display: none;
}

.controls .left {
    position: absolute;
    top: 70%;
    left: 6px;
    transform: translateY(-50%);
    z-index: 99;
}

.controls .right {
    position: absolute;
    top: 65%;
    left: 390px;
    transform: translateY(-50%);
    z-index: 99;
}

@media (min-width: 1279px) {
    .carousel {
        height: 600px;
    }

    .bottles-carousel {
        top: 50%;
    }

    img.cloud9-item {
        height: 450px;
    }

    .controls .left {
        top: 65%;
    }

    .controls .right {
        top: 60%;
    }

}

@media (min-width: 1600px) {
    .carousel {
        height: 700px;
    }

    .bottles-carousel {
        top: 55%;
    }

    img.cloud9-item {
        height: 500px;
    }

    .controls .left {
        top: 60%;
    }

    .controls .right {
        top: 55%;
    }

}


#copyright {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    background-color: #000;
}

#mobile #copyright {
    padding-top: 4px;
}

#copyright a,
#copyright a:visited {
    color: #9b9b9b;
    text-decoration: none;
}

#copyright p {
     margin: 0;
     text-align: center;
     color: #9b9b9b;
     font-family: 'Open Sans', sans-serif;
     font-size: 12px;
 }

#mobile #copyright p {
    font-size: 10px;

}

.flag-desktop {
    position: relative;
    top: -15px;
    left: 11px;
}

/*  MOBILE  */
#mobile .container-mobile {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('../img/bg-mobile-01.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.2s ease-in-out;
}

.text-div-mobile {
    position: absolute;
    left: 10px;
    width: 150px;
    z-index: 99;
    bottom: 10px;
    transition: all 0.2s ease-in-out;
}

.text-div-mobile h1,
.text-div-mobile h4 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 1px 1px 7px #5d5d5d;
}

.text-div-mobile h1{
    font-size: 22px;
}

.text-div-mobile h4 {
    font-weight: 400;
    font-size: 12px;
    padding-bottom: 10px;
}

.okusi-radost {
    position: absolute;
    right: 6%;
    bottom: 10px;
}

.controls-mobile .left {
    position: absolute;
    top: 53%;
    left: 8%;
}

.controls-mobile .right {
    position: absolute;
    top: 47%;
    right: 8%;
}

.bottles-carousel-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -55%);
    width: 330px;
}

#carousel-mobile {
    height: 400px;
}

#mobile .logo img {
    width: 100px;

}

#mobile .social-icons img {
    width: 32px;
}

.flag-mobile {
    position: relative;
    top: -8px;
    left: 8px;
}

#mobile .social-icons .flag-mobile img {
    width: 20px;
}

/* TOOLTIP dektop */
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #fff;
    color: #000;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
  
    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: 135%;
    left: 50%;
    margin-left: -160px;
  
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  /* Tooltip arrow */
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }