/**
NovelX MLM Website
--------------------------------------------------------------*/
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


:root {
  --default-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}


:root { 
  --background-color: #ffffff;
  --default-color: #444444; 
  --heading-color: #111111; 
  --accent-color: #76b900; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
  --button-color:#76b900;
}


:root {
  --nav-color: #212529;  
  --nav-hover-color: #e03a3c; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #e03a3c; 
}


.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
: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;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.form-control:focus, .form-select:focus{
  box-shadow: none !important;
}



/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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 {
  max-height: 70px;
  margin-right: 20px;
}
.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 20px 25px;
  font-weight: 600;
  line-height: 14px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: 0.3s;
  border-radius: 8px !important;
  border: none !important;
  background-color: #76b900 !important;
  color:#ffff !important;
  transition: 0.3s;
}

@media screen and (max-width:400px){
  .header .btn-getstarted, .header .btn-getstarted:focus {
    font-size: 11px !important;
    padding: 13px 18px !important;
  }
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 0 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .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: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    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: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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;
    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: var(--nav-dropdown-hover-color);
  }

  .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: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .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: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #000000  !important;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer-Thead{
 color:#FFF;
font-size: 32px !important;
font-weight: 700;
line-height: 38.73px;
letter-spacing: -0.30000001192092896px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.footer .contact-col .FC-head{
  font-family: "Inter", serif;
  color:#FFFFFF;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 33.89px;
  letter-spacing: -0.30000001192092896px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  
}

.footer .contact-col .FC-para{
  font-family: "Inter", serif;
  color:#FFFFFF;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 29.05px;
  letter-spacing: -0.30000001192092896px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
}

.footer .contact-wayss .CW-sm-head{
  font-family: "Inter", serif;
  color:#FFFFFF;
font-size: 20px;
font-weight: 700;
line-height: 24.2px;
letter-spacing: -0.30000001192092896px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
  
}

.footer .contact-wayss .CW-sm-value{
  font-family: "Inter", serif;
font-size: 14px;
font-weight: 700;
line-height: 16.94px;
letter-spacing: -0.30000001192092896px;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#C0C0C0; 
}

.footer .contact-wayss .CW-holder{
  margin-bottom: 50px;
}

.footer .contact-wayss .CW-sm-head{
  font-family: "Inter", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.2px;
  letter-spacing: -0.30000001192092896px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
   color:#FFFFFF;
}

.footer .contact-wayss .CW-sm-value{
  font-family: "Inter", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.94px;
  letter-spacing: -0.30000001192092896px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#C0C0C0;
}

.footer-form-container{
  min-width: 450px;
  max-width: 550px;
  background-color: #FFFFFF;
  border-radius: 8px;
  color:#ffff;
}

@media screen and (max-width:500px){
  .footer-form-container{
    min-width: auto !important;
  }
}

.footer-form-container{
  background-color: #FFFFFF;
  padding: 30px;
    border-radius: 8px;
}

 .footer-form-container .form-heading{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#ffff;
}

.footer-form-container .form-label{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#5C5F6E;
}

.footer-form-container .form-control,  .footer-form-container .form-select{
   height: 50px;
   background-color: #F4F5F6;
   border-radius: 8px !important;
}

 .footer-form-container .form-control:focus, .footer-form-container .form-select:focus{
   border-color: #76b900 !important;
}

 .footer-form-container .form-control::placeholder, .footer-form-container .form-select{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#838696;
}

 .footer-form-container .submit-btn,  .footer-form-container .submit-btn:hover,  .footer-form-container .submit-btn:active{
   height: 50px;
   width: 100%;
   background-color:#76b900 !important;
   border-color:#76b900 !important;
   font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
  margin-top: 20px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#ffff;
}







.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding:10px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  /* height: 750px;; */
  min-height: calc(100vh - 100px);
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero .hero-bg-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  /* background: color-mix(in srgb, var(--background-color), transparent 30%); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-family: "Inter", sans-serif;
font-size: 50px;
color:#FFFFFF;
font-weight: 700;
letter-spacing: -0.025em;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
margin-bottom: 15px;
}

.hero p {
  font-family: "Inter", sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 24px;
letter-spacing: 0.02em;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: #FFFFFF;
}


.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.hero .hero-form-container{
  /* min-width: 450px; */
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  color:#ffff;
}

.hero .hero-form-container .form-wrapper{
  padding:30px;
}

.hero .hero-form-container .form-heading{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #76b900!important;
}

.hero .hero-form-container .form-label{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#5C5F6E;
}

