@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Mediu.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Mediu.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Roman.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Roman.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Light.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Black.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('assets/fonts/NeueHaasDisplay-Thin.woff2') format('woff2'),
    url('assets/fonts/NeueHaasDisplay-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --reg: #FF5C00;
  --orange: #FF8300;
  --gray: #808080;
  --black: #1A1818;
  --text_gray: #6F6F6F;
  --heading_black:#454545;
  --bold: 'Neue Haas Grotesk Display Pro';
  --semibold: 'Neue Haas Grotesk Display Pro';
  --medium: 'Neue Haas Grotesk Display Pro';
  --regular: 'Neue Haas Grotesk Display Pro';
  --light: 'Neue Haas Grotesk Display Pro';
  --p: 15px;
  --h6: 15px;
}

* {
  font-family: var(--regular);
}

h1, h2, h3, h4, h5, h6, p, span, button, li, a{word-break: break-word;}

#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  box-sizing: border-box;
  z-index: 1000;
}

#cssmenu:after,
#cssmenu ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #menu-button {
  display: none;
}

#cssmenu {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto auto auto;
  display: flex;
}

#cssmenu ul li {
  float: left;
  display: flex;
  margin: 0 42px 0 0;
}

#cssmenu ul li img {
  height: 135px;
}

#cssmenu.align-center ul {
  font-size: 0;
  text-align: center;
}

#cssmenu.align-center ul li {
  display: inline-block;
  float: none;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right ul li {
  float: right;
}

#cssmenu ul>li>a {
  padding: 25px 0px 10px 0px;
  font-size: 15px;
  text-decoration: none;
  color: #6F6F6F;
  margin: auto 0px auto 0;
  line-height: 1.5;
  position: relative;
  transition: all 0.2s ease;
  font-family: var(--semibold);
  position: relative;
  text-transform: uppercase;
}

#cssmenu ul>li:last-child {
  margin: 0;
}

#cssmenu ul>li:last-child a {
  margin: 0 0 0 0;
}

#cssmenu>ul {
  width: 100%;
  margin: auto;
  display: flex;
}

#cssmenu .active {
  color: #2e2e2e;
  border-radius: 5px;
}

#cssmenu>ul>li.has-sub>a {
  padding-right: 21px;
}

#cssmenu>ul>li>a:hover:before {
  content: '';
  /* background: url(images/menu_text.png)no-repeat; */
  height: 130%;
  width: 120%;
  position: absolute;
  background-size: 100% 100%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cssmenu>ul>li>a:hover {
  color: #000;
  font-weight: 600;
}

#cssmenu>ul>li.has-sub:hover>a:after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  background: none;
  z-index: 10;
  padding: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 2px 5px #2e2e2e26;
  top: 100%;
  border-bottom: 5px solid var(--bg_green);
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu ul ul li {
  height: 0;
  transition: all .25s ease;
}

#cssmenu li:hover>ul {
  left: auto;
}

#cssmenu.align-right li:hover>ul {
  left: auto;
  right: 0;
}

#cssmenu li:hover>ul>li {
  height: auto;
  width: 100%;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}

#cssmenu ul ul li {
  background: none;
}

#cssmenu ul ul li:nth-child(1) {
  padding: 0px 0 0 0;
}

#cssmenu ul ul ul li:nth-child(1) {
  padding: 0px 0 0 0;
}

#cssmenu ul ul li a {
  border-bottom: 0px solid rgba(150, 150, 150, 0.15);
  padding: 10px 15px;
  z-index: 100;
  text-align: left;
  margin-top: 0;
  width: 100%;
  line-height: 1.5;
  font-family: 'f_regular';
  letter-spacing: 0px;
  font-size: 16px;
  text-decoration: none;
  background: white;
  margin: 0;
  border-bottom: 1px solid rgb(75 129 6 / 20%);
  color: #060606;
}

#cssmenu ul ul li {
  cursor: pointer;
}

#cssmenu ul li.has-sub {
  padding: 0 0px 0 0;
}

#cssmenu ul li.has-sub ul li {
  padding: 0;
}

