@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-SemiBold.woff2') format('woff2'),
        url('../fonts/Nunito/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Regular.woff2') format('woff2'),
        url('../fonts/Nunito/Nunito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Medium.woff2') format('woff2'),
        url('../fonts/Nunito/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Bold.woff2') format('woff2'),
        url('../fonts/Nunito/Nunito-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Regular.woff2') format('woff2'),
        url('../fonts/Merriweather/Merriweather-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Light.woff2') format('woff2'),
        url('../fonts/Merriweather/Merriweather-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Bold.woff2') format('woff2'),
        url('../fonts/Merriweather/Merriweather-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Black.woff2') format('woff2'),
        url('../fonts/Merriweather/Merriweather-Black.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather/Merriweather-Black.woff2') format('woff2'),
        url('../fonts/Merriweather/Merriweather-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/HelveticaNeue/HelveticaNeue-MediumExt.woff2') format('woff2'),
        url('../fonts/HelveticaNeue/HelveticaNeue-MediumExt.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Recursive Sans Linear';
    src: url('../fonts/Recursive/Recursive-SansLinearLight.woff2') format('woff2'),
        url('../fonts/Recursive/Recursive-SansLinearLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Colors */
:root {
  --color-default: #21242C;
  --color-primary: #333333;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
  --fs64: 64px;
  --fs45: 45px;
  --fs40: 40px;
  --fs36: 36px;
  --fs32: 32px;
  --fs30: 30px;
  --fs28: 28px;
  --fs26: 26px;
  --fs24: 24px;
  --fs20: 20px;
  --fs18: 18px;
  --fs16: 16px;
  --lightGrey: #F7F5F4;
  --lightBlue: #e1eeff;
  --lightgreen: rgb(170, 232, 195);
  --fMeriifweather: "Merriweather", serif;
  --fNunito: "Nunito", serif;
  --fw700: 700;
  --fw600: 600;
  --fw500: 500;
  --fw400: 400;
  --p-clr: #21242C;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Merriweather';
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather';
  color: #21242C;
}

p {
  color: #21242C;
}

.relative {
  position: relative;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-bg {
  background-color: #F7F5F4;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-family: 'Merriweather';
  font-weight: bold;
  font-size: 24px;
  color: var(--color-default);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-image: url(../img/hero-img.jpg);
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo {
  text-align: center;
}

.header .logo img {
  padding: 15px 0px;
  width: 70%;
}

.header-content {
  width: 100%;
  display: inline-block;
  padding: 50px 0;
}

.header-content h1 {
  font-size: var(--fs64);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
}

.header-content p {
  font-size: var(--fs32);
  font-weight: var(--fw700);
  font-family: var(--fNunito);
  margin-top: 50px;
}

section {
  scroll-margin-top: 90px;
}


/*--------------------------------------------------------------
# Protfolio Cover Section
--------------------------------------------------------------*/

.portfolio-cover h3 {
  font-size: var(--fs30);
  font-weight: var(--fw700);
  font-family: var(--fNunito);
  text-align: center;
  line-height: 45px;
}

.portfolio-cover .cnt-sec {
  margin-top: 50px;
}

.portfolio-cover .img-sec {
  margin-top: 80px;
}

.portfolio-cover .they-tag-img {
  text-align: right;
  margin-top: -90px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-sec {
  overflow: visible;
  padding: 0px;
  margin-top: -50px;
  width: 100%;
  display: inline-block;
}

.about-sec .section-bg {
  background-color: rgba(170, 232, 195, 0.3);
  width: 100%;
  display: inline-block;
  padding-bottom: 50px;
}

.about-sec .section-bg .avatar-sec {
  width: 100%;
  text-align: center;
}

.about-sec .section-bg .avatar-sec .img-sec {
  margin-top: -100px;
}

.about-sec .cnt-sec h3 {
  font-size: var(--fs32);
  font-weight: var(--fw700);
  font-family: var(--fNunito);
  text-align: center;
  line-height: 45px;
}



/*--------------------------------------------------------------
# Superpower Section
--------------------------------------------------------------*/
.superpower-sec {
  margin-top: 100px;
}

.superpower-sec h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  text-align: center;
  line-height: 45px;
  margin-bottom: 40px;
  text-shadow: 
  7.65241px 6.28017px 0 #ffffff, 
  8.23112px 5.49986px 0 #ffffff, 
  8.73057px 4.66658px 0 #ffffff, 
  9.14594px 3.78837px 0 #ffffff, 
  9.47322px 2.87367px 0 #ffffff, 
  9.70927px 1.93129px 0 #ffffff, 
  9.85182px 0.97032px 0 #ffffff, 
  9.89949px 0px 0 #ffffff, 
  9.85182px -0.97033px 0 #ffffff, 
  9.70927px -1.9313px 0 #ffffff, 
  9.47322px -2.87368px 0 #ffffff, 
  9.14594px -3.78838px 0 #ffffff, 
  8.73057px -4.66659px 0 #ffffff, 
  8.23112px -5.49987px 0 #ffffff, 
  7.65241px -6.28018px 0 #ffffff, 
  7px -7px 0 #ffffff, 
  6.28017px -7.65242px 0 #ffffff, 
  5.49986px -8.23113px 0 #ffffff, 
  4.66658px -8.73058px 0 #ffffff, 
  3.78837px -9.14595px 0 #ffffff, 
  2.87367px -9.47323px 0 #ffffff, 
  1.93129px -9.70928px 0 #ffffff, 
  0.97032px -9.85183px 0 #ffffff, 
  0px -9.8995px 0 #ffffff, 
  -0.97033px -9.85183px 0 #ffffff, 
  -1.9313px -9.70928px 0 #ffffff, 
  -2.87368px -9.47323px 0 #ffffff, 
  -3.78838px -9.14595px 0 #ffffff, 
  -4.66659px -8.73058px 0 #ffffff, 
  -5.49987px -8.23113px 0 #ffffff, 
  -6.28018px -7.65242px 0 #ffffff, 
  -7px -7.00001px 0 #ffffff, 
  -7.65242px -6.28018px 0 #ffffff, 
  -8.23113px -5.49987px 0 #ffffff, 
  -8.73058px -4.66659px 0 #ffffff, 
  -9.14595px -3.78838px 0 #ffffff, 
  -9.47323px -2.87368px 0 #ffffff, 
  -9.70928px -1.9313px 0 #ffffff, 
  -9.85183px -0.97033px 0 #ffffff, 
  -9.8995px -0.00001px 0 #ffffff, 
  -9.85183px 0.97032px 0 #ffffff, 
  -9.70928px 1.93129px 0 #ffffff, 
  -9.47323px 2.87367px 0 #ffffff, 
  -9.14595px 3.78837px 0 #ffffff, 
  -8.73058px 4.66658px 0 #ffffff, 
  -8.23113px 5.49986px 0 #ffffff, 
  -7.65242px 6.28017px 0 #ffffff, 
  -7.00001px 6.99999px 0 #ffffff, 
  -6.28018px 7.65241px 0 #ffffff, 
  -5.49987px 8.23112px 0 #ffffff, 
  -4.66659px 8.73057px 0 #ffffff, 
  -3.78838px 9.14594px 0 #ffffff, 
  -2.87368px 9.47322px 0 #ffffff, 
  -1.9313px 9.70927px 0 #ffffff, 
  -0.97033px 9.85182px 0 #ffffff, 
  -0.00001px 9.89949px 0 #ffffff, 
  0.97032px 9.85182px 0 #ffffff, 
  1.93129px 9.70927px 0 #ffffff, 
  2.87367px 9.47322px 0 #ffffff, 
  3.78837px 9.14594px 0 #ffffff, 
  4.66658px 8.73057px 0 #ffffff, 
  5.49986px 8.23112px 0 #ffffff, 
  6.28017px 7.65241px 0 #ffffff, 
  6.99999px 7px 0 #ffffff
}

.superpower-sec .shrink-card {
  border-radius: 24px;
  background-color: #fff;
  padding: 30px;
  margin-top: 40px;
  width: 100%;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.superpower-sec .itmes-sec {
  text-align: center;
  margin: 20px 0;
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.superpower-sec .itmes-sec h4 {
  font-family: var(--fMeriifweather);
  font-size: var(--fs24);
  font-weight: var(--fw700);
  margin-top: 10px;
}

.alongside-sec {
  margin-top: 80px;
}

.alongside-sec h3 {
  font-family: var(--fNunito);
  font-size: var(--fs32);
  font-weight: var(--fw700);
}

.alongside-sec {
  position: relative;
  z-index: 2;
}

.alongside-sec li {
  list-style: none;
  font-family: var(--fNunito);
  font-size: var(--fs32);
  font-weight: var(--fw700);
  position: relative;
  width: fit-content;
  margin: 0 auto;
  line-height: 50px;
}

.alongside-sec li span {
  position: relative;
  padding-left: 20px;
}

.alongside-sec li span:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #000;
}

.about-sec .line-corve-img {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

/*--------------------------------------------------------------
# Fun Challenge Section
--------------------------------------------------------------*/
.fun-challenge-sec {
  overflow: visible;
  padding-top: 50px;
  padding-bottom: 0px;
}

.fun-challenge-sec .section-bg {
  background-color: rgba(156, 198, 255, 0.3);
  width: 100%;
  padding-bottom: 60px;
}

.fun-challenge-sec .cnt-sec {
  max-width: 530px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  text-align: center;
}

.fun-challenge-sec h3 {
  font-family: var(--fNunito);
  font-size: var(--fs32);
  font-weight: var(--fw700);
  line-height: 45px;
}

.fun-challenge-sec .wave-sec {
  margin-top: -70px;
}

.fun-challenge-sec .title-sec h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  -webkit-text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  padding-bottom: 30px;
  text-align: center;
  max-width: 1290px;
  margin: 0 auto;
  line-height: 40px;
}


/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/
.testimonial-sec .section-header {
  padding-bottom: 0px;
}

.testimonial-sec .testimonial.swiper {
  margin-top: 40px;
}

.testimonial-sec .testimonial-item {
  width: 100%;
  text-align: center;
  padding: 10px;
  margin: auto;
}

.testimonial-sec .testimonial-item .pink-colm,
.testimonial-sec .testimonial-item .green-colm,
.testimonial-sec .testimonial-item .blue-colm {
  background-color: #fff;
  border: 3px solid #E0E0E0;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  height: 100%;
  min-height: 448px;
}

.testimonial-sec .testimonial-item .pink-colm:after,
.testimonial-sec .testimonial-item .green-colm:after,
.testimonial-sec .testimonial-item .blue-colm:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: auto;
  right: -10px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
}

.testimonial-sec .testimonial-item .pink-colm:after {
  background-color: #ff40a9;
}

.testimonial-sec .testimonial-item .green-colm:after {
  background-color: #AAE8C3;
}

.testimonial-sec .testimonial-item .blue-colm:after {
  background-color: #9CC6FF;
}

.testimonial-sec .testimonial-item .pink-colm .cnt-sec,
.testimonial-sec .testimonial-item .green-colm .cnt-sec,
.testimonial-sec .testimonial-item .blue-colm .cnt-sec {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0px 30px;
}

.testimonial-sec .testimonial-item p {
  line-height: 1.5em;
  font-size: var(--fs16);
  font-family: 'Nunito';
  color: var(--color-primary);
  vertical-align: middle;
}

.testimonial-sec .testimonial-item .auther-sec {
  width: 100%;
  display: inline-block;
  margin-top: 15px;
}

.testimonial-sec .testimonial-item .auther-sec h4 {
  font-size: var(--fs16);
  font-family: 'Nunito';
  color: var(--color-default);
  font-weight: bold;
}

.testimonial-sec .testimonial-item .auther-sec p {
  line-height: 1.5em;
  font-size: 18px;
  font-family: 'Nunito';
  color: var(--color-primary);
  margin-top: 0px;
}

.testimonial-sec .swiper-pagination3 {
  position: static;
  margin-top: 15px;
  text-align: center;
}

.testimonial-sec .swiper-pagination3 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonial-sec .swiper-pagination3 .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.testimonial-sec .swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.testimonial-sec .swiper-button-next:after,
.testimonial-sec .swiper-button-prev:after {
  font-size: 24px;
  color: #fff;
}

.testimonial-sec .swiper-button-next:after {
  content: "\F138";
  font-family: bootstrap-icons!important;
}

.testimonial-sec .swiper-button-prev:after {
  content: "\F12F";
  font-family: bootstrap-icons!important;
}

.testimonial-sec .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.testimonial-sec {
  margin-left: 200px;
  overflow: hidden;
}

.testimonial-sec .swiper-wrapper {
  padding-left: 10px;
}

.testimonial-sec .testimonial.swiper {
    margin-top: 40px;
    margin-left: 250px;
}

/*--------------------------------------------------------------
# Buddy-UP Section
--------------------------------------------------------------*/

.buddy-up-sec {
  position: relative;
}

.buddy-up-sec:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 480px;
  z-index: -1;
  background-color: rgba(255, 148, 171, 0.2);
}

.buddy-up-sec .left-sec h3 {
  font-family: var(--fNunito);
  font-size: var(--fs32);
  font-weight: var(--fw700);
  line-height: 45px;
}

.buddy-up-sec .left-sec p {
  font-family: var(--fNunito);
  font-size: var(--fs24);
  font-weight: var(--fw400);
  line-height: 45px;
  width: 100%;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: -50px;
}

.ready-box {
  border: 2px solid rgba(224, 224, 224, 0.5);
  background-color: #fff;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
}

.ready-box h3 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  -webkit-text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  line-height: 40px;
}

.ready-box p {
  font-size: var(--fs32);
  font-weight: var(--fw700);
  font-family: var(--fNunito);
  margin: 30px 0;
}


/*--------------------------------------------------------------
# Meet Section
--------------------------------------------------------------*/
.meet {
  width: 100%;
  background-color: var(--lightBlue);
}

.meet h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  margin-bottom: 50px;
  font-family: var(--fNunito);
}

.meet-slider {
  margin: 90px 0;
  width: 100%;
  display: inline-block;
  position: relative;
}

.meet h3 {
  font-size: var(--fs36);
  font-weight: var(--fw700);
  font-family: var(--fNunito);
}

.meet-slider .swiper-pagination1 {
  position: static;
  margin-top: 15px;
  text-align: center;
}

.meet-slider .swiper-pagination1 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.meet-slider .swiper-pagination1 .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.meet-slider .swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: -60px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.meet-slider .swiper-button-next:after,
.meet-slider .swiper-button-prev:after {
  font-size: 24px;
  color: #fff;
}

.meet-slider .swiper-button-next:after {
  content: "\F138";
  font-family: bootstrap-icons!important;
}

.meet-slider .swiper-button-prev:after {
  content: "\F12F";
  font-family: bootstrap-icons!important;
}

.meet-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -60px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.meet-slider .slide p {
  font-size: var(--fs16);
  font-family: var(--fNunito);
  font-weight: var(--fw700);
  margin-top: 50px;
  text-align: center;
}

/*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/

.welcome h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  -webkit-text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  line-height: 40px;
}

.welcome .cnt-sec h5 {
  font-size: var(--fs32);
  font-family: var(--fNunito);
  font-weight: var(--fw700);
  margin-top: 50px;
  line-height: 45px;
}

.star-sec {
  position: absolute;
  top: 3%;
  left: 0px;
  z-index: -1;
}


/*--------------------------------------------------------------
# Co-Founder Section
--------------------------------------------------------------*/

.co-founder {
  background-color: var(--lightGrey);
}

.co-founder h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  -webkit-text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  text-shadow: 2.61312px 1.08239px 0 #aae8c3, 
  2.82842px 0px 0 #aae8c3, 
  2.61312px -1.0824px 0 #aae8c3, 
  2px -2px 0 #aae8c3, 
  1.08239px -2.61313px 0 #aae8c3, 
  0px -2.82843px 0 #aae8c3, 
  -1.0824px -2.61313px 0 #aae8c3, 
  -2px -2.00001px 0 #aae8c3, 
  -2.61313px -1.0824px 0 #aae8c3, 
  -2.82843px -0.00001px 0 #aae8c3, 
  -2.61313px 1.08239px 0 #aae8c3, 
  -2.00001px 1.99999px 0 #aae8c3, 
  -1.0824px 2.61312px 0 #aae8c3, 
  -0.00001px 2.82842px 0 #aae8c3, 
  1.08239px 2.61312px 0 #aae8c3, 
  1.99999px 2px 0 #aae8c3;
  margin-bottom: 20px;
  line-height: 40px;
  max-width: 490px;
  margin-left: auto;
  margin-right: auto;
}

