/* common css */
:root {
    --clr-wht: #fff;
    --clr-blk: #000;
    --thm-dk-blue: #006498;
    --thm-lg-blue: #347cbe;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post,
.page {
    margin: 0;
}

section {
    padding-block: 60px;
}

.section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 1.6em;
    text-align: center;
    color: #FA3C00;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    background: var(--clr-wht);
    padding-inline: 60px;
    position: relative;
    z-index: 3;
}

.section-heading:before {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    background: #FA3C00;
    top: 60%;
    z-index: 0;
}

/* header */
.site-branding.top-header {
    display: flex;
    justify-content: space-between;
    padding-block: 16px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#primary-menu li a {
    padding: 12px 16px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    text-decoration: none;
    font-family: poppins;
}
.sub-menu {
    display: block !important;
    width: 300px;
    background: #FFF;
    top:49px !important;
}

.sub-menu li a {
    color: #006498 !important;
    display: block;
    padding: 12px 20px !important;
    border-bottom: 1px solid;
    width: 100% !important;
}

form.search-form {
    position: relative;
}

.form-control:focus {
    box-shadow: none;
}

form.search-form {
    border: 1px solid gray;
    border-radius: 3px;
}

input.form-control.search-field {
    border: none;
    padding: 8px;
}

.search-submit {
    padding: 7px 8px;
    border: none;
    background: none;
}



/* menu */
#primary-menu {
    background: var(--thm-dk-blue);
    min-height: 50px;
    align-items: center;
    justify-content: space-around;
}

#primary-menu li a {
    color: var(--clr-wht);
    font-weight: 500;
}

.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* top categories */
.cats-wrpr {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.cat-outer-wrpr {
    border: 1px solid #929292;
    border-radius: 20px;
}

.cat-img {
    padding: 10px 0 15px;
}

.cat-img img {
    border-radius: 20px;
}

.cat-title h4 {
    margin: 0;
    text-align: center;
    color: var(--clr-wht);
    font-size: 20px;
    font-weight: 600;
    padding-block: 10px;
}

.cat-title {
    background: var(--thm-lg-blue);
    border-radius: 0 0 20px 20px;
}
.cat-8, .cat-10, .cat-12, .cat-19, .cat-23, .cat-27{
    display:none;
}

/* categories banners */
.cat-banner-outer-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 20px;
    row-gap: 40px;
}

.cate-banner {
    min-height: 250px;
    position: relative;
}

.cate-banner img {
    height: 100%;
    transition: 0.3s;
}

.cate-banner:hover img {
    opacity: 0.75;
    transition: 0.3s;
}

.locations {
    grid-column: 1/3;
    text-align: center;
}

.locations img {
    border-radius: 10px;
}

.explore_btn {
    background: #FF0000;
    padding: 15px 26px;
    border-radius: 5px;
    border: 2px solid var(--clr-wht);
    position: absolute;
    left: 20px;
    bottom: 40px;
    color: var(--clr-wht);
    text-transform: uppercase;
    font-weight: 600;
}


.map-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mapWrap {
    width: 30%;
}

.mapWrap .map-inner-wrapper,
.mapWrap .map-inner-wrapper iframe {
    height: 100%;
    width: 100%;
}

.map-inner-wrapper {
    background-color: #00649821;
    padding: 10px;
    border-radius: 0 10px 10px 0;
}

.formWrap {
    width: 66%;
}

.formWrap form.wpcf7-form input {
    width: 100%;
    padding: 0.60em;
    border-color: var(--thm-dk-blue);
}

.formWrap form.wpcf7-form input:focus-visible {
    outline: none;
}

.formWrap form.wpcf7-form label {
    display: inline-block;
    color: #494b51;
    font-weight: 600;
}

.formWrap form.wpcf7-form label span {
    color: red;
}

.form-submit p {
    margin-top: 24px;
    margin-bottom: 0;
}

.wpcf7-submit {
    min-height: 45px;
    background: var(--thm-dk-blue) !important;
    color: var(--clr-wht) !important;
    border-radius: 0 !important;
}

/* footer */
footer#colophon {
    background: #023047;
    padding: 40px;
    color: var(--clr-wht);
}

.site-info {
    display: flex;
    justify-content: space-between;
}

