*,
body,
html,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

html {
    height: 100%;
}

:root {
    --white: white;
    --textcolor: #50656C;
    --headingcolor: #083343;
    --bggray: #E2E2E2;
    --headingSize: 45;
    --textSize: 20px;
    --themecolor: #3E688C;
    --bordercolor: #A6A5A5;
    --fhweight: 900;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
}

p {
    color: var(--textcolor) !important;
}

header {
    background: rgba(62, 104, 140, 0.5);
    height: 140px;
    border-bottom: 1px solid var(--bordercolor);
    z-index: 1;
    position: absolute;
    top: 0px;
    width: 100%;
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav p {
    color: white !important;
}

.header .logo img {
    width: 51px !important;
}

.logo img {
    width: 90px;
    padding-top: 6px;
}

.header ul {
    padding-left: 0px;
    margin-left: 0px;
}

.header ul li {
    list-style: none !important;
}

.menue ul {
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}

.menue ul li {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
}

.menue ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: end;
}

.menue ul li a img {
    margin-right: 9px;
    width: 28px;
}

/* container */
.my-container {
    width: 90%;
    margin: auto;
}

.group-btn .btn1:nth-child(2) a {
    color: black
}

/* end container */
/*================= slider part start now================= */
/* .bannerPart .slider1 {
    padding-top: 10%;
} */

.bannerPart {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.bannerPart .slider_slides.responsive.slick-initialized.slick-slider.slick-dotted {
    margin-bottom: 0px;
}
.group-btn .btn1:nth-child(2) a:hover {
    background: #3E688C;
    transition: 0.5s;
    transform: scale(1.1);
    color: #fff;
}

.group-btn .btn1:nth-child(1) a:hover {
    background: white;
    transform: scale(1.1);
    transition: 0.5s;
    color: black !important;
}


.banner-content h2 {
    font-size: clamp(1.8rem, calc(1.7rem + 1vw), 4rem);
    font-weight: 900;
    margin-bottom: 1.6rem;
}

.slider_slides {
    overflow: hidden;
}

.banner-content p {
    font-size: 22px;
    line-height: 1.4;
    color: white !important;
}

.btn1 a {
    display: block;
    background: var(--themecolor);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
      width: 190px;
    height: 55px;
    transition: 0.5s;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-text.active {
    opacity: 1;
    transform: translateY(0);
}

.btn1 a img {
    width: 35px;
    margin-right: 11px;
}

.group-btn {
    margin-top: 2rem;
}

.group-btn {
    display: flex;
}

.group-btn .btn1:nth-child(2) {
    margin-left: 1rem;
}

.group-btn .btn1:nth-child(2) a {
    background: var(--white);
}

.banner-fixetext {
    margin-top: 5rem;
}

.slider_slides ul.slick-dots {
    bottom: 10px !important;
    /* background: red; */
}

.slider_slides li.slick-active {
    width: 61px;
    height: 10px;
    background: var(--themecolor);
    border-radius: 10px;
    transition: 1s;
}

.slider_slides li {
    background: gray;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    transition: 1s;
}


.slider_slides .slick-dots li button:before {
    font-size: 0px;
}

/* form style */
.myform input,
.myform select,
.myform textarea {
    width: 100%;
    border-radius: 10px;
    height: 40px;
    border: 1px solid #3e688c;
    margin-bottom: .5rem;
    padding: 0px 15px;
    font-size: 12px;
    color: rgb(148, 148, 148);
    font-weight: 300;
    outline: none;
    /* background: #fcfcfc; */
}

.myform input::placeholder,
textarea::placeholder {
    font-weight: 300;
    font-size: 13px;
    color: rgb(148, 148, 148);
}

textarea#message2 {
    height: 100px;
    padding-top: 12px;

}

.myform {
    background: #ffffff57;
    width: 550px;
    margin: 0px 0px 0px auto;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: 10%;
    top: 45%;
    transform: translate(16%, -42%);
    backdrop-filter: blur(8px);
}

.banner-content {
    margin-top: 15%;
}

.form-row {
    padding: 10px 30px 30px 30px;
}

.formbutton button#submitForm2 {
    width: 200px;
    height: 44px;
    border-radius: 50px;
    margin: auto;
    text-align: center;
    display: block;
    border: 0px;
    outline: none;
    background: var(--themecolor);
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
}
.formbutton button#submitForm2:hover{
    background-color: #6a8ba7;
}



