
*{
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
	box-sizing: border-box;
}
html{
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	appearance: none;
}
table{
  width: 100%;
}
::-webkit-scrollbar{
	width: 8px;
	background: url('../img/scroll.png') repeat-y;
}
::-webkit-scrollbar-thumb{
  position: absolute;
  background:#ececec;
}
::-webkit-scrollbar-thumb:hover{
  background:#cacaca;
}
@font-face {
  font-family: "Century";
  src: url("font/centuryb.ttf") format("truetype");
}
@font-face {
  font-family: "CenturyLight";
  src: url("font/century.ttf") format("truetype");
}
body{
	font-family: Roboto,ui-sans-serif,system-ui,-apple-system,Segoe UI,Ubuntu,Cantarell,Noto Sans,sans-serif,Helvetica Neue,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
	font-size: .9485rem;
	background: #f6f8fc;
	overflow: none;
	overscroll-behavior: none;
}

a {
  text-decoration: none;
  color: #5b5bdd;
}

a:hover {
  color: #80c792;
  text-decoration: none;
}

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

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

.back-to-top:hover {
  background: #78c48c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #ffa500;
  color: #fff;
  font-size: 14px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  line-height: 0;
  font-size: 17px;
  margin-right: 5px;
}

#topbar .contact-info .la-headset {
  margin-left: 20px;
}

#topbar .social-links a {
  color: #fff;
  margin: 15px 0 0 10px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links i {
  font-size: 25px
}
#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  box-shadow: 0px 0px 12px 0px rgba(71, 69, 69, 0.2);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #5cb874;
}

#header .logo img {
  max-height: 55px;
}

.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;
  border-radius: 10px;
}

.navbar li {
  text-align: center;
  position: relative;
}

.navbar a {
  display: block;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 8px;
  font-weight: 400;
  color: #222111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e9b20c;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  color: #fff !important;
  padding: 4px 10px !important;
  margin-left: 30px;
  border-radius: 4px;
  cursor: pointer;
  background: #0000ff;
  transition: 0.3s;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #61bb79;
  color: #fff;
}
.bubble {
  position: absolute;
  top: 3px;
  right: 1px;
  padding: 0 5px;
  background: #cb2a14;
  color: white;
  border: 2px solid #fff;
  font-size: 11px;
  border-radius: 50%;
  z-index: 1;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 5px);
  margin: 0;
  padding: 20px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(127, 137, 161, 0.25);
  transition: 0.2s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown a span,
.navbar .dropdown ul a span {
  font-size: 14px !important;
}
.navbar .dropdown ul a {
  font-size: 15px !important;
  padding: 5px 20px;
  align-items: left;
  text-align: left;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e9b20c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .nav-link{
  font-size: 14px
}
.navbar ul li a.selected {
  text-decoration: none;
  color: #e9b20c !important;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  margin-left: 10px;
  line-height: 4px;
  transition: 0.5s;
}

.mobile-nav-toggle.la-times {
  color: #333;
  z-index: 10
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.mobile{display:none}
.screen{display:inline-block}
.disablescroll{overflow:hidden}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  line-height: 1.5em;
  text-align: center;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  border-radius: 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 4
}
.navbar-mobile a:not(.hi),
.navbar-mobile a:not(.hi):focus {
  padding: 10px 20px;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5cb874;
}

.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 i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5cb874;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background-color: rgba(9, 9, 9, 0.8);
  box-shadow: 0px 0px 12px 0px rgba(71, 69, 69, 0.2);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item::before {
  content: "";
  /*filter: blur(5px);
  backdrop-filter: blur(5px);*/
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: linear-gradient(to top,#222121ba,#0e0e0e2d);
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 100px;
  padding-right: 100px;
}
#hero .container {
  text-align: center;
  padding-top: 20px;
}
#hero h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: lighter;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(66, 64, 64, 0.9);
  text-shadow: 0 1px 0 black;
}
#hero p {
  animation-delay: 0.4s;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "CenturyLight";
  margin: 0 auto 20px auto;
  text-shadow: 1px 1px 2px rgba(66, 64, 64, 0.9);
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  border-radius: 50px;
  transition: 0.3s;
  color: #ffffff80;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  color: #e9b20c;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background:#448154;
  overflow: hidden;
  border: 0;
  margin-bottom: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #e9b20c;
}

#hero .btn-get-started {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 15px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ab2328;
}

