/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --primary-font: "Playfair Display", serif;
  --secondary-font: "Quattrocento", serif;
}

/* color */
:root {
  --background-color: #FAF3DD;
  --default-color: #3d4348;
  --heading-color: #333;
  --accent-color: #FFB800;
  --contrast-color: #ffffff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.light-background {
  --background-color: #ffff;
}

:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  width: 250px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}




.hero-btn{
  transition: transform 150ms ease-in-out, filter 150ms ease-in-out;
}

.hero-btn:hover{
  transform: scale(1.1)!important;
    filter: brightness(120%);

}

.btn-btn-fill,
.btn-btn-fill:focus {
  color: #000;
  background: var(--accent-color);
  border: 2px solid #FFB800;
  font-size: 18px;
  padding: 7px 14px;
  border-radius: 40px;
  transition: 0.3s;
  font-family: "Familjen Grotesk", sans-serif;
  display: inline-flex;
  justify-content: center;
    align-items: baseline;
}
.btn-btn-outline {
  color: #FFB800!important;
  background: transparent;
  border: 2px solid #FFB800;
  font-size: 20px;
  padding: 7px 14px;
  border-radius: 40px;
  transition: 0.3s;
  font-family: var(--default-font)
}

.navmenu a:hover{
   color: #FFB800;
}
@media (max-width: 1200px) {
  .exit-attempt-popup{
    padding: 0!important;
  }
  .header .logo {
    order: 1;
  }

  .header .btn-btn-fill {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
  ------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
  ------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}


/*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
.footer {
  color: #000;
  background: #fff;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}
.footer .footer-top {
  padding-top: 90px;
}
.footer-main-content p{
font-size: 16px;
font-weight: 400;
}
.footer-inner-content p{
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  font-size: 12px;
}
.footer-inner-content a{
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.footer-newsletter{
  background-color: #C3613A;
  padding: 15px;
  position: relative;
}
.footer-newsletter input{
height: 52px;
}
.footer-links .footer-newsletter h4{
  font-family: var(--secondary-font);
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
#button-addon1{
  margin: 0 -36px;
  font-size: 14px;
}
#button-addon1:hover {
  font-size: 16px;
  filter: brightness(120%);
}
.footer-links .footer-newsletter p{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.footer-newsletter h4::before {
  content: '';
  position: absolute;
  top: 30%;
  height: 5px;
  width: 37px;
  background: #fff;
  left: 17px;
  margin: 10px 0;
}
.bottom-content{
  font-size: 10px;
}
.footer-newsletter .footer-disc p{
 font-size: 12px!important;
 margin: 0;
 padding: 12px 0;
}
.newsletter-wheel{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.footer h4 {
  font-family: var(--secondary-font);
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 12px;
  color: #000;
}

.footer .footer-links {
  position: relative;
  margin-bottom: 30px;
}
.footer-quick-links{
  position: relative;
}
.footer-quick-links::before {
  content: '';
  position: absolute;
  top: 95%;
  height: 5px;
  width: 37px;
  background: #000;
  left: 0;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 15px;
}
.footer .footer-links ul a:hover {
  color: #FFB800;
  transform: scale(0.9);
}


.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  position: relative;
  background-color: #E57D53;
  padding: 12px 0;
}

.footer .copyright::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}
.footer .copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #preloader {
    animation: animate-preloader 2s infinite alternate ease-in-out;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: scale(0.8);
    }
    100% {
      transform: scale(1);
    }
  }
  





/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos] {
    transform: none!important;
   /* display: none!important; */
  }
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
  .hero-section, .banefits-banner,.blog-hero-section,.blog-details {
    padding: 120px 0!important;
}

}


.blog-details{
  background-color: #F3DDC7;
  padding: 194px 0;
}

