@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* custom font */
@font-face {
    font-family: 'Casanova Scotia';
    src: url('../fonts/Casanova-Scotia.eot');
    src: url('../fonts/Casanova-Scotia.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Casanova-Scotia.woff2') format('woff2'),
        url('../fonts/Casanova-Scotia.woff') format('woff'),
        url('../fonts/Casanova-Scotia.ttf') format('truetype'),
        url('../fonts/Casanova-Scotia.svg#Casanova Scotia') format('svg');
}

/* custom font */



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --gap80: clamp(40px, 5.556vw, 80px);
    --gap110: clamp(40px, 7.639vw, 110px);
    --font16: clamp(14px, 1.111vw, 16px);
    --font17: clamp(15px, 1.181vw, 17px);
    --font18: clamp(16px, 1.25vw, 18px);
    --font19: clamp(16px, 1.319vw, 19px);
    --font20: clamp(17px, 1.389vw, 20px);
    --font21: clamp(17px, 1.458vw, 21px);
    --font22: clamp(17px, 1.528vw, 22px);
    --font23: clamp(17px, 1.597vw, 23px);
    --font24: clamp(17px, 1.667vw, 24px);
    --font25: clamp(18px, 1.736vw, 25px);
    --font26: clamp(18px, 1.806vw, 26px);
    --font27: clamp(18px, 1.875vw, 27px);
    --font28: clamp(19px, 1.944vw, 28px);
    --font29: clamp(19px, 2.014vw, 29px);
    --font30: clamp(19px, 2.083vw, 30px);
    --font31: clamp(20px, 2.153vw, 31px);
    --font32: clamp(20px, 2.222vw, 32px);
    --font33: clamp(21px, 2.292vw, 33px);
    --font34: clamp(22px, 2.361vw, 34px);
    --font35: clamp(23px, 2.431vw, 35px);
    --font36: clamp(25px, 2.5vw, 36px);
    --font42: clamp(28px, 3vw, 42px);
    --font50: clamp(32px, 3.5vw, 50px);
    --black: #000;
    --lightblack: #02141F;
    --black22: #222222;
    --black1b: #1B1B1B;
    --white: #fff;
    --grey7D: #7D7D7D;
    --grey63: #636363;
    --blue: #076095;
    --yellow: #F1A529;
    --lightYellow: #FFCC24;
    --lightgreen: #4AC14B;
    --headFont: 'Casanova Scotia';
    --bodyFont: "Poppins", sans-serif;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--font16);
    font-family: var(--bodyFont);
    font-weight: 400;
    color: var(--lightblack);
    background: #FFFFFF;
    overflow-x: hidden;
	position: relative;
	z-index: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-family: var(--headFont);
    font-weight: 400;
}

h2 {
    font-size: var(--font42);
    line-height: 1.2em;
    color: var(--black);
}

.sub-heading {
    font-size: var(--font22);
    line-height: 1.1363em;
    color: var(--blue);
    font-family: var(--headFont);
}

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

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 0 10px;
}

label span {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}

.select {
    position: relative;
}

.select::after {
    content: "\e91b";
    font-family: "Syd";
    color: #000;
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 18px;
    pointer-events: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

textarea {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    border: #e3e3e3 1px solid;
    transition: 0.2s ease all;
    resize: none;
    padding: 9px 14px;
    font-family: "Cabin", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 17px;
    color: #6c6b6b;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 45px;
    background: #FFFFFF;
    border-radius: 6px;
    border: #EEEEEE 1px solid;
    outline: none;
    padding: 9px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    color: #000;
    transition: 0.2s ease all;
}


input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #f1a527;   /* border color */
  
  outline: none;            /* remove default outline */
  
}


textarea {
    height: 70px;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

[type="submit"]:hover {
    background: #ea3319;
}


.btns {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3157894736842106em;
    font-weight: 500;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: 0.4s;
    padding: 12px 30px;
}

.primary-btn {
    background: var(--yellow);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--blue);
}

.secondary-btn {
    color: var(--white);
    background: var(--blue);
}

.secondary-btn:hover {
    background: var(--black);
}

.sec-padding {
    padding: var(--gap80) 0;
}

.sec-margin {
    margin: var(--gap80) 0;
}

p {
    font-size: var(--font16);
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}


/* globl setting responsive */
@media (min-width: 768px) {
    .btns {
        font-size: 17px;
    }
}

@media (min-width: 1200px) {
    .btns {
        font-size: 19px;
        padding: 14px 54px;
    }
}

/* globl setting responsive */



/* header css start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

.top-header {
    background: var(--yellow);
}

.top-header p {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    padding: 10px 0 15px 0;
}

.main-header {
    background: var(--lightblack);
    border-bottom: 2px solid var(--white);
}

.header-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    position: absolute;
    top: -20px;
    left: 0;
}

.logo a {
    display: block;
    max-width: 100px;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-bar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99;
    height: 100%;
    width: 300px;
    background: var(--blue);
    opacity: 0;
    transition: 0.4s;
    padding: 30px 0 0 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
}

.menu-bar li {
    margin-bottom: 15px;
}

.menu-bar li.has-children i {
    font-size: 8px;
    line-height: 1;
    margin-left: 2px;
    margin-bottom: 2px;
}

.menu-bar li a {
    font-size: var(--font16);
    line-height: 1em;
    font-weight: 600;
    color: var(--white);
}

.sub-menu {
    display: none;
    padding: 12px 0 0 15px;
}

.sub-menu li {
    line-height: 1;
    margin-bottom: 10px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu li a {
    opacity: 0.9;
}




.contact-btn-wrap {
    border-left: 2px solid var(--white);
    margin: 0 15px 0 0;
}

.contact-btn-wrap a {
    font-weight: 700;
    font-size: var(--font16);
    line-height: 1.5em;
    text-transform: uppercase;
    color: var(--white);
}

.contact-btn-wrap a:hover {
    background: var(--blue);
}

.toggle-btn {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 7px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    padding: 0;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.2s ease-in-out;
}

.toggle-btn.active {
    row-gap: 0;
}

.toggle-btn.active span:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
    display: none;
}

.toggle-btn.active span:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-width: 768px) {
    .top-header p {
        font-size: 18px;
        padding: 10px 0 11px 0;
    }

    .logo {
        top: -34px;
    }

    .logo a {
        max-width: 120px;
    }

    .menu-bar {
        width: 70%;
    }

    .contact-btn-wrap {
        margin: 0 30px 0 0;
    }

    .contact-btn-wrap a {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 0;
    }

    .header-wrapper {
        align-items: flex-start;
        transition: 0.3s;
        margin: 0 -52px 0 0;
    }

    .header.sticky .header-wrapper {
        align-items: center;
    }

    .logo a {
        max-width: 147px;
    }

    .menu-bar {
        position: relative;
        left: unset;
        top: unset;
        width: auto;
        height: auto;
        background: transparent;
        display: flex;
        gap: 50px;
        opacity: 1;
        padding: 0;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a {
        padding: 26px 0;
    }

    .menu-bar li a:hover,
    .menu-bar li.active a {
        color: var(--yellow);
    }

    .menu-bar li.has-children {
        position: relative;
    }

    .sub-menu {
        display: block;
        position: absolute;
        top: 89px;
        left: 0;
        width: 230px;
        background: var(--blue);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        padding: 15px;
    }

    .menu-bar li.has-children:hover>.sub-menu {
        top: 69px;
        visibility: visible;
        opacity: 1;
    }

    .sub-menu li:not(:last-child) {
        margin-bottom: 14px;
    }

    .sub-menu li a {
        padding: 0;
    }

    .contact-btn-wrap {
        position: relative;
        margin: 0 0 0 35px;
    }

    .header-wrapper::after {
        position: absolute;
        content: "";
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: var(--blue);
    }

    .contact-btn-wrap a {
        padding: 22px 55px 22px 22px;
    }

    .toggle-btn {
        display: none;
    }
}

/* header css end */


