@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

/* top Section */

.top-section {
    padding: 15px 0;
    background-color: #f6f6f6;
}

.req-btn {
    text-align: right;
}
.req-btn svg{
    width: 21px;
    fill: #AD000F;
}

.req-btn>ul {
    display: flex;
    justify-content: end;
}

.req-btn>ul>li {
    padding: 8px 18px;
}

.req-btn>ul>li>a {
    color: #AD000F;
    font-size: 16px;
    font-weight: 500;
}

.req-btn>ul>li:first-child {
    border-right: 1px solid #c7c7c7;
}
.req-btn>ul>li:last-child{
    padding-right: 0;
}

/* .req-btn>ul>li.down a {
    font-size: 17px;
    padding: 9px 20px 10px 20px;
    background-color: #AD000F;
    color: #fff;
    border: 2px solid #AD000F;
    text-transform: capitalize;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.4s ease-in-out;
} */

/* .req-btn>ul>li.down a:hover {
    background-color: transparent;
    color: #AD000F;
} */

.logo {
    width: 100%;
    margin: 0 auto;
}

.menu-header {
    background-color: #AD000F;
}

/* New Drop-down Menu */

nav {
    padding: 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    position: absolute;
    right: 0px;
    top: 35px;
    font-size: 24px;
    color: #912524;
    cursor: pointer;
    display: none;
    z-index: 1100;
}

.menu-toggle.active::before {
    content: "\2715";
}

.menu-toggle::before {
    content: "\2630";
}

ul.menus {
    list-style: none;
    display: flex;
    align-items: center;
}

ul.menus li {
    position: relative;
}

ul.menus li a {
    color: #fff;
    padding: 15px 16px;
    display: block;
    font-size: 17px;
    transition: 0.4s all ease;
    position: relative;
    font-weight: 600;
}

ul.menus li a:hover {
    transition: 0.4s all ease;
    color: #f1f1f1;
}

ul.menus ul {
    display: none;
    position: absolute;
    background: #444;
    top: 100%;
    left: 0;
    min-width: 325px;
    z-index: 999999;
}

ul.menus ul ul {
    left: 100%;
    top: 0;
}

ul.menus li:hover>ul {
    display: block;
}

.submenu-toggle {
    display: none;
    position: absolute;
    right: 16px;
    top: 10px;
    cursor: pointer;
    color: #000;
    font-size: 14px;
}

ul.menus ul li a:hover {
    background-color: #2D3748;
    color: #fff !important;
}

ul.menus ul ul li a {
    width: 325px;
}

.in-pro {
    background-color: #18202b !important;
    transition: 0.4s ease all;
}

.in-pro li a {
    color: #fff !important;
    padding: 8px 16px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.in-pro li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.in-pro li:last-child {
    border-bottom: none;
}

.in-pro li a:hover {
    color: #fff !important;
}

.in-pro li a i {
    font-size: 10px;
    color: #fff;
}

.in-pro li a:hover i {
    color: #fff !important;
}

ul.menus li a i {
    font-size: 16px;
}

.menu-chev{
    width: 21px;
    fill: #fff;
    position: relative;
    top: -1px;
}
.menu-chev path{
    stroke: #fff; 
    stroke-width: 12;
}
.rote{
    width: 20px;
    fill: #fff;
    position: relative;
}
.rote path{
    stroke: #fff; 
    stroke-width: 12;
}

/* New Drop-down Menu End */

/* Banner */

#banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.banner-slides {
    position: relative;
    overflow: hidden;
}

.banner-slides .banner-slide-img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-slide-active .banner-slide-img {
    animation: zoom-in-out 12s linear infinite alternate;
}

@keyframes zoom-in-out {

    0% {
        transform: scale(1);
        transform-origin: center;
    }

    100% {
        transform: scale(1.1);
        transform-origin: center;
    }
}

/* About Us */

.about-us {
    padding: 70px 0;
    position: relative;
}

.about-us::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-image: url(../images/about-bg.webp);
    background-repeat: no-repeat;
    width: 62%;
    height: 50%;
    background-size: contain;
    background-position: left top;
    z-index: -1;
    top: -22px;
}

.about-1 {
    font-size: 40px;
    line-height: 1.1em;
    text-transform: uppercase;
    padding: 0 0 10px;
}

.orange-dot {
    font-size: 1.5em;
    position: relative;
    font-weight: 700;
    color: #AD000F;
    display: inline-block;
    top: -20px;
}

.about-2 {
    font-size: 22px;
    padding-bottom: 20px;
    font-weight: 600;
}

.about p {
    padding-bottom: 10px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
}

.about-btn {
    position: relative;
    display: block;
    margin-top: 20px;
}

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    background-color: #AD000F;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 7px 8px 7px 20px;
    border-radius: 32px;
    transition: 0.5s all linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn svg {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 15px;
    text-align: center;
    line-height: 38px;
    margin-left: 8px;
    transition: 0.3s all linear;
    font-size: 14px;
    padding: 10px;
}

