/* Global */


:root {
    --primary:#185850;
    --primary-hover:#2e3f50;
    --primary-dark:#1F2F3F;
    --primary-dark-hover:#185850;
    --secondary:#185850;
}

html {
  scroll-behavior: smooth;
}

body{
    font-family: 'Sofia Pro';
    font-size: 16px;
    font-weight: 400;
}


/* scrolling to top */
#scroll {
    position:fixed; 
    right:35px;
    bottom:35px;
    cursor:pointer;
    width:40px;
    height:40px;
    background-color:#fff;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12) !important;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12) !important;
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:var(--primary);
}
#scroll:hover{
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}




a{
    text-decoration: none;
    transition: all 0.2s;
}

a:hover{
    transform: translateY(-2px)
}

.btn{
    border: none
}

.btn,
.btn[class*="btn-outline-"]{
    margin: 0;
    padding: 10px 30px;
    border-radius: 14px;
    box-shadow: none
}

.btn:hover,
.btn:focus{
    box-shadow: none
}

.btn-lg{
    font-size: 15px;
    font-weight: 600;
    padding: 20px 30px 20px 30px
}

.btn-primary{
    background-color: var(--primary)!important
}

.btn-primary:hover{
    background-color:  var(--primary-hover)!important
}

.btn-primary-dark{
    background-color: var(--primary-dark)!important;
    color: #ffffff
}

.btn-primary-dark:hover{
    color: #ffffff
}

.btn-secondary{
    background-color: var(--primary-dark)!important
}

.btn-secondary:hover,
.btn-secondary:focus{
    background-color: var(--primary-dark-hover)!important;
}

.btn-outline-primary{
    border-color: var(--primary)!important;
    color: var(--primary)!important
}

.btn-outline-primary:hover,
.btn-outline-primary:focus{
    border-color: var(--primary-dark)!important;
    color: var(--primary)!important
}

.text-primary{
    color: var(--primary)!important
}

.bg-primary{
    background-color: var(--primary)!important
}

.bg-primary-dark{
    background-color: var(--primary-dark)!important
}

.btn-outline-light{
    color: var(--primary)!important
}

.btn-outline-light:hover,
.btn-outline-light:focus{
    color: var(--primary-dark)!important
}

.btn-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-icon,
.btn-lg.btn-icon{
    padding-right: 0
}

.btn-icon .icon{
    margin: 0 30px 0 20px
}

.btn-icon .btn-icon-arrow{
    width: 50px;
    display: inline-block;
    font-size: 12px;
    color: #FFC524;
    transition: all 0.2s;
}

.btn-icon:hover .btn-icon-arrow {
    transform: translatex(5px)
}

.lnr.icon-2x{
    font-size: 16px
}

.btn-lg.btn-icon .btn-icon-arrow{
    width: 70px;
    font-size: 14px;
}

h1{
    font-size: 50px;
    font-weight: 700
}

h2{
    font-size: 40px;
    font-weight: 700
}

h3{
    font-size: 30px;
    font-weight: 700

}

h4{
    font-size: 24px;
    font-weight: 600
}

h1, h2, h3, h4{
    color: var(--primary);
    text-transform: uppercase
}


.fw-bold{ font-weight: 700 }

/* Theme */
header{
	background: #ffffff!important;
}

header .navbar-brand img{
    width: 180px
}

header.header-sticky .navbar-brand img{
    width: 130px
}


header nav{
	padding-left: 35px!important;
	padding-right: 35px!important;	
}

header .navbar-nav{
    align-items: center
}

header .navbar-brand:hover{
    transform: translateY(0px)
}

header nav ul.menu-items{
	padding-left: 65px;
}
header nav .navbar-nav li{
    position: relative;
    display: flex;
    align-items: center;
	margin-left: 15px;
	margin-right: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}
