html,
body {
    position: relative;
    height: 100vh;
}

body {
    background: #eee;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100vw /4962) * 2540);
}

.swiper-slide:last-child {
    /* text-align: center;
    font-size: 18px;
    background: #fff; */
    height: auto;
}

.swiper-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.cont_footer {
    width: 100%;
    background-color: white;
    ;
}

.code_imgs {
    padding: 54px 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.code_img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.code_bar {
    height: 6px;
    width: 63px;
    background-color: #58BA2A;
    margin: 20px 0 15px 0;
}

.code_img>img {
    width: 200px;
    height: 200px;
}

.code_desc {
    color: #58BA2A;
    font-size: 25px;
    letter-spacing: 1px;
}

.footer_texts {
    background-color: #58BA2A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 20px 30px;
}

.footer_text {
    color: white;
    font-size: 21px;
}

.cont_div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont_div>img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 1024px) {
    .footer_texts {
        flex-direction: column;
    }

    .footer_text {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .footer_text:last-child {
        margin-bottom: 0;
    }

    .code_imgs {
        flex-direction: column;
        padding: 20px;
    }

    .code_img {
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
    }

    .code_img:last-child {
        margin-bottom: 0;
    }

    .code_bar {
        width: 5px;
        height: 50px;
        margin: 0 15px;
    }

    .code_img>img {
        width: 120px;
        height: 120px;
    }

    .code_desc {
        font-size: 14px;
    }
}