/*

0-600px: Phone
600-900px: Tablet Portrait
900-1200px: Tablet Landscape
(1200 - 1800) is where our normal styles apply
1800px+ : Big desktop

*/
/*
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  box-sizing: inherit;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif !important;
}

a,
a:hover {
  text-decoration: none !important;
}

.section-title {
  padding: 2rem 0 4rem;
}

.section-title__heading {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 700;
}

.section-title__heading span {
  color: #9abf51;
}

.section-title__description {
  font-size: 1.5rem;
  color: #888888;
  font-weight: 600;
}

.header__top {
  background: #eef4f3;
  padding: 2rem 0;
}

.header__top--link {
  font-size: 1.2rem;
  color: #888888;
  font-weight: 600;
}

.header__top--link:not(first-child) {
  margin-right: 2rem;
}

@media (max-width: 37.5em) {
  .header__top--link:not(first-child) {
    margin-right: 0;
  }
}

.header__top--link i {
  color: #9abf51;
  margin-right: 1rem;
}

@media (max-width: 37.5em) {
  .header__top--link i {
    margin-right: 0;
  }
}

.header__top--right i {
  color: #888888;
  margin-left: 2rem;
}

.header__top--right .cta {
  margin-left: 2rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background: #9abf51;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border: 2px solid #9abf51;
}

.header__top--right .cta:hover {
  background: none;
  color: #9abf51;
  border: 2px solid #9abf51;
}

.header__bottom--logo {
  width: 200px;
}

.header__bottom--search {
  padding: 0.8rem 1.2rem;
  color: #9abf51;
  font-size: 1.6rem;
  border: 1px solid #eee;
  transition: all .5s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
}

.header__bottom--search:hover {
  background: #9abf51;
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  color: #3A3A3A !important;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 1.5rem;
}

.dropdown-menu {
  border-radius: 0px !important;
  border: none;
  padding: 0 !important;
  border-top: 2px solid #9abf51 !important;
  width: 200px;
}

.dropdown-menu a {
  padding: 0rem 5rem 0 0;
}

.dropdown-menu a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem;
  text-transform: none;
  font-size: 1.3rem;
  transition: all .5s;
  font-weight: 700;
}

.dropdown .dropdown-item.active,
.dropdown .dropdown-item:active {
  color: #9abf51;
}

.dropdown-item:focus, .dropdown-item:hover, .dropdown-item:active {
  background-color: transparent !important;
  color: #9abf51 !important;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* End of Header navbar*/
.footer {
  padding-top: 5rem;
  background: #12160a;
}

.footer__heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 3rem;
}

.footer__description {
  margin-top: 3rem;
  color: #888888;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.footer__list {
  list-style: none;
  line-height: 3rem;
}

.footer__list--link {
  letter-spacing: 1px;
  color: #888888;
  font-size: 1.4rem;
  position: relative;
  padding: 3px 0px 3px 20px;
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
}

.footer__list--link i {
  color: #9abf51;
}

.footer__list--link::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  right: auto;
  top: 2px;
  font-size: 12px;
  left: 0;
}

.footer__form {
  margin-top: 2.2rem;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.5rem;
}

.footer__form--input {
  transition: all .2s;
  border: medium none;
  color: #666;
  background: #3A3A3A;
  font-size: 1.3rem;
  height: 5rem;
  margin: 0;
  padding-left: 1.9rem;
  width: 100%;
  font-size: 1.5rem;
}

.footer__form--input:focus {
  outline: none;
}

.footer__form--btn {
  background-color: #9abf51;
  border: medium none;
  cursor: pointer;
  height: 100%;
  line-height: 1;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 0;
  width: inherit;
  color: #fff;
  font-weight: 500;
  padding: .1rem 2.4rem;
  transition: all .5s;
}

.footer__link {
  border-top: 1px solid #888888;
  font-size: 2rem;
  margin: 2rem 0;
}

.footer__link a {
  color: #888888;
  transition: all .5s;
  padding: 1rem 1.5rem;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.footer__link a:hover {
  background: #9abf51;
  color: #fff;
}

.footer__subheading {
  color: #888888;
  font-weight: 600;
}

.footer__date {
  color: #9abf51;
  font-size: 1.4rem;
  font-weight: 600;
}

.footer hr {
  height: 0.5px;
  background-color: #888888;
  border: none;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid #888888;
}

.footer__bottom--description {
  font-size: 1.4rem;
  color: #888888;
  font-weight: 600;
}

.footer__bottom--description span {
  color: #9abf51;
}

.scrollToTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #9abf51;
  color: #fff;
  display: none;
  font-size: 1.6rem;
}

.scrollToTop:hover {
  background: #3A3A3A;
  color: #fff;
}

.banner {
  background-image: url(../img/banner.jpg);
  background-position: center;
  height: 50vh;
  text-align: center;
  color: #fff;
  position: relative;
}

