html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: none;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #fff;
  text-transform: uppercase;
  border-bottom: 1.5px solid #000;
}

.head>img {
  width: 100px;
  height: 50px;
  margin: 20px;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
  margin: auto 100px 0 auto;
}

nav>div {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

nav>div:last-child {
  border-right: none;
}

nav>div>a {
  display: block;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  color: #000;
  /* transition: 200ms; */
}

nav>div>a:hover {
  color: #fff;
  /* transition: 150ms; */
  border-radius: 3px;
  background-color: #000;
}

nav>div>div>a {
  display: block;
  padding: 5px;
  text-decoration: none;
  /* transition: 200ms; */
  border-radius: 3px;
  color: #000;
  background-color: #fff;
}

nav>div>div>a:hover {
  color: #fff;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  border-radius: 3px;
  background-color: #000;
}

nav>div>div {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 1;
}

nav>div:hover>div {
  display: block;
}

/*Slider*/
.galleryContainer {
  width: 90%;
  height: 800px;
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-shadow: 0px 0px 3px 1px #00000078;
          box-shadow: 0px 0px 3px 1px #00000078;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 30px;
  border: 1px solid #000;
  border-radius: 2px;
}

.galleryContainer .slideShowContainer {
  width: 100%;
  height: 90%;
  overflow: hidden;
  background-color: gainsboro;
  position: relative;
}

.galleryContainer .slideShowContainer .imageHolder {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}

.galleryContainer .slideShowContainer .imageHolder img {
  width: 100%;
  height: 100%;
}

.galleryContainer .slideShowContainer .imageHolder .captionText {
  display: none;
}

.galleryContainer .slideShowContainer .leftArrow, .galleryContainer .slideShowContainer .rightArrow {
  width: 50px;
  background: #00000036;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  height: 72px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.galleryContainer .slideShowContainer .rightArrow {
  left: auto;
  right: 0;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.galleryContainer .slideShowContainer .leftArrow:hover, .galleryContainer .slideShowContainer .rightArrow:hover {
  background: #000000a8;
  cursor: pointer;
}

.galleryContainer .arrow {
  display: inline-block;
  border: 3px solid white;
  width: 10px;
  height: 10px;
  border-left: none;
  border-bottom: none;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.galleryContainer .arrow.arrowLeft {
  -webkit-transform: rotateZ(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotateZ(-135deg);
}

.galleryContainer .arrow.arrowRight {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}

.galleryContainer .slideShowContainer>.captionTextHolder {
  position: absolute;
}

.galleryContainer .slideShowContainer>.captionTextHolder>.captionText {
  margin: 0;
}

.galleryContainer #dotsContainer {
  width: 100%;
  height: 10%;
  text-align: center;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.galleryContainer #dotsContainer .dots {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: 5px;
  background-color: #bbb;
  cursor: pointer;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.galleryContainer #dotsContainer .dots:first-child {
  margin-left: 0;
}

.galleryContainer #dotsContainer .dots:hover, .galleryContainer #dotsContainer .dots.active {
  background-color: #717171;
}

.galleryContainer .moveLeftCurrentSlide {
  -webkit-animation-name: moveLeftCurrent;
          animation-name: moveLeftCurrent;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.galleryContainer .moveLeftNextSlide {
  -webkit-animation-name: moveLeftNext;
          animation-name: moveLeftNext;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes moveLeftCurrent {
  from {
    margin-left: 0;
    opacity: 1;
  }

  to {
    margin-left: -100%;
    opacity: 1;
  }
}

@keyframes moveLeftCurrent {
  from {
    margin-left: 0;
    opacity: 1;
  }

  to {
    margin-left: -100%;
    opacity: 1;
  }
}

@-webkit-keyframes moveLeftNext {
  from {
    margin-left: 100%;
    opacity: 1;
  }

  to {
    margin-left: 0%;
    opacity: 1;
  }
}

@keyframes moveLeftNext {
  from {
    margin-left: 100%;
    opacity: 1;
  }

  to {
    margin-left: 0%;
    opacity: 1;
  }
}

.galleryContainer .moveRightCurrentSlide {
  -webkit-animation-name: moveRightCurrent;
          animation-name: moveRightCurrent;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.galleryContainer .moveRightPrevSlide {
  -webkit-animation-name: moveRightPrev;
          animation-name: moveRightPrev;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes moveRightCurrent {
  from {
    margin-left: 0;
    opacity: 1;
  }

  to {
    margin-left: 100%;
    opacity: 1;
  }
}

@keyframes moveRightCurrent {
  from {
    margin-left: 0;
    opacity: 1;
  }

  to {
    margin-left: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes moveRightPrev {
  from {
    margin-left: -100%;
    opacity: 1;
  }

  to {
    margin-left: 0%;
    opacity: 1;
  }
}

@keyframes moveRightPrev {
  from {
    margin-left: -100%;
    opacity: 1;
  }

  to {
    margin-left: 0%;
    opacity: 1;
  }
}

.slideTextFromBottom {
  -webkit-animation-name: slideTextFromBottom;
          animation-name: slideTextFromBottom;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes slideTextFromBottom {
  from {
    opacity: 0;
    margin-top: 100px
  }

  to {
    opacity: 1;
    margin-top: 0px;
  }
}

@keyframes slideTextFromBottom {
  from {
    opacity: 0;
    margin-top: 100px
  }

  to {
    opacity: 1;
    margin-top: 0px;
  }
}

.slideTextFromTop {
  -webkit-animation-name: slideTextFromTop;
          animation-name: slideTextFromTop;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes slideTextFromTop {
  from {
    opacity: 0;
    margin-top: -100px
  }

  to {
    opacity: 1;
    margin-top: 0px;
  }
}

@keyframes slideTextFromTop {
  from {
    opacity: 0;
    margin-top: -100px
  }

  to {
    opacity: 1;
    margin-top: 0px;
  }
}

/* text */
.text {
  font-size: 26px;
  text-align: center;
}

.text>h2 {
  font-size: 60px;
  font-weight: 100;
  margin: 50px auto;
  font-family: 'Great Vibes', cursive, sans-serif;
}

/* Video */
.video {
  width: 800px;
  height: auto;
  margin: 30px auto;
  cursor: pointer;
}

video {
  border-radius: 5px;
}

/* Proizvodi */
.proizvodi {
  font-size: 23px;
  margin: 100px auto;
  text-align: center;
}

.proizvodi h2 {
  margin-bottom: 100px;
  text-transform: uppercase;
}

.proizvodi-kolone {
  margin: 100px 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.proizvodi-kolone>div {
  width: 300px;
  height: 250px;
  text-align: center;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}

.proizvodi-kolone img {
  width: 300px;
  height: 250px;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.proizvodi-kolone>div>p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  background-color: #ffffffC0;
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
  border-top: 1px solid #fff;
  border-radius: 3px;
}

.proizvod {
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  -o-transition: transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.proizvod:hover {
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.2);
  z-index: 5;
}

.open_popup {
  position: absolute;
  padding: 2px 7px;
  color: #000;
  top: 0;
  right: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  visibility: hidden;
}

.popup_body {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 600ms;
  -o-transition: 600ms;
  transition: 600ms;
}

.popup_body_show {
  display: block;
  -webkit-transition: 6 00ms;
  -o-transition: 6 00ms;
  transition: 6 00ms;
}

.popup_contain {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 20px;
}

.popup_close {
  background: #000;
  padding: 3px 10px 5px;
  position: absolute;
  right: -30px;
  top: -30px;
  color: #fff;
  border-radius: 50%;
}

.proizvod span {
  position: absolute;
  width: 150px;
  height: auto;
  font-size: 10px;
  text-align: center;
  display: block;
  padding: 30px;
  opacity: 0;
  top: -50px;
  right: -30px;
  background-color: #000;
  color: white;
  border-radius: 50%;
  -webkit-transition: 0.8s opacity;
  -o-transition: 0.8s opacity;
  transition: 0.8s opacity;
}

.proizvod span::before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(deg);
      -ms-transform: translateX(-50%) rotate(deg);
          transform: translateX(-50%) rotate(deg);
  background-color: #000;
  left: 18px;
  bottom: 23px;
}

.proizvod:hover span {
  opacity: 1;
}

/* Tretmani Lica */
.TL-1 {
  margin: 50px auto;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
}

.TL-1 img {
  width: 90%;
  height: auto;
  margin-top: 30px;
  border: 1px solid black;
  border-radius: 2px;
}

.TL-2 {
  margin: 50px 150px;
}

.TL-2 p {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.TL-3 {
  margin: 50px 150px;
}

.TL-3>h1 {
    font-size: 50px;
}

.TL-3 ol {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.TL-3>ol>li {
  list-style-type: none;
}

.TL-4 {
  margin: 50px;
  text-align: center;
}

.TL-4 img {
  width: 300px;
  height: auto;
  border-radius: 5px;
}

.popup_amain {
  padding-bottom: 5px;
}

/*popup tretmani lica*/

.opena_popup {
  padding: 2px 6px;
  background: #000;
  color: #fff;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}
.opena_popup:hover {
  background: #fff;
  color: #000;
}

.popup_abody {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  top: 50px;
  height: 80%;
  -webkit-transition: 600ms;
  -o-transition: 600ms;
  transition: 600ms;

}

.popup_abody_show {
  display: block;
  -webkit-transition: 6 00ms;
  -o-transition: 6 00ms;
  transition: 6 00ms;

}
.popup_aback{
  background: rgba(0,0,0,0.4);
  position: fixed;
  left:0;right:0;top:0;bottom:0;
}
.popup_acontain {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 20px;
  overflow-y: scroll;
  -moz-overflow-y: scroll;
  background: rgba(41, 38, 38, 0.904);
  color: #fff;
}
.popup_acontain>p {
  width: 80%;
  text-align: center;
  margin: 20px auto;
}

.popup_acontain>img {
  width: 50%;
}

.popup_aclose {
  background: #000;
  padding: 0 8px 2px 8px;
  position: absolute;
  right: 50px;
  top: 50px;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}
.popup_aclose:hover {
  opacity: 0.7;
}

/* Depilacija */
.DP-1 {
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  margin: 50px auto;
}

.DP-1 img {
  width: 90%;
  height: auto;
  margin-top: 30px;
  border: 1px solid black;
  border-radius: 2px;
}

.DP-2 {
  margin: 50px 150px;
}

.DP-2 h2 {
  margin-top: 50px;
}

.DP-2 p {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.DP-3 {
  margin-left: 150px;
float: left;
}

.DP-3 ol {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.DP-3>ol>li {
  list-style-type: none;
}

.DP-4 img {
  width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Masaža */
.MS-1 {
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  margin: 50px auto;
}

.MS-1 img {
  width: 90%;
  height: auto;
  margin-top: 30px;
  border: 1px solid black;
  border-radius: 2px;
}

.MS-2 {
  font-family: 'Verdana', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin: 50px 150px;
}

.MS-3 {
  margin: 50px 150px;
}

.MS-3 p {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  text-decoration: underline;
  line-height: 1.5;
}

.MS-3 ol {
  font-family: 'Verdana', sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.MS-3>ol>li {
  list-style-type: none;
}

/*Gallery*/
.gallery-section {
  position: relative;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 100px 0;
}

.inner-width {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.gallery-section h1 {
  text-align: center;
  text-transform: uppercase;
  color: #333;
}

.border {
  width: 180px;
  height: 4px;
  background: #333;
  margin: 60px auto;
}

.gallery-section .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-section .image {
  -webkit-box-flex: 15%;
      -ms-flex: 15%;
          flex: 15%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  margin: 10px;
}

.gallery-section .image img {
  height: 300px;
  width: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  float: left;
}

.gallery-section #image-25 {
  color: #000;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: auto;
}

.gallery-section .image:hover img {
  -webkit-transform: scale(1.4) rotate(15deg);
      -ms-transform: scale(1.4) rotate(15deg);
          transform: scale(1.4) rotate(15deg);
}

.uvodna-rec {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
  border: 2px solid black;
  border-radius: 10px;
  padding: 20px;
}

.uvodna-rec>p {
  text-align: justify;
  font-style: italic;
}

@media screen and (max-width:960px) {
  .gallery-section .image {
    -webkit-box-flex: 33.33%;
        -ms-flex: 33.33%;
            flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .gallery-section .image {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .gallery-section .image {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}



/* O nama */
.on {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 18px;
  margin: 50px auto;
  text-align: center;
}

.on-1 img {
  width: 440px;
  height: auto;
  margin: 0px 50px 100px 50px;
  float: left;
  border-radius: 3px;
}

.on-2 {
  margin: 50px;
  font-family: 'Verdana', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

/* Vlog */

.vlog {
    text-align: center;
}

.embed {
    text-align: center;
    
}

.embed>ul {
    margin: 0 auto;
    display: inline-flex;
    position: relative;
    
}

.embed>ul>li {
    list-style-type: none;
    text-align: center;
    margin: 10px;
    max-width: 350px;
}

.embed>ul>li>p {
    font-weight: bold;
    text-transform: uppercase;
    
}

/*Kontakt*/
.contact-pozadina {
  width: auto;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 50px auto;
}

.contact {
  width: 250px;
  height: 450px;
  margin: auto 0 auto 300px;
  text-align: center;
  padding: 50px 0 0 0;
  color: #000;
  background-color: #fff;
  border: 2px solid black;
  border-radius: 5px;
}

.contact>img {
  width: 50px;
  height: 50px;
}

.kozmeticar {
  margin-top: -20px;
}

.drugi-red>a {
  text-decoration: none;
  color: #000;
}

#gmap_canvas {
  grid-area: mapa;
  border-radius: 5px;
  border: 2px solid black;
}

.mapa {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: auto 0 auto -200px;
}

/* footer */
footer {
  margin-top: 30px;
  width: 100%;
  height: 130px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1.5px solid #000;
}

.info {
  color: #000;
  margin: 20px 0 0 40px;
  line-height: 1.5;
}

.info>img {
  width: 60px;
  height: auto;
  margin: 0;
}

.info>p {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
}

/*networks*/
.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 40px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.social-media>a {
  width: 20px;
  height: 20px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  text-align: center;
}

.social-media>a:hover {
  width: 20px;
  height: 20px;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  border: 2px solid #929aab;
  border-radius: 100%;
  text-align: center;
}

.facebook {
  margin-right: 10px;
}

.instagram {
  margin-left: 10px;
}

.contact-footer {
  color: #000;
  margin: 20px 40px 0 0;
  line-height: 1.5;
}

.contact-footer>p {
  margin: 0;
}

.contact-footer a {
  pointer-events: none;
  text-decoration: none;
  color: #000;
}

.contact-footer>a>i {
  background-color: #fff;
  margin-right: 15px;
}

/*copyright*/
.copyright {
  bottom: 0;
  background-color: #000000;
  height: 25px;
  text-align: center;
  margin: 0;
  border-top: 1px solid #fff;
}

.copyright p {
  font-size: 12px;
  color: #fff;
  width: 80%;
  margin: auto;
  padding-top: 5px;
}

.copyright p>a {
  color: #fff;
  text-decoration: none;
}

.copyright p>a:hover {
  color: #32e0c4;
  text-decoration: underline;
}

#scroll-btn {
  position: fixed;
  bottom: 150px;
  right: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 40px;
  text-align: center;
  border-radius: 50px;
  /* background: #000; */
  /* color: #fff; */
  display: none;
}

#scroll-btn:hover {
  opacity: 0.7;
}

@media(max-width: 1100px) {
  header {
    display: none;
  }

  .head>img {
    height: 50px;
    margin: 20px 0 20px 230px;
  }

  /*Mobile Menu*/
  body {
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: #1E1E23;
    opacity: 1;
    font-size: 1.5em;
    font-weight: 400;
    -webkit-transition: 200ms;
    -o-transition: 200ms;
    transition: 200ms;
  }

  a:hover {
    opacity: 0.5;
  }

  #menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .container {
    margin: 0;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #000;
  }

  .navigation {
    margin: 0;
    height: 100px;
  }

  .navigation>div>div>div>div>a {
    display: block;
    padding: 5px;
    text-decoration: none;
    /* transition: 200ms; */
    border-radius: 3px;
  }

  .navigation>div>div>div>div {
    display: none;
  }

  .navigation>div>div>div:hover>div {
    display: block;
  }

  #menuToggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    top: 25px;
    left: 25px;
    z-index: 5;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
  }

  #menuToggle input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
  }

  #menuToggle span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 10px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 2;
    -webkit-transform-origin: 5px 0px;
        -ms-transform-origin: 5px 0px;
            transform-origin: 5px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease,
      -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease,
      -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease,
      -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  #menuToggle span:first-child {
    -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }

  #menuToggle input:checked~span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-3px, -1px);
        -ms-transform: rotate(45deg) translate(-3px, -1px);
            transform: rotate(45deg) translate(-3px, -1px);
    background: #36383F;
  }

  #menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
        -ms-transform: rotate(0deg) scale(0.2, 0.2);
            transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked~span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg) translate(0, -1px);
        -ms-transform: rotate(-45deg) translate(0, -1px);
            transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    width: 90%;
    height: auto;
    font-size: 30px;
    -webkit-box-shadow: 0 0 10px #85888C;
            box-shadow: 0 0 10px #85888C;
    margin: -50px 0 0 -50px;
    padding: 50px 0 0 150px;
    background-color: #F5F6FA;
    -webkit-font-smoothing: antialiased;
    -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  #menu div {
    padding: 20px 0;
    -webkit-transition-delay: 2s;
         -o-transition-delay: 2s;
            transition-delay: 2s;
  }

  #menuToggle input:checked~#menu {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }

  /* Proizvodi */
  .proizvodi {
    font-size: 24px;
    margin: 100px auto;
    text-align: center;
  }

  .proizvod {
    margin: 0;
  }

  .proizvodi-kolone {
    display: inline-block;
    margin: 0;
  }

  .proizvodi-kolone>div {
    width: 600px;
    height: 550px;
    text-align: center;
    position: relative;
    border: 1px solid #000;
    border-radius: 3px;
    margin: 50px;
  }

  .proizvodi-kolone img {
    width: 600px;
    height: 550px;
    border-radius: 3px;
  }

  .proizvodi-kolone>div>p {
    position: absolute;
    padding: 10px;
    background-color: #ffffffC0;
    margin-bottom: 0;
    color: #000;
    font-weight: bold;
    border-top: 1px solid #fff;
    border-radius: 3px;
  }

  .proizvod:hover {
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .proizvod span {
    display: none;
  }

  .open_popup {
    position: absolute;
    padding: 5px 15px;
    background: #000;
    color: #fff;
    top: 0;
    right: 0;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    visibility: visible;
  }

  .popup_body {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.658);
    color: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 600ms;
    -o-transition: 600ms;
    transition: 600ms;
  }

  .popup_body_show {
    display: block;
    -webkit-transition: 600ms;
    -o-transition: 600ms;
    transition: 600ms;
  }

  .popup_contain {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(255, 255, 255, 0.24);
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 20px;
  }

  .popup_close {
    background: #000;
    padding: 3px 10px 5px;
    position: absolute;
    right: -30px;
    top: -30px;
    color: #fff;
    border-radius: 50%;
  }

  /*Tretmani lica*/

  .popup_amain {
    font-size: 35px;
  }

  /*popup tretmani lica*/
  .popup_abody {
    height: 60%;
    top: 20%;
  }
  .opena_popup {
    font-size: 40px;
    padding: 2px 10px 0 10px;
  }

  .popup_aclose {
    font-size: 40px;
    padding: 0 20px 5px 20px;
  }

  /*depilacija*/

 

  /* Gallery */
  .gallery-section .image {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
    overflow: hidden;
    cursor: pointer;
    margin: 10px;
  }

  .gallery-section .image img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }

  @media screen and (max-width:960px) {
    .gallery-section .image {
      -webkit-box-flex: 33.33%;
          -ms-flex: 33.33%;
              flex: 33.33%;
    }
  }

  @media screen and (max-width:768px) {
    .gallery-section .image {
      -webkit-box-flex: 50%;
          -ms-flex: 50%;
              flex: 50%;
    }
  }

  @media screen and (max-width:480px) {
    .gallery-section .image {
      -webkit-box-flex: 100%;
          -ms-flex: 100%;
              flex: 100%;
    }
  }

  /* O nama */

.on-1 img {
 margin: 0 50px 10px 50px;
}

/* Vlog */


.embed>ul {
    display: block;
}

.embed>ul>li{
    text-align: center;
    margin: 0 auto;
    max-width: 550px;
}

.embed>ul>li {
    font-size: 20px;
}

  /*kontakt*/
  .contact-pozadina {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
  }

  .contact {
    width: 450px;
    height: 650px;
    margin: 100px auto;
    text-align: center;
    padding: 50px 0 0 0;
    color: #000;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 25px;
  }

  .contact>img {
    width: 50px;
    height: 50px;
  }

  .kozmeticar {
    margin-top: -20px;
  }

  .drugi-red>a {
    text-decoration: none;
    color: #000;
    font-size: 30px;
  }

  .drugi-red>a:hover {
    text-decoration: underline;
  }

  #gmap_canvas {
    grid-area: mapa;
    border-radius: 5px;
    border: 2px solid black;
  }

  .mapa {
    width: 600px;
    height: 500px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 50px auto 100px auto;
  }

  #gmap_canvas {
    width: 600px;
    height: 500px;
  }

  /* footer */
  footer {
    margin-top: 30px;
    width: 100%;
    height: 130px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1.5px solid #000;
  }

  .info {
    color: #000;
    margin: 20px 0 0 40px;
    line-height: 1.5;
  }

  .info>img {
    width: 40px;
    height: 20px;
    margin: 0;
  }

  .info>p {
    margin-top: 0;
  }

  /*networks*/
  .social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .social-media>a {
    width: 20px;
    height: 20px;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    text-align: center;
  }

  .social-media>a:hover {
    width: 20px;
    height: 20px;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    border: 2px solid #929aab;
    border-radius: 100%;
    text-align: center;
  }

  .facebook {
    margin-right: 10px;
  }

  .instagram {
    margin-left: 10px;
  }

  .contact-footer {
    color: #000;
    margin: 20px 40px 0 0;
    line-height: 1.5;
  }

  .contact-footer>p {
    margin: 0;
  }

  .contact-footer a {
    pointer-events: all;
    font-size: 15px;
    text-decoration: underline;
    color: #000;
  }

  .contact-footer>i {
    background-color: #fff;
  }

  /*copyright*/
  .copyright {
    bottom: 0;
    background-color: #000000;
    height: auto;
    text-align: center;
    margin: 0;
    border-top: 1px solid #fff;
  }

  .copyright p {
    font-size: 12px;
    color: #fff;
    width: 80%;
    margin: auto;
    padding-top: 5px;
  }

  .copyright p>a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
  }

  .copyright p>a:hover {
    color: #32e0c4;
    text-decoration: underline;
  }
}