/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: SK-Modernist;
    src: url('../fonts/Sk-Modernist-Bold.otf');
}
/*
@font-face {
    font-family: Nimbus-Sans;
    src: url('../fonts/Nimbus-Sans-D-OT-Light.ttf');
}*/
body {
	/*
font-family: 'Assistant', sans-serif;
font-family: 'Alkatra', cursive;
font-family: 'Murecho', sans-serif;
font-family: 'Tajawal', sans-serif;	
*/
font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Tajawal', 'Roboto',"Helvetica Neue","Segoe UI", 'Arial',"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	color: #54565a;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: SK-Modernist, sans-serif;
}
.h1, .h2, .h3, .h4, .h5, .h6{
    line-height: 1.5;
}
.font-italic{
	font-family: 'Alkatra', cursive;
}
.font-xs{
	font-weight: 200;
}
.font-sm{
	font-weight: 300;
}
.font-md{
	font-weight: 500;
}
.font-lg{
	font-weight: 700;
}
.font-xl{
	font-weight: 800;
}

.truncate {
  overflow:hidden;
  max-height: 6rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  display: block;
}

/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
.font-white {
	color:#fff;
}
.font-green {
	color: #009478;
}
.font-gray {
	color:#54565a;
}
.font-shadow {
	text-shadow: -1px 1px 4px rgba(0, 0, 0, 0.5);
}
.font-gradient {
	background: rgb(0,148,120);
	background: linear-gradient(135deg, rgba(0,148,120,1) 50%, rgba(83,86,90,1) 50%);    
	background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;	
}
.font-gradient-animate {
	background: linear-gradient(-45deg, rgba(0,171,132,1) 0%, rgba(0,148,120,1) 24%, rgba(34,34,34,1) 63%, rgba(83,86,90,1) 100%);
	background-size: 400% 400%;
	animation: font-gradient 15s ease infinite;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;		
}
@keyframes font-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.bg-gray {
	background: #f7f8fa;
}
.bg-green {
	background: #00AB84;
}
.bg-gray-gradient{
    background: linear-gradient(0deg, rgb(247 248 250) 0%, rgba(255,255,255,1) 100%);
}
.bg-even{
	background: #f0f8ff;
}
.bg-odd{
	background: #f7f8fa;
}
.bg-gradient-animate {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: bg-gradient 15s ease infinite;
}
@keyframes bg-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.bg-hover-animate:hover {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: bg-hover-gradient 15s ease infinite;
}
.bg-hover-animate:hover a, .bg-hover-animate a.font-gray:hover{
	color: #fff;	
}
@keyframes bg-hover-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.text-hover-animate:hover {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: text-hover-animate 15s ease infinite;
	transition: 0.5s;	
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;	
}
@keyframes text-hover-animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/*--------------------------------------------------------------
# href
--------------------------------------------------------------*/
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a.font-white:hover{
	color:#00AB84;
	transition: 0.3s; 	
}
a.btn.font-white {
	letter-spacing: 1px;
	padding: .5em 1em;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	margin:5px;
}
a.btn.font-white:hover {
	color: #fff;
	background: #00AB84;
	transition: 0.3s;
}
a.btn-outline{
	border: 2px solid;
}
a.font-gray:hover{
	color:#00AB84;
}

a.btn-green{
	background: #00AB84;
	color: #fff;
	letter-spacing: 1px;
	padding: .5em 1em;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	margin:5px;
	text-transform: uppercase;
}
a.btn-green:hover{
	background: #53565A;
	color: #fff;
}

a.btn-animate, button.btn-animate {
	color: #fff;
	letter-spacing: 1px;
	padding: .5em 1em;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	margin:5px;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*--------------------------------------------------------------
# Scroll Bar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 0;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #53565A;
  height: 40px;
  transition: all 0.5s;
  padding: 0;
	z-index: 9999;
	position: sticky;	
}
#topbar .contact-info a {	
  color: rgba(255, 255, 255, 0.7);	
  padding-left: 5px;	
  line-height: 0;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: rgba(255, 255, 255, 1);
  transition: 0.3s;    
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 1rem;
	font-size:1.25rem;
}

