/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.50
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
:root {
  --theme-color: #85BF18;
  --theme-shade-color: #99EF68;
  --theme-color-2: #F9881B;
  --theme-color-3: #00223a;
  --title-color: #15161C;
  --body-color: #4D555B;
  --gray-color: #383838;
  --warning-color: #F9881A;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-color: #f5f5f5;
  --greyc-color: #c1c1c1;
  --dark-color: #15161C;
  --white-color: #ffffff;
  --black-color: #000;
  --hr-color: #000;
  --outfit-font: 'Montserrat', sans-serif;
  --dm-sans-font: "Inter", sans-serif;
  --albert-sans-font: "Albert Sans", sans-serif;
  --body-fz: 16px;
}

html, body {
  scroll-behavior: smooth !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: var(--greyc-color);
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

body {
  color: var(--body-color);
  font-size: var(--body-fz);
  font-family: var(--dm-sans-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: var(--title-color);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--outfit-font);
  color: var(--title-color);
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: var(--hr-color);
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

label {
  color: var(--gray-color);
  cursor: pointer;
  font-size: var(--body-fz);
  font-weight: 400;
}

*::-moz-selection {
  background: var(--theme-color);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--theme-color);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

.container-fluid{
  width: 93%;
}
/* about section */
 .py-100 {
            padding: 70px 0;
        }

       .sub-title {
    font-family: var(--outfit-font);
    color: var(--theme-color-2);
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

        .main-title {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-size: 40px;
            line-height: 1.2;
            font-weight: 700;
        }
        .main-title span{
          color: var(--theme-color-2);
        }
.about-section .main-title{
	font-size: 35px !important;
}

        .counter-number {
    font-family: var(--outfit-font);
    font-size: 190px;
    font-weight: 300 !important;
    color: var(--theme-color-3);
    line-height: 1;
    margin-bottom: 0;
}

        .counter-number span {
            font-size: 70px;
            vertical-align: top;
            margin-left: -10px;
        }

        .counter-text {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-weight: 600;
            font-size: 18px;
            margin-top: 10px;
        }

        .about-desc p {
    font-family: var(--dm-sans-font);
    color: var(--body-color);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 500;
}
.teddy-img {
    width: 90px;
    position: absolute;
    right: 15%;
    bottom: 0;
    opacity: 0.5;
}

        .border-end-custom {
            border-right: 1px solid #e5e5e5;
        }

        .btn-explore {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            border: 1px solid var(--theme-color-3);
            border-radius: 50px;
            color: var(--theme-color-3);
            text-decoration: none;
            font-family: var(--outfit-font);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-explore:hover {
            background-color: var(--theme-color-3);
            color: var(--white-color);
        }

        .about-image-wrapper img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image-wrapper:hover img {
            transform: scale(1.02);
        }
        .stat-box {
    text-align: center;
}
section.about-section.py-100 span {
    font-weight: bold;
    font-size: 40px;
    color: #09213e;
}
.stat-box p {
    margin: 0;
    color: #444;
    font-size: 16px;
}

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .main-title {
                font-size: 28px;
            }

            .counter-number {
                font-size: 80px;
            }

            .border-end-custom {
                border-right: none;
                border-bottom: 1px solid #e5e5e5;
                margin-bottom: 20px;
                padding-bottom: 20px;
            }
        }


        /* feature section */
        .features-section {
    background: linear-gradient(rgb(0 34 58 / 32%)), url(assets/images/feature-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 100px 0 250px;
    position: relative;
}

        .feature-card-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-card {
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

        .dark-card {
            background-color: var(--theme-color-3);
            color: var(--white-color);
        }

        .highlight-card {
            background-color: var(--theme-color-2);
            color: var(--white-color);
        }

        .card-number {
    font-family: var(--outfit-font);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

        .card-number::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--white-color);
        }

        .card-title {
    font-family: var(--outfit-font);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

        .card-text {
            font-family: var(--dm-sans-font);
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .feature-tag {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 13px;
            font-family: var(--dm-sans-font);
        }

        .highlight-card .feature-tag {
            background-color: rgba(255, 255, 255, 0.15);
        }

        .explore-link {
            margin-top: auto;
            color: var(--white-color);
            text-decoration: none;
            font-family: var(--outfit-font);
            font-weight: 600;
            border-bottom: 1px solid var(--white-color);
            padding-bottom: 5px;
            width: fit-content;
        }

        .explore-link i {
            font-size: 12px;
            margin-left: 8px;
        }

        .explore-link:hover {
            color: var(--theme-shade-color);
            border-color: var(--theme-shade-color);
        }

        @media (max-width: 991px) {
            .feature-card-wrapper {
                border-radius: 0;
            }

            .feature-card {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }


          /* Feature Item Styling */
.growth-section .main-title {
    font-size: 40px;
}
        .feature-item {
            transition: transform 0.3s ease;
        }

       .feature-icon i{
    width: 60px;
    height: 60px;
    background-color: #ffe2c6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 24px;
            color: var(--theme-color-3);
}
section.product-section.py-100 .product-name {
    color: #000;
}

        .feature-text h3 {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-text p {
            font-family: var(--dm-sans-font);
            color: var(--body-color);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Custom Separator Line */
        .border-top {
            border-color: #eee !important;
        }

        /* Image Wrapper */
        .growth-img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
      section.features-card-section {
    margin-top: -220px;
    position: relative;
    z-index: 99;
}
        /* Responsive Adjustments */
        @media (max-width: 768px) {
			section.product-detail.py-5 ul {
    padding: 0 0 0 32px !important;
}
			section.another-pages {
    margin: 45px 0 45px 0 !important;
}
            .main-title {
                font-size: 32px;
            }

            .feature-item {
                margin-bottom: 10px;
            }

            .border-top {
                border-top: none !important;
                padding-top: 0 !important;
            }
        }

/* Marquee Section */
.marquee-section {
    background-color: var(--theme-color-2);
    padding: 1rem 0 ;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0px 2rem 0;
    display: flex;
    align-items: center;
}

.marquee-item i {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* product section */
section.product-section {
background-color: var(--theme-color-3);
}
.product-card img {
    border-radius: 15px 0 0 15px;
    margin-bottom: 20px;
}
.product-name {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: center;
    padding: 0 10px;
}
.product-name h4 {
    margin: 0;
    color: #000000;
}
.product-card {
    border-bottom: 1px solid #919191;
    padding-bottom: 10px;
}
.product-name i {
    transform: rotate(324deg);
    font-size: 20px;
}




        .desc-text {
            font-family: var(--dm-sans-font);
            color: var(--body-color);
            line-height: 1.7;
        }

        .check-item {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .check-item i {
            color: var(--theme-color-3);
            background: rgb(0 54 179 / 14%);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }
        section.another-pages {
    margin: 70px 0 70px 0;
}
        .btn-main {
            background-color: var(--theme-color-2);
            color: var(--white-color);
            padding: 15px 35px;
            display: inline-block;
            text-decoration: none;
            font-family: var(--outfit-font);
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-main:hover {
            background-color: var(--theme-color-3);
            color: var(--white-color);
        }

        .custom-progress {
            height: 8px;
            background-color: #eee;
            border-radius: 0;
        }

        .custom-progress .progress-bar {
            background-color: var(--theme-color-3);
        }

        .skill-name {
            font-family: var(--outfit-font);
            font-weight: 700;
            color: var(--theme-color-3);
        }

        .floating-card {
            position: absolute;
            bottom: 0px;
            right: 0px;
            background-color: var(--white-color);
            width: 260px;
            z-index: 2;
        }
.brand-icon img {
    width: 65%;
}
section.contact-section.py-100 h3 {
    color: #fff;
}
.map iframe {
    margin: 50px 0 50px 0;
}
        .floating-card p {
    font-family: var(--outfit-font);
    font-weight: 600;
    color: var(--theme-color-3);
    font-size: 18px;
    line-height: 1.4;
}

        .join-link {
            color: var(--theme-color-3);
            text-decoration: none;
            font-family: var(--outfit-font);
            font-weight: 700;
            border-bottom: 2px solid var(--theme-color-3);
            padding-bottom: 2px;
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .floating-card {
                /* position: relative;
                right: 0;
                bottom: 0;
                width: 100%;
                margin-top: 20px; */
                display: none;
            }

            .main-title {
                font-size: 30px;
            }
        }



        /* why-pedia */
        .why-pedia{
                background: linear-gradient(rgb(0 34 58 / 32%)), url(assets/images/why.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
        }
        .why-pedia-content p {
    color: #fff;
}
.why-pedia-content .check-item {
    font-family: var(--outfit-font);
    color: var(--white-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}
.why-pedia-content .check-item i {
    color: #ffffff;
    background: rgb(0 54 179 / 17%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.why-point {
    background-color: rgb(255 255 255 / 31%);
    font-size: 26px;
    font-family: var(--dm-sans-font);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    padding: 25px 10px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
}
/* manufaturing section */
.floating-card-2 {
    position: absolute;
    bottom: 0px;
    left: 0;
    background-color: var(--white-color);
    width: 260px;
    z-index: 2;
}

/* testinomials  */

section.testinomials {
    padding: 80px 0;
    background: var(--theme-color-3);
}
.testinomials-content {
    padding-left: 40px;
}
.testinomials-card {
    border: 1px solid #ffffff3b;
    background-color: #ffffff25;
    padding: 40px 20px;
    width: 100%;
    color: #ffffffc7;
    height: 100%;
    border-radius: 10px;
}
.name-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.name-box span {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--outfit-font);
}
.number-stars {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}
.number-stars p {
    font-size: 40px;
      font-family: var(--outfit-font);
      font-weight: 500;
}
.number-stars span{
    color: var(--theme-color-2);
}
.name-box img {
    width: 50px !important;
}



/* contact-section */
.call-card {
    background: var(--theme-color-2);
    position: absolute;
    bottom: 20px;
    width: 84%;
    margin: auto;
    left: 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8px;
    border-radius: 5px;
}
.call-left a {
    color: #fff;
}
.call-left a:hover {
    color: var(--theme-color-3);
}
.call-right a {
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--theme-color-3);
    transition: all 0.4s ease-in-out;
}
.call-right a:hover{
    background: var(--theme-color-3);
    color: var(--theme-color-2);
}

.contact-box {
    border: 1px solid #DBDEE1;
    padding: 15px;
    background: #0a2138;
    position: sticky;
    top: 0;
}
div#enquiry-form h5 {
    color: #fff;
}


/* footer */
footer{
    background-color: var(--theme-color-3);
    position: relative;
}
.footer-right-img {
    position: absolute;
    right: 0;
    bottom: 0;
   
}
.footer-logo{
    width: 65%;
        margin-bottom: 20px;
}
.footer-content {
    padding: 70px 0;
    border-right: 1px solid #ffffff8f;
    color: #ffffffbd;
}
.contact-detail-box p {
    margin: 5px 0;
}
.contact-detail-box p a {
    color: #ffffffd6;
}

.social-media {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}
.contact-detail-box {
    margin-top: 25px;
    margin-bottom: 30px;
}
ul.social-media li a i {
    background-color: #ffffff24;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #ffffff17;
}
.footer-box {
    padding: 70px 0;
    position: relative;
}
.footer-heading{
        font-family: var(--outfit-font);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #fff;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: var(--white-color);
}
.footer-heading::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60%;
    height: 2px;
    background-color: #ffffff38;
}
.footer-links{
    list-style: none;
    padding: 0;
}
ul.footer-links li a {
    line-height: 35px;
    color: #ffffffbd;
}
ul.footer-links li a:hover{
    color: var(--theme-color-2);
}
.footer-bottom {
    border-top: 1px solid #fff;
    padding: 15px 0;
}
.footer-bottom-line{
     color: #ffffffbd;
}
.footer-bottom-line a{
    color: var(--theme-color-2);
}

/* breadcrum styling */
.breadcrumb-section {
	background-color: #f9881b;
	padding: 54px 0;
}

/* inner pages styling */
.about {
	border: 1px solid black;
	border-radius: 10px;
	padding: 8px 12px;
}
.box {
	background-color: #03243c;
	color: white;
	border-radius: 19px;
	padding: 27px 27px;
}
.subheading_h2 {font-size: 18px !important; color: #fa881c !important; margin-top: 1rem; margin-bottom: 1rem; font-weight: 700; position: relative;}
/* 
inner page styling */
/* contact styling */
.section-title p {
font-size: 14px;
}
.section-title h3 {
font-size: 14px;
color: #00223b;
font-weight: 700;
}
.faqs-contact-box
{   
 width: 100%;
 max-width: 480px;   
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-medium);
 }
.faqs-contact-item-box {  
color: white;
background: #01233c;
 display: flex;
flex-wrap: wrap;
 gap: 20px 0;
padding: 20px;
}
.faqs-contact-box-title 
{
background: #f88819;
text-align: center;
padding: 15px 30px;
}
.faqs-contact-box-title h3{
 color: white;
 }                 
.cta-contact-item {
border-right: 1px solid #ffffff1c;
margin-right: 45px;
padding-right: 20px;
}
 .cta-contact-header h3 
 {
color: white;
padding-top: 15px;
}
.cta-contact-header i {
font-size: 24px;
color: var(--text-light);
 margin-right: 10px;
}
.cta-contact-header {   
 display: flex;
 align-items: center;  
 margin-bottom: 10px;
 }
 textarea.form-control 
 {
height: 89px;
 }
.contact-form 
 {    
border: 1px solid #0000000f;    
 padding: 0 16px;
  border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
 }
 input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-button.btn-estimate
 {  
 color: white;
 background: #01233c;
  border: navajowhite;
  border-radius: 10px;
   padding: 7px 31px;
   }
/* pcd franchise */
.content-block{
	background-color: #ffffff; 
	padding: 3rem;
	border-radius: 0.5rem; 
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);   
	margin-bottom: 3rem;
   }
   .styled-list-icon{    
	list-style: none;    
	padding-left: 0;
	margin-top: 26px;
    }
	p:last-child {    
	margin-bottom: 21px;
    }
	.styled-list-icon li i.fa {   
	color: #01233a;   
	font-size: 1.3rem;
	 margin-right: 10px;
	line-height: 1.6;
	position: relative;
	top: 2px;
	}
	.entry-content h2 {
	 font-size: 30px;
	color: #00223b;
	font-weight: 700;
     }
	 .section-subtitle {   
	font-size: 18px;
	color: #fa881c;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	}
	.section-subtitle::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #00223b;
	margin: 0.25rem auto 0;
	border-radius: 2px;
	}
	@media (max-width: 767px){
    .content-block {
	padding: 0;
	}
	}
section.another-pages h4 {
    color: #000 !important;
}
section.another-pages ul li a {
    color: #000;
}
ul#menu-productlistmenu li {
    border: 1px solid #bbbbbb;
    padding: 10px;
    margin: 0px 0 15px 0;
    border-radius: 4px;
}
ul#menu-productlistmenu li:hover {
    background: #ffd5ae;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    padding: 5px 5px 5px 5px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
	 padding: 5px 5px 5px 5px;
  border: 1px solid #e6e6e6;
    border-radius: 5px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #ea8e3b;
    color: #fff;
    border: none;
    padding: 10px 15px 10px 15px;
}
section.another-pages h1, h2, h3, h4, h5, h6 {
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0 10px 0;
}
section.product-detail.py-5 h1, h2, h3, h4, h5, h6{
	 font-size: 30px;
    font-weight: 600;
    margin: 10px 0 10px 0;
}
.wpcf7-textarea {
	height: 66px !important;
}