@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --black:#000;
    --antracit:#2D2C2C;
    --dark_gray:#3d3a31;
    --h_color:#33211D;
    --white: #e2e3df;
    --normal_white:#FFF;
    --yellow: #bb9655;
    --light_yellow:#e3c38b;
    --gray: #bab3a6;
    --bg_section: #FFFBF2;
    --general_font: 'Montserrat', sans-serif;
    --Robboto_font: 'Roboto', sans-serif;
    --Playfair_font: 'Playfair Display', serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 
body {
    font-family:var(--general_font);
    font-size: 16px;
    color: var(--white);
    /* background: var(--black); */
}

a {
  color: var(--yellow);
}

a:hover {
  color:var(--light_yellow);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--Robboto_font);
}

/*--------------------------------------------------------------
# Back to the top 
--------------------------------------------------------------*/
.back-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 995;
}

.back-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: var(--yellow);
  transition: all 0.4s;
  border: 2px solid var(--yellow);
}

.back-top i:hover {
  background: var(--yellow);
  color: var(--antracit);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#top_bar {
  height: 38px;
  font-size: 15px;
  transition: all 0.5s;
}

#top_bar.top_bar-scrolled {
  top: -38px;
}

#top_bar .contact-info {
  color: var(--gray);
}

#top_bar .contact-info i {
  color:var(--light_yellow);
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(13, 12, 10, 0.6);
  border-bottom: 1px solid rgba(13, 12, 10, 0.6);
  transition: all 0.5s;
  z-index: 999;
  padding: 16px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.80);
  border-bottom: 1px solid var(--dark_gray);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 3px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--PlayFairFont);
}

#header .logo img {
  max-height: 38px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding-left: 30px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--white);
  transition: 0.4s;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--light_yellow);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.5s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--light_yellow);
}

.mobile-nav {
  position: fixed;
  top: 15px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: var(--antracit);
  border: 2px solid rgba(245, 241, 244, 0.1);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 11px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav .mobile-nav-close {
  margin: 0 15px 0 auto;
  display: block;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: rgba(243, 232, 231, 0.5);
}

.mobile-nav .mobile-nav-close:hover {
  color:var(--white);
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--white);
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  transition: 0.4s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--light_yellow);
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.3s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: var(--white);
}

/*--------------------------------------------------------------
# First Section
--------------------------------------------------------------*/
#first {
  width: 100%;
  height: 100vh;
  background: url("../img/background.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#first:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#first .container {
  padding-top: 112px;
}

@media (max-width: 992px) {
  #first .container {
    padding-top: 98px;
  }
}

#first h1 {
  margin: 0;
  font-size: 49px;
  font-weight: 800;
  line-height: 56px;
  color: var(--normal_white);
  font-family: var(--general_font);
}

#first h1 span {
  color: var(--yellow);
}

#first h2 {
  color: var(--white);
  margin-bottom: 10px 0 0 0;
  font-size: 21px;
}

#first .button {
  margin-top: 30px;
}

#first .button-menii {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 11px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--normal_white);
  border: 2px solid var(--light_yellow);
}

#first .button-menii:hover{
  background: var(--light_yellow);
  color: var(--dark_gray);
}

#first .button-play {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--yellow) 50%, rgba(194, 157, 93, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#first .button-play::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#first .button-play::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(197, 159, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(195, 18, 0, 0);
}

#first .button-play:hover::after {
  border-left: 15px solid var(--light_yellow);
  transform: scale(20);
}

#first .button-play:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #first {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #first .button-play {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #first {
    height: auto;
  }
  #first .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #first h1 {
    font-size: 38px;
    line-height: 36px;
  }
  #first h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color:var(--bg_section);
}

.section-title {
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1.2px;
  margin: 0 0 5px 0;
  /* letter-spacing: 2px; */ 
  letter-spacing: 3px;
  text-transform: uppercase;
  /* color: var(--yellow); */
  color: #DA9F5B;
  font-family: var(--yellow);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1.2px;
  display: inline-block;
  background: #DA9F5B;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family:var(--Playfair_font);
  color: var(--h_color);
}
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius:50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: .5;
  color: var(--white);
  
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
  font-family: var(--Playfair_font);
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: var(--yellow);
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}
/*.............................................*/
/*ODAVDE CSS DIV kokteli1,kokteli2,kokteli3 *BEZ MODALA* ..*/
/***********************************************/
/*img text cocktails*/
#myImg {
  position: absolute;
  left: 0;
  top: 0px;
  right: 30px;
  bottom: 200px;
  display: block;
  margin: auto; 
  opacity: 0.05;
  z-index: -999999;
 }

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 95px;/**/
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 110px;/**/
  margin-top: 13px;/**/
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: var(--gray);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content p {
  padding-right: 10px;
  background: var(--bg_section);
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: var(--white);
  transition: 0.3s;
  color:rgb(104, 102, 102);
  cursor: pointer;
  font-size: larger;
}

.menu .menu-content p:hover {
  color: var(--light_yellow);
}