/* banner start */
.banner {
    position: relative;
    margin: 76px 0 0;
}

.banner-content {
    text-align: center;
    padding: 130px 0 295px 0;
}

.banner-content h1 {
    font-size: clamp(42px, 6.25vw, 90px);
    line-height: 0.9333333333333333em;
    color: var(--white);
    margin: 0 0 8px;
}

.banner-content h1 span {
    display: block;
    color: var(--yellow);
}

.banner-content h5 {
    font-size: var(--font30);
    line-height: 1.1667em;
    color: var(--white);
}

.banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.54);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 28px 0;
}

.banner-bot-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.bnr-bot-form {
    width: 48.8%;
}

.bnr-bot-form2 {
    width: 74%;
}

.banner-bottom h4 {
    font-size: var(--font22);
    line-height: 1.1363em;
    color: var(--white);
}

.bnr-bot-form form {
    position: relative;
    margin: 18px 0 0;
}

.bnr-bot-form form .primary-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 100%;
    border-radius: 0 4px 4px 0;
    padding: 5px;
}

.bnr-bot-form form input {
    font-size: var(--font16);
    color: var(--white);
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1px solid var(--yellow);
    border-radius: 4px;
}

.bnr-bot-form form input::placeholder {
    font-size: 14px;
    line-height: 1;
    color: var(--white);
}

/*new*/

.bnr-bot-form2 form {
    position: relative;
   
}

.bnr-bot-form2 form .primary-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 100%;
    border-radius: 0 4px 4px 0;
    padding: 5px;
}

.bnr-bot-form2 form input {
    font-size: var(--font16);
    color: var(--blue);
    width: 100%;
    height: 44px;
    background: transparent;
    border: 1px solid var(--yellow);
    border-radius: 4px;
}

.bnr-bot-form2 form input::placeholder {
    font-size: 14px;
    line-height: 1;
    color: var(--white);
}

.banner-bot-right {
    text-align: center;
}

.banner-bot-right h4 {
    color: var(--yellow);
    text-decoration: underline;
}

.banner-bot-right p {
    font-size: 14px;
    color: var(--white);
    margin: 8px 0;
}

.banner-bot-right h6 {
    font-size: var(--font16);
    color: var(--yellow);
}


/* video section */
.block-video {
    position: relative;
}

.video-dot-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 53%;
}

.video-title {
    text-align: center;
    padding: 0 0 30px;
}

.video-wrapper {
    position: relative;
    max-width: 775px;
    margin: 0 auto;
}

.video-wrapper img {
    width: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.certificates p {
    font-size: var(--font17);
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
    padding: var(--gap80) 0 0;
}

.certificates p strong {
    font-weight: 700;
    font-style: italic;
    color: var(--yellow);
}

.certificates-wrap {
    max-width: 845px;
    margin: 0 auto;
}

.certificates-wrap .row {
    gap: 25px 0;
}

.certificates-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--white);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    padding: 28px 0;
}


/* icon text cards */
.icon-text-cards__wrap {
    max-width: 772px;
    margin: 0 auto;
}

.icon-text-cards__wrap .row {
    margin: 0;
}

.icon-text-cards__wrap .row>div {
    padding: 0;
}

.icon-text-inner {
    text-align: center;
    background: var(--white);
    border: 1px solid #EAEAEA;
    padding: 42px 15px;
}

.icon-text-inner:hover {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
}

.icon-text-inner figure {
    display: block;
    margin: 0;
}

.icon-text-inner img {
    margin: 0 auto;
}

.icon-text-inner span {
    display: block;
    font-size: var(--font19);
    font-weight: 400;
    color: var(--grey7D);
    padding: 20px 0 0;
}

.catlg-btn {
    margin: clamp(28px, 2.778vw, 40px) 0 0;
}



.half-text-btn-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--blue);
    padding: 54px 0;
}

.half-text-button-col:last-child .half-text-btn-card {
    background: var(--yellow);
}

.half-text-btn-card h2 {
    color: var(--white);
    margin: 0 0 20px;
}

.half-text-btn-card h2 span {
    display: block;
    font-size: var(--font32);
    line-height: 1;
}

.half-text-btn-card .primary-btn:hover {
    background: var(--white);
    color: var(--yellow);
}

.half-text-btn-card h3 {
    font-size: var(--font25);
    color: var(--white);
    margin: 0 0 20px;
}

.half-text-btn-card h3 span {
    display: block;
    font-size: 16px;
    margin: 0 0 10px;
}

.half-text-btn-card h3 a {
    display: block;
    max-width: 507px;
    margin: 0 auto;
    line-height: 1.6em;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}




/* 06/09/25 Rimpa */


.footer {
    position: relative;
    z-index: 1;
    background: var(--black22);
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 39px;
    padding: 90px 0 20px 0;
}

.footer-col:first-child {
    width: 298px;
}

.footer-col {
    width: max-content;
}

.footer-col:has(.newsletter-col) {
    width: 371px;
}

.ftr-logo-col p {
    display: flex;
    font-size: var(--font16);
    line-height: 25px;
    font-weight: 400;
    color: var(--white);
}


.ftr-logo-col p img{
        height: 13px;
    margin-top: 5px;
    margin-right: 5px;
        filter: grayscale(100%);
}

.footer-col h5 {
    font-size: var(--font18);
    line-height: 36px;
    font-weight: 400;
    color: var(--white);
}

.footer-col:nth-child(2) h5 {
    padding-bottom: 29px;
}

.quick-link {
    display: flex;
    flex-wrap: wrap;
    gap: 47px;
}

.quick-link ul li a,
.Location a {
    font-size: 16px;
    line-height: 36px;
    font-weight: 400;
    color: var(--white);
}

.quick-link ul li a:hover {
    color: var(--yellow);
}

.ftr-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ftr-social-list li a {
    color: var(--white);
}

.get-in-touch {
    padding-bottom: 25px;
}

.newsletter-col {
    background: var(--black1b);
    padding: 105px 0 37px 37px;
    margin-top: -105px;
}


.newsletter-col p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--white);
    padding-bottom: 24px;
}



.footer::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: -1;
    width: 32.5%;
    height: 100%;
    background: var(--black1b);
}


.newsletter-col form {
    display: flex;
    flex-wrap: wrap;
}

.footer-partners-flex {
    display: flex;
    flex-wrap: wrap;
}

.footer-partners-img {
    width: 20%;
}

.footer-partners {
    padding-top: 30px;
}

.copyright {
    height: 60px;
    background-color: var(--black);
    padding: 24px 0;
}

.copyright-inner p {
    font-family: var(--bodyFont);
    font-size: 14px;
    font-weight: 400;
    line-height: 36px;
    color: var(--white);
    text-align: center;
}

.blue-box {
    width: 25%;
    background-color: var(--blue);
    padding: 30px 0;
    border: 4px solid var(--white);
}

.yellow-box {
    background-color: var(--yellow);
}

.blue-box p {
    font-family: var(--headFont);
    font-weight: 400;
    font-size: var(--font17);
    line-height: 40px;
    text-align: center;
    color: var(--white);
}

.footer-top {
    width: 100%;
    position: absolute;
    top: -50px;
    left: 0;
}