.thm-btn:hover svg {
    background-color: #000;
    fill: #fff;
}

.about-img {
    text-align: right;
}

/* Products */

.product-sec {
    padding: 50px 0;
    background-image: url(../images/pro-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.product-sec::before {
    position: absolute;
    content: "";
    background-color: #AD000F;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.pro-design {
    border: 5px solid #fff;
    overflow: hidden;
    margin: 0 0px;
    position: relative;
}
.in-pro-design{
    margin: 0;
}

.pro-design h3 {
    
    font-weight: 600;
    text-align: center;
    
    font-size: 20px;
    position: relative;
}
.pro-design h3 a{
    color: #fff;
    background-color: #241d1f;
    padding: 10px 0 8px 0;
    display: block;
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-align: center;
    background-color: #241d1f;
    color: #fff;
    font-weight: 500;
    padding: 15px 18px 14px;
    border-radius: 4px;
    margin-top: 50px;
    font-size: 17px;
    border-radius: 32px;
}

.th-btn:before {
    left: 0;
    border-radius: 0 20px 20px 0;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: #000;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.th-btn:after {
    right: 0;
    border-radius: 20px 0 0 20px;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: #000;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
    width: 50%;
    border-radius: 0;
}

.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
    width: 50%;
    border-radius: 0;
}

.th-btn:hover,
.th-btn.active {
    color: #fff;
}
.th-btn svg{
    width: 25px;
    fill: #fff;
    padding-left: 5px;
    stroke-width: 5;
    stroke: #fff;
    position: relative;
    top: -1px;
}

.product-sec h2 {
    font-size: 45px;
    line-height: 1.1em;
    text-transform: uppercase;
    padding: 0 0 10px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    position: relative;
}

.green-dot {
    font-size: 1.5em;
    position: relative;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    top: -20px;
}

.product-sec .swiper-nav {
    position: relative;
    top: -50px;
    display: flex;
    gap: 10px;
    z-index: 10;
    right: 0;
    width: 100%;
}
.product-sec .swiper-nav .swiper-nav-prev{
    position: absolute;
    right: 4%;
    background-image: url(../images/left-arrow.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}
.product-sec .swiper-nav .swiper-nav-next{
    position: absolute;
    right: 0;
    background-image: url(../images/right-arrow.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
}

.product-sec .swiper-nav-btn {
    width: 40px;
    height: 40px;
    background-color: #241d1f;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.read {
    text-align: center;
}

/* Product hover */

.box {
    background: #241d1f;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.box:before {
    content: '';
    background: #fff;
    width: 200px;
    opacity: 0.6;
    transform: skew(-20deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    box-shadow: 0 0 100px #fff;
    transition: all 0.6s ease;
}

.box:hover:before {
    opacity: 1;
    left: 200%;
}

.box img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
}

.box:hover img {
    opacity: 0.4;
    filter: grayscale(100%);
}

/* Why Choose us Part Css */

.counter-time {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    position: relative;
    background-color: #FCF9F5;
}

.counter-time h2 {
    color: #241d1f;
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 65px;
    position: relative;
}

.counter-time h2 span {
    color: #18ba60;

}

.counter-time h2::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #241d1f;
    top: 145%;
}

.counter-time h2::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #241d1f;
    box-shadow: 0 0 0 5px #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 58px;
}

.first-why {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.icon-box {
    padding: 30px 32px 30px;
    position: relative;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 25px rgba(79, 139, 173, .15)
}

.icon-box:before,
.icon-box:after {
    content: '';
    position: absolute;
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    border: 2px solid #AD000F;
    pointer-events: none;
    transition: .33s all ease;
}

.icon-box:before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.icon-box:after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.icon-box .box-top,
.icon-box .box-body {
    position: relative;
    will-change: transform;
    transition: .33s all ease;
    filter: blur(0);
}

.icon-box .box-top {
    top: 0;
}

.icon-box .box-icon {
    display: block;
    margin-bottom: 15px;
}

.icon-box h5 {
    line-height: 1.11111;
    font-size: 18px;
    padding-bottom: 5px;
    font-family: open sans, Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: #050521;
    margin: 0 0 10px;
    position: relative;
}

.text-gray-05 {
    color: rgba(0, 0, 0, .5);
    margin: 0;
}

.icon-box.hover:before,
.icon-box.hover:after,
.icon-box:hover:before,
.icon-box:hover:after {
    width: 100%;
    height: 100%;
    border-color: #AD000F;
}

.btn-load {
    color: #fff;
    font-size: 17px;
    padding: 14px 35px;
    line-height: 1.5;
    background-color: #4854ed;
    border-color: #4854ed;
}

.box-icon {
    display: block;
    margin-bottom: 15px;
    transition: 0.5s all ease;
}

/* .box-icon img{
    width: 100%;
} */
.icon-box:hover .box-icon {
    transform: translateY(-10px);
}

.twelveplus {
    font-size: 18px;
    line-height: 1.11111;
    padding-bottom: 5px;
    font-weight: 700;
    color: #000;
}

.box-top p {
    color: #3e3e3e;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}

/* Testimonials */

.testi {
    padding: 60px 0;
    background-image: url(../images/pro-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.testi::before {
    position: absolute;
    content: "";
    background-color: #241d1f;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.testi h2 {
    line-height: 1.1em;
    font-size: 32px;
    position: relative;
    color: #fff;
    text-align: center;
}

.testi h3 {
    font-size: 42px;
    padding-top: 10px;
    position: relative;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding-bottom: 40px;
}

.testi-box {
    position: relative;
    background-color: #f5f8f6;
    border-radius: 21px;
    padding: 10px;
    margin: 10px;
}

.testi-box .inn-box {
    border-radius: 20px;
    border: 1px solid #AD000F;
    background-color: #fff;
    padding: 20px 25px 20px 20px;
    text-align: center;
}

.ihad {
    padding-bottom: 28px;
}

.iwas {
    padding-bottom: 56px;
}

.testi-box .inn-box .rat {
    display: inline-block;
    line-height: 57px;
    text-align: center;
    margin-bottom: 15px;
    z-index: 1;
    padding: 5px;
    background-color: #efefef;
    border-radius: 50%;
    width: 65px;
    height: 65px;
}

.testi-box .inn-box .rat img {
    text-align: center;
    width: 30px;
}

.testi-box h5 {
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #242424;
    font-weight: 600;
    margin-bottom: 3px;
    z-index: 1;
}

.testi-box .know {
    z-index: 1;
}

.testi-box .inn-box p {
    font-size: 16px;
    line-height: 24px;
    color: #363636;
    padding-top: 10px;
}

.malik {
    padding-top: 10px;
}

.malik img {
    width: 120px;
    border-radius: 50%;
    border: none;
    margin: auto;
}

.star {
    padding-top: 15px;
}

.star i {
    color: #AD000F;
}


.deep h4 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    padding-top: 15px;
}
.deep p{
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.pro-name{
    font-size: 18px;
    font-weight:400;
}
.th-btns{
    background-color: #AD000F;
}
.th-btns svg{
    width: 25px;
    fill: #fff;
    padding-left: 5px;
    stroke-width: 5;
    stroke: #fff;
}

/* Videos */

.youtub{
    padding: 60px 0;
}
.youtub h2{
    font-size: 42px;
    position: relative;
    color: #241d1f;
    text-align: center;
    font-weight: 700;
    padding-bottom: 40px;
}

.youtubes {
    position: relative;
    width: 100%;
    border: 3px solid #AD000F;
    cursor: pointer;
  }
.you-bt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.you-bt img{
    border: none !important;
}

/* Enquire Now Section */

.new-enq{
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 66px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #241d1f;
}
.footer-social-address-content .get-connec {
    font-size: 31px;
    color: #fff;
    font-weight: 700;
    line-height: 44px;
}
.why-contacts {
    text-align: right;
}
.why-contacts a {
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 22px;
    display: inline-block;
    font-size: 17px;
    transition: 0.3s ease;
    font-weight: 500;
}
.why-contacts a svg{
    width: 20px;
    fill: #fff;
    transition: 0.3s ease;
}
.why-contacts a:hover{
    background-color: #fff;
    color: #241d1f;
}
.why-contacts a:hover svg{
    fill: #241d1f;
}


/* Footer Css */

footer {
    padding: 80px 0 50px 0;
    background-image: url(../images/foot-bg.webp);
    background-color: #15465F;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

footer::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #AD000F;
    opacity: 0.85;
}

.foot-logo img {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    position: relative;
}

.first-foot p {
    color: #fff;
    padding-top: 20px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
    position: relative;

}

.social {
    display: flex;
    margin-top: 18px;
    position: relative;
}

.facebook {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s all ease;
    cursor: pointer;
}

.facebook a {
    color: #AD000F;
    line-height: 0;
    transition: 0.4s all ease;
}

.facebook:hover {
    background-color: #000;
    transform: translateY(-5px);
}
.facebook a svg{
    fill: #AD000F;
    width: 20px;
    transition: 0.4s all ease;
}

.facebook:hover a svg {
    fill: #fff;
}

.second-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
}

/* .second-foot li {
    padding-left: 25px;
} */

.second-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
    font-weight: 500;
    padding-left: 23px;
}

.second-foot li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z" fill="white" stroke="white" stroke-width="15"/></svg>') no-repeat center center;
    background-size: contain;
    color: #fff;
}


.second-foot li a:hover {
    color: #000;
    padding-left: 28px;
}

.second-foot {
    padding-left: 20px;
}

.third-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-left: 45px;
    padding-bottom: 20px;
    position: relative;
}

.last-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-left: 5px;
    padding-bottom: 27px;
    position: relative;
}

