@charset "utf-8";

footer{
    display: none;
}

main{
    padding-bottom: 0;
}

.main-section .hero-animation{
    z-index: 10;
}

.main-section .hero-animation > img:first-child{
    position: relative;
    opacity: 1;
}

.hero-animation > .img_wrp{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-animation > .img_wrp *{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.25s;
}

.hero-animation > .img_wrp *:not(.effect_blur){
    opacity: 0;
    transition: 0.3s;
}

.hero-animation > .img_wrp .effect_blur{
    filter:blur(7px);
    -moz-filter:blur(7px);
    -webkit-filter:blur(7px);
    opacity: 0;
}

.hero-animation > .img_wrp.active *:not(.effect_blur){animation: txt_blur2 4.5s 0.4s alternate ease-in forwards}

.hero-animation > .img_wrp.active .effect_blur {animation: txt_blur 5s alternate ease-in;}

@keyframes txt_blur2 {
    0% {
        opacity: 0;
    }
    15%, 97% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes txt_blur {
    0% {
        filter:blur(6px);
        -moz-filter:blur(6px);
        -webkit-filter:blur(6px);
        opacity: 0;
    }
    12%, 90% {
        filter:blur(0);
        -moz-filter:blur(0);
        -webkit-filter:blur(0);
        opacity: 1;
    }
    100% {
        filter:blur(0);
        -moz-filter:blur(0);
        -webkit-filter:blur(0);
        opacity: 0;
    }
}

.left-area p{
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.right-area{
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-download .down-btn{
    padding: 0 18px;
    height: 56px;
    border: 1px solid #fff;
    line-height: 20px;
    position: relative;
    background: rgba(5, 5, 7, .4);
    backdrop-filter: blur(4px) saturate(180%);
    -webkit-backdrop-filter: blur(4px) saturate(180%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-download .down-btn:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.2; 
}

.btn-download .down-btn:hover{
    background-color: #fff;
}

.btn-download .down-btn:hover span{
    color: #050507;
}

.btn-download .down-btn:hover .icon_download{
    background-image: url(../img/icon_download_blk.svg);
}

.swiper-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
}

.swiper-bg .bg{
    width: 100%;
    height: 100%;
    background: no-repeat center center / cover;
    transform: scale(1.05);
    opacity: 0;
    /* transition: transform 4s ease-in; */
}

.swiper-bg .swiper-slide.swiper-slide-active .bg{
    /* transform: scale(1); */
    animation: bgMotion 7s ease-in;
}

@keyframes bgMotion {
    0%{
        opacity: 0;
        transform: scale(1.05);
    }
    50%{
        opacity: 1;
        transform: scale(1.025);
    }
    100%{
        opacity: 0;
        transform: scale(1);
    }
}


/* preloader */
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader > div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #070705;
}