.left-right-bottom-wrpr {
    display: flex;
    justify-content: space-between;
    padding-block: 10px;
}

.proudct2List {
    visibility: none;
}

.footer-inner-wrap .menu a {
    color: var(--clr-wht);
    font-size: 14px;
}

.footer-inner-wrap h4 {
    font-weight: 400;
    font-size: 1.4rem;
}

.footer-social-media {
    display: flex;
    gap: 4px;
    margin-top: 16px;
}

.footer-social-media a {
    color: #fff;
    padding: 4px 8px;
    background: #4175fc;
}

.bottom-footer p {
    margin: 0;
}


/**** amzing special page ****/

#amazing-special-section-page-001 {
    width: 100%;
    display: block;
    text-align: center;
    padding: 40px 0 60px;
}

.amazing-title-heading-001 {
    display: block;
    font-size: 90px;
    margin: 0 0 10px 0;
    color: #7030A0;
    font-weight:700;
	text-transform: uppercase;
}

.amazing-title-heading-002 {
    font-size: 36px;
    display: block;
    margin: 0 0 30px 0;
}

.amazing-title-heading-003 {
    font-size: 24px;
    display: block;
    margin: 0;
    color: #C45911;
}

.amazing-title-heading-002 img {
    display: inline-block;
    margin: 0 0 -3px 0;
}
.amazing-special-listing-logos-001 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 80px 0 0 0;
}

.amazing-special-listing-inner-logos-001 {
    width: 18%;
}

.amazing-special-listing-inner-logos-001 img {
    width: 100%;
    display: block;
}

#includes-embroidered-front-sectoin-page-001 {
    width: 100%;
    display: block;
    padding: 80px 0;
    background: #7030a00f;
}

#includes-embroidered-front-sectoin-page-001 h2 {
    display: block;
    text-align: center;
    margin: 0 0 60px 0;
    font-size: 30px;
    padding: 0 150px;
}

.list-area-embroidered-listing-flex {
    width: 85%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.list-area-embroidered-left-flex {
    width: 48%;
    background: #FFF;
    border-radius: 15px;
}

.list-area-embroidered-left-flex h5 {
    display: block;
    font-size: 20px;
    padding: 30px;
}

.list-area-embroidered-left-flex ul {
    width: 100%;
    display: block;
    padding: 0px 30px 30px 30px;
    list-style: none;
	margin: 0px;
}

header.entry-header {
    display: none;
}

.entry-content {
    margin-top: 0px !important;
}

.list-area-embroidered-left-flex ul li {
    display: block;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
}

#actual-pre-production-section-page-001 {
    width: 100%;
    display: block;
    text-align: center;
    padding: 80px 0;
}

.heading-number-actual-pre-productions-tittle-001 {
    font-size: 30px;
    display: block;
    margin: 0;
    color: green;
}

.heading-number-actual-pre-productions-tittle-002 {
    font-size: 30px;
    display: block;
    margin: 10px 0;
    color: #000;
}

#stock-cap-material-colors-section-page-001 {
    width: 100%;
    display: block;
    padding: 80px 0;
    background: #7030a00f;
}

.stock-cap-material-colors-heading-title {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 36px;
}