.footer-top-flex {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.garza-supply {
    margin-bottom: 120px;
}

.garza-supply-title p {
    font-weight: 400;
    font-size: var(--font17);
    font-family: var(--headFont);
    line-height: 40px;
    color: var(--black);
}

.garza-supply-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media(max-width: 1199px) {
    .footer-col:first-child {
        width: 40%;
    }

    .footer-col {
        width: 30%;
        padding: 0 12px;
    }

    .footer-col:has(.newsletter-col) {
        width: 60%;
    }

    .footer::after {
        display: none;
    }

    .newsletter-col {
        background: transparent;
        padding: 0;
        margin: 0;
    }

    .blue-box {
        padding: 22px 0;
    }

    .blue-box p {
        line-height: 20px;
    }

    .garza-supply {
        margin-bottom: 80px;
    }
}

@media(max-width: 991px) {

    .footer-col:first-child {
        width: 30%;
    }

    .footer-col {
        width: 45%;
        padding: 0 12px;
    }

    .footer-col:has(.newsletter-col) {
        width: 45%;
    }
}

@media(max-width: 767px) {
    .footer-col:first-child {
        width: 100%;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        width: 44%;
    }

    .footer-col:has(.newsletter-col) {
        width: 100%;
    }

    .copyright {
        padding: 15px 0;
    }

    .footer-top {
        display: none;
    }

    .footer-flex {
        padding-top: 50px;
    }

    .garza-supply {
        margin-bottom: 50px;
    }
}


.featured-product {
    background: #F6FCFF;
}

.featured-product h2 {
    text-align: center;
    margin: 0 0 35px;
}

.js-product-slider {
    padding-bottom: 12px;
    margin: 0 -15px;
}

.product-slider-col {
    padding: 0 15px;
}

.product-cards {
    display: block;
    background: var(--white);
    border: 1px solid #F0F0F0;
}

.product-image {
    height: 250px;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
    padding: 7px;
}

.product-image img {
    margin: 0 auto;
}

.product-details {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 192px;
    padding: 30px 17px 0 17px;
}

.product-details p {
    font-size: var(--font17);
    line-height: 1.2352941176470589em;
    color: var(--grey63);
}

.product-details h6 {
    font-size: var(--font18);
    line-height: 1.166667em;
    color: var(--lightYellow);
    margin: 18px 0 20px 0;
}

.product-details .btns {
    font-size: 16px;
    display: block;
    padding: 9px 20px;
    margin: auto -17px 0 -17px;
}


.service-title {
    margin: 0 0 45px;
}

.service-wrap {
    position: relative;
    padding: 25px 0;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.service-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 995px;
    margin: 0 auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 3 - 32px);
    text-align: center;
    background: var(--blue);
    border-radius: 30px;
    padding: 86px 17px 50px 17px;
}

.service-cards figure {
    display: inline-block;
    margin: 0;
}

.service-cards h5 {
    font-size: var(--font22);
    line-height: 1.1363636363636365em;
    color: var(--white);
    margin: 35px 0 20px 0;
}

.service-cards p {
    font-size: var(--font16);
    line-height: 1.25em;
    color: var(--white);
}

.service-cards:nth-child(even) {
    background: var(--yellow);
}

.service-cards:nth-child(even) h5 {
    order: 1;
    margin: 0;
}

.service-cards:nth-child(even) p {
    order: 2;
    margin: 20px 0 35px 0;
}

.service-cards:nth-child(even) figure {
    order: 3;
}


.about-product-top {
    margin: 0 0 32px;
}

.js-image-slider {
    padding-bottom: 12px;
    margin: 0 -8px;
}

.image-slider-col {
    padding: 0 8px;
}

.image-slider-col img {
    width: 100%;
    height: 364px;
    object-fit: cover;
}

.view-btn {
    text-align: center;
    padding: 35px 0 0;
}


.trust-brands h2 {
    text-align: center;
    margin: 0 0 30px;
}

.brands-flex {
    gap: 25px 0;
}

.brands-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    background: #FDFDFD;
    border: 1px solid #F8F8F8;
}


.js-testimonials-slider .slick-list {
    padding: 24px 0 40px 0 !important;
}

.js-testimonials-slider {
    padding: 0 0 12px;
}

.testimonials-cards {
    position: relative;
    max-width: 850px;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 45px;
    margin: 0 auto;
}

.testimonials-cards::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 20px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.testimonials-cards .sub-heading {
    font-size: var(--font17);
    margin: 0 0 10px;
}

.testimonials-cards h2 {
    font-size: var(--font32);
}

.testimonials-cards img {
    margin: 12px auto 25px auto;
}

.testimonials-cards p {
    font-size: var(--font17);
    line-height: 1.411764705882353em;
    font-style: italic;
    color: var(--black);
}

.testimonials-cards p span {
    display: block;
    margin: clamp(15px, 2.778vw, 40px) 0 0;
}


/* blog page */

.blog-banner-content {
    text-align: center;
    padding: 170px 0 188px;
}

.banner-title h2 {
    color: var(--white);
}

.blog-bottom-top-details-box {
    margin-bottom: 47px;
}

.blog-bottom-top-details-box-img img {
    width: 100%;
}

.blog-sec {
    padding: 75px 0;
}

.blog-bottom-top-details-box-info span,
.blog-box-info span {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #414040;
    padding-top: 27px;
    display: block;
}

.blog-bottom-top-details-box-info h3 a,
.blog-box-info h4 a {
    font-weight: 700;
    font-size: var(--font27);
    color: var(--black);
    padding: 14px 0 20px;
}

.blog-bottom-top-details-box-info p,
.blog-box-info p {
    max-width: 737px;
    font-weight: 400;
    font-size: var(--font17);
    color: var(--black22);
    padding-bottom: 22px;
}

.blog-box-img img {
    width: 100%;
}

.blog-box-info span {
    padding-top: 33px;
}

.blog-box-info h4 a {
    font-size: var(--font20);
    padding: 14px 0;
}

.blog-box-info p {
    max-width: 407px;
    padding-bottom: 14px;
}

.blog-box {
    width: 100%;
    height: 100%;
}

.blog-box-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-bottom-down-list-sec-row {
    gap: 24px 0;
}

.pagination-sec {
    width: 100%;
    margin-top: 60px;
}

.pagination-sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-sec ul li {
    margin: 0 2px;
}

.pagination-sec ul li a {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    color: #241B02;
    align-items: center;
    justify-content: center;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
}

.pagination-sec ul li a.active {
    border-color: #241B02 !important;
}

.left-arrow {
    background-color: #0655BE;
    color: #fff !important;
    border-color: #0655BE;
}

.right-arrow {
    background-color: #747677;
    color: #fff !important;
    border-color: #747677;
}

 .search-icon {
    position: absolute;
    left: 11px;
    top: 14px;
}

.search-sec {
    width: 100%;
    position: relative;
}