.formbutton button#submitForm {
    width: 200px;
    height: 44px;
    border-radius: 50px;
    margin: auto;
    text-align: center;
    display: block;
    border: 0px;
    outline: none;
    background: var(--themecolor);
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
}
.formbutton button#submitForm:hover{
    background-color: #6a8ba7;
}



.checkbox input[type=checkbox] {
  accent-color: #3e688c !important;
}
.myform h4 {
    color: #ffffff;
    text-align: center;
    background: var(--themecolor);
    padding: 10px;
    font-size: 22px;
}

.checkbox input {
    width: 21px !important;
    height: 24px;
}

.checkbox label {
    color: #ffffff;
    font-size: 12px;
    margin-left: 10px;
}

.checkbox {
    display: flex;
    margin-bottom: 2rem;
}

.banner-fixetext p {
    font-weight: 800;
}

/* about part start now */
.heading2 {
    color: #3E688C;
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
}

.aboutpart p {
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

.yearsbox {
    position: absolute;
    background: #bed731;
    padding: 35px 10px;
    width: 201px;
    font-size: 20px;
    text-align: center;
    color: white;
    top: 40%;
    left: 58%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.aboutimg {
    position: relative;
}

.bgimg {
    /* background: url('../images/img/bgimg.webp'); */
        /* background: #ededed; */
            background:linear-gradient(45deg, #d1e1ef, #fbffe5);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* collection part */
/* .collection-slider{
list-style: none;
padding-left: 0px;
}
.collection-img{
        width: 121px;
    height: 121px;
    overflow: hidden;
    border-radius: 100%;
}
.collection-slider a{
        display: block;
    text-align: center;
    width: fit-content;
    text-decoration: none;
} */
.feature {
    background-color: white;
    padding: 20px 0px;
    border-radius: 15px;
    border: 1.5px solid black;
    width: 93%;
    margin: auto;
    margin-bottom: 2rem;
}

.feature .f-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #c7c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

section.featurespart .my-container {
    padding: 0;
    width: 63%;
}

.feature p {
    color: #000000 !important;
    margin-top: 1rem;
    font-size: 22px;
    font-weight: 400;
}

/* industries */

.industries p {
    font-size: 18px;
    line-height: 1.7;
}

/* contact ups par */
.contactuspart .myform {
    position: static;
    left: 0p;
    top: 0px;
    transform: translate(0);
}

.contactimg img {
    text-align: center;
    display: block;
    margin: 0px 0px 0px auto;
    width: 600px;
}

/* footer part */
.copy-rights {
    padding: 10px 0px;
    text-align: center;
    background: #3e688c40;
}

.copy-rights p {
    margin-bottom: 0px;
    color: black !important;
}

/* tabs */
.nav.nav-tabs {
    border: 0px;
}

ul#colorTab button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
    border-radius: 50px;
    padding: 7px 26px;
    font-size: 14px !important;
    margin-right: .5rem;
    color: white;
    font-weight: 500;
    transition: 0.5s;
}

.application .productimg {
    /* height: 350px; */
}



/* new  .application css*/
#application .productimg
 {
    border: 0px;
    background: no-repeat;
    border-radius: 20px;
    padding: 0px 40px 0px 0px;
}
#application .productimg img{
    border-radius: 10px;
        /* filter: invert(1); */
}
#application .tab-pane p {
    font-size: 18px;
    text-align: justify;
}
#application .productimg h4 {
    margin-top: 1rem;
}
#application .call-to a{
        margin: 3rem auto 0px 0px !important;
}
.mykichecn-tab p {
    font-size: 18px !important;
    padding-top: .5rem;
    padding-bottom: 0px !important;
    margin-bottom: 0px;
    color:white !important;
    font-weight: 500;
}
.mykichecn-tab {
      background: #3e688c;
    color: #000000;
}
ul#kitchen-tab li{
    /* padding: 25px 20px; */
    border-right: 1px solid #bac13d;
    transition: .7s;
    display: flex;
    justify-content: center;
}
.nav-item button.nav-link {
    /* background: red; */
    display: block;
    width: 100%;
    height: 100%;
    padding: 25px 20px;

}
ul#kitchen-tab li:hover {
    background: #dfdfdf;
    transition: .7s;
}
ul#kitchen-tab li:hover img{
filter: invert(0);
  transform:rotate(360deg);
}
#kitchen-tab .active-tab img,ul#kitchen-tab .active-tab p,ul#kitchen-tab .active-tab span{
    filter: invert(0) !important;
       color: #000000 !important;
}
ul#kitchen-tab li:hover p,ul#kitchen-tab li:hover span{
     color: #000000 !important;
}
ul#kitchen-tab li:nth-child(6) {
    border-right: 0px solid #bac13d;
}
.mykichecn-tab span {
    font-size: 14px;
    line-height: 1.4;
    display: block;
    margin-top: .3rem;
    
    color:white !important;

}
#application{
    position: relative;
    margin-top: -10px;
}
#application .bgimgwooden{
    opacity: .1;
    right: 0px !important;
    position: absolute;
    width: 100%;
    filter: opacity(0.5);
}
ul#kitchen-tab li.active-tab{
    background-color: white;
}
.mykichecn-tab img {
   width: 85px;
    /* filter: invert(1); */
    height: 85px;
    border-radius: 50%;
            object-fit: cover;
}
.aboutpart img {
    border-radius: 10px;
}
.mykichecn-tab ul{
    list-style: none;
    padding-left: 0px;
    padding-bottom: 0px !important;
    margin-bottom: 0px;
      display: grid;
  grid-template-rows: repeat(1, minmax(100px, auto));
  /* grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); */
  grid-template-columns: repeat(6, minmax(16.66%, 1fr));
  /* gap: 30px; */
}
#application  li.slick-active {
    background: #3e688c !important;
    width: 35px !important;
    transition:1s;
}
#application .slick-dots li {
    width: 10px;
    height: 10px;
    background: #cfd9e2;
    border-radius: 10px;
    line-height: 0px;
       transition:1s;
}
#application .slick-dots li button:before {
    font-family: slick;
    font-size: 0px;
}
/* end */
.productimg {
 background: #EEEEEE;
    width: 100%;
    /* height: 400px; */
    margin: 0px auto 0px 0px;
    text-align: center;
    
    border-radius: 10px;
        /* border: 1px solid #8b8484; */
}
.colorLaminates .productimg{
         background: #ffffff !important;
         border: 1px solid #8b8484;
}
.colorLaminates p{
    font-size:18px;
}
.colorLaminates .productimg img{
        width: 200px;
    height: 400px;
       margin: auto;
    transform: skew(0deg, 5deg);
    margin-top: 1rem;
    transition: 1s ease-in-out;
    border:1px solid #00000059;
}
/* div#colorTabContent {
    width: 1300px;
} */