.co-founder .founder-cnt .left-sec svg {
  width: 320px;
  height: 230px;
}

.co-founder .founder-cnt .left-sec .img-sec {
  flex: 0 0 100%;
  text-align: right;
}

.line-corve-img {
  position: absolute;
  bottom: 0;
  right: -65px;
}


/*--------------------------------------------------------------
# Subscription Section
--------------------------------------------------------------*/

.subscription .title-sec h2 {
  font-size: var(--fs40);
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
}

.subscription-slider {
  margin-left: 500px;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.subscription-slider .subscription-slides.swiper {
    padding-left: 290px;
}

.subscription-slider .swiper-wrapper {
  padding-left: 10px;
}

.subscription-slider .testimonial.swiper {
    margin-top: 40px;
    margin-left: 250px;
}

.subscription-slider .slide {
  text-align: center;
}

.subscription-slider .slide h3 {
  font-family: var(--fMeriifweather);
  font-size: var(--fs18);
  font-weight: var(--fw700);
  line-height: 30px;
  max-width: 290px;
  margin: 0 auto;
  margin-top: 20px;
}

.subscription-slider .swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: 80px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.subscription-slider .swiper-button-next:after,
.subscription-slider .swiper-button-prev:after {
  font-size: 24px;
  color: #fff;
}

.subscription-slider .swiper-button-next:after {
  content: "\F138";
  font-family: bootstrap-icons!important;
}

.subscription-slider .swiper-button-prev:after {
  content: "\F12F";
  font-family: bootstrap-icons!important;
}

.subscription-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  margin-top: 0px;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid #2992F3;
}