.stock-cap-material-colors-descripation-pera {
    display: block;
    width: 70%;
    text-align: center;
    word-break: break-word;
    white-space: pre-wrap;
    margin: 20px auto 0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.stock-cap-material-colors-descripation-pera span { 
    color: #C45911;
}

.special-embroiderygiveways-website-001 {
    display: block;
    width: 70%;
    text-align: center;
    word-break: break-word;
    white-space: pre-wrap;
    margin: 15px auto 15px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.section-area-finding-design-manufacture {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.section-area-finding-design-manufacture-left {
    width: 48%;
}

.section-area-finding-design-manufacture-right  {
    width: 48%;
}

.section-area-finding-design-manufacture-left img {
    width: 100%;
    display: block;
}

.section-area-finding-design-manufacture-right h4 {
    display: block;
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #C45911;
}

.section-area-finding-design-manufacture-right ul {
    width: 100%;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-area-finding-design-manufacture-right ul li {
    font-size: 18px;
    display: block;
    margin: 0 0 6px 0;
    font-weight: 500;
}

.amazing_special_form form.wpcf7-form label {
    display: block;
    text-align: left;
}


/*********** inner page about  ***********/
.inner-page-banner {
    padding-block: 120px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

h1.inner-page-title {
    color: var(--clr-wht);
}

.inner-page-content {
    padding-block: 80px;
}

/******* contact page *******/
.contact-map-wrpr iframe {
    width: 100%;
    min-height: 300px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.contact-form-wrpr textarea {
    height: 120px;
}

/******** page 404 & search page ********/
.error-404.not-found{
    padding-top:200px;
    padding-bottom:64px;
}

.error-404.not-found label, .no-results.not-found label {
    width: 96%;
}

/*** product archive page ****/
p.woocommerce-result-count, form.woocommerce-ordering {
    display: none;
}
#primary h1.entry-title {
    margin-top: 24px;
}

/** single product css **/
.woocommerce.woocommerce-page header.entry-header {
    display: block;
}
.product-template-default.single-product header.entry-header {
    display: none;
}

main#primary {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline:20px;
}

.single-product div#comments, nav.navigation.post-navigation {
    display: none;
}

.product-cats-wrpr .products li {
    text-align: center;
}
.float_clear {
    content: "";
    clear: both;
    display: table;
}

/** product page css **/
.productAccordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin-top:16px;
}

.active, .productAccordion:hover {
  background-color: #006498;
  color:#fff;
}

.productAccordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.productAccordion:hover:after{
    color:#fff;
}

.active:after {
  content: "\2212";
  color:#fff;
}

.productPanel{
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.productPanel h4:last-child {
    margin-bottom: 20px;
}

.woocommerce-loop-product__title, .product_unique_code {
    color: #000;
}

.button.product_type_simple, .product_meta {
    display: none !important;
}

.woocommerce nav.woocommerce-pagination {
    margin-bottom: 24px;
}
.post-2044 img {
    margin-top: 40px;
}

/* product accordion tables css*/
table{
    border-collapse:collapse;
}
td, th {
    border: 1px solid gray;
    text-align: center;
    padding: 10px;
}
.woocommerce ul.products li{
    padding: 10px !important; 
}
.woocommerce ul.products li:hover {
    outline: 1px solid;
}

.product.type-product:after {
    content: '';
    clear: both;
    display: table;
}

/* slick slider css */
.woocommerce div.product div.images .flex-control-thumbs{
    overflow:inherit !important;
    margin-top:15px;
}
.slick-prev:before, .slick-next:before {
    color: #000;
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
     clear: inherit; 
}

svg.dropdownIcon {
    vertical-align: middle;
    margin-left:2px;
}

strong{
    font-weight:400;
}

.no-results {
    padding-bottom: 50px;
}
.search_container {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 30px;
}

.slick-prev {
    transform: rotate(180deg);
}
.slick-prev:before {
    content: '\27A4';
}

.slick-next:before {
    content: '\27A4';
}

/*** amazing special page  ***/
#actual-pre-production-section-page-001 {
    width: 100%;
    display: block;
    text-align: center;
    padding: 80px 0 60px;
}
.container-home-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}
.billing-and-shipping-section-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.billing-and-shipping-section-left {
    width: 48%;
}
.billing-and-shipping-section-left h5 {
    display: block;
    text-align: left;
    margin: 0 0 40px 0;
    font-size: 24px;
    border-bottom: 1px solid #969696;
    padding: 0 0 10px 0;
    width: 100%;
}
#billing-are-form-shipping {
    width: 100%;
    display: block;
}
.input-area-number-001 {
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}
.input-area-number-001 p {
    width: 100%;
    display: block;
    margin: 0px;
    text-align:start;
}

.input-area-number-001 p label {
    display: block;
    text-align: left;
    margin: 0 0 5px 0;
    font-size: 16px;
}
.input-area-number-001 p span {
    width: 100%;
    display: block;
    margin: 0;
}
.input-area-number-001 p span input, .input-area-number-001 p span select {
    width: 100%;
    display: block;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #b7b7b7;
    outline: none;
    box-shadow: none;
}
.billing-and-shipping-section-flex-full {
    width: 100%;
    display: block;
    margin: 40px 0 0 0;
}
.billing-and-shipping-section-flex-full h5 {
    display: block;
    text-align: left;
    margin: 0 0 40px 0;
    font-size: 24px;
    border-bottom: 1px solid #969696;
    padding: 0 0 10px 0;
    width: 100%;
}
input.wpcf7-form-control.has-spinner.wpcf7-submit {
    padding: 20px 110px;
    font-size: 18px;
    margin: 0 0 0 10px;
    border-radius: 5px;
    background: #006498;
    color: #FFF;
}

