:root {
    --primary: #E9A711;
    --secondery: #252422;
    --surface-main: #8D8A89;
    --surface-soft: #E1E1E1;
    --edge-soft: #F5F5F5;
    --font-1: 'Quantify', sans-serif;
    --font-2: 'Plus Jakarta Sans';
    --white: #FFFFFF;
    --black: #000000;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: var(--secondery);
    font-family: var(--font-2);
    font-size: 16px;
    background-color: var(--edge-soft);
}


.container,
.container-sm {
    max-width: 100%;
    width: 1440px;
    padding-inline: 20px;
    margin-inline: auto;
}

.container-sm {
    width: 1360px;
}

img {
    display: block;
}

a {
    text-decoration: none;
}

html .form-control::placeholder,
html .form-select::placeholder,
html textarea::placeholder {
    color: var(--secondery);
}

html .form-control,
html .form-select {
    display: block;
    width: 100%;
    padding: 0 0 18px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: var(--secondary);
    transition: border-color .3s ease;
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #25242233;
}

html .form-select {
    background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.8008 0.80009C10.8008 0.80009 7.11836 5.80005 5.80078 5.80005C4.48311 5.80005 0.800781 0.800049 0.800781 0.800049" stroke="%23252422" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    cursor: pointer;
}

html textarea.form-control {
    min-height: 80px;
    resize: none;
}

html .form-control:focus,
html .form-select:focus,
html textarea:focus {
    background-color: transparent;
    box-shadow: unset;
    border-bottom: 1px solid #25242233;
}

html .btn {
    display: flex;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding: 10px 22px;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border: 0;
    border-radius: 10px;
    transition: all 0.5s ease;
    white-space: nowrap;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--font-1);
}

/* header */

header {
    padding-block: 35px;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.5s ease;
}

