/* ==========================================================================
   generic
   ========================================================================== */


/* ==========================================================================
   home page :: hero section
   ========================================================================== */
.gemer--hero {
  overflow: hidden;
  height: calc(100vh - 64px);
  position: relative;
}

.gemer--backgroundimage,
.gemer--backgroundimage_image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.gemer--backgroundimage_image {
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s;
}

.gemer--slider_nav_background {
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0;
  left: 0;
  background-image: url(../css/img/carousel_pattern.png);
}

@media (min-width: 640px) {
  .gemer--hero {
    height: calc(100vh - 80px);
  }

  .gemer--slider_nav_background {
    height: 64px;
  }
}

@media (min-width: 768px) {
  .gemer--hero {
    height: calc(100vh - 121px);
  }
}

/* ==========================================================================
   home page :: 3x3 blok >> animate icons
   ========================================================================== */
.gemer--withicon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 700px;
  margin: auto;
  border: 1px solid #f0e9e0;
  border-bottom: 4px solid #d300a2;
  box-sizing: border-box;
}

.gemer--icon {
  margin-bottom: 30px;
  transition: all 0.3s;
}

.gemer--withicon:hover .gemer--icon {
  transform: translateY(-10px);
  transition: all 0.3s;
}


/* ==========================================================================
   index page :: zoznam
   ========================================================================== */
.gemer--item_bg {
  background: #f0e9e0;
  cursor: pointer;
  /* opacity: 0.8; */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gemer--item_bg:hover {
  opacity: 1;
}

.gemer--card_hiden {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -4px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 45px;
  border-top: 4px solid #d300a2;
  background-color: #f0e9e0;
  /*background-image: url(../css/img/hover_item_gemer_v3.png);
  background-repeat: no-repeat;
  background-position: right -100px top -20px;
  color: #fff;*/
  transition: all 0.4s ease-out;
}

.gemer--card:hover .gemer--card_hiden {
  top: 0;
  margin-top: 0;
  transition: all 0.4s ease-out;
}

.gemer--readmore_plus {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-right: 10px;
  /*color: #000;*/
  transform: translateY(0);
  transition: all 0.3s;
}

.gemer--readmore_plus:after {
  position: absolute;
  right: -43px; /* -43px */
  top: -9px; /* -9px */
  content: url("../css/img/plus.svg");
  width: 43px; /* 43px */
  height: 43px; /* 43px */
  border-radius: 2px;
  text-align: center;
  line-height: 0; /* 42px */
  font-weight: 500;
  /*color: #000;*/
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gemer--readmore_plus:hover:after,
.gemer--readmore_plus_cube:after {
  background-color: #d300a2;
  color: #000;
  box-shadow: 0 13px 20px #ffdaf0;
  transition: all .3s;
}

.gemer--card .gemer--readmore_plus:after,
.gemer--card .gemer--readmore_plus {
  color: #213e2e;
}

/* ==========================================================================
   content iframe:
   ========================================================================== */
.embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   google-map:
   ========================================================================== */
.gm-style-iw {
  min-width: 312px !important;
  padding: 0 !important;
}

.gm-style-iw,
.gm-style-iw div {
  overflow: visible !important;
}

.gm-style-iw-d {
  overflow: visible !important;
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(45deg, rgb(244, 245, 247) 50%, rgba(244, 245, 247, 0) 51%, rgba(244, 245, 247, 0) 100%);
}


/* ==========================================================================
   explore page - animacia ikonky
   ========================================================================== */

.gemer--scrolldown_icon > svg {
    -webkit-animation: scroll_down_animation 2.5s infinite; /* Safari 4+ */
    -moz-animation: scroll_down_animation 2.5s infinite; /* Fx 5+ */
    -o-animation: scroll_down_animation 2.5s infinite; /* Opera 12+ */
    animation: scroll_down_animation 2.5s infinite; /* IE 10+, Fx 29+ */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes scroll_down_animation {
    20% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@-moz-keyframes scroll_down_animation {
    20% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@-o-keyframes scroll_down_animation {
    20% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes scroll_down_animation {
    20% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ==========================================================================
   home page :: explore section:
   ========================================================================== */
.gemer--card:hover .gemer--card_hiden {
    top: 0;
    margin-top: 0;
    transition: all 0.4s ease-out;
}

.gemer--card_hiden {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -4px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 45px;
    border-top: 4px solid #d300a2;
    background-color: #f0e9e0;
    /*background-image: url(../css/img/hover_item_gemer_v3.png);
    background-repeat: no-repeat;
    background-position: right -100px top -20px;*/
    color: #213e2e;
    transition: all 0.4s ease-out;
}

/* ==========================================================================
   Social:
   ========================================================================== */
.gallery-item:hover .gallery-item-info,
.gallery-item:focus .gallery-item-info {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /*border-radius: 0.25rem;*/
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 16, 16, 0.7);
}