#hero .btn-get-started:hover {
  background: #5cb874;
}
.more{
  position: fixed;
  border-radius: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 500px;
  height: 80%;
  margin: auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  transition: ease-in-out 0.3s;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  z-index: 1000;
}
.more.cookie{
  width: 100%;
  height: auto;
  top: inherit;
  padding: 20px 50px;
  background: #3480c2;
  color: #fff;
  font-family: "CenturyLight";
  border-radius: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}
.more.cookie .close{color:#fff;}
a.closeCookieConsent,
a.cookieConsentOK{
  display: inline-block;
  background: #fff;
  padding: 5px 15px;
  cursor: pointer;
  color: #3480c2;
}
.overlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4d4b4b;
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
  z-index: 1000
}
.more .data{
  position: absolute;
  text-align: left;
  padding: 10px 20px 20px 20px;
  top: 50px;
  bottom: 20px;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.more .section-title,
.more .data p{
  font-family: "CenturyLight";
}
.more .data h4{
  margin-top: 10px !important
}
.more .data p{
  margin-bottom: 20px !important
}
.more .section-title{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: left;
  background: #fff;
  padding: 20px 20px 10px 20px;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  z-index: 3;
}
.section-head{
  position: relative;
  margin: 10px 0 20px 0;
  border-bottom: 1px solid #cbcbcb;
}
.more .section-title h2{
  padding: 0;
  margin: 0
}
.more .section-title h2::after,
.more .section-title h2::before{
  display: none
}
div.action,
span.dei{
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  color:#e6b530;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s;
}
span.deia{
  display: inline-block;
  color:#e6b530;
  font-weight: bold;
  line-height: 2px;
  cursor: pointer;
  transition: all 0.4s;
}
span.deia:hover,
span.dei:hover{
  color:#95c681;
}
div.action{
  left: 0;
  right: inherit;
  bottom: 0;
  color:#fff;
  border-top-right-radius: 8px;
  border-top-left-radius: 0;
  background-color: #ffa76e;
}
.hide{display:none}
.leftbar.hide{display:block}
.more i{
  position: absolute;
  right: 15px;
  top: 5px;
  cursor: pointer;
  font-size:30px;
  z-index: 1000
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0 20px 0;
}

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

.section-title {
  text-align: center;
  padding: 20px 0;
}
.section-title.separate {
  margin: 30px 0 10px;
}
.section-title.account{
  text-align:left
}
.section-title h2,
.section-title h3 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-weight: 400;
  position: relative;
}
.section-title h3 {
  font-size: 28px;
}
.section-title h2 {
  font-weight: 600;
  font-size: 20px;
}
.section-title h2::before,
.section-title h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 122px);
}

.section-title h2::after,
.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 61px;
  height: 3px;
  background: #ffa500;
  bottom: 0;
  left: calc(50% - 31px);
}
.section-title.account h3::before,
.section-title.account h3::after{
  left: 0;
}

.section-title p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #494949
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #5cb874;
  font-size: 40px;
}

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

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #5cb874;
}

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

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

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

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

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #5cb874;
}

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.whyus {
  padding: 0;
}

.whyus .row {
  overflow: hidden;
  padding: 20px 0;
}
.whyus .content-item {
  padding: 20px 40px;
  border-left: 1px solid #327d5a26;
  margin: -1px;
}

.whyus .content-item h4 {
  font-size: 19px;
  font-weight: 400;
  padding: 0;
  display: block;
  color: #ab2328;
  margin: 15px 0 10px 0;
}

.whyus .content-item p {
  color: #656161;
  font-size: 15px;
  text-align: justify;
  margin-bottom: 10px;
  padding: 0;
}