header.active {
    padding-block: 20px;
    background-color: #000000;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: block;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

header.active .nav-logo img {
    width: 80%;
}

.nav-menu .list-item-wrapper {
    padding: 13px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    background: rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.nav-menu .list-item-wrapper>li {
    list-style: none;
    position: relative;
    left: 0;
    top: 0;
    padding-block: 5px;
}

.nav-menu .list-item-wrapper>li::after {
    content: '';
    position: absolute;
    border-bottom: 1px solid var(--primary);
    width: 0;
    z-index: 0;
    transition: all 0.5s ease;
    top: 0;
    left: auto;
    width: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
}

.nav-menu .list-item-wrapper>li:hover::after,
.nav-menu .list-item-wrapper>li.active::after {
    width: 100%;
    right: 0;
    right: auto;
    visibility: visible;
}

.nav-menu .list-item-wrapper>li>a {
    display: block;
    font-weight: 500;
    font-size: 15px;
    line-height: 110%;
    letter-spacing: 0%;
    color: var(--white);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.nav-menu .list-item-wrapper>li:hover>a,
.nav-menu .list-item-wrapper>li.active>a {
    color: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    color: var(--white);
    cursor: pointer;
    display: none;
}



/* footer */

footer .container {
    width: 1500px;
}

.footer-content {
    background-image: url(../images/section/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding: 40px 90px;
    padding-bottom: 30px;
}

.footer-content h2 {
    font-weight: 700;
    font-size: 120px;
    text-transform: uppercase;
    line-height: 100%;
    color: var(--white);
    margin: 0;
    margin-bottom: 40px;
}

.footer-socicon-wrapper ul {
    padding: 0;
    gap: 8px;
    margin-bottom: 48px;
}

.footer-socicon-wrapper ul li {
    list-style: none;
}

.footer-socicon-wrapper ul li a {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    border: 1px solid #FFFFFF24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.5s ease;
}

.footer-socicon-wrapper ul li a:hover {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer-contact-wrapper {
    max-width: 530px;
}

.footer-contact-wrapper a {
    gap: 12px;
    text-decoration: none;
}

.footer-contact-wrapper a:not(:last-child) {
    margin-bottom: 12px;
}

.footer-contact-wrapper a p {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--white);
    transition: all 0.5s ease;
}

.footer-contact-wrapper a:hover p {
    color: var(--primary);
}

.footer-contact-icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #FFFFFF14;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.footer-contact-wrapper a:hover .footer-contact-icon {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer-main-img {
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 27.4%, rgba(255, 255, 255, 0.7) 54.33%, rgba(255, 255, 255, 0) 84.62%);
    min-height: 547px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-main-img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 285px;
}

.copyright {
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.copyright p {
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0%;
    margin: 0;
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.copyright p a {
    color: var(--secondery);
}

span.laxraj-love,
span.laxraj-love a {
    color: var(--primary);
    animation: pound 0.35s infinite alternate;
}

@keyframes pound {
    100% {
        transform: scale(1.1);
    }
}


span.laxraj-love svg {
    width: 14px;
    height: 12px;
}

@media (max-width:1200px) {
    .footer-content h2 {
        font-size: 70px;
    }

    .footer-contact-wrapper {
        max-width: 100%;
    }

    .footer-main-img {
        min-height: 400px;
    }

    .footer-main-img img {
        max-width: 225px;
    }

}

@media (max-width:992px) {
    .footer-content h2 {
        text-align: center;
    }

    .footer-content {
        padding-inline: 40px;
    }
}

@media (max-width:767px) {
    .footer-content h2 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .footer-socicon-wrapper ul li a {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .footer-socicon-wrapper ul {
        margin-bottom: 30px;
    }

    .footer-content {
        padding: 30px;
    }

    .footer-contact-wrapper a p {
        font-size: 18px;
    }
}

@media (max-width:576px) {
    .footer-contact-wrapper a p {
        font-size: 14px;
    }

    .footer-content h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .footer-content {
        padding: 20px;
    }

    .footer-socicon-wrapper ul li a {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }
}

/* counter sec */

.counter-sec {
    padding-block: 100px;
}

.aboutUS.counter-sec {
    padding: 65px 0 100px;
}

/* .aboutUS.about-sec .main-title-sec h2 {
    max-width: 80%;
} */

.aboutUS.counter-sec .counter-item h3 {
    margin: 0;
}

.counter-item {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    background-color: var(--white);
}

.counter-item h3 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.counter-item .counter-num {
    font-weight: 600;
    font-size: 76px;
    line-height: 80%;
    letter-spacing: -3%;
    margin: 0;
    font-family: var(--font-2);
    color: var(--secondery);
}

.counter-item p {
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 33px;
}

.counter-item h3 span svg {
    vertical-align: super;
}


.why_choose-wraper .slick-list.draggable::after,
.why_choose-wraper .slick-list.draggable:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 128px;
    background: linear-gradient(0deg, rgba(245, 245, 245, 0) 0%, #F5F5F5 100%);
    z-index: 2;
}

.why_choose-wraper .slick-list.draggable::after {
    top: auto;
    bottom: -10px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0%, #F5F5F5 100%);
}

.why_choose-wraper .slick-list.draggable {
    min-height: 632px;
    padding: 0 25px;
}

section.why_choose_us {
    padding: 90px 0 90px;
    position: relative;
}

.why_choose_box .icon {
    height: 90px;
    width: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/vector/icon_shape.svg');
    position: relative;
    color: var(--dark);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12px;
}

.why_choose_box .icon img {
    width: 100%;
    height: 100%;
}

.why_choose_box h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.why_choose_box p {
    font-size: 16px;
    line-height: 150%;
    color: #8D8A89;
}

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

.why_choose_box {
    box-shadow: 0px 0px 20px 0px #0000000D;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.why_txt_icn .item::after {
    display: none;
}

.why_txt_icn {
    overflow: hidden;
    width: 100%;
}

section.why_choose_us .whc_wrp {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_txt_icn .slick-track {
    display: flex;
    align-items: center;
}

.why_txt_icn .slick-slide {
    width: auto !important;
}

.why_txt_icn .item {
    display: flex !important;
    align-items: center;
    gap: 50px;
    width: auto !important;
}

.why_txt_icn .item h3 {
    font-weight: 700;
    font-size: 170px;
    line-height: 130%;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.why_txt_icn .item img {
    width: 96px;
    min-width: 96px;
}

.why_txt_icn .slick-slide {
    width: auto !important;
    margin-right: 50px;
}

.why_txt_icn .slick-track {
    display: flex;
    align-items: center;
}

@media (max-width:1400px) {
    .counter-item .counter-num {
        font-size: 55px;
    }

    .counter-item p {
        font-size: 12px;
    }
}

@media (max-width:1024px) {
    .why_txt_icn .item h3 {
        font-size: 90px;
    }

    .why_txt_icn .item img {
        width: 85px;
        min-width: 85px;
    }

    .why_txt_icn .item {
        gap: 40px;
    }

    .why_txt_icn .slick-slide {
        margin-right: 40px;
    }

    .why_choose-wraper .slick-list.draggable {
        min-height: 500px;
        padding: 0 15px;
    }

    .why_choose_box {
        padding: 20px;
        border-radius: 14px;
        margin-bottom: 15px;
    }

    .why_choose_box h3 {
        font-size: 22px;
    }

    .why_choose_box p {
        font-size: 14px;
    }

    .why_choose_box .icon {
        height: 70px;
        width: 75px;
        padding: 18px;
    }
}

@media (max-width:767px) {
    .counter-sec {
        padding-block: 60px;
    }

    .why_choose-wraper .slick-list.draggable {
        min-height: 350px;
        padding: 0;
    }

    .why_txt_icn .item h3 {
        font-size: 35px;
    }

    .why_txt_icn .slick-slide {
        margin-right: 20px;
    }

    .why_txt_icn .item {
        gap: 20px;
    }

    .why_choose-wraper .slick-list.draggable::after,
    .why_choose-wraper .slick-list.draggable:before {
        height: 70px;
    }

    .why_choose_box {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .why_choose_box h3 {
        font-size: 18px;
    }

    section.why_choose_us .whc_wrp {
        position: static;
        padding-bottom: 40px;
    }

    .why_choose_box .icon {
        height: 50px;
        width: 53px;
        padding: 6px;
    }

    .why_txt_icn .item img {
        width: 60px;
        min-width: 60px;
    }

    section.why_choose_us {
        padding: 60px 0 60px;
    }
}

@media (max-width:576px) {
    .counter-item {
        padding: 20px;
        border-radius: 12px;
    }

    .counter-item .counter-num {
        font-size: 36px;
    }

    .counter-item h3 span svg {
        width: 20px;
        height: 20px;
    }

    .counter-item p {
        margin-bottom: 20px;
    }
}

/* banner sec */

.banner-sec .item {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: end;
    min-height: 100vh;
    padding-bottom: 150px;
}

.banner-sec .item::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    inset: 0;
    z-index: 0;
}

.item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-content.txt_left{
    margin-right: auto;
}
.item-content.txt_center{
    margin:0 auto;
    text-align: center;
}
.item-content.txt_center p{
    margin-left: auto;
    margin-right: auto;
}
.item-content.txt_right{
    margin-left: auto;
    text-align: right;
}
.item-content.txt_right p{
    margin-left: auto;
}
.item-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}
.item-content h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 10px;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
    transition: all 0.8s ease;
}

.item-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--white);
    margin-bottom: 37px;
    max-width: 730px;
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
    transition: all 0.8s ease;
}

.item-content .btn {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
    transition: all 0.8s ease;
    display: inline-flex;
}


/* Active Slide Animation */

.banner-sec .item.slick-active .item-content h1 {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.3s;
}

.banner-sec .item.slick-active .item-content p {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.6s;
}

.banner-sec .item.slick-active .item-content .btn {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 0.9s;
}

.banner-sec .slick-arrow {
    position: absolute;
    z-index: 3;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 32px;
    background: transparent;
    border: 0;
}

.banner-sec .slick-arrow.slick-prev,
.banner-sec .slick-arrow.slick-next {
    color: var(--primary) !important;
    transition: all 0.5s ease;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
}

.banner-sec .slick-arrow.slick-prev {
    right: calc(50px + 30px + 50px);
}

.banner-sec .slick-arrow.slick-next {
    right: 50px;
}

.banner-sec .slick-arrow.slick-prev:hover,
.banner-sec .slick-arrow.slick-next:hover {
    color: var(--white) !important;
}

@media (max-width:1200px) {
    .banner-sec .item {
        min-height: 700px;
    }
}

@media (max-width:767px) {
    .banner-sec .item {
        min-height: 550px;
    }

    .item-content h1 {
        font-size: 40px;
        text-align: center;
    }

    .item-content p {
        margin-inline: auto;
        text-align: center;
    }

    .item-content .btn {
        margin-inline: auto;
    }

    .banner-sec .slick-arrow {
        justify-content: center;
    }

    .banner-sec .slick-arrow.slick-prev {
        right: 50%;
    }

    .banner-sec .slick-arrow.slick-next {
        right: calc(50% - 55px);
    }

    .banner-sec .slick-arrow.slick-prev svg,
    .banner-sec .slick-arrow.slick-next svg {
        width: 30px;
    }
}

@media (max-width:576px) {
    .banner-sec .item {
        min-height: 510px;
    }

    .item-content h1 {
        font-size: 22px;
        text-align: center;
    }

    .item-content p {
        margin-inline: auto;
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .item-content .btn {
        margin-inline: auto;
        font-size: 11px;
        padding: 10px;
    }

    .item-content .btn svg {
        width: 18px;
        height: 18px;
    }
}

.about-sec {
    padding-top: 100px;
}

.about-sub-title {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 20%;
    text-transform: uppercase;
}

.about-content-wrapper h3,
.about-content-wrapper .counter-num {
    display: inline;
    font-weight: 700;
    font-size: 140px;
    line-height: 90%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-family: var(--font-2);
    margin: 0;
}

.about-content-wrapper h3 span {
    margin-top: 2px;
    display: block;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    line-height: 120%;
    text-transform: capitalize;
    letter-spacing: 0%;
}

.about-sec .main-title-sec h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 30px;
    color: var(--secondery);
}

.about-content-wrapper p {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    margin: 0;
    margin-bottom: 30px;
}

.about-content-wrapper h6 {
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--secondery);
    padding: 0;
    margin-bottom: 10px;
}

.about-content-wrapper .arrow-img-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.about-content-wrapper .arrow-img-wrapper .arrow-img {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
}

.about-content-wrapper .arrow-img-wrapper .arrow-img img {
    display: block;
    width: 100%;
    max-width: 195px;

}

.about-content-wrapper .arrow-img-wrapper .arrow-img:nth-child(2) img {
    max-width: 189px;
}

.aboutUS .about-content-wrapper .counterBox {
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

@media (max-width:992px) {
    .about-sec .main-title-sec h2 {
        font-size: 40px;
    }
}

@media (max-width:767px) {
    .about-sec {
        padding-top: 60px;
    }

    .about-content-wrapper h3,
    .about-content-wrapper .counter-num {
        display: flex;
        justify-content: center;
        font-size: 90px;
        text-align: center;
        align-items: end;
    }

    .about-content-wrapper h3 span {
        font-size: 40px;
    }

    .about-sec .main-title-sec h2 {
        margin-bottom: 12px;
        text-align: center;
    }

    .about-sub-title {
        text-align: center;
    }

    .about-content-wrapper p,
    .about-content-wrapper h6 {
        text-align: center;
    }

    .about-content-wrapper h6 {
        font-size: 16px;
    }

    .about-content-wrapper .arrow-img-wrapper {
        justify-content: center;
    }


    .about-content-wrapper .btn {
        margin-inline: auto;
        font-size: 12px;
        padding: 10px 12px;
    }

    .about-content-wrapper .btn svg {
        width: 18px;
        height: 18px;
    }

}

@media (max-width:576px) {
    .about-sec .main-title-sec h2 {
        font-size: 20px;
    }

    .about-content-wrapper p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-content-wrapper h3,
    .about-content-wrapper .counter-num {
        font-size: 50px;
    }

    .about-content-wrapper h3 span {
        font-size: 30px;
    }
}

/* our-products-sec */

.our-products-sec {
    padding-block: 140px;
}

.our-products-sec .main-title {
    margin: 0;
    margin-bottom: 30px;
}

.our-products-sec .main-title-sec h2 {
    font-family: Quantify;
    font-weight: 700;
    font-style: Bold;
    font-size: 50px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 40px;
    max-width: 1084px;
}

.main-title span {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 20%;
    text-transform: uppercase;
    display: block;
}

.our-products-content {
    background-color: var(--white);
    padding: 16px 20px;
    gap: 10px;
    justify-content: space-between;
}

.our-products-img {
    display: block;
    overflow: hidden;
}

.our-products-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.our-products-img img:hover {
    transform: scale(1.1);
}

.our-products-content a h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin: 0;
    color: var(--secondery);
    transition: all 0.5s ease;
}

.our-products-content a h3:hover {
    color: var(--primary);
}

.our-products-icon {
    height: 50px;
    width: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/vector/icon_shape.svg);
    position: relative;
    color: var(--dark);
    background-repeat: no-repeat;
    background-size: cover;
}

.our-products-icon svg {
    transition: all 0.5s ease;
}

.our-products-block:hover .our-products-icon svg {
    transform: rotate(45deg);
}

.our-products-wrapper .col-lg-4:nth-child(3n + 3) {
    transform: translateY(160px);
}

.our-products-wrapper .col-lg-4:nth-child(3n + 2) {
    transform: translateY(80px);
}

.inner-banner-sec {
    /* background-image: url(../images/section/inner-banner-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
    padding: 180px 0px 90px;
    z-index: 1;
    background-color: #3B3B3B;
}

/* .inner-banner-sec:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #00000099;
    z-index: -1;
} */

.inner-banner-sec .title h3 {
    font-size: 55px;
    font-weight: 700;
    line-height: 120%;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0px;
}


.contact_us_sec {
    padding: 0 0px 80px;
}

.contact_us_sec .container {
    /* max-width: 1320px; */
    max-width: 1340px;
    width: 100%;
}

.contact_us_sec .row>*:nth-child(2)>div {
    max-width: 785px;
    width: 100%;
    margin-left: auto;
}

.cnt_row_first {
    margin-bottom: 80px;
}

.cnt_row_first .wrap {
    padding: 40px;
    text-align: center;
    height: 100%;
    border-top: 1px solid #2524221A;
    border-bottom: 1px solid #2524221A;
}

.cnt_row_first .locationWrap,
.cnt_row_first .CallWrap {
    border-right: 1px solid #2524221A;
}

.cnt_row_first .wrap i {
    border: 1px solid #2524221A;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 38px;
}

.cnt_row_first h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 10px;
    color: var(--secondery);
    font-family: var(--font-1);
    text-transform: uppercase;
    margin-bottom: 11px;
}

.cnt_row_first h6 {
    margin: 0;
}

.cnt_row_first h6 a {
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 0;
    font-family: var(--font-2);
    color: var(--secondery);
    transition: all 0.5s ease;
}

.cnt_row_first h6 a:hover {
    color: var(--primary);
}

.cnt_row_first .locationWrap h6 {
    padding: 0 20px;
}

.cnt_row_first .locationWrap h6 a {
    font-size: 18px;
}

.cnt_row_first .CallWrap h6 a {
    font-size: 24px;
}

.cnt_row_first .mailWrap h6 a {
    font-size: 20px;
}

.cnt_row_second img {
    width: 480px;
    object-fit: cover;
}


.cnt_row_second h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cnt_row_second p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    margin: 0;
    margin-bottom: 50px;
}

