/* TABLE OF CONTENT */
/* -----------------
1.General
2.Navbar
3.Banner
4.About
5.Story
6.Footer
---------------------*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
-webkit-box-sizing:border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
a.active{
font-weight:700;
}
ul{
margin:0;
padding:0;
}
/* 1 Custom Css */
html{
scroll-behavior: smooth;
}
body{
font-family: "Mulish", sans-serif;
}
::-webkit-scrollbar{
width:.425rem;
}
::-webkit-scrollbar-track{
background: linear-gradient(175.68deg, #F3F7FF -10.48%, #DEEEFE 92.66%);
}
::-webkit-scrollbar-thumb{
background: linear-gradient(183.41deg, #67C3F3 -8.57%, #5A98F2 82.96%);
}
.main-btn{
width: 200px;
height: 56px;
border-radius: 55px;
background: #458FF6;
font-weight: 700;
font-size: 18px;
line-height: 60px;
color: #FFFFFF;
border: none;
}
/* btn-2 */
.c-button {
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  width: 200px;
  height: 56px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  background: transparent;
}

.c-button--gooey {
  color: #458FF6;
  letter-spacing: 2px;
  border: 1.4px solid #458FF6;
  border-radius: 55px;
  position: relative;
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs {
  height: 100%;
  filter: url(#goo);
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3px;
  right: -1px;
  z-index: -1;
  border-radius:20px;
}

.c-button--gooey .c-button__blobs div {
  background-color:#458FF6;
  width: 34%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  transform: scale(1.4) translateY(125%) translateZ(0);
  transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
  left: -5%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
  left: 30%;
  transition-delay: 60ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
  left: 66%;
  transition-delay: 25ms;
}

.c-button--gooey:hover {
  color: #fff;
}

.c-button--gooey:hover .c-button__blobs div {
  transform: scale(1.4) translateY(0) translateZ(0);
}
/* download-btn */
.d-container {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
}

.label {
  background-color: transparent;
  border: 1.4px solid #458FF6;
  display: flex;
  align-items: center;
  border-radius: 55px;
  transition: all 0.4s ease;
  padding: 5px;
  position: relative;
  width: 200px;
  height: 56px;
  cursor: pointer;
}

.label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  width: 8px;
  height: 8px;
  transition: all 0.4s ease;
  border-radius: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

.label .input {
  display: none;
}

.label .title {
color: #458FF6;
transition: all 0.4s ease;
position: absolute;
right:50px;
top:-2px;
text-align: center;
font-weight: 700;
font-size: 18px;
line-height: 60px;
}

.label .title:last-child {
  opacity: 0;
  visibility: hidden;
}

.label .circle {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  overflow: hidden;
}

.label .circle .icon {
  color: #458FF6;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label .circle .square {
  aspect-ratio: 1;
  width: 15px;
  border-radius: 2px;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.label .circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #458FF6;
  width: 100%;
  height: 0;
  transition: all 0.4s ease;
}

.label:has(.input:checked) {
  width: 57px;
  animation: installed 0.4s ease 3.5s forwards;
}

.label:has(.input:checked)::before {
  animation: rotate 3s ease-in-out 0.4s forwards;
}

.label .input:checked + .circle {
  animation:
    pulse 1s forwards,
    circleDelete 0.2s ease 3.5s forwards;
  rotate: 180deg;
}

.label .input:checked + .circle::before {
  animation: installing 3s ease-in-out forwards;
}

.label .input:checked + .circle .icon {
  opacity: 0;
  visibility: hidden;
}

.label .input:checked ~ .circle .square {
  opacity: 1;
  visibility: visible;
}

.label .input:checked ~ .title {
  opacity: 0;
  visibility: hidden;
}

.label .input:checked ~ .title:last-child {
  animation: showInstalledMessage 0.4s ease 3.5s forwards;
}

@keyframes pulse {
  0% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    scale: 1;
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    scale: 0.95;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes installing {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(-90deg) translate(27px) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  99% {
    transform: rotate(270deg) translate(27px) rotate(270deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes installed {
  100% {
    width: 200px;
  }
}

@keyframes circleDelete {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showInstalledMessage {
  100% {
    opacity: 1;
    visibility: visible;
    right: 56px;
  }
}

/* 2 Navbar */
.navigation-wrap{
position:relative;
width: 100%;
left: 0;
background-color: var(--white-color);
z-index: 1000;
transition: all 1s ease-out;
padding-top:15px;
}
.navigation-wrap .nav-item{
transition: all 200ms linear;
}
.navbar-toggler:focus{
outline: unset;
border:unset;
box-shadow: none;
}
.nav-link{
font-weight:400;
font-size: 18px;
line-height: 22.59px;
color: #1F1534;
padding-bottom:0;
}
/* Scroll Navbar */
.navigation-wrap.scroll-on{
position: fixed;
top: 0;
left: 0;
width: 100%;
box-shadow:0 0.125rem 1.75rem 0 rgba(0,0,0,0.09);
-webkit-transition: all 0.15s ease-in-out 0s;
-moz-transition: all 0.15s ease-in-out 0s;
-o-transition: all 0.15s ease-in-out 0s;
-ms-transition: all 0.15s ease-in-out 0s;
transition: all 0.15s ease-in-out 0s;
}
/* 3 Top Banner */
.top-banner{
width: 100%;
height:100%;
background: url("../images/element.svg") no-repeat center;
background-position: -3rem 2rem;
padding:5.875rem 0 8.375rem;
}
.top-banner h1{
font-weight: 700;
font-size: 48px;
line-height: 56px;
color: #000000;
}
.top-banner p{
font-weight: 300;
font-size: 21px;
width:30rem;
line-height: 32px;
color: #7D7987;
}
/* 6 services */
.features_wrapper{
padding:100px 0 80px;
background: url("../images/Services-Vector.svg") no-repeat center, url("../images/element.svg") no-repeat center;
background-position:-1rem 20rem , 69.5rem 40rem;
}
.features_wrapper .features_subtitle{
margin-bottom: 26px;
color: #000000;
font-weight: 700;
font-size: 36px;
line-height: 56px;
position: relative;
}
.features_wrapper .features_subtitle:before {
background: #000000;
border-radius:5px;
content: '';
position: absolute;
top:4.5625rem;
left:48.1%;
width:56px;
height:2px;
}
.features_wrapper .features_title{
margin-bottom: 25px;
color:#7D7987;
font-weight: 300;
font-size: 18px;
line-height: 30px;
text-align: center;
padding-top: 30px;
}
.features_wrapper h3{
margin-bottom:10px;
color: #000000;
font-weight: 700;
font-size: 24px;
line-height:40px;
}
.features_wrapper .features_text{ 
color:#7D7987;
font-weight: 300;
font-size: 16px;
line-height: 28px;
}
.features_wrapper .ft-1{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding: 40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft-2{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding: 40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft-3{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding: 40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft-4{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding: 40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft-5{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding: 40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft-6{
background:#FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
padding:40px;
height: 350px;
border-radius: 15px;
}
.features_wrapper .ft:is(:hover, :focus-within) {
transform: translateY(-10px); 
border: 1.4px solid #458FF6;
}
.ft{
transition: 0.5s ease;
}
/* Features section */
.about_wrapper{
padding:100px 0 0; 
}
.about_wrapper .about_title {
width:22rem;
margin-bottom:50px;
color:#000000;
font-weight: 700;
font-size: 36px;
line-height: 56px;
position: relative;
}
.about_wrapper .about_title::before{
background: #000000;
border-radius:10px;
content: '';
position: absolute;
width:56px;
height:2px;
top:8.5rem;
}
.about_wrapper .about_text{
width:23.5rem;
color:#7D7987;
font-weight: 300;
font-size: 18px;
line-height: 30px;;
}
.about_wrapper .innovate{
background:var(--bg-light-2);
padding:80px 0; 
}
/*
=====================================
Testimonial Section
=====================================
*/
.testimonial-section{
padding: 200px 0 140px;
background:url("../images/element.svg") no-repeat left;
background-position:1.5rem 30rem;
}
.testimonial-section .carousel-item{
margin-top:3rem;
padding:10rem 3.125rem;
background: linear-gradient(208.18deg, #67C3F3 9.05%, #5A98F2 76.74%);
height: 400px;
max-width: 1820px;
border-radius: 24px;
}
.testimonial-section .carousel-item .testi-element{
float: right;
transform: translate(6rem , -11rem);
}
.testimonial-section .carousel-caption h1{
font-weight: 700;
font-size: 36px;
line-height: 48px;
color: #FFFFFF;
}
.testimonial-section .carousel-caption h1::before{
background: #FFFFFF;
border-radius:10px;
content: '';
position: absolute;
width:56px;
height:2px;
top:5.875rem;
left:46%;
}
.review-box .testi-img{
display: flex;
gap: 29px;
}
.review-box{
display: flex;
gap: 110px;
align-items: center;
}
.review-box .img-info h3{
font-weight: 700;
font-size: 22px;
color: #FFFFFF;
}
.review-box .img-info {
font-weight: 400;
font-size: 18px;
color: #FFFFFFD9;
}
.review-box .img-info{
width:max-content;
text-align: left;
margin-top: auto;
margin-bottom: auto;
}
.review-box p{
font-weight: 400;
font-size: 17px;
line-height: 30px;
color: #FFFFFFE5;
text-align: left;
margin: 0;
}
.review-box{
margin-top:6rem; 
margin-bottom: 1rem;
}
.testimonial-section .carousel-indicators button{
width:15px;
height:15px;
outline:none;
border-radius:50%;
border:none;
margin-right:1rem;
opacity:0.2;
background-color: #458FF6;
}
.testimonial-section .carousel-indicators button.active{
opacity:1;
}
.testimonial-section .carousel-indicators{
padding: 10px 20px 0;
display: inline-block;
border-radius: 60px;
max-width: fit-content;
left:36% !important;
transform: translate(-50%, 0);
color: #000;
}
.carousel-control-prev, .carousel-control-next{
position: unset;
width: 60px;
height: 60px;
display: inline-flex;
border-radius: 50%;
overflow: hidden;
margin: 0;
padding-top: 1px;
padding-right: 2px;
transition: 0.3s;
}
.carousel-control-prev{
margin-left: auto;
transform: translateX(-6rem);
background-image: url("../images/l-arrow.svg");
background-repeat: no-repeat;
background-position: center;
}
.carousel-control-next{
margin-right: auto;
transform: translateX(7rem);
background-image: url("../images/r-arrow.svg");
background-repeat: no-repeat;
background-position: center;
}
.swiper-button-wp {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
/*
=====================================
Explore Food Section Design
=====================================
*/
.explore-food .card{
border-radius: 20px;
background: #FFFFFF;
box-shadow: 10px 40px 50px 0px #E5E9F666;
}
.explore-food .card img{
object-fit:cover;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.explore-food .card h4{
font-weight: 700;
font-size: 21px;
line-height: 32px;
color:#000000;
}
.explore-food .card P{
font-weight: 300;
font-size: 16px;
line-height: 28px;
color:#7D7987;
}
.explore-food .card .content-box{
padding: 24px 32px 32px;
}
#explore-food{
background:url("../images/article\ back.svg") no-repeat right;
background-position:70rem fixed;
}
.explore-food .article-element{
position: relative;
top:7.5rem;
right:3.5rem;
}
.explore-food .features_subtitle{
margin-bottom: 26px;
color: #000000;
font-weight: 700;
font-size: 36px;
line-height: 56px;
position: relative;
}
.explore-food .features_subtitle:before {
background: #000000;
border-radius:5px;
content: '';
position: absolute;
top:4.5625rem;
left:47.6%;
width:56px;
height:2px;
}