.desktop {
    color: #fff;
    width: 100%;
    height: 100%;
    font-size: 0px;
    overflow: hidden;
}

* {
    -webkit-user-drag: none;
    box-sizing: border-box;
}

.desktop .fixed-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    object-fit: cover;
}

.desktop .fixed-bg * {
    object-fit: cover;
}

.content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.top {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.desktop .contact {
    display: flex;
}

.slg {
    position: absolute;
    top: -4vh;
    width: 80vw;
    right: 2vw;
    object-fit: contain !important;
}

.bottom {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: visible;
    position: relative;
}

.main-left {
    height: 100%;
    width: 100%;
    position: relative;
}


.downloadArea {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.downloadArea .title {
    position: absolute;
    bottom: 15vh;
    left: 3vw;
    width: 45vw;
}

.downloadArea .qr-wrap {
    position: absolute;
    right: 3vw;
    bottom: 1vh;
    width: 11vw;
    pointer-events: auto;
}

.downloadArea .qrcode {
    width: 100%;
    display: block;
}

.downloadArea .qrcode-box {
    position: absolute;
    right: 0.4vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 0;
    display: inline-block;
    width: 8vw;
    height: 8vw;
    box-sizing: border-box;
}

.inside {
    border-radius: 0;
    background: #fff;
    height: 100%;
    padding: 0.5vw !important;
}

#qrcode {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

#qrcode img {
    width: 100% !important;
    height: 100% !important;
    visibility: visible !important;
}

.btn-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.btn-box .btn {
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .3s ease;
    background: transparent;
    font-size: 24px;
}

.btn-box img {
    width: 100%;
}

.btn-box .btn:hover {
    transform: translateY(-4px) scale(1.05)
}


.image-container .image-fade {
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-container .image-fade.active {
    opacity: 1;
}

@media (min-aspect-ratio: 1.6) {
    .slg {
        top: 2vh;
        width: auto;
        height: 90vh;
        max-width: none;
        object-fit: contain;
    }

    .downloadArea .title {
        height: 70vh;
        max-width: none;
        object-fit: contain;
        bottom: 15vh;
    }
}