#colorTabContent ul{ padding-left:16px;  color: var(--textcolor) !important; font-size: 18px;}
 .colorLaminates{
    position: relative;
    overflow: hidden;
        z-index: 1;
 }
.bgimgwooden {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: .6;
        z-index: -1;
}
.productimg img {
     width: 100%;
 
}
.colorLaminates .productimg img:hover{
        transition: .5s ease-in-out;
            transform: skew(0deg, 0deg);
}
/* application */
.application .nav.nav-tabs button#blue-tab {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}

.application .nav-tabs li:nth-child(1) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}

.application .nav-tabs li:nth-child(2) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}

.application .nav-tabs li:nth-child(3) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}
.application .nav-tabs li:nth-child(4) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}
.application .nav-tabs li:nth-child(5) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}
ul#colorTab button:hover {
    transform: scale(1.1) !important;
    transition: 0.5s;
}
.application .nav-tabs li:nth-child(6) button {
    background: #dfdfdf !important;
    color: black !important;
    border: 1px solid #3e688c !important;
}
.call-to a {
    width: 200px;
    padding: 10px 10px;
    background: #3e688c;
    display: block;
    margin: 2rem auto 0px auto !important;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    border: 1px solid #bebebe;
    transition: 0.5s;
}

.call-to a:hover {
    background: white;
    transition: 0.5s;
    transform: scale(1.1);
    border: 1px solid #bed731 !important;
    color: black !important;
}
.banner-content {
    margin-top: 0%;
    position: absolute;
    top: 30%;
    width: 820px;
    color: white;
}
img.mybanner1 {
    filter: brightness(0.8);
}
.multiple-items h4 {
    font-size: 16px;
    margin-top: 1rem;
    color: #242323;
    font-weight: 500;
}
.multiple-items .slick-dots li button:before {
    font-size: 20px;
}
.multiple-items .slick-prev{
  background: #3e688c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 4;
}

