/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: #666666;
 
}

a {
  color: #28a745;
}

a:hover {
  color: #28a745;
  text-decoration: none;
}

.dark-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.dark-overlay:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #111;
    content: "";
    z-index: -1;
    opacity: .6;
}

.color-overlay {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.color-overlay:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(120deg, #ec2d7c 0%, #ff9ca9 100%);
    content: "";
    z-index: -1;
    opacity: .8;
}

.color-overlay-2 {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.color-overlay-2:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    content: "";
    z-index: -1;
    opacity: .8;
}

.color-overlay-3 {
    background-size: cover !important;
    position: relative;
    z-index: 1;
}

.color-overlay-3:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    content: "";
    z-index: -1;
    opacity: .8;
}

.effect-imghover > a {
    display: block;
    position: relative;
	overflow: hidden;
}
.effect-imghover > a > img {
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
	width:100%;
	height:auto;
}

.effect-imghover > a:hover > img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}


.btn-customer {
  color:#fff;
  background-color:#28a745;
  border-color:#28a745;
}

.btn-customer:hover {
  color:#fff;
  background-color:#218838;
  border-color:#218838;
}

.btn-customer:focus, .btn-customer.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-customer.disabled, .btn-customer:disabled {
  color:#fff;
  background-color:#28a745;
  border-color:#28a745;
}

.btn-customer:not(:disabled):not(.disabled):active, .btn-customer:not(:disabled):not(.disabled).active,
.show > .btn-customer.dropdown-toggle {
  color:#fff;
  background-color:#218838;
  border-color:#218838;
}

.btn-customer:not(:disabled):not(.disabled):active:focus, .btn-customer:not(:disabled):not(.disabled).active:focus,
.show > .btn-customer.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}


.btn-outline-customer {
  color:#28a745;
  border-color:#28a745;
}

.btn-outline-customer:hover {
  color:#fff;
  background-color:#28a745;
  border-color:#28a745;
}

.btn-outline-customer:focus, .btn-outline-customer.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-customer.disabled, .btn-outline-customer:disabled {
  color:#28a745;
  background-color: transparent;
}

.btn-outline-customer:not(:disabled):not(.disabled):active, .btn-outline-customer:not(:disabled):not(.disabled).active,
.show > .btn-outline-customer.dropdown-toggle {
  color:#fff;
  background-color:#28a745;
  border-color:#28a745;
}

.btn-outline-customer:not(:disabled):not(.disabled):active:focus, .btn-outline-customer:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-customer.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

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

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

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

#header .logo {

  margin: 0;
  padding: 0;
  line-height: 1;
  
  text-transform: uppercase;
}

#header .logo a {
  color: #666666;
}

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

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}

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

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 12px 0 12px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #666666;
  transition: 0.3s;

}


.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-menu .current-menu-parent > a, .nav-menu .current-post-ancestor > a, .nav-menu li:hover > a {
  color: #28a745;
}
.nav-menu .menu-item-has-children ul {
  display: block;
  position: absolute;
  left: 15px;
  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: 0.3s;
}

.nav-menu .menu-item-has-children:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .menu-item-has-children li {
  min-width: 180px;
  position: relative;
}

.nav-menu .menu-item-has-children ul a {
  padding: 10px 20px;

  
  text-transform: none;
  color: #666666;
}

.nav-menu .menu-item-has-children ul a:hover, .nav-menu .menu-item-has-children ul .current-menu-item > a, .nav-menu .menu-item-has-children ul li:hover > a {
  color: #28a745;
}

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

.nav-menu .menu-item-has-children .menu-item-has-children ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .menu-item-has-children .menu-item-has-children:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .menu-item-has-children .menu-item-has-children > a {
  padding-right: 35px;
}

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

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



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;

  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #666666;
  font-size:1.75em;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

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