.third-foot li {
    padding-left: 45px;
    position: relative;
}

.third-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
    font-weight: 500;
    padding-left: 23px;
}

.third-foot li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z" fill="white" stroke="white" stroke-width="15"/></svg>') no-repeat center center;
    background-size: contain;
    color: #fff;
}

.third-foot li a:hover {
    color: #000;
    padding-left: 28px;
}

.address {
    display: flex;
    padding-bottom: 10px;
}

.loca {
    width: 26px;
}


.loca svg{
    fill: #fff;
    position: relative;
    width: 22px;
    top: 1px;
}

.add {
    width: calc(100% - 26px);
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-size: 17px;
    position: relative;
    font-weight: 500;
    padding-left: 5px;
}

.add a {
    color: #fff;
    transition: 0.3s all ease;
}

.add a:hover {
    color: #000;
}

footer .container {
    max-width: 1265px;
}

.copy {
    background-color: #F0F1F3;
    padding-top: 15px;
    padding-bottom: 15px;
}

.copy .container {
    max-width: 1220px;
}

.first-copy {
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 600;
}

.power {
    text-align: right;
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 600;
}

.power a {
    color: #0A0A0A;
    transition: 0.3s all ease;
}

.power a:hover {
    color: #AD000F;
}

/* Fixed Whatsapp Button */

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9;
}
.btn-whatsapp-pulse svg{
    width: 35px;
    height: 35px;
    fill: #fff;
}
.btn-whatsapp-pulse svg path{
    stroke: #fff; 
    stroke-width: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* About Us Page */

.breadcrum {
    background-image: url(../images/breadcrumb.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding: 100px 0;
    position: relative;
}
.breadcrum::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.65;
}
.bread-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}
.bread-cont h1 {
    position: relative;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    padding: 0 10px;
    text-align: center;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 10px;
}
.bread-last a {
    color: #fff;
    transition: 0.3s ease;
    font-weight: 500;
}
.bread-last svg{
    fill: #fff;
    width: 22px;
    position: relative;
    top: -2px;
}
.bread-last svg path{
    stroke-width: 10;
    stroke: #fff;
}
.wel{
    font-weight: 600;
    font-size: 32px;
    color: #AD000F;
    padding-bottom: 10px;
}