.multiple-items .slick-next {
    right: -25px;
    background: #3e688c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* font-size: 20px; */
}
/* new style 1-8-2025 */



.whychoose .feature {
    border: 0px;
    border-top: 5px solid #3e688c;
    border-radius: 0px;
    /* border-radius: 10px; */
}

.whychoose h4 {
    font-size: 26px;
    font-weight: 400;
    color: #3e688c;
    position: relative;
    padding-left: 40px;
}

.whychoose h4::after {
    position: absolute;
    left: 0px;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d8e3eb;
    content: "";
    background: url('../images/img/check.png');
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    background-size: 100%;
    
}

.whychoose .feature p {
    font-size: 16px;
    padding-left: 40px;
    text-align: justify;
}
.whychoose .feature{
width: 100%;
}
.contactuspart .myform{
    width: 100%;
}
.contactimg2,.contactimg2 img{
    height: 100%;
    border-radius: 5px;
}
.footerTxt {
    position: absolute;
    bottom: 50px;
    right:40px;
    font-size:50px;
    width:450px;
    color:white;
    line-height:1.1;
    font-weight:900;
    border-radius: 5px;
}

.contactimg2 {
    position: relative;
}
.industries h3 span{
    padding-right: 50px;
    display: inline-block;
    color: #3e688c;
}
.greenline{
    position: relative;
    padding-top: 1.5rem;
}
.greenline::after {
    position: absolute;
    content: '';
    top: 4px;
    left: 0px;
    width: 350px;
    background: #3e688c;
    color: #3e688c;
    height: 8px;
}
.industriesimg {
    height: 700px;
    overflow: hidden;
}
.industriesimg img{
    transition: 3s;
}
.industriesimg img:hover{
    margin-top: -330px;
    transition: 3s;
    transform: scale(1.1);
}
.contactuspart .checkbox label {
        color: black;
}
/*========================= media query start now======================== */
@media(min-width:1700px) {

    nav,
    .my-container {
        width: 1600px;
        margin: auto;
    }
   /* .application .productimg img {
height: 550px;
}*/
}
.whychoose .feature {
    width: 95%;
}
@media(min-width:1100px) and (max-width:1600px) {
    .industriesimg {
    height: 600px;
    overflow: hidden;
}
#application .tab-pane p ,.aboutpart p,.industries p{
    font-size: 16px;
}
.whychoose .feature p{
    font-size: 15px;
}
    /*.application .productimg img {
height: 500px;
}*/
    .heading2 {
        font-size: 40px;
    }

    .aboutimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.aboutimg {
    height: 100%;
}
    .myform {
        
        width: 500px;
    }

    .contactimg img {
        width: 80% !important;
        margin: auto !important;
    }

    /* div#colorTabContent {
        width: 90%;
    } */

    .yearsbox {
        width: 190px;
        padding: 25px 10px;
        left: 62%;
    }

    .btn1 a {
        font-size: 16px;
    width: 181px;
    height: 55px;
    }

    section.featurespart .my-container {
        padding: 0;
        width: 80%;
    }

    .banner-content p {
        padding-right: 15px;
    }

    .myform input,
    .myform select,
    .myform textarea {
        height: 38px;
    }

    .form-row {
        padding: 15px 23px;
    }

    textarea#message2 {
        height: 90px;
    }

    .myform input,
    .myform select,
    .myform textarea {
        font-size: 14px;
    }

    .myform h4 {
        font-size: 22px;
        font-weight: 600;
    }

    .myform input::placeholder,
    textarea::placeholder {
        font-size: 14px;
    }

    .checkbox label {
        font-size: 14px;
    }

    .checkbox input {
        height: 23px !important;
    }

    .myform {
        top: 49%;
    }

    /* .slider1 {
        padding-bottom: 8rem;
    } */

    .menue ul li {
        font-size: 18px;
    }

    .menue ul li a img {
        width: 22px;
    }

    .logo img {
        width: 80px;
        padding-top: 3px;
    }

    header {
        height: 115px;
        top: 0px;
    }

    .menue ul li p,
    .menue ul {
        margin-bottom: 0px;
    }

    body {
        transform: scale(0.9);
        transform-origin: top left;
        width: 112%;
        overflow-x: hidden;
    }

    .banner-content h2 {
        font-size: clamp(1.8rem, calc(1.3rem + 1.5vw), 3rem) !important;
    }

}