@media (max-width: 768px) {
  .whyus .content-item {
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  position: relative;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 25px 70px 25px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(110, 123, 131, 0.3);
}
.services .icon-box.plan{
  text-align: left
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box.haic {
  padding-top: 260px;
  box-shadow: 0px 3px 6px 0px rgba(110, 123, 131, 0.4);
}
.services .icon-box.haic .iconpic {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
}
.services .icon-box.haic .icon {
  position: absolute;
  left: 30px;
  top: 230px;
  width: 45px;
  height: 45px;
  color: #fff;
  background: #676358;
  border: 3px solid #fff;
  border-radius: 50%;
}
.services .icon-box.haic .iconpic img {
  display: block;
  height: 250px;
  object-fit: cover;
}
.services .icon-box .icon i {
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box.haic .icon i {
  font-size: 23px;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  color: #ab2328;
  margin: 30px 0 10px 0;
  font-size: 19px;
}

.services .icon-box h4 a {
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  font-family: "CenturyLight";
  line-height: 22px;
  margin-bottom: 0;
}
.services .icon-box p i {
  font-weight: bold;
  margin-right: 4px;
  color: #5ab6ff;
}

.services .icon {
  width: 60px;
  height: 60px;
}

.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-green i {
  color: #3bb164;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.row.signin{
  width: 400px;
  height: 300px;
  padding: 20px;
  border-radius: 20px;
  margin: 10px auto
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #5cb874;
  padding: 80px 0;
}

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

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5cb874;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


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

.team .member .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 30px auto;
  box-shadow: 0px 0px 8px 0px rgba(34, 34, 34, 0.09);
}

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

.team .member span {
  display: block;
  color: #534c4c; 
  font-size: 14px;
}

.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: #83b6e3;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #92a6b8;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 20px;
  width: 100%;
}

.contact .info .email,
.contact .info .address,
.contact .info .phone {
  display:table
}

.contact .info i {
  font-size: 20px;
  color: #5b5bdd;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}
.contact .info .newsletter h4{padding-left: 0}
.contact .info p {
  font-size: 14px;
  padding: 0 0 10px 60px;
  margin-bottom: 8px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 13px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info.combine {
  padding-top: 0
}
.contact .info.combine a {
  display: block;
  cursor: pointer;
  font-size: 14px;
  color: #5b5bdd;
}
.contact .info a:hover {
  color: #c7a41a !important;
}
.contact .info.combine h4 {
  padding: 0 0 10px 0;
}
.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #5cb874;
  border-bottom: 3px solid #5cb874;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5cb874;
}

.contact .php-email-form input {
  height: 44px;
}

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

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

.contact .php-email-form button[type=submit]:hover {
  background: #6ec083;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.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: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eaf6ed;
  color: #252525;
  font-size: 12px;
  text-align: center;
  padding: 30px 0;
}

#footer .logo_footer {
  width: 200px;
  height: 80px;
  display: none;
  margin: 0 auto 10px auto
}

#footer p {
  padding: 0;
  margin: 0 0 20px 0;
}

#footer .social-links {
  margin: 0 0 10px 0;
}

#footer .social-links a {
  font-size: 25px;
  display: inline-block;
  color:#528efb;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #449d5b;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}