#contact_form .form-field {
    margin-bottom: 50px;
}

#contact_form a.btn {
    padding: 13px 22px;
    width: 170px;
    text-align: center;
    justify-content: center;
}

body.single-product .inner-banner-sec {
    padding: 180px 0px 76px;
}

.product_detail_section .container,
.similar_product_section .container {
    max-width: 1320px;
    width: 100%;
}

.product_detail_section {
    padding: 60px 0px 120px;
}

.similar_product_section {
    padding-bottom: 100px;
}

.similar_product_section .main-title-sec h2 {
    font-size: 50px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--secondery);
    margin-bottom: 40px;
}

.product_detail_section .product_image {
    max-width: 620px;
    width: 100%;
    overflow: hidden;
}

.product_detail_section .product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product_detail_section .product_image:hover img {
    transform: scale(1.1);
}

.product_detail_section .product_content {
    padding-left: 21px;
}

.product_detail_section .product_image_col {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.inner-banner-sec nav {
    justify-content: center !important;
}


.breadcrumb {
    margin-bottom: 14px;
    row-gap: 10px;
}

.breadcrumb-item+.breadcrumb-item {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 110%;
    transition: all 0.5s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 0;
    margin: 0 15px 0 0;
}

.product_detail_section .btn-wrp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0px 30px;
}