.subscription-slider .swiper-pagination2 {
  position: static;
  margin-top: 15px;
  text-align: center;
}

.subscription-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.subscription-slider .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.subscription {
  position: relative;
  padding-bottom: 0;
}

.subscription:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 267px;
  background-color: #f5f5f5;
  z-index: -1;
}

.each-cnt {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 30px;
}

.each-cnt p {
  font-family: var(--fNunito);
  font-size: var(--fs32);
  font-weight: var(--fw700);
  line-height: 45px;
}

.founders video {
  margin: 0 auto;
}

.img-sec.grey-corve-img {
    margin-top: -110px;
    position: relative;
}

.pink-circle {
    position: absolute;
    top: 0;
    left: 4%;
}

section.founders .col-md-5 img {
    width: 100%;
    margin-top: 220px;
}

.aboutFounder .pink-circle {
  position: absolute;
    top: -50px;
  left: -50px;
}

.aboutFounder .blue-cross {
  position: absolute;
  bottom: 90px;
    left: -62px;
}

.aboutFounder p {
    font-size: 18px;
    line-height: 32px;
    font-family: var(--fNunito);
    font-weight: var(--fw400);
}

.aboutFounder p span {
    font-weight: bold;
}

.footer-bottom {
  background-image: url(../img/mobile-bottom-foot-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.footer-bottom .cnt-sec {
  padding: 30px;
}

.footer-bottom p {
  font-size: 24px;
  font-weight: var(--fw700);
  font-family: var(--fMeriifweather);
  line-height: 36px;
}

.footer-bottom p+p {
  margin-top: 40px;
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 12px 0;
  display: flex;
  justify-content: space-around;
  transition: transform 0.3s ease;
  z-index: 9999;
}

.mobile-bottom-bar.hide {
  transform: translateY(100%);
}

.ready-box .col-lg-6 {
    width: 50%;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

.Mobile-sec {
  display: none;
}
.Desktop-sec {
  display: block;
}

@media (max-width: 1600px) {
  .subscription-slider {
    margin-left: 300px;
  }
  .subscription-slider .subscription-slides.swiper {
    padding-left: 300px;
  }
}

@media (max-width: 1500px) {
  .subscription-slider {
    margin-left: 60px;
  }
  .subscription-slider .subscription-slides.swiper {
    padding-left: 620px;
  }
  .testimonial-sec .testimonial.swiper {
    margin-left: 70px;
  }
  .portfolio-cover h3 {
    font-size: var(--fs26);
  }
  .img-sec.grey-corve-img {
    margin-top: -110px;
    position: relative;
        z-index: 4;
  }
}

@media (max-width: 1400px) {
  section.founders .col-md-5 img {
    margin-top: 270px;
  }
}

@media (max-width: 1199px) {
  .img-sec.grey-corve-img {
    margin-top: -70px;
  }
  section.founders .col-md-5 img {
    margin-top: 300px;
  }
  .portfolio-cover h3 {
    font-size: 22px;
    line-height: 36px;
  }
  .portfolio-cover .they-tag-img {
    margin-top: -30px;
  }
  .subscription-slider .slide h3 {
    font-size: 17px;
  }
  .subscription:after {
    height: 300px;
  }
  .header-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  :root {
    scroll-behavior: smooth;
    --fs64: 44px;
    --fs45: 45px;
    --fs40: 34px;
    --fs36: 36px;
    --fs32: 16px;
    --fs30: 30px;
    --fs26: 26px;
    --fs24: 16px;
    --fs20: 20px;
    --fs16: 16px;
  }
  .Mobile-sec {
    display: block;
  }
  .Desktop-sec {
    display: none;
  }
  .header-content {
    text-align: center;
  }
  .header .logo img {
    width: auto;
  }
  .subscription-portfolio-sec {
    position: relative;
    padding-top: 0;
  }
  .subscription-portfolio-sec .img-sec.arrow-up {
    position: absolute;
    top: 61%;
    left: 23px;
  }
  .more-cnt p {
    font-family: var(--fNunito);
    font-size: 20px;
    font-weight: var(--fw700);
    line-height: 35px;
    text-align: center;
  }
  .more-cnt p:nth-child(2) {
    margin-top: 50px;
  }
  .subscription-slider .subscription-slides.swiper {
    padding-left: 400px;
    margin-bottom: 30px;
  }
  .testimonial-sec {
    margin-left: 30px;
  }
  footer .left .left-up {
    display: none !important;
  }
  .founders h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: var(--fs26);
    font-weight: bold;
    font-family: var(--fMeriifweather);
}
section.faqs {
  padding-bottom: 0px !important;
}
footer .left .left-down {
  justify-content: left !important;
    gap: 15px !important;
}
.aboutFounder p {
  text-align: center;
}
section.faqs .faqs-wrapper {
  text-align: center !important;
  padding: 0 30px;
}
.founder-cnt .right-sec .play-icon {
  position: absolute;
  top: 34%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 100%;
  background-color: #ff0000;
  text-align: center;
  line-height: 65px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.founder-cnt .right-sec .play-icon svg {
  width: 40px;
  height: 40px;
}

.founder-cnt .right-sec .play-icon svg path {
  fill: #fff;
}
footer.mobileView {
  padding: 20px 0;
}
.aboutFounder {
  margin-top: 30px;
}
.header-content h1 {
  font-size: 40px;
  line-height: 80px;
}
.about-sec {
    margin-top: 0px;
  }
  .aboutFounder .pink-circle {
  position: absolute;
      top: 50px;
    left: 6%;
}

.aboutFounder .blue-cross {
  position: absolute;
  bottom: 180px;
    left: 78px;
}
.mobile-bottom-bar .row {
  justify-content: center;
}
.mobile-bottom-bar .col-lg-6 {
  width: 40%;
  text-align: center;
}
.meet-cnt h3 {
  font-size: 32px;
  font-family: var(--fNunito);
  font-weight: var(--fw700);
  margin-top: 40px;
  padding: 0 60px;
  line-height: 48px;
}
.alongside-sec h3,
.alongside-sec li {
    font-size: 20px;
}
.buddy-up-sec .left-sec h3 {
  font-size: 20px;
  text-align: center;
}
.fun-challenge-sec .cnt-sec {
  max-width: 100%;
}
.fun-challenge-sec .wave-sec img {
    width: 100%;
}
.fun-challenge-sec .wave-sec {
    margin-top: -10px;
}
section.faqs .faqs-wrapper .faq[data-index="1"]::before,
section.faqs .faqs-wrapper .faq[data-index="4"] h4::after,
section.faqs .faqs-wrapper .faq[data-index="7"] h4::before {
  z-index: -1;
}
.founders .col-lg-12.col-12 img {
    margin: 0 auto;
}
.founders .col-lg-12.col-12 img.mobileView {
    display: block;
}
.meet-slider {
  margin-top: 0;
}
.meet h2 {
  margin-bottom: 0;
}
.subscription:after {
    height: 403px;
}
.alongside-sec li {
  line-height: 40px;
}
.alongside-sec li span:after {
    top: 9px;
    width: 8px;
    height: 8px;
  }
}



@media (max-width: 767px) {
  :root {
    scroll-behavior: smooth;
    --fs64: 28px;
    --fs45: 45px;
    --fs40: 28px;
    --fs36: 36px;
    --fs32: 16px;
    --fs30: 30px;
    --fs26: 26px;
    --fs24: 16px;
    --fs20: 20px;
    --fs16: 16px;
  }
  .header-content h1 {
    line-height: 80px;
    font-size: var(--fs28);
  }
  .header-content {
    padding: 0;
  }
  .header-content p {
    margin: 20px 0 ;
    text-align: center;
  }
  .meet {
    background-color: rgba(170, 232, 195, 0.3);
    padding-bottom: 20px;
  }
  .meet h2 {
    line-height: 38px;
    margin-bottom: 50px;
  }
  .meet .title-sec {
    position: relative;
  }
  .meet .title-sec .img-sec {
    position: absolute;
    top: 75px;
    left: 40px;
  }
  .meet-slider {
    margin: 0;
  }
  .meet-slider .slide p {
    margin-top: 10px;
  }
  .meet-cnt h3 {
    font-size: var(--fs16);
    font-family: var(--fNunito);
    font-weight: var(--fw700);
    margin-top: 40px;
    padding: 0 60px;
    line-height: 25px;
  }
  .welcome .cnt-sec {
    padding: 0 30px;
  }
  .welcome .cnt-sec h5 {
    line-height: 25px;
    margin-top: 30px;
  }
  .co-founder {
    background-color: rgba(156, 198, 255, 0.3);
  }
  .co-founder .title-sec {
    text-align: center;
    margin: 0 auto;
  }
  .co-founder h2 {
    max-width: 300px;
  }
  .co-founder .Mobile-sec .img-sec {
    position: absolute;
    top: 0;
    right: 0;
  }
  .co-founder .founder-cnt {
    padding: 0 30px;
  }
  .line-corve-img {
    bottom: -70px;
    right: 0;
    z-index: -1;
  }
  .subscription {
    background-color: #f5f5f5;
    padding-bottom: 0;
  }
  .subscription-slider .swiper-wrapper {
    padding-left: 0px; 
  }
  .meet-slider .swiper-button-prev,
  .meet-slider .swiper-button-next,
  .subscription-slider .swiper-button-prev,
  .subscription-slider .swiper-button-next,
  .testimonial-sec .swiper-button-prev,
  .testimonial-sec .swiper-button-next {
    display: none;
  }
  .subscription-slider {
    margin-left: 0;
    padding-bottom: 20px;
  }
  .subscription-slider .slide {
    padding: 10px;
  }
  .subscription-slider .slide h3 {
    font-family: var(--fMeriifweather);
    font-size: var(--fs18);
    font-weight: var(--fw700);
    margin-top: 30px;
    text-align: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .portfolio-cover h3 {
    font-size: var(--fs16);
    padding: 0 30px;
    line-height: 25px;
  }
  .superpower-sec {
    margin-top: 30px;
  }
  .superpower-sec h2 {
    text-shadow: none;
    font-size: var(--fs26);
  }
  .superpower-sec .shrink-card {
    border-radius: 0;
    box-shadow: none;
  }
  .about-sec .cnt-sec h3 {
    line-height: 25px;
  }
  .more-cnt {
    margin-top: 30px;
    text-align: center;
    padding: 0 30px;
  }
  .more-cnt p {
    font-family: var(--fNunito);
    font-size: var(--fs16);
    font-weight: var(--fw700);
    line-height: 25px;
  }
  .more-cnt p:nth-child(2) {
    margin-top: 50px;
  }
  .subscription-slider .slide .img-sec {
    background-color: #fff;
  }
  .fun-challenge-sec .impact-sec {
    width: 100%;
    background-size: 100%;
  }
  .about-sec .cnt-sec {
    margin-top: 50px;
    padding: 0 20px;
  }
  .about-sec .section-bg {
    background-color: rgba(170, 232, 195, 0.6);
  }
  .about-sec .line-corve-img {
    display: none;
  }
  .about-sec .container {
    padding: 0;
  }
  .alongside-sec {
    margin-top: 40px;
    padding-bottom: 40px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .fun-challenge-sec h3 {
    line-height: 25px;
  }
  .fun-challenge-sec .wave-sec {
    margin-top: 50px;
  }
  .about-sec .section-bg,
  .fun-challenge-sec .section-bg {
    padding-bottom: 0px;
  }
  .superpower-sec .shrink-sec .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .superpower-sec .shrink-sec .col-lg-4:nth-child(1),
  .superpower-sec .shrink-sec .col-lg-4:nth-child(3),
  .superpower-sec .shrink-sec .col-lg-4:nth-child(5) {
    margin-top: -30px;
  }
  .subscription-slider .subscription-slides.swiper {
    padding-left: 0px;
  }
  .Mobile-sec .section-header {
    margin-top: 0px;
  }
  .Mobile-sec .img-sec {
    display: inline-block;
  }
  .star-sec {
    display: none;
  }
  .header {
    background-image: url(../img/mobile-hero-img.png);
  }
  .testimonial-sec {
    position: relative;
  }
  .testimonial-sec:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 540px;
    background-color: #f5f5f5;
  }
  .testimonial-sec,
  .testimonial-sec .testimonial.swiper {
    margin-left: 0;
  }
  .testimonial-sec .swiper-wrapper {
    padding-left: 0px;
  }
  .buddy-up-sec .col-lg-5 {
    order: 1;
  }
  .buddy-up-sec .col-lg-7 {
    order: 2;
  }
  .buddy-up-sec:after {
    top: auto;
    bottom: 0;
  }
  .buddy-up-sec .left-sec h3 {
    line-height: 35px;
    padding: 20px;
    text-align: center;
  }
  .card-box {
    padding: 0 30px;
  }
  .ready-box {
    padding: 30px;
  }
  .testimonial-sec .swiper-pagination3 {
    margin-top: 65px;
  }
  .subscription-portfolio-sec .img-sec.arrow-up {
    top: 56%;
  }
  .ready-box h3 {
    font-size: 24px;
  }
  .ready-box .img-sec .col-lg-6 {
    width: 50%;
  }
}

@media (max-width: 500px) {
  .subscription-portfolio-sec .img-sec.arrow-up {
    top: 61%;
  }
  .alongside-sec li span:after {
    top: 10px;
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 400px) {
  .subscription-portfolio-sec .img-sec.arrow-up {
    top: 63%;
  }
}