* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
body {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000000;
}
.container {
    position: relative;
    width: 1920px;
    height: 980px;
    background: url('../imgs/background.jpg') top center no-repeat;
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin: 0 auto;
}
.logo {
    position: absolute;
    right: 36px;
    top: 24px;
    width: 331px;
    height: 227px;
    background: url(../imgs/logo.png) no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}
.slide {
    overflow: hidden;
    width: 100%;
    height: 721px;
    position: relative;
    transform: skewY(13deg);
    padding-top: 45px;
}
.slider-track {
    display: flex;
    width: calc(2 * 100%);
    animation: scrollLeft 20s linear infinite;
    gap: 10px;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout paint;
}
.slider-track img {
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: skewY(348deg);
    transform: translateZ(348deg);
}
.action {
    position: absolute;
    height: 565px;
    width: 840px;
    top: 380px;
    background: url('../imgs/bg-text.png') no-repeat;
    background-size: 100% 100%;
    z-index: 3;
}
.action .wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.text-1 {
    position: absolute;
    background: url(../imgs/text-1.png) no-repeat;
    background-size: 100% 100%;
    width: 1135px;
    height: 308px;
    top: 29px;
    transform: translate3d(-50px, 0, 0);
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}
.text-2 {
    position: absolute;
    background: url('../imgs/text-2.png') no-repeat;
    background-size: 100% 100%;
    width: 918px;
    height: 272px;
    top: 190px;
    transform: translate3d(-50px, 0, 0);
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}
.action .wrapper a {
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    background: url('../imgs/btn-dowload.png') no-repeat;
    background-size: 100% 100%;
    bottom: 42px;
    right: -45px;
    width: 405px;
    height: 200px;
    transform: translate3d(-50px, 0, 0);
    animation:
    slideIn 0.3s ease 0.5s forwards,
    scaleLoop 0.5s ease-in-out 0.8s infinite;
    opacity: 0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.action .wrapper a:hover {
    background: url('../imgs/btn-dowload-hover.png') no-repeat;
    background-size: 100% 100%;
}
.warning-logo {
    position: absolute;
    background: url(../imgs/logo-warning.png) no-repeat;
    background-size: 100% 100%;
    width: 128px;
    height: 107px;
    top: 38px;
    right: 20%;
}
@keyframes scrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateZ(0);
    }
}
@keyframes switchImage {
    0% {
        background: url('../imgs/btn-dowload.png') no-repeat;
        background-size: 100% 100%;
    }
    50% {
        background: url('../imgs/btn-dowload-hover.png') no-repeat;
        background-size: 100% 100%;
    }
    100% {
        background: url('../imgs/btn-dowload.png') no-repeat;
        background-size: 100% 100%;
    }
}
@media screen and (max-width: 1900px) {
    .container {
        width: 100%;
        height: 100%;
    }
}
@media screen and (min-width: 1921px) {
    .slider-track {
        animation: scrollLeft 35s linear infinite;
    }
}
@keyframes scaleLoop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}