.hero .hero-form-container .form-control, .hero .hero-form-container .form-select{
   height: 50px;
   background-color: #F4F5F6;
   border-radius: 8px !important;
}

.hero .hero-form-container .form-control:focus, .hero .hero-form-container .form-select:focus{
   border-color: #76b900 !important;
}

.hero .hero-form-container .form-control::placeholder, .hero .hero-form-container .form-select{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#838696;
}

.hero .hero-form-container .submit-btn, .hero .hero-form-container .submit-btn:hover, .hero .hero-form-container .submit-btn:active{
   height: 50px;
   width: 100%;
   background-color:#76b900 !important;
   border-color:#76b900 !important;
   font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
  margin-top: 20px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#ffff;
}

.contact-ways {
  position: fixed;
  z-index: 123;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 1%;
  bottom: 10%;
}
.contact-ways .whatsapp-icon{
  height: 60px;
}
img.img-fluid.img-responsive.ASI-img{
  height: 50px;
}

.btn-whatsapp-pulse {
	background: #25d36629;
	color: white;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-phone-pulse {
	background: #e3e7e52d;
	color: white;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: call-pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes call-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(205, 214, 209, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(194, 204, 198, 0);
	}
}

.contact-ways .phone-icon{
  height: 55px;
}

.contact-ways .up-icon{
  height: 55px;
}


@media (max-width: 768px) {
 
.contact-ways {
  position: fixed;
  z-index: 123;
  display: flex;
  right: 1%;
  bottom: 10%;
  align-items: center;
  align-content: center;
}
}

/*--------------------------------------------------------------
# Achievement Section
--------------------------------------------------------------*/

#achievement-section{
  margin-top: 110px;
  margin-bottom: 10px;
}

@media screen and (max-width:768px)
{

#achievement-section {
  margin-top: 20px !important;
  margin-bottom: 0px !important;
  padding-bottom: 0px;
}
#achievement-section .ASI-img{
  height: 30px !important;
}
.achievement-wrapper .ASI-name {
  font-size: 10px !important;
  margin: 0px !important;
  margin-top: 0px;
}
.achievement-wrapper .ASI-value {
  font-size: 20px !important;
  padding-top: 0px !important;
}
}
.achievement-wrapper{
  background-color:#f3ffdd !important;
  padding: 10px 20%;
}

@media screen and (max-width:991px){
  .achievement-wrapper{
    padding: 10px 0px !important;
  }
}

.achievement-wrapper .ASI-name{
  font-family: "Inter", serif;
  font-size: 24px;
  color:#150035;
  font-weight: 600;
  line-height: 29.05px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
  margin:1px;
}

.achievement-wrapper .ASI-value{
  font-family: "Inter", serif;
font-size: 32px;
font-weight: 700;
line-height: 38.73px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#76b900;
padding-top:18px;
}


/*--------------------------------------------------------------
# Video Section
--------------------------------------------------------------*/

#video-section .video-wrapper{
  background-image: url('../img/video-bg.webp');
  min-height: 680px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:500px){
  #video-section{
    padding-top: 0 !important;
  }
  #video-section .video-wrapper {
    min-height: auto !important;
    height: 250px !important;
    width: 100% !important;
    }
    img.play-video{
      height: 45px !important;
    }
}

/*--------------------------------------------------------------
# What We Do Section
--------------------------------------------------------------*/

#What-We-Do-Section .WWD-heading{
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.025em;
  color:#000000;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom:20px;
}

#What-We-Do-Section .WWD-para{
  font-family: "Inter", serif;
  font-size: 16px;
  color:#777777;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  
}


#What-We-Do-Section .MLM-plan-head {
  font-family: "Inter", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 13px;
  line-height: 31.2px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #76b900;
}

#What-We-Do-Section .MLM-plan-slogan{
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#777777;  
  padding-bottom: 25px;
}

.MLM-plan-row{
  margin-top:50px;
}

.WWD-info-card{
  min-height: 590px;
   position: relative;
   padding: 30px 20px;
   background-color:#FFFFFF;
   box-shadow: 0px 4px 35px 0px #0000000A;
   border: 1px solid  #C0C0C0;
   border-radius: 4px !important;
   overflow: hidden;
}

.MLM-plans-info{
  margin-top: 35px;
  margin-bottom: 30px;
}

.MLM-plans-info ul li::marker {
  color: #76b900 ; 
  font-size: 24px; 
}

.MLM-plans-info ul li{
  font-family: "Inter", serif;
  color:#ffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
  padding-bottom: 15px;
}