.menu .menu-ingredients {
  margin-left: 110px;/**/
  font-style: italic;
  font-size: 14px;
  font-family:var(--general_font);
  color: rgba(51, 33, 29, 0.5);
}
/*img u krugu da bilo klikabilno*/
.mmodal-target {
  width: 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.mmodal-target:hover {
  opacity: 0.7;
}
/*--------------------------------------------------------------
# Menu Section   -M O D A L I-
--------------------------------------------------------------*/
/****                                     *****/
/**** A) MODALI -SLIDERI ZA MODAL CONTENT *****/
/****                                     *****/
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -162px;
  padding: 16px;
  color: var(--white);
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/****                                     *****/
/****    B) MULTI MODALI ON ONE PAGE      *****/
/****                                     *****/

.mmodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1042;/* Sit on top */
  padding-top: 3px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  
}

/* Modal Content (image) */
.mmodal-content {
  margin: 50px auto 0;
  display: block;
  width: 70%;
  opacity: 1 !important;
  max-width: 1200px;
}
/* Caption of Modal Image */
.mmodal-caption {
  margin: auto;
  display: block;
  width: 30%;
  max-width: 1200px;
  text-align: center;
  color: var(--white);
}

/* Add Animation */
.mmodal-content, .mmodal-caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.7s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
.modal-header{
  background-color:black;
}
@-webkit-keyframes zoom {
  from {-webkit-atransform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* Close Button */
.close {
  position: absolute;
  top: 120px;
  right: 60px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: var(--yellow);
  text-decoration: none;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Galerija
--------------------------------------------------------------*/
/* The Modal (background) */
.modal_mi {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 3px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
/* Modal Content */
.modal-content_mi {
  position: relative;
  /* background-color: #ec0808; */
  margin: 40px auto;
  padding: 0;
  width: 60%;                   
  max-width: 1200px;
/* Add Animation */
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
/* The Close Button */
.close {
  color: var(--white) !important;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 35px;
  transition: 0.4s ease;
  border-radius: 3px 0 0 3px;
  padding: 15px;             
  background-color: rgba(0, 0, 0, 0.5);
}
.close:hover,
.close:focus {
  background-color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  cursor: pointer;
}
.mySlides_mi {
  display: none;
}
.cursor {
  cursor: pointer;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  opacity: 0.7;
}
/* Next & previous buttons */
.prev_mi,
.next_mi {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white) !important;
  font-size: 30px;
  transition: 0.4s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
 }
/* Position the "next button" to the right */
.next_mi {
  right: 0;
  border-radius: 3px 0 0 3px;
 }
/* On hover, add a black background color with a little bit see-through */
.prev_mi:hover,
.next_mi:hover {
  background-color: rgba(0, 0, 0, 0.8);
 }
img.hover-shadow {
  transition: 0.3s;
  margin-bottom: 10px;
 }
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  opacity: 0.4;
 }
 
 /*--------------------------------------------------------------
# Video Shizenje
--------------------------------------------------------------*/
.section-padding {
	padding:70px 0px;
  background-color:var(--bg_section);
}

.prelative {
  position: relative;
}
.video-section {
	/* background: url(../img/menu/colorful_margarita/color_margarita1.jpg) no-repeat fixed center; */
	background: url(../img/sizenje.jpg) no-repeat fixed center;
	background-size: cover;
	overflow: hidden;
}
.video-overlay {
  background: linear-gradient(to left, rgba(48, 50, 53, 0.6), rgba(66, 44, 66, 0.7));
}
.video-section h1 {
	font-weight: 700;
	font-size: 68px;
  font-family: var(--Playfair_font);
  color: var(--yellow);
}
.video-section i {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--yellow) 50%, rgba(194, 157, 93, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.video-section i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-section i::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(197, 159, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(195, 18, 0, 0);
}

.video-section i:hover::after {
  border-left: 15px solid var(--light_yellow);
  transform: scale(20);
}

.video-section i:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
} 
.video-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-content: center !important;
	-ms-flex-line-pack: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}
.video-popup .video-src {
	position: relative;
	width: 700px;
	max-width: 80%;
}
.video-popup .iframe-src {
	width: 100%;
	height: 0;
	padding-top: 56.3%;
	position: relative;
	display: none;
}
.video-popup .iframe-src iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*boja close btn*/
.close {
	background-color: #151515!important;
  color:#ebe5e5!important;
	border: none;
}
.close:hover {
	background-color:rgb(12, 12, 12)!important;
  border-color:rgb(50, 49, 49)!important;
  color: var(--lightGray);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer { 
  background: var(--antracit);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(128, 128, 128, 0.75);
  font-size: 0.8em;
  cursor: default;
  border-top: solid 2px rgba(128, 128, 128, 0.2);
 
}
#footer .copyright a {
  color: rgba(128, 128, 128, 0.75);
}
#footer .copyright a:hover {
  color: rgba(212, 212, 212, 0.85);
}
ul .copyright {
  height: 1em;
  line-height: 1em;
  list-style: none;
  padding-left: 0;
}
ul.copyright li {
  display: inline-block;
  padding:1em 0 0 1.25em;
  margin-left: 1.25em;
}
ul.copyright li:first-child {
  border-left: 0;
  padding-left: 0;
  margin-left: 0;
  }
ul.copyright li:last-child {
  font-family: var(--PlayFairFont);
}
#footer .copyright img {
  max-height: 25px;
}