#topbar .social-links a:hover {
  color: rgba(255, 255, 255, 1);
  transition: 0.3s;  
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px .9rem rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
}
#header .logo img {
  max-height: 50px;
}
.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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 {
  font-family: SK-Modernist, sans-serif;	
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  color: #54565a;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i,
.navbar a:focus i {
  font-size: .7rem; 	
  line-height: 0;
  margin-left: 5px;
}
.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #00AB84;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.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: #00AB84;
}
.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;
}
.navbar .dropdown ul li {
  min-width: 250px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: .9rem;
}
.navbar .dropdown ul a i {
  font-size: .7rem;  
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #00AB84;
  box-shadow: 0 5px 10px rgba(127, 137, 161, 0.1);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
}
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
	@media (max-width: 1399.98px) {	
	  .navbar .dropdown .dropdown ul {
		left: -90%;
	  }

	  .navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	  }
	}
	
/**
* Mobile Navigation 
*/
.logo {
    z-index: 9999;
}		
#menu {

	transform: translate(0, 0);
	height: 23px;
	width: 30px;
	cursor: pointer;
	z-index: 9999;
}
#bars {
	display: block;
	margin-top: 10px;
	width: 100%;
	height: 3px;
	background: #00a887;
	transition: .4s;
}

#bars:after {
	content: '';
	position: absolute;
	margin-top: -10px;
	width: 100%;
	height: 3px;
	background: #54565a;
	transition: .4s;
}

#bars:before {
	content: '';
	position: absolute;
	margin-top: 10px;
	width: 100%;
	height: 3px;
	background: #54565a;
	transition: .4s;
}

#bars.clicked {
	background: white;
}

#bars.clicked:before {
	margin-top: 0;
	transform: rotateZ(-135deg);
}

#bars.clicked:after {
	margin-top: 0;
	transform: rotateZ(135deg);
}
body.clicked {
	overflow-y: hidden;
}
.mobile-nav-toggle {
  color: #54565a;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #00AB84;
}
	@media (max-width: 991.98px) {
	  .mobile-nav-toggle {
		display: block;
	  }
	  .navbar ul {
		display: none;
	  }
	}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 70px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 1);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 10%;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
@media (max-width: 767.98px) { .navbar-mobile ul {padding: 10px 5%;} }
@media (max-width: 575.98px) { .navbar-mobile ul {padding: 10px 0;} }


.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  color: #54565a;
}
.navbar-mobile>ul>li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #00AB84;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: .9rem;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #00AB84;
}
.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Section Hero
--------------------------------------------------------------*/
.section-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
}
.section-hero-before:before {
    content: "";
    /*background: linear-gradient(45deg, rgb(0 151 117 / 90%) 0%, rgb(0 171 132 / 40%) 100%);*/
	background: linear-gradient(0deg, #009775 100%, #00AB84 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;    
} 
 
.section-hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}
.section-hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.section-hero .carousel-control-prev, .section-hero .carousel-control-next {
  width: 10%;
}
.section-hero .carousel-control-next-icon, .section-hero .carousel-control-prev-icon {
  background: none;
  line-height: 1;
  width: auto;
  height: auto;
}
	@media (min-width: 992px) {
	  .section-hero p {
		width: 100%;
	  }
	  .section-hero .carousel-control-prev, .section-hero .carousel-control-next {
		width: 5%;
	  }
	}
	@media (max-width: 767.98px) {
	  .section-hero .carousel-container {
		height: 70vh;
	  }
	}

.waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}
.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #00AB84;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