/* Enquiry Form Css */

.page-part {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-control-feedback {
    display: none;
}

.has-feedback label~.form-control-feedback {
    top: 0 !important;
}

.error {
    text-align: left !important;
    display: table !important;
}

.thnak4 {
    margin-top: 50px;
}

.has-feedback .form-control {
    font-size: 16px !important;

}

.form-group {
    margin: 15px 0 !important;
}

.form-group input {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #AD000F;
}

.form-group textarea {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #AD000F;
}

.form-group select {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #AD000F;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #31aad6;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
}

.Submit-box {
    background-color: #AD000F;
    color: #fff;
    padding: 9px 14px;
    border: 1px solid #AD000F;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
}

.Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #AD000F;
    border-bottom: 2px solid #AD000F;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.get {
    color: #AD000F;
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.fill {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px !important;
}

.Submit-box {
    font-weight: 600;
}

::placeholder{
    color: #333333 !important;
    font-weight: 500;
    font-size: 15px;
}

/* Enquiry Form Css End*/

/* Contact Us Page Css */

.contact-bg{
    background-image: url(../images/contact-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .contact-bg h3{
    color: #dc7d1e;
    font-size: 34px;
    line-height: 34px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
  }
  .contact-bg h3::before{
    position: absolute;
    content: "";
    top: 70%;
    width: 40px;
    left: 41%;
    height: 2px;
    background-color: #dc7d1e;
  }
  .contact-bg h3::after{
    position: absolute;
    content: "";
    top: 70%;
    width: 40px;
    right: 41%;
    height: 2px;
    background-color: #dc7d1e;
  }
  .contact-bg h2{
    line-height: 34px;
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
    font-weight: 700;
    color: #AD000F;
  }
  .contact-info-section{
    background-color: #111111;
    border: 8px solid #fff;
    padding: 30px;
    color: #fff;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
    background-image: url(../images/bg-map2.webp);
  }
  .number-info{
    margin-bottom: 26px;
  }
  .contact-info-section .number-info h4{
    color: #FF707A;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.1;
  }
  .contact-info-section .number-info p{
    margin-bottom: 5px;
    color: #fff;
    font-size: 18px;
  }
  .contact-info-section .number-info a{
    color: #fff;
    transition: 0.3s ease;
    font-size: 18px;
  }
  .contact-info-section .number-info:last-child{
    margin-bottom: 0;
  }
  .contact-info-section .number-info address{
    font-size: 17px;
    line-height: 28px;
  }
  .contact-info-sections{
    border: 8px solid #fff;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
  }
  .contact-info-sections iframe{
    width: 100%;
    height: -webkit-fill-available;
  }

  /* Close Oven Rock n Roll Machine Page Css */

  .close-oven{
    padding: 50px 0;
  }
  .centri {
    transition: 0.5s ease;
    /* border-radius: 10px; */
    box-shadow: rgba(42, 42, 161, 0.2) 0px 7px 29px 0px;
    text-align: center;
    position: relative;
    border: 2px solid #AD000F;
    background-color: #fff;
  }
  .in-pro-det h2{
    font-size: 32px;
    font-weight: 600;
    color: #AD000F;
    padding-bottom: 15px;
  }
  .in-pro-det p{
    color: #000;
    line-height: 28px;
    font-size: 17px;
    padding-bottom: 5px;
  }
  .in-pro-det p:last-child{
    padding-bottom: 0;
  }
  .in-pro-det{
    padding-left: 10px;
  }
  .material h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    background-color: #AD000F;
    padding: 5px 0 8px 15px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    margin-bottom: 5px;
    width: 450px;
  }
  .big-material h2{
    width: 600px;
  }
  .key-feature{
    padding-bottom: 50px;
  }
  .construction p{
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
    font-size: 17px;
    font-weight: 500;
  }
  .construction p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z" fill="red" stroke="red" stroke-width="15"/></svg>') no-repeat center center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path d="M541.4 162.6C549 155 561.7 156.9 565.5 166.9C572.3 184.6 576 203.9 576 224C576 312.4 504.4 384 416 384C398.5 384 381.6 381.2 365.8 376L178.9 562.9C150.8 591 105.2 591 77.1 562.9C49 534.8 49 489.2 77.1 461.1L264 274.2C258.8 258.4 256 241.6 256 224C256 135.6 327.6 64 416 64C436.1 64 455.4 67.7 473.1 74.5C483.1 78.3 484.9 91 477.4 98.6L388.7 187.3C385.7 190.3 384 194.4 384 198.6L384 240C384 248.8 391.2 256 400 256L441.4 256C445.6 256 449.7 254.3 452.7 251.3L541.4 162.6z" fill="%23AD000F"/></svg>') no-repeat center;
    background-size: contain;
    color: red;
  }
  .note{
    padding-top: 10px;
    font-size: 17px;
    font-weight: 500;
  }
  .comm{
    font-size: 17px;
    font-weight: 500;
    padding-top: 10px;
  }
  .table-time{
    padding-bottom: 50px;
  }
  .table-time table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
  }
  .table-time table th {
    background-color: #241d1f;
    color: #fff;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
  }
  .table-time table th, td {
    text-align: left;
    padding: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.constructions {
    box-shadow: 0 5px 15px 0 rgba(194.60164794921877, 194.60164794921877, 194.60164794921877, .5);
    border-radius: 10px;
    border-left: 5px solid #AD000F;
    padding: 20px 15px 20px 20px;
    line-height: 28px;
}
.constructions p{
    padding-bottom: 5px;
    font-size: 17px;
}
.constructions p:last-child{
    padding-bottom: 0;
}
.tech-time{
    padding-bottom: 50px;
}
.tech-time table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}
.tech-time table th {
    background-color: #241d1f;
    color: #fff;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
}
.tech-time table th, td {
    text-align: left;
    padding: 12px;
    border: 1px solid #e5e5e5;
    text-align: center;
}
.tech-time table td{
    font-size: 15px;
    line-height: 28px;
}
.tech-time table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

