/*Common CSS Start*/
@charset "UTF-8";
* {
  min-height: 0;
  min-width: 0;
}
@font-face {
  font-family: "CooperHewitt";
  src: url("../webfonts/cooperhewitt-bold-webfont.woff2") format("woff2"), url("../webfonts/cooperhewitt-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "CooperHewitt";
  src: url("../webfonts/cooperhewitt-medium-webfont.woff2") format("woff2"), url("../webfonts/cooperhewitt-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "CooperHewitt";
  src: url("../webfonts/cooperhewitt-light-webfont.woff2") format("woff2"), url("../webfonts/cooperhewitt-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: "CooperHewitt", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 18px;
  color: #111;
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none outside none;
  margin: 0px;
  padding: 0px;
}
ol li{
  list-style: decimal;
}
ol li p{
  line-height: 1.7;
  text-align: justify;
}
p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.3;
  text-align: justify;
}
.cust_container {
  padding: 0 !important;
  margin: 0 !important;
}
.container {
  max-width: 1600px !important;
  padding: 0 30px;
}
h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-size: 26px;
}

img {
  max-width: 100%;
}
.common-gap {
  margin-top: 76px;
}
/*Common Css End*/
/* Common Button Start*/
button {
  margin: 20px;
  outline: none;
}
.custom-btn {
  width: 130px;
  height: 42px;
  padding: 10px 26px;
  border: 2px solid #eb1c24;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.btn-9 {
  z-index: 2;
  transition: all 0.3s ease;
  overflow: hidden;
  font-size: 14px;
  color: #000;
}
.btn-9:after {
  position: absolute;
  content: " ";
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.btn-9:hover {
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(136, 116, 116, 0.2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  color: #fff;
}
.btn-9:hover:after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  background: #eb1c24;
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
/* Common Button End*/
/* Common Hedaing Start */
.common-heading {
  text-align: center;
  padding-bottom: 26px;
}
.sec-title .title {
  position: relative;
  color: #f53145;
  font-size: 26px;
  font-weight: 700;
  padding-right: 50px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
  text-transform: uppercase;
}
.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 8px;
  width: 40px;
  height: 2px;
  background-color: #266431;
}
.sec-title .title:after {
  position: absolute;
  content: '';
  right: 10px;
  bottom: 13px;
  width: 30px;
  height: 2px;
  background-color: #f53145;
}
/* Common Heading End */
/*Top Header Section Start*/
.top-navbar {
  background-color: #21333e;
}
.top-nav ul li {
  margin: 0 10px;
  padding: 10px 0;
}
.top-nav ul li a {
  color: #fff;
  font-size: 16px;
  opacity: 0.7;
}
.top-nav a:hover {
  color: #a5e9c9;
}
/*Top Header Section End*/
/*Main Header Section Start*/
.site-logo img {
  width: 180px;
}
.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 100%;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.sticky {
  background: #fff none repeat scroll 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
  box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
  -webkit-animation: 1.2s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 1.2s ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
  z-index: 11;
}
nav {
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
  box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
  -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
}
.navbar-collapse > ul > li {
  position: relative;
  padding: 19px 7px;
  height: 100%;
  display: flex;
  border-right: 1px solid #eb1c24;
}
.navbar-collapse > ul > li:last-child {
  border: none;
}

/* Mega Menu Styles - Adjusted to work with your existing CSS */
.nav-item.mega-menu {
  position: static !important;
}

.mega-menu-content {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  margin-top: 0;
  border-radius: 0;
  border: none;
}



.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li a {
  display: block;
  padding: 8px 15px;
  color: #333 !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px !important;
  text-transform: none;
}

.mega-menu-list li a:hover {
  color: #eb1c24 !important;
  padding-left: 20px;
  background: transparent;
}

.mega-menu-product {
  text-align: center;
  margin-bottom: 15px;
}

.mega-menu-product img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.mega-menu-content h5 {
  color: #eb1c24;
  padding-top: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
}

/* Adjustments for your existing hover effects */
@media (min-width: 767px) {
  .navbar-collapse > ul > li::before {
    content: "";
    position: absolute;
    height: 33.33%;
    width: 0;
    background-color: #eb1c24;
    right: 0;
    top: 33.33%;
    transition: all 0.5s;
  }
  .navbar-collapse > ul > li::after {
    content: "";
    position: absolute;
    height: 33.33%;
    width: 0;
    background-color: #eb1c24;
    left: 0;
    z-index: 0;
    bottom: 0;
    transition: all 0.5s;
  }
  .navbar-collapse > ul > li > a::before {
    position: absolute;
    content: "";
    height: 33.33%;
    width: 0;
    background-color: #eb1c24;
    bottom: 66.66%;
    left: 0;
    transition: all 0.5s;
  }
  .navbar-site .navbar-nav > li:hover a {
    color: #000 !important;
  }
  
  /* Mega menu hover adjustments */
  .nav-item.mega-menu:hover .mega-menu-content {
    display: block !important;
  }
  
  .nav-item.mega-menu .dropdown-toggle:hover {
    color: #000 !important;
  }
}
.navbar-collapse > ul > li:hover:before,
.navbar-collapse > ul > li:hover::after,
.navbar-collapse > ul > li:hover a::before {
  width: 100%;
}

.navbar-site .navbar-nav > li > a,
.navbar .dropdown-menu li a {
  color: #000 !important;
  font-weight: 400;
  letter-spacing: 0.25px;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 1;
}
.navbar-site .navbar-nav > li.active .dropdown-toggle{
  color: #fff;
}
.navbar-site .navbar-nav > li:hover .dropdown-item {
  color: #000 !important;
}
.navbar-site .navbar-nav > li.active {
  background-color: #eb1c24;
}
.navbar-site .navbar-nav > li.active a {
  color: #fff !important;
}
.sticky .navbar-nav li a,
.sticky .dropdown span {
  font-size: 14px;
}
.dropdown span {
  display: inline-block;
  position: relative;
  padding-right: 0.5rem !important;
  padding-left: 0 !important;
  color: #000;
  cursor: pointer;
  left: -7px;
  top: 3px;
  margin-top: 5px;
}
.dropdown .nav-link {
  display: inline-block !important;
}
.dropdown .dropdown-menu .nav-link {
  display: block !important;
}
.dropdown-menu {
  background: #fff !important;
  padding: 0px 0;
  margin: 0 0 0;
  border: 0px solid transition !important;
  border-radius: 0px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.4);
  -moz-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.4);
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.4);
}
.navbar .dropdown-menu li,
.sticky .navbar-nav .dropdown-menu li {
  border-bottom: 1px solid #eb1c24;
  line-height: 2;
}
.navbar .dropdown-menu li:last-child {
  border-bottom: none;
}
.navbar .dropdown-menu li a:hover {
  color: #eb1c24 !important;
}
.navbar-toggler {
  font-size: 2.25rem;
  color: #eb1c24;
  border: 1px solid #eb1c24;
}
.collapsed {
  color: #eb1c24;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mega-menu-content {
    position: static !important;
    width: 100% !important;
    box-shadow: none;
    border: none;
    padding: 0;
  }
  
  .mega-menu-content .row {
    display: block;
  }
  
  .mega-menu-content .col-md-3 {
    width: 100%;
    margin-bottom: 0;
    padding: 15px;
    border-bottom: 1px solid #eb1c24;
  }
  
  .mega-menu-content .col-md-3:last-child {
    border-bottom: none;
  }
  
  .mega-menu-list li a {
    padding: 10px 15px;
  }
}