.search-sec input {
    padding-left: 40px;
    color: #2B2A2A;
    border: 0;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.blog-about-us-section h4 {
    padding-bottom: 16px;
}

.feature-right h3 {
    font-family: var(--bodyFont);
    font-weight: 500;
    font-size: var(--font16);
    line-height: 15px;
    color: var(--black);
    padding-bottom: 10pxs;
}

.feature-right p {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #414040;
}

.blog-right-about-us {
    margin-bottom: 25px;
}

.blog-about-us-section {
    background-color: #FBFCFF;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 30px 20px 34px;
    margin-top: 33px;
}

.feature-list ul li {
    margin-bottom: 15px;
}

.feature-list ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding: 15px;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.feature-right {
    width: 60%;
    padding-left: 10px;
}

.feature-left {
    width: 40%;
}

@media(max-width: 1199px) {
    .blog-sec {
        padding: 50px 0;
    }

    .blog-banner-content {
        text-align: center;
        padding: 100px 0;
    }
}

@media(max-width: 767px) {
    .blog-banner-content {
        text-align: center;
        padding: 70px 0;
    }

    .blog-bottom-top-details-box {
        margin-bottom: 20px;
    }

    .blog-bottom-top-details-box-info span,
    .blog-box-info span {
        padding-top: 15px;
    }

    .blog-bottom-top-details-box-info h3 a,
    .blog-box-info h4 a {
        padding: 15px 0;
    }

    .blog-bottom-top-details-box-info p,
    .blog-box-info p {
        padding-bottom: 15px;
    }

    .pagination-sec {
        margin: 30px 0;
    }
}



/* changes 07/09/25 */

.banner-bg {
    width: 100%;
    height: 100%;
    position: absolute;
	object-fit: cover;
}

.banner-slider-content {
    position: relative;
}

.newsletter-col input {
    width: 65%;
    height: 60px;
    border-radius: 0;
    background: var(--white);
    font-size: 16px;
    color: var(--black);
    padding: 24px 17px;
}

.newsletter-col button {
    width: 35%;
    background-color: var(--yellow);
    color: var(--white);
    border: 0;
    font-weight: 600;
    font-size: var(--font18);
    line-height: 22px;
	padding: 0;
}

.banner-slider .slick-next,
.banner-slider .slick-prev {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;

}

.banner-slider .slick-next:focus,
.banner-slider .slick-prev:focus {
    border: 0;
}

.banner-slider .slick-next {
    position: absolute;
    left: auto;
    right: 15px;
    top: 45%;
    transform: translateY(-50%);
}

.banner-slider .slick-prev {
    position: absolute;
    left: 15px;
    top: 45%;
    transform: translateY(-50%);
}

.banner-slider .slick-next:before,
.banner-slider .slick-prev:before {
    color: var(--white);
    border: 0;
}

@media(max-width: 1199px) {

    .banner-slider .slick-next,
    .banner-slider .slick-prev {
        top: 32%;
    }
}

@media(max-width: 767px){
    .banner-slider .slick-next,
    .banner-slider .slick-prev {
        top: 27%;
    }
}

@media(max-width: 575px){
    .banner-slider .slick-next,
    .banner-slider .slick-prev {
        display: none;
    }
}



/*PRODUCT PAGE START*/

/* inner pages css start */
.inner-banner {
  position: relative;
  min-height: 400px;
}

.inner-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.product-details-area {
  margin: 30px 0 0;
  padding-bottom: 80px;
}

.product-details-flex {
  gap: 24px 0;
}

.filter-col {
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
  margin-bottom: 16px;
}

.filter-col:last-child {
  margin-bottom: 0;
}

.filter-col-title {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background:#F1A529;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
}

.filter-col-title::after {
  position: absolute;
  content: "\f078";
  top: 12px;
  right: 15px;
  font-size: 15px;
  line-height: 1;
  font-family: 'FontAwesome';
  transform: rotate(-180deg);
}

.filter-col-title.active::after {
  transform: rotate(0);
}

.filter-tgl-item {
  padding: 15px;
}

.price-range-slider .range-value {
  margin: 0;
}

.price-range-slider .range-value input {
  width: 100%;
  background: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: center;
  border: none;
}

.price-range-slider .range-bar {
  border: none;
  background: #FFF2FE;
  height: 5px;
  width: 96%;
  margin-left: 8px;
}

.price-range-slider .range-bar .ui-slider-range {
  background:#F1A529;
}

.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #e62cef;
  height: 16px;
  width: 16px;
  top: -0.42em;
  cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
  background: #e62cef;
}

.filter-option-list li {
  padding: 5px 0;
}

.filter-option-list li input[type="radio"] {
  display: none;
}

.filter-option-list li label {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #070B30;
  cursor: pointer;
  padding: 0 0 0 28px;
}

.filter-option-list li label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #F1A529;
  border-radius: 50%;
}

.filter-option-list li label::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background:#F1A529;
  border-radius: 50%;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.3s;
}

.filter-option-list li input[type="radio"]:checked+label::after {
  transform: scale(1);
  opacity: 1;
}

.top-filter-sortby {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
  column-gap: 15px;
}

.mobile-filter-btn {
  display: none;
}

.filter-sortby-col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: max-content;
  margin-top: -20px;
}

.filter-sortby-col label {
  display: block;
  font-size: 14px;
  line-height: 1.2em;
  color: #000;
      margin-top: 10px;
}

.filter-sortby-col select {
  margin: 0 0 0 10px;
  padding: 5px 36px 5px 10px;
  width: auto;
  height: 36px;
  background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
  border: 1px solid #DDDDDD;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #070B30;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
}

.product-flex {
  gap: 20px 0;
}

.product-col {
	height: 100%;
  border: 1px solid #DDDDDD;
  position: relative;
  padding-bottom: 54px;
}

.prd-image {
  position: relative;
}

.prd-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.prd-image a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background:#F1A529;
  visibility: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: 0.3s;
  padding: 12px 0;
}

.prd-image a:hover {
  background: #F1A529;
}

.product-col:hover .prd-image a {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}

.prd-bottom {
  padding: 15px;
}

.prd-bottom h6 {
  font-size: 18px;
  color: #000000;
  padding: 2px 0;
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.prd-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  line-height: 1.25em;
  font-weight: 500;
  color: #7f7f7f;
  padding: 8px 0;
}

.prd-price del {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.prd-price span {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #FF3055;
}

.stock-text {
  font-size: 14px;
  color: #1FAB00;
  text-align: right;
  margin: 0 0 10px;
}

.prd-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #F1A529;
  padding: 15px 0;
	position: absolute;
    bottom: 15px;
    left: 15px;
	right:15px;
}

.prd-bottom a:hover {
  background:#F1A529;
}

.product-categories .filter-category.active {
    font-weight: bold;
    color: #cc5e28; /* highlight color */
    text-decoration: underline;
}

.pagination-wrap {
    margin-top: 20px;
    text-align: center;
}
.pagination-wrap .page-link {
    display: inline-block;
    margin: 0 5px;
}
.pagination-wrap .current {
    font-weight: bold;
    color: #cc5e28;
}


/*PRODUCT PAGE END*/



/*single product-css*/

.page-title .pattern-layer:before{
	background: #F1A529;
}

.page-title .pattern-layer:after{
	background: #F1A529;
}

 .product-detl-section {
  margin: 30px 0;
}

.product-learg-slide {
  max-width: 400px;
  margin: 0 auto;
}

.product-image-items img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-small-slide {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 0 0;
}

.js-product-thumb-slider {
  margin: 0 -15px;
}

.product-thumb-col {
  cursor: pointer;
  border: 2px solid transparent;
  padding: 5px;
  margin: 0 15px;
}

.product-thumb-col.slick-current {
  border-color: #cc5e28;
}

.product-thumb-col img {
  width: 100%;
  height: 114px;
  object-fit: cover;
}

.product-all-details h2 {
  margin-top: 0;
}

.product-all-details p {
  margin: 12px 0;
}

.product-all-details p .stock-text {
  padding-left: 30px;
}

.prodc-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  line-height: 1.25em;
  font-weight: 500;
  color: #7f7f7f;
}

.prodc-price del {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.prodc-price span {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #F1A529;
}

select {
  padding: 5px 36px 5px 10px;
  width: 100%;
  height: 36px;
  background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
  border: 1px solid #DDDDDD;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #070B30;
}

.metal-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
}

