.main-page .tail-header {
	position: relative;
}
.main-page .tail-header .m-pg-banner,
.main-page .tail-header .m-pg-banner .banner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.main-page .tail-header .m-pg-banner {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.banner {
	width: 100%;
	height: 100%;
	max-height: 800px;
	animation: opacityanim 5s 1 linear;
}
@keyframes opacityanim {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.banner img {
  object-fit: cover;
  height: 100%;
  max-height: 580px;
}

.hidebox {
  display: none;
}
.loader .ball-box {
	text-align: center;
	width: 9em;
	height: 2.5em;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.loader .ball-box > span {
	display: inline-block;
	vertical-align: middle;
	width: 2.5em;
	height: 2.5em;
	position: relative;
}
.loader .ball-box > span:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
	background: #fff;
}
.loader .ball-box > span:nth-child(1):before {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader .ball-box > span:nth-child(2):before {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader {
  position: absolute;
  color: #ffffff;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  text-align: center;
}
@keyframes load7 {
  0%, 80%, 100% {
    width: 2.5em;
    height: 2.5em;
  }

  40% {
    width: 0;
    height: 0;
  }
}

.loader-percent {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .banner {
    height: 80%;
  }
}
@media (max-width: 1080px) {
  .banner {
    height: 60%;
  }
}
.bg-parts-container {
	max-height: 580px;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.bg-parts {
	background-repeat: no-repeat;
	background-position: 50% 0;
	height: 100%;
	width: 100%;
	background-size: contain;
	background-image: transparent;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation-name: opacityanim;
    animation-duration: 3s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}
.bg-part-1 {
	background-image: url(../images/mpm/1.png);
    animation-delay: 1s;
}
.bg-part-2 {
	background-image: url(../images/mpm/0.png);
    animation-delay: 4.5s;
}
@keyframes opacityanim {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}