.product_detail_section .btn-wrp a.btn {
    height: 50px;
    font-size: 15px;
}

.product_detail_section .btn-wrp a.btn.wp_btn {
    background-color: #00B71E;
    color: var(--white);
}

.product_detail_section .btn-wrp a.btn.wp_btn:hover {
    background-color: var(--primary);
    color: var(--secondery);
}

.product_detail_section h3 {
    font-size: 55px;
    line-height: 110%;
    text-transform: uppercase;
}

.product_detail_section p {
    font-weight: 500;
    margin-bottom: 14px;
}

.product_detail_section table {
    width: 100%;
    border: 1px solid #25242224;
    margin-top: 30px;
    border-radius: 10px;
    border-spacing: 0px;
    border-collapse: unset;
}

.product_detail_section table tr>* {
    padding: 15.5px 25px;
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    border-bottom: 1px solid #25242224;
}

.product_detail_section table tr:nth-child(odd)>* {
    background-color: #25242205;
}

.product_detail_section table tr th {
    font-weight: 600;
    border-right: 1px solid #25242224;
}

.product_detail_section table tr:last-child>* {
    border-bottom: 0px;
}

.aboutUS .main-title-sec h2 {
    margin-bottom: 21px;
}

.aboutUS .content-Wrap p {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    padding: 0;
    margin-bottom: 16px;
    color: var(--secondery);
}

.aboutUS .content-Wrap img {
    width: 100%;
    max-width: 1000px;
    object-fit: cover;
}

.aboutUS .countWrap {
    margin-left: 64px;
    margin-top: 120px;
}


.foundation-sec {
    padding: 62px 0 140px;
    position: relative;
}