.WWD-info-card .get-demo-btn, .WWD-info-card .get-demo-btn:hover, .WWD-info-card .get-demo-btn:active{
  position: absolute;
  bottom: 30px;
  font-family: "Inter", serif;
  font-size: 16px;
  width: 80%;
  height: 50px;
  font-weight: 700;
  border-radius: 5px !important;
  line-height: 19.36px;
  letter-spacing: 0.02em;
  text-align: center;
  background-color: #76b900 !important;
  border-color: #76b900 !important;
  color:#ffff;
}


  #What-We-Do-Section .container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
  }

  #What-We-Do-Section .features.card.mb-4 {
    width: 30%;
  }


  #What-We-Do-Section .card {
    background: #ffffff;
    border: 2px solid #76b900;
    border-radius: 24px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

  #What-We-Do-Section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  #What-We-Do-Section .card-body {
    padding: 20px;
  }

  #What-We-Do-Section h4 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
  }

  #What-We-Do-Section p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 15px;
    font-weight: 500;
  }

  #What-We-Do-Section ul {
    list-style: none;
    padding: 0;
  }

  #What-We-Do-Section ul li {
    font-size: 1rem;
    color: #555555;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
  }

  #What-We-Do-Section ul li i {
    color: #76b900 ;
    font-size: 1.2rem;
    margin-right: 10px;
  }

  #What-We-Do-Section ul li:hover {
    color: #76b900 ;
  }

  @media (max-width: 768px) {
    #What-We-Do-Section h4 {
      font-size: 1.3rem;
    }

    #What-We-Do-Section p {
      font-size: 0.9rem;
    }

    #What-We-Do-Section ul li {
      font-size: 0.9rem;
    }
  }


/*--------------------------------------------------------------
# project Section
--------------------------------------------------------------*/

#project-section .PS-heading{
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.025em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#000000;
}

.project .project-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.project .project-filters li {
  cursor: pointer;
  color: #000000;
  background-color: #a9d261;
  border-radius: 10px !important;
  box-shadow: 0px 4px 20px 0px #0000001A;
  display: inline-block;
  font-family: "Inter", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
  margin: 0 15px 30px 14px;
    height: 50px;
    padding: 14px 35px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: all 0.3s ease-in-out;
}

.project .project-filters li.filter-active:hover,
.project .project-filters li.filter-active {
  font-family: "Inter", serif;
font-size: 18px;
font-weight: 500;
line-height: 21.78px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#FFFFFF;
background-color: #76b900  !important;
box-shadow: 0px 4px 20px 0px #76b900 33 !important;
}

.project .project-filters li:first-child {
  margin-left: 0;
}

.project .project-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .project .project-filters li {
    font-size: 14px;
    margin: 10px 5px;
  }
}

.project .project-content {
  position: relative;
  overflow: hidden;
}

.project .project-content img {
  transition: 0.3s;
}

.project .project-content .project-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.project .project-content .project-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.project .project-content .project-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.project .project-content .project-info .preview-link,
.project .project-content .project-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.project .project-content .project-info .preview-link:hover,
.project .project-content .project-info .details-link:hover {
  color: var(--accent-color);
}

.project .project-content .project-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.project .project-content:hover .project-info {
  opacity: 1;
}

.project .project-content:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-title {
  text-align: center !important;
  font-size: 25px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  font-family: "Inter", serif !important;
  color: #00FB7D !important;
  margin-bottom: 19px;
  line-height: 1.4em;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.swiper-pagination {
  display: none;
}

#testimonials-section{
  margin-top: 60px;
}

@media screen and (max-width:500px){
  #testimonials-section {
    margin-top: 10px !important;
}
}

#testimonials-section .TS-head{
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.025em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#150035;
  padding-bottom: 20px;
}

#testimonials-section .TS-para{
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#545454;
  padding-bottom: 37px;
}

.testimonials .testimonial-item .testimonial-img {
  height: 70px;
  width: auto;
}

.testimonials .testimonial-item {
  min-height: 330px;
  background-color: var(--surface-color, #FFFFFF);
  box-shadow: 0px 4px 35px 0px #0000001A;
  box-sizing: content-box;
  border-radius: 31.87px;
  padding: 20px;
  padding-top: 30px !important;
  margin: 30px 5px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item h3 {
  font-family: "Inter", serif;
font-size: 28px;
margin-top: 20px;
font-weight: 700;
line-height: 60px;
letter-spacing: -0.025em;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#150035;
}


.testimonials .testimonial-item p {
  font-family: "Manrope", sans-serif !important;
  color:#595959;
  font-size: 14px;
  font-weight: 400;
  line-height: 27.9px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

#Feature-Section .FS-heading{
  font-family: "Inter", serif;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.025em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#150035;
}

#Feature-Section .FS-para{
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
   color:#565656;
}

#Feature-Section .feature-card{
  background-color: transparent !important;
  border: none !important;
  outline: none;
  padding: 35px;
}