@media(min-width:900px) and (max-width:1200px) {
    div#colorTabContent {
        width: 100%;
    }

    .contactimg img {
        width: 100%;
    }
    img.mybanner1{
        height: 750px;
    }

    .myform {

        width: 400px;
    }

    .myform input,
    .myform select,
    .myform textarea {
        height: 40px;
        font-size: 12px !important;
    }

    .myform input::placeholder,
    textarea::placeholder {
        font-size: 12px;
    }

    .myform h4 {
        font-size: 20px;
    }

    .form-row {
        padding: 10px 10px;
    }

    .checkbox input {
        width: 9px !important;
        height: 24px !important;
    }

    .checkbox label {
        font-size: 12px !important;
    }

    .banner-content h2 {
        font-size: 35px !important;
    }

    /* .banner-content {
        margin-top: 35% !important;
    } */

    .aboutimg img {
        width: 100%;
    }
    .banner-content {
  width: 520px;
    }
}

@media(max-width:1000px) {
.mykichecn-tab ul{
  grid-template-columns: repeat(3, minmax( 33.33%, 1fr));
}
    .pyly-slider1 {

        background: none !important;
    }
    .plyslider {
    background: #474747 !important;

}
ul#kitchen-tab li:nth-child(3) {
    border-right: 0px solid #bac13d;
}
ul#kitchen-tab li {
    padding: 15px 10px;
}
.application .productimg img {
    height: auto;
}
#application .call-to a {
    margin: 1rem auto 0px 0px !important;
}
#application .productimg {
    padding: 0px 00px;
    width: 100%;
    margin-top: 0rem;
}
.mykichecn-tab .my-container{
    width: 100%;
}
.mykichecn-tab span {
    font-size: 10px;
}
.mykichecn-tab p {
    font-size: 14px !important;
}
.mykichecn-tab img {
    width: 45px;
    height: 45px;
}

ul#kitchen-tab li {
    border-bottom: 1px solid #bac13d;
}
    .myform {
        position: static !important;
        left: 0px;
        transform: translate(0px);
        width: 95%;

        margin: auto;
    }

    .bannerPart {
        background: #242212;
        padding-bottom: 2rem;

    }

    .slider1 {
        padding-bottom: 0rem !important;
    }

    .banner-content p {
        font-size: 16px;
    }

    /* .group-btn {
        flex-direction: column;
    } */

    .banner-fixetext {
        margin-top: 1rem;
    }

    .group-btn .btn1:nth-child(2) {
        margin-left: 10px;
        /* margin-top: 1rem; */
    }

    /* nav {
        flex-direction: column;
    } */

    header {
        background: transparent;
        height: 90px;
    }

    .menue ul li {
        font-size: 13px;
    }
