@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,900&display=swap');
*{
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5, h6{font-family: "Rowdies", sans-serif;margin: 0px;}
p{font-family: "Poppins", sans-serif; font-size: 16px;font-weight: 400;padding: 0; margin-bottom:10px;line-height: 24px;color: #000000;}
ul, li{padding: 0;margin: 0;list-style-type: none;}
img {
  max-width: 100%;
  border: none;
}
a {
  text-decoration: none;
  outline: none !important;
}
.p-70{padding: 80px 0;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.btn {
  background: #78cc00;
  padding: 11px 26px;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  border-radius: 5px;
  line-height: normal;
  font-weight: 500;
  margin: 20px 0px 0px 0px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;

}
.btn:hover{ background: #000; color: #fff;}
.btn-primary{
  border-color: #1A1B1E;
  background-color: #1A1B1E;
  color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus{
  box-shadow: none;
  border-color: #D6AB80;
  background-color: #D6AB80;
  color: #ffffff;
}
.btn-white{
  border-color: #ffffff;
  background-color: #ffffff;
  color: #000000;
}
.btn-white:hover, .btn-white:focus{
  box-shadow: none;
  border-color: #D6AB80;
  background-color: #D6AB80;
  color: #ffffff;
}
.btn-view {
  border: 1px solid #D9AF7F;
  color: #ffffff;
  position: relative;
  padding: 15px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s;
  z-index: 1;
}
.btn-view:hover{
  background-color: #D9AF7F;
}
.btn-view::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border: 1px solid #D9AF7F;
  z-index: -1;
  transition: 0.5s;
}
.btn-view:hover::after{
  opacity: 0;
}
.headertext{ margin-bottom: 35px;}
.headertext h4{ position: relative;font-size: 18px;color: #870002;font-weight: 400; margin-bottom: 7px;}
.headertext h3{ position: relative;font-size: 48px;color: #000;font-weight: 500;line-height: 50px; margin-bottom: 10px;}

/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu {
  margin-right: 20px;
  padding: 0px 0px;
  border-radius: 50px;
  position: relative;
  top: 16px;
}
.menu ul{margin:0;padding:0;font-size:0;}
.menu ul li{display:inline-block;padding:0;list-style-type:none;position:relative;vertical-align:middle;}
.menu ul li.active{
  position: relative;
}

.menu ul li span{
    position: absolute;
    top: 14px;
    right: 0;
    display: none;
}
.menu ul li span::after {
    content: '\f107';
    color: #000000;
    font-family: FontAwesome;
    font-size: 10px;
}
.menu ul li:hover span::after{
  color: #f7c624;
}
.headarea.innerheader .menu ul li a{ color: #000; }
.menu ul li a {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  padding: 10px 12px 49px 12px;
  margin: 0 0px;
  position: relative;
  border-top: 3px solid transparent;
  
}
.menu ul li.active a {
  color: #fff;
  background: #78cc00;
  border-top: 0px solid #000;
}
.menu ul li a:hover {
  color: #fff;
  background: #78cc00;
  border-top: 0px solid #000;
}
.menu ul li.active a::after{width: 100%;}
.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}
.menu ul li a .arrow-icon {
  display: inline-block;
  font-size: 10px;
  margin-left: 5px;
}
.menu ul li:hover ul li a:hover {
  color: #fff;
  background-color: #78cc00;
}
.menu ul li ul {
    width: 240px;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    z-index: 2;
    background-color: #ffffff;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / 3%);
}
.menu ul ul li:first-child:before{display:none;}
.menu ul ul li:after{display:none;}
.menu ul li:last-child ul{width:220px;position:absolute;top:100%;left:auto;right:0;z-index:2;background-color:#ffffff;box-shadow:0px 5px 14px rgb(0 0 0 / 2%);text-align:left;}
.menu ul li ul li a {
    font-size: 14px;
    text-transform: none;
    padding: 12px 15px;
    color: #000;
    line-height: 20px;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
    border-radius: 0;
}
.menu ul li ul li ul{top:10px;left:149px;}
.menu ul li ul li span{right:7px;top:12px;}
.menu ul li a:hover.menu ul li ul{display:block;}
.menu ul li ul li{display:block;padding:0;border-bottom:solid 1px rgb(255 255 255 / 7%);border-right:none;}
.menu ul li ul li:last-child{border:none;}
.menuButton{width:40px;height:35px;padding:5px;float:right;display:none;}
.menuButton span {
	width: 100%;
	height: 2px;
	background: #000;
	margin-bottom: 6px;
	float: left;
	transition: all 0.3s ease-in-out 0s;
}
.menuButton span:last-child{margin-bottom:0;}
.sub-menu-toggle{ display:none}
@media (min-width:991.98px){.menu ul{display:block!important;}
 .menu ul li:hover > ul{opacity:1;top:100%;visibility:visible;}
}
@media (max-width:991.98px){.menuButton{display:block;margin-left:15px;cursor:pointer;}
 .menu ul li span{background:url(../images/menu_arrow.png) center center no-repeat;cursor:pointer;width:15px;height:15px;position:absolute;right:15px;top:20px;z-index:99;}
 .menu ul li:hover span{background:url(../images/menu_arrow_hover.png) center center no-repeat;}
 .arrow_change span:nth-child(2){display:none;}
 .arrow_change span:first-child{position:relative;top:9px;transform:rotate(-45deg);-moz-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);}
 .arrow_change span:last-child{position:relative;top:1px;transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);}
 .menuBar{padding:15px 0;}
 .menu{padding:0px 0;}
 .menu ul{display:none;background-color:#fff;position:absolute;top:100%;left:0;width:100%;z-index:99;}
 .menu ul li a{color:#071731;display:block;width:100%;font-size:14px;}
 .menu ul li ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;padding:0;visibility: initial;opacity: 1;}
 .menu ul li:last-child ul{display:none;background-color:#e1e1e1;position:relative;top:5px;left:0;width:100%;z-index:1;}
 .menu ul li{display:block;padding:10px 15px 10px 15px;border-top:1px solid #cccccc54;text-align:left;position:relative;}
 .menu ul li span{position:absolute;right:30px;z-index:99;cursor:pointer;top:12px;text-align:center;}
 .menu ul li ul li ul{top:0;left:0;}
 .menu ul li ul li a{font-size: 12px;text-transform: none; background-color: #e1e1e1; padding: 8px 12px;color: #000;}
}
/*-- menu stop --*/
/*-- header area start --*/
.header-area {position: relative;top: 0;left: 0;width: 100%;z-index: 91;border-top: 4px solid #78CC00;}
.header-body{padding: 0px 0;}
.header-body .logo{width: 100%;max-width: 100px;margin: 10px 0px;}
.header-body .logo img{width: 100%;object-fit: cover;}

.header-right .loginbox .btn{
  font-size: 17px;
  padding: 9px 28px;
  border: 1px solid #890101;
  border-radius: 25px;
  text-align: center;
  color: #fff;
  display: inline-block;
  background: #870000;
  transition: 0.5s;
}
.header-right .loginbox .btn:last-child{
  margin-right: 0;
}
.header-right .btn-cart {
  margin-right: 10px;
  border: 1px solid #363635;
  background-color: #363635;
  width: 100%;
  min-width: 45px;
  max-width: 45px;
  height: 45px;
  border-radius: 100%;
  cursor: pointer;
  padding: 11px;
  transition: 0.5s;
  position: relative;
}
.header-right .btn-cart img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-right .btn-cart .cart-number-count {
  position: absolute;
  top: -12px;
  right: -6px;
  background-color: #363635;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
}
.header-right .btn-cart:hover{
  border-color: #D6AB80;
  background-color: #D6AB80;
}



.loginbox{display: flex;
  justify-content: space-between;
  align-items: center;}
.callboxarea{margin-right: 15px;
  align-items: center;}
.callarea{width: 35px;
  height: 35px;
  border: 2px solid #78cc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: #78cc00;}
.callboxarea h6{font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;}
.callboxarea h4 a{font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 600;}
.footer_social_link {padding: 0;margin: 0px; text-align:left;}
.footer_social_link li {padding: 0;margin: 0px 4px 0px 0px;display: inline-block;vertical-align: middle;}
.footer_social_link li a{text-align: center;padding: 4px 0px;font-size: 13px;color: #000; transition: all .5s ease-in-out;
    width: 30px;height: 30px;border-radius: 50%;border: 1px solid #000;display: flex; align-items: center;justify-content: center;}
.footer_social_link li a i{ margin-right: 0px;}
.footer_social_link li a:hover{background: #78cc00; border: 2px solid #78cc00;color: #fff;transition: all .5s ease-in-out;}

/*-- header area stop --*/

@media screen and (min-width: 360px) {.header-area.fix { position: fixed; width: 100%;left: 0;top: 0;background-color: #fff !important;border: none;z-index: 9999;-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;
  animation-fill-mode: both;-webkit-animation-name: fadeInDown; animation-name: fadeInDown; box-shadow: 1px 1px 7px rgba(165, 165, 165, 0.31);padding: 0;}}
/*--------------top area start -------------------------------*/
.top{width: 100%;padding: 10px 0px;z-index: 1;background: #690202;}
.top ul.footer_social_link {padding: 0;margin: 0px; text-align:left;}
.top ul.footer_social_link li {padding: 0;margin: 0px 15px 0px 0px;display: inline-block;vertical-align: middle;}
.top ul.footer_social_link li a{text-align: center;padding: 4px 0px;font-size: 13px;color: #fff; transition: all .5s ease-in-out;
  width: 30px;height: 30px;border-radius: 50%;border: 2px solid #fff;display: flex; align-items: center;justify-content: center;}
  .top ul.footer_social_link li a i{ margin-right: 0px;}
.top ul.footer_social_link li a:hover{background: #FC0301; border: 2px solid #FC0301;color: #fff;transition: all .5s ease-in-out;}
.top li a:hover i{ transition:all .5s ease-in-out;}
.top ul.longin {padding: 0;margin: 0px; text-align:left;}
.top ul.longin li {padding: 0;margin: 0px 15px 0px 0px;display: inline-block;vertical-align: middle;}
.top ul.longin li a{display: block;text-align: center;padding: 4px 0px;font-size: 20px; color:#f47000;transition:all .5s ease-in-out;}
.top .footer-contact-info{ padding:0px; margin:0px;}
.top .footer-contact-info li{margin-bottom: 15px !important;color: #c6c6c6;font-size: 15px;font-weight: 500;}
.top .footer-contact-info li i{float: left;margin-top: 5px;margin-right: 10px;font-size: 20px;color: #62ab9d;}
.fright{ float:right;}
.top ul{ text-align: right; padding: 0px; align-items: center;display: flex;}
.top ul li{ display: inline-block;margin-right: 15px;color: #fff;}
.top ul li a{ font-size:15px;line-height: 30px;color: #fff;}
.top ul li i{ margin-right:5px;}

/*--------------top area stop -------------------------------*/



/*-- banner area start --*/
.bannerarea{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;min-height: 720px;}
.bannertext{width: 100%;max-width: 700px;padding-top: 156px;}
.bannertext h4{font-size: 65px; color: #fff; text-transform: uppercase; font-weight: 300;line-height: 70px;}
.bennerbtn{padding: 14px 39px;border: 1px solid #78CC00;border-radius: 5px;text-align: center;color: #fff;display: inline-block;
  background: #78CC00;transition: 0.5s;box-shadow: 5px 5px 0px 0px #487a00;margin-top: 35px;font-size: 20px;
  text-transform: uppercase; font-weight: 500;}
.bennerbtn1{padding: 14px 39px;border: 1px solid #fff;border-radius: 25px;text-align: center;color: #fff;display: inline-block;
transition: 0.5s;margin-top: 15px;}
.bennerbtn:hover, .bennerbtn1:hover{ background: #000; color: #fff;border: 1px solid #000;transition: 0.5s;}

/*.banner-carousel .owl-dots{position: absolute;left: 20%;bottom: 50px;}
.banner-carousel .owl-dots .owl-dot span{display: none;}
.banner-carousel .owl-dots .owl-dot{width: 25px;margin: 0px 3px;height: 8px;border-radius: 10px;border: 1px solid #000;
position: relative;transition: 0.5s;background-color: transparent;}
.banner-carousel .owl-dots .owl-dot:hover::after, .banner-carousel .owl-dots .owl-dot.active{
  background-color: #CC070A;border: 1px solid #CC070A;}*/
/*-- banner area stop --*/


.counterbox{border: 1px solid #000;padding: 25px 15px;border-radius: 10px;justify-content: center;display: flex; width: 100%;}
.countericon{width: 50px;height: 50px;border: 1px solid #000;display: flex; align-items: center;justify-content: center;
  border-radius: 50%;padding: 12px;margin-right: 7px;}
 .counterbox h4{font-size: 15px;font-family: "Poppins", sans-serif;font-weight: 500;}
.counterbox h6{font-size: 50px;font-family: "Poppins", sans-serif;font-weight: bold;line-height: 46px;}
  

/*----------------service css start----------------*/
.aboutimg {margin-right: 30px;height: 600px;}
.aboutimg img{border: 15px solid #202020;padding: 8px;width: 100%; height: 100%; object-fit: cover;}
.headertext h6{color: #78CC00;font-size: 18px;text-transform: uppercase;font-weight: 600;margin-bottom: 10px;
  font-family: "Poppins", sans-serif;}
.headertext h4{text-transform: uppercase;font-size: 45px;color: #161616;font-weight: 300; margin-bottom: 7px;line-height: 48px;}
.aboutbtn {padding: 11px 35px;border: 1px solid #78cc00;border-radius: 0px;text-align: center;color: #fff;display: inline-block;
  margin-top: 30px;transition: 0.5s;background: #78cc00;text-transform: uppercase;border-radius: 5px;}

/*----------------service css stop----------------*/


/*-- Why Choose us area start --*/
.services-area{ padding-top: 40px;}
.services-area .headertext{width: 60%;margin: 0 auto 45px;}
.services-area .headertext h4{text-transform: capitalize; margin-bottom: 15px;}

.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lthumblebox{order: 2;}
.lambdinner_box .lambdinner_textbox .practicon{width: 65px;height: 65px;border-radius: 61px;background: rgba(47, 108, 215, 0.10);
margin-bottom: 20px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_textbox .practicon{display: inline-block;margin-right: 20px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_textbox .practicon img{right: -5px;}
.lambdinner_box .lambdinner_textbox .practicon img{position: relative;top: 5px;right: -20px;}
.lambdinner_box .lambdinner_thumble {display: flex;position: relative;height: 440px;border-radius: 0px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n)  .lambdinner_thumble{margin-right: auto;}
.lambdinner_box{ margin-top: 80px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_thumble:before{right: inherit; left:-30px; bottom:-30px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n)  .lambdinner_thumble:after {right: -20px;left: auto;}
.lambdinner_box .lambdinner_thumble img{ width: 100%; object-fit: cover;height: 100%;}
.lambdinner_textbox{margin-left: 35px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .ltextbox .lambdinner_textbox{padding-left: 0px;text-align: right;margin-left: 0px;
  margin-right: 40px;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_textbox h2, .lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_textbox p{ text-align: right;display: block;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .lambdinner_textbox h2 span{ margin-left: 20px;margin-right: 0px;float: right;}
.lambdinner_totalarea .lambdinner_box .btn-custom{ text-transform:capitalize;}
.lambdinner_totalarea .lambdinner_box:nth-of-type(2n) .btn-custom1{ float:right;}
.lambdinner_box .lambdinner_textbox h2{font-size: 30px;line-height: 50px;color: #000;margin-bottom: 20px;text-align: left;
  text-transform: capitalize;position: relative;display: flex; align-items: center;}
  .lambdinner_box .lambdinner_textbox h2 span{width: 65px;height: 65px; background: #FF5900;display: inline-block;
    padding: 0px; text-align: center; margin-right: 15px;}
.lambdinner_box .lambdinner_textbox h6{font-size: 20px;color: #013A63;}
.lambdinner_box .lambdinner_textbox p{font-weight: 300;font-size: 17px;line-height: 25px;color: #000;margin-bottom: 15px;
text-align: left;max-width: 100%;}
.lambdinner_box .lambdinner_textbox .btn-custom{background: #78cc00;padding: 11px 26px;display: inline-block;
  color: #fff;text-align: center; font-size: 16px;font-style: normal;border-radius: 5px;line-height: normal;
  font-weight: 500; margin: 20px 0px 0px 0px;text-transform: uppercase;transition: all .3s ease-in-out;}
.lambdinner_box  .lambdinner_textbox .btn-custom:hover{ color:#fff;background:#000; transition:all .3s ease-in-out;}
.innerwhychoose h2{ color: #fff;}

.lambdinner_box .lambdinner_textbox ul li {position: relative;padding-left: 25px;margin-bottom: 10px;}
.lambdinner_box .lambdinner_textbox ul li::before {content: '\f061';position: absolute; top: 0;left: 0;font-size: 18px;font-family: FontAwesome;
color: #081740;}
.lambdinner_totalarea{ position: relative;}
.lambdinner_totalarea::after{position: absolute;content: "";width: 2px;height: 100%;background: #c1c1c1;left: 0px;right: 0px;
  margin: 0 auto;top: 0px;}



/*-- Why Choose us area stop --*/






/*-- service area start --*/
.servicearea{
  background-color: #F4F4F4;
}
.servicearea .heading p {
  margin: 0;
  padding-top: 35px;
}
.accordion_content {
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
}

.same_offset {
  float: left;
  overflow: hidden;
  zoom: 1;
  box-shadow: 0px 3px 3px #9d8757;
}

.same_open {
  padding-top: 50px;
  height: 550px;
  width: 6.6%;
  color: #fff;
  cursor: pointer;
  background-color: #78CC00;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  margin: 0 5px;
  position: relative;
}
.same_open .numbertext {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  color: #ffffff;
  font-size: 22px;
  padding: 25px 10px;
}
.same_open .numbertext::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 65%;
  height: 1px;
  background-color: #ffffff;
}
.same_open .text {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-90deg) translate(62%, -187px);
  width: 450px;
  text-align: left;
  padding-left: 20px;
}
.same_open .text h5{
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
	text-transform: capitalize;
}
.same_open .text p {
  color: #FFB9B9;
  font-size: 17px;

  margin: 0;
}
.same_open_content {
  width: 0;
  height: 550px;
  background-color: #e2dbcc;
  background-color: #e2dbcc;
  position: relative;
}
.open_content {
  width: 70%;
  position: relative;
  display: flex;
}
.same_open_content img{
  width: 100%;
	height: 100%;
  object-fit: cover;
}
.open_article { margin: 10px 20px 10px 140px; }
.same_open_content .same_offsetcontain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 40%);
}
.same_open_content .same_offsetcontain .same_offsetcontainbox {
  height: 550px;
  display: flex;
  align-items: end;
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box{
  border-top-right-radius: 30px;
  padding: 30px;
  background-color: #ffffff;
  
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box.bg-transparent{
  background-color: transparent;
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box.bg-transparent p {
  color: #ffffff;
  padding-left: 30px;
  line-height: 25px;
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box .numberbox{
  margin: 0 0 15px;
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box .numberbox .numberboxtext{
  color: #78cc00;
  font-weight: bold;
  font-size: 19px;

}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box .numberbox .number-box-contain{
  padding-left: 10px;
}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box .numberbox .number-box-contain h4 {
  color: #FFFFFF;
  font-size: 20px;font-family: "Poppins", sans-serif;font-weight: 600;

}
.same_open_content .same_offsetcontain .same_offsetcontainbox .contain-box .btn{ margin-left: 30px;}
/*-- service area stop --*/


.gallery {
  column-count: 3;
  --webkit-column-count: 3;
  --moz-column-count: 3;
  gap: 1rem;

}
.gallery_area h4 {
    font-size: 36px;
    color: #000000;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
.gallery .galleryimg{
    margin-bottom: 1rem;
    cursor: pointer;
}
.gallery .galleryimg:hover{
    margin-bottom: 1rem;
    cursor: pointer;
}
.galleryimg img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transition: 1s;
}

.galleryimg:hover img {
    opacity:0.7;
}



/*--Professional start --*/
.awards-area{ background: #000;}
.awards-area .headertext h4{ color: #fff;}
.awards-area p{color: #fff;}
.awards-area .nav-link{text-transform: uppercase;
  color: #000;
  font-size: 17px;
  padding: 10px 25px;background: #fff;
  border-radius: 0px !important;
  margin: 0px 9px;}
 .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #78cc00;
    border-color: #78cc00;
  }
  .nav-tabs{border: none;}
  .tab-content > .tab-pane{ margin-top: 35px;}
  .awardsimg img{ width: 100%;}

/*-- Professional stop --*/
/*-- Foods area start --*/
.foods-area .headertext{margin: 0px auto 45px;width: 100%;max-width: 700px;}
.cbd-box {position: relative;transition: 0.5s;
  overflow: hidden;}
.cbd-box .icon:hover{border: 1px solid #CC070A;transition: 0.5s;}
.cbd-box .icon{min-height: 280px;border-radius: 10px;background-color: #F9F9F9;border: 1px solid #F9F9F9;margin-bottom: 25px;transition: 0.5s;}
.cbd-box .icon img{width: 80%;margin: 0 auto;}
.cbd-box h4 {color: #000;font-size: 24px;font-weight: 400;line-height: 30px;margin: 0;position: relative;z-index: 1;text-align: center;
  transition: 0.5s;}
.cbd-carousel .owl-dots{padding-top: 40px;}
.cbd-carousel .owl-dots .owl-dot span{display: none;}
.cbd-carousel .owl-dots .owl-dot{width: 15px;margin: 0px 3px;height: 5px;border-radius: 10px;border: 1px solid transparent;
position: relative;transition: 0.5s;background-color: #D9D9D9;}
.cbd-carousel .owl-dots .owl-dot:hover::after, .cbd-carousel .owl-dots .owl-dot.active{
  background-color: #CC070A;}
/*-- Foods area stop --*/




/*-- customer feedback area start --*/
.customer-feedback-area{ background: rgb(251,243,235);
  background: linear-gradient(0deg, rgba(251,243,235,1) 0%, rgba(255,255,255,1) 90%);display: none;}
.customer-feedback-area .headertext{margin: 0px auto 45px;width: 100%;max-width: 700px;}


.customerfeedback .customerfeedback-body {box-shadow: 0px 0px 10px 0px #ddd;background-color: #fff;padding: 50px 28px 50px;
  text-align: center;border-radius: 0px;border: 1px solid #ddd;}
.customerfeedback .customerfeedback-body p{color: #000;}
.customerfeedback .customerfeedback-icon img{width: auto;height: 40px;object-fit: contain;}
.customerfeedback-main-box .customerfeedback-footer .post-admin {position: relative;border-top: 1px solid transparent;
  width: 100%;max-width: 100%;padding-top: 25px;}
  .customer-feedback-carousel .owl-item.center h4{font-size: 18px;font-family: "Poppins", sans-serif; margin-bottom: 5px;}
.customerfeedback-main-box .customerfeedback-footer .post-admin .post-img{width: 45px;height: 45px; display: inline-flex; border-radius: 100%;
  position: relative; left: 111px;top: 20px;}
.customerfeedback-main-box .customerfeedback-footer .post-admin .post-img img {width: 100%;object-fit: cover;
border-radius: 100%;}
.customerfeedback-main-box .customerfeedback-footer .post-admin .post-body{padding-left: 12px;}
.customerfeedback-main-box .customerfeedback-footer .post-admin .post-body h5{font-size: 16px;font-weight: 500;
  color: #fff;margin: 0 0 0;}
.customerfeedback-main-box ul{padding: 0px; margin: 0px;}
.customerfeedback-main-box ul li{display: inline-block;color: #870002;margin: 10px 0px;}
.customerfeedback .customerfeedback-body h5{font-size: 18px;font-weight: 500;}
.customerfeedback-main-box .customerfeedback-footer .post-admin .post-body p{color: #fff;font-size: 14px;margin: 0;}
.customer-feedback-carousel .owl-item.center .customerfeedback{border-right-color: #ecbe8c;}
.customer-feedback-carousel .owl-item.center .customerfeedback-body {border: 1px solid #ddd;background: #78cc00;}
.customer-feedback-carousel .owl-item.center h5, .customer-feedback-carousel .owl-item.center h4, .customer-feedback-carousel .owl-item.center p{color: #fff;}


.customer-feedback-carousel .owl-item.center .customerfeedback-main-box .customerfeedback-footer .post-admin::before, .customer-feedback-carousel .owl-item.center .customerfeedback::before, .customer-feedback-carousel .owl-item.center .customerfeedback-main-box .customerfeedback-footer .post-admin .post-img::before, .customer-feedback-carousel .owl-item.center .customerfeedback-main-box .customerfeedback-footer .post-admin .post-img::after, .customer-feedback-carousel .owl-item.center .customerfeedback .customerfeedback-icon{
  background-color: #ecbe8c;}
.customer-feedback-carousel .owl-nav {width: auto;box-sizing: border-box;position: absolute;bottom: -100px;
text-align: center;margin-top: 0;right: 0;z-index: 1;left: 0;}
.customer-feedback-carousel .owl-nav .owl-prev span, .customer-feedback-carousel .owl-nav .owl-next span{ font-size: 0px; }
.customer-feedback-carousel .owl-nav .owl-prev, .customer-feedback-carousel .owl-nav .owl-next {display: inline-block;
width: 40px;height: 40px;box-sizing: border-box;border-radius: 50%;position: relative;outline: none;-webkit-transition: 0.5s;
-moz-transition: 0.5s;-o-transition: 0.5s;transition: 0.5s;background: #2d2d2d!important;border: 1px solid #fff!important;
box-shadow: none;}
.customer-feedback-carousel .owl-nav .owl-prev:hover, .customer-feedback-carousel .owl-nav .owl-next:hover {
background: #ecbe8c!important;box-shadow: none;border-color: #ecbe8c!important;}
.customer-feedback-carousel .owl-nav .owl-prev:after {content: "\f060";position: absolute;font-family: "FontAwesome";
top: 5px;left: 0;right: 0;margin: auto;font-size: 20px;color: #fff;-webkit-transition: 0.5s;-moz-transition: 0.5s;
-o-transition: 0.5s;transition: 0.5s;}
.customer-feedback-carousel .owl-nav .owl-next:after {content: '\f061';font-family: "FontAwesome";position: absolute;
top: 5px;left: 0;right: 0;margin: auto;font-size: 20px;color: #fff;-webkit-transition: 0.5s;-moz-transition: 0.5s;
-o-transition: 0.5s;transition: 0.5s;}
.customer-feedback-carousel .owl-nav .owl-next:hover:after{color:#2d2d2d;}
.customer-feedback-carousel .owl-nav .owl-prev:hover:after{color:#2d2d2d;} 
.customer-feedback-carousel .owl-nav .owl-prev{margin-right:10px;left:0px;position:relative;}
.customer-feedback-carousel .owl-nav .owl-next{margin-right:0px;right:0px;position:relative;}
.customer-feedback-carousel .owl-dots{padding-top: 40px;}
.customer-feedback-carousel .owl-dots .owl-dot span{display: none;}
.customer-feedback-carousel .owl-dots .owl-dot{width: 15px;margin: 0px 3px;height: 5px;border-radius: 10px;border: 1px solid transparent;
position: relative;transition: 0.5s;background-color: #D9D9D9;}
.customer-feedback-carousel .owl-dots .owl-dot:hover::after, .customer-feedback-carousel .owl-dots .owl-dot.active{
  background-color: #CC070A;}
/*-- customer feedback area stop --*/


/*-- blogpost area start --*/
.client-logo{border: 1px solid #ddd; padding: 30px; border-radius: 10px;}
.client-logo img{width: 70% !important;margin: 0 auto;}

.client-carousel .owl-dots{padding-top: 40px;}
.client-carousel .owl-dots .owl-dot span{display: none;}
.client-carousel .owl-dots .owl-dot{width: 15px;margin: 0px 3px;height: 5px;border-radius: 10px;border: 1px solid transparent;
position: relative;transition: 0.5s;background-color: #D9D9D9;}
.client-carousel .owl-dots .owl-dot:hover::after, .client-carousel .owl-dots .owl-dot.active{
  background-color: #CC070A;}
  .client-carousel .owl-nav {margin-top: 30px;}
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{width: 30px;
    height: 30px;
    background: #000;
    color: #fff;
    display: inline-block;
    border-radius: 50%;}
    .owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span{position: relative;
      font-size: 30px;
      top: -8px;}
      .owl-theme .owl-nav [class*="owl-"]:hover {
        background: #78cc00;
        color: #FFF;
        text-decoration: none;
      }


/*-- blogpost area stop --*/

/*-- footer area start --*/
.footertoparea{padding: 60px 0px 60px; background-repeat: no-repeat !important; background-position: center !important;
  position: relative; background-size: cover !important;}
.footertoparea h4{color: #FFF; font-size: 25px; margin-bottom: 20px; padding-bottom: 13px; position: relative;
  font-weight: 300;}
.footertoparea h4::after{ position: absolute; content: ""; width: 20px; background: #78cc00; height: 2px; left: 0px; bottom: 0px;border-radius: 50px;}
.footertoparea h4::before{ position: absolute; content: ""; width: 50px; background: #78cc00; height: 2px; left: 25px; bottom: 0px;border-radius: 50px;}
.footertoparea ul li{margin: 0 0 5px; position: relative;}
.footertoparea ul li:last-child{margin: 0 0 0;}
.footertoparea ul li a {font-size: 17px;color: #ffffff;font-weight: 400;transition: 0.5s;}
.footertoparea ul li a:hover{color: #fff;}
.footertoparea h5{color: #78CC00;font-size: 22px;margin-bottom: 0px;font-family: "Poppins", sans-serif;margin-top: 15px;}
.footertoparea h6{color: #fff;font-size: 17px;font-weight: 300;}
.footertoparea h6 a{color: #fff;font-size: 17px;font-weight: 300;}
.fild{ position: relative;}
.footertoparea .form-control{background: initial;border: 1px solid #fff;padding: 6px 6px 6px 20px; height: 50px; border-radius: 50px;font-size: 17px; font-weight: 300;color: #fff;}
.footertoparea .form-control::placeholder{color: #fff; font-size: 17px; font-weight: 300;}
.footertoparea .btn{width: 100%;background: #fff;padding: 11px 5px;display: block;margin-top: 12px;font-size: 18px;font-weight: 500;
text-align: center;}
.footertoparea .btn:hover{background: #000; color: #fff;}
.footerlogo{text-align: center;position: relative; width: 190px; margin: 0 auto 20px;}
.footertoparea p{margin-bottom: 20px;color: #fff;font-weight: 300;}
.socialmedia ul{ padding: 0px; margin: 0px; text-align:center;}
.socialmedia ul li{ display: inline-block; list-style: none;}
.socialmedia ul li a{width: 35px;height: 35px;display: flex;border: 1px solid #fff;justify-content: center;
align-items: center;color: #fff;border-radius: 50%;margin: 0px 2px;}
.socialmedia ul li a:hover{border: 1px solid #78CC00;background: #78CC00;color: #FFF;}
.navfooter{ padding-left: 30px;}

.copyright{background-color: #08090BFC;padding: 15px 0px; position: relative;}
.copyright .container{ position: relative;}
.copyright p{font-size: 15px;color: #ffffff; margin: 0; text-align: center;}
.copyright p a{color: #78cc00;}
.copyicon{position: absolute;bottom: 0px;left: 0px;z-index: 9;}
.copyicon1{position: absolute;right: 0px;bottom: 0px;}



/*-- footer area stop --*/


.innerbanner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
}
.innerbannertext h1 {
  font-size: 45px;
  color: #fff;
  line-height: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.innerbanner:after{ position:absolute; content:"";width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;background: linear-gradient(274deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.8587767870820203) 89%);}
.innerbanner .container{position: relative;z-index: 9;}
.innerbanner ul{ padding: 0px; margin: 0px;}
.innerbanner ul li{ display: inline-block; border-right: 1px solid #fff; color: #fff; text-transform: capitalize;margin: 0px 10px 15px 0px;
  padding: 0px 10px 0px 0px;line-height: 15px;font-size: 20px;}
.innerbanner ul li:last-child{ border-right: 0px solid #fff;}
.innerbanner ul li a{ color: #fff; text-transform: capitalize;}



/*-----------------------Contact us start-----------------------*/

.contact_area{
  position: relative;
}
.contact_area .contact_rightbox {
  background-position: center;
  background-size: cover;
 
  background-repeat: no-repeat;
}
.contact_innerpage {
  box-sizing: border-box;
  padding:40px 40px 40px 0px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.contact_innerpage::after {
  position: absolute;
  right: 10px;
  top: 6px;
  height: 98%;
  width: 80%;
  background: #fff;
  content: ' ';
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 10%), 0 1px 8px 0 rgb(0 0 0 / 15%);
}
.contact_formbox label {
  font-weight: 500;
  font-size: 16px;
  color: #000000d4;
  text-transform: capitalize;
}

.contact_formbox .form-control {
  height: 46px;
  border-color: rgb(28 69 100 / 39%);
  color: #000;
  box-shadow: none;
  font-weight: 400;
  border-radius: 0;
  margin-bottom: 20px;
}
.contact_formbox .form-control::placeholder{
  font-weight: 400;
}

.contact_formbox .form-control:hover {
  border-color: rgb(32 74 105);
}
.contact_formbox textarea.form-control {
  height: 100px;
  resize: none;
  padding-top: 10px;
  border-radius: 0;
}
.contact_formbox {
  box-sizing: border-box;
  padding: 40px;
position: relative;
  z-index: 1;
}
.contact_rightboxinner {
  box-sizing: border-box;
  padding: 50px 40px;
  height: 100%;
  position: relative;
  z-index: 1;
  background: rgb(47 91 124);
  background: linear-gradient(178deg, rgb(120, 204, 0) 0%, rgb(64, 123, 56) 45%, rgb(79, 145, 41) 100%);
}
.contact_area{
  padding: 100px 0px 120px;
}
.contact_rightboxinner h3 {
  font-size: 34px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 25px;
}
.contact_rightboxinner h3 strong{
  font-weight: 400;
}
.contact_rightboxinner h3 span {
  display: block;
  border-left: 2px solid #fff;
  font-size: 17px;
  padding-left: 8px;
  margin-bottom: 5px;
  font-weight: 400;
}
.contact_rightboxinner ul.contact_list{
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact_rightboxinner ul.contact_list li {
  padding: 7px 0 0 55px;
  margin: 0 0 25px;
  position: relative;
  min-height: 43px;
}
.contact_rightboxinner ul.contact_list li .icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 43px;
  object-fit: cover;
  border-radius: 50%;
}
.contact_rightboxinner ul.contact_list li a {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
}
.contact_rightboxinner ul.contact_list li a:hover{
  text-decoration: underline;
}
.contact_rightboxinner .view_map{
  padding: 10px 15px;
  border: 1px solid #ffffff;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.contact_rightboxinner .view_map:hover{
  background-color: #ffffff;
  color: #000000;
}
.contact_rightboxinner ul.contact_social {
  padding: 30px 0 0 0;
  margin: 50px 0 0;
  list-style: none;
  border-top: 1px solid #fff;
  text-align: center;
}
.contact_rightboxinner ul.contact_social h5{
  font-size: 20px;
  padding-bottom: 20px;
  display: block;
  color: #fff;
}
.contact_rightboxinner ul.contact_social li{
  display: inline-block;
  padding: 0 0 0 0;
  margin: 0 8px 0 0;
}
.contact_rightboxinner ul.contact_social li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border: 2px solid #fff;
}
.contact_rightboxinner ul.contact_social li a:hover {
  background-color: #ffffff;
  color: #488730;
}
.contact_rightboxinner .inn-cntct-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #407b38;
  margin-right: 20px;
  background: #fff;
  font-size: 22px;
}
.contact_rightboxinner .media{
  display: flex;
  color: #fff;
  margin: 20px 0px;
}
.contact_rightboxinner .media-body{
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}
.contact_rightboxinner .media-body h5{
  font-size: 20px;
  padding-bottom: 5px;
}
.contact_rightboxinner .media-body p{
  color: #fff;margin-bottom: 0px;
}
.contact_rightboxinner .media-body p a{
  color: #fff;
}
.contact_area .about-new-shape {
  bottom:40%;
}
/*-----------------------Contact us stop-----------------------*/

.Solutionarea{padding: 15px;
  box-shadow: 0px 0px 10px 0px #ddd;
  margin-bottom: 25px;}
.Solutionimg{height: 270px;
  margin-bottom: 10px;}
.Solutionimg img{width: 100%;
  height: 100%;
  object-fit: cover;}
.Solutionarea h4{margin-bottom: 10px;
  font-size: 30px;}
.Solutionarea .btn{margin-top: 5px;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12px;}

.aboutimginner{margin-right: 0px;
  height: auto;}  
.aboutimginner img{border: 3px solid #c4c4c4;}
.aboutimginnertext h3{font-size: 25px;font-weight: 400;
  line-height: 34px;margin-top: 25px;
  margin-bottom: 10px;}
.ourclient ul{ padding: 0px 0px 0px 15px; margin:0px;}
.ourclient ul li{margin-bottom: 7px;list-style: outside;font-size: 18px;font-weight: 500;}