.foundation-sec .main-title-sec h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 34px;
    color: var(--secondery);
}


.foundation_wrap {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.foundation_wrap .foundation-box {
    padding: 30px;
    border-right: 1px solid #2524221A;
    height: 100%;
    background-color: var(--white);
}

.foundation_wrap>div>div:last-child div {
    border: 0;
}

.foundation-sec .bg-img-wrap {
    position: absolute;
    right: 50px;
    top: 0;
}

.foundation-sec .bg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);

}

.foundation_wrap .foundation-box i {
    margin-bottom: 28px;
    display: block;
}

.foundation_wrap .foundation-box h3 {
    font-family: var(--font-1);
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 6px;
}

.foundation_wrap .foundation-box p {
    margin: 0;
    padding: 0;
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0%;
}

.quality-sec {
    padding: 100px 0;
}

.quality-sec .machine-wrap {
    position: sticky;
    top: 150px;
    min-height: fit-content;
}

.quality-sec .machine-slider {
    position: relative;
    padding: 20px;
}

.quality-sec .machine-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.5s ease;
}

.quality-sec .machine-slider .slick-slide:hover img {
    transform: scale(1.1);
}

.quality_wrap .row {
    display: flex;
    align-items: flex-start;
}


/* Common styles */
.quality-sec .machine-slider::before,
.quality-sec .machine-slider::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #D9D9D9;
    z-index: 2;
}

/* Top Right Corner */
.quality-sec .machine-slider::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

/* Bottom Left Corner */
.quality-sec .machine-slider::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.machine-slider .slick-dots {
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
}

.machine-slider .slick-dots li button:before {
    display: none;
}

.machine-slider .slick-dots li {
    margin: 0 5px;
    padding: 0;
    width: 10px;
    height: 10px;
}

.machine-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
}

.machine-slider .slick-dots li.slick-active button {
    background-color: var(--primary);
}


.quality_wrap .content-wrap {
    padding-left: 50px;
}

.quality_wrap .content-wrap p {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--secondery);
    margin-bottom: 24px;
}

.quality_wrap .content-wrap h4 {
    font-family: var(--font-2);
    font-weight: 700;
    font-size: 22px;
    line-height: 160%;
    letter-spacing: 0%;
    margin: 0 0 14px;
}

.quality_wrap .content-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quality_wrap .content-wrap ul li {
    position: relative;
    margin-bottom: 12px;
    padding: 0 0 0 31px;
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    color: var(--secondery);
}

.quality_wrap .content-wrap ul li::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 3px;
    left: 0;
    background-image: url('data:image/svg+xml,<svg width="22" height="25" viewBox="0 0 22 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.0724 5.30277C10.4088 4.46762 11.5912 4.46762 11.9276 5.30277L12.5321 6.80354C12.7647 7.38104 13.4628 7.60787 13.9905 7.2774L15.3617 6.41858C16.1247 5.94066 17.0813 6.63562 16.8625 7.50901L16.4695 9.07849C16.3182 9.68243 16.7497 10.2763 17.3708 10.3191L18.9849 10.4302C19.8832 10.4921 20.2485 11.6166 19.5582 12.1946L18.3177 13.2333C17.8403 13.633 17.8403 14.367 18.3177 14.7667L19.5582 15.8054C20.2485 16.3834 19.8832 17.5079 18.9849 17.5698L17.3708 17.6809C16.7497 17.7237 16.3182 18.3176 16.4695 18.9215L16.8625 20.491C17.0813 21.3644 16.1247 22.0593 15.3617 21.5814L13.9905 20.7226C13.4628 20.3921 12.7647 20.619 12.5321 21.1965L11.9276 22.6972C11.5912 23.5324 10.4088 23.5324 10.0724 22.6972L9.4679 21.1965C9.23528 20.619 8.53716 20.3921 8.00952 20.7226L6.63832 21.5814C5.87527 22.0593 4.91874 21.3644 5.13747 20.491L5.53053 18.9215C5.68179 18.3176 5.25033 17.7237 4.6292 17.6809L3.01508 17.5698C2.11685 17.5079 1.75149 16.3834 2.44181 15.8054L3.68232 14.7667C4.15967 14.367 4.15967 13.633 3.68232 13.2333L2.44181 12.1946C1.75148 11.6166 2.11685 10.4921 3.01508 10.4302L4.6292 10.3191C5.25033 10.2763 5.68179 9.68243 5.53053 9.07849L5.13747 7.50901C4.91874 6.63562 5.87527 5.94066 6.63832 6.41858L8.00952 7.2774C8.53716 7.60788 9.23528 7.38104 9.4679 6.80354L10.0724 5.30277Z" fill="%23E9A711"/></svg>');
    background-position: top left;
    background-size: 22px auto;
    background-repeat: no-repeat;
}


.our-product-sec {
    padding: 100px 0;
}

.certificate-sec {
    padding: 64px 0 100px;
}

.certificate-sec .certification-detail {
    margin-bottom: 60px;
}

.certificate-sec .certification-detail p {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    padding: 0 3px;
    margin: 0;
}

.certificate-sec .certificate-card {
    padding: 10px 10px 15px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 13px;
    height: 100%;
}

.certificate-sec .certificate-card .imgWrap {
    overflow: hidden;
}

.certificate-sec .certificate-card img {
    width: 100%;
    height: 100%;
    max-width: 221px;
    object-fit: cover;
    transition: all 0.5s ease;
    overflow: hidden;
}

.certificate-sec .certificate-card p {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--secondery);
    padding: 0;
    margin: auto 0 0 0;
}

.certificate-sec .certificate-card:hover img {
    transform: scale(1.1);
}


