@import url("font.css");

body {
    background: #dddddf;
}

.header_wrap {
    width: 100%;
    display: flex !important;
    justify-content: center;
    position: absolute;
    z-index: 100;
    opacity: 1;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    z-index: 101;
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay.active {
    display: flex;
}

.overlay_header_wrap {
    width: 100%;
    display: flex !important;
    justify-content: center;
    position: absolute;
    top: 0;
}
.overlay_header_wrap > .overlay_header {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 40px;
    min-height: 80px;
}

.List_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    max-width: 1300px;
}

.List_wrap > .list_wrap_header {
    font-size: 44px;
    font-weight: 700;
    color: #de3703;
}

.List_wrap > .list_wrap_content {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight: 500;
    gap: 30px;
}
.List_wrap > .list_wrap_content > p {
    cursor: pointer;
}
.List_wrap > .download_wrap {
    padding: 10px 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    margin-top: 20px;
    display: none;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    max-width: 100%;
    position: relative;
    min-height: 80px;
}

.header.logo_left {
    justify-content: space-between;
}

.header.logo_center {
    justify-content: center;
}

.logo_img {
    max-width: 220px;
    max-height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right_menu {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    right: 45px;
}
.right_menu .download_wrap {
    padding: 10px 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}
.right_menu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;

    /* border: 1px solid #fff; */
}
.right_menu .menu img {
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

#close_clk img {
    opacity: 0;
}

.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 4px;
    height: 4px;
    margin: 15px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    margin: 13px !important;
}

@media (max-width: 768px) {
    .List_wrap > .list_wrap_content {
        font-size: 19px;
        gap: 20px;
    }
    .List_wrap > .download_wrap {
        display: flex;
    }

    .overlay_header_wrap > .overlay_header {
        padding: 10px;
        min-height: 50px;
    }
    .header {
        padding: 10px 10px 10px 0px;
        min-height: 50px;
    }
    .header > div.logo_img > img {
        height: 50px;
    }
    .right_menu {
        right: 10px;
        gap: 20px;
    }
    .swiper-pagination-bullet {
        margin: 13px !important;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        margin: 11px !important;
    }
    .right_menu .menu {
        width: 45px;
        height: 45px;
    }
    .right_menu > .download_wrap {
        padding: 10px 20px;
    }
}

@media (min-width: 769px) {
    .header {
        width: calc(100% - 150px);
    }
    .overlay_header_wrap > .overlay_header {
        width: calc(100% - 150px);
    }
}