@media (max-width: 37.5em) {
  .banner {
    height: 35vh;
  }
}

.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner__content--heading {
  font-size: 10rem;
}

@media (max-width: 37.5em) {
  .banner__content--heading {
    font-size: 6rem;
  }
}

.banner__content--contact {
  margin-top: 2rem;
}

.banner__content--contact p {
  font-size: 2rem;
}

.banner__content--contact p a {
  color: #fff;
}

section {
  padding: 6rem 0;
}

.slider {
  height: 80vh;
}

.slider .carousel-item {
  height: 80vh;
}

.slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__title {
  top: 25%;
}

.slider__title--heading {
  font-size: 5rem;
  background: rgba(55, 163, 91, 0.541);
  display: inline-block;
  padding: 2rem;
  border-left: 5rem solid rgba(55, 163, 91, 0.9);
}

@media (max-width: 37.5em) {
  .slider__title--heading {
    border: 0;
    padding: 0.5rem;
    font-size: 3rem;
  }
}

.slider__title--subheading {
  font-size: 4rem;
  background: rgba(80, 163, 55, 0.541);
  display: inline-block;
  padding: 2rem;
  border-left: 5rem solid rgba(55, 163, 91, 0.9);
}

@media (max-width: 37.5em) {
  .slider__title--subheading {
    border: 0;
    padding: 0.5rem;
    font-size: 2.5rem;
  }
}

.slider__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 20px;
  text-transform: uppercase;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.slider__btn--more {
  background: #9abf51;
  border: 2px solid #9abf51;
}

.slider__btn--more:hover {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.slider__btn--involve {
  border: 2px solid #fff;
}

.slider__btn--involve:hover {
  border: 2px solid #9abf51;
  color: #fff;
  background: #9abf51;
}

.carousel-control-prev i, .carousel-control-next i {
  font-size: 1.8rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  padding-top: 1.7rem;
  background-color: rgba(0, 0, 0, 0.7);
}

.service__card {
  text-align: center;
  padding: 2rem;
}

.service__card i {
  font-size: 5rem;
  color: #9abf51;
  padding: 3rem;
  position: relative;
}

.service__card .card-title {
  font-weight: 700;
}

.service__card .card-description {
  font-size: 1.4rem;
  color: #888888;
  letter-spacing: 0.5px;
}

@media (max-width: 37.5em) {
  .service .section-title__heading {
    font-size: 2rem;
  }
}

.product {
  background-image: url(../img/product-bg.png);
  background-position: center;
  background-repeat: no-repeat;
}

.product__card {
  border-radius: 0 0 2px 0 !important;
  border: 0px solid rgba(0, 0, 0, 0.125) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.125) !important;
  -webkit-border-radius: 0 0 2px 0 !important;
  -moz-border-radius: 0 0 2px 0 !important;
  -ms-border-radius: 0 0 2px 0 !important;
  -o-border-radius: 0 0 2px 0 !important;
}

.product__card span {
  font-size: 1.6rem;
  color: #888888;
}

.product__card .card-title {
  font-weight: 700;
  padding: 1rem 0;
}

.product__card .card-description {
  font-size: 1.3rem;
  color: #888888;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.product__card .card-image {
  position: relative;
}