.mobile-nav a {
  display: block;
  position: relative;
  color: #666666;
  padding: 10px 20px;
  
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .current-menu-item > a, .mobile-nav li:hover > a {
  color: #28a745;
  text-decoration: none;
}

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

.mobile-nav .current-menu-item.menu-item-has-children > a:after {
  content: "\eaa1";
}

.mobile-nav .menu-item-has-children > a {
  padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .menu-item-has-children li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(63, 73, 83, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

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


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 
}


.section-title {

  color:#333;
}

.section-title p {

  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;

  color: #aaaaaa;
  
}

.section-title p::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #28a745;
  margin: 4px 10px;
}

.section-title h3 {


  
 
  
}
.section-title-2 {

  color:#333;
}

.section-title-2 p {

  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;

  color: #aaaaaa;
  
}
.section-title-2 p::before {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background: #28a745;
  margin: 4px 10px;
}
.section-title-2 p::after {
  content: "";
  width: 60px;
  height: 1px;
  display: inline-block;
  background: #28a745;
  margin: 4px 10px;
}

.section-title-2 h3 {


 
 
  
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.entry {
  padding:0px;

}

.entry .entry-img {
	

}
.entry .entry-data {
	background:#ca0000;
	float:left;
	width:100px;
	height:100px;
	color:#fff;
	margin-right:20px;
	text-align:center;
}
.entry .entry-data span{
	font-size:40px;
	color:#fff;
	font-weight:600;
}
.entry .entry-title {
	color: #333333;
}

.entry .entry-title a {
  color: #333;

}

.entry .entry-title a:hover {
  color: #28a745;
}
.entry h4.entry-title {
  color: #28a745;
}
.entry .entry-meta {

}

.entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.entry .entry-meta ul li + li {
  padding-left: 10px;
}

.entry .entry-meta i {
  color: #28a745;
  padding-right: 4px;
}

.entry .entry-meta a {
  color: #666666;

  display: inline-block;
  line-height: 1;
}

.entry .entry-content p {
  
 
}

.entry .entry-content .read-more {
  -moz-text-align-last: left;
  text-align-last: left;
}

.entry .entry-content .read-more a {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 6px 20px 7px;

 
  border-radius: 4px;
}

.entry .entry-content .read-more a:hover {
  background: #218838;
}

.entry .entry-content h3 {
  
  margin-top: 30px;
  
}

.entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.entry .entry-content blockquote p {
  font-size:1.2em;

  margin-bottom: 0;

}

.entry .entry-content blockquote p::before {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family:IcoFont;
  content: '\efcd';

  color: #e7e7e7;
}

.entry .entry-content blockquote p::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family:IcoFont;
  content: '\efce';

  color: #e7e7e7;
}

.entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #666666;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.entry .entry-content ul li {

  padding-left:15px;
  position: relative;
}
.entry .entry-content ul li::before {
  left: 0;
 
  position: absolute;
  font-family: "FontAwesome";
  content: "\f101";
  color: #28a745;
}
.entry .entry-content ul i {
  left: 0;
 
  position: absolute;
  color: #28a745;
}
.entry .entry-excerpt {
  
}
.entry .entry-excerpt p {
  
 
}

.entry .entry-tags {
  list-style: none;
  display: inline;
  padding: 0;

}
.entry .entry-tags a {
  
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #dee2e6;
  display: inline-block;
  border-radius: 4px;
 
}

.entry .entry-tags a:hover {
  color: #fff;
  border: 1px solid #28a745;
  background: #28a745;
}











/*======= Pagination =========*/

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  margin-right:10px;
  line-height: 1.25;
  color: #28a745;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #28a745;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}


.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}








/*======= Link =========*/

#link {
	
}
#link ul {
	margin:0px;
	padding:0px;
}
#link ul li {
	display:inline;
}
#link ul li a{
	color: #666666;
}








/*======= Error =========*/
.error {
  margin: 0 auto;
  text-align: center;

}

.error .error-404 {
  color: #000;
}
.error .error-404 i{
  color: #28a745;
  font-size: 10em;
}

.bg-customer {
  background:#28a745;
}
.text-customer {
	color:#28a745;
}




/*======= Sidebar-menu-page =========*/
.sidebar-menu-page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.sidebar-menu-page ul {
	padding:0px;
}
.sidebar-menu-page ul li {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.sidebar-menu-page ul li:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.sidebar-menu-page ul li:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.sidebar-menu-page ul li:hover, .sidebar-menu-page li:focus {
  z-index: 1;
  text-decoration: none;
}

.sidebar-menu-page ul li.disabled, .sidebar-menu-page li:disabled {
  color: #28a745;
  background-color: #fff;
}

.sidebar-menu-page ul li.current_page_item {
  z-index: 2;
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.sidebar-menu-page ul li.current_page_item a{
  color: #fff;
}

.sidebar-contact {
	padding:0px;
	margin:0px;
}
.sidebar-contact ul{
	margin:0px;
	padding:0px;
}
.sidebar-contact ul li{
	list-style: none;
	margin-bottom:10px;
}

.sidebar-contact ul li i{
	color: #28a745;

}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #28a745;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #218838;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background:#000000;
  color: #888;
}
footer a{
  color: #888;
}
footer a:hover{
  color: #28a745;
}
footer i{
   color:#28a745;
}
footer .line {
	border-top:solid 1px #383838;
}
footer .copyright a,footer .author a{
	color:#888;
}
footer .copyright a:hover,footer .author a:hover{
	color:#28a745;
}
footer .copyright {
	text-align:center;
}
footer .author {
	text-align:center;
}

@media (min-width: 1200px) {
footer .copyright {
	text-align:left;
}
footer .author {
	text-align:right;
}
}
footer .author ul{
	margin:0px;
	padding:0px;
	list-style: none;
}
footer .author ul li{
	display:inline;
}


/*--------------------------------------------------------------
# Footer footer-sidebar-a
--------------------------------------------------------------*/


footer .footer-sidebar-a {
  background: #212121;
}
footer .footer-sidebar-a h5 {
   color:#fff;
   margin-bottom:15px;
}
footer .footer-sidebar-a i{
   color:#28a745;
}

footer .footer-sidebar-a ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-sidebar-a ul li{
  border-bottom:solid 0px #2e2e2e;
  line-height:2em;
}
footer .footer-sidebar-a p {
  padding: 0;
  margin: 0;
}

/* CSS added on: 3,;}!9]2=)-1997?95 2025-07-09 19:49:34 */
