.slideshow-container .ict-swiper {

    /* width: 100%; */
    height: 100%;
    /* background-size: cover; */
    background-size: auto 100%;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: zoom-in;
    }
    
    .slideshow-container {
    max-width: 1000px;
    /* width: 100%; */
    position: relative;
    margin: auto;
    /* height: 100%; */
    /* max-height: 500px; */
    aspect-ratio:4/3;
    }

.ict-swiper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
}


.ict-swiper>.swiper-item{
    display: none;
}

.slideshow-container>.swiper-button{
    position: absolute;
    cursor: pointer;
    user-select: none;
    /* width: 20px;
    height: 20px; */
    text-align: center;
    color: white;
    font-size: 24px;
    background: #0006;
    padding: 5px 6px;
    border-radius: 6px 0 0 6px;
}

.swiper-button.prev{
    border-radius: 0 6px 6px 0;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button.next{
    top: 50%;
    right:0;
    transform: translateY(-50%);
}
.slideshow-container>.swiper-button:hover{
    font-weight: bold;
}
.swiper-arrow {
    display: inline-block;
    margin: 5px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(135deg);
}

.prev .swiper-arrow{transform: rotate(315deg);}

.fade {
    animation-name: fade;
    /* animation-duration: .5s;
    transition-duration: .5s; */
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}





/* modal */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 1;
    transition-duration: .4s;
}

.modal__background {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
}
.modal_con {
    width: 50%;
    margin: 0 auto;
}
.modal__content {
    text-align: center;
    position: relative;
    background-color: white;
    border-radius: 10px;
    top: 0;
    padding: 75% 25px 10px;
    /* width: 80%;
      height: 70%; */
    background-position: center;
    /* background-size: auto 100%; */
    background-size: contain;
    background-repeat: no-repeat;
    /* background-image: none; */
}

.modal__content button {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: none;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    transition-duration: 0.4s;
    text-shadow: 0 0 5px #ffffff5c;
}
.modal__content button:hover {
    opacity: 0.5;
}

.modal.hidden {
    /* display: none; */
    z-index: -9999 !important;
    opacity: 0 !important;
}