.metal-select label {
  min-width: 60px;
}

.metal-select select {
  width: calc(100% - 60px);
  color: #cc5e28;
}


.quantity-cart-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
}

.quantity {
  width: 150px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.quantity button {
  background-color: #F1A529;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 30%;
  height: auto;
  text-align: center;
  transition: background-color 0.2s;
  padding: 0;
}

.quantity button:hover {
  background-color: #F1A529;
}

.input-box {
  border: 2px solid #F1A529;
  border-radius: 0;
  width: 40%;
  height: 50px;
  text-align: center;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-box[type="number"] {
  -moz-appearance: textfield;
}

.quantity-cart-wrapper a,
.info-btn-wrapper button{
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #F1A529;
  background: transparent;
  border: 1px solid #F1A529;
  padding: 17px 26px;
}

.add-cart_btn a:hover,
.info-btn-wrapper button:hover{
  color: #fff;
  border-color: #F1A529;
  background: #F1A529;
}
.buy-now-btn {
   display: inline-block;
   background: #F1A529 !important;
   color: #fff !important;
   font-size: 16px;
   text-transform: capitalize;
   padding: 10px 19px;
	 border-radius: 8px;
   transition: all .3s ease-in-out;
   border:1px solid #F1A529;
 }

.buy-now-btn a {
  color: #FFB300;
  border-color: #FFB300;
}

.buy-now-btn a:hover {
  color: #ffffff;
  background: #FFB300;
}


.inquiry-btn a {
  color: #FFB300;
  border-color: #FFB300;
}

.inquiry-btn a:hover {
  color: #ffffff;
  background: #FFB300;
}

.share-on-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-on-list li {
  font-size: 16px;
  line-height: 1.4;
  color: #404043;
}

.share-on-list li a {
  color: #404043;
}

.share-on-list li a:hover {
  color: #cc5e28;
}

.payment-method {
  border: 1px solid #cc5e28;
  background: #b955244a;
  padding: 12px;
  margin: 16px 0 0;
}

.payment-method p {
  margin: 0 0 10px;
}

.product-buy-now-btn a{
  background-color: #cc5e28;
  border: none;
}

.image-slide-two img{
    padding: 15px;
}


.detl-tab-nav {
  /*display: flex;*/
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /*max-width: 600px;*/
  border-bottom: 1px solid #c4c4c4;
  margin: 0 auto;
}

.detl-tab-nav button {
  border: none;
  background: transparent;
  position: relative;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #7f7f7f;
  border-bottom: 3px solid transparent;
  padding: 0 40px 15px 40px;
}

.detl-tab-nav button.active {
  color: #F1A529;
  border-color: #F1A529;
}

.detl-tab-nav button::after {
  content: "";
  width: 17px;
  height: 9px;
  /*background: url(../images/our-product/tab-select.png) no-repeat center;*/
  filter: brightness(0) saturate(100%) invert(46%) sepia(23%) saturate(2171%) hue-rotate(341deg) brightness(89%) contrast(89%);
  position: absolute;
  left: 50%;
  bottom: -1px;
  opacity: 0;
  margin-left: -8px;
}

.detl-tab-nav button.active::after {
  opacity: 1;
}

.prodc-tab-content {
  margin: 16px 0 0;
}

.prodc-tab-content p {
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
  padding: 10px 0;
}

.prodc-tab-content:not(:first-of-type) {
  display: none;
}

.prodc-tabs-img img {
  width: 100%;
}

.prodc-tab-content table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}

.prodc-tab-content:has(table) {
  margin-top: 24px;
}

.prodc-tab-content table tbody tr {
  border: 1px solid #c5c5c5;
}

.prodc-tab-content table tbody td {
  padding: 8px 15px;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #565253;
  width: 50%;
}

.prodc-tab-content h2 {
  margin: 12px 0;
}

.spec-detl-list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.spec-detl-list li {
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
  margin: 8px 0;
}


.related-product {
  margin: 25px 0 120px 0;
}

.related-product h2 {
  text-align: center;
  margin-top: 0;
  padding-bottom: 30px;
  font-size: 30px !important;
}

.related-product h2 span {
  display: inline-block;
  color: #F1A529;
}

.js-related-product-slider {
  margin: 0 -12px;
}

.related-product-col {
  padding: 0 12px;
}

.related-product-inner {
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.related-prod-image {
  display: block;
}

.related-prod-image img {
  margin: 0 auto;
}

.related-prod-text {
  text-align: center;
  padding: 15px;
}

.related-prod-text h5 {
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #cc5e28;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.related-prod-text span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #cc5e28;
  padding: 10px 0 0;
}

.related-info-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 123, 0, 0.9);
  text-align: center;
  transform: scaleY(0);
  transition: transform .5s;
  width: 100%;
  padding: 20px 25px;
}

.related-product-inner:hover .related-info-btn {
  transform: scaleY(1);
}