/***** search results ***/
.search-results .site-main {
    padding-block: 64px;
}

.search-results .type-product img {
    max-width: 300px;
}

/************ media query ***********/
@media only screen and (max-width: 992px) {
    header#masthead {
        border-bottom: 1px solid;
    }
    button.menu-toggle {
        display: block;
        margin-inline:auto;
        margin-top: -64px;
        margin-bottom: 20px;
    }    
    #primary-menu {
        padding-inline: 20px;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
        padding: 16px 32px;
    }
    #wpcf7-f30-o1 input.wpcf7-form-control.wpcf7-submit.has-spinner {
        padding-inline: 16px;
    }
    .amazing-title-heading-001 {
        font-size: 56px;
    }
    #includes-embroidered-front-sectoin-page-001,
    #actual-pre-production-section-page-001,
    #stock-cap-material-colors-section-page-001{
        padding-block:24px;
        padding-inline:20px;
    }
    #includes-embroidered-front-sectoin-page-001 h2 {
        margin: 0 0 24px 0;
        font-size: 24px;
        padding: 0 40px;
    }
    .list-area-embroidered-listing-flex {
        width: 100%;
    }
    .section-area-finding-design-manufacture {
        flex-direction: column;
        padding-inline: 20px;
        gap: 24px;
        align-items: center;
    }
    .section-area-finding-design-manufacture-right {
        width: 100%;
        text-align: center;
    }
}
@media only screen and (max-width: 600px) {
    .site-branding.top-header {
        justify-content: start;
    }
    button.menu-toggle {
        display: block;
        margin-left: auto;
        margin-top: -59px;
        margin-bottom: 20px;
        margin-right: 20px;
    }
    .section-heading h2 {
        padding-inline: 20px;
    }

    .cats-wrpr {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-banner-outer-wrapper {
        display: flex;
        flex-direction: column;
    }

    .cat-title h4 {
        font-size: 16px;
    }

    .cate-banner img {
        min-height: 250px;
        object-fit: cover;
    }

    .mapWrap,
    .formWrap {
        width: 100%;
    }

    .map-inner-wrapper {
        min-height: 300px;
    }
    input.wpcf7-form-control.has-spinner.wpcf7-submit {
       margin:0;
    }
    footer#colophon {
        padding: 40px 0;
    }

    .site-info {
        flex-direction: column;
        gap: 24px;
    }

    .proudct2List {
        display: none;
    }

    .left-right-bottom-wrpr {
        flex-direction: column;
    }

    .inner-page-banner {
        padding-block: 80px;
    }

    .inner-page-content {
        padding-block: 60px;
    }
    h2.woocommerce-loop-product__title {
        font-size: 0.8em !important;
    }
    main#primary {
        margin-block: 24px;
    }
    .productPanel {
        overflow-x: scroll;
    }
    .amazing-title-heading-001 {
        font-size: 40px;
    }
    #includes-embroidered-front-sectoin-page-001 h2 {
        padding: 0;
    }
    .list-area-embroidered-listing-flex,
    .billing-and-shipping-section-flex{
        flex-direction:column;
    }
    .list-area-embroidered-left-flex,
    .section-area-finding-design-manufacture-left,
    .billing-and-shipping-section-left{
        width:100%;
    }
    .heading-number-actual-pre-productions-tittle-001,
    .heading-number-actual-pre-productions-tittle-002,
    .stock-cap-material-colors-heading-title{
        font-size:24px;
    }
    .footer-inner-wrap:nth-child(2) {
    margin-top: -24px;
}
.cat-title h4 {
    font-size: 14px;
}
.search-results .site-main {
    padding-block: 40px;
}
.slick-next  {
    right: 5px;
}
.slick-prev{
     z-index:5;
     left:-5px;
}

}