.section-margin-top {
   margin-top: 5rem;
}

.section-margin-bottom {
   margin-bottom: 5rem;
}

.section-margin {
   margin: 5rem 0;
}

.section-padding-top {
   padding-top: 5rem;
}

.section-padding-bottom {
   padding-bottom: 5rem;
}

.section-padding {
   padding: 5rem 0;
}

.section-header {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 2rem;
}

.section-header-center {
   align-items: center;
   text-align: center;
}

.section-header h6 {
   font-size: 1.25rem;
   color: var(--text-primary);
}

.section-header h2 {
   font-size: 3.25rem;
   color: var(--text-black);
   font-family: var(--primary-font);
   font-weight: 600;
}

.section-header h2 span {
   color: var(--primary);
}

.section-header p {
   font-size: 17px !important;
   width: 70%;
   color: var(--text-grey);
}

.swiper .swiper-pagination {
   padding-bottom: 12px;
}

.swiper .swiper-pagination span {
   height: 10px;
   width: 10px;
   margin: 0 6px !important;
   background-color: var(--primary-bg);
}

.swiper .swiper-pagination span.swiper-pagination-bullet-active {
   background-color: var(--primary) !important;
}

.primary-btn {
   padding: 12px 32px;
   border-radius: 30px;
   background-color: var(--primary) !important;
   color: var(--text-black) !important;
   font-weight: 600;
}

.secondary-btn {
   padding: 12px 32px;
   border-radius: 30px;
   background-color: transparent !important;
   color: var(--text-primary) !important;
   border: 1px solid var(--text-primary) !important;
}

.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);
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   display: none;
   z-index: 999;
}

.scroll-to-top i {
   font-size: 2rem;
}

/* Rest Banner */
.rest-banner {
   height: 500px;
   position: relative;
   border-radius: 20px;
   overflow: hidden;
}

.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);
   margin-top: 1.5rem;
}

.text-wrap-1,
.text-wrap-2,
.text-wrap-3,
.text-wrap-4 {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
}

.text-wrap-1 {
   -webkit-line-clamp: 1;
   line-clamp: 1;
}

.text-wrap-2 {
   -webkit-line-clamp: 2;
   line-clamp: 1;
}

.text-wrap-3 {
   -webkit-line-clamp: 3;
   line-clamp: 1;
}

.text-wrap-4 {
   -webkit-line-clamp: 4;
   line-clamp: 1;
}