/* =========================
   MODAL BASE
========================= */
#inquirypp.modal {
    padding: 0 !important;
}

#inquirypp .modal-dialog {
    max-width: 100%;
    margin: 0;
}

#inquirypp .modal-content {
    height: 100vh;
    border: none;
    border-radius: 0;
    position: relative;
    background: #FFFFFF url(../images/section/popup-bg-img.png) no-repeat;
    background-size: cover;
    background-position: center;
}

/* =========================
   MODAL BODY CENTER
========================= */
#inquirypp .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

/* =========================
   FORM BOX (CENTER CARD)
========================= */
#inquirypp .form-box {
    width: 100%;
    max-width: 600px;
    background: #F3F3F3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
}

/* =========================
   HEADING
========================= */
#inquirypp h2 {
    font-family: var(--font-1);
    font-weight: 700;
    font-size: 36px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--secondery);
    margin: 0;
}

/* =========================
   FORM FIELD
========================= */
#inquirypp .form-field {
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

#inquirypp .form-field label {
    font-family: var(--font-2);
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--secondery);
    position: absolute;
    top: 0;
    left: 0;
}

/* =========================
   INPUT STYLE (UNDERLINE)
========================= */
#inquirypp .form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    border-radius: 0;
    background: transparent;
    padding: 16px 0 0;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0;
    outline: none;
    color: var(--secondery);
}

#inquirypp .form-control:focus {
    border-bottom: 1px solid #000;
    box-shadow: none;
}

/* =========================
   TEXTAREA
========================= */
#inquirypp textarea.form-control {
    height: 80px;
    resize: none;
}

/* =========================
   BUTTON
========================= */
#inquirypp .btn {
    margin: 0 auto;
    padding: 13px 40px;
}

/* =========================
   CLOSE BUTTON
========================= */
#inquirypp .btnClose {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 28px;
    height: 28px;
    z-index: 2;
    border: 0;
    background: none;
    padding: 0;
}

/* =========================
  modal footer-img
========================= */
.footer-img {
    position: absolute;
    width: 100%;
    max-width: 182px;
    height: 213px;
    right: 42px;
    bottom: 40px;
}

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

@media (max-width:1200px) {
    .nav-menu {
        position: fixed;
        right: 0;
        width: 100%;
        height: 100dvh;
        top: 0;
        z-index: 10;
        transition: all 0.5s ease;
        background-color: #00000075;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .nav-menu .menu-items {
        max-width: 100%;
        width: 300px;
        height: 100%;
        background-color: var(--secondery);
        right: 0;
        position: absolute;
        padding: 20px;
        z-index: 11;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transform: translateX(300px);
        transition: all 0.5s ease;
    }

    .nav-menu.active .menu-items {
        transform: translateX(0);
    }

    .nav-menu .list-item-wrapper {
        backdrop-filter: blur(0);
        background: transparent;
        border-radius: 0;
        align-items: start;
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 25px;
    }

    .nav-toggle {
        display: block;
    }

    .menu-items .nav-toggle {
        display: flex;
        margin-bottom: 30px;
        justify-content: end;
    }

    html.active {
        overflow: hidden;
    }

    .cnt_row_first h2 {
        font-size: 84px;
    }

    .product_detail_section .product_content {
        padding-left: 15px;
    }

    .aboutUS .countWrap {
        margin-left: 25px;
    }

    .foundation-sec .bg-img-wrap {
        right: 20px;
    }

    @media (max-width:1200px) {
        .nav-contact .btn {
            font-size: 12px;
            line-height: 130%;
            padding: 10px 12px;
        }

    }

    @media (max-width:576px) {
        .nav-contact .btn svg {
            width: 18px;
            height: 18px;
        }

        .nav-logo img {
            width: 90%;
        }

        .nav-contact .btn {
            padding: 10px;
            font-size: 11px;
        }

        header {
            padding-block: 20px;
        }
    }
}

@media (max-width:1199px) {
    .cnt_row_first h2 {
        font-size: 68px;
    }

    .cnt_row_second h6 a {
        font-size: 18px;
    }

    .cnt_row_second h3 {
        margin: 0 0 8px 0;
        font-size: 24px;
    }

    .cnt_row_second h3:not(:first-child) {
        margin-top: 35px;
    }

    .social_wrap li a {
        height: 50px;
        width: 50px;
    }

    .cnt_row_first {
        margin-bottom: 60px;
    }

    .cnt_row_second h2 {
        font-size: 34px;
        margin-bottom: 6px;
    }

    .cnt_row_second p {
        margin-bottom: 35px;
    }

    #contact_form .form-field {
        margin-bottom: 38px;
    }

    .contact_us_sec .row>*:nth-child(2)>div {
        padding-left: 30px;
    }

    .product_detail_section .product_content {
        padding-left: 0;
    }

    .product_detail_section h3 {
        font-size: 45px;
    }

    .breadcrumb-item+.breadcrumb-item {
        padding-left: 10px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 10px 0 0;
    }

    .product_detail_section .btn-wrp {
        gap: 15px;
    }

    .product_detail_section .btn-wrp a.btn {
        height: 48px;
        font-size: 14px;
    }

    .product_detail_section {
        padding: 60px 0px 80px;
    }

    .similar_product_section .our-products-content {
        padding: 16px 16px;
        gap: 7px;
    }

    .similar_product_section .our-products-content a h3 {
        font-size: 20px;
    }

    .similar_product_section .our-products-content .our-products-icon {
        height: 45px;
        width: 45px;
        min-width: 45px;
    }

    .similar_product_section .main-title-sec h2 {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .similar_product_section {
        padding-bottom: 80px;
    }

    .cnt_row_first .wrap {
        padding: 24px !important;
    }

    .cnt_row_first .wrap i {
        margin-bottom: 30px;
    }

    .cnt_row_first .locationWrap h6 a {
        font-size: 16px;
    }

    .cnt_row_first .CallWrap h6 a {
        font-size: 22px;
    }

    .cnt_row_first .mailWrap h6 a {
        font-size: 18px;
    }

    .aboutUS .about-content-wrapper h3,
    .aboutUS .about-content-wrapper .counter-num {
        font-size: 110px;
    }
}