.dTs_empty {pointer-events: none}
.dTs_wrapper {position: relative;}
.dTs_length label {
	float: left;
	text-align: left;
	margin-bottom: 0;
}
.dTs_length select {
	padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #c4c4c4;
  background: #fff;
	margin-bottom: 10px;
}
.dTs_filter label {
	float: right;
	margin-bottom: 0;
}
.dTs_filter input {
	display: inline-block !important;
	width: auto !important;
	margin-bottom: 0;
}
.dTs_processing {
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
	width: 40%;
	align-items: center;
	background: #8989890d;
	margin: 0 auto;
	text-align: center;
	padding: 1px 40px;
}
.dTs_length {
	float: right;
	margin-right: 10px
}
.dTs_filter {
	float: left;
	text-align: right;
}
.dTs_info {
  font-family: "CenturyLight";
	float: left;
	text-align: left;
}
.dTs_length,
.dTs_filter {
  font-family: "CenturyLight";
  margin: 0 4px 4px 0;
}
.dTs_filter input {padding: 4px;}
.dTs_info {
  display: block;
	clear: both;
	margin-top: 4.6em
}
.dTs_paginate {
	float: right;
	font-size: 90%;
	text-align: right;
	margin-top: 5em
}
.dTs_paginate .paginate_button {
  font-size: 15px;
}
.dTs_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: 2px 10px;
	margin: 0 8px;
  color: #484848;
  font-family: "CenturyLight";
  border: 1px solid #b2b2b2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	border-radius: 8px
}
.dTs_paginate .paginate_button.current,
.dTs_paginate .paginate_button.disabled,
.dTs_paginate .paginate_button.disabled:hover,
.dTs_paginate .paginate_button.disabled:active {
	cursor: default;
	color: #fff;
	background: transparent;
	box-shadow: none
}
.dTs_paginate .paginate_button.current:hover{
  pointer-events: none;
  color: #fff;
}
.dTs_paginate .paginate_button.disabled,
.dTs_paginate .paginate_button.disabled:hover,
.dTs_paginate .paginate_button.disabled:active{
	color: #c7c7c7;
}
.dTs_paginate .paginate_button.current{
	background: #95c681;
  color: #fff;
  border: none;
}
.dTs_filter {
  display: none;
}
.dTs_paginate .paginate_button:hover{color: #585858}
.dTs_paginate .paginate_button:active {color: #fff;background: #95c681}
.row.catelog h5{
  padding-left: 0
}
.subnav{
  padding: 3px 0;
  margin-bottom: 10px;
}
.exm{
	display: block;
	width: 95%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
table.fgm head{display:none}
table.fgm tbody{
  display: flex;
  flex-flow:row wrap;
  flex-direction: row;
  column-gap: 20px;
  row-gap: 60px;
}
table.fgm tbody tr{
  position: relative;
  width: 190px;
  height: 190px;
  padding: 5px;
  background: #fff;
  transition: all ease-in-out 0.3s;
}
table.fgm tbody tr td{
  position: relative;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 3px 6px 0px rgba(110, 123, 131, 0.3);
}
table.fgm tbody tr td.dTs_empty{
  display: block;
  width: 100% !important;
  height: auto;
  text-align: center;
  padding: 10px 0;
  box-shadow: none;
}
table.fgm tbody tr td .image{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  border-radius: 8px;
}
table.fgm tbody tr td .company{
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 10px;
  color: #fff;
  background: #acb58a;
}
table.fgm tbody tr td .moreinfo{
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: none;
  background: #94afd2;
  box-shadow: 0px 3px 6px 0px rgba(110, 123, 131, 0.3);
}
table.fgm tbody tr td .enlarge{
  position: absolute;
  right: 55px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  border: auto;
  color: #fff;
  display: none;
  background: #94afd2;
}
table.fgm tbody tr td .sheet{
  position: absolute;
  display: block;
  right: 100px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  border: auto;
  color: #fff;
  display: none;
  background: #94afd2;
}
table.fgm tbody tr td .name{
  position: absolute;
  display: inline-block;
  bottom: -30px;
  font-size: 15px;
  left: 0;
  pointer-events: none;
  text-transform: capitalize;
  z-index: 1;
}
table.category tbody tr td div{
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 5px 0;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  color: #5c5a5a;
  transition: 0.3s;
  background: #eaedf0;
  font-family: "CenturyLight";
}
table.category tbody tr td div:hover{
  background: #bacade;
  color: #fff;
}
table.brand tbody{
  font-family: "CenturyLight";
  display: flex;
  flex-flow:row wrap;
  justify-content: flex-start;
  column-gap: 10px;
  row-gap: 10px;
}
table.brand tbody tr{
  position: relative;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all ease-in-out 0.1s;
  border: 1px solid #e4e4e4;
  box-shadow: 0px 2px 3px 0px rgba(208, 209, 209, 0.3);
}
table.hider{
  box-shadow: none;
}
table.brand tbody tr td div span{
  color: #6abb42;
}
table.brand tbody tr:hover{
  background: #e1e1e1;
}
table.sub tbody{
  font-family: "CenturyLight";
  display: flex;
  flex-flow:row wrap;
  justify-content: flex-start;
  column-gap: 10px;
  row-gap: 10px;
}
table.sub tbody tr{
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
  background: #9ec48e;
}
table.sub tbody tr:hover{
  background: #e1e1e1;
}
table.sub tbody tr td.dTs_empty{
  display: none;
}
.catelog h6,
table.brand tbody tr td div,
table tbody tr td.dTs_empty{
  font-family: "CenturyLight";
}
table.brand tbody tr td div{
  cursor: pointer;
}
table.category.no-footer{
  margin-top: 25px;
}
.leftbar{
  width: 280px;
  float: left;
}
.rightbar{
  float: left;
  width: 75%;
  left: 300px;
}
[data-tip]{
  position: relative;
  display: inline-block;
  margin-top: 20px;
}
[data-tip]:hover::after {
  content: attr(data-tip);
  background: #3d3d3d;
  opacity: 0.8;
  padding: 4px 8px;
  position: absolute;
  font-size: 12px;
  border-radius: 8px;
  top: -100%;
  left: 0;
}
.searchdiv{
  position: relative;
  z-index: 3;
  min-height: 44px;
  background: #fff;
  box-shadow: none;
  border-radius: 20px;
  font-size: 15px;
  margin: 15px auto 0 auto;
  border: 1px solid #ede4e4;
  width: 60%;
  padding: 0 20px;
  box-shadow: 0px 3px 6px 0px rgba(110, 123, 131, 0.3);
}
input.search{
  position: absolute;
  display: block;
  padding: 10px;
  border: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-left: 170px;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  right: 0;
}
.manufacturer{
  position: absolute;
  display: block;
  padding: 10px 20px;
  width: 150px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  left: 0;
  top: 0;
  bottom: 0;
  background: #95c681;
  z-index: 1
}
.section-head .secmore,
.manufacturer .fa{
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  height: 17px;
  margin: auto 0;
}
.secmore{
  display: none;
}
.brand-hold{
  position: absolute;
  border-radius: 20px;
  left: 0;
  top: -150px;
  padding: 20px;
  width: 100%;
  height: auto;
  background: #fff;
  text-align: left !important;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.18);
  transition: ease-in-out 0.3s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  z-index: 3000;
}
.brand-hold .close{
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 35px;
  cursor: pointer;
  z-index: 1000
}
.searchdiv:hover{
  transition: 0.3s;
  box-shadow: 0px 10px 8px 0px rgba(110, 123, 131, 0.3);
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    top: 10px;
    left: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 33px;
  }
  #hero p {
    font-size: 14px;
  }
  #topbar {
    font-size: 12px;
  }
  #header {
    height: 70px;
  }
  #header .logo img {
    max-height: 55px;
  }
  #hero{
    height: 40vh
  }
  #hero .container {
    margin-right: 45px;
    margin-left: 45px;
  }
  .more,
  .more.demo{
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .more .section-title h2{
    font-size: 15px
  }
  .services .icon-box {
    box-shadow: none;
  }
  .services .icon-box.haic {
    box-shadow: none;
    background: transparent;
}
  .whyus {
    text-align: center;
  }
  .team .member {
    width: 100%;
    box-shadow: none;
    background: none;
    border-bottom: 1px solid #78c48c;
  }
  .team .member .image {
    margin: 30px auto;
  }
  .mobile{display:inline-block !important}
  .screen{display:none !important}
  .section-title.mobile{
    font-size: 14px;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .more.cookie{
    width: 100%;
    padding: 40px 20px 20px 20px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
  }
  .searchdiv{
    font-size: 13px;
    width: 100%;
  }
  .leftbar,
  .brand-hold{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding-top: 20px;
    border-radius: 0;
    width: 100%;
    z-index: 100000;
  }
  .leftbar.hide{display:none}
  .catelog{
    position: relative;
  }
  .dTs_info {
    width: 100%;
    text-align: center;
    margin: 4em 0 2em 0
  }
  .dTs_paginate {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 0
  }
  .dTs_paginate .paginate_button {
    margin-top: 8px;
  }
  table.fgm tbody tr{
    position: relative;
    flex-grow: 1;
  }
  table.fgm tbody tr td .company{
    left: 6px;
    top: 6px;
    border-radius: 8px;
  }
  .leftbar{
    background: #fff;
    width: 100%;
    height: 100%;
    float: none;
    transition: ease-in-out 0.3s;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    z-index: 100000
  }
  .rightbar{
    float: none;
    width: 100%;
    left: 0;
  }
  .inbar{
    position: absolute;
    top: 60px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding-bottom: 10px;
    background: #fff;
    border-top: 1px solid #c9c9c9;
    overflow: auto;
  }
  .leftbar .close{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 30px;
    z-index: 100;
  }
  .leftbar h6{
    position: absolute;
    top: 13px;
    left: 10px;
  }
  .section-head .secmore{
    display: block;
    left: 0;
    height: 100%;
    margin: 0;
  }
  .section-head .secmore .fa{
    position: absolute;
    right: 0;
  }
  table.category.no-footer{
    margin-top: 10px;
  }
  table.category tbody tr td div{
    margin: 5px 0;
  }
  table.fgm tbody tr td .sheet,
  table.fgm tbody tr td .enlarge,
  table.fgm tbody tr td .moreinfo{
    display: block;
  }
}

@media (max-width: 525px) {
  .box-padding {
    padding: 5px !important;
  }
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