#Feature-Section .feature-card h4{
  color:#150035;
  font-family: "Inter", serif;
  padding-top: 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

#Feature-Section .feature-card p{
  color:#5c5c5c;
  padding-top: 7px;
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  

}

#Feature-Section img.feature-img {
  width: 50px;
}






/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq-section .FAQ-heading{
  font-family: "Inter", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.025em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#150035;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  padding-left: 60px !important;
  margin-bottom: 25px;
  border: 1px solid  #C0C0C0;
  box-shadow: 0px 0px 20px 0px #00000014;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-family: "Inter", serif;
font-size: 16px;
font-weight: 600;
line-height: 20.8px;
letter-spacing: 0.02em;
text-align: left;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#4C4C4C !important;
  margin: 0 30px 0 5px;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #76b900 ;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    left: 22px;
    top: 20px;
    color: #76b900  !important;
    padding: 10px;
    border-radius: 50%;
    font-size: 23px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: #76b900 ;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/* Modal Animation */
@keyframes zoomIn {
  from {
      transform: scale(0.5);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes zoomOut {
  from {
      transform: scale(1);
      opacity: 1;
  }
  to {
      transform: scale(0.5);
      opacity: 0;
  }
}

.modal.zoom-in .modal-dialog {
  animation: zoomIn 0.3s ease-out;
}

.modal.zoom-out .modal-dialog {
  animation: zoomOut 0.3s ease-out;
}

/* Modal Animation */


/* Zoom-Out Animation for Modal */
@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

.modal.zoom-out .modal-dialog {
  animation: zoomOut 0.7s ease-out;
}

.modal-content{
  border-radius: 0 !important;
}

.modal-header{
  border: none !important;
}

.modal .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='red' stroke='red' stroke-width='1.5'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}

.modal .btn-close, .modal .btn-close:focus, .modal .btn-close:active{
  box-shadow: none !important;
}

.GD-form-container{
  background-color: #FFFFFF;
  border-radius: 8px;
}


.GD-form-container{
  background-color: #FFFFFF;
  padding: 0px 20px 20px 20px;
}

 .GD-form-container .form-heading{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#ffff;
}

.GD-form-container .form-label{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#5C5F6E;
}

.GD-form-container .form-control,  .GD-form-container .form-select{
   height: 50px;
   background-color: #F4F5F6;
   border-radius: 8px !important;
}

 .GD-form-container .form-control:focus, .GD-form-container .form-select:focus{
   border-color: #76b900 !important;
}

 .GD-form-container .form-control::placeholder, .GD-form-container .form-select{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#838696;
}

 .GD-form-container .submit-btn,  .GD-form-container .submit-btn:hover,  .GD-form-container .submit-btn:active{
   height: 50px;
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color:#76b900 !important;
   border-color:#76b900 !important;
   font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  margin-top: 20px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:#ffff;
}


/* Success Message Page CSS */

.success-msg-card{
   border: none !important;
   background-color: #FFFFFF !important;
   border-radius: 20px !important;
   padding: 25px;
   box-shadow: 0px 4px 4px 0px #0000001A !important;
}

.success-msg-card .tq-head{
  font-family: "Raleway", sans-serif;
font-size: 30px;
font-weight: 700;
line-height: 35.22px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color:#000000;
  margin-top: 40px;
  margin-bottom:30px;
}

.success-msg-card .check-icon-img{
   height: 100px;
}

.success-msg-card .greet-content h6{
  font-family: "Raleway", sans-serif;
  color:#585858;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.13px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;  
  padding-bottom: 15px;
}

.success-msg-card .greet-content p{
  font-family: "Raleway", sans-serif;
  color:#585858;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.13px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  padding-bottom: 15px;
}

.success-msg-card .goback-btn, .success-msg-card .goback-btn:hover, .success-msg-card .goback-btn:active{
  font-family: "Poppins", sans-serif;
  height: 50px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  background-color: #76b900 !important;
  border-color: #76b900 !important;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  box-shadow: 0px 2px 4px 0px #00000033;
  border-radius: 8px;
  color:#ffff;
}