.related-info-btn a {
  margin: 0 auto;
  padding: 0 30px;
  width: auto;
  height: 30px;
  background: none;
  border: 2px solid #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}






.woo-variation-gallery-thumbnail-wrapper{
    margin-top: 20px;
}

.woo-variation-product-gallery{
    max-width: 100%!important;
}
.woo-variation-gallery-thumbnail-wrapper{

margin-top: 20px !important;    
}

.our-product-box .onsale{
    display: none;
}

.our-product-box {
    width: 100%;
    height: 100%;
    padding: 10px;
    padding-bottom: 25px;
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
}
/*@media (min-width: 1200px) {*/
/*	.slick-next, .slick-prev {*/
/*		top: calc(50% - 90px);*/
/*	}*/
/*}*/

.our-product-bottom a {
   overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.our-product-img {
    width: 100%;
    height: 313px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.our-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product .slick-arrow::before {
    background: #cc5e28;
    color: #fff;
}

.our-best-product .slick-arrow::before {
    background: #cc5e28;
    color: #fff;
}

.wc-block-cart__submit-button{
    background: #076095;
    color: white;
}
.wc-block-cart__submit-button:hover{
    
    color: white;
}

.wc-block-components-product-name{
 color:#cc5e28 ;   
}

.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button{
    background: #076095;
    color: white;
    border: 1px solid #076095;
}


/** page-title **/

.page-title{
  position: relative;
  padding: 185px 0px 265px 0px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .overlay-bg{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.page-title .overlay-bg:before{
  position: absolute;
  content: '';
  background: #2d2727;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.7;
}

.page-title:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 50%;
  height: 166px;
  left: 0px;
  bottom: 0px;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
  z-index: 1;
}

.page-title:after{
  position: absolute;
  content: '';
  background: #fff;
  width: calc(50% + 1px);
  height: 166px;
  right: 0px;
  bottom: 0px;
  clip-path: polygon(0% 0%, 200% 100%, 100% 100%, 0% 100%, 0% 0%);
}

.page-title .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 166px;
  z-index: 1;
}

.page-title .pattern-layer:before{
  position: absolute;
  content: '';
  width: 50%;
  height: 166px;
  left: 0px;
  bottom: 0px;
  clip-path: polygon(0% 40%, 100% 0%, 100% 0%, 0% 100%, 0% 0%);
}

.page-title .pattern-layer:after{
  position: absolute;
  content: '';
  width: 20%;
  height: 166px;
  right: 0px;
  bottom: -49px;
  clip-path: polygon(0% 0%, 100% 19%, 100% 100%, 175% 100%, 0% 0%);
}

.page-title .content-box .title{
  position: relative;
  margin-bottom: 11px;
}

.page-title .content-box .title h1{
  position: relative;
  font-size: 50px;
  line-height: 65px;
  color: #fff;
  font-weight: 900;
}

.page-title .content-box .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #d9d1ce;
  padding-right: 16px;
  margin-right: 5px;
}

.page-title .content-box .bread-crumb li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .content-box .bread-crumb li a{
  color: #d9d1ce;
}

.page-title .content-box .bread-crumb li a:hover{
  color: #fff;
}

.page-title .content-box .bread-crumb li:before{
  position: absolute;
  content: '/';
  top: 0px;
  right: 0px;
}

.page-title .content-box .bread-crumb li:last-child:before{
  display: none;
}
.centred{
  text-align: center;
}

.filter-tgl-item ul.product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px; /* space between items */
}

.filter-tgl-item ul.product-categories li a {
  display: block;
  padding: 10px 14px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.filter-tgl-item ul.product-categories li a:hover {
  background: #eee;
  border-color: #bbb;
}

.filter-tgl-item ul.product-categories li a.active {
  background: #ff9900;
  border-color: #ff9900;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/*end single product */
#search-keyword::placeholder {
  color: #999 !important;   /* visible color */
  opacity: 1 !important;    /* Firefox fix */
}

/* 11-9-25 */

.our-product-img a{
	width: 100%;
	height: 100%;
}

.our-product-box-outer{
	width: 100%;
	height: 100%;
}

.our-product-bottom{
	    width: 100%;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-product-col{
	height: 474px;
}

.js-related-product-slider .slick-prev,
.js-related-product-slider .slick-next{
	bottom: -44px;
}

.filter-sortby-col{
	margin-top:0px;
}

/*get info page*/
 /* Add spacing before and after form */
.custom-form {
  max-width: 800px;
  margin: 50px auto; /* space before and after form */
  padding: 20px;
}

/* Rows */
.custom-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Fields */
.custom-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.custom-form .form-group.full-width {
  flex: 100%;
}

.custom-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.3s;
}

/* Focus effect */
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  border-color: #F1A529;
  outline: none;
}

/* Textarea */
.custom-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.custom-form input[type="submit"],
.vif-button{
  background: #F1A529;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
}

.custom-form input[type="submit"]:hover,
.vif-button:hover{
  background: #076095;
}
.custom-form select {
  height: 48px; /* match text fields */
  appearance: none;
}
.inner-banner h2 {
    position: absolute;  /* position over the image */
    top: 50%;            /* vertical center */
    left: 0;
	right: 0;/* horizontal center */
    transform: translate(-50%, -50%); /* perfect center */
    margin: 0;
    font-size: 36px;     /* adjust as needed */
    color: white;
}
.inner-banner {
    position: relative;
    text-align: center; /* center horizontally */
    color: white ;       /* text color */
}


.blog-tags {
    padding-top: 20px;
}
.tag-item a{
      color: #f49724;
       border: 1px solid #f49724;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-radius: .25rem;
}
.tag-item {
    padding-right: 10px;
}



/* 15.09.2025 */

.our-story {
    padding: var(--gap80) 0;
}

.our-story-row {
    align-items: center;
    gap: 24px 0;
}

.our-story-box-row {
    gap: 24px 0;
}

.our-story-box {
    height: 100%;
}

.our-story-box-row .col-6:first-child {
    width: 100%;
}

.section-heading {
    padding-bottom: 5px;
}

.our-story-content p {
    padding-top: 25px;
}

.portfolio {
    padding: 72px 0 84px;
    background-color: #FBFBFB;
    margin-bottom: var(--gap80);
}

.portfolio-row {
    gap: 24px 0;
}

.portfolio-box {
    height: 100%;
    padding: 18px 18px 55px;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.portfolio-heading-box,
.portfolio-content-box {
    padding: 28px 7px 0 12px;
}

.portfolio-heading-box h3 {
    font-family: var(--bodyFont);
    font-weight: 600;
}

.portfolio-heading-box p,
.portfolio-content-box p {
    font-size: var(--font17);
    line-height: 1.563rem;
    padding: 16px 0 0;
}

.portfolio-content-box p {
    padding: 0;
}

.our-mission {
    margin: var(--gap80) 0;
}

.our-mission-row {
    gap: 24px 0;
}

.our-mission-box {
    height: 100%;
    padding: 42px 30px;
    background-color: var(--blue);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-mission-box p {
    max-width: 450px;
    font-size: var(--font17);
    line-height: 1.563rem;
    text-align: center;
    color: var(--white);
    padding: 0 0 28px;
}

.our-mission-box h4 {
    max-width: 466px;
    font-size: var(--font17);
    line-height: 1.563rem;
    text-align: center;
    color: var(--lightYellow);
}

.our-mission-blue-box {
    background-color: #022F4A;
}

.our-mission-blue-box p {
    max-width: 100%;
}

.credit-application-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.credit-application-title h2 {
    max-width: 600px;
}

.download-application {
    margin: var(--gap80) 0 var(--gap110);
}

.download-application-inner {
    max-width: 1085px;
    margin: 0 auto;
    position: relative;
}

.download-application-inner .our-mission-box {
    padding: 60px 70px 117px;
}

.download-button .btns {
    border: 4px solid #FFFFFF;
}

.download-application-inner .download-button {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
}

.mbe-pdf {
    padding: var(--gap80) 0;
}

.mbe-pdf-row {
    gap: 24px 0;
}

.mbe-pdf-box {
    height: 100%;
    padding: 35px 54px;
    box-shadow: 0px 4px 44px 0px #0000001A;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.mbe-pdf-content a {
    font-family: var(--headFont);
    font-size: var(--font18);
    line-height: 1.563rem;
    text-align: center;
    text-decoration: underline;
    color: var(--black);
    margin-top: 18px;
}

@media(max-width: 767px) {
    .mbe-pdf-box {
        height: 100%;
        padding: 25px 20px;
    }
}



.terms-condition {
    padding: var(--gap80) 0;
}

.terms-content p {
    padding-top: 23px;
}

.terms-content span {
    font-size: var(--font17);
    font-weight: 700;
    line-height: 1.563rem;
    padding-top: 35px;
    display: block;
}

.training-row {
    max-width: 1120px;
    margin: 0 auto;
    gap: 24px 0;
}

.js-training-four-slider,
.js-training-three-slider {
    padding-bottom: 12px;
    margin: 0 -15px;
}

.training-slider-col {
    padding: 0 15px;
}

.training-cards {
    display: block;
}

.training-second-video {
    max-width: 546px;
    margin: 0 auto;
}

.training-blue-sec {
    margin: var(--gap80) 0 0;
}

.training-blue-sec-inner .our-mission-box {
    padding: 61px 137px 53px 140px;
}

.training-blue-sec-inner .our-mission-box p,
.training-blue-sec-inner .our-mission-box h4 {
    max-width: 100%;
}

.training-mbe-pdf .mbe-pdf-box {
    padding: 35px 25px;
}

.contact-us-half-text {
    margin: 0 0 var(--gap80);
}

.contact-us-half-text .half-text-button-col:first-child .half-text-btn-card {
    align-items: end;
    text-align: start;
}

.contact-us-half-text .half-text-button-col:last-child .half-text-btn-card {
    align-items: start;
    text-align: start;
}

.contact-us-half-text .half-text-btn-card {
    padding: 0;
}

.contact-us-half-text h2 {
    font-size: var(--font32);
    max-width: 485px;
    margin-right: 60px;
}

.contact-us-half-text img {
    margin-left: 82px;
}

.contact-form {
    padding: var(--gap80) 0;
}

.contact-form-box,
.free-quote-form {
    height: 100%;
}

.contact-form-box-row,
.contact-form-row {
    gap: 24px 0;
}

.contact-form-inner-box h5 {
    font-size: var(--font22);
    line-height: 1.2rem;
}

.contact-form-inner-box {
    padding: 33px 29px;
    box-shadow: 0px 4px 44px 0px #0000001A;
}

.contact-link-text p {
    font-size: var(--font17);
    font-weight: 600;
    line-height: 1.2rem;
    text-transform: capitalize;
}

.contact-link-text a {
    color: var(--black);
    display: block;
}

.contact-link-text a:hover {
    color: var(--yellow);
}

.contact-inner-box-content {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 20px;
}

.contact-us-form-heading h2 {
    font-size: var(--font32);
    margin-bottom: 35px;
}

.contact-form-inner-box-adjuster {
    padding: 75px 29px 118px;
}

.free-quote-flex {
    align-items: flex-end;
}

.free-quote-image {
    margin-left: -54px;
}

.free-quote-form {
    padding: 42px 62px;
    background-color: var(--white);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.1);
}

.free-quote-form .quary-from-btn-sec {
    justify-content: flex-start;
    margin: 5px 0 0;
}

.quary-input-box label {
    font-size: 16px;
    color: #282828;
    position: absolute;
    top: -7px;
    left: 18px;
    background: #fff;
    padding: 0 5px;
}

.number-box {
    position: absolute;
    top: 19px;
    left: 22px;
}

.quary-input-box {
    position: relative;
    margin-bottom: 30px;
}

.quary-input-box input {
    font-size: 14px;
    font-weight: 400;
    color: #B0ACAC;
    height: 60px;
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 44px 0px #0000000F;
}

.quary-input-box input,
.quary-input-box textarea {
    padding: 9px 21px;
    border-radius: 0;
    
}


.quary-input-box textarea:focus {
    border-color: #f1a527;   /* border color */
    
}

.quary-input-box input::placeholder {
    color: #B0ACAC;
}

.number-box-inner {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    color: #B0ACAC;
    padding-right: 12px;
}

.quary-input-box textarea {
    height: 119px;
    font-size: 14px;
    border: 1px solid #EFEFEF;
    padding: 25px 21px !important;
    box-shadow: 0px 4px 44px 0px #0000000F;
}

.quary-phn-box input {
    padding-left: 87px;
}

.number-box-inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 25px;
    background-color: #E0DCDC;
}

.send-btn .btns {
    padding: 20px 118px;
}

.send-btn {
    margin: 0;
}

.accordion-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-box-left {
    display: flex;
    align-items: center;
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion .accordion-item {
    margin-top: 16px;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #E8E8E8;
}

.q-box {
    width: 53px;
    height: 60px;
    background: #076095;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 38px;
}

.accordion-box-right {
    padding-right: 34px;
}

.accordion-item-header.active .accordion-box-right i {
    transform: rotate(45deg);
}

.accordion-item-body-content {
    padding: 10px 214px 16px 76px;
   
}

.accordion-box-left h3 {
    font-weight: 400;
    font-size: 17px;
    color: var(--black);
}

.accordion-box-left p {
    font-weight: 600;
    font-size: 20px;
   
}

.faq-sec {
    padding: 80px 0;
}


@media (min-width: 1200px) {
    .menu-bar li.menu-item-has-children:hover>.sub-menu {
        top: 69px;
        visibility: visible;
        opacity: 1;
    }
    
    .menu-bar li:nth-child(6) .sub-menu {
	left: 408px;
}
}




.video-wrapper {
  position: relative;
  max-width: 700px;
  margin: auto;
}
.video-wrapper img.video-thumbnail {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
}
.video-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* 	18/9/25 */


.product_results{
	width: 100%;
    position: absolute;
    top: 54px;
    left: 0;
    background: #fff;
    z-index: 9;
    border-radius: 5px;
    overflow: hidden;
	    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ajax-product-list li{
	padding: 10px 15px;
}

.ajax-product-list li a{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	border: 1px solid #f0f0f0;
	padding: 15px;
	border-radius: 6px;
}


.ajax-product-list li a .list_price{
	max-width: 64%;
	display: flex;
    flex-wrap: wrap;
}

.ajax-product-list li a img{
	width: 100px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    margin-right: 15px;
}

.title{
	color:#000;
	 margin-bottom: 10px;
}

.ajax-product-list li:hover a .title{
	color:#076095;
}

.price{
	color: #F1A529;
}

.ajax-search-list{
	width: 100%;
	background-color: #FBFCFF;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 20px 15px;
    margin-top: 15px;
	position: absolute;
    top: 52px;
    left: 0;
}

.ajax-search-list li{
	padding: 15px 10px;
	border: 1px solid transparent;
	transition: all .4s ease-in-out;
}

.ajax-search-list li:hover{
	background: #fff;
	border-radius; 5px;
	border: 1px solid #f0f0f0;
}

.menu-bar li.menu-item-has-children i {
    font-size: 10px;
    line-height: 1;
    margin-left: 2px;
    margin-bottom: 2px;
}

.see_all{
	    width: max-content;
	background-color: var(--yellow);
	color: var(--white);
    border: 0;
	border-radius: 6px;
    font-weight: 600;
    font-size: var(--font18);
    line-height: 22px;
    padding: 6px 15px;
	text-transform: capitalize;
	margin: 20px 0;
}

.see_all:hover{
	background: var(--blue);
}

.ajax-search-list li a{
	color: #000;
}

.related-product .slick-arrow:hover::before {
    background: var(--blue);
    color: #fff;
}

.related-product .slick-arrow::before {
    background: transparent;
    color: #000;
}

.our-product-bottom h3{
	padding-bottom: 15px;
	font-size: var( --font22);
}

.our-product-bottom{
	height: 111px;
}

.related-product-col {
    height: 400px;
}

.our-product-img  {
	height: 250px;
}

.our-product-img img {
    object-fit: contain;
}

.buy-now-btn{
	width: max-content;
}

.our-product-detail-btn{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.our-product-bottom a {
    -webkit-line-clamp: 1;
    text-align: center;
}

.header-icon{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
	margin-left: 30px;
}

.header-icon a{
	    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.header-icon a .cart-count {
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
       top: -11px;
    right: -14px;
}

.wc-block-components-checkbox label{
	color: #000;
}

.wc-block-components-checkbox label span,
.wc-block-components-payment-method-label,
.wc-block-components-radio-control__label-group span{
	margin:0;
}


/*my account*/


.woocommerce-MyAccount-navigation .is-active a {
  background: #f1a529;
  color: #fff;
  border-left-color: #a0421a; 
}

/* Hover effect */
.woocommerce-MyAccount-navigation a:hover {
  background: #f1a529;
  border-left-color: #a0421a;
  color: #fff;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

/* Content area */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 9px rgba(0, 0, 0, 0.13);
}

/* Sidebar nav */
.woocommerce-MyAccount-navigation {
  flex: 0 0 220px; /* fixed sidebar width */
  background: #f8f8f8;
  border-radius: 8px;
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce form .form-row label{
    display: flex;
    color: black;
}
.woocommerce form .form-row .required{
    margin-top: 0;
}

.woocommerce-Address-title h2{
  font-size: 20px !important;  
}

.product_cat_list{
    padding: 50px 0;
}


.product_cat_list .item{
    padding-bottom: 20px;
}


.product_cat_list .category-content{
    background: #0b5798;
    color: #fff;
}

.product_cat_list a{
    color: #fff;
}

.banner-bg-cat{
    background: #076095;
}

.product-main-carousel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 15px;
}
.product-main-carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.product-thumbs-carousel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.product-thumbs-carousel .swiper-slide {
    width: 80px !important;
    height: 80px;
    opacity: 0.6;
    cursor: pointer;
}
.product-thumbs-carousel .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #ff9800;
}
.product-thumbs-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.product-main-carousel img {
    width: 100%;
    height: 300px;
/*     object-fit: cover !important; */
    border-radius: 8px;
    object-fit: contain;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   font-size: 14px !important;
}

.swiper-button-next, 
.swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    background-color: var(--white);
    font-weight: bold;
    border-radius: 50%;
}

.product-all-details{
	padding-top: 15px;	
}

/* 14-10-25 */

.block-video {
	z-index: -1;
}

.certificates{
	position: relative;
    z-index: -1;
}

/* 15-10-25 */

.blog-banner-content {
    padding: 140px 0 93px;
}

.pagination-wrap .current,
.pagination-sec .current{
    color: #241B02;
    border-color: #241B02 !important;
}

.page-link{
	    color: #241B02;
	border: 1px solid #DFE3E8;
	border-radius: 4px;
		
}

.product-all-details h2 {
    font-size: 35px;
}

.related-product-col {
	height: 450px;
    padding: 12px;
}
	
	.blog-left h1{
		padding-bottom: 20px;
	}

.buy-now-btn,
.quantity{
	border-radius: 0;
}

.our-product-bottom h3 a{
	color: var(--black);
}

.fw-bold span,
.prd-price ins span{
	font-weight: 700;
}

.prd-price{
	color: transparent;
}

 .prodc-price del span,
.prd-price del span{
	font-weight: 400;
	color: #6b7280;
}

.features_col ul li{
	    color: #707070;
	padding: 10px 0 0;
}


.features_col p{
	color: var(--black);
}

.prodc-tab-content table{
	margin: 0;
	padding-bottom: 20px;
}

.comment-reply-title,
.blog-body p,
.post-meta{
	padding: 15px 0;
}

.logged-in-as,
.comment-notes{
	padding-bottom: 15px;
}

.form-submit{
	margin-top: 15px;
}

.form-submit:hover input{
	background: var(--blue);
	color: var(--white);
	border: 1px solid var(--blue);
}

.tag-item a{
	margin-bottom: 15px;
}

.comment-form-agree label{
	color: var(--black);
	padding: 15px 0 0 7px;
}

.comment-form-author{
	margin-bottom: 20px;
}

.blog-bottom-top-details-box-info span{
	font-size: 16px;
}

/* 17-10-9 */

.variation-field label{
	color: var(--black);
}

.variation-field,
.quantity-wrapper,
.cart-buttons{
	margin-bottom: 15px;
}

.cart-buttons:hover button {
	background:var(--blue);
	color: var(--white);
	border: 1px solid var(--blue);
}

.quantity input{
	border-radius: 0;
}

.wc-block-components-checkout-return-to-cart-button svg{
	left: 15px !important;
	transition: all .4s ease-in-out;
}

.wc-block-components-checkout-return-to-cart-button:hover svg{
	color: var(--white);
}

.wc-block-components-checkout-return-to-cart-button:hover{
	background: var(--blue);
	border: 1px solid var(--blue);
	color: var(--white);
}

.wc-block-checkout__actions_row a{
	border: 1px solid var(--black);
    padding: 15px 30px 15px 46px;
}

.pagination-sec ul li span.current{
	display: flex;
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-weight: bold;
    color: #241B02;
    align-items: center;
    justify-content: center;
    border: 1px solid #241B02;
    border-radius: 4px;
	cursor: pointer;
}



.woocommerce table.my_account_orders .button {
  white-space: nowrap;
  background: #F1A529;
  color: #fff;
  margin-right: 5px;
  padding: 9px 19px;
  font-size: 13px;
  font-weight: 600;
}
.woocommerce-MyAccount-content .button{white-space: nowrap;
  background: #F1A529 !important;
  color: #fff !important;
  margin-right: 5px;
  padding: 9px 19px !important;
  font-size: 13px !important;
  font-weight: 600 !important;}

.woocommerce-Button button{white-space: nowrap;
  background: #F1A529 !important;
  color: #fff !important;
  margin-right: 5px;
  padding: 13px 19px !important;
  font-size: 13px !important;
  font-weight: 600 !important;}


.woocommerce-Address{padding: 15px;
  box-shadow: 0px 0px 10px 0px #cacaca;
  margin-top: 10px;}


.woocommerce-Button.button {
  white-space: nowrap;
  background: #F1A529 !important;
  color: #fff !important;
  margin-right: 5px;
  padding: 13px 19px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

button.woocommerce-button.button.woocommerce-form-login__submit {
    white-space: nowrap;
    background: #F1A529 !important;
    color: #fff !important;
    margin-right: 5px;
    padding: 11px 19px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    width: 100%;
    align-items: center;
}
label span {
    display: block;
    font-size: 14px;
    margin-top: 0px;
    margin-left: 10px;
}

.woocommerce h2{font-size: 30px;}
#customer_login{margin-top: 35px;}

/*  27-10-25 */

.woocommerce-breadcrumb{
	color: #d9d1ce;
    position: relative;
    z-index: 9;
	font-size: 18px;
}

.woocommerce-breadcrumb a{
	color: #d9d1ce;
}

.woocommerce-breadcrumb a:hover{
	color: var(--white);
}

/*single product page*/

.quantity-inner{
	    display: flex;
    gap: 20px;
    align-items: center;
	margin: 15px 0;
}

.input-box,
.quantity{
	height: 47px;
}

.attribute-wrapper{
	display: flex;
	gap: 10px;
	align-items: center;
}

.attribute-wrapper input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.attribute-wrapper label {
  display: inline-block;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #fff;
  color: #333;
  font-weight: 700;
	text-transform: uppercase;
  font-size: 14px;
  transition: all 0.25s ease;
}

.attribute-wrapper label:hover {
  border-color: #0073aa;
  background-color: #f0f8ff;
  color: #0073aa;
}

.attribute-wrapper input[type="radio"]:checked + label {
  background-color: #0073aa;
  border-color: #0073aa;
  color: #fff;
}

/* 28-10-25 */
.add-cart_btn button{
	border: 1px solid var(--black);
	padding: 12px 30px;
}

.add-cart_btn button:hover{
	background:var(--yellow);
	color: var(--white);
	border: 1px solid var(--yellow);
}


.price{
	margin-left: 0;
}

.price span{
	margin: 5px 0 0;
	text-align: center;
}

.quantity-cart-wrapper{
	flex-direction: column;
	align-items: start;
}

.variation-inquiry-section{
	max-width:800px;
	margin: 160px auto 80px;
}

.variation-inquiry-section h2{
	font-size: 34px;
	text-align: center;
	padding-bottom:25px;
}

.vif-input-box{
	margin-bottom: 20px;
}

.vif-input-box label{
	color:#333;
	font-weight: 500;
}

.ajax-product-item .title{
	max-width:365px;
}

.intl-tel-input {
	width: 100%;
}

.vif-button-wrap p,
.variation-text p{
	text-align: center;
}

#search-results{
	    background:#fff;
    border-radius: 6px;
	margin-top: 20px;
}

.search-thumb img{
	width: 70px;
	padding: 10px;
    border: 1px solid #f0f0f0;
}

.live-search-results li{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 10px 15px;
	border: 1px solid #f0f0f0;
	background: #fff;
}

.search-content a{
	max-width: 300px;
	color: var(--black);
    margin-left: 15px;
}
.footer {
   
    content-visibility: initial !important;
}