.section-badge {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}
.section-badge h2 {
  font-size: .7rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #00AB84;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h1, .section-title h2, .section-title h3, .section-title h4 {
  text-align: center;
  padding: 2rem 0;
  color: #00AB84;
}
.section-body {
  padding-bottom: 20px;
}
.section-card {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  /*border-radius: 15px 0 15px 0;*/
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;  
}
.section-card:before {
    content: "";
    background: rgb(0 151 117 / 0%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;	
}
.section-card:hover::before{
    /*background: #009775!important;*/
	background: background: rgb(0,171,132);
	background: linear-gradient(45deg, rgba(0,171,132,1) 0%, rgba(0,148,120,1) 24%, rgba(83,86,90,1) 63%, rgba(147,148,150,1) 100%);
	background-size: 400% 400%;
	animation: hover-gradient 15s ease infinite;
}
@keyframes hover-gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
	
.section-card .title {
  margin-bottom: 15px;
  z-index: 1;  
}
.section-card .title a {
  color: #fff;
  transition: 0.3s;
}
.section-card:hover .title {
  color: #fff;
}
.section-col {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}
.section-col-img {
  position: relative;
  overflow: hidden;
}
.section-col-info {
  padding: 15px 10px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.swiper-pagination {
  margin-top: 2.5rem;
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  background-color: #d3d6da;
  opacity: 1;
	border-radius: 0;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}
span.swiper-pagination-bullet-active{
	background: #00AB84!important;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 2rem;
  color: #00AB84;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 15px;
  border: 2px dotted #00AB84;
}

.contact .info-box h3 {
  color: #777777;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: #00AB84;
}

.contact .php-email-form input,
.contact .php-email-form select {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #00AB84;
	color: #fff;
	background-image: url(../img/VwatermarkGreen.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 90% 0%;    
}
#footer .footer-top {
  padding: 30px 0 10px 0;
}

#footer .footer-copyright{
	margin-bottom:0;
	padding-bottom:0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top .footer-contact h4 {

  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #fff;
}

#footer .footer-top .footer-contact p {

  line-height: 15px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top h4 {

  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 10px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
	font-weight: bold;
}

#footer .footer-top .social-links a {

  display: inline-block;
  background: #fff;
  color: #00AB84;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 18px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #009775;
  color: #fff;
  text-decoration: none;
}
#footer-logo{
	width:200px;
	margin-bottom: 40px;
}
@media (max-width: 767.98px) {
	#footer {
		background-image: none;
	   
	}
	#footer .footer-copyright{
		text-align: center;
	}	
}
li.footer-address {
    font-size: 1.1rem;
}
li.footer-contact i {
	width:2rem;
}
.footer-links .link-icon i {
    width: 25px;
    font-size: .8rem;
    text-align: center;
    opacity: .8;
}
.bg-newsletter {
	background: #2d2e30;
}
.newsletter-img img {
	max-height: 250px;
}
@media (max-width: 768px) {
  .newsletter-img {
    margin-top: -50px;
  }	
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 1.9rem);
  left: calc(50% - 1.9rem);
  border: 6px solid #00AB84;
  border-top-color: #54565a;
  border-right-color: #54565a;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: .9rem;
  bottom: .9rem;
  z-index: 996;
  background: #00AB84;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1.75rem;
  color: #fff;
  line-height: 0;
}

.back-to-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;
  }
}

/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/
.section-slider img {
  width: 100%;
  object-fit: cover;
}
.slider-img-bg {
  height: 65vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
}
.slider-img-bg-inner h2:hover {
  color: #00AB84;
}
.slider-img-bg:before {
  position: absolute;
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  top: 0;
}
.slider-img-bg-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .slider-img-bg {
    height: 400px;
  }	
  .slider-img-bg-inner {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .slider-img-bg-inner p {
    display: none;
  }
}

time {
  font-size: .9rem;
}

blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 1.25rem 0;
}

blockquote::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #009775;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

blockquote p {
	font-family: 'Alkatra', cursive;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
	padding: 1.9rem;
	/*box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);*/
	height: 70vh;
	overflow: hidden;
	background: #fff;
}
.sidebar-title{
	text-align: center;
	padding-bottom: 15px;
}
.sidebar-body {
    overflow-x: hidden;	
    overflow-y: auto;
    height: 80%;	
}
.sidebar-body time {
  font-size: .9rem;
}
.sidebar-body a {
  margin-bottom: 0;
  line-height: 1;
  font-size: .9rem;
}
.sidebar-body .list-group a {
  margin-bottom: 0;
  line-height: 1;
  font-size: .9rem;
  border-bottom: 1px solid #dfdfdf;
}
.sidebar-footer {
  padding-bottom: 1rem;
  position: relative;
}

/*--------------------------------------------------------------
# Section Tab
--------------------------------------------------------------*/
.section-tab .nav-tabs {
  border: 0;
}
.section-tab .nav-link {
  border: 0;
  padding: 25px 20px;
  color: #54565a;
  box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}