#cssmenu ul li span.submenu-button {
  position: absolute;
  height: 13px;
  width: 12px;
  background: url(../images/menu_arrow.png)no-repeat;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  background-size: contain;
  background-position: center right;
}

#cssmenu ul ul li:last-child>a,
#cssmenu ul ul li.last-item>a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover>a,
#cssmenu ul ul li a:hover {
  color: white;
  background: var(--bg_green);
}

#cssmenu ul ul li.has-sub>a:before {
  position: absolute;
  top: 45%;
  right: 7px;
  width: 14px;
  background-size: contain !important;
  height: 8px;
  display: block;
  content: '';
  background: url('../images/menu_arrow.png')no-repeat;
  transform: rotate(270deg) translate(0, -50%);
  background-position: center right;
}

#cssmenu.align-right ul ul li.has-sub>a:before {
  right: auto;
  left: 14px;
}

#cssmenu ul ul>li.has-sub:hover>a:before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#cssmenu ul ul li.bottom_zero ul {
  top: auto;
  bottom: 0;
}


#cssmenu .current_page_item a {
  color: var(--red) !important;
}
.mobile-menu-div{
  display: none;
}
a, img, button{
    -webkit-transition: .4s ease-in-out;
    transition: all .4s ease-in-out;
}
body{
  background-color: #FCF9F7;
}
#navbar {
    position: relative;
}
.navbar-fixed {
  position: fixed !important;
  width: 100%;
  z-index: 999;
  padding: 0px 0;
  background: #fff;
  box-shadow: 0 2px 8px #2e2e2e1f;
}
.navbar-fixed img{height: 60px;width: auto;}
.header-section .wrapper{
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.call-btn{
  background: #FFE0D0;
  position: relative;
  margin-top: 5px !important;
}
.call-btn:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-top: 20px solid #fcf9f7;
  border-left: 20px solid #FFE0D0;
  width: 0;
}
.call-btn a{
  padding: 15px 20px 12px 40px !important;
  color: #FF5C00 !important;
}
.call-btn:before{
  content: url(assets/images/header-call.png);
  vertical-align: middle;
  position: absolute;
  left: 15px;
  top: 18px;
}
.enquiry-btn{
  background: #FF5C00;
  position: relative;
  margin-top: 5px !important;
}
.enquiry-btn:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-top: 20px solid #fcf9f7;
  border-left: 20px solid #ff5c00;
  width: 0;
}
.enquiry-btn a{
  color: #FFF !important;
  letter-spacing: 1.5px;
  font-size: 14px !important;
  padding: 15px 20px 12px 15px !important;
}
.btn-border{
  position: relative;
}
.btn-border:before {
  content: '';
  position: absolute;
  top: -14px;
  right: 0;
  border-top: 20px solid #FCF9F7;
  border-left: 20px solid #FF5C00;
  width: 0;
}
.btn-border button{
  color: #FFF !important;
  padding: 13px 30px 12px 20px !important;
  background-color: #FF5C00;
  border:2px solid #FF5C00;
  text-transform: uppercase;
  font-size: 14px !important;
  letter-spacing: 1.5px;
}
.btn-border:hover button{
  background-color: #FFE0D0;
  border:2px solid #FFE0D0;
  color: #FF5C00 !important;
}
.btn-border:hover::before{
  border-top: 20px solid #FCF9F7;
  border-left: 20px solid #FFE0D0;
}
/*Home*/
.flex-section{
  display: flex;
  flex-direction: column-reverse;
}
.banner_slider{
  overflow: hidden;
}
.mobile_banner{
  display: none;
}
.grid-section{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}
.banner_wrapper{
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_content h2{
  color: #454545;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  line-height: 50px;
  padding: 5% 15% 30px;
}
.about-section .wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 100px;
  padding: 0px 0px 5%;
  width: 1000px;
  align-items: center;
}
.about-section h2{
  color: #FF5C00;
  font-size: 23px;
  font-weight: 400;
  padding: 0px 0px 10px;
}
.about-section h1{
  color: #454545;
  font-size: 44px;
  padding: 0px 0px 20px;
  font-weight: 400;
  line-height: 60px;
}
.about-section p{
  color: #808080;
  margin: 0px;
  line-height: 30px;
  font-weight: 500;
}
.grid-section{
  padding: 3% 0px 5%;
}

