.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primary-body-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    z-index: 999;
    border: 1px solid var(--secondary-color);
}

.scroll-to-top i {
    font-size: 2.25rem;
    color: var(--text-white);
}


/* swiper */
.swiper {
    width: 100%;
    height: 100%;
}

/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rest Banner */
.rest-banner {
    height: 450px;
    position: relative;
}

.rest-banner::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: rgba(0, 0, 0, 0.65);
}

.rest-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.rest-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.rest-content span {
    font-size: 4rem;
    color: var(--text-white);
    font-family: var(--primary-font);
    font-weight: 600;
}

.section-margin-top {
    margin-top: 5rem;
}

.section-margin-bottom {
    margin-bottom: 5rem;
}