

.swiper {
    width: 100%;
    height: 100%;
}

.service-swiper-section {
    padding-bottom: 4rem;
}

.swiper-page span {
    background: var(--primary-color) !important;
    height: 13px;
    width: 13px;
}



.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;
}

.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-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    z-index: 999;
    border: 1px solid #fff;
}

.scroll-to-top i {
    font-size: 2.25rem;
    color:#fff;
}


/* Rest Banner */
.rest-banner {
   height: 550px;
   position: relative;
   margin-top:6.25rem;
}

.rest-banner::after {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   content: '';
   /*background-color: rgba(0, 0, 0, 0.65);*/
    background: radial-gradient(
      circle at top left, 
      rgba(255, 255, 255, 0.2) 0%, 
      rgba(0, 0, 0, 0.75) 30%,    
      rgba(0, 0, 0, 0.85) 100%    
   );
   pointer-events: none; 
}

.rest-banner img {
   height: 100%;
   width: 100%;
   object-fit: cover;
}

.rest-content {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 75%;
   right: 0;
   bottom: 0;
   padding: 1rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   z-index: 1;
   text-align:center;
   gap: 1.25rem;
}

.rest-content span {
   font-size: 3rem;
   color: #fff;
   font-family: var(--primary-font);
   font-weight: 600;
   line-height: 1.35;
}

.rest-content-p {
    color: #fff;
    font-size: 22px !important;
}

.section-margin-top{
    margin-top:5.5rem;
}


.grey-bg {
    position: relative;
   
}

.small-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}

.book-call-modal h5 {
    color: black;
    font-weight: 800;
    font-size: 1.5rem;
}

.primary-btn {
    padding: 11px 24px;
    border-radius: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 15px;
}

.home-button {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background-color: #e6f5ff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 8px 10px;
    line-height: 1.1;
    z-index: 99;
}

.home-button i {
    font-size: 2rem;
    color: var(--primary-color);
}