.section-margin-top {
   margin-top: 5.5rem;
}

.section-margin-bottom {
   margin-bottom: 5.5rem;
}

.section-margin {
   margin: 5.5rem 0;
}

.section-padding-top {
   padding-top: 5.5rem;
}

.section-padding-bottom {
   padding-bottom: 5.5rem;
}

.section-padding {
   padding: 5.5rem 0;
}

.section-header {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 2.25rem;
}

.section-header-center {
   align-items: center;
   text-align: center;
}

.section-header h6 {
   font-size: 1.15rem;
   font-weight: 600;
   font-family: var(--secondary-font);
   color: var(--text-red);
}

.section-header h2 {
   font-size: 3.25rem;
   color: var(--text-black);
   font-family: var(--primary-font);
   font-weight: 700;
}

.section-header h2 span {
   color: var(--primary);
}

.section-header p {
   font-size: 17px !important;
   width: 70%;
   color: var(--text-black);
}

.header-sec-2 {
   display: flex;
   align-items: center;
}

.header-sec-2 .section-header {
   margin-bottom: 0 !important;
}

.swiper .swiper-pagination span {
   height: 10px;
   width: 10px;
   margin: 0 6px !important;
   background-color: var(--primary);
}

.swiper .swiper-pagination span.swiper-pagination-bullet-active {
   background-color: var(--primary) !important;
}

.primary-btn {
   padding: 10px 32px;
   border-radius: 30px;
   background-color: var(--primary) !important;
   color: var(--text-white) !important;
}

.secondary-btn {
   padding: 10px 32px;
   border-radius: 30px;
   background-color: transparent !important;
   color: var(--text-white) !important;
   border: 1px solid var(--text-white) !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: 2.25rem;
   color: var(--text-white);
}

/* 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: 3.5rem;
   color: var(--text-white);
   font-family: var(--primary-font);
   font-weight: 600;
   text-align: center;
   line-height: 1.2;
}

.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;
}

.text-primary {
   color: var(--text-red);
}

.text-grey {
   color: var(--text-grey);
}

.text-black {
   color: var(--text-black);
}

.text-white {
   color: var(--text-white);
}

.text-yellow {
   color: var(--text-yellow);
}

.grey-bg {
   background-color: var(--tertiary-bg);
}

.small-container {
   max-width: 1100px;
   width: 100%;
   padding: 0 1rem;
   margin: 0 auto;
}

.rest-banner-2 {
   height: 450px;
}

.appointment-btn {
   position: fixed;
   top: 40%;
   right: 0;
   transform: translateY(-40%);
   writing-mode: vertical-rl;
   text-orientation: mixed;
   padding: 1.25rem 12px;
   background-color: var(--primary) !important;
   color: #fff !important;
   font-size: 15px;
   border-radius: 0;
   z-index: 9999;
}

.whatsapp-btn {
   position: fixed;
   left: 50px;
   bottom: 50px;
   z-index: 9999;
   height: 60px;
   width: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
}

@keyframes pulsing {
   to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
   }
}

.contact_icon {
   background-color: #42db87;
   color: #fff;
   width: 60px;
   height: 60px;
   border-radius: 50px;
   text-align: center;
   box-shadow: 2px 2px 3px #999;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: translatey(0px);
   animation: pulse 1.5s infinite;
   box-shadow: 0 0 0 0 #42db87;
   -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
   -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
   -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
   animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
   font-weight: normal;
   font-family: sans-serif;
   text-decoration: none !important;
   transition: all 300ms ease-in-out;
}

.whatsapp-btn img {
   height: 100%;
   width: 100%;
   object-fit: contain;
}