@keyframes hintRight {
  10% {
    margin: 0;
  }
  20% {
    margin-right: -55px;
  }
  25% {
    margin-right: -35px;
  }
  30% {
    margin-right: -55px;
  }
  40% {
    margin: 0;
  }
}
@keyframes hintLeft {
  10% {
    margin: 0;
  }
  20% {
    margin-left: -55px;
  }
  25% {
    margin-left: -35px;
  }
  30% {
    margin-left: -55px;
  }
  40% {
    margin: 0;
  }
}
@keyframes hintTop {
  10% {
    top: 0;
  }
  20% {
    top: -55px;
  }
  25% {
    top: -35px;
  }
  30% {
    top: -55px;
  }
  40% {
    top: 0;
  }
}
@keyframes hintBottom {
  10% {
    top: 0;
  }
  20% {
    top: 55px;
  }
  25% {
    top: 35px;
  }
  30% {
    top: 55px;
  }
  40% {
    top: 0;
  }
}
@keyframes opacity-animation {
  0% {
    opacity: 0;
  }
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}
main {
  position: relative;
  height: 100%;
}

.multi-scrolling.ms-viewing-0 .ms-left .ms-section, .multi-scrolling.ms-viewing-0 .ms-right .ms-section, .multi-scrolling.ms-hinting .ms-left .ms-section, .multi-scrolling.ms-hinting .ms-right .ms-section {
  position: relative;
  /*transition: all .5s ease-out 0s;
  animation-delay: 5.5s;*/
  transition: all 2s cubic-bezier(0, 1.01, 0, 1.01) 0s;
  animation-delay: 10s;
}

.pulse-dot-mobile {
  display: none;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 50px;
}
.pulse-dot-mobile .dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  color: transparent;
  margin: 8px;
  border-radius: 100%;
  animation: opacity-animation 1.5s linear;
}
.pulse-dot-mobile .dot::before, .pulse-dot-mobile .dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(0.5);
}
.pulse-dot-mobile .dot::before {
  opacity: 0.5;
  animation: pulse-animation 3s infinite;
}
.pulse-dot-mobile .dot::after {
  opacity: 0.7;
  animation: pulse-animation 3s infinite 1s;
}

body:not(.ms-viewing-secc1) .mdm-content__desc {
  display: none;
}

.above-link {
  position: absolute;
  inset: 0;
  z-index: 101;
  opacity: 0;
  font-size: 0;
  color: transparent;
  display: none;
}
@media only screen and (max-width: 767px) {
  .above-link {
    display: block;
  }
}

.image-desktop > img, .image-desktop > img img,
.image-desktop > picture,
.image-desktop > picture img {
  height: 50vh;
  float: right;
  margin-right: 10vw;
  transition: all 0.3s ease-in-out;
  width: auto;
}
@media only screen and (max-width: 991px) {
  .image-desktop > img, .image-desktop > img img,
  .image-desktop > picture,
  .image-desktop > picture img {
    margin-right: 5vw;
  }
}

.mobile-slikz {
  display: none;
}

.ms-left, .ms-right {
  position: relative;
}

.ms-left-wrapper .ms-left .mdm-bg__holder {
  position: relative;
}
.ms-left-wrapper .ms-left .mdm-bg__holder picture,
.ms-left-wrapper .ms-left .mdm-bg__holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ms-left-wrapper .ms-left .mdm-bg__holder img, .ms-left-wrapper .ms-left .mdm-bg__holder picture, .ms-left-wrapper .ms-left .mdm-bg__holder video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.ms-left-wrapper .ms-left .mdm-bg__holder.video, .ms-left-wrapper .ms-left .mdm-bg__holder.video video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25%;
}
.ms-left-wrapper .ms-left .btn {
  position: absolute;
  bottom: 161px;
  transform: translate(-50%, 100%);
  left: 50%;
}
@media only screen and (min-width: 770px) {
  .ms-left-wrapper .ms-left .mdm-container .mdm-bg__holder::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }
  .ms-left-wrapper .ms-left .mdm-container:hover .mdm-bg__holder::after {
    background-color: transparent;
  }
}

