/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body, .font-primary {
    font-family: 'Open Sans', sans-serif;
    color: #383838;
}

a {
  color: #43aea0;
}
.social a {
    color: #00CD7C;
}
a:hover {
    color: #00a86f;
    text-decoration: none;
}
a.more {
    color: #000;
    border-bottom: 1px solid #A9A9A9;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
a.icon-link {
    color: #000;
    font-size: 16px;
    display: block;
    line-height: 40px;
}
a.icon-link i {
    font-size: 36px;
    float: left;
    margin: 1px 10px 0 0;
    color: #00ef73;
}
a.icon-link:hover {
    color: #999;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
.grtitl {
    font-weight: 700;
    color: #00CD7C;
    display: block;
    font-size: 20px;
    line-height: 25px;
}
.blktitl {
    font-weight: 700;
    color: #000;
    display: block;
    font-size: 16px;
	font-style: italic;
}
.bldtitl {
    font-weight: 800;
    font-size: 63px;
    line-height: 63px;	
}
ul.list-inline.social {
    padding: 10px 0;
    margin: 0;
}
img.seclogo {
    max-width: 55px;
    margin-bottom: 15px;
}
img.secico {
    margin-bottom: 20px;
}
.btn-custom {
    color: #fff;
    background-color: #00CD7C;
    border-color: #00CD7C;
    font-size: 14px;
}
.btn-custom:hover, .btn-custom.focus, .btn-custom:focus {
    color: #fff;
    background-color: #0B352A;
    border-color: #0B352A;
}
.btn-custom.focus, .btn-custom:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 113, 0.5);
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb55 {
	margin-bottom: 55px;
}
.mb60 {
	margin-bottom: 60px;
}
.nopad {
	padding: 0!important;
}
.grbg {
    background-color: #00CD7C;
    padding: 60px 60px 60px 60px!important;
}
.sec5 h3 {
    margin-bottom: 40px;
}
.sec5 .img-fluid {
    width: 100%;
}
section.sec6 {
    background-color: #0B352A;
    color: #fff;
	padding: 60px 20%;
}
section#login {
    min-height: 900px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #00CD7C;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #00CD7C;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #00EF73;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: -8px 0 0 0;

    width: 50px;
    height: 100%;
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #00CD7C;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #25564f;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #70b9b0;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #01292a;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #d2ece9;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #9cd5ce;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 28px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(1, 41, 42, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f2f9f8;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #555;
}

.section-title p {
  margin-bottom: 0;
}
.img-fluid.fill {
    max-width: 200%;
	width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
# New Form Section
--------------------------------------------------------------*/
section#newform {
    background-color: #0B352A;
    padding-bottom: 0;
    margin-bottom: 60px;
}
section#newform {
    padding-bottom: 35%;
    margin-bottom: 60px;
    background-color: #0B352A;
    background-image: url(../img/prod_group.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
}
#newform .bldtitl {
    color: #fff;
}
#newform p {
    color: #fff!important;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f6fafa;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
.conblk img.seclogo {
    max-width: 55px;
    margin-bottom: 30px;
    margin-top: 20px;
}
.conblk h3 {
    font-weight: 400;
    line-height: 30px;
	margin-bottom: 20px;
}
.conblk p {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 40px;
}
.sec3 .conblk {
    padding-right: 80px;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #70b9b0;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.services .icon i {
  color: #70b9b0;
  font-size: 42px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #70b9b0;
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(1, 41, 42, 0.5), rgba(7, 56, 57, 0.5)), url("../img/call-to-action-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
}

.call-to-action .cta-btn {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: #70b9b0;
  border: 2px solid #70b9b0;
}

/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #777;
  border-radius: 4px;
  text-transform: uppercase;
  background: white;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #70b9b0;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  background: #0B352A;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  margin: 4px;
}

.portfolio .portfolio-item .portfolio-info a i:hover {
  color: #70b9b0;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #70b9b0 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #70b9b0;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #70b9b0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #70b9b0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #92cac3;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #3c8b81;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  color: #70b9b0;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #70b9b0;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #70b9b0;
}

.contact .social-links a:hover {
  background: #70b9b0;
  color: #fff;
}

.contact .info {
  color: #777;
}

.contact .info i {
  font-size: 32px;
  color: #70b9b0;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.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 input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form button[type="submit"] {
  background: #70b9b0;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #92cac3;
}

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

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

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -10px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #EDEDED;
    padding: 30px 0;
    color: #807E7E;
    font-size: 14px;
}