@media (max-width:992px) {
    .our-products-sec {
        padding-block: 80px;
    }

    .our-products-sec .main-title-sec h2 {
        font-size: 35px;
        margin-bottom: 30px;
    }


    .our-products-wrapper .col-lg-4:nth-child(3n + 3) {
        transform: translateY(0);
    }

    .our-products-wrapper .col-lg-4:nth-child(3n + 2) {
        transform: translateY(0);
    }

    .contact_us_sec .row>*:nth-child(2)>div {
        padding-left: 0;
        margin-left: 0;
    }

    .cnt_row_second h6 a {
        max-width: 550px;
    }

    .cnt_row_first h2 {
        font-size: 55px;
    }

    .cnt_row_first {
        margin-bottom: 50px;
    }

    .cnt_row_second h3 {
        margin: 0 0 5px 0;
        font-size: 22px;
    }

    .cnt_row_second h6 a {
        font-size: 17px;
    }

    .cnt_row_second h3:not(:first-child) {
        margin-top: 30px;
    }

    .cnt_row_second h2 {
        font-size: 32px;
        margin-bottom: 4px;
    }

    .contact_us_sec {
        padding: 0 0px 70px;
    }

    .inner-banner-sec {
        padding: 160px 0px 80px;
    }

    .inner-banner-sec .title h3 {
        font-size: 50px;
    }

    .certificate-sec .certificate-card img {
        max-width: 100%;
    }

    .certificate-sec .certification-detail {
        margin-bottom: 30px;
    }

    .certificate-sec .certification-detail p {
        font-size: 16px;
    }
}

