/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #79D779;
  --color-secondary: #efea53;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-header p {  
  color:var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #EFF9F0;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 0;
  border-bottom:1px solid #e5e5e5;
}

.topbar .contact-info i {
  font-style: normal;
  color: #79D779;
  transition: color 0.3s;
  line-height: 0;
  /*width: 1.25em;*/
}

.topbar .contact-info a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}

@media (max-width: 575px) {

  .topbar .contact-info a,
  .topbar .contact-info i span {
    font-size: 14px;
	color:#000;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #EFF9F0;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
 

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
a.getstarted{  
    padding: 10px 15px;  
    color: #1e251c;
    background-color: #8beb8b;
    border-radius: 18px 0 18px 18px;
 }
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 131, 116, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about p {
  font-size: 17px; 
  color: #000;
}

.about .content ul .colr-1 {
	color: #8BEB8B;  
}
.about .content ul .colr-2{
	color: #EFEA53;  
}
.about .content ul {  
  list-style: none;
  padding: 0;
}
.about .content ul li {   
  padding-bottom: 8px;
  font-size: 17px;
}



.about .card { 	
    border-radius: 18px 18px 18px 0px;
}
.about .card .widget-box {  
	margin-top:-65px;
    width:80px;
    height:80px; 
    padding: 14px 14px 12px 14px;     
}
.about .card .box1 {  	
    background-color: #EFEA53;  
    border-radius: 18px 18px 18px 0px; 
}
.about .card .box2 {  	
    background-color: #FF6E68;  
	border-radius: 18px 0px 18px 18px;
}
.about .card .box3 {  	
    background-color: #8BEB8B; 
	border-radius: 18px 18px 0px 18px;
}
.widget-boxs { 	
    width:80px;
    height:80px; 
    padding: 14px 14px 12px 14px;   
    border-radius: 18px 18px 18px 0px;
	/*background-color: #8BEB8B; */
}
.box1 {  	
    background-color: #EFEA53;  
    border-radius: 18px 18px 18px 0px; 
}
.box2 {  	
    background-color: #FF6E68;  
   
border-radius: 0px 18px 18px 18px;
}
.box3 {  	
    background-color: #8BEB8B;  
    border-radius: 18px 0px 18px 18px; 
}
.box4 {  	
    background-color: #EFEA53;  
 border-radius: 18px 18px 0px 18px;    
}
.steps p{
font-size:16px;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
}

.stats-counter .stats-item {
    padding: 20px 0;
    border: 1px solid var(--color-secondary);
    background-color: transparent;
    border-radius: 10px;
}


.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 10px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: inline;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
 font-weight: 400;
color:#000;
}
/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}
.cards{
border: 1px solid #e5e5e5;
border-radius:18px;
margin-top:-50px;
}

.services .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.services .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.services .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@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;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;  
  border-radius: 15px;
}
.pricing .price-head{
transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
border-radius: 15px;
}
.pricing .price-body{
transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
border-radius: 15px;
}
.price-head .elementor-shape {
    overflow: hidden;
   /* position: absolute;*/
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.price-head .elementor-shape-bottom {
    bottom: -1px;
}

.price-head .elementor-shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 40px;
    transform: translateX(-50%) rotateY(180deg);
}
.price-head .elementor-shape svg {
    display: block;   
    position: relative;
    left: 50%;   
}
.price-head .elementor-shape .elementor-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #555555;
  text-align: center;
}


.pricing h4 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 0;
  text-align: center;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #8beb8b;
  font-size: 24px;
  padding-right: 3px;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: var(--color-primary);
  border: 1px solid rgba(0, 131, 116, 0.2);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--color-primary);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}
.pricing .swiper-pagination {
  margin-top: 20px;
 /* position: relative;*/
}

.pricing .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.pricing .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