.ms-right-wrapper .ms-right .mdm-bg__holder .image {
  position: relative;
  width: 100%;
}
.ms-right-wrapper .ms-right .mdm-bg__holder .image picture,
.ms-right-wrapper .ms-right .mdm-bg__holder .image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.ms-right-wrapper .ms-right .mdm-bg__holder .video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.ms-right-wrapper .ms-right .mdm-bg__holder .video video {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
}
.ms-right-wrapper .ms-right .mdm-content__holder {
  align-items: flex-end;
  text-align: right;
  padding-top: 84px;
}
.ms-right-wrapper .ms-right .mdm-content__holder .description-top {
  align-self: flex-end;
}
.ms-right-wrapper .ms-right .mdm-content__holder .separator {
  position: absolute;
  bottom: 161px;
  transform: translate(-50%, 100%);
  left: 50%;
}
.ms-right-wrapper .ms-right #mdm-countdown {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 0;
  background: #000;
  color: #fff;
  padding: 24px 34px;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--f-main-medium);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 770px) {
  .ms-right-wrapper .ms-right .mdm-container:hover .image-desktop > img {
    transform: scale(1.05);
  }
}

@media only screen and (min-width: 770px) {
  .ms-home:not(.multi-scrolling) {
    position: relative;
    height: var(--app-height);
    display: flex;
  }
  .ms-home:not(.multi-scrolling) .ms-left, .ms-home:not(.multi-scrolling) .ms-right {
    width: 50%;
    height: 100%;
  }
  .ms-home:not(.multi-scrolling) .ms-section {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
  }
  .ms-home:not(.multi-scrolling) .mdm-container {
    display: table-cell;
    vertical-align: middle;
  }
}
/*@media only screen and (max-width: 1200px) {
	.ms-left-wrapper .ms-left .btn,
	.ms-right-wrapper .ms-right .mdm-content__holder .separator {
		top: 72%;
	}
	.ms-right-wrapper .ms-right .mdm-content__holder .separator {
		right: 60px;
	}
}*/
@media only screen and (max-width: 769px) {
  .main.ms-main {
    position: relative;
    height: 100vh;
    height: var(--app-height);
    overflow: hidden;
  }
  .main.ms-main .home-page {
    height: 100%;
  }
  .multi-scrolling.ms-viewing-0 .ms-left, .multi-scrolling.ms-hinting .ms-left {
    animation: 9.5s hintLeft infinite;
  }
  .multi-scrolling.ms-viewing-0 .ms-right, .multi-scrolling.ms-hinting .ms-right {
    animation: 9.5s hintRight infinite;
  }
  .ms-home {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    margin-top: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
  }
  .ms-home .ms-left, .ms-home .ms-right {
    height: 50%;
    display: flex;
  }
  .ms-home .ms-left .mdm-content__holder, .ms-home .ms-right .mdm-content__holder {
    align-items: flex-end !important;
  }
  .ms-home .ms-section {
    flex: 0 0 auto;
    width: 100%;
  }
  .ms-left {
    width: 100%;
  }
  .ms-left .mdm-bg__holder {
    width: 100vw;
  }
  .ms-left .mdm-bg__holder.video {
    transform: translateX(0);
  }
  .ms-left .mdm-content__desc {
    top: 20px;
    right: 20px;
    position: absolute;
    left: 50%;
  }
  .ms-right {
    width: 100%;
  }
  .ms-right .mdm-content__desc {
    top: 20px;
    right: 20px;
    position: absolute;
    left: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .ms-right #mdm-countdown {
    top: 100%;
    left: 50%;
    width: 100%;
  }
  .ms-right-wrapper .ms-right .mdm-content__holder .separator {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .pulse-dot-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pulse-dot-mobile ~ .btn {
    display: none;
  }
  .ms-left-wrapper .ms-left .btn {
    display: none;
  }
}
@media only screen and (max-width: 424px) {
  .ms-home {
    height: calc(100% - 44px);
    margin-top: 44px;
  }
}
#multiscroll {
  visibility: hidden;
}

.mdm-ms-rendered #multiscroll {
  visibility: visible;
}
.mdm-ms-rendered #multiscroll svg.arrow {
  z-index: 10;
  position: absolute;
  top: calc(50% - 37px);
  width: 54px;
  height: 74px;
}
.mdm-ms-rendered #multiscroll svg.arrow path {
  animation: fade_opacity 3s infinite ease-in-out;
}
.mdm-ms-rendered #multiscroll svg.arrow path:nth-child(3n+2) {
  animation-delay: 0.25s;
}
.mdm-ms-rendered #multiscroll svg.arrow path:nth-child(3n) {
  animation-delay: 0.5s;
}
@media (min-width: 770px) {
  .mdm-ms-rendered #multiscroll svg.arrow {
    display: none;
  }
}
.mdm-ms-rendered #multiscroll svg.arrow.arrow-left {
  left: 0;
}
.mdm-ms-rendered #multiscroll svg.arrow.arrow-right {
  right: 0;
}

@keyframes fade_opacity {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=home.css.map */