#footer .copyright {
    text-align: left;
    border-top: 1px solid #ccc;
    padding: 10px 0;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-logo img {
    width: 50px;
    margin-bottom: 15px;
}
#footer h3 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 70px;
}
#footer a {
    color: #807E7E;
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#customer-testimonials {
    background-color: #0b352a;
    position: relative;
}
#customer-testimonials h2.bldtitl {
    color: #ffffff;
    font-weight: bold;
    font-size: 34px;
    line-height: 34px;
}
#testimonials .item-details {
    background-color: #ffffff;
    color: #0b352a;
    padding: 35px;
    text-align: left;
    border-radius: 8px;
    height: 300px;
    position: relative;
}
#testimonials h5.tauth {
    margin: 0 0 20px 0;
    font-size: 18px;
    line-height: 18px;
    border-bottom: 1px solid #00cd7c;
    padding-bottom: 30px;
}
#testimonials h5 span.tauthtitle {
    font-size: 60%;
}
#testimonials .item-details .ticon {
    color: #00cd7c;
    position: absolute;
    bottom: 30px;
    right: 40px;
}
/*--------------------------------------------------------------
# Home section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Packaging Section
--------------------------------------------------------------*/
#packaging {
    margin: 0;
    padding: 0;
    background: url("../img/pack_repeat.png") #0b352a;
	color: #fff;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
}
#packaging .packbg {
    margin: 0;
    padding: 0;
    background: url("../img/pack_repeat.png") #0b352a;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
}
#packaging h2.bldtitl {
    color: #ffffff;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features h2.bldtitl {
    color: #000;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    border-bottom: 1px solid #A9A9A9;
    padding-bottom: 15px;
	margin-bottom: 30px;
}
.feature {
    max-width: 450px;
    text-align: center;
    border-bottom: 1px solid #A9A9A9;
    padding-bottom: 20px;
    margin: 40px auto;
}
.feature h3 {
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}
.feature .icon {
    min-width: 100px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
	.feature {
		text-align: left;
	}
	.feature p {
		padding: 0 20px 0 20px;
	}
}
/*--------------------------------------------------------------
# Applications Section
--------------------------------------------------------------*/

#applications h2.bldtitl,#applications h3.bldtitl,#applications h4.bldtitl {
    color: #000;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 15px;
}
#applications .product {
    margin-bottom: 50px;
}

#applications .product p {
    min-height: 120px;
}
#applications .product h5 {
    font-weight: 800;
    font-size: 28px;
}
#applications .desc {
    max-width: 400px;
	display: block;
}
#applications .product img.img-fluid {
    margin: 10px auto;
    display: block;
}
h3.aphead {
    font-weight: 700;
    font-size: 44px;
    display: block;
    border-bottom: 1px solid #A9A9A9;
    padding-bottom: 6px;
}
@media (max-width: 768px) {
	h3.aphead {
		font-size: 21px;
	}
    #applications .product h5 {
        font-size: 20px;
    }
}
span.grntxt {
    color: #00CD7C;
}
/*--------------------------------------------------------------
# Platform Section
--------------------------------------------------------------*/

#platform {
    background-color: #0b352a;
	color:#fff;
}

#platform h2.bldtitl {
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    border-bottom: none;
}
span.thinalt {
	color: #00EF73;
    font-size: 30%;
    display: block;
    font-weight: 600;
    line-height: 30px;
}
@media (max-width: 768px) {
  #platform h2.bldtitl {
    font-size: 40px;
    line-height: 40px;
  }
  #platform .col-lg-7 {
    padding: 0;
  }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
    background-color: #0b352a;
	color: #fff;
}

#contact h2.bldtitl {
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 15px;
}
#contact h4 {
    color: #00EF73;
}
#contact .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #000;
    background-clip: padding-box;
    border: 1px solid #0b352a;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#contact .btn-success {
    color: #000;
    background-color: #00EF73;
    border-color: #00EF73;
}
#contact .btn-success:hover {
    background-color: #00CD7C;
    border-color:  #00CD7C;
}
/*--------------------------------------------------------------
# sidebar Section
--------------------------------------------------------------*/
#main-content {
    padding: 60px 40px 60px 40px;
}
.sticky-offset {
    top: 80px;
}
#applications.sec-int {
    padding: 0;
}
#sidebar-container {
    background: url(../img/icon_bg.png) #F7F7F7 no-repeat;
    background-position: bottom right;
    padding: 40px 15px;
}
#sidebar-container ul.list-group-flush {
    margin: 0;
    padding: 0;
}
#sidebar-container>p {
    border-bottom: 1px solid #00cd7c;
    padding-bottom: 40px;
    margin-bottom: 40px;
    padding-right: 20px;
}
#sidebar-container a {
    color: #000;
}
#sidebar-container a:hover,#sidebar-container a:focus {
    color: #00cd7c;
}
#sidebar-container i.fa {
    color: #00cd7c;
    padding-right: 20px;
}
#sidebar-container .list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: transparent;
    border: none;
}
ul.list-group-flush.sticky-top.sticky-offset {
	z-index: 2;
}
/*--------------------------------------------------------------
# Smaller devices ie. older iphones
--------------------------------------------------------------*/
 
/* Medium devices (tablets, 768px and below)*/
@media (max-width: 768px) {  
  p {
    font-size: 14px;
  }	  
	
  section#newform {
    padding-bottom: 50%;
    background-size: 125%;
  }
  #header {
    height: 55px;
  }
  #header .logo img {
    width: 30px;
  }
  .mobile-nav-toggle {
	top: 15px;
  }
  #home.sec {
    padding: 20px 0 60px 0;
  } 
  #sidebar-container {
    background-size: 50%;
  }  
}
 
/* Large devices (desktops, 992px and below) */
@media (max-width: 992px) { 
  .bldtitl {
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
  }
  .grtitl {
    font-size: 16px;
    line-height: 16px;
  } 
}
 
/* Extra large devices (large desktops, 1200px and below) */
@media (max-width: 1200px) {  
    
}