.head-title p{
font-size: 18px;
font-weight: 500;
color: #000;
}
.head-title span{
  font-size: 18px;
  color: #000;
}
.head-title img{
  filter: invert(1);
}
.top-15{
  top:15%;
}
.author-content p{
  font-size: 18px;
  color: #000;
}
.recent-content h6{
   color: #fff;
   font-size: 18px;
   line-height: normal;
}
.recent-content p span{
  color: #fff;
  font-size: 12px;
}
.blog-section-inbox {
  background: linear-gradient(90deg, #C3613A, #EA855E);
  color: #fff;
}
.blog-section-inbox h3{
  color: #fff;
  font-size: 28px;
}
.blog-section-inbox p{
  font-size: 18px;
}
.table-content-box{
  background-color: #C3613A;
  color: #fff;
}
.table-of-content-text p{
  font-size: 18px;
  color: #000;
}
.table-of-content-text h3{
  font-size: 32px;
  font-weight: 500;
  color: #000;
}
.table-content-box h6{
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}
.blog-hero-section{
  background: url(../img/bg-blog-pattern.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 194px 0;
}
.blog-hero-section .blog-hero-content h1,
.blog-details .blog-hero-content h1 {
  font-family: var(--secondary-font);
  line-height: normal;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.blog-hero-section .blog-hero-content p,
.blog-details .blog-hero-content p {
  font-family: var(--default-font);
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.trending-featured-section h1{
  font-family: var(--secondary-font);
  line-height: normal;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.trending-featured-section .trending-content-box{
  background: #C3613A;
  color: #fff;
  min-height: 237px;
}
.trending-featured-section .trending-content-box p{
 font-size: 16px;
}
.trending-featured-section .trending-content-box h6{
  font-size: 24px;
  font-weight: 600;
  color: #fff;
 }
 .section-browse-topic h1{
   font-family: var(--secondary-font);
   font-size: 32px;
   font-weight: bold;
   color: #000;
 }
 .section-browse-topic .swiper-button-prev, .swiper-rtl .swiper-button-next {
  top: 0;
  right: 0 !important;
}
.section-browse-topic .swiper-button-prev,.section-browse-topic .swiper-button-next {
  position: relative;
  color: #000000;
}
.blog-topic-inner-content p{
   color: #fff;
   font-size: 22px;
   font-weight: 600;
   text-align: center;
}

.counter-section{
  background: url(../img/counter-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 326px 0 100px;
}
.counter-section h4{
  font-size: 28px;
  font-weight: 600;
  color: #000;
}
.counter-section .counter-step h6{
  font-family: var(--secondary-font);
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.counter-section .counter-step p{
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.hero-section {
  background: url(../img/hero-banner-img.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 194px 0;
}

.hero-section .banner-content h1 {
  font-family: var(--secondary-font);
  line-height: normal;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.hero-section .banner-content h1 span {
  font-family: var(--primary-font);
  color: #C3613A;
  font-style: italic;
  font-weight: 600;
}

.hero-section .banner-content h6 {
  font-family: var(--default-font);
  font-size: 22px;
  color: #000;
  font-weight: bold;
}

.hero-section .banner-content p {
  font-family: var(--default-font);
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.hero-section .banner-content button {
  font-size: 24px;
}



.listing-star ul li {
  color: #FFB800;
}

.rating-store p {
  font-size: 12px;
  color: #000;
  font-family: 'inter', sans-serif;
  font-weight: 400;
}


.banefits-banner {
  background: url(../img/banefits-banner.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 194px 0 0;
}

.benefits-card {
  position: absolute;
  color: #fff;
  padding: 27px;
  background-color: #C3613A;
  box-shadow: 0px 0px 35px -4px #0000003d;
  margin-top: -1%;
}

.benefits-card h6 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 4px
}

.banefits-banner .benefits-card h3 {
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 52px;
  font-weight: bold;
}

.banefits-banner .benefits-card h3 span {
  font-family: var(--primary-font);
  font-style: italic;
  font-weight: 600;
}

.banefits-banner .benefits-card p {
  font-size: 18px;
}

.banefits-banner .benefits-card ul li {
  font-size: 18px;
  font-weight: normal;
}

.banefits-banner .benefits-card .masking-beneifts h1 {
  font-size: 96px;
  color: #fff;
  font-family: var(--primary-font);
  font-weight: bold;
  opacity: 5%;
  position: absolute;
  transform: rotate(180);
  transform: rotate(-90deg);
  top: 38%;
  right: 73%;
}



.step-section-banner {
  background: url(../img/step-banner-img.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 0;
  overflow: visible;
  height: 1225px;
}

.step-card {
  background: #FAF3DD;
  /* height: 100vh; */
  padding: 0 55px 45px;
  transform: translateY(-35px);
}

.step-content {
  padding-top: 83px;
  text-align: center;
}

.step-content h1 {
  font-family: var(--secondary-font);
  font-size: 52px;
  font-weight: bold;
  color: #000;
}

.step-content span {
  font-family: var(--primary-font);
  font-style: italic;
  color: #C3613A;
}

.step-content p {
  font-size: 18px;
  color: #000;
}

.inner-step-card {
  text-align: center;
  background-color: #C3613A;
  padding: 12px;
  color: #fff;
}

.inner-step-card h3 {
  font-family: var(--primary-font);
  margin-bottom: 0;
  color: #fff;
  font-size: 28px;
}

.inner-step-card img {
  width: 120px;
}


.wheel-2 {
  bottom: -85px;
}

.wheel-3 {
  right: -85px;
  bottom: -85px;
}

.step-bottom-content p {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  color: #000;
}

.mt-12 {
  margin-top: 13%;
}

.mt-8 {
  margin-top: 5%;
}

.transfrom-banner {
  background: url(../img/banefits-banner.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 194px 0;
}

.transfrom-banner .transfrom-heading-content h1 {
  font-family: var(--secondary-font);
  font-size: 52px;
  font-weight: bold;
  color: #000;
}

.transfrom-banner .transfrom-heading-content span {
  font-family: var(--primary-font);
  font-weight: 600;
  font-style: italic;
  color: #C3613A;
}

.transfrom-bg {
  background-color: #C3613A;
  box-shadow: 0 0 15px 0 #00000034;
}

.transfrom-card {
  position: relative;
  z-index: 1;
}

.transfrom-card::after {
  content: '';
  background: url(../img/back-shape-svg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 100%;
  z-index: -1;
  /* Ensure it stays below */
  background-position: center top;
  transform: translate(-50%, -50%);
}


.transfrom-card .card-body h1 {
  font-size: 28px;
  font-family: var(--primary-font);
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 0px;
}

.transfrom-card .card-body p {
  font-size: 18px;
  font-family: var(--default-font);
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 18px 8px;
}

.transfrom-card .transfrom-counting {
  font-size: 36px;
  font-family: var(--primary-font);
  font-weight: 400;
  color: #fff;
  padding: 12px;
  line-height: normal;
}


.cat-service-section {
  background-color: #333333;
  padding: 100px 0;
  position: relative;
}

.cat-service-section::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  padding: 5px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}

.cat-service-section .cat-service-banner {
  background: url(../img/light-yellow-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 34px;
}

.cat-service-content h1 {
  font-size: 52px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #000;
  text-align: center;
}

.cat-service-content span {
  font-family: var(--primary-font);
  font-weight: 600;
  font-style: italic;
  color: #C3613A;
  text-align: center;
}

.cat-service-content p {
  font-family: var(--default-font);
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.cat-service-content .service-list-items li p {
  font-family: var(--default-font);
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: left;
}

.cat-service-content .service-list-items li span {
  color: #000;
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 800;
}

.cat-service-side-img {
  position: absolute;
  bottom: 0;
}

.cat-service-side-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
}

.swiper-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.swiper-slide {
  background-color: #C3613A;
  /* Light peach background */
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.inspire-section {
  background: url(../img/banefits-banner.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 114px 0;
}

.inspire-section::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  padding: 5px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}

.testimonial-section h2 {
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
  font-size: 52px;
}

.testimonial-section h2 span {
  font-family: var(--primary-font);
  font-style: italic;
  color: #C3613A;
  font-weight: normal;
}

.testimonial-top-heading {
  font-family: var(--default-font);
  font-size: 20px;
  color: #000;
}

.testimonial-text {
  font-family: var(--default-font);
  text-align: left;
  font-size: 16px;
  color: #fff;
}

.user-info .testomoinial-name-content h3 {
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.user-info .testomoinial-name-content span {
  font-family: var(--default-font);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff75;
}

.side-testomonial-content span {
  font-size: 18px;
  font-family: var(--default-font);
  color: #fff;
}

.side-testomonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
  font-family: var(--default-font);
  color: #ffffff75;
}

.testimonial-bg-patch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
}

.star-rating li {
  color: #FFB800;
}

.swiper-slide,
.swiper-slide {
  height: auto !important;
}

.energy-plan-section .plans-card .col-lg-5{
   width: 480px;
}
.energy-plan-section .plans-card .col-lg-3{
  width: 380px;
}


.energy-plan-section {
  background: url(../img/price-plan-pattern-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 114px 0;

}

.energy-plan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}

.energy-heading-content h1 {
  font-size: 52px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #000;
}

.energy-heading-content span {
  font-family: var(--primary-font);
  font-weight: 600;
  color: #C3613A;
  font-style: italic;
}

.energy-heading-content p {
  font-family: var(--default-font);
  font-weight: 400;
  color: #000;
  font-size: 18px;
  margin-bottom: 0;
}

.energy-plan-section .toggle-btn span {
  font-family: var(--default-font);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 20px;
  margin: 0 12px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F3F3F3;
  -webkit-transition: 0.4s;
  /* box-shadow: 2px 6px 25px #1e2321; */
  transform: translate(0px, 0px);
  transition: 0.6s ease transform, 0.6s box-shadow;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 2px;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #FFB800;
}



input:checked+.slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.whisker-recharge-card {
    background-image: url(../img/patch-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFFF;
  border: 2px solid #D3D3D3;
  padding: 20px 15px;
}

.price-content {
  font-family: var(--default-font);
}

.price-content h2 {
  font-size: 52px;
  color: #C3613A;
  font-weight: 600;
}

.price-content h2 sub {
  font-size: 20px;
  font-weight: 300;
  color: #C3613A;
}

.energy-price-button-1 {
  border-radius: 5px;
  font-family: "Familjen Grotesk", sans-serif;
  padding:6px 12px 10px 12px;
  background-color: #C3613A;
  margin: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy-price-button-1 a,.feline-recharge-btn a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: end;
  line-height: normal;
  gap: 3px;
}



.energy-price-button-1 span {
  font-size: 20px;
  color: #FFB800;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: normal;
}

.text-paying p {
  font-size: 13px;
  font-weight: 400;
}

.text-paying h6 {
  font-size: 20px;
  font-weight: 600;
}

.price-day-checked p {
  font-size: 20px;
  color: #000;
}

.text-paying span {
  font-size: 16px;
  font-weight: 600;
}

.feline-recharge-card p,
.whisker-recharge-card p {
  color: #343434;
  font-size: 16px;
}

.text-sesions {
  font-size: 20px;
  font-weight: 400;
}


.feline-recharge-card h1,
.whisker-recharge-card h1 {
  font-size: 28px;
  font-family: var(--default-font);
  font-weight: bold;
  color: #000;
}

.feline-recharge-card {
  background-image: url(../img/patch-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFEEE;
  border: 2px solid #D3D3D3;
  padding: 20px 15px;
}

.feline-recharge-content h2 {
  font-size: 52px;
  color: #7E2F10;
  font-weight: 600;
}

.feline-recharge-content sub {
  font-size: 20px;
  color: #7E2F10;
  font-weight: 400;
}

.feline-recharge-btn {
  border-radius: 5px;
  font-family: "Familjen Grotesk", sans-serif;
  padding:6px 12px 10px 12px;
  background-color: #7E2F10;
  margin: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feline-recharge-btn span {
  font-size: 20px;
  color: #FFB800;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: normal;
}

.purrgize-recharge-card {
  background-color: #C3613A;
  box-shadow: 0 0 18px 2px #0000002a;
  padding: 20px 15px;
}

.purrgize-recharge-card h1 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

.purrgize-recharge-card span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.purrgize-recharge-card p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.purrgize-recharge-card h6 {
  color: #FBA93B;
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.purrgize-price-content h2 {
  font-size: 52px;
  color: #fff;
}

.purrgize-price-content sub {
  font-size: 20px;
  color: #fff;
}

.purrgize-price-content p {
  font-size: 18px;
  color: #fff;
}


.purrgize-recharge-btn-1 {
  border-radius: 5px;
  font-family: "Familjen Grotesk", sans-serif;
  padding: 6px 12px;
  background-color: #FFB800;
  margin: 12px 18px;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.purrgize-recharge-btn-1 a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center; 
}

.purrgize-recharge-btn-2 {
  border-radius: 5px;
  font-family: "Familjen Grotesk", sans-serif;
  padding:6px 12px 10px 12px;
  background-color: #FFDF8B;
  margin: 12px 18px;
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.purrgize-recharge-btn-2 a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: end;
  line-height: normal;
  gap: 3px;
}

.purrgize-recharge-btn-2 span {
  font-size: 20px;
  color: #FFB800;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: normal;
}
.purrgize-recharge-card .text-paying p{
  font-size: 16px;
}
.purrgize-recharge-card .text-paying span{
  font-size: 16px;
  font-weight: 600;
}
.purrgize-recharge-card .text-paying h6{
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

.price-day-checked li{
  font-size: 20px;
}
.popular-tag {
  position: absolute;
  top: 30px;
  width: 350px;
}

.purrgize-content-start {
  padding-top: 60px;
}
.popular-badge{
  transform: translateY(-20px);
}

.diamond-section{
  background: #1F7696;
  padding: 13px;
}
.diamond-content h6{
  font-size: 18px;
  color: #FFB800;
  font-weight: bold;
}
.diamond-content h1{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.diamond-content p{
  font-size: 18px;
  color: #fff;

}
.diamond-content h2{
  font-size: 64px;
  color: #fff;
  font-weight: 500;
}
.diamond-content sub{
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.diamond-btn-2{
  border-radius: 5px;
  font-family: "Familjen Grotesk", sans-serif;
  padding: 6px 32px;
  background-color: #fff;
  margin: 12px 0;
  color: #000;
  display: inline-flex;
}
.diamond-btn-2 a{
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.diamond-content span{
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  opacity: 60%;
}

.list-item-diamond ul li{
  color: #fff;
}
.sold-out-img {
  width: 190px;
  position: absolute;
  right: -18px;
  top: -18px;
}
.diamond-img-left{
  position: absolute;
  top: 10%;
  left: 0;
}
.diamond-img-right{
  position: absolute;
  bottom: 0;
  right: 0;
}
.diamond-img-left , .diamond-img-right img{
  width: 220px;
}

.section-meet{
  background: url(../img/meet-david.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 23px;
}
.section-meet .meet-card-content{
  background:url(../img/meet-inner-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
}
.section-meet .meet-card-content h1{
   font-size: 52px;
   font-family: var(--secondary-font);
   font-weight: bold;
   color: #000;
}
.section-meet .meet-card-content h1 span{
  font-family: var(--primary-font);
  font-weight: 500;
  font-style: italic;
  color: #C3613A;
}
.section-meet .meet-card-content p{
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.section-meet .meet-card-content .highlight-items h6{
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.section-meet .meet-card-content .highlight-items p{
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}
.section-meet .meet-card-content .highlight-items span{
  font-family: var(--secondary-font);
  font-size: 40px;
  font-weight: bold;
}

.cat-potential-start{
  background: url(../img/potential-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 23px;
  position: relative;
}
.cat-potential-start .cat-potential-content h1{
    font-size: 52px;
    font-family: var(--secondary-font);
    font-weight: bold;
    color: #fff;
}

.cat-potential-start .cat-potential-content span{
  font-family: var(--primary-font);
  font-weight: 500;
  font-style: italic;
}

.cat-potential-start .cat-potential-content p{
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
.cat-potential-start .cat-potential-inner-content p{
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}
.cat-potential-start::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}


.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}


.faq-section{
  background: url(../img/meet-inner-banner.jpg);
  background-position: center;
  background-size: cover;
  padding: 75px 0 45px;
  position: relative;
}

.faq-section h1{
  font-size: 42px;
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #000;
}
.faq-section span{
  font-family: var(--primary-font);
  font-weight: 600;
  font-style: italic;
  color: #C3613A;
}
.faq-section p{
  font-size: 18px;
  color: #000;
}
.faq-inner-content p{
  font-family: "Familjen Grotesk", sans-serif;
  font-size:18px;
} 

.faq-tab-section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: #C3613A;
  color: #fff;
}
.faq-tab-section .nav-link{
  color: #000;
  font-weight: 600;
}
.faq-tab-section .accordion-header button{
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.accordion-body p{
  font-size: 16px;
  color: #2B2B2B;
}

.accordion .accordion-button{
  background: none;
  box-shadow: none;
}
.faq-tab-section .accordion-item {
  border-color: #C3613A;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.faq-tab-section .accordion {
box-shadow: 0 0 6px 0 #0000003e;
}


.section-wellbeing{
  background: url(../img/wellbeing-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 75px 0 45px;
  position: relative;
}
.section-wellbeing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: #FAF3DD;
  border: solid #C3613A;
  border-width: 2px 0 2px 0;
}
.section-wellbeing .wellbeing-content h2{
  font-family: var(--secondary-font);
  font-size: 52px;
  color: #fff;
  font-weight: bold;
}
.section-wellbeing .wellbeing-content h2 span{
  font-style: italic;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #fff;
}
.section-wellbeing .wellbeing-content p{
 font-size: 18px;
 font-weight: 400;
 color: #fff;
}
.section-wellbeing .wellbeing-content .wellbeing-inner-content p{
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
 }
 .section-wellbeing .wellbeing-card{
  background: url(../img/wellbeing-shape.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 10px;
 }


 .section-wellbeing .wellbeing-content .wellbeing-inner-content .wellbeing-title span{
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: #FFEEBA;
  padding: 8px;
  color: #000;
 }
 .section-wellbeing .wellbeing-content h3{
   font-size: 20px;
   font-weight: 600;
   color: #000;
 }
 .section-wellbeing .wellbeing-card .wellbeing-content p{
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.section-wellbeing .wellbeing-card .wellbeing-content a{
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.section-wellbeing .swiper-button-next,.section-wellbeing .swiper-button-prev{
  position: relative;
  color: #FAF3DD;
  font-size: 22px;
  /* Matching arrow color */
}

.swiper-pagination-bullet{
  width: 12px!important;
  height: 12px!important;
  background: #838077!important;
}
 .swiper-pagination-bullet-active {
  background: #FAF3DD !important;
}

.wellbeing-content {
  overflow: hidden; 
}

.wellbeing-content img {
  transition: transform 0.4s ease-in-out;
}

.wellbeing-card:hover .wellbeing-content img {
  transform: scale(1.1); 
}

.discover-more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease-in-out;
}

.discover-more i {
  margin-left: 5px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover effect for button */
.wellbeing-card:hover .discover-more {
  color: #FFB800; /* Change color on hover */
}

.wellbeing-card:hover .discover-more i {
  transform: translateX(5px); /* Move arrow slightly */
  color: #FFB800;
}

.section-wellbeing .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: 0;
  right: 0!important;
}
/* Swiper Buttons */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 0;
  color: #d86643;
  /* Matching arrow color */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 40px ;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 40px ;
}


.hero-section .banner-content h1,
.blog-hero-section .blog-hero-content h1,
.blog-details .blog-hero-content h1{
  font-size: 52px;
}


.form-control {
  height: 40px;
  background-color: #F5F6F7;
  border: 1px solid #E2E5E7;
  padding-left: 16px;
  font-size: 14px;
}

.form-control:focus {
  background-color: #F5F6F7;
  border: 1px solid #E2E5E7;
  box-shadow: none;
}


.form-content span {
  font-size: 12px;
  color: #62696A;
}

.form-control::placeholder {
  color: #909293;
}


.card {
  border: 1px solid #EAECF0;
  box-shadow: 0 5px 12px -4px #10182817;
  border-radius: 16px;
}

hr {
  height: 45px;
}
.login-section{
  padding: 90px 0;
}
.contact-section{
  padding: 120px 0;
}
.login-section h2{
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 28.8px;
}
.login-section p{
  font-size: 12px;
  color: #fff;
  opacity: 60%;
}
.login-section a{
  font-size: 12px;
  color: #FFDB80;
}

.contact-section .form-content h2{
  font-family: var(--secondary-font);
font-size: 52px;
color: #000;
font-weight: bold;
}
.contact-section .form-content span{
  font-family: var(--primary-font);
   font-style: italic;
   font-size: 64px;
   color: #000;
   font-weight: 600;
}

.contact-section .form-content p{
   font-size: 18px;
   color: #000;
   font-weight: 400;
}
.contact-section .input-control  {
  background-color: #E7DBB7;
  border: 0;
  border-radius: 32px;
}
.contact-section .input-control::placeholder {
 font-size: 14px;
 color: #000;
 opacity: 40%;
}
.contact-section .contact-social-items h6{
font-size: 16px;
color: #000;
font-weight: 600;
}
.contact-section .contact-social-items li a{
  text-decoration: underline;
  font-size: 20px;
  color: #C3613A;
  font-weight: 400;
  }

  .contact-section .contact-social-items li i{
    color: #000;
    font-size: 24px;
    }
  

    .contact-section .contact-social-items .usefull-links i{
      color: #C3613A;
      transform: rotate(-50deg);
      }

      .exit-attempt-popup .pop-up-content{
     background-color:#C3613A;
     padding: 12px;
     }

.exit-attempt-popup .pop-up-content h1{
   font-size: 38px;
   font-weight: bold;
   color: #fff;
}
.exit-attempt-popup .pop-up-content p{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.exit-attempt-popup{
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  width: 100%;
  z-index: 9999;
  padding: 150px
}


body.modal-open {
  overflow: auto;
}
.exit-attempt-popup.show {
  opacity: 1;
  visibility: visible;
  backdrop-filter: brightness(0.5);
  /* zoom: 0.70; */
  z-index: 999999;
}

.close-icon{
  width: 32px;
}
.exit-attempt-popup.hide {
  opacity: 0;
  visibility: hidden;
}


.exit-attempt-popup .pop-up-content h6{
  font-size: 12px;
  color: #fff;
}
.exit-attempt-popup .pop-up-content .quick-form p{
  font-size: 10px;
  opacity: 60%;
}

.form-label{
  font-size: 14px;
}

.thank-you-content h3{
  font-size: 20px;
  color: #000;
  font-weight: 400;

}

.login-form{
  background-color: #C3613A;
}
.trial-left-logo h2{
  font-family: var(--secondary-font);
  font-size: 28.8px;
  color: #fff;
  font-weight: 400;
}
.trial-left-logo p{
  font-size: 12px;
  color: #fff;
  opacity: 60%;
}
.trial-testimonial-card{
  background-color: #9C4E2E;
  padding: 15px;
}
.trial-testimonial-card h6{
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.trial-testimonial-card p{
  font-size: 16px;
  color: #fff;
  opacity: 80%;
}

.trial-left-side{
  padding: 42px;
  background-color: #C3613A;
  height: 100dvh;
}
.trial-left-side-content h2{
  font-family: var(--secondary-font);
  color: #fff;
  font-weight: bold;
  font-size: 48px;
}
.trial-left-side-content p{
  color: #fff;
  opacity: 80%;
  font-weight: 400;
  font-size: 20px;
}
.trial-right-head-content h3{
 font-size: 36px;
 color: #000;
 font-weight: 500;
}
.trial-right-head-content p{
  font-size: 12px;
  color: #000;
  font-weight: 400;
 }
 .trial-form label{
  font-size: 12px;
  color: #999999;
 }
 .trial-form .form-check-label{
  font-size: 14px;
  color: #000;
 }
 .trial-form .form-bottom p{
  font-size: 12px;
  color: #838383;
 }
 .trial-form input, 
.trial-form select {
  border: 1px solid #938985;
}
.disabled { pointer-events: none; opacity: 0.6; }
        .hidden { display: none; }

.summary-header{
  font-size: 28px;
  color: #000;
}
.summary-box #step1 p{
  font-size: 12px;
  color: #838383;
}
.summary-box input,
.summary-box select{
  border: 1px solid #938985;
}
.summary-box #Card_Info{
  padding-right: 140px;
}
.summary-box .edit-btn{
  font-size: 16px;
  color: #000;
  float: inline-end;
  cursor: pointer;
}
.order-summary{
  background: #C3613A;
}
.order-summary h3{
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}
.order-summary h6{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.order-summary p{
  color: #fff;
  font-size: 16px;
  opacity: 80%;
}
.order-payment p{
  color: #fff;
  font-size: 20px;
  opacity: 100%;
}
.payment-tab{
  border: 1px solid #938985;
}
.payment-tab .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #FFE067;
  color: #000;
  border-radius: 32px;
}
.payment-tab .nav-link{
  color: #000;
}
.recent-content p, .recent-content span {
  font-size: 12px!important;
  color: #fff;
}


.policies-section{
  padding: 100px 0;
  font-family: "Inter", serif;
}
.policies-section .policies-content h1{
  font-family: "Inter", serif;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}
.policies-section .policies-content h4{
  font-family: "Inter", serif;
  font-size: 28px;
  font-weight: bold;
  color: #000;
}
.policies-section .policies-content p{
  font-size: 16px;
  color: #000;
}
.policies-section .policies-content h6{
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.policies-section .policies-content li{
  font-size: 16px;
  color: #000;
  font-weight: normal;
}
.policies-section .policies-content i{
  font-size: 5px;
  color: #000;
}



/* bootstrap changes */


@media (min-width:1900px){
  
  .blog-hero-section{
    padding: 260px 0;
  }
  .transfrom-card .card-body h1 {
    font-size: 36px;
}
.hero-section .banner-content h1,
.blog-hero-section .blog-hero-content h1 {
    font-size: 64px;
}
.hero-section .banner-content h6 {
  font-size: 26px;
}
.hero-section .banner-content p,
.blog-hero-section .blog-hero-content p {
  font-size: 20px;
}
.btn-btn-fill, .btn-btn-fill:focus {
  font-size: 18px;
}
.banefits-banner .benefits-card h3 {
  font-size: 64px;
}
.banefits-banner .benefits-card p {
  font-size: 20px;
}
.banefits-banner .benefits-card ul li {
  font-size: 20px;
}
.step-content h1 {
  font-size: 64px;
}
.step-content p {
  font-size: 20px;
}
.inner-step-card h3 {
  font-size: 36px;
}
.transfrom-banner .transfrom-heading-content h1 {
  font-size: 64px;
}
.cat-service-content h1 {
  font-size: 64px;
}
.cat-service-content p {
  font-size: 20px;
}
.cat-service-content .service-list-items li p {
  font-size: 20px;
}
.testimonial-section h2 {
  font-size: 64px;
}
.user-info .testomoinial-name-content h3 {
  font-size: 20px;
}
.user-info .testomoinial-name-content span {
  font-size: 16px;
}
.side-testomonial-content span {
  font-size: 20px;
}
.side-testomonial-content p {
  font-size: 16px;
}
.energy-heading-content h1 {
  font-size: 64px;
}
.energy-heading-content p {
  font-size: 20px;
}

.purrgize-recharge-card h1 {
  font-size: 36px;
}
.feline-recharge-card p, .whisker-recharge-card p {
  font-size: 18px;
}
.purrgize-recharge-card p {
  font-size: 18px;
}
.section-meet .meet-card-content h1 {
  font-size: 64px;
}
.section-meet .meet-card-content p {
  font-size: 20px;
}
.section-meet .meet-card-content .highlight-items h6 {
  font-size: 20px;
}
.cat-potential-start .cat-potential-content h1 {
  font-size: 64px;
}
.cat-potential-start .cat-potential-content p {
  font-size: 20px;
}
.faq-section h1 {
  font-size: 48px;
}
.faq-section p {
  font-size: 20px;
}
.faq-tab-section .accordion-header button {
  font-size: 24px;
}
.faq-inner-content p {
  font-size: 20px;
}
.section-wellbeing .wellbeing-content h2 {
  font-size: 64px;
}
.section-wellbeing .wellbeing-content p {
  font-size: 20px;
}
.section-wellbeing .wellbeing-content .wellbeing-inner-content p {
  font-size: 20px;
}
.footer-links .footer-newsletter h4 {
  font-size: 40px;
}
.footer-newsletter h4::before {
  top: 35%;
}
.contact-section .form-content h2 {
  font-size: 64px;
}
.contact-section .form-content p {
  font-size: 20px;
}
.summary-header{
  font-size: 32px;
  color: #000;
}
}

@media (min-width: 1400px) {
  .transfrom-card {
    width: 380px;
    transform: translateX(-42px)!important;
}
  
  .transfrom-card::after {
    width: 480px;

  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}



/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    display: flex;
    align-items: center;
  }
  
  .navmenu li {
    display: flex;
    align-items: center;
  }
  
  .navmenu li:not(:first-child)::before {
    content: "|"; 
    color: #C3613A; 
    padding: 0 10px; 
    font-size: 16px;
    font-weight: normal;
  }
  
  .navmenu a {
    position: relative;
    color: black; 
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px; 
    width: 0;
    height: 2px; 
    background-color: #c3613a; 
    transition: width 0.3s ease, left 0.3s ease; 
  }
  
  .navmenu a:hover {
    color: #c3613a !important; 
    transform: scale(1.03); 
  }
  
  .navmenu a:hover::after {
    width: 100%; 
    left: 0; 
  }
  
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }


  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 0px;
    font-size: 14px;
    font-family: "Familjen Grotesk", sans-serif;
    /* font-family: var(--default-font); */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
  }


}

@media (max-width: 1500px) {
  .trial-left-side{
    height: 100%;
  }
  .scroll-modal-content{
    height: 580px;
      overflow-y: auto;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {

  #navmenu {
    position: absolute;
    top: -20px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    height: 0; /* Hidden initially */
    overflow: hidden;
    background: white;
    text-align: center;
    z-index: -1;
    transition: height 0.7s ease-out; /* Smooth animation */
}

/* When menu is open */
#navmenu.open {
    height: 100vh; /* Expand smoothly */
}

  .trial-left-side-content h2 {
    font-size: 22px;
}

  .trial-right-side{
    padding: 42px;
  }
  .navmenu li a::after {
    display: none;
 }
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }


    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 88px 0px 0px 0px;
      padding: 10px 0;
      margin: 0;
      background-color: #fff;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      border-top: 1px solid #dddd;
      border-radius: 0;
  }


  .navmenu a,
  .navmenu a:focus {
    color: #313336;
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    flex-wrap: wrap;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #010101;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    margin-right: 10px;
    z-index: 9999;
}

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  

 
}


@media(max-width: 991px){
  .order-summary h3 {
    font-size: 28px;
}
  .exit-attempt-popup.show {
    zoom: normal;
  }
 
  .exit-attempt-popup .pop-up-content h1 {
    font-size: 24px;
}
.exit-attempt-popup .pop-up-content p {
  font-size: 16px;
}
  
  .benefits-card {
    position: relative;
  }   
  .step-section-banner{
    padding: 60px 0;
    height: 100%;
  }
  .transfrom-banner{
    padding: 60px 0;
  }
  .transfrom-banner .transfrom-heading-content h1 {
    font-size: 32px;
}
.transfrom-banner .mt-8{
  margin-top: 0;
}
.transfrom-card .card-body h1{
  font-size: 18px;
}
.transfrom-card .card-body p{
  font-size: 16px;
}
.cat-service-content h1 {
  font-size: 32px;
}
.cat-service-content p {
    font-size: 16px;
}
.cat-service-content .service-list-items li p {
  font-size: 16px;
  line-height: normal;
}
.cat-service-content .service-list-items li {
  margin: 5px 0;
}
.inspire-section{
   padding: 60px 0;
}

.testimonial-section h2 {
    font-size: 32px;
}
.testimonial-section .testimonial-top-heading p {
  font-size: 16px;
}

.user-info .testomoinial-name-content h3 {
  font-size: 16px;
}
.user-info .testomoinial-name-content span {
  font-size: 14px;
}
.side-testomonial-content p {
  font-size: 14px;
}
.side-testomonial-content span {
  font-size: 16px;
}
.energy-plan-section{
    padding: 90px 0;
}
.energy-heading-content h1{
  font-size: 32px;
}
.energy-heading-content p {
  font-size: 16px;
}
.feline-recharge-card h1, .whisker-recharge-card h1 {
  font-size: 18px;
}

.feline-recharge-card p, .whisker-recharge-card p {
  font-size: 16px;
}
.price-content h2 {
  font-size: 40px;
}
.text-paying h6 {
  font-size: 18px;
}
.sold-out-img {
  position: absolute;
  right: -3px;
  top: -6px;
  width: 80px;
}
.footer-newsletter h4::before {
display: none;
 
}
}


@media (max-width: 768px) {
  .summary-header {
    font-size: 18px;
}
.summary-text{
  font-size: 14px;
}
  .trial-left-logo  img{
    width: 42px;
  }
  .trial-left-logo h2 {
    font-size: 14px;
}
  .trial-left-side-content p {
    color: #fff;
    opacity: 80%;
    font-weight: 400;
    font-size: 14px;
}
  .form-control {
    height: 40px;
    font-size: 14px;
}
  .contact-section .form-content h2{
    font-size: 32px;
}
.contact-section .form-content span{
  font-size: 32px;
}
 
  .testimonial-bg-patch {
    width: 95%;
  }
  .step-content h1{
    font-size: 32px;
  }
  .step-content p {
    font-size: 16px;
}
.inner-step-card h3 {
  font-size: 18px;
}
.step-card {
  padding: 0 40px 40px;
}
.step-content {
  padding-top: 18px;
}
.btn-btn-fill, .btn-btn-fill:focus{
  font-size: 14px;
}
  .hero-section .banner-content h1,
  .blog-hero-section .blog-hero-content h1  {
    font-size: 32px;
}
.hero-section .banner-content h1 br{
display: none;
}
.hero-section .banner-content h6 {
  font-size: 18px;
}
.hero-section .banner-content p,
.blog-hero-section .blog-hero-content p {
  font-size: 16px;
}
.hero-section .banner-content button {
  font-size: 18px;
}
.banefits-banner .benefits-card h3{
  font-size: 32px;
}
.purrgize-recharge-card h1 {
  font-size: 24px;
}
.purrgize-recharge-card p {
  font-size: 16px;
}

.purrgize-recharge-card h6 {
  font-size: 16px;
}
.purrgize-price-content h2 {
  font-size: 32px;
}
.feline-recharge-content h2 {
  font-size: 32px;
}
.diamond-content h1 {
  font-size: 16px;
}
.diamond-content p {
  font-size: 16px;
}
.diamond-content h2 {
  font-size: 32px;
}
.diamond-btn-2 a {
  font-size: 16px;
}
.section-meet{
  padding: 0;
}
.section-meet .meet-card-content h1 {
  font-size: 32px;
}
.section-meet .meet-card-content p {
  font-size: 16px;
}
.section-meet .meet-card-content .highlight-items h6 {
  font-size: 16px;
}
.section-meet .meet-card-content .highlight-items p {
    font-size: 16px;
}
.section-meet .meet-card-content .highlight-items span {
  font-size: 28px;
}
.cat-potential-start .cat-potential-content h1 {
  font-size: 32px;
}
.cat-potential-start .cat-potential-content p {
  font-size: 16px;
}
.faq-section h1 {
  font-size: 32px;
}
.faq-section p {
  font-size: 16px;
}
.faq-tab-section .accordion-header button {
  font-size: 16px;
}
.section-wellbeing .wellbeing-content h2 {
  font-size: 32px;
}
.section-wellbeing .wellbeing-content p {
  font-size: 16px;
}
.section-wellbeing .wellbeing-content .wellbeing-inner-content p {
  font-size: 16px;
}
.section-wellbeing .wellbeing-content h3 {
  font-size: 16px;
}
.section-wellbeing .wellbeing-card .wellbeing-content a {
  font-size: 14px;
}
.footer .footer-top {
  padding-top: 45px;
}
.footer-links .footer-newsletter h4 {
  font-size: 22px;
  margin-bottom: 0;
}
.footer-links .footer-newsletter p {
  font-size: 16px;
}

.counter-section{
  padding: 22px;
}
.blog-hero-section ,.counter-section{
  background-size: auto;
  background-position: center;
}

.policies-section .policies-content h1 {
  font-size: 24px;
}
.policies-section .policies-content h4 {
  font-size: 18px;
}
.policies-section .policies-content li,.policies-section .policies-content p
 {
  font-size: 14px;
}
.policies-section .policies-content h6 {
  font-size: 16px;
}

.policies-section .policies-content a {
  font-size: 12px;
}


}

@media (max-width:480px){
  .recent-content p, .recent-content span {
    font-size: 10px !important;
    color: #fff;
}
  .close-icon{
    width: 22px;
  }

  .policies-section ol,
  .policies-section ol > li > ul,
  .policies-section ol > li > ul > li >ul,
  .policies-section ol > li > ul > li >ul li> ul
  {
    padding-left: 16px;
  }
 
  .counter-section{
    background: #f3dcc6;
  }
  .counter-section h4 {
    font-size: 18px;
}
 
  .blog-topic-inner-content p {
    font-size: 16px;
}
  section, .section {
    padding: 22px 0;
}
 
  .table-content-box h6,.table-of-content-text h3,.trending-featured-section h1 {
    font-size: 22px;
}
.blog-section-inbox h3,.trending-featured-section .trending-content-box h6  {
  font-size: 18px;
}
.blog-section-inbox p {
  font-size: 14px;
}
.section-browse-topic h1 {
  font-size: 22px;
}
  .head-title img {
    width: 28px;
}
.blog-details .blog-hero-content .small-text{
  font-size: 10px;
}
  .trial-right-head-content h3 {
    font-size: 22px;
}
  .trial-left-side ,.trial-right-side {
    padding: 22px;
}
  .thank-you-content h3 {
    font-size: 15px;
   
}

.login-section{
  padding: 22px 0;
}
.trial-testimonial-card h6 {
  font-size: 16px;
}
.trial-testimonial-card p {
  font-size: 14px;
}
.contact-section .contact-social-items li a {
  font-size: 14px;
}
.contact-section .contact-social-items li i {
  font-size: 16px;
}
  .header{
    background-color: #fff;
  }
  .header .logo img {
    width: 75%;
}
.header .logo h1 {
  font-size: 24px;
}
  
  .footer-inner-content a {
    font-size: 12px;
}
  .btn-btn-fill, .btn-btn-fill:focus{
    display: inline-block;
  }
  .purrgize-recharge-btn-2 a {
    font-size: 16px;
}
.popular-tag {
  top: 17px;
  width: 180px;
}
  .hero-section .banner-content button {
    font-size: 12px;
  } 
  .hero-section .banner-content h1,
  .blog-hero-section .blog-hero-content h1,
  .blog-details .blog-hero-content h1 {
    font-size: 44px;
}
.blog-hero-section .blog-hero-content h1 br{
    display: none;
}
.banefits-banner .benefits-card ul li {
  font-size: 16px;
  font-weight: normal;
}
.banefits-banner .benefits-card .benefits-card-icons img{
width: 30px;
}
.banefits-banner .benefits-card p ,
.blog-hero-section .blog-hero-content p{
  font-size: 16px;
}


}

@media (min-width: 1024px) {
  .testimonial-bg-patch {
    width: 90%;
  }
}

@media (min-width: 1600px) {
  .testimonial-bg-patch {
    width: 70%;
  }
}


.commitment-text p{
  font-size: 13px;
  font-weight: 500;
}
