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

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

.home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/slide0.png);
}

.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;
}

.next-slide {
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    top: 49%;
    transform: translateY(-49%);
    right: -5px;
    height: 90px;
    cursor: pointer;
    animation: pulse 1s linear infinite forwards;
}

.prev-slide {
    background-image: url(../images/arrow_left.png);
    background-repeat: no-repeat;
    top: 49%;
    transform: translateY(-49%);
    left: 39px;
    height: 90px;
    cursor: pointer;
    animation: pulse 1s linear infinite forwards;
}

.show-popup {
    width: 117px;
    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: 262px;
    height: 72px;
    background-image: url(../images/btn_references.png);
    background-size: contain;
    background-position: center;
    cursor: pointer;
    background-repeat: no-repeat;
}

.show-home {
    width: 262px;
    height: 72px;
    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: 335px;
    left: 317px;
}

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

.show-popup.references,
.show-home {
    top: 2923px;
    left: 146px;
}

.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: 117px;
    height: 117px;
    background-image: url(../images/btn_close.png);
    background-repeat: no-repeat;
    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;
    z-index: 1;

}

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

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


.swiper-container {
    width: 2235px;
    height: 2548px;
    position: absolute;
    top: 253px;
    left: 109px;
}

.swiper-button-prev,
.swiper-button-next {
    position: fixed;
    top: 51.5%;
    transform: translateY(-50%);
    z-index: 5000;
    animation: pulse 1s linear infinite forwards;
}

.swiper-button-next {
    right: 45px;
}

.swiper-button-prev {
    left: 54px;
}

.swiper-button-prev img,
.swiper-button-next img {
    width: 118px;
    height: 143px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.swiper-pagination {
    bottom: 105px !important;
}

.swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    margin-left: 17px !important;
    background-color: #b1bbc1 !important;  
    opacity: 1 !important; 
}

.swiper-pagination-bullet-active {
    background-color: #0098a5 !important;
}

.footer {
    font-family: "Poppins";
    font-size: 20px;
    font-weight: normal;
    color: #000;
    position: absolute;
    bottom: 51px;
    left: 701px;
    text-align: center;
    line-height: 1.3;
    z-index: 1000;
}

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

    50% {
        transform: scale(1.2);
    }

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