.nezabudkino.container {
  text-align: center;
  padding-top: 48px;
}

.nezabudkino.container:first-child {
}

.nezabudkino.header-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.nezabudkino.header-wrapper-bg {
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: auto auto;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation-name: nezaudkino_mix_move;
  animation-timing-function: ease-in-out;
  animation-direction: normal;
  animation-delay: 1.3s;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.nezabudkino.header-wrapper-bg.reverse {
  animation-direction: reverse;
}

.nezabudkino.header-wrapper-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.62);
  z-index: 1;
  transition: opacity 0.9s ease-in;
  opacity: 0;
}


.nezabudkino.header-wrapper-bg.loaded:after {
  opacity: 1;
}


.nezabudkino.header-box {
  z-index: 2;
  text-align: center;
  padding: 36px 24px;
}

.nezabudkino.header-box > .line {
  position: absolute;
  width: 5px;
  height: 5px;
  transition: all 1s ease-in;
  opacity: 0;
}

.nezabudkino.header-box > .line.to_up {
  left: 50%;
  top: 30px;
  height: 0;
}

.nezabudkino.header-box > .line.show {
  opacity: 1;
}

.nezabudkino.header-box > .line.to_up.show {
  top: 0px;
  height: 30px;
}

.nezabudkino.header-box > .line.up_left {
  left: 50%;
  top: 0;
}

.nezabudkino.header-box > .line.up_left.show {
  width: 50%;
}

.nezabudkino.header-box > .line.left_down {
  right: 0;
  top: 0;
}

.nezabudkino.header-box > .line.left_down.show {
  height: 100%;
}


.nezabudkino.header-box > .line.down_left {
  right: 0;
  bottom: 0;
}

.nezabudkino.header-box > .line.down_left.show {
  width: 100%;
}

.nezabudkino.header-box > .line.center_down {
  left: 0;
  bottom: 0;
}

.nezabudkino.header-box > .line.center_down.show {
  bottom: -120px;
  height: 120px;
}

.nezabudkino.header-box > .pointer {
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: rotate(45deg);
  border-bottom-width: 5px;
  border-bottom-style: solid;
  border-right-width: 5px;
  border-right-style: solid;
  transition: all 1s ease;
  opacity: 0;
}

.nezabudkino.header-box > .pointer.show {
  left: -28px;
  bottom: -115px;
  width: 60px;
  height: 60px;
  opacity: 1;
}

.nezabudkino > .separator-wrapper  {
  padding: 24px 0;
}

.nezabudkino > .separator-wrapper > .separator {
  display: inline-block;
  width: 240px;
  height: 6px;
}

.nezabudkino.annotation:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 10%;
  height: 3px;
  left: 45%;
  bottom: -24px;
}


.nezabudkino.page.title {
}

.nezabudkino.page.title > span {
  display: inline-block;
  font-size: 22px;
}

.nezabudkino.page.caption {
  margin: 0;
  padding: 0;
  line-height: 0.9;
  display: inline-block;
  position: relative;
}


#bottom-navi-wrapper {
  display: block;
  width: 100%;
  background: #f5f5f5;
  border-top: 1px solid #efefef;
}

.page-bottom-navi {
  padding: 0 36px;
}

.page-bottom-navi > .div-tr > .div-td {
  vertical-align: middle;
}

.page-bottom-navi-link {
  font-size: 200%;
  color: #8c8c8c;
}

.page-bottom-navi-link > span {
  vertical-align: middle;
  font-size: 50%;
}

.page-bottom-navi-arrow {
}

.page-bottom-navi-link,
.page-bottom-navi-link:focus,
.page-bottom-navi-link:active,
.page-bottom-navi-link:hover {
  text-decoration: none;
}

.page-bottom-navi-link:hover {
  color: #000;
}

.page-bottom-navi-right {
  margin-right: 24px;
}

.page-bottom-navi-left {
  margin-left: 24px;
}

.nezabudkino-phone-city {
  display: inline-block;
  text-align: left;
}

.nezabudkino-phone-number {
  display: inline-block;
  margin-left: 9px;
  text-align: left;
}


@keyframes nezaudkino_mix_move {
  0% {
    transform: scale(1);
    background-position: 0% 0%;
  }
  10% {
    transform: scale(1.3);
  }
  20% {
    background-position: 50% 100%;
  }
  30% {
    transform: scale(1);
  }
  40% {
    background-position: 100% 0%;
  }
  50% {
    transform: scale(1.2);
  }
  60% {
    background-position: 0% 20%;
  }
  70% {
    transform: scale(1.3);
  }
  80% {
    background-position: 20% 100%;
  }
  90% {
    background-position: 100% 10%;
  }
  100% {
    transform: scale(1);
    background-position: 0% 0%;
  }
}