@media (min-width: 624px) and (max-width: 824px) {
  .top-nav ul li a{
    font-size: 11px;
  }
}
@media (max-width: 635px){
.top-navbar{
    display: none;
  }
}
@media (max-width: 680px){
  .about-company{
      padding:0px;
  }
}
@media (max-width: 767px) {
  .navbar-collapse > ul > li{
    border-right: none;
  }
  .contact-form {
    padding: 12px !important;
  }
  .fees-body {
    padding: 12px !important;
  }
  .main-menu .nav-item {
    border-bottom: 1px solid #eb1c24;
  }
  .main-menu .nav-item:last-child {
    border-bottom: none;
  }
  .navbar-site .navbar-nav > li > a:hover::after,
  .navbar-site .navbar-nav > li.active > a::after {
    width: 0px;
  }
  .nav-item a {
    font-size: 16px;
  }
  .dropdown-menu li a {
    color: #eb1c24;
  }
  .dropdown span {
    background: #fff;
    padding: 3px 15px !important;
    float: right;
    margin: 5px 0;
    color: #eb1c24 !important;
  }

  .navbar .dropdown-menu li a:hover {
    color: black !important;
  }

  .navbar-collapse > ul > li {
    display: block;
  }
  
  /* Mega menu mobile adjustments */
  .nav-item.mega-menu .dropdown-toggle {
    display: inline-block;
  }
  
  .mega-menu-content {
    display: none;
  }
  
  .mega-menu-content.show {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .main-menu .collapse ul li {
    position: relative;
  }
  .main-menu .collapse ul li:hover > ul {
    display: block;
    margin-top: 0;
  }
  .main-menu .collapse ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    display: none;
  }
  .main-menu .collapse ul ul li {
    position: relative;
  }
  .main-menu .collapse ul ul li:hover > ul {
    display: block;
  }
  .main-menu .collapse ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    display: none;
  }
  
  /* Mega menu desktop positioning */
  .mega-menu-content {
    position: absolute !important;
    top: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 1119px) {
  .site-logo {
    max-width: 28%;
  }
  .navbar-site .navbar-nav > li > a,
  .navbar .dropdown-menu li a {
    font-size: 10px;
  }
}
@media (min-width: 767px) and (max-width: 884px) {
  .navbar-site .navbar-nav > li > a, .navbar .dropdown-menu li a{
    letter-spacing: 0;
  }
  .site-logo {
    max-width: 15%;
  }
  .navbar-site .navbar-nav > li > a, .navbar .dropdown-menu li a {
    font-size: 9px;
  }
}
/*Main Header Section End*/
/*Experiance section start*/
.home-about {
  background: -webkit-linear-gradient(135deg, #73c683 20%, #266431);
  color: #fff;
}
.about-company {
  padding: 30px 0px;
}
.about-key {
  padding: 21px;
}
.numbers,.numbers2 {
  font-size: 24px;
}
.about-key img {
  height: 64px;
  text-align: center;
  margin: 0 auto 10px;
}
.about-key p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}
.body-content .common-heading{
  padding-top: 14px;
}
/*Experiance section End*/
/*About Company section Start*/
.home-about-content {
  background-color: #f1f3f4;
}
.about-company-img {
  padding: 0 !important;
  text-align: center;
}
.body-content p {
  line-height: 1.5em;
  letter-spacing: 0.5px;
  color: #304158;
  font-size: 14px;
  text-align: justify;
}
.about-button {
  text-align: center;
  margin-top: 36px;
}