.product__card--price {
  padding: 1rem 2rem;
  background: #9abf51;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.about__heading {
  font-weight: 900;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about__description {
  color: #888888;
  font-size: 1.5rem;
  line-height: 28px;
  padding-bottom: 2rem;
}

.about__subheading {
  color: #9abf51;
  font-weight: 600;
}

.about__btn {
  font-size: 1.6rem;
  color: #9abf51;
  border: 2px solid #9abf51;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .5s;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.about__btn:hover {
  background: #9abf51;
  color: #fff;
}

.feature__card {
  padding: 1rem 0;
}

.feature__card i {
  font-size: 4rem;
  color: #9abf51;
}

.feature__card--heading {
  display: inline-block;
  font-weight: 700;
  font-size: 2.2rem;
  margin-left: 1rem;
}

.feature__card--description {
  font-size: 1.4rem;
  color: #888888;
  line-height: 25px;
}

.gallery {
  background: #272c1a;
}

.gallery__title {
  color: #fff;
  font-size: 3.5rem;
}

.gallery__controls {
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 2rem;
  border: 1px solid #9abf51;
  text-align: right;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-left: 2rem;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.gallery__controls:hover, .gallery__controls.active {
  color: #fff;
  background: #9abf51;
}

@media (max-width: 37.5em) {
  .gallery__controls {
    font-size: 1.2rem;
    margin-left: 0;
    text-align: left !important;
  }
}

.gallery__card {
  background: transparent !important;
}

.gallery__card--heading {
  color: #fff;
  font-weight: 600;
}

.gallery__card--info {
  color: #9abf51;
  font-size: 1.6rem;
}

.benefit__title {
  font-size: 6rem;
  font-weight: 300;
}

.benefit__carousel {
  margin-top: 3rem;
}

.benefit__card {
  text-align: center;
}

.benefit__card--icon {
  font-size: 8rem;
}

.benefit__card--icon i {
  color: #9abf51;
  padding: 4rem;
  display: inline-block;
  border: 3px solid #eee;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}

.benefit__card--icon i:hover {
  background: #9abf51;
  color: #fff;
}

.blog {
  background: #272c1a;
}

.blog__card {
  background: transparent !important;
  border: 1px solid #888888 !important;
}

.blog__card--organizer {
  color: #888888;
  font-size: 1.3rem;
}

.blog__card--heading {
  color: #fff;
  font-weight: 700;
}

.blog__card--description {
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.9;
}

.blog__card .card-footer {
  border-top: 1px solid #888888 !important;
}

.blog__card .card-footer a {
  color: #9abf51;
  font-size: 1.4rem;
}

.testimonial {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url(../img/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.testimonial__card {
  text-align: center;
  background: transparent !important;
}

.testimonial__card--description {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 3.5rem;
  margin-bottom: 2rem;
}

.testimonial__card--image {
  width: 120px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial__card--heading {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.contact__heading {
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 37.5em) {
  .contact__heading {
    font-size: 3rem;
  }
}

.contact__form {
  margin-top: 3rem;
}

.contact__form input,
.contact__form textarea {
  font-size: 1.8rem;
  color: #888888;
  background-color: #f5f5f5;
  border: 0 !important;
  margin-bottom: 2rem;
  padding: 3rem 1rem;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  background-color: #f5f5f5;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.contact__form textarea {
  resize: none;
}

.contact__form .btn {
  padding: .8rem 2.5rem;
  font-size: 1.8rem;
  color: #fff;
  background: #9abf51;
  border: 2px solid #9abf51;
}

.contact__form .btn:hover {
  border: 2px solid #9abf51;
  color: #9abf51;
  background: transparent;
}

.blog-inner__card {
  border: 0 !important;
  border-bottom: 2px solid #eee !important;
  padding-bottom: 2rem;
}

.blog-inner__card--heading {
  font-size: 2.4rem;
  color: #3A3A3A;
  font-weight: 700;
  display: block;
}

.blog-inner__card--date {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #9abf51;
  margin: 2rem 0;
}

.blog-inner__card--description {
  margin: 2rem 0;
  font-size: 1.3rem;
  color: #888888;
}

.blog-inner__card--btn {
  font-size: 1.4rem;
  background: #9abf51;
  padding: 0.8rem 2rem;
  border: 2px solid #9abf51;
  color: #fff;
}

.blog-inner__card--btn:hover {
  border: 2px solid #9abf51;
  color: #9abf51;
  background: transparent;
}

.blog-inner__title {
  font-weight: 700;
}

.blog-inner__subheading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9abf51;
}

.team {
  padding: 3rem 0;
}

.team__member {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.team__member:hover .team__content {
  transition: 0.5s;
  top: 0px;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0;
}

.team__member:hover .team__content--share {
  opacity: 1;
}

.team__content {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  padding: 22px 20px;
  transition: 0.5s;
  font-family: "Oswald", sans-serif !important;
}

.team__content--title h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
}

.team__content--title h6 {
  color: #9abf51;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.team__content--share {
  opacity: 0;
}

.team__content--share p {
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-family: "Open Sans", sans-serif !important;
}

.team__content--social-icon {
  margin-top: 1.5rem;
}

.team__content--social-icon li {
  display: inline-block;
}

.team__content--social-icon li a {
  color: #fff;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 18px;
  border-radius: 50%;
}

.team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download {
  padding: 9rem 0 5rem 0;
  background: #eee;
}

.download__wrapper {
  box-shadow: none;
  transition: all .5s;
}

.download__wrapper:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.download__wrapper a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1b1c1e;
  background: #fff;
  padding: 10px 10px;
}

.download__wrapper a i {
  color: #9abf51;
  margin-right: 1rem;
}

.about-inner .content-header {
  font-weight: 600;
  line-height: 3.2rem;
  text-transform: uppercase;
  font-size: 2.1rem;
  position: relative;
  margin: 0 0 1.5rem;
  color: #9abf51;
}

.about-inner__description {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: #888888;
}

.about-inner img {
  object-fit: cover;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.video-text {
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.marker-list li {
  color: #888888;
  padding-left: 30px;
  margin: 10px 0px;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  line-height: 24px;
}

.marker-list li::after {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 3px;
  font-family: "Font Awesome 5 Free";
  color: #9abf51;
  font-weight: 400;
}

.below-icon{
    color:#12160A;
    text-align:center;
}
/*# sourceMappingURL=main.css.map */