.pricing .swiper-button-prev {
    left: 10px!important;
    right: auto;
}
.pricing .swiper-button-next {
     right: 10px!important;
    right: auto;
}
:root {
    --swiper-navigation-size: 30px;
    --swiper-theme-color: var(--color-primary);
}
/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .form-control {    
    border: 1px solid var(--color-secondary);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.575rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select  { 
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea,
.contact .php-email-form select {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%; 
    background-image: url(../img/Bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;   
	height:650px;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
@media (max-width: 1279px) {
.hero {
    width: 100%; 
    background-image: url(../img/Bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;   
	height:100% !important;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
}
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.hero p {
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1e251c;
  background-color: #8beb8b;
  border-radius: 18px 0 18px 18px;

}
.hero .btn-get-started1 {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1E251C;
  background-color: #EFEA53;
  border-radius: 18px 18px 18px 0px;
}
.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #008d7d;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
  background: #009786;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #EFF9F0;
  padding: 50px 0;
  color: #000;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 10px;
  transition: 0.3s;
}
@media (max-width: 786px) {
.footer .social-links  {
  justify-content: center;
}
}
.footer .social-links a:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.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;
  color: var(--color-primary);
  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: var(--color-primary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
.btn-get-started {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1e251c;
  background-color: #8beb8b;
  border-radius: 18px 0 18px 18px;
border: transparent;
}

.clock-wrap {
  margin: 2% 0; }

.expired {
  display: none;
  text-align: center;
  font-size: 2rem;
  padding: 1em;
 }
  .expired.show {
    display: block; }

.clock {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
 }
  .clock .time-block {
    background: #FF6E68;
    color: #fff;
    text-align: center;
    margin: 10px;
	border-radius:18px;
 }

    .clock .time-block .time, .clock .time-block .label {
      }

    .clock .time-block .time {
      
      font-size: 2rem; }

.box {       
    text-align: center;    
  }

    
  .box  .content {
        padding: 0 20px;
        
    }
    
.box    .input {
        background: #fff;
        box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 20px 0;
        margin-bottom: 10px;
    }

    
  .box  .input label {
        display: block;
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }
  .box  .input input {
        outline: none;
        border: none;
        border-bottom: 1px solid #4f7df9;
        width: 50%;
        text-align: center;
        font-size: 28px;
        font-family: "Nunito", sans-serif;
    }


    
 .box   .inputW {
        background: #fff;
        box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 10px 0;
        margin-bottom: 10px;
    }


 .box   .inputW label {
        /*display: block;*/
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }
 .box  .inputW input {
        outline: none;
        border: none;
        border-bottom: 1px solid #4f7df9;
        width: 50%;
        text-align: center;
        font-size: 28px;
        font-family: "Nunito", sans-serif;
    }

 .box   .inputH {
        background: #fff;
        box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 10px 0;
        margin-bottom: 10px;
     
    }


 .box   .inputH label {
        /*display: block;*/
        font-size: 18px;
        font-weight: 600;
        color: #000;
        margin-bottom: 10px;
    }
 .box  .inputH input {
        outline: none;
        border: none;
        border-bottom: 1px solid #4f7df9;
        width: 50%;
        text-align: center;
        font-size: 28px;
        font-family: "Nunito", sans-serif;
    }
.box  .inputH input::placeholder, .box  .inputW input::placeholder {
    font-size: 14px;
} 

  
button.calculate {
    cursor: pointer;   
    color: #fff;
    background: var(--color-primary);
    font-size: 16px;
    border-radius: 7px;
    padding: 12px 0;
    width: 100%;
    outline: none;
    border: none;
    transition: all 0.5s;
  }
  button.calculate:hover {
    background: var(--color-secondary);
  }

@media (max-width: 786px) {
	.result {
    padding: 5px 5px!important;
  }
  #result p.rating-title {
    font-size: 13px!important;
    
}
#result p.rating {
    font-size: 15px!important;
    
} 
.containerHW {
    display: grid!important;
    
}
.box .inputH {
   margin-right:0px!important;
    
}
} 
.result {
    padding: 10px 20px;
  }
  .result p {
    font-weight: 600;
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
  }
  .result #result {
    font-size: 36px;
    font-weight: 900;
    color: #4f7df9;
    background-color: #eaeaea;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 55px;
    margin-bottom: 25px;
  }
  #comment {
    color: #4f7df9;
    font-weight: 800;
  }

.comment {
    display: none;
    border: dashed 1px;
    border-radius: 7px;
    padding: 5px;
}

.gender {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
 .box.form-group {
    margin-bottom: 40px;
}
.gender .gen-radio {
    width: 170px;
    height: 145px;
    border: 1px solid #f7f7f7;
    border-radius: 18px;
    padding: 20px;
    display: inherit;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    position: relative;
}
.gender .gen-radio input:checked {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}
.gender .gen-radio input {
    display: none;
}
.gender .gen-radio input:checked+label {
    border: 1px solid #2f313b;
    border-radius: 18px;
    background: #fff;
}
.gender .gen-radio label {
    margin-bottom: 0px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: inherit;
    cursor: pointer;
    background: #f7f7f7;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.gender .gen-radio input:checked+label .icon {
    background: #f9f4f1;
}
.gender .gen-radio .icon {
    width: 64px;
    height: 64px;
    background: #eee;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 18px;
}


.gender {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    background: #fff;
    box-shadow: 0px 0px 95px -30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px 0;
    margin-bottom: 20px;
}

 




#result div#result-bar {
    margin: 30px auto 22px;
    max-width: 660px;
    width: 100%;
    height: 80px;
    background: linear-gradient(269.79deg, #FF6E68 3.27%, #F9ECE3 117.62%);
    border-radius: 64px;
    display: flex;   
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 9px 15px;
    position: relative;
}
#result .result-inner.flex {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
#result .bmi-steps:not(:last-child) {
    border-right: 1px solid #fff;
}
#result .bmi-steps {   
    display: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
	padding:10px 5px;
}
#result p.rating-title {
    font-size: 14px;
    line-height: 120%;   
    font-weight: 500;
    margin-bottom: 4px;
}
#result p.rating {
    font-size: 16px;
    line-height: 130%;   
    font-weight: 700;
    margin-bottom: 5px
}
.switch {
	 font-size: 1rem;
	 position: relative;
}
 .switch input {
	 position: absolute;
	 height: 1px;
	 width: 1px;
	 background: none;
	 border: 0;
	 clip: rect(0 0 0 0);
	 clip-path: inset(50%);
	 overflow: hidden;
	 padding: 0;
}
 .switch input + label {
	 position: relative;
	 min-width: calc(calc(2.123rem * .6) * 2);
	 border-radius: calc(2.123rem * .6);
	 height: calc(2.123rem * .6);
	 line-height: calc(2.123rem * .6);
	 display: inline-block;
	 cursor: pointer;
	 outline: none;
	 user-select: none;
	 vertical-align: middle;
	 text-indent: calc(calc(calc(2.123rem * .6) * 2) + .5rem);
}
 .switch input + label::before, .switch input + label::after {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: calc(calc(2.123rem * .6) * 2);
	 bottom: 0;
	 display: block;
}
 .switch input + label::before {
	 right: 0;
	 background-color: #8beb8b;
	 border-radius: calc(2.123rem * .6);
	 transition: 0.2s all;
}
 .switch input + label::after {
	 top: 2px;
	 left: 2px;
	 width: calc(calc(2.123rem * .6) - calc(2px * 2));
	 height: calc(calc(2.123rem * .6) - calc(2px * 2));
	 border-radius: 50%;
	 background-color: white;
	 transition: 0.2s all;
}
 .switch input:checked + label::before {
	 background-color: #efea53;
}
 .switch input:checked + label::after {
	 margin-left: calc(2.123rem * .6);
}
 .switch input:focus + label::before {
	 outline: none;
	 box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, .25);
}
 .switch input:disabled + label {
	 color: #868e96;
	 cursor: not-allowed;
}
 .switch input:disabled + label::before {
	 background-color: #e9ecef;
}
.datepicker .form-control,
.timepicker .form-control,
.datetimepicker .form-control {
  background: #fff;
}
#loading {
  position: fixed;
  /*display: block;*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.9;
  /*background-color: #fff;*/
  z-index: 99999;
}       
.loader{
position: fixed;
left: 50%;
top: 50%;
z-index: 9999;
border: 10px solid #f3f3f3;
border-radius: 50%;
border-color: var(--color-primary) transparent var(--color-primary) transparent;
width: 60px;
height: 60px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#feedback {
   display:none;
}
@media only screen and (max-width: 767px){
#feedback {
	display:block;
    position: fixed;
    bottom: 0px;
    left: 5%!important;
    z-index: 9999;
}
}