.grid-box{
  position: relative;
}
.grid-section h3{
  background-color: #454545;
  color: #FFF;
  padding: 20px;
  font-size: 24px;
  text-align: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.grid-section h3:before {
  content: '';
  position: absolute;
  top: 0px;
  right: 0;
  border-top: 35px solid white;
  border-left: 35px solid #454545;
  width: 0;
}
.grid-box img{
  width: 100%;
  height: auto;
}
.grid-box .hover-text{
  display: none;
}
.grid-box img::hover .hover-text{
  display: block !important;
  position: absolute;
    bottom: 0;
    text-align: left;
    padding: 40px;
    background-color: #45454570;
    color: #FFF;
}
.grid-box img:hover h3{display: none;}
.energetic-section{
  background-color: #FF5C00;
  margin: 12% 0px 0px;
  padding: 0px 0px 3%;
}
.energetic-section .wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  color: #FFF;
  padding: 0px 0px 5%;
}
.counter-section{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #FFF;
  justify-items: center;
  align-items: center;
  text-align: center;
  margin: auto;
  max-width: 1000px;
}
.energetic-section .right{
  position: relative;
}
.energetic-section .right img{
  margin: -20% 0px 0px;
}
.energetic-section h2{
    font-size: 45px;
    font-weight: 400;
    padding: 0px 0px 20px;
    line-height: 60px;
}
.energetic-section h2 span{
  font-size: 90px;
    width: 100%;
    display: block;
    text-transform: uppercase;
    line-height: 100px;
}
.energetic-section p{
  color: #FCCEB4;
    width: 70%;
    margin: 0;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;    
}
.counter-section p{
  width: 100%;
  margin: auto;
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding: 10px 0px 0px;
}
.counter-section span{
  color: #000;
}
.counter-section span:after{
  content: ' + ';
}
.counter-section .col-md-12{
  background-color: #FFF;
  padding: 30px;
  
}
.counter-section img{
  margin: auto;
  margin: auto auto 20px;
}
.services-section{
  padding: 50px 0px;
}
.services-section h2, .testimonials-section h2{
  color: #FF5C00;
  font-size: 24px;
  padding: 0px 0px 0px;
  line-height: 35px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.services-section h3, .testimonials-section h3{
  color: #454545;
  font-size: 48px;
  line-height: 60px;
  padding: 0px 0px 20px;
  font-weight: 400;
  text-align: center;
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 50px 0px;
  text-align: center;
}
.service-grid img{
  width: 100%;
  height: 225px;
  margin: auto;
  padding: 0px 0px 25px;
}
.service-grid h4{
  font-size: 24px;
  color: #000;
  padding: 0px 0px 15px;
  font-weight: 400;
}
.service-grid p{
  color: #808080;
  line-height: 30px;
  font-weight: 500;
}
.service-grid .grid-box{
  padding: 0px 30px;
}
.testimonial-slider{
  overflow: hidden;
}
.testimonials-section{
  background-color: #FF5C00;
  padding: 50px 0px 15%;
  background-image: url(assets/images/footer-round-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
}
.testimonials-section h2, .testimonials-section h3{
  color: #FFF;
}
.testimonials-section .wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  color: #FFF;
  padding: 5% 0px;
}
.testi-author{
  display: flex;
    gap: 20px;
    align-items: center;
}
.testi-author p{
  margin: 0px;
  color: #FFF;
}
.testi-author span{
  font-size: 13px;
  color: #FFF;
}
footer{
  background-color: #221F1F;
  color: #FFF;
  padding: 50px 0px 50px 0px;
}
.footer-sec2 .wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}
.copyrights{
  background-color: #843407;
  color: #FFF;
  padding: 10px;
  text-align: center;
}
.copyrights p{
  color: #FFF;
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  font-size: 15px;
}
footer h4{
  color: #FCCEB4;
  font-size: 20px;
  padding: 0px 0px 25px;
  font-weight: 400;
}
footer .column1 img{
  padding: 0px 0px 20px;
  width: 100%;
  height: auto;
}
footer .column1 p{
  color: #FCCEB4;
  line-height: 30px;
}
footer .column2 ul{
  padding: 0px;
}
footer .column4 img{
  width: 100%;
  height: 250px;
}
footer p, footer li{
  font-weight: 500;
}
footer li{
  padding: 0px 0px 12px;
}
footer a:hover{
  opacity: 0.7;
}
.cont{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0px 0px 10px;
  line-height: 28px;
  justify-content: flex-start;
}
.footer-sec1{
  display: none;
}
.home .footer-sec1{
  display: block;
}
.footer-sec1 .wrapper{
  display: flex;
  gap: 0px;
  align-items: stretch;
  margin: -12% 0px 5% 0px;
  width: 100%;
  justify-content: flex-end;
  max-width: initial;
  padding: 0px 0px 0px 0px;
}
.footer-sec1 .right p{
  font-size: 36px;
  color: #FFF;
  font-weight: 400;
}
.footer-sec1 .container{
  width: 100%;
  max-width: initial;
  padding: 0px;
}
.footer-sec1 .right{
  background-color: #454545;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  position: relative;
  padding: 0px 7% 0px 3%;
}
.footer-sec1 .right .theme_btn{
  background-color: #FF5C00;
  color: #FFF !important;
}
.footer-sec1 .right .btn-border:before{
  top: 0;
  right: 212px;
  border-top: 20px solid #454545;
  border-left: 20px solid #FF5C00;
}
.footer-sec1 .left span, .energetic-section .right span {
  left: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    top: -45%;
}
.footer-sec1 .left span:before, .energetic-section .right span:before {
  content: '';
    background-image: url(assets/images/footer-video-play.png);
    width: 47px;
    height: 47px;
    position: absolute;
    bottom: 0;
}
.energetic-section .right span{
  position: absolute;
    top: 45%;
    left: 40%;
}
.energetic-section .right span:before{
  background-image: url(assets/images/video-play.png);
  width: 96px;
  height: 96px;
}
.homeslider_prev, .homeslider_next{
  position: absolute;
    z-index: 99;
    opacity: 1;
    display: list-item;
    top: 50%;
    left: 0px;
}
.homeslider_next{right: 0px;left: initial;}
.homeslider_prev:before {
  content: '';
    position: absolute;
    cursor: pointer;
    background-image: url(assets/images/right-arrow.png);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 0px;
    background-color: transparent;
    left: 0px;
    bottom: 0px;
    z-index: 99;
    opacity: 1;
}
.homeslider_next:before {
      content: '';
    position: absolute;
    cursor: pointer;
    background-image: url(assets/images/right-arrow.png);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 0px;
    background-color: transparent;
    right: 0px;
    bottom: 0px;
    z-index: 99;
    opacity: 1;
}
.testi-slider p{
  color: #FCCEB4;
  line-height: 30px;
  font-weight: 500;
  padding: 0px 20% 20px 0px;
    font-size: 18px;
}
.author, .rating{
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0px 0px 20px;
}
.author p, .rating p{
  margin: 0px !important;
    font-size: 16px;
    padding: 0px;
}
.rating li:before{
  content: url(assets/images/star.png);
  vertical-align: top;
}
.rating ul{
  padding: 1px 10px;
    display: inline-block;
    margin: 0px;
    background-color: #FBB58E;
    border-radius: 50px;
}
.rating ul li{
  display: inline-block;
}
.author span{
  font-size: 20px;
}
.testimonials-section .left img{
  margin: auto;
}
.innerbanner_slider .banner_item{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.innerbanner_slider .banner_wrapper{
  position: initial;
  text-align: left;
}
.innerbanner_slider .banner_wrapper p{
  color: #5A5959;
    padding: 0% 15% 30px;
    font-size: 19px;
    line-height: 35px;
    font-weight: 500;
    margin: 0;
}
.innerbanner_slider .banner_wrapper .btn-border{
  padding: 0px 0px 0px 15%;
}
.innerbanner_slider .banner_item img{
  width: 100%;
  height: auto;
}
.innerpage_section{
  background-color: #F9F4F0;
}
.whyus-section .container{
  background-image: url(assets/images/aboutus/bg.png);
    background-repeat: no-repeat;
    min-height: 640px;
    background-size: contain;
    margin: auto;
    width: 100%;
    max-width: 1100px;
    color: #FFF;
    padding: 0px 50px;
}
.whyus-section .container h2{
  padding: 0px 0px 5%;
}
.whyus-section .wrapper{
  display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    justify-items: center;
}
.aboutpage .wrapper{
  width: 100%;
    padding: 5% 0px;
    gap: 10%;
}
.whyus-section .container p{
  line-height: 35px;
  font-weight: 500;
}
.para-txt{
  max-width: 500px;
    margin: auto 0px auto auto;
    padding: 5% 0px 0px;
}
.para-txt p{
  margin: 0px;
}
.mission-section .wrapper{
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
}
.mission-section .wrapper h2{
  padding: 0px 0px 5%;
}
.mission-section .wrapper p{
  font-weight: 500;
  line-height: 30px;
}
.mission-section .wrapper img{
  margin: 0px 0px 20px;
  width: auto;
  height: 49px;
}
.team-section{
  padding: 5% 0px;
}
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-grid p{
  margin: 0px;
  color: #FF5C00;
  font-size: 20px;
}
.team-grid span{
  color: #000;
  font-size: 16px;
}
.team-grid img{
  padding: 0px 0px 20px;
}
.team-section h2{
  padding: 0px 0px 50px;
}
.looking-section{
  background-color: #FF5C00;
  padding: 50px 0px;
}
.looking-section .wrapper{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: end;
  color: #FFF;
}
.looking-section .left{width: 70%;}
.looking-section .right{width: 30%;}
.looking-section h3{
  font-size: 35px;
  padding: 0px 0px 20px;
  margin: 0px;
}
.looking-section p{
margin: 0px;
    width: 70%;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    color: #FEC5A5;
}
.looking-section .btn-border{
text-align: right;
    float: right;
}
.looking-section .btn-border:before{
  top: 1px;
    right: 2px;
    border-top: 20px solid #ff5c00;
    border-left: 20px solid #ffffff;
}
.looking-section .btn-border button{
  background-color: #FFF;
    color: #FF5C00 !important;
}
.product-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.product-box h2{
  color: #000;
  font-weight: 400;
  font-size: 35px;
  padding: 0px 0px 30px;
}
.product-box p{
  line-height: 30px;
  font-weight: 500;
  color: #808080;
  padding: 0px 0px 40px;
  margin: 0px;
}
.product-box img{
  height: 450px;
    width: auto;
    margin: auto;
}
.product-grid{
  padding: 5% 0px;
  display: flex;
    flex-direction: column;
    gap: 30px;
}
.more-products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.more-products-grid img{
  padding: 0px 0px 25px;
  width: 100%;
  height: auto;
}
.more-products-grid h3{
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.more-products{
  padding: 0px 0px 5%;
}
.more-products h2{
  font-weight: 400;
}
.clients-section, .blog-section{
  padding: 5% 0px;
}
.clients-section h1, .blog-section h1{
  padding: 0px 0px 50px;
  font-weight: 400;
}
.clients-section p, .blog-section p{
  padding: 0px 0px 30px;
  color: #808080;
  line-height: 30px;
  font-weight: 500;
}
.clients-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.clients-grid img{
  width: 100%;
  height: auto;
}
.recent-blog li{
  list-style: none;
}
.recent-blog h2{

}
.recent-blog .wp-block-latest-posts__post-title{
  color: #FF5C00;
  font-weight: 400;
  line-height: 50px;
  font-size: 35px;
  padding: 0px 0px 20px;
}
.recent-blog .wp-block-latest-posts__post-date{
  color: #000;
  font-size: 15px;
  padding: 0px 0px 30px;
}
.recent-blog .wp-block-latest-posts__post-excerpt{
  color: #808080;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
.wp-block-latest-posts__featured-image.alignleft{
  margin-right: 5em;
}
.blog-grid ul{
  width: 100%;
    float: left;
    padding: 5% 0px 5% 0px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.blog-grid ul img{
  width: 100%;
  height: auto;
  padding: 0px 0px 20px;
}
.blog-grid ul h2{
color: #FF5C00;
    font-weight: 400;
    line-height: 35px;
    font-size: 25px;
    padding: 0px 0px 10px;
}
.blog-grid ul p{
  color: #808080;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin: 0px;
    padding: 0px 0px 10px;
}
.blog-grid ul .meta p{
  color: #000;
  margin: 0px;
    font-size: 15px;
    padding: 0px 0px 10px;
}
.blog-grid ul .read-more{
  padding: 0px;
  margin: 0px;
  color: #FF5C00;
  font-weight: 400;
}
.contact-section{
  padding: 50px 0px;
}
.contact-section .wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-section h1, .contact-section h2{
  color: #454545;
    font-size: 44px;
    padding: 0px 0px 20px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
}
form input, form textarea{
  padding: 10px 20px;
  border: 1px solid #BBB;
  background-color: #FFF;
  color: #000;border-radius: 10px;
}
form .theme_btn{
  background-color: #FF5C00;
  border: 1px solid #FF5C00;
  color: #FFF;padding: 10px 20px;border-radius: 10px;margin: 20px 0px 0px;
}
.contact-section .left .cont{
  display: block;
  text-align: center;
  padding: 0px 0px 25px;
}
.contact-section .left .cont img{margin: 0px auto 20px;}
.contact-section .left h1{padding: 0px 0px 30px;}
.map-section .container{max-width: initial;width: 100%;padding: 0px;}
.blog_section{padding: 50px 0px;}
.blog_section h1, .blog_section_top_right h2{color: #000;
    font-weight: 400;
    font-size: 35px;
    padding: 0px 0px 20px;}
.blog_section .post-date{padding: 0px 0px 30px;
    font-style: italic;
    color: #a19f9f;}
.blog_section p, .blog_section_top_right p{line-height: 30px;
    font-weight: 500;
    color: #808080;
    padding: 0px 0px 40px;
    margin: 0px;}
.blog_section img{margin: 0px 0px 20px;}
.blog_section_top_left{width: 68%;float: left;padding: 0px 50px 0px 0px;}
.blog_section_top_right{width: 32%;
    float: left;
    border-left: 1px solid #bbb;
    padding: 0px 0px 0px 40px;}
.blog_section_top_right .blogdate h2{font-size: 25px !important;}
textarea{height: 60px;}
.comment-respond{background-color: #FFF;box-shadow: 0px 4px 20px 0px #00000040;border-radius: 20px;padding: 30px;margin: 0px 0px 50px;}
.comment-form p{padding: 0px;}
.comment-form input, .comment-form textarea{width: 100%;}
.comment-form [type=button], .comment-form [type=reset], .comment-form [type=submit]{background-color: #FF5C00;border: 1px solid #FF5C00;color: #FFF;padding: 10px 20px;margin: 30px 0px 0px;}
.comment-form [type=button]:hover, .comment-form [type=reset]:hover, .comment-form [type=submit]:hover{background-color: #FFE0D0;border: 1px solid #FF5C00;color: #FF5C00;}
.blog_section .post-cat{display: none;}
#wp-comment-cookies-consent{width: auto;}
.category-page h1{
text-align: center;
}
.category-page .blog_section_top_left{width: 100%;padding: 0px;}
.category-page ul{padding: 0px;display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;}
.category-page ul li{}
.category-page ul li h2{font-size: 23px;
    padding: 20px 0px 20px;
    font-weight: bold;}
.category-page ul li h4{font-style: italic;font-size: 16px;color: #A3A3A3;}
.category-page ul li img{width: 100%;height: auto;}