.slider1{
    position: relative;
}
    .banner-content {
       position: absolute;
    top: 46px !important;
    width: 95%;
    left: 15px;
    }

    .menue ul li a {
        justify-content: center;
    }

    .menue ul li a img {
        width: 19px;
    }

    .menue {
        margin-top: 12px;
    }

    .logo img {
        width: 60px;
        padding-top: 5px;
    }

    .banner-content h2 {
        font-size: 17px;
        width: 90%;
     
    }

    .form-row {
        padding: 17px 7px;
    }

    .myform input,
    .myform select,
    .myform textarea {
        height: 35px;
    }

    .myform input,
    .myform select,
    .myform textarea {
        font-size: 13px;
    }

    .myform input::placeholder,
    textarea::placeholder {

        font-size: 13px !important;
    }

    .checkbox label {
        font-size: 12px;
    }

    .myform h4 {
        font-size: 20px;
    }

    .aboutimg img,
    .industriesimg img,
    .contactimg img {
        width: 100% !important;
    }

    .heading2 {
        font-size: 25px;
        margin-top: 1rem;
        margin-bottom: .7rem !important;
    }

    main p {
        font-size: 14px !important;
    }

    .yearsbox {
        padding: 10px 10px;
        width: 163px;
        font-size: 16px;
        top: 80%;
        left: 46%;
    }

    .aboutpart h2 {
        margin-top: 3.5rem;
    }

    .feature {
        width: 100%;
        margin-bottom: 1rem;
    }

    section.featurespart .my-container {
        width: 95%;
        margin: auto;
    }

    .feature .f-icon {
        width: 50px;
        height: 50px;
    }

    .feature .f-icon img {
        width: 35px;
    }

    .contactimg img {
        margin-top: 2rem;
    }

    .copy-rights p {
        font-size: 12px;
        padding: 0px 20px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    div#colorTabContent {
        width: 100%;
    }

    .productimg img {
        width: 100%;
    }

    .productimg {
        padding: 10px;
        margin-bottom: 1rem;
    }

    ul#colorTab button {
        padding: 5px 14px;
        font-size: 12px !important;
        margin-bottom: .5rem;
    }

    .colorLaminates .mt-5,
    .application .mt-5 {
        margin-top: 10px !important;
    }

    .contactimg img {
        width: 100%;
    }

    body,
    html {
        overflow-x: hidden;
    }

    .btn1 a {
              font-size: 14px;
        width: 141px;
        height: 45px;
    }

    .application .productimg img {
        object-fit: cover;
    }
    .bannerPart {
        margin-top: 5.5rem;
    }
        header {
        background: #3e688c;
        }
        img.mybanner1 {
    height: 400px;
        }
        .multiple-items .slick-prev,.multiple-items .slick-next{
    display: none !important;
}
.multiple-items h4 {
    font-size: 14px;
height: 38px;
}
.multiple-items p{
    font-size: 12px !important;
}
.application .col-6.col-md-3{
padding: 0px !important;
}
.application #colorTabContent{
    padding: 0px 0px !important; 
}
.group-btn.animate-text {
    flex-direction: column;
}
 .group-btn .btn1:nth-child(2) {
        margin-left: 0px;
        margin-top: .5rem;
    }
    .colorLaminates .productimg img {
    width: 100%;
    height: 250px;
    }
    .whychoose .feature p {
    font-size: 14px;
    
            padding: 0px 0px 0px 36px;
            margin: .4rem 0px;

    }
    .whychoose h4 {
    font-size: 20px;
        padding-left: 37px;
    }
    .whychoose h4::after {
    width: 30px;
    height: 30px;
    font-size: 13px;
    }
    .whychoose .ps-4, .whychoose .pe-4{
padding: 0px 10px!important;
    }
    .greenline::after {
  
    width: 224px;
    }
        .aboutpart h2 {
        margin-top: .5rem;
    }
.industries h3 span{
    padding-right: 16px;
}
.footerTxt {
    bottom: 12px;
    font-size: 30px;
    width: 250px;
 
}
.contactimg2 img {
    height: 200px;
    object-fit: cover;
    margin-top: 1.5rem;
}
.industriesimg {
    height: 250px;
}
.industriesimg img:hover {
    margin-top: -00px;
    transform: scale(1.1);
}
}

@media(max-width:500px){
    
     img.mybanner1 {
    height: 250px;
        }
        .industries .mt-5{
            margin-top:15px !important;
        }
        .whychoose .feature {
    width: 100%;
}
.nav-item button.nav-link{
            padding: 0px 0px;
}
.aboutpart .pe-5 {
    padding-right: 10px !important;
}
.industries h3 {
    line-height: 1.5;
    margin-bottom: 0px;
    padding-bottom: 1rem !important;
}
        }
        