/*********************************************************
  --------      Responsive Media Queries     -----------
*******************************************************/ 

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
    /*galerija*/
  .modal-content {
    width: 100%; 
  }
  /*menii img*/
  .mmodal-content img{
    width: 120%; 
  }
  /* The Close Button */
  .mmodal-close {
    font-size: 30px;
    right: 70px;
  }
  .prev, .next {
    top: -15%;
  }
  #myModal_mi{
    display: none !important;
  }
  /* .modal-backdrop{
      display: none !important;;
  } */
  /*cocktail1,cocktail2..*/
  .menu #menu-flters li {
    padding: 8px 4px 10px 4px;
  }  
  #header .logo {
    font-size: 23px;
  }
  #header .logo img {
    max-height: 28px;
  }
  .section-title p {
    font-size: 30px;
  }
  .video-section h1 {
    font-size: 39px;
  }
  #footer .copyright img {
    max-height: 21px;
  }
  
} 

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
   /*galerija*/
   .modal-content {
     width: 100%; 
   }
   /*menii img*/
   .mmodal-content img{
     width: 70%; 
   }
   /* The Close Button */
   .mmodal-close {
     font-size: 30px;
     right: 70px;
   }
   .prev, .next {
    top: 20%;
  }
  .video-section h1 {
    font-size: 39px;
  }
  #footer .copyright img {
    max-height: 21px;
  }
}  

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    /*galerija*/
    .modal-content {
      width: 100%; 
    }
    /*menii img*/
    .mmodal-content img{
      width: 100%; 
    }
    /* The Close Button */
    .mmodal-close {
      font-size: 30px;
      right: 30px;
    }
    .prev, .next {
      top: 25%;
    }
    .video-section h1 {
      font-size: 39px;
    }
    #footer .copyright img {
      max-height: 21px;
    }
  
}

/*Screen (1199px)*/
/* @media screen and (max-width:1199px){ */
@media screen and (max-width:1199px){
  /*menii img*/
  .mmodal-content img {
    width: 100%; 
  }
  .mmodal-close {
    font-size: 30px;
    right: 30px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: small;
  }
  .prev, .next {
    top: 25%;
  }  
 
}

/*Screen (min 1199px)*/
/* @media screen and (min-width:1199px){ */
  @media screen and (min-width:1198.98px){
 
}

/*data filter*/
.labubu{
  margin-top: 4.5rem;
  font-size: x-large!important;
}

.button-data_filter {
  /* margin: 1px; */
  height: 30px;
  width: 63px;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 10px;
  /* background: #333; */
  background-color:rgba(221,188,134, 0.2);
  justify-content: center;
  align-items: center;
  /* box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #444,
   inset -5px -5px 10px #222; */
  /* box-shadow: -3px -3px 8px #444, 5px 5px 15px #222, inset 5px 5px 10px #444,
   inset -5px -5px 10px #222;   */
  /* font-family: "Damion", cursive; */
  font-family:"Playfair Display", serif;
  cursor: pointer;
  border: none;
  font-size: 15px;
  color: var(--h_color);
  transition: 500ms; 
   outline: none;
}
.class-all{
color: var(--black);
}

.button-data_filter:hover {
  /* box-shadow: -5px -5px 15px #444, 5px 5px 15px #222, inset 5px 5px 10px #222,
    inset -5px -5px 10px #444; */
  color: var(--dark_gray);
  transition: 500ms;
}




/**NOVA GALERIJA imena koktela*/

.galerija-item .hover-effect .hover-content {
    position: absolute;
    text-align: left;
    width: 100%;
    bottom: 0;
    left: 0; 
    background-color:rgba(13, 12, 10, 0.5);
    margin-bottom:10px;
}


.galerija-item .hover-effect .hover-content h1 {
  position: relative;
  font-size: 22px;
  text-transform: uppercase;
  color:var(--yellow);
  display: inline-block;
  padding-left: 20px;
  line-height: 15px;
  transform: translateY(25px);
  transition: .5s ease-in-out;
  letter-spacing: 0.5px;
  cursor: pointer;
   
 }

 .galerija-item .hover-effect .hover-content em {
  font-style: normal;
  font-weight: 200;
  margin-top:20px;
 }

 .galerija-item .hover-effect .hover-content:hover h1 {
  transform: translateY(0);  
  margin-top:20px;
 }

 .galerija-item .hover-effect .hover-content p {
  padding-left: 20px;
  font-weight: 300!important;
  letter-spacing: 0.5px;
  font-size: 10px;
  color: #ededeb;
  opacity: 0;
  transform: translateY(10px);
  transition: .5s ease-in-out;
  text-transform: uppercase;

 }


.galerija-item .hover-effect .hover-content:hover p {
  opacity: 1;
  transform: translateY(0);
 }

 .gy-4 {
  margin-bottom:10px;
}
