/* BURGER */

.burger-menu {
  margin: 0 auto;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  height: 40px;
  z-index: 99;
}
.burger-menu .bar {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 2px;
  width: 100%;
  display: block;
  background-color: black;
}
.burger-menu .bar:nth-of-type(2) {
  margin: 12px 0;
}
.burger-menu--closed {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.burger-menu--closed .bar {
  float: right;
}
.burger-menu--closed .bar:nth-of-type(2) {
  width: 75%;
  -webkit-transition-property: margin, height, width;
  transition-property: margin, height, width;
  -webkit-transition-delay: 0.3s, 0.3s, 0s;
          transition-delay: 0.3s, 0.3s, 0s;
}
.burger-menu--closed .bar:nth-of-type(3) {
  width: 50%;
}
.burger-menu--closed:hover .bar:nth-of-type(2) {
  width: 100%;
}
.burger-menu--closed:hover .bar:nth-of-type(3) {
  width: 100%;
}
.burger-menu--opened {
  padding-top: 12px;
}
.burger-menu--opened .bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  height: 3px;
}
.burger-menu--opened .bar:nth-of-type(2) {
  opacity: 0;
  height: 0;
  margin: -3px;
}
.burger-menu--opened .bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  height: 3px;
}
.showMenu{
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  display: none;
  opacity: 0;
  width: 100%;
  background-color: black;
  z-index: 98;
  color: white;
  text-align: center;
}
.showMenu ul{
  padding: 0;
  margin-top: 40vh;
}
.showMenu ul li{
  list-style: none;
  text-decoration: none;
  margin-top: 15px
}
.showMenu ul li a:hover {
  text-decoration: none;
  font-weight: bold;
}
.showMenu ul li a{
  color: white;
  font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
  font-size: 20px
}
/*LOADING*/
.content-loading{
  background-color: white;
  -webkit-animation: dayToNight 10s infinite 1.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.sun {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
  -webkit-animation: dayToNight2 10s infinite 1.5s;
}

.shadow {
  height: 170px;
  width: 170px;
  border-radius: 50%;
  background-color: white;
  top: -5px;
  left: 0px;
  -webkit-animation: moveShadow 10s infinite 1.5s;
}

@-webkit-keyframes moveShadow {
  0% {
    transform: translateX(150px);
    background-color: white;
  }
  50% {
    transform: translateX(-10px);
    background-color: black;
  }
  100% {
    transform: translateX(-170px);
    background-color: white;
  }
}

@-webkit-keyframes dayToNight {
  0% {
    background-color: white;
  }
  50% {
    background-color: black;
  }
  100% {
    background-color: white;
  }
}







.CookieDeclaration{
    display: none;
}










.gallery { 
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 10px;
    overflow: hidden;
    
}

.gallery img { 
    width: 100%; 
    height: auto;
    transition: 500ms;
    margin-bottom: 10px;
    opacity: 0.8;
    page-break-inside: avoid; /* For Firefox. */
    -webkit-column-break-inside: avoid; /* For Chrome & friends. */
    break-inside: avoid; /* For standard browsers like IE. :-) */
   
}



.gallery img:hover {
    opacity: 1;
}

/* .modal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: center;
} */

.modal-img,.model-vid{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: table
}
.modal-body{
  padding: 0px;
}

.modal-dialog {
  height: 100%;
      position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
  border: none;
}

@media screen and (max-width: 767px) {
	.gallery { 
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
	.gallery div { margin: 0; 
        width: 200px;
    }
  .modal-dialog {
        margin: 0 5vw;
    }
}

@media screen and (max-width: 479px) {
    .gallery { 
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .gallery div { 
        margin: 0; 
        width: 200px;
    }
}





















.btn-2 {
  $color: #82f6d8;
  color: $color;
  
  &:hover {
    animation: stripes-move 0.75s infinite linear;
    background: repeating-linear-gradient(45deg, $color 0, $color 0.25em, transparent 0.25em, transparent .5em);
    color: adjust-hue($color,180);
  }
}

@keyframes stripes-move {
  100% {
    background-position: 5em 0px;
  }
}
