@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url(layout.min.css);

html {
  font-size: 16px;
}
body {
  position: relative;
  background: #3E4F3C;
  overflow-x: hidden;
  font-family: "Jost", serif;
}
:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #FFD900;
  --primary: #424C42;
  --gradient: linear-gradient(to top, #FFD900 0%, #FFA500 100%);;
}

p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.67;
  margin-bottom: 2rem;
  color: var(--white);
}
h1,
h2,
h3,
h4,
h5,
h6 {
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
figure {
  margin: 0;
}
section {
  padding: 5rem 0;
  position: relative;
}

/* Home Page CSS Start  */
.main-Banner {
  background: url(../images/banner/1.png) bottom center / cover fixed no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
}
.bannertext h1 {
  font-size: 3.125rem;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.bannertext p {
  font-size: 1.25rem;
  width: 70%;
  margin: 2rem 0;
}

.featureSec{
  background: url(../images/bg/1.png) bottom center / cover fixed no-repeat;
  border-top: 2px dashed #ffd90059;
  border-bottom: 2px dashed #ffd90059;
}
.mobImg {
  position: relative;
  margin-top: 3rem;
}

.mobImg .mobile {
  position: absolute;
  top: -11rem;
  z-index: 11;
}

.mobImg .dots {
  position: absolute;
  top: -4rem;
  animation: zoomIn 1.5s ease infinite;
}
@keyframes zoomIn {
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(1.07);
  }
  100%{
    transform: scale(1);
  }
}
.mobImg .circle {
  animation: circleImg 15s ease-in-out infinite;
  transform-origin: center;
}

@keyframes circleImg {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h4 {
  font-size: 3.125rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.gradientText {background: var(--gradient);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}

.greyBox {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--theme-color);
  transition: all 0.5s ease;
  margin: 1rem 0;
}

.greyContnt p {
  margin: 0;
}

.greyBox .greyContnt h3 {
  color: var(--white);
  font-size: 1.875rem;
}

.greyContnt p a {
  color: var(--theme-color);
  font-weight: 500;
}

.greyBox:hover {
  background: var(--gradient);
}

.greyBox:hover * , .greyBox:hover h3 {
  color: var(--primary);
}

.how-it-work-Sec{
  background: url(../images/bg/2.png) bottom center / cover fixed no-repeat;;
}

.workBox {
  text-align: center;
  background: var(--primary);
  padding: 2rem;
  border-radius: 50px;
  border: 1px solid var(--theme-color);
  position: relative;
  margin: 0 2rem;
  transition: all 0.5s ease;
}

.workBox p {
  margin: 0;
}

.workBox * {
  color: #fff;
}

.workBox span {
  font-size: 2rem;
  font-weight: 700;
  background: #424c42;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4rem auto 1.25rem;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  transition: all 0.5s ease;
}

.workBox:hover {
  background: var(--white);
}

.workBox:hover * {
  color: var(--primary);
}

.workBox:hover span {
  background: var(--theme-color);
}

.workOne {
  position: absolute;
  top: 5rem;
}

.worthree {
  position: absolute;
  bottom: 15rem;
  top: auto;
}
.how-it-work-Sec .themeBtn {margin-top: -2rem;}

.reviewSec{
  background: url(../images/bg/3.png) bottom center / cover fixed no-repeat;
  border-top: 2px dashed #ffd90059;
  border-bottom: 2px dashed #ffd90059;
}

.reviewBox {
  background: var(--white);
  padding: 2rem;
  border-radius: 50px;
  border: var(--theme-color);
}

.reviewBox * {
  color: var(--primary);
}

.reviewBox p {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.32;
  text-align: center;
}

.reviewBox .user {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.reviewBox .user h3 {
  font-size: 1.25rem;
}

.reviewBox .user h3 span {
  color: var(--theme-color);
}

.reviewBox .user img {
  border: 1px solid var(--theme-color);
  border-radius: 50%;
}

.reviewsSlider {
  padding-bottom: 5rem;
}

.swiper-pagination-bullet {background: #fff;opacity: 0.7;}

.swiper-pagination-bullet.swiper-pagination-bullet-active  {
  background: var(--theme-color);
}


/* Home Page CSS End */

/* Inner Pages CSS Start */
.innerBanner {position: relative;height: 80vh;padding-top: 12rem;}
.innerBanner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #ffffff00 0%, #3d4e3b 100%);
}
.mobImg .mobileFeaturd {
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.featurdInner .greyContnt p {
  font-size: 1.875rem;
}
.featurdInner .greyBox{
  margin: 2rem 0;
}
.featurdInner .mobImg .dots {
  left: 5rem;
  top: 1rem;
}

.teamSec{
  background: url(../images/bg/2.png) bottom center / cover fixed no-repeat;
}

.teamBox .teamContnt {
  background: var(--white);
  padding: 4rem 1rem 2rem;
  text-align: center;
  border-radius: 40px;
  margin-top: -3rem;
  border: 1px solid var(--primary);
}

.teamBox .teamContnt p {
  margin: 0;
  color: #000;
}

.teamBox img {
  transition: all 0.5s ease;
}

.teamBox:hover img {
  transform: scale(1.05);
}
.teamBox {
  text-align: center;
}
.storySec h6 {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.storySec .greyBox p {
  font-size: 1.25rem;
}
.ctaInner{
  background: url(../images/bg/5.png) bottom center / cover fixed no-repeat;
  padding: 10rem 0;
}
.ctaInner h4{
  margin-bottom: 2rem;
}

.blogSec{
  background: url(../images/bg/3.png) bottom center / cover fixed no-repeat;
}
.blogSec form {
  background: #ffffff9e;
  width: 40%;
  margin: auto;
  border-radius: 100px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blogSec form input {
  width: 90%;
  height: 3.75rem;
  border-radius: 100px;
  border: none;
  padding: 1rem;
  background: transparent;
}

.blogSec form button {
  color: #fff;
  background: transparent;
  border: none;
  padding-right: 1rem;
  font-size: 1.25rem;
}

.blogSec form input::placeholder {
  color: #fff;
  text-transform: capitalize;
}
.blogBox img {
  width: 100%;
}

.blogBox {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 40px;
  margin: 1rem 0;
  transition: all 0.5s ease;
}

.blogContnt ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.blogContnt {
  padding-top: 2rem;
}

.blogContnt h3 {
  font-size: 2rem;
  color: #424C42;
  font-weight: 600;
  line-height: 1.2;
}

.blogContnt p {
  color: #000;
  margin: 1rem 0;
}

.blogContnt a {
  color: var(--theme-color);
  font-size: 1.25rem;
}

.blogBox:hover {
  transform: scale(1.05);
}


.contactSec {
  background: url(../images/bg/7.png) bottom center / cover fixed no-repeat;
  padding: 14rem 0 6rem;
}

.contactSec form input , .contactSec form textarea {
  width: 100%;
  height: 3.5rem;
  border-radius: 100px;
  padding: 1rem;
  margin: 8px 0;
  border: 1px solid #fff;
  background: var(--primary);
}

.contactSec form textarea {
  height: 160px;
  border-radius: 30px;
}

.contactSec .socialIcons {
  justify-content: start;
  margin: 2rem 0;
}

.contactSec .infoSec li a {
  border: 1px solid var(--theme-color);
  padding: 14px 2rem;
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contactSec .infoSec {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.contactSec .infoSec li a:hover {
  background: var(--theme-color);
}
.appSec {
  padding-top: 14rem;
}

.appSec h6 {
  color: #fff;
  margin: 2rem 0 1rem;
  font-weight: 500;
  font-size: 1.25rem;
}

.appSec ul {
  display: flex;
  gap: 1rem;
}

.appSec .mobImg .circle {
  width: 18rem;
  position: absolute;
  top: 14rem;
  left: -4rem;
  z-index: 11;
}

.appSec .scan {
  position: absolute;
  top: 17.6rem;
  z-index: 22;
  left: -6px;
  width: 11rem;
}

.appSec .mobImg .mobile {
  top: -17rem;
  width: 94%;
}
.reviewInner .reviewSec {padding-top: 8rem;}


/* accordion css */
.faqSec{
  background: url(../images/bg/1.png) bottom center / cover fixed no-repeat;

}
.accordian {
  margin-top: 2rem;
}
.accordian li {
  margin-bottom: 25px;
  border: 1px solid var(--theme-color);
  border-radius: 30px;
  background: var(--primary);
  overflow: hidden;
}

.accordian li h4 {
  color: #fff;
  font-size: 1.35rem;
  padding: 1.25rem;
  position: relative;
  cursor: pointer;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

.accordian h4::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  position: absolute;
  top: 25px;
  right: 35px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.accordian p {
  margin: 0;
  color: #869289;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accordian li > div {
  display: none;
  border-radius: 0 0 10px 10px;
  padding: 1rem;
  padding-top: 0;
}
.accordian li.active h4::after {
  content: "\f068";
}
.accordian li.active {
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.accordian li.active h4 {
  background: var(--gradient);
  color: var(--primary);
}
.accordian li.active > div {
  background: var(--theme-color);
}

.accordian li.active > div p {
  color: var(--primary);
}

/* accordian End */
/* Inner Pages CSS End */