.section-tab .nav-link i {
  font-size: 2rem;
  line-height: 0;
}
.section-tab .nav-link h5 {
  margin: 10px 0 0 0;
  color: #54565a;
}
.section-tab .nav-link:hover{
  color: #00AB84;
}
.section-tab .nav-link.active {
  transition: 0.3s;
  background: linear-gradient(0deg, #009775 100%, #00AB84 100%);
  border-color: #00AB84;
	color: #ffffff;
	cursor: default;
}
.section-tab .nav-link.active h5 {
  color: #fff;
}
.section-tab .nav-link.active i {
  color: #fff!important;
}
.section-tab .tab-content {
  margin-top: 25px;
}
.section-tab .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}
.section-tab .tab-pane h3 {
  color: #54565a;
}
.section-tab .tab-pane ul {
  list-style: none;
  padding: 0;
}
.section-tab .tab-pane ul li {
  padding-bottom: 10px;
}
.section-tab .tab-pane ul i {
  color: #54565a;
}
.section-tab .card {
	border: none;
}
.section-tab .card h6 {
	color: #00AB84;
	font-size: 1rem;
}
.section-tab .card .card-text {
	color: #54565a;
	font-size: .9rem;
}
.section-tab .card .small {
	font-size: .8rem;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Section Boxes
--------------------------------------------------------------*/
.section-boxes .box-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 100%;
}
.section-boxes .box-item .icon {
  margin-bottom: 10px;
  height:50px;
}
.section-boxes .box-item .icon i {
  color: #00AB84;
  font-size: 2rem;
  transition: 0.3s;
}
.section-boxes .box-item .icon img{
  height:100%;
  margin-bottom: 10px;
}
.section-boxes .box-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.section-boxes .box-item h4 a {
  color: #54565a;
  transition: ease-in-out 0.3s;
}
.section-boxes .box-item p {
  line-height: 24px;
  font-size: .9rem;
  margin-bottom: 0;
}
.section-boxes .box-item:hover {
  transform: translateY(-10px);
  box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
}
.section-boxes .box-item:hover h4 a {
  color: #00AB84;
}

/*--------------------------------------------------------------
# Section Boxes Slick Slider
--------------------------------------------------------------*/
.section-boxes .slick-slider-item .box-item {
  height: 320px;
	padding: 1.5rem;
	margin: .7rem;
	border-radius: 10px;
}
.slick-btn-prev, .slick-btn-next {
	position: absolute;
	z-index: 99;
	height: 100%;
	width: 7%;
	border: none;
	background: linear-gradient(0deg, rgb(248 249 250) 0%, rgb(253 253 254) 100%);
	opacity: 0;
	padding: 0;
	font-size: 1.5rem;
}
.slick-btn-next {
	top: 0;
  right: 0;
}
.slick-btn-prev:hover,
.slick-btn-next:hover
{
    opacity: .8;
}