/* Market Page css */

.market{
    padding: 50px 0;
    background-color: #F0F1F3;
}
.country-block {
    position: relative;
    margin-bottom: 30px;
}
.country-block .inner-box {
    position: relative;
    padding: 20px 30px 20px 25px;
    background-color: #fff;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    transition: all 300ms ease;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.country-block .inner-box .image-box {
    position: relative;
    display: flex;
    align-items: center;
}
.country-block .inner-box .image-box img {
    position: relative;
    display: block;
    border-radius: 50%;
    margin-right: 15px;
    max-width: 50px;
    outline: 3px solid #fff !important;
    transition: all 300ms ease;
}
.country-block .inner-box .image-box .title {
    position: relative;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}
.country-block .inner-box .text {
    position: relative;
    margin-top: 22px;
    border-top: 1px dashed rgba(143, 142, 142, 0.49);
    margin-bottom: 0;
    transition: all 300ms ease;
    color: #444444;
}
.country-block .inner-box .read-more {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
    background-color: #AD000F;
    transition: all 300ms ease;
}
.country-block .inner-box .image-box .title a {
    color: #000;
    transition: all 300ms ease;
}
.country-block .inner-box:hover {
    background-color: #000;
}
.country-block .inner-box:hover .image-box img {
    transform: rotate(360deg);
}
.country-block .inner-box:hover .title {
    color: #fff;
}
.country-block .inner-box svg{
    fill: #fff;
    width: 20px;
}
.country-block .inner-box svg path{
    stroke-width: 15;
    stroke: #fff;
}

/* Gallery Page Css */

.gallery{
    padding: 50px 0;
}