.about-button a {
  color: #000;
}
@media (min-width: 768px) {
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
}
.short-view{
  margin-top: -4px;
}
@media (min-width: 767px) and (max-width: 1007px) {
  .sec-title .title{
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 768px){
  .home-about-content .row {
    margin: 0 auto !important;
    padding-top: 26px;
  }
  .site-logo img {
    width: 160px;
}
}

/*About Company section End*/
/* Our Service Section  Start*/
.service-block{
  position:relative;
}
.service-block .inner-box{
  position:relative;
  overflow:hidden;
}

.service-block .inner-box .image{
  position:relative;
}

.service-block .inner-box .image img{
  position:relative;
  width:100%;
  display:block;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block .inner-box:hover .image img{
  transform:rotate(3deg) scale(1.05,1.05);
}

.service-block .inner-box .lower-content{
  position:relative;
  margin-left:30px;
  margin-top:-30px;
  padding:30px 30px;
  background-color:#fff;
  box-shadow: 0 0 15px -3px rgb(6 155 75 / 15%);
}
.service-block .inner-box .lower-content:before{
  position:absolute;
  content:'';
  left:0px;
  top:0px;
  right:0px;
  height:30%;
  opacity:0;
  background-color:#266431;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block .inner-box:hover .lower-content:before{
  height:100%;
  opacity:1;
}

.service-block .inner-box .lower-content .category{
  position:relative;
  color:#eb1c24;
  font-size:14px;
  letter-spacing:1px;
  font-weight:700;
  text-transform:uppercase;
}

.service-block .inner-box .lower-content h4{
  margin-top:6px;
}

.service-block .inner-box .lower-content h4 a{
  position:relative;
  color:#222222;
  -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block .inner-box:hover .lower-content h4 a{
  color:#ffffff;
}

.service-block .inner-box .lower-content .learn-btn{
  position:absolute;
  right:25px;
  top:-22px;
  z-index:1;
  transform:translateX(200px);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.service-block .inner-box:hover .lower-content .learn-btn{
  transform:translateX(0px);
}

.service-block .inner-box .lower-content .learn{
  position:relative;
  color:#ffffff;
  font-weight:500;
  padding:10px 24px;
  display:inline-block;
  background-color:#eb1c24;
}

.service-block .inner-box .lower-content .learn:before{
  position:absolute;
  content:'';
  left:10px;
  top:-5px;
  right:-5px;
  bottom:5px;
  z-index:-1;
  background-color:rgba(255,255,255,0.70);
}
/* Our Service Section End */
 /*Parallex Section Start*/
 .para-img {
  height: 400px;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/*Parallex Section End*/
/* car lpg section start */
.lpg-head{
  font-size: 23px;
}
.fa-hand-point-right{
  color: #eb1c24;
}
.lpg-pera{
  text-align: justify;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 460px) {
  .sec-title .lpg-heading{
    font-size: 14px;
  }
}
/* car lpg section End */
/* service since Section Start */
.since-sec{
  background-color: #73c683;
  padding: 44px 0px;
}
.since-img{
  max-width: 50%;
}
.since-head{
  padding-top: 30px;
}
.since-btn{
  padding-top: 100px;
}
.since-btn a{
  color: #fff;
}
/* service since Section End */
/* Blog Section Start */
.item-box{
  margin-top: 21px;
}
.blog-area .blog-items .info{
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.212);
  padding: 30px;
}
.item .thumb {
  overflow: hidden;
  position: relative;
}
.item .thumb img {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.item:hover .thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.title-meta {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.title-meta .date {
  min-width: 65px;
  padding: 10px;
}
.title h4 a,
.title h4 p {
  font-size: 21px;
  color: #000 !important;
}
.info .meta {
  margin-bottom: 0;
}
.info span i {
  margin-right: 5px;
}
.info .meta li {
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  padding-right: 10px;
}
.info .meta li {
  display: inline-block;
  font-weight: 400;
}
.info .meta li a {
  color: #909090;
}
.info .meta li i {
  font-weight: 900;
  margin-right: 5px;
}
.info .meta li i {
  color: #f53145;
}
.info a {
  display: inline-block;
  font-weight: 500;
}
.all-button a,
.view-all-button a {
  color: #000;
}
.view-all-button {
  margin-top: 36px;
  text-align: center;
}
.title-meta .date,
.title-meta .title {
  display: table-cell;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  vertical-align: middle;
}
.title-meta .title {
  padding-left: 20px;
}
.title-meta .date {
  background: #f53145 none repeat scroll 0 0;
  color: #ffffff;
  text-align: center;
  width: 50px;
}
.info .btn-video a:hover {
  color: #fff;
}
.info {
  background: #ffffff none repeat scroll 0 0;
  padding-top: 30px;
}
.blog-items .item {
  box-shadow: inherit;
}
.thumb a {
  display: block;
  position: relative;
  z-index: 1;
}
.overlay-icon {
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -ms-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  background: #f531457c;
}
.item .thumb:hover .overlay-icon {
  opacity: 1;
}
.item .thumb a .overlay-icon i {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 80px;
  left: 50%;
  line-height: 78px;
  margin-left: -40px;
  margin-top: -40px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 80px;
}
/* Blog Section End*/
/*Clients Section Start*/
.clients-owl{
  margin-bottom: 24px;
}
.all-carousel {
  padding: 30px 15px;
}
.clients-img{
  margin:0 14px;
}
.clients{
  margin-top: 56px;
}
/*Clients Section End*/
/*Testimonial Section Start*/
.testimonial-all{
  background-image: url(../img/testimonial.jpg);
  background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
}
#testimonial-slider{
  margin-top: 30px;
}
.enquire{
  background-color: #ebeced;
}
.enquire-content{
  padding: 26px 17px;
}
.enquire-content p{
  font-size: 14px;
}
.testimonial-section{
  margin-top: 7%;
}
.testimonial {
  border-right: 4px solid #f53145;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 30px 130px;
  margin: 0 15px 30px 15px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.testimonial:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -17px;
  border-top: 25px solid #266431;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  transform: rotate(45deg);
}
.testimonial:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -17px;
  border-top: 25px solid #266431;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  transform: rotate(135deg);
}
.testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 20px;
}
.testimonial .pic img {
  width: 100%;
  height: auto;
}
.testimonial .description {
  font-size: 15px;
  letter-spacing: 1px;
  color: #6f6f6f;
  line-height: 25px;
  margin-bottom: 15px;
}
.testimonial .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f53145;
  margin: 0;
}
.testimonial .post {
  display: inline-block;
  font-size: 17px;
  color: #f53145;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .navbar-collapse>ul>li {
    padding: 0px 7px;
  }
  .why-choose{
    padding: 12px;
  }
  .testimonial {
    padding: 20px;
    text-align: center;
  }
  .testimonial .pic {
    display: block;
    position: static;
    margin: 0 auto 15px;
  }
}
/*Testimonial Section End*/
/*Footer Section Start*/
.footer {
	width: 100%;
	float: left;
	background-color: #171717;
	padding: 75px 0 75px 0;
}
.footer_logo a img {
  padding-top: 35%;
	max-width: 100%;
  margin: 0 auto;
  display: block;
}
.footer_logo h5 a{
  padding-top: 10px;
  color: #fff;
  text-transform: capitalize;
}
footer .copyright {
  border-top: 1px solid rgba(255,255,255,.2);
	width: 100%;
	background-color: #171717;
	padding: 18px 18px;
	display: block;
}
.design-text{
  text-align: end;
}
footer .copyright p, .design-text {
	color: #fff;
	margin-bottom: 0px;
}
.footer .widget {
	width: 100%;
	float: left;
}
.footer .widget h4, .footer .widget .widget-title {
	font-size: 17px;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 7px;
}
.footer .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer .widget.widget-feed ul li .icon {
	width: 10%;
	float: left;
	color: #555555;
	font-size: 24px;
	padding: 5px 0;
}
.footer .widget.widget-feed ul li .content {
	width: 90%;
	float: left;
	border-bottom: 1px solid #f53145;
	padding: 10px 0;
}
.footer .widget.widget-feed ul li:last-child .content {
	border-bottom: none;
}
.footer .widget.widget-feed ul li .content a {
	color: #ffffff;
	text-decoration: none;
}
.footer .widget.widget-feed ul li .content a:hover {
	color: #f53145;
}
.footer .widget.widget-feed ul li .content p {
	color: #99a4bd;
	text-decoration: none;
	margin-bottom: 0px;
}
.portfolio span{
  color: #ffffff;
  font-size: 14px;
  line-height: 2;
}
.copyright-text p{
  font-size: 14px;
}
/*Footer Section End*/

/*About Page Start*/
.caption-content {
  padding: 10px;
  margin-bottom: -55px;
  text-shadow: 0px 0px 4px #111;
  background:  rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 14px;
}
.zigzag-content{
  padding-top: 50px;
}
.zigzag-content-all{
  text-align: justify;
  padding: 0px 14px;
}
.zigzag-img{
  padding: 0;
}
/*About Page End*/
/*-----------BLOG DETAILS START-------------------*/
.blog-pager a {
  color: #111;
  font-size: 18px;
  font-weight: 500;
}
.blog-pager a:hover {
  color: #f53145;
}
.blog-prev {
  text-align: right;
}
.blog-pager a i {
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
  transition: all 0.3s linear;
}
.blog-pager a:hover span i {
  border: 1px solid #f53145;
  transform: rotate(360deg);
}
.blog-story {
  padding: 25px 0;
  border-bottom: 1px solid #ededed;
}
.title-meta {
  margin-top: 21px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 15px;
  padding-bottom: 20px;
}
.title-meta .date {
  min-width: 65px;
  padding: 10px;
  background: #f53145;
  color: #ffffff;
  text-align: center;
}
.title-meta .date span {
  color: #ffffff;
  display: block;
  font-weight: 600;
}
.title-meta .title {
  padding-left: 20px;
}
.meta li a {
  color: #909090;
}
.meta li {
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  padding-right: 10px;
}
.meta li i {
  color: #f53145;
  font-weight: 900;
  margin-right: 5px;
}
.comments {
  margin-top: 24px;
}
.list-inline > li {
  display: inline-block;
  padding: 0 5px 0 5px;
}
.comments ul li a {
  color: #111;
  text-transform: uppercase;
}
.cmnt a i {
  color: #f53145;
  font-size: 17px;
}
.single-share a {
  font-size: 14px;
  width: 35px;
  height: 34px;
  display: inline-block;
  color: #fff !important;
  background-color: #f53145;
  border: 1px solid #f53145;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin: 0px 3px;
  transition: 0.5s ease-in;
}
.single-share a:hover {
  background-color: #f41e20;
  border: 1px solid #f41e20;
}

.blog-category .latest-news {
  border: 1px solid #dadada;
  margin-top: 60px;
}
.blog-category .latest-news h4 {
  padding: 20px 30px;
}
.latest-news .latest-news-list {
  padding: 22px 0 0 30px;
}
.blog-category .latest-news h4 {
  padding: 20px 30px;
}
.latest-news .latest-news-list {
  padding: 22px 0 0 30px;
}
.latest-news .news-block {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.latest-news .news-block .img-block {
  height: 70px;
  width: 70px;
  float: left;
}
.latest-news .news-block .block-content a {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  width: 210px;
  display: block;
}
.latest-news .news-block .block-content a:hover {
  color: #f41e20;
}
.latest-news .news-block .block-content h5 {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #afafaf;
  line-height: 32px;
}
.latest-news .news-block .block-content {
  padding-left: 15px;
  float: left;
}
.latest-news .blog-view-more {
  padding-left: 30px;
  padding-bottom: 30px;
}
.latest-news .blog-view-more a {
  font-size: 14px;
  line-height: 24px;
  color: #f53145;
}
.privac-banner {
  text-align: center;
}
.privacy-text {
  max-width: 1200px;
  margin: 0 auto;
}
.privacy-section {
  margin-top: 150px;
}
.news-all-cont p {
  text-align: justify;
  font-size: 14px;
  line-height: 22px;
}
/*-----------News DETAILS END--------------------*/
/* Service Details Section start */
.service-title{
  font-size: 17px!important;
}
.text {
  position: relative;
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 15px;
}
:root {
  --hue-color: 210;
}
.card__content {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 1.75rem;
  box-shadow: 0 12px 24px hsla(var(--hue-color), 61%, 16%, 0.1);
  transition: 0.4s;
  display: grid;
  margin-top: 36px;
}
.card__content:hover {
  box-shadow: 0 16px 24px hsla(var(--hue-color), 61%, 16%, 0.15);
}
.card-title {
  font-size: 17px;
  color: #f53145;
}
.card-sub{
  font-size: 14px;
  color: #000;
}
.card_dsc{
  font-size: 14px;
  color: #000;
  text-align: justify;
}
.card_price {
  position: absolute;
  background: #266431;
  width: 60px;
  height: 88px;
  right: 1.5rem;
  top: -1rem;
  padding-top: 1.25rem;
  text-align: center;
}
.ltr-value {
  font-size: 0.75rem;
}

.ltr{
  color: #fff;
}
.card_price::after,
.card_price::before {
  content: "";
  position: absolute;
}

.card_price::after {
  width: 100%;
  height: 14px;
  background-color: #fff;
  left: 0;
  bottom: 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card_price::before {
  width: 14px;
  height: 16px;
  background-color: #266431;
  top: 0;
  left: -14px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.card__button {
  padding: 1.25rem;
  border: none;
  font-size: 17px;
  border-radius: 0.5rem;
  background: #266431;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}
.card__button:hover {
  box-shadow: 0 12px 24px hsla(var(--hue-color), 97%, 54%, 0.2);
}
/* Service Details Section End */
/* Service Details Contact Section start */
.service-contact{
    margin-bottom: 5rem;
    padding: 58px 47px 44px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 16%);
}
.service-cnt{
  color: #eb1c24;
}
.service-btn{
  width: 130px;
  height: 42px;
  padding: 10px 26px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: #eb1c24;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
/* Service Details Contact Section End */
/*Photo Album Page Start*/
.photo-gallery .gallery a {
  height: auto !important;
}
.album-content {
  background: #f7f8fa;
  margin: 14px 0;
}
.entry-content {
  padding: 9px;
}
.album_title {
  color: #000;
  font-weight: bold;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
}
.album_title:hover{
  color: #eb1c24;
}
.blog-post-date {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #afafaf;
  line-height: 32px;
}
.album-content {
  padding: 14px 0;
}
.album-content p {
  padding: 14px 0;
}
.album-content img {
  margin: 7px 0 0 0;
  max-width: 100%;
}
.entry-content .send-btn {
  margin-left: 0;
}
/*Photo Album Page End*/
/*-----------CONTACT PAGE START-----------*/
.contact-list {
  font-size: 15px;
  letter-spacing: 0.25px;
  background-color: #fff;
  padding: 40px;
  transform: translateY(-12px);
  min-height: 400px;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 15px -3px rgb(6 155 75 / 15%);
}
.contact-form h3::before {
  left: 10%;
}
.contact-list h3::before {
  left: 10%;
}
.contact-form .sec-title {
  margin-top: 26px;
}
.contact-list ul li {
  position: relative;
  margin: 15px 0;
  padding-left: 35px;
}
.contact-logo {
  max-width: 62px;
  margin-right: 10px;
}
.contact-img {
  float: left;
  text-align: right;
  padding-right: 15px;
}
.contact-img {
  font-size: 46px;
  color: #eb1c24;
}
.contact {
  margin-bottom: 30px;
}
.contact h5 {
  font-weight: 600;
}
.contact div {
  margin-bottom: 77px;
}
.contact-form .form-control {
  padding: 12px 15px;
  height: auto;
  background: #fff;
  border: 1px solid #eb1c24;
  border-radius: 0;
  margin: 10px;
  color: #000;
}
.form-control:focus {
  box-shadow: 0 0 10px #eb1c24;
}
.send-btn {
  color: #000;
  margin-left: 10px;
}
.office {
  width: 100%;
}
@media (min-width: 320px) and (max-width: 445px) {
  .contact-list h3 {
    margin-left: 14px;
  }
  .contact-list {
    padding: 0px 0px 1px 0px;
  }
  .office h5 {
    font-size: 14px;
  }
  .contact-img {
    font-size: 33px;
  }
}
@media (min-width: 768px) and (max-width: 854px) {
  .office h5 {
    font-size: 17px;
  }
}
/*-----------CONTACT PAGE END-------------*/
/*Projects Section Start*/
.news-box {
	letter-spacing: 0.25px;
	margin-bottom: 30px; 
}
.news-box-img {
	overflow: hidden;
	height: 250px; 
}
.news-box-img img {
	object-fit: cover;
	width: 100%;
	-webkit-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1);
	-ms-transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 1000ms cubic-bezier(0.42, 0, 0.58, 1);
	transform-origin: top right; 
}
.news-box-content::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.news-box-content {
	position: relative;
	z-index: 1;
	padding: 30px;
	width: calc(100% - 55px);
	margin-left: auto;
	background: rgba(255, 255, 255, 0.9);
	margin-top: -50px;
  box-shadow: 0 0 15px -3px rgb(6 155 75 / 15%);
}
.news-box-content::after {
	background: #eb1c24;
	z-index: -1;
	width: 0;
	-webkit-transition: width 1000ms cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: width 1000ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: width 1000ms cubic-bezier(0.86, 0, 0.07, 1); 
}
	.project-box .see-more {
		font-size: 12px;
		font-weight: 700;
	}
	.view-more{
		text-align: center;
	}
.news-box-content span {
	display: block;
	margin-bottom: 15px;
	color: #000000;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400; }
.news-box-content h3 {
	color: #18262D;
	font-size: 18px;
	line-height: 26px;
	-webkit-transition: color 800ms linear 500ms;
	-ms-transition: color 800ms linear 500ms;
	transition: color 800ms linear 500ms;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-moz-line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-weight: 500;
	margin: 0; }
	.news-box:hover img {
		transform: scale(1.2); 
	}
	.news-box:hover .news-box-content::after {
		width: 100%; 
	}
	.news-box:hover .news-box-content h3{
		color: #fff; 
	}
	.news-box:hover .news-box-content span {
		color: #fff; 
	}
/*Projects Section End*/
/*Product Description Section Start*/
.part-text {
  margin: 21px;
}
.fa-gas-pump,.fa-map-marker-alt,.contact-pageicon,.contact-pagephone{
  color: #266431;
  padding-right: 7px;
  font-weight: 600;
  font-size: 30px;
}
.station-name{
  color: #eb1c24;
  line-height: 1.3;
  font-size: 21px;
}
.station-loc{
  font-size: 17px;
  color: #808080;
}
.text-body {
  margin: 21px 0px;
}
.share-on-social {
  border-top: 1px solid #e5e5e5;
}
.descr-body {
  margin-top: 36px;
}
.descr-body h4 {
  color: #266431;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 18px;
}
.descr-body p {
  color: #3d446f;
  font-size: 16px;
  line-height: 26px;
}
.part-img .owl-thumbs {
  display: flex;
  margin: 0 50px;
  position: relative;
  z-index: 2;
}
.part-img .owl-thumbs .owl-thumb-item {
  margin-right: 20px;
  cursor: pointer;
}
.product-pic img {
  border: 1px solid #266431;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  max-width: 100%;
}
.product-pic {
  padding: 15px;
}
.owl-prev {
  height: 100px;
  position: absolute;
  top: 46%;
  left: 0;
  display: block !important;
  border: 0px solid black;
  cursor: pointer;
}
.owl-next {
  height: 100px;
  position: absolute;
  top: 46%;
  right: 0;
  display: block !important;
  border: 0px solid black;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .part-img .owl-prev,
  .part-img .owl-next {
    margin-top: -20%;
  }
  .common-heading {
    font-size: 18px !important;
  }
}
@media (max-width: 575px) {
  #sync2 .owl-next,
  #sync2 .owl-prev {
    top: 86%;
  }
  .part-img .owl-next,
  .part-img .owl-prev {
    margin-top: -28%;
  }
  .user-info .username {
    font-size: 14px;
  }
  .review_slide a {
    padding: 50px 0px;
  }
  .review-detail .review-person {
    padding-left: 14px;
  }
  .review-person .user-info {
    margin: 10px 0px;
  }
  .user-info .user-position {
    font-size: 14px;
    line-height: 18px;
  }
  .review_slide a::after {
    font-size: 3em;
  }
  .review-detail .review-content {
    padding-top: 23px;
  }
}
.single-product-slider {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #266431;
  margin-bottom: 30px;
}
.current .product-pic img {
  border: 3px solid #266431;
}
.single-product-slider a.test-popup-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #266431;
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}
#testimonial-slider .disabled,#testimonial-slider .owl-dots,.owl-carousel-clients .disabled, .owl-carousel-clients .owl-dots{
  display: none;
}
.review-carousel .owl-next,.review-carousel .owl-prev,#sync2 .owl-next,#sync2 .owl-prev {
  top: 37%;
}
.owl-carousel {
  padding: 0px 36px 36px 36px;
}
.vc_message_box-rounded {
  border-radius: 5px;
}
.vc_message_box {
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  margin: 0 0 21.73913043px 0;
  padding: 1em 1em 1em 4em;
  position: relative;
  font-size: 1em;
  box-sizing: border-box;
}
.vc_color-sky.vc_message_box-3d {
    box-shadow: 0 5px 0 #93c1ed;
}
.vc_color-sky.vc_message_box {
    color: #2a6194;
    border-color: #bedaf4;
    background-color: #eaf3fb;
}
.vc_color-sky.vc_message_box .vc_message_box-icon {
  color: #5aa1e3;
}
.vc_message_box-icon {
  bottom: 0;
  font-size: 1em;
  font-style: normal;
  left: 0;
  position: absolute;
  top: 0;
  width: 4em;
}
.vc_message_box-icon {
  border-right: 1px dotted;
  box-shadow: 5px 0 1px rgb(50 50 93 / 4%);
}
.home-about-title{
  font-size: 19px!important;
  margin-bottom: 12px!important;
}
.home-about-common{
  padding-bottom: 0px!important;
}
@media (max-width: 575px) {
  .banner-overlay h2{
      display:none;
  }
.banner-overlay p{
  font-size: 11px;
}

.station-name,.station-loc{
  font-size: 13px;
}
.mechine,.green-fuel-project{
  font-size: 12px!important;
}
}
.para-img{
  width: 100%;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .para-img {
      width:100%;
    height: 250px; 
    background-position: center center;
  }
}
table{
  width:100%!important;
}
.all-banner{
    background-position:center center;
}
@media (max-width: 640px) {
    .sec-title .title{
  font-size: 17px;
}
.service-cont h3{
    font-size:17px!important;
}
}
@media only screen and (min-width: 768px) and (max-width: 914px) {
    .contact div {
    margin-bottom: 110px;
}
}



.all-banner {
  overflow: hidden;
  position: relative;
}
.all-banner .banner .caption {
  transition: all 0.9s ease-in-out;
  max-width: 65%;
  height: 100%;
}
.all-banner .banner .caption:hover {
  transition: all 0.9s ease-in-out;
}

.banner,.banners {
  background-size: cover;
  height: 400px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  -ms-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}
.lpg-service{
    height: 460px!important;
}
.all-banner:hover .banner {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
@media (min-width: 320px) and (max-width: 575px) {
  .banner,.banners{
    height: 300px !important;
  }
  .all-banner .banner .caption {
    max-width: 100%;
  }
  .all-banner .banner .caption .caption-content{
    margin-top: 30px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .banner,.banners{
    height: 300px !important;
  }
  .all-banner .banner .caption .caption-content{
    margin-top: 112px !important;
  }
}
.service-caption .caption-content{
  border-radius: 0;
}
.caption-content h2{
 font-size: 21px;
 text-align: left;
}
.caption-content p{
  text-align: left;
  font-size: 14px;
  padding-bottom: 41px;
}
video{
    max-width:100%;
}
.service-cont h3{
    color:#f53145;
    font-size:21px;
    padding:0px 14px;
}
.lpg-btn{
    width: 100%;
    height: 42px;
    padding: 10px 26px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: #eb1c24;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border-radius:50px;
}

.call-now{
    border-radius: 8px 0px 0px 8px;
    background-color: #eb1c24;
    padding: 7px 14px;
    font-size: 18px;
    color: #fff;
    float: right;
    position: fixed;
    top: 55%;
    right: 0%;
    z-index: 1050;
}
.call-now:hover{
    color:#fff;
}
#lpgconversion{
    padding-top:9px;
    color:#eb1c24;
    font-size:16px;
    text-transform:uppercase;
    text-align:center;
}
 .list-lpg a h4{
    color:#eb1c24;
    font-size:16px;
    text-transform:uppercase;
    margin-bottom: 0px;
    padding: 7px 0px;
 }
 .list-lpg a{
    border-bottom:1px solid #266431;
    padding-left: 0px;
}
 }
 .appointment-form{
     color:#eb1c24;
     text-align:center;
     font-size:21px;
 }
 .banners {
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    z-index: 1;
    position: relative;
}
marquee{
        font-size: 17px;
    font-weight: 600;
    color: #eb1c24;
    line-height: 1.3;
}

























