html, body {
    padding: 0;
    margin: 0;
}

body {
    background-color: #fff;
    height: 3168px;
    width: 2448px;
}

.swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    height: 100%;
}

.btn {
    position: absolute;
    aspect-ratio: 1;
    border: none;
    /* border: 1px solid black; */
    background-color: transparent;
}

.hidden {
    display: none;
}

.show-popup {
    width: 90px;
    background-image: url(../images/btn_plus.png);
    background-size: contain;
    background-position: center;
    animation: pulse 1s linear infinite forwards;
    cursor: pointer;
}

.show-popup.references {
    width: 270px;
    height: 70px;
    background-image: url(../images/btn_references.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-repeat: no-repeat;
}

.show-home {
    width: 270px;
    height: 70px;
    background-image: url(../images/btn_home.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-repeat: no-repeat;
    animation: pulse 1s linear infinite forwards;
}

.show-popup[data-popup="popup-1"] {
    top: 2598px;
    right: 138px;
}

.show-popup[data-popup="popup-2"] {
    top: 2354px;
    right: 1074px;
}

.show-popup.references,
.show-home {
    top: 2925px;
    right: 140px;
}

.bottom-next-slide,
.bottom-prev-slide 
{
    background-repeat: no-repeat;
    position: absolute;
    width: 262px;
    height: 68px;
    cursor: pointer;
    animation: pulse 1s linear infinite forwards;
}

.bottom-next-slide {
    background-image: url(../images/btn-next.png);
    top: 2925px;
    right: 500px;
}

.bottom-prev-slide {
    background-image: url(../images/btn-prev.png);
    top: 2925px;
    right: 500px;
}

.close-popup {
    top: 47px;
    right: 50px;
    width: 110px;
    cursor: pointer;
}

.popup-container {
    position: absolute;
    top: 0;
    left: 0;
    /*
    left: 50%;
    transform: translateX(-50%);
    */
    height: 100%;
    z-index: 999;
}

.popup-container .popup {
    width: auto;
    height: 100%;
    position: relative;
    background-color: #fff;

}

.popup-container .popup > img {
    height: 100%;
}

.popup-references {
    position: fixed !important;
    top: 0px;
    left: 0px;
}

.footer {
    font-family: "Poppins";
    font-size: 18.7px;
    font-weight: normal;
    color: #000;
    position: absolute;
    bottom: 52px;
    left: 736px;
    text-align: center;
    line-height: 1.2;
    z-index: 1000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}