.slick-products-x {
	padding-left:5%;
	padding-right:5%;
}
.slick-products-next {
	top: 0;
  right: 0;
}
.slick-products-prev {
	left: 0;
}
.slick-products-prev, .slick-products-next {
	position: absolute;
	z-index: 99;
	height: 100%;
	width: 5%;
	border: none;
	background: transparent;
	opacity: .3;
	padding: 0;
	font-size: 1.5rem;
}
.slick-products-prev:hover,
.slick-products-next:hover
{
    opacity: 1;
}
.slick-brands-item {
	height: 100px;
}
.slick-brands-item img{
	height: 90px;
	vertical-align: middle;
	margin-left: auto;
	margin-right: auto;
	transition: .5s;
}
.slick-brands-item img:hover {
	filter: none;
	transform: scale(1.15);
	cursor: pointer;
}
.slick-brands-item .slick-dots {
	margin-top: 1rem;
}
.slick-featured .slick-featured-item {
  overflow: hidden;
  position: relative;	
	height:200px;
	border-radius: 3px;
	box-shadow: 0 2px .8rem rgba(0, 0, 0, 0.1);
}
.slick-featured .slick-featured-item .section-card-img {
  overflow: hidden;
  position: relative;	
	height:100px;
}
.slick-featured .slick-featured-item .section-card-img img {
  transition: 0.5s;
  object-fit: cover;
}
.slick-featured .slick-featured-item:hover .section-card-img img {
  transform: scale(1.1);
}
.slick-featured .slick-featured-item .slick-truncate-title {
	margin-bottom: 0;
	padding-top: .9rem;
	font-size: .9rem;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;	
  display: block;	
}	
.slick-featured .slick-featured-item:hover .slick-truncate-title {
  color: #00AB84;
}
.slick-featured .slick-featured-item .slick-truncate-text {
  font-size: .8rem;
  font-weight: 400;
  color: #54565a;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;	
  display: block;	
}
.bg-featured {
	background: #00a88729;
}
.featured-products .btn-more{
	font-size: .7rem;
	color: #fff;
	background-color: #00a887;	
	width: 50%;
  text-align: center;
  border-radius: 2px;
  padding: 0;
  margin: 0;	
}
.featured-products .btn-quote{
	font-size: .7rem;
	color: #fff;
	background-color: #ff7300;
	width: 50%;
  text-align: center;
  border-radius: 3px;
  padding: 0;
  margin: 0;
}
.featured-products a.btn-more:hover {
    background: #005a49;
}
.featured-products a.btn-quote:hover {
    background: #a85600;
}
.container-slider-for{
	height: 55vh;
	overflow: hidden;	
}
.section-articles .slider-for{
	height: 55vh;
	overflow: hidden;
	background: #00765b;
	box-shadow: 0 0 2px 0 #e5e5e5;
}
.section-articles .slider-nav, 
.section-articles .slider-nav-x{
	height: 55vh;
	overflow: hidden;
	margin-left: -1rem;
  margin-right: -1rem;
}
.section-articles .article-title {
    background: #ffffffdb;
}
.section-articles .slider-for .article-img img {
    height: 55vh;
    width: 100%;
    object-fit: cover;
		object-position: top;
}
.section-articles .slider-for .article {
	height: 55vh;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	align-items: flex-start;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;	
}
.section-articles{
	background: #f8f8f8;
}
.slider-nav-item {
	background: #fff;
	box-shadow: 0 1px 3px #e0e0e0;
	border-radius: 10px;
}
.section-articles .slider-nav .slider-nav-item-img,
.section-articles .slider-nav-x .slider-nav-item-img {
		transition: .3s;
		overflow: hidden;	
		border-radius: 8px 8px 0 0;
}
.section-articles .slider-nav .slider-nav-item-img img {
    height: 20vh;
    width: 100%;
    object-fit: cover;
		cursor: pointer;
		transition: .3s;
		overflow: hidden;
		object-position: top;
}
.section-articles .slider-nav-x .slider-nav-item-img img {
    height: 20vh;
    width: 100%;
    object-fit: cover;
		transition: .3s;
		overflow: hidden;
		object-position: top;
}
.section-articles .slider-nav .slider-nav-item-body,
.section-articles .slider-nav-x .slider-nav-item-body {
    height: 25vh;
    align-items: stretch;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
.section-articles .slider-nav .slider-nav-item-body .slider-nav-item-body-text {
	  height: 20vh;
		overflow: hidden;
		cursor: pointer;
}
.section-articles .slider-nav-x .slider-nav-item-body .slider-nav-item-body-text {
	  height: 20vh;
		overflow: hidden;
}
.section-articles .slider-nav .slider-nav-item:hover img,
.section-articles .slider-nav-x .slider-nav-item:hover img {
  transform: scale(1.1);
	transition: .3s;
	overflow: hidden;
}

.section-articles .slider-nav .slider-nav-item:hover  h6,
.section-articles .slider-nav-x .slider-nav-item:hover  h6 {
	  color: #00a887
}
.section-articles .slider-nav .slider-nav-item-body .slider-nav-item-body-text:hover > h6,
.section-articles .slider-nav-x .slider-nav-item-body .slider-nav-item-body-text:hover > h6 {
	  color: #00a887;
}
.slider-nav-item-overlay{
    height: 30px;
    background: linear-gradient(180deg, rgb(255 255 255 / 5%) 0, rgb(255 255 255) 80%, rgb(255 255 255) 100%);
    opacity: 1;
    margin-top: -29px;
	
}
.section-articles .slick-dots{
    bottom: 0;
}
a.btn.btn-slider-nav {
    background: #54565a;
    color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 0;
		transition: .3s;
}
a:hover.btn.btn-slider-nav {
    background: #00a887;
    color: #fff;
    padding: 0;
		transition: .3s;
}

/*--------------------------------------------------------------
# Section Cards
--------------------------------------------------------------*/
.section-cards .section-card-item {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.section-cards .section-card-item .section-card-img {
  overflow: hidden;
  position: relative;
  height: 35%;
}

.section-cards .section-card-item .section-card-img img {
  transition: 0.5s;
  object-fit: cover;
}

.section-cards .section-card-item .section-card-meta {
  margin-top: 15px;
}

.section-cards .section-card-item .section-card-meta .section-card-date {
  font-size: .8rem;
  font-weight: 400;
  color: #00AB84;
}

.section-cards .section-card-item .section-card-meta .section-card-text {
  font-size: .8rem;
  font-weight: 400;
  color: #54565a;
}

.section-cards .section-card-item .section-card-title {
  color: #54565a;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}
.section-cards .section-card-item p {
  margin: 15px 0 0 0;
}
.section-cards .section-card-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}
.section-cards .section-card-item .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 1.1rem;
}
.section-cards .section-card-item .readmore:hover i {
  transform: translateX(5px);
}
.section-cards .section-card-item:hover .section-card-title {
  color: #00AB84;
}
.section-cards .section-card-item:hover .section-card-img img {
  transform: scale(1.1);
}
.local-only {
    position: relative;
    top: 1.8rem;
    z-index: 99;	
		height: 1.2rem;
}
.tab-content {
		margin-top: -25px;
    margin-left: -10px;
    margin-right: -10px;
}
.tab-content .section-cards .section-card-item {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 2px 1px 5px 3px #f7f8fa;
	max-height: 280px;	
}

.tab-content .section-cards .section-card-item .section-card-img {
  overflow: hidden;
  position: relative;
  height: 35%;
	min-height: 120px;	
}
.tab-content .section-cards .section-card-item-body {
	max-height: 160px;	
}

.tab-content .section-cards .section-card-item .section-card-img img {
  transition: 0.5s;
  object-fit: cover;
}

.tab-content .section-cards .section-card-item .section-card-meta {
  margin-top: 15px;
}

.tab-content .section-cards .section-card-item .section-card-meta .section-card-date {
  font-size: .8rem;
  font-weight: 400;
  color: #00AB84;
}

.tab-content .section-cards .section-card-item .section-card-meta .section-card-text {
  font-size: .8rem;
  font-weight: 400;
  color: #54565a;
}

.tab-content .tab-content .section-cards .section-card-item .section-card-title {
  color: #54565a;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
	font-size: small;
}
.tab-content .section-cards .section-card-item p {
  margin: 10px 0 0 0;
	font-size: small;
}
.footer-overlay {
	height: 30px;
  position: sticky;
  bottom: -5px;
  background: linear-gradient(180deg, rgb(255 255 255 / 5%) 0, rgb(255 255 255) 80%,  rgb(255 255 255) 100%);
}
.bg-productx {
  --s: 82px; /* control the size */
    --c1: #fafafa;
    --c2: #ffffff;
    --c3: #f9f9f9;
  
  --_g: var(--c3) 0 120deg,#0000 0;
  background:
    conic-gradient(from -60deg at 50% calc(100%/3),var(--_g)),
    conic-gradient(from 120deg at 50% calc(200%/3),var(--_g)),
    conic-gradient(from  60deg at calc(200%/3),var(--c3) 60deg,var(--c2) 0 120deg,#0000 0),
    conic-gradient(from 180deg at calc(100%/3),var(--c1) 60deg,var(--_g)),
    linear-gradient(90deg,var(--c1)   calc(100%/6),var(--c2) 0 50%,
                          var(--c1) 0 calc(500%/6),var(--c2) 0);
  background-size: calc(1.732*var(--s)) var(--s);

}
/*--------------------------------------------------------------
# Section Clients 
--------------------------------------------------------------*/
.section-brands {
  padding: 0 0 60px 0;
}
.section-brands .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  /*filter: grayscale(10);*/
}
.section-brands .swiper-slide img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}
.section-brands .clients-slider{
	overflow: hidden;
}