@media (max-width:991px) {
    .cnt_row_first h2 {
        max-width: 500px;
        width: 100%;
    }

    .cnt_row_second h2 {
        margin-top: 50px;
    }

    .similar_product_section {
        padding-bottom: 70px;
    }

    .product_detail_section .btn-wrp {
        margin: 0 0px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product_detail_section .btn-wrp a.btn {
        height: 46px;
        width: 100%;
        justify-content: center;
    }

    .breadcrumb-item,
    .breadcrumb-item.active,
    .breadcrumb-item a {
        font-size: 13px;
    }

    .product_detail_section h3 {
        font-size: 38px;
    }

    .product_detail_section p {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .product_detail_section table tr>* {
        padding: 12.5px 12px;
        font-size: 14px;
    }

    .product_detail_section {
        padding: 50px 0px 70px;
    }

    .similar_product_section .main-title-sec h2 {
        font-size: 42px;
        margin-bottom: 22px;
    }

    .cnt_row_first .CallWrap {
        border-right: 0;
    }

    .cnt_row_first .mailWrap {
        border-top: 0;
    }

    .cnt_row_second img {
        max-width: 100%;
    }

    .aboutUS.counter-sec {
        padding: 50px 0;
    }

    .foundation-sec {
        padding: 50px 0 100px;
    }

    .foundation-sec .main-title-sec h2 {
        font-size: 40px;
    }

    .foundation-sec .bg-img-wrap {
        position: unset;
        margin-bottom: 30px;
    }

    .foundation-sec .bg-img-wrap img {
        clip-path: none;
    }

    .quality-sec {
        padding: 60px 0;
    }

    .our-product-sec {
        padding: 60px 0;
    }

    .certificate-sec {
        padding: 60px 0;
    }

    .footer-main-img {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content-wrapper .arrow-img-wrapper {
        gap: 15px;
    }

    .about-content-wrapper .arrow-img-wrapper .arrow-img {
        padding: 15px;
    }

    .quality_wrap .content-wrap {
        padding-left: 0;
    }

    .quality_wrap .content-wrap p {
        font-size: 15px;
    }

    .quality_wrap .content-wrap h4 {
        font-size: 20px;
    }

    .quality_wrap .content-wrap ul li {
        margin-bottom: 5px;
        padding: 0 0 0 26px;
        font-size: 15px;
    }

    #inquirypp .form-field {
        margin-bottom: 25px;
    }

    #inquirypp .form-box {
        max-width: 500px;
        padding: 30px;
        gap: 30px;
    }

    .footer-img {
        right: 20px;
        bottom: 20px;
        height: 182px;
    }
}

@media (max-width:767px) {
    .our-products-sec .main-title-sec h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .our-products-content a h3 {
        font-size: 18px;
    }

    .our-products-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .our-products-icon svg {
        width: 20px;
        height: 20px;
    }

    .main-title span {
        text-align: center;
    }

    .our-products-sec .main-title-sec h2 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .our-products-sec .main-title {
        margin-bottom: 20px;
    }

    .our-products-sec {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .contact_us_sec {
        padding: 00px 0px 50px;
    }

    .cnt_row_first h2 {
        font-size: 45px;
    }

    .cnt_row_first {
        margin-bottom: 40px;
    }

    .cnt_row_second h2 {
        font-size: 30px;
        margin-top: 40px;
    }

    #contact_form .form-field {
        margin-bottom: 32px;
    }

    .social_wrap {
        margin-top: 15px;
    }

    .inner-banner-sec {
        padding: 140px 0px 70px;
    }

    .inner-banner-sec .title h3 {
        font-size: 45px;
    }

    #contact_form a.btn {
        padding: 10px 22px;
        width: 130px;
    }

    .similar_product_section {
        padding-bottom: 50px;
    }

    .product_detail_section .product_image_col {
        position: unset;
        margin-bottom: 30px;
    }

    .product_detail_section {
        padding: 50px 0px 50px;
    }

    .product_detail_section h3 {
        font-size: 35px;
    }

    .similar_product_section .main-title-sec h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .product_detail_section .product_image {
        max-width: 100%;
    }

    .cnt_row_first .locationWrap {
        border-right: 0;
    }

    .aboutUS .countWrap {
        margin: 0 0 20px;
    }

    .aboutUS .about-content-wrapper h3,
    .aboutUS .about-content-wrapper .counter-num {
        font-size: 90px;
    }

    .aboutUS .about-content-wrapper .counterBox {
        position: unset;
    }

    .aboutUS.counter-sec {
        padding: 30px 0;
    }

    .aboutUS .content-Wrap p {
        font-size: 14px;
    }

    .aboutUS .content-Wrap p {
        margin-bottom: 10px;
    }

    /* .aboutUS.about-sec .main-title-sec h2 {
    max-width: 100%;
} */

    .foundation-sec {
        padding: 30px 0 60px;
    }

    .foundation-sec .main-title-sec h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .foundation_wrap .foundation-box {
        border: none;
        padding: 25px;
    }

    .foundation_wrap .foundation-box i {
        margin-bottom: 10px;
    }

    .foundation_wrap .foundation-box h3 {
        font-size: 20px;
    }

    .foundation_wrap .foundation-box p {
        font-size: 14px;
    }

    .quality-sec {
        padding: 50px 0;
    }

    .cnt_row_first .wrap i {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .cnt_row_first .locationWrap h6 {
        padding: 0;
    }

    .cnt_row_first h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .cnt_row_first .locationWrap h6 a {
        font-size: 15px;
    }

    .cnt_row_first .CallWrap h6 a {
        font-size: 18px;
    }

    .cnt_row_first .mailWrap h6 a {
        font-size: 16px;
    }

    .our-product-sec {
        padding: 50px 0;
    }

    .certificate-sec {
        padding: 50px 0;
    }

    .certificate-sec .certificate-card {
        padding: 8px 8px 12px;
    }

    .certificate-sec .certificate-card p {
        font-size: 15px;
    }

    .certificate-sec .certification-detail {
        margin-bottom: 20px;
    }

    .certificate-sec .certification-detail p {
        font-size: 15px;
    }

    .footer-main-img {
        max-width: 300px;
        margin: 0 auto;
        min-height: 300px;
    }

    .footer-main-img img {
        max-width: 180px;
    }

    .quality-sec .machine-wrap {
        position: unset;
    }

    .quality-sec .machine-slider {
        margin-bottom: 50px;
    }


    .quality-sec .machine-slider .slick-dots {
        bottom: -20px;
    }

    .quality-sec .machine-slider img {
        max-width: 100%;
    }

    .quality_wrap .content-wrap {
        padding-left: 0;
    }

    .quality_wrap .content-wrap p {
        margin-bottom: 10px;
    }

    .quality_wrap .content-wrap h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .quality_wrap .content-wrap ul li {
        padding-left: 22px;
        font-size: 14px;
    }

    .quality_wrap .content-wrap ul li::before {
        width: 16px;
        height: 16px;
        background-size: 16px auto;
    }

    #inquirypp .form-box {
        padding: 20px;
        gap: 30px;
    }

    #inquirypp h2 {
        font-size: 26px;
    }

    #inquirypp .form-control {
        line-height: 30px;
    }

    #inquirypp .form-field label {
        font-size: 13px;
    }

    #inquirypp .btnClose,
    #inquirypp .btnClose svg {
        width: 20px;
        height: 20px;
        top: 20px;
        right: 20px;
    }

    .footer-img {
        display: none;
    }

    .item-content.txt_left,
    .item-content.txt_center,
    .item-content.txt_right{
        margin:0 auto;
        text-align: center;
    }
    .item-content.txt_left p,
    .item-content.txt_center p,
    .item-content.txt_right p{
        margin-left: auto;
        margin-right: auto;
    }


}

@media (max-width:576px) {
    .main-title-sec h2 {
        font-size: 18px;
    }

    .cnt_row_first h2 {
        font-size: 36px;
    }

    .cnt_row_first p {
        font-size: 15px;
    }

    .cnt_row_first {
        margin-bottom: 30px;
    }

    .cnt_row_second h6 a {
        font-size: 16px;
    }

    .cnt_row_second h3:not(:first-child) {
        margin-top: 25px;
    }

    .social_wrap li a {
        height: 45px;
        width: 45px;
    }

    .social_wrap li a svg {
        width: 20px;
        height: 20px;
    }

    .cnt_row_second h2 {
        font-size: 22px;
        margin-top: 35px;
    }

    .cnt_row_second p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    html .form-control,
    html .form-select {
        padding: 0 0 15px 0;
        font-size: 15px;
    }

    #contact_form .form-field {
        margin-bottom: 25px;
    }

    html textarea.form-control {
        min-height: 60px;
        height: 60px;
    }

    .inner-banner-sec {
        padding: 120px 0px 60px;
    }

    .inner-banner-sec .title h3 {
        font-size: 40px;
    }

    .product_detail_section .product_image_col {
        margin-bottom: 20px;
    }

    .product_detail_section h3 {
        font-size: 28px;
    }

    .similar_product_section .main-title-sec h2 {
        font-size: 32px;
    }

    .aboutUS .about-content-wrapper h3,
    .aboutUS .about-content-wrapper .counter-num {
        font-size: 50px;
    }
}