section#main-posts.recommend-sec {
    padding: 92px 0 84px 0px;
    height: 100vh;
    position: absolute;
    top: 0;
    width: 100%;
}

.swiper-announce,
.swiper {
    width: 100%;
    height: 100%;
    margin: 0 !important;
}
  
  .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    background-color: #e0ebf0;
  }

.swiper-wrapper.section-simulation {
    display: flex;
    flex-wrap: initial;
    justify-content: space-between;
    margin: 0;
}

ul.section-simulation.recommend li.post-item {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.post-item-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide-active .post-item-bg {
    animation: zoomEffect 15s forwards;
}

.swiper-announce {
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto !important;
    /* padding: 0 18px; */
    box-sizing: border-box;
}

.swiper-announce > .swiper-wrapper {
    padding: 0 !important;
}

.post-modal.first-announce .post-modal-inner {
    padding-top: 90px;
}

.announce-slider .swiper-backface-hidden .swiper-slide {
    background: transparent;
}

.announce-slide {
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    width: 80%;
}

.swiper-announce .swiper-wrapper {
    /* justify-content: center; */
    align-items: center;
}

.swiper-button-next, .swiper-button-prev {
    position: relative;
    top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0px;
}

.swiper-announce li.swiper-slide {
    background: transparent !important;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    font-size: 16px;
    margin-top: 24px;
}

.announce-slide h4 {
    text-align: center;
    margin: 18px 0px 18px 0px;
    font-weight: 600;
    font-size: 16px;
}

.announce-slide h4 span {
    background-color: #ffffff;
    color: #000000;
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    border-radius: 100%;
    margin-right: 1em;
    margin-bottom: 5px;
}

.announce-slide p {
    text-align: center;
}

.announce-slide img {
    border-radius: 8px;
}

h3#modal-title {
    text-align: center;
    line-height: 1.4em;
}

#modal-container.open .post-modal.first-announce #modal-content {
    padding-bottom: 128px;
}

button.start-Btn {
    background-color: #00AED2;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    max-width: 146px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    display: block;
}

@keyframes zoomEffect {
    0% {
        /* background-size: 100%; */
        transform: scale(1.0);
    }
    100% {
        /* background-size: 105%; */
        transform: scale(1.1);
    }
}

@media screen and (min-width:768px) {
    section#main-posts.recommend-sec {
        padding: 0px 0 0px 0px;
        height: 100vh;
        position: absolute;
        top: 0;
        width: calc(100% - 480px);
    }
}