/* Media Query Start */

@media only screen and (min-width: 1400px){
    .contact-info-section{
        height: 89.5%;
    }
}

@media only screen and (max-width: 1199px){

    .about h2{
        display: none;
    }
    .about h1{
        padding-bottom: 0;
    }
    .second-foot {
        padding-left: 80px;
    }
    .last-foot h2{
        padding-top: 35px;
    }
    .icon-box{
        height: 320px;
    }
    .testi-box .inn-box{
        height: 335px;
    }
    .product-sec .swiper-nav .swiper-nav-prev{
        position: absolute;
        right: 5%;
    }
    .third-foot h2{
        padding-left: 0;
    }
    .third-foot li{
        padding-left: 0;
    }
    .in-pro-det h2{
        font-size: 28px;
        padding-bottom: 8px;
    }
    .material h2{
        font-weight: 600;
    }
    .contact-info-section .number-info address{
        margin-bottom: 0;
    }
    .contact-info-section .number-info h4{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .contact-info-section .number-info p{
        font-size: 17px;
    }
    .contact-info-section .number-info a{
        font-size: 17px;
    }
    .number-info{
        margin-bottom: 22px;
    }
    .contact-info-section{
        padding: 19px;
    }
    .get{
        font-size: 30px;
    }

}

@media only screen and (max-width: 991px) {

    nav {
        justify-content: flex-start;
    }

    ul.menus {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #071c2e;
    }

    ul.menus.active {
        display: flex;
        position: relative;
        top: 20px;
    }

    ul.menus li a {
        color: #fff;
    }

    ul.menus li {
        width: 100%;
    }

    ul.menus ul,
    ul.menus ul ul {
        position: static;
        width: 100%;
    }

    ul.menus li:hover>ul {
        display: none;
    }

    ul.menus li.show>ul {
        display: block;
    }

    .submenu-toggle {
        display: block;
    }

    ul.menus li a i {
        display: none;
    }

    ul.menus ul ul li a {
        width: 89%;
    }

    ul.menus li a {
        padding: 8px 16px;
    }

    .t-white {
        color: #fff;
    }

    .menu-toggle {
        top: -68px;
        font-size: 24px;
        background-color: #AD000F;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav {
        padding: 0;
    }

    ul.menus.active {
        top: 0;
    }

    .submenu-toggle svg {
        fill: #fff;
        padding: 1px;
        background-color: #912524;
        width: 20px;
    }

    ul.menus li a {
        font-size: 17px;
        font-weight: 500;
    }

    .req-btn {
        display: none;
    }

    .about-img{
        text-align: center;
        padding-top: 35px;
    }
    .about-us{
        padding: 35px 0 60px 0;
    }
    .second-foot {
        padding-left: 20px;
    }
    .second-foot h2{
        font-size: 26px;
    }
    .third-foot h2{
        font-size: 26px;
    }
    .third-foot h2{
        font-size: 26px;
    }
    .last-foot h2{
        font-size: 26px;
    }
    .first-copy{
        text-align: center; 
        padding-bottom: 5px;
    }
    .power{
        text-align: center;
    }
    .icon-box{
        height: auto;
    }
    .vin-gg{
        height: 305px;
    }
    .testi-box .inn-box {
        height: 310px;
    }
    .product-sec .swiper-nav .swiper-nav-prev{
        position: absolute;
        right: 6.5%;
    }
    .menu-chev{
        display: none;
    }
    .rote{
        display: none;
    }
    .in-pro-det h2{
        padding-top: 25px;
        text-align: center;
    }
    .in-pro-det p{
        text-align: center;
    }
    .constructions{
        margin-top: 25px !important;
    }
    .material h2{
        font-size: 24px;
    }
    .tech-time table{
        margin-top: 20px;
    }
    .in-pro-det{
        padding-left: 0;
    }
    .get{
        padding-bottom: 10px;
    }
    .fill{
        font-size: 17px;
    }
    .bread-cont h1{
        font-size: 32px;
    }
    .pulver{
        padding-top: 30px;
    }

}

@media only screen and (max-width: 767px){

    .third-foot {
        padding-top: 35px;
    }
    footer{
        padding: 50px 0 45px 0;
    }
    .about h1{
        font-size: 36px;
    }
    .product-sec h2{
        font-size: 36px;
    }
    .th-btn{
        margin-top: 40px;
    }
    .counter-time h2{
        font-size: 28px;
    }
    .counter-time h2::after{
        top: 45px;
    }
    .testi h3{
        font-size: 36px;
    }
    .testi h2{
        font-size: 28px;
    }
    .vin-gg{
        height: auto;
    }
    .testi-box .inn-box {
        height: auto;
    }
    .footer-social-address-content h4 br{
        display: none;
    }
    .why-contacts{
        text-align: center;
    }
    .footer-social-address-content h4{
        text-align: center;
        font-size: 25px;
        padding-bottom: 25px;
    }
    .product-sec .swiper-nav .swiper-nav-prev{
        display: none;
    }
    .product-sec .swiper-nav .swiper-nav-next{
        display: none;
    }
    .footer-social-address-content .get-connec br{
        display: none;
    }
    .footer-social-address-content .get-connec{
        text-align: center;
        font-size: 28px;
        line-height: 36px;
        padding-bottom: 25px;
    }
    .new-enq{
        padding: 30px 15px 30px;
    }
    .bread-cont{
        gap: 10px;
    }
    .bread-cont h1{
        font-size: 30px;
    }
    .big-material h2 {
        width: 520px;
    }
    .material h2 {
        font-size: 20px;
    }
    .in-pro-det h2{
        font-size: 25px;
    }
    .construction p{
        font-size: 16px;
    }
    .tech-time table th {
        font-size: 16px;
    }
    .get {
        font-size: 25px;
    }
    .fill {
        font-size: 16px;
    }
    .breadcrum{
        padding: 80px;
    }
    .pro-design h3 a br{
        display: none;
    }

}

@media only screen and (max-width: 576px){

    .menu-toggle{
        top: -60px;
    }
    .about h1 {
        font-size: 32px;
        line-height: 1.3em;
        text-align: center;
    }
    .about-us {
        padding: 20px 0 60px 0;
    }
    .about p{
        font-size: 16px;
    }
    .about-btn{
        text-align: center;
    }
    .thm-btn{
        padding: 5px 5px 5px 20px;
        font-size: 16px;
    }
    .product-sec h2 {
        font-size: 32px;
        line-height: 1.3em;
    }
    .counter-time{
        padding: 35px 0 50px 0;
    }
    .counter-time h2 {
        font-size: 24px;
        margin-bottom: 35px;
    }
    .counter-time h2::before{
        display: none;
    }
    .counter-time h2::after{
        display: none;
    }
    .testi{
        padding: 35px 0;
    }
    .testi h2 {
        font-size: 26px;
    }
    .testi h3 {
        font-size: 32px;
    }
    .foot-logo {
        width: 60%;
        margin: auto;
    }
    .first-foot p {
        text-align: center;
    }
    .social {
        justify-content: center;
    }
    .second-foot h2 {
        padding-left: 0;
        padding-top: 30px;
        font-size: 24px;
        padding-bottom: 5px;
    }
    .second-foot {
        padding-left: 0;
    }
    .second-foot li {
        padding-left: 0;
    }
    .third-foot h2 {
        font-size: 24px;
        padding-bottom: 5px;
        padding-left: 0;
    }
    .third-foot {
        padding-top: 25px;
    }
    .third-foot li {
        padding-left: 0;
    }
    .last-foot h2 {
        font-size: 24px;
        padding-bottom: 12px;
        padding-left: 0;
    }
    .new-enq{
        padding: 30px 20px 30px;
    }
    .footer-social-address-content h4{
        line-height: 36px;
    }
    .footer-social-address-content .get-connec{
        text-align: center;
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 25px;
    }
    .why-contacts a{
        font-size: 16px;
        padding: 10px 16px;
    }
    .breadcrum{
        padding: 60px 0;
    }
    .big-material h2 {
        width: 420px;
    }
    .material h2{
        width: 420px;
        padding-right: 30px;
        font-size: 18px;
        padding-top: 8px;
    }
    .contact-bg h2{
        display: none;
    }
    .palat{
        display: flex;
        flex-direction: column-reverse;
    }
    .get {
        font-size: 21px;
        padding-bottom: 5px;
    }
    .fill{
        font-size: 15px;
    }
    .page-part {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .bread-cont h1 {
        font-size: 28px;
    }

}

@media only screen and (max-width: 450px){

    .menu-toggle {
        top: -55px;
    }
    .about h1{
        font-size: 30px;
    }
    .about-us{
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .about-btn{
        margin-top: 15px;
    }
    .product-sec h2{
        font-size: 30px;
    }
    .product-sec{
        padding: 35px 0;
    }
    .th-btn {
        margin-top: 30px;
        padding: 13px 15px 12px;
    }
    .counter-time h2 {
        font-size: 21px;
        margin-bottom: 30px;
    }
    .testi h2 {
        font-size: 24px;
    }
    .testi h3 {
        font-size: 28px;
        padding-bottom: 30px;
    }
    .second-foot h2{
        font-size: 22px;
    }
    .third-foot h2{
        font-size: 22px;
    }
    .last-foot h2{
        font-size: 22px;
    }
    .second-foot li a{
        font-size: 16px;
    }
    .third-foot li a{
        font-size: 16px;
    }
    .add{
        font-size: 16px;
    }
    .first-copy{
        font-size: 15px;
        font-weight: 500;
    }
    .power{
        font-size: 15px;
        font-weight: 500;
    }
    footer {
        padding: 40px 0 25px 0;
    }
    .youtub {
        padding: 35px 0;
    }
    .youtub h2{
        font-size: 32px;
        padding-bottom: 25px;
    }
    .btn-whatsapp-pulse{
        left: 10px;
        bottom: 10px;
        width: 51px;
        height: 51px;
    }
    .btn-whatsapp-pulse svg{
        width: 30px;
        height: 30px;
    }
    .bread-cont h1 {
        font-size: 24px;
    }
    .bread-last{
        font-size: 16px;
    }
    .bread-cont {
        gap: 5px;
    }
    .material h2{
        width: 375px;
    }
    .in-pro-det p{
        font-size: 16px;
    }
    .in-pro-det h2{
        padding-bottom: 5px;
    }
    .constructions p{
        font-size: 16px;
    }
    .constructions{
        padding: 15px;
    }
    .has-feedback .form-control{
        padding: 15px;
    }
    .get {
        font-size: 18px;
        padding-bottom: 4px;
    }
    .breadcrum {
        padding: 50px 0;
    }

}

@media only screen and (max-width: 400px){

    .menu-toggle{
        width: 36px;
        height: 36px;
        top: -50px;
    }
    .about h1 {
        font-size: 28px;
    }
    .about-btn {
        margin-top: 10px;
    }
    .thm-btn {
        padding: 3px 3px 3px 15px;
        font-size: 16px;
    }
    .about p{
        line-height: 26px;
    }
    .product-sec h2 {
        font-size: 28px;
    }
    .th-btn {
        margin-top: 30px;
        padding: 11px 15px 10px;
        font-size: 16px;
    }
    .counter-time h2{
        line-height: 28px;
        margin-bottom: 25px;
    }
    .testi h2 {
        font-size: 22px;
    }
    .testi h3{
        font-size: 26px;
    }
    .first-foot p{
        font-size: 16px;
    }
    .footer-social-address-content .get-connec{
        padding-bottom: 20px;
    }
    .bread-cont h1 {
        font-size: 21px;
    }
    .material h2 {
        width: 328px;
    }
    .in-pro-det h2 {
        font-size: 21px;
    }
    ul.menus li a{
        font-size: 16px !important;
    }
    .contact-info-section .number-info a {
        font-size: 16px;
    }
    .contact-info-section {
        padding: 15px;
    }
    .contact-info-section .number-info address{
        font-size: 16px;
    }
    .con-mail{
        font-size: 15px !important;
    }
    .get{
        font-size: 16px;
        padding-bottom: 2px;
    }
    .page-part {
        padding-top: 30px;
        padding-bottom: 30px;
    }

}

@media only screen and (max-width: 350px){

    .add{
        font-size: 15px;
    }
    .third-foot li a{
        font-size: 15px;
    }
    .second-foot li a{
        font-size: 15px;
    }
    .first-foot p{
        font-size: 15px;
    }
    .long-mail a{
        font-size: 14px;
    }
    .material h2 {
        width: 295px;
    }
    ul.menus ul{
        min-width: 296px;
    }
    ul.menus li{
        padding-right: 10px;
    }
    ul.menus ul ul li a {
        width: 100%;
    }

}
#chatBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #000;
      color: white;
      border: none;
      border-radius: 29px;
      padding: 12px 20px;
      font-size: 16px;
      cursor: pointer;
      z-index: 9999;
    }

    #chatBtn:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
    }.img-pro img{width:100%; height:auto; }.img-pro{position:relative;}.pro-d span{color:#626161}.get-latest-price-bt {
    margin-top: 12px;
    border: 1px solid #bb3539;
    color: #000;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    text-decoration: none !important;
}.pro-d {
    background-color: #ebe9e7;
    padding: 30px 17px;
    margin-bottom: 17px;
}.modal-lg{width:750px}.modal-dialog{margin:7% auto}.inq-btn-home{position:fixed;top:300px;right:10px;width:45px;height:50px;z-index:11}.modal{z-index:999999!important}.modal-header{padding:10px 15px 0 15px;background-color:#373435}.modal-title{font-size:18px;color:#fff;text-align:left;padding-bottom:9px}.modal-body{padding:0 15px 10px 15px}.capside{float:left;margin-top:25px}.close{position:absolute;right:16px;top:15px;font-size:28px;color:#fff!important}.pop-img{margin-top:10%;margin-bottom:20px;width:300px;height:auto}button.close{-webkit-appearance:none;cursor:pointer;background:0 0;border:0;background-color:#b52414!important;padding:6px 15px;margin-top:-14px!important;position:absolute;opacity:1;color:#fff!important}@media only screen and (max-width:768px){.modal-lg{width:75%;margin:15px auto}.dmo{display:none}.modal-footer{padding:15px 21px;text-align:right;border-top:none;margin-top:-72px;position:relative;z-index:999;width:120px;float:right}.inq-btn-home img{width:30px; height:auto;}.moClose{display:none;}.modal-body{padding: 0 15px 45px 15px;}.modal-dialog{margin:15% auto}}