/*--------------------------------------------------------------
# Section Careers
--------------------------------------------------------------*/
.section-careers .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.section-careers h3 {
  font-size: .8rem;
  font-weight: 700;
  color: #54565a;
  text-transform: uppercase;
}

.section-careers h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00AB84;
}

.section-careers p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}
.career-icon{
	position: absolute;
    top: 5px;
    left: 10px;
    font-size: 1.25rem;
	color: #012970;
}

.section-careers .list-group-item {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Section Item
--------------------------------------------------------------*/
.section-item ul {
  list-style: none;
  padding: 0;
}

.section-item ul li {
  padding: 0 0 5px 20px;
  position: relative;
  font-size: .9rem;
}

.section-item ul li i.icon-left {
  position: absolute;
  left: 0;
  top: 3px;
  color: #009478;
  font-size: .7rem;
}

.section-item .section-card-item .section-card-img {
  overflow: hidden;
  position: relative;
  height: 35%;
}

.section-item .section-card-item .section-card-img img {
  transition: 0.5s;
  object-fit: cover;
}

.event-campaign{
	min-height: calc(100vh - 126px)!important;
}
.section-campaign:before {
	content: "";
	backdrop-filter: blur(8px);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;    
}
.section-campaign:before {
	content: "";
	background: linear-gradient(180deg, #000000 0%, #002e24 100%);
	opacity: .7;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;    
}
.view-all {
    margin-top: -75px;
    height: 75px;	
}

.product-tabs .nav-pills {
  border-bottom: 1px solid rgb(203 203 203 / 40%);
}

.product-tabs .nav-pills li+li {
  margin-left: 40px;
}
.product-tabs .nav-pills li{
	padding: 0;
}
.product-tabs .nav-link {
  background: none;
  font-size: 1.1rem;
  font-weight: 400;
  color: #54565a;
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.product-tabs .nav-link.active {
  color: #009478;
  background: none;
  border-bottom: 3px solid #009478;
}

@media (max-width: 575px) {
  .product-tabs .nav-link {
    font-size: 1rem;
  }
}

.product-tabs .tab-content i {
  font-size: 1.3rem;
  line-height: 0;
  margin-right: 8px;
  color: #009478;
}
.product-info{
    box-shadow: 0 2px 4px #cdcdce;
    border-radius: 15px;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
	min-height: 50vh;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	background-attachment: fixed;
}
.about-before:before {
    content: "";
    background: linear-gradient(45deg, rgb(0 151 117 / 80%) 0%, rgb(0 171 132 / 40%) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;  
} 
.section-about .icon-img {
  margin-bottom: 10px;
}
.section-about .icon-img img{
  max-height:100px;
  margin-bottom: 10px;
}
.section-values .icon-img img{
  max-height:80px;
  margin-bottom: 10px;
}
.section-about li.list-group-item{
    border: none;
    background: transparent;
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 30px;
}
.section-about i.bi.bi-arrow-right-circle-fill {
    position: absolute;
    left: -20px;
    font-size: 1.8rem;
    top: 4px;
	color: #009478;	
}
.section-about .card {
    border: none;
    border-radius: 0;
}
.section-about img.card-img-top {
    height: 80px;
}
.hover img:hover {
	transition: .4s;
}	
.hover img:hover {
	filter: none;
	transform: scale(1.15);
}
.hover img:hover ~ .card-title {
	color: #009478;
}

.text-underline:after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #00AB84;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-top: 10px;
}
.filter-green {
    filter: invert(44%) sepia(86%) saturate(1431%) hue-rotate(134deg) brightness(90%) contrast(101%);
}

i.bi.bi-question-circle-fill {
    font-size: 1rem;
    vertical-align: top;
    color: #EF6C00;
    background-color: #EF6C00;
    -webkit-background-clip: text;
    -moz-background-clip: text;
		cursor: help;
}

.credit p{
	font-size: .825rem;
}

.featured-products .section-card-item .section-card-img {
    overflow: hidden;
    position: relative;
    max-height: 170px;
}
.featured-products .section-card-item .section-card-img img {
  transition: 0.5s;
  object-fit: cover;
}
.featured-title h3{
  text-align: left;
  padding: 0;
  color: #54565a;
}
.featured-products .slick-featured-single {
    overflow: hidden;
    position: relative;
    height: 60vh;
}		
.featured-products .slick-featured-single .swiper-slide{
    overflow: hidden;
    position: relative;
		height: 55vh;		
}
.featured-products .swiper-slide .Template1 .card{
    background: transparent;
}
.swiper-slide-title{
	z-index: 98;
}
.swiper-slide-img{
	z-index: 97;
}
.featured-products .swiper-slide .Template1 .swiper-slide-body, 
.featured-products .swiper-slide .Template1 .swiper-slide-img{
    overflow: hidden;
    position: relative;
		height: 50vh;	
}
.featured-products .swiper-slide .Template1 .swiper-slide-img img {
  transition: 0.5s;
	height: 50vh;
  object-fit: contain;
}
.featured-products .swiper-slide .Template1 .swiper-slide-title h2{
  text-align: left;
  color: #ffffff;	
}
.featured-products .slick-featured-single .slick-dots {
	position: relative;
	margin-top:-3.5rem;
}
.slick-featured-single.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0;
}
.featured-products .slick-featured-single .slick-dots li button:before {
	height: 5px;
}
.featured-products .slick-featured-single .slick-dots li button:before
{
    background: #ffffff;
}	
.featured-products .swiper-slide-Template1:before {
	content: "";
	backdrop-filter: blur(10px);
	background: linear-gradient(180deg, #00ab84 0%, #325a85 100%);
	opacity: .7;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;    
}
.featured-products .swiper-slide-Template1 {
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}
.featured-products .swiper-slide .Template2 .swiper-slide-img {
	background: #54565a;
	border-radius: 0 0 0 75%!important;
}
.featured-products .swiper-slide .Template2 .swiper-slide-img .swiper-slide-img-inner{
	background: #00ab84;
	border-radius: 0 0 0 80%!important;
}
.featured-products .swiper-slide .Template2 .swiper-slide-img img {
  transition: 0.5s;
	height: 60vh;
  object-fit: cover;
	border-radius: 0 0 0 85%!important;
	width: 100%;
}
.featured-products .Template3 {
	height: 55vh;
}	
.featured-products .swiper-slide-Template3 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
	@media (max-width: 767.98px) {
		.featured-products .swiper-slide-Template3 {
				background-position: left;
		}
	}	
.img-animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}	
.privacy-policy .title-section h4{
	color:#00ab84;
}
.privacy-policy .title-section h5{
	color:#00ab84;
	text-decoration: underline;
	padding-top: 1rem;
	padding-bottom: 1rem;	
}	
.privacy-policy .sub-section {
	border-top: 1px solid #dfdfdf;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.privacy-policy .sub-section h5{
	color:#00ab84;
	padding-bottom: 1rem;
}
.privacy-policy .sub-section p{
	color: #222222;
}
.privacy-policy .sub-section ul {
  list-style: none;
}
.privacy-policy .sub-section ul li{
  color: #222222;
}
.privacy-policy .sub-section ul li::before {
  content: "\2022";
  color: #00ab84;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}
.news .ql-editor p {
    margin-bottom: 0!important;
		font-size: large!important;
}
.news .ql-editor p span,
.news .ql-editor p strong  {
		font-size: large!important;
}
.news .ql-editor p img{
	max-width:100%!important;
}
.ql-editor img{
	max-width:100%!important;
}
.v-overlay-row,
.v-overlay-svg {
    height: 50vh;
}
.v-overlay{
	  position: absolute;
    right: 0;
    top: 0;
    height: 50vh;
    padding: 0;
}
.v-overlay-before:before {
    content: "";
    background: linear-gradient(197deg, rgb(255 255 255) 0%, rgb(0 0 0) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
		opacity: .2;
}
.v-overlay svg{
	filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}