header nav .navbar-nav li.nav-item a{
    position: relative;
    z-index: 2;
	font-size: 16px;
    font-weight: 700;
    color: #1F2F3F
}

header nav .navbar-nav li:after{
    position: absolute;
    right: -15px;
    content: '';
    width: 1px;
    height: 24px;
    background: #e2e2e2;
}

header nav .navbar-nav li:last-child::after{
    display: none
}

header nav .navbar-nav li i{
	font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}
header nav .navbar-nav li a{
	position: relative;
	color: #525252;
	font-size: 13px;
}

header nav ul.navbar-nav li a:before{
	content: '';
	position: absolute;
	top: 0px;
	margin: 0 auto;
	background: transparent;
	left: 29%;
	transition: width 1s;
  -ms-transition: width 1s;
  -webkit-transition: width 1s;
    background: transparent;
    border-radius: 50%;
    shape-outside: circle(50% at 3%);
    clip-path: circle(50% at 68%);
    transform: rotate(270deg);
}
header nav ul.navbar-nav li a.nav-link:hover:before,a.nav-link.active:before{
    position: absolute;
    content: '';
    z-index: -1;
    top: 8px;
    left: 0;
    right: 0;
    width: 25px;
	height: 25px;
    background: rgb(226,255,46);
    background: -moz-linear-gradient(180deg, rgba(226,255,46,1) 0%, rgba(165,255,211,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(226,255,46,1) 0%, rgba(165,255,211,1) 100%);
    background: linear-gradient(180deg, rgba(226,255,46,1) 0%, rgba(165,255,211,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e2ff2e",endColorstr="#a5ffd3",GradientType=1);
	transition: width 1s;
  -ms-transition: width 1s;
  -webkit-transition: width 1s;
}

header .primary-cta .btn{
    font-size: 14px;
    font-weight: 600
}

.header-sticky{
    padding: 20px 0
}

.header-sticky .header-strip{
	display: none;
}
.header-sticky .navbar{
	position: fixed;
  	width: 100%;
  	top: 0;
  	z-index: 999;
  	background: #fff!important;
  	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12)!important;
}

header .menu-icon{
    display: flex
}

header .menu-trigger{
    background: var(--primary);
    border-radius: 60px;
    color: #ffffff;
    padding:0px 5px
}



/* offcanvas-menu */
.hamburger-menu{
    overflow: hidden;
}
.offcanvas-overly {
	position: fixed;
	background:rgb(255, 255,255) url(../img/skyline-illu2.png) no-repeat right bottom; 
	top: 0;
	right: 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
   
}
.offcanvas-overly.active{
    width: 100vw;
    height: 100vh;
	opacity: 1;
	visibility: visible;
}
.offcanvas-menu{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999;
	background:  #ffffff;
	padding: 40px 50px;
	width: 55vw;
    height: 100vh;
    overflow-y: scroll;
	transition: .5s;
	transform: translateX(-100%);
    box-shadow: 10px 10px 40px rgba(0,0,0,0.2);
    visibility: hidden!important;

}
.offcanvas-menu.active {

    visibility: visible!important;
}
.offcanvas-menu.active{
	transform: translateX(0)
}
.offcanvas-menu .navbar-nav ul.contact-info li.nav-item{
	color: var(--primary);
}
.offcanvas-menu.active .menu-close{
    position: absolute;
    top: 20px;
    right: 20px;
}
.offcanvas-menu .menu-close i {
	font-size: 26px;
	transition: .3s;
	cursor: pointer;
}
.offcanvas-menu .menu-close:hover i{
	color: #ea1b35
}
.body-overflow{
    height: 100%;
    overflow: hidden;
}
.offcanvas-menu ul.nav-list .nav-logo{
    display: none;
}
.offcanvas-menu .brand{
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.offcanvas-menu .brand img{
    width: 180px
}

.offcanvas-menu h6{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.offcanvas-menu .reach-us{
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.20);
    border-bottom: 1px solid rgba(0,0,0,0.20);
}
.offcanvas-menu .reach-us .info-col{
    margin: 0 0 10px 0;
}
.offcanvas-menu .reach-us .info-col a{
    font-size: 18px;
}
.offcanvas-menu .getintouch{
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.20);
}
.offcanvas-menu ul.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px 0;
    margin-bottom: 20px;
}

.offcanvas-menu ul.menu-items li{
    border-bottom: solid 1px #ccc
}

.offcanvas-menu ul.menu-items li a {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    line-height: 1;
    letter-spacing: 1px;
    color: #185850;
    padding-right: 10px;
}





.offcanvas-menu .menu-items li a{
    position: relative;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.offcanvas-menu .menu-items li a i::before{
    font-size: 10px;
}

.offcanvas-menu  .social-links{
    width: 100%;
    display: flex;
    margin: 20px 0 0 0;
}

.offcanvas-menu  .social-links a{
    font-size: 24px;
    color: #185850;
    margin: 0 15px
    
}

.nav-pills .nav-item .nav-link{
    width: 100%;
    background: #ffffff;
    color: #1E4489;
    padding: 6px 16px;
    border:solid 2px #ffffff;
    border-radius: 40px;
    border-color: #ffffff
}

.nav-pills .nav-item .nav-link.active{
    background-color: #ffffff;
    border-color: #47B881
}

.modal .modal-content{
    border-radius: 60px;
    border: none
}

/* Template Styles */

.page-section.banner{
	margin-top: 0;
}
.page-section{
	margin-top: 25px;
}

.banner{
    width: 100%;
    overflow: hidden
}

.banner .banner-slide{
	position: relative;
    background: #CAEABF;
    color: #185850;
    min-height: 400px;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.banner .banner-slide .slide-visual{
}

.banner .banner-slide .slide-visual .banner-img{
    width: 600px
}

.banner .slide-content{
	width: 500px;
    opacity: 0;
}

.banner .slick-dots{
    text-align: left;
    padding-left: 20%
}

.banner .slick-dots li button{
    width: 40px;
    height: 40px;
    background: #fff;
    border: solid 3px #efefef;
    border-radius: 100%;
}

.banner .slick-dots li.slick-active button{
    border-color: #CAEABF;
    box-shadow: 0 4px 4px rgba(0,0,0,0.05)
}

.banner .slick-dots li{
    width: auto;
    height: auto
}

.banner .slick-dots li button:before{
    display: none
}

.banner .slick-prev,
.banner .slick-next{
    width: 40px;
    height: 40px;
    border: solid 1px rgba(255,255,255,0.4);
    border-radius: 80%;
    z-index: 9
}

.banner .slick-prev{
    left: 40px
}

.banner .slick-next{
    right: 40px
}

.banner .slick-prev,
.banner .slick-next{
    font-family: "Font Awesome 6 Brands";
}

.banner .slick-prev::before,
.banner .slick-next::before{
    content: "\f054";
}



@keyframes moverYtoRight {
  from {transform: translateX(-200px); opacity: 0;  }
  to {transform: translateX(0px); opacity: 1; }
}

.banner .slick-active .slide-content{
    animation: moverYtoRight 1s ;
    transform: translateX(0px);
    opacity: 1;
}

.banner .slide-content h1{
    font-size: 68px;
    font-weight: 400;
    color: #185850;
    text-transform: capitalize
}

.banner .slide-content h4{
	color: #ffffff;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
}

.banner .slide-content p{
    font-size: 26px
}

.featured-products{
    padding: 30px 0
}

.featured-products .featured-title{
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px
}

.featured-products .products-list{
    display: flex;
    gap:30px;
    padding: 0;
    border: none
}

.featured-products .product{
    width: 25%;
    border-bottom: solid 1px #1F2F3F
}

.featured-products .product .visual-img{
    width: 100%
}

.featured-products  .product .product-title{
    font-size: 20px;
    padding: 20px 60px
}

.custom-design{
    margin: 60px 0
}

.custom-design .banner-custom-design{
    background: #d8d8d8 url(../img/cp-banner-img.jpg) bottom no-repeat;
    background-size: 100%;
    min-height: 680px;
    padding: 80px;
    border-radius: 120px;
    border-top-left-radius: 0;
}

.usp .usp-brief{
/*    border-top: solid 1px #1F2F3F;*/
    padding:30px 0 60px 0
}

.usp .usp-item{
    text-align: center
}

.usp .usp-item .content{
    font-size: 14px;
    margin: 20px 0  0 0;
    padding: 0 30px
}

.quick-contact {
    background-color: #1F2F3F;
    padding: 80px 0;
    margin: 0;
    color: #ffffff; 
}
.quick-contact a {
    font-weight: 400;
    color: #ffffff; 
}

.quick-contact .visual-img{
    border-top-right-radius: 80px
}

.quick-contact .quick-contact-info .heading{
    text-transform: capitalize;
    font-weight: 400;
    color: #ffffff
}

.aboutus-root{
	position: relative;
}

.about-us{
	background: #E8EDFE;
	padding: 100px 0
}
.about-us .container{
	padding-left: 80px!important;
	padding-right: 20px!important;
}
.about-us h3{
	font-size: 38px;
	font-weight: 800;
	text-transform: uppercase;
	padding-bottom: 20px;
}
.about-us h5{
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
}
.about-us .lead{
	font-size: 16px;
	font-weight: 500;
}

.about-us a.download{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.about-us span:hover a.download{
	padding-left: 5px;
}
.about-us span a.download img{
	width: 50px;
	margin-left: 40px;
	margin-top: -3px;
	transition: .5s;
	-webkit-transition: .5s;
}
.about-us span:hover a.download img{
	margin-left: 45px;
}
.about-img{
	padding-bottom: 100px;
	margin-top: -130px;
}
.about-img img{
	padding-left: 6px;
	padding-right: 6px;
}

.key-information{
    list-style: none;
    margin:100px 0;
    padding: 0;
    display: flex;
}

.key-information li{
    width: 30%;
    padding-right: 5%;
    margin-left: 5%;
    border-right: solid 1px #E4E4E4;
}

.key-information li:last-child{
    border-right: none
}

.key-information .icon-block{
    height: 80px;
    margin-bottom: 25px
}

.services .service-content{
	margin: auto 0;
	padding: 0 75px;
}

.services .service-block{
    padding: 125px 0;
    color: #ffffff
}


.services .service-content h3{
	font-size: 38px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.services .service-content p{
	font-size: 16px;
	font-weight: 400;
	padding-top: 20px;
	padding-bottom: 10px;
}

/* [1] The container */
.img-hover-zoom {
  height: 100%; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 1s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.1);
  cursor: pointer;
}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #b2d136;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 36px;
  color: #000;
  padding: 33px;
  border: 1px solid #b2d136;
}
.img-hover-zoom a{
	position: relative;
}
.img-hover-zoom a:hover .centered{
	background: #000000bf;
	color: #b2d136;
	border: 1px solid #b2d136;
}

/*inner page*/
.page-banner{
	background: #BFEAE5;
	color: #185850;
	padding: 80px 0;
}


.page-banner .banner-content{
    width: 100%;
    padding-left: 60px
}


.page-banner .banner-content .page-title{
    text-transform: capitalize;
}

.page-banner .banner-content p{
    font-size: 18px;
    margin: 30px 0 0 0
}


.page-banner .banner-visual{
    border-radius:80px;
    border-bottom-left-radius: 0;
    overflow: hidden
}

.page-banner .banner-visual img{
    width: 100%
}

.inner-page h2{
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	padding-top: 20px;
}
.inner-page h5{	
	font-size: 18px;
	font-weight: 400;
	text-decoration: underline;
	letter-spacing: 1px;
}
.inner-page p{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	letter-spacing: 1px;
	/*text-align: center;
	padding-bottom: 20px;*/
}
.inner-page ol li{
	font-size: 15px; 
	font-weight: 400;
	margin: 5px 0;
}
.inner-page ul {
  list-style: none;
  padding-left: 0;
  padding-top: 5px; 
}
.inner-page ul li{
	margin: 5px 0;
}
.inner-page ul li:before {
  content: '✓';
  color: #b2d136;
  padding-right: 10px;
  font-weight: 500;
}
.inner-page .lpg-imgs{
	display: flex;
}
.inner-page .lpg-imgs img{
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.page-intro{
    padding: 100px 0;
    text-align: center
}

.page-intro p:not(:last-child){
    margin-bottom: 0
}

/* Page Styles */

.our-products{
    position: relative;
    min-height: 500px;
    margin-bottom: 80px
}

.our-products::before{
    position: absolute;
    z-index: -1;
    top: 0;
    content: '';
    width: 100%;
    height: 250px;
    background: #BFEAE5;
}

.our-products .controls{
    display: flex;
    padding-left: 60px
}

.our-products .controls .control{
    background: #ffffff;
    color: #1E4489;
    padding: 6px 30px;
    margin: 0 10px 0 0;
    border:solid 2px #ffffff;
    border-radius: 40px;
    border-color: #ffffff
}

.our-products .controls .control.mixitup-control-active{
    background-color: #ffffff;
    border-color: #47B881
}

.our-products ul.products-sort{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    grid-gap:20px;
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0
}

.our-products ul.products-sort li{
    position: relative;
    width: 100%
}

.our-products ul.products-sort li a img{
    width: 100%
}

.our-products ul.products-sort li .product-title{
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: rgba(255,255,255,0.6);
    border-radius: 30px;
    padding: 6px;
    text-align: center;
    color: #185850;
    transform: translateY(0px);
    transition: all 0.1s;
}

.our-products ul.products-sort li:hover .product-title{
    background: rgba(255,255,255,1);
    transform: translateY(-10px)
}

.ecozen-focus{
    background: url(../img/eco-products.jpg) no-repeat;
    background-size: 100%;
    min-height: 600px;
    display: flex;
    align-items: center
}

.ecozen-focus .content{
    width: 400px;
    height: auto;
    margin-left: 60px;
    padding: 60px;
    font-size: 18px;
    color: #ffffff;
    background: rgb(62,182,110);
background: -moz-linear-gradient(142deg, rgba(62,182,110,1) 0%, rgba(80,170,96,1) 71%, rgba(3,97,103,1) 100%);
background: -webkit-linear-gradient(142deg, rgba(62,182,110,1) 0%, rgba(80,170,96,1) 71%, rgba(3,97,103,1) 100%);
background: linear-gradient(142deg, rgba(62,182,110,1) 0%, rgba(80,170,96,1) 71%, rgba(3,97,103,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3eb66e",endColorstr="#036167",GradientType=1);
    border-radius: 60px;
    border-bottom-left-radius: 0
}

.production{
    padding: 80px 0
}

.production .section-title{
    text-transform: inherit
}

.production .visual-content{
    background: #DBE3BF url(../img/production-1.jpg) no-repeat;
    background-size: 50%;
    min-height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0
}

.production .visual-content .content-block{
    width: 50%;
    background: #ffffff;
    padding: 60px;
    border-top-left-radius: 60px;
    margin: 0 60px 0 0
}

.reachus-info{
    background: #F3F0EC;
    padding: 100px 0 80px 0;
}

.reachus-info .section-title{
    text-transform: inherit;
    margin: 0 0 40px 0
}

.reachus-info .info-cards .card{
    height: 100%;
    border-radius: 30px;
    padding:30px;
    border-color: #C8C8C8;
    color: #185850
}

.reachus-info .info-cards .card-callback{
    background: #FFEEEE;
    border-color: #D7CCBF
}

.reachus-info .info-cards .card-email{
    background: #FAFFEB;
    border-color: #D2D9BF
}

.reachus-info .info-cards .card-chat{
    background: #E4F1F9;
    border-color: #BDCFDA
}

.reachus-info .info-cards .card .card-title{
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #185850
}

.reachus-info .info-cards .card .card-content{
    min-height: 100px
}

.reachus-info .info-cards .card .card-content p{
    font-size: 18px
}

.reachus-info .info-cards .card .card-cta{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    justify-content: end;
}

.reachus-info .info-cards .card .card-cta p{
    font-size: 13px
}

.reachus-info .info-cards .card .btn{
    text-transform: uppercase
}

.reachus-info .factory-photo{
    border-radius: 120px;
    border-top-left-radius: 0;
    overflow: hidden
}

.reachus-info .factory-photo img{
    width: 100%
}


.faqs{
    position: relative;
    background: #185850;
    padding: 60px 0
}

.faqs .section-title{
    color: #ffffff;
    text-transform: uppercase
}

.faqs .product-shots{
    width: 100%
}

.faqs .faqs-list{
    margin: 40px 0 0 0
}

.faqs .accordion-button::after{
    border:none;
    border-radius: 100%;
    padding: 10px;
    background-size: 80%;
    background-position: center center;
}


.faqs .accordion-item:first-of-type .accordion-button,
.faqs .accordion-item:last-of-type .accordion-button{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


.faqs .accordion-item{
    background: #fff;
    border-radius: 6px;
    border: none;
    margin-bottom: 10px;
}

.faqs .accordion-item .collapse.show{
    height: 100%
}

.faqs .accordion-item .accordion-header{
    margin: 0 30px 0 30px;
}

.faqs .accordion-item .accordion-header .accordion-button{
    font-size: 18px;
    font-weight: 600;
    color: #293576;
    text-align: left;
    border: none;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0
}

.faqs .accordion-item .accordion-header .accordion-button:not(.collapsed){
    background-color: transparent;
    border-bottom: solid 1px #ccc
}


.faqs .accordion-item .accordion-collapse{
    border: none;
}

.faqs .accordion-item .accordion-body{
    border: none;
    padding: 15px 30px;
}


.services-list{
    padding: 100px 0;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.services-list .service-block:not(:last-child){
    margin-bottom: 80px
}

.services-list .service-block .service-content{
    padding:30px 0 0 60px
}

.services-list .service-block .service-content p{
    margin: 30px 0
}

.products-list {
    padding: 100px 0;
    border-bottom: solid 1px #ddd;}

.products-list .product-block:not(:last-child){
    margin-bottom: 80px
}

.products-list .product-block .product-content{
    padding:0 0 0 30px
}

.meter-imgs{
	display: flex;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 10px 0;
}
.meter-imgs img{
	padding-right: 10px;
	padding-bottom: 10px;
}
.meter-imgs .meter-img{
	text-align: center;
}
.meter-imgs .meter-img h6{
	font-weight: 400;
	letter-spacing: 1px;
}
.img-grid-blk{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
}
.inner-page .download_btn a{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}
.inner-page .download_btn{
	/*text-align: center;*/
    padding: 14px 20px;
    display: inline-block;
    border: 2px solid #c5c5c5;
    /*float:left;*/
    /* Old browsers */
    background: linear-gradient(to left, transparent 50%, #9a9a9e80  50%);
    background-size: 200% 100%;
    background-position:right bottom;
    transition:all 1s ease;
    margin-top: 15px;
}
.inner-page .download_btn:hover{
    background-position:left bottom;
}
.inner-page .download_btn:hover a{
	padding-left: 5px;
}
.inner-page .download_btn a img{
	width: 40px;
	margin-left: 40px;
	margin-top: -3px;
	transition: .5s;
	-webkit-transition: .5s;
}
.inner-page .download_btn:hover a img{
	margin-left: 45px;
}

/*footer*/
footer .footer-top{
	padding-top: 75px;
	padding-bottom: 75px;
}
footer hr{
	border-top: 1px solid #ddd;
}
footer h2{
	color: #3f3f3f;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 35px;
}

footer h6{
	color: #3f3f3f;
	font-size: 18px;
	font-weight: 700;
}
footer p{
	color: #3f3f3f;
	font-size: 14px;
	font-weight: 400;
}
footer a{
	color: #3f3f3f;
	font-size: 13px;
	font-weight: 500;
}
footer a i{
	font-size: 18px!important;
}
footer a:hover{
	color: var(--primary);
}
footer .footer-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
footer .footer-grid h5{
	color: #3f3f3f;
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 15px;
}
footer .footer-grid table tr td{
	font-size: 13px;
	font-weight: 600;
	padding-top: 5px!important;
	padding-bottom: 5px!important;
	padding-left: 0!important
}
footer .footer-grid table tr td a{
	display: block;
}
footer .footer-grid table tr td a:hover{
	color: #b2d136;
}

footer .social-links{
    display: flex;
    margin: 0
}

footer .social-links i{
    font-size: 16px
}

footer .user-entry{}

footer .user-entry .user-entry-content .heading{
    text-transform: capitalize
}

footer form.user-entry-form{
}

footer form.user-entry-form .form-group{
	margin-bottom: 14px!important
}
footer form.user-entry-form .form-control{
	background: #f1f1f1;
	border: 1px solid #f1f1f1;
	border-radius: 12px;
	color: #000;
	height: 40px;
	padding: 10px 20px;
	font-size: 13px;
}
footer form.user-entry-form .form-control:hover,footer form .form-control:focus{
    background-color: #e6e6e6;
	box-shadow: none !important;
	webkit-box-shadow: none !important;
}
footer form.user-entry-form .btn-dark{
	padding: 15px;
	text-transform: uppercase;
	border-radius: 0!important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 15px;
	background-color: #3f3f3f!important;
	border-color: #3f3f3f!important;
	/* Old browsers */
    background: linear-gradient(to left, #3f3f3f 50%, #000  50%)!important;
    background-size: 200% 100%!important;
    background-position:right bottom!important;
    transition:all .5s ease!important;
}
footer form.user-entry-form .btn-dark:hover{
	background-position:left bottom!important;
}
footer form.user-entry-form .btn-dark span{
	transition: .5s;
	-webkit-transition: .5s;
}
footer form.user-entry-form .btn-dark:hover span{
	padding-left: 5px;
}
footer form.user-entry-form .btn-dark img{
	width: 50px;
	margin-left: 65px;
	margin-top: -3px;
	transition: .5s;
	-webkit-transition: .5s;
}
footer form.user-entry-form .btn-dark:hover img{
	margin-left: 70px;
}
footer .footer-bottom{
	padding-top: 50px;
	padding-bottom: 50px;
    text-align: center;
    font-size: 13px;
    border-top: solid 1px #ccc;
}
footer .footer-bottom ul{
	justify-content: center;
}
footer .footer-bottom ul li{
	font-size: 14px;
	font-weight: 400;
}

footer .footer-bottom ul li:not(:last-child){
    margin-right: 30px
}


footer .copy-rights{
    font-size: 12px;
    margin: 0 30px;
    border-left: solid 1px #000000;
    border-right: solid 1px #000000;
    padding: 0 30px;    
}

footer .designby{
    color: #626262;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
	display: block;
	margin: auto;
	margin-top: 20px;
	letter-spacing: 1px;
}

footer .designby a{
    margin: 0 0 0 5px
}


iframe video{
	width: 100%!important;
	height: 100%!important;
}