@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    font-family: "Roboto", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}

p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Top Navbar */

.topnav {
    background-color: #f2f2f2;
    color: #fff;
}

.topnav ul {
    display: flex;
    margin: 10px 0;
    justify-content: end;
}

.topnav ul li {
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.topnav ul li:last-child {
    padding-right: 0;
}

.topnav ul li i {
    color: #6E6E6E;
    margin-right: 6px;
    font-size: 15px;
    position: relative;
}

.topnav ul li a {
    color: #6E6E6E;
    transition: 0.3s ease all;
    font-size: 15px;
}

.topnav ul li a:hover {
    color: #00622f;
}

.top-social {
    display: flex;
    justify-content: end;
}

.top-social>ul>li {
    padding-right: 0;
    margin: 0 9px;
}

.top-social>ul>li>a>i {
    margin-right: 0 !important;
}

.top-social>ul>li:last-child {
    margin-right: 0;
}

/* Header */

.container {
    max-width: 1200px;
}

.header-main {
    width: 100%;
    display: flex;
}

.header-top-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    position: absolute;
    top: -25px;
}

/* .logo a img {
    width: 100%;
} */

.menu-nav {
    display: flex;
    position: relative;
    z-index: 99999;
}

.menu-nav>ul {
    display: flex;
}

/* .menu-nav>ul>li {
    padding: 0 14px;
} */

.menu-nav>ul>li:first-child {
    padding-left: 0;
}

.menu-nav>ul>li:last-child {
    padding-right: 0;
}

.menu-nav>ul>li>a {
    display: inline-block;
    padding: 38px 15px;
    font-size: 14px;
    color: #00622f;
    text-transform: uppercase;
    font-weight: 500;
    border-right: 1px solid #f2f2f2;
    transition: 0.3s ease-in-out all;
}

.menu-nav>ul>li>a>i {
    font-size: 12px;
    position: relative;
    top: -2px;
}

/* .menu-nav>ul>li:hover>a {
    color: #fff;
} */

.menu-nav>ul>li:hover>a>i {
    transform: rotate(180deg);
    transition: 0.3s ease-in-out;
}

.drop-down-menu {
    position: relative;
}

.drop-down-nav {
    position: absolute;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    top: 80px;
    left: 0;
    width: 440px;
    background-color: #00622f;
    z-index: 9;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.new-drop {
    width: 150px;
}

.drop-down-menu:hover .drop-down-nav {
    visibility: visible;
    overflow: visible;
    opacity: 1;
    top: 97px;
    transition: 0.5s;
}

.drop-down-nav>li>a {
    color: #fff;
    position: relative;
    padding: 9px 0;
    display: inline-block;
    padding-left: 20px;
    width: 100%;
    font-size: 14px;
}

/* .drop-down-nav>li {
    border-bottom: 1px solid #e9e9e9;
} */

.drop-down-nav>li:hover {
    background-color: #f2f2f2;
    transition: 0.3s;
}

.drop-down-nav>li:hover>a {
    color: #00622f !important;
}

.hamburger-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 5px;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    width: 30px;
}

.bar {
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #00622f;
    transition: 0.3s;
}

.bar:nth-child(2) {
    width: 15px;
}

.header-contact .bar:nth-child(2) {
    transform: translateX(-40px);
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    background-color: #00622f;
}

.header-contact .bar:nth-child(1) {
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #00622f;
}

.header-contact .bar:nth-child(3) {
    transform: rotate(225deg);
    top: -6px;
    background-color: #00622f;
    position: relative;
}

/* Dropdown Scrollbar */

#dropdown {
    max-height: 469px;
    overflow-y: auto;
}

#dropdown::-webkit-scrollbar {
    width: 8px;
}

#dropdown::-webkit-scrollbar-thumb {
    background-color: #003b1c;
    border-radius: 5px;
}

#dropdown::-webkit-scrollbar-thumb:hover {
    background-color: #003b1c;
}

#dropdown::-webkit-scrollbar-track {
    background: #d1d0d0;
    border-radius: 5px;
}

/* Banner */

.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #373435;
    border: 3px solid #fff;
    margin-left: 2px;
    margin-right: 2px;
    opacity: 0.9;
}

.carousel-indicators .active {
    background-color: #00622f;
}

/* Three Box */

.three-box {
    padding: 50px 0;
}

.round-box {
    text-align: center;
    position: relative;
    z-index: 9;
}

.bord-box {
    border: 2px solid #e7eaeb;
    text-align: center;
    padding: 40px 20px;
    border-radius: 7px;
    position: relative;
    margin-top: -15px;
}

.bord-box h2 {
    color: #00622f;
    font-size: 24px;
    padding: 10px 0px;
}

.bord-box p {
    color: #333;
    font-size: 15px;
    margin: 0px;
    line-height: 25px;
}

.bord-box:hover {
    border: 2px solid #00622f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #ebebeb;
}

/* Youtube */

.video-sec {
    background-color: #f2f2f2;
}

.video-sec-1 {
    background-color: #f2f2f2;
    margin: 50px 0px;
}

.about {
    background-color: #00622f;
    width: 50%;
    padding-bottom: 30px;
    text-align: left;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 100px;
}

.about h2 {
    font-size: 30px;
    color: #fff;
    text-align: left;
    font-weight: 300;
    padding-bottom: 5px;
}

.about h1 {
    font-size: 34px;
    color: #fff;
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0px;
    padding-bottom: 15px;
}

.about p {
    text-align: justify;
    margin: 0px;
    line-height: 28px;
    padding-top: 10px;
    color: #fff;
    font-size: 16px;
}

.about p span {
    color: #1add78;
}

.about a {
    border: 1px solid #1add78;
    color: #fff;
    border: 2px solid #1add78;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 35px;
    transition: 0.3s ease all;
}

.about a:hover {
    background-color: #1add78;
    color: #fff;
}












.video-se {
    margin: 70px 0px;
}




.about-1 {
    background-color: #00622f;
    width: 100%;
    padding-bottom: 30px;
    text-align: left;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 80px;
}

.about-1 h2 {
    font-size: 30px;
    color: #fff;
    text-align: left;
    font-weight: 300;
    padding-bottom: 5px;
}

.about-1 h1 {
    font-size: 34px;
    color: #fff;
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0px;
    padding-bottom: 15px;
}

.about-1 p {
    text-align: justify;
    margin: 0px;
    line-height: 28px;
    padding-top: 10px;
    color: #fff;
    font-size: 16px;
}

.about-1 p span {
    color: #1add78;
}

.about-1 a {
    border: 1px solid #1add78;
    color: #fff;
    border: 2px solid #1add78;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 35px;
    transition: 0.3s ease all;
}

.about-1 a:hover {
    background-color: #1add78;
    color: #fff;
}







.vid-info {
    display: flex;
    align-items: center;

}

.you-box {
    width: 50%;
    margin-left: 100px;
    margin-right: 15px;
    display: flex;
}

.you-box-1 {
    width: 100%;
    /* margin-left: 100px;
    margin-right: 15px; */
    /* display: flex; */
}

/* Counter */

.counter-time {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.count-box {
    background-color: #fff;
    padding: 30px 10px;
    text-align: center;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.count-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #00622f;
}

.count-box P {
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
    color: #21221f;
    text-align: center;
}

/* Product Section */

.product-part {
    padding: 50px 0;
}

.product-part h2 {
    font-size: 30px;
    color: #00622f;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-align: center;
}

.heart-img {
    text-align: center;
    padding-bottom: 20px;
}

.pro-box {
    padding: 10px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.pro-box img {
    transition: 3s ease all;
    overflow: hidden;
}

.pro-box:hover img {
    transform: scale(1.1);
}

.pro-box a {
    background-color: #00622f;
    padding: 10px;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
    transition: 0.3s ease all;
    position: relative;
    z-index: 99;
}

.pro-box a:hover {
    background-color: #003b1c;
}

.swiper-nav-wrapper {
    text-align: center;
    margin-top: 20px;
}

.swiper-nav-wrapper .swiper-button-prev,
.swiper-nav-wrapper .swiper-button-next {
    position: static;
    /* default absolute hatane ke liye */
    display: inline-block;
    margin: 0 2px;
    width: auto;
    height: auto;
    background: #869791;
    /* optional background */
    padding: 5px 8px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.swiper-nav-wrapper .swiper-button-prev:hover,
.swiper-nav-wrapper .swiper-button-next:hover {
    background-color: #003b1c;
}

/* Icons ka color ya size change karna ho to */
.swiper-nav-wrapper .swiper-button-prev::after,
.swiper-nav-wrapper .swiper-button-next::after {
    font-size: 0px;
}

/* Footer */

footer {
    padding: 50px 0;
    background-color: #313131;
    border-top: 5px solid #38AD72;
}

.first-foot h2 {
    font-size: 18px;
    color: #38AD72;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.first-foot ul li {
    position: relative;
    padding-left: 20px;

}

.first-foot ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/arrow.gif);
    background-size: cover;
    /* margin-right: 10px; */
    vertical-align: middle;
    left: 0;
    top: 7px;
    position: absolute;
}

.first-foot ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    padding-bottom: 7px;
    display: inline-block;
}

.first-foot ul li:hover a {
    color: #38AD72;
    font-weight: 400;
}

.last-foot {
    padding-left: 40px;
}

.last-foot h2 {
    font-size: 18px;
    color: #38AD72;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.foot-contact {
    margin-bottom: 8px;
    display: flex;
}

.foot-contact address {
    margin-bottom: 0;
    color: #fff;
    line-height: 28px;
    font-size: 15px;
    font-weight: 300;
}

.foot-contact address b {
    font-weight: 500;
    font-size: 16px;
}

.add-img {
    padding-right: 15px;
    position: relative;
    top: 2px;
}

.foot-contact a {
    margin-bottom: 0;
    color: #fff;
    line-height: 28px;
    font-size: 15px;
    font-weight: 300;
}

.foot-contact a:hover {
    color: #38AD72;
    font-weight: 400;
}

.copy {
    background-color: #111111;
    padding-top: 15px;
    padding-bottom: 15px;
}

.first-copy {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.power {
    text-align: right;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.power a {
    color: #fff;
}

.power a:hover {
    color: #38AD72;
    font-weight: 400;
}

/* Translator */

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px !important;
}

.goog-te-gadget .goog-te-combo {
    padding: 4px;
    margin: 0 !important;
    background-color: #003b1c;
    color: #fff;
    border: none;
}

:focus-visible {
    outline: none !important;
}

/* About Us Page */

.bread {
    background-color: #003b1c;
    position: relative;
    padding: 70px 0;
}

/* .bread::before {
    background-color: #000;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .7;
} */
.bread h1 {
    color: #fff;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-size: 36px;
}

.bread-last {
    position: relative;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 10px;
    padding-top: 12px;
}

.bread-last a {
    color: #fff;
    transition: 0.3s ease;
}

.bread-last a:hover {
    color: #38AD72;
}

.about-page {
    padding: 55px 0 50px 0;
}

.abouts {
    padding-left: 25px;
}

.abouts h1 {
    font-size: 42px;
    line-height: 1.05em;
    text-transform: uppercase;
}

.orange-dot {
    font-size: 1.5em;
    position: relative;
    font-weight: 700;
    color: #003b1c;
    display: inline-block;
    top: -20px;
}

.abouts p {
    padding-bottom: 10px;
    text-align: justify;
    line-height: 1.6;
    font-size: 17px;
}

.abouts p span {
    color: #003b1c;
    font-weight: 500;
}

/* fully-pneumatic Page */

.fully-pneumatic {
    padding: 50px 0;
}

.pro-back {
    background-color: #d9d9d9;
    padding: 20px;
    border-radius: 10px;
}

.material h2 {
    color: #fff;
    font-size: 25px;
    background-color: #383838;
    padding: 5px 0 8px 10px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    display: inline-block;
    padding-right: 150px;
    font-weight: 600;
}

.construction {
    box-shadow: 0 5px 15px 0 rgba(194.60164794921877, 194.60164794921877, 194.60164794921877, .5);
    border-radius: 10px;
    border-left: 5px solid #515D23;
    padding: 15px;
    margin-top: 20px;
}

.app-cont {
    display: flex;
    padding-top: 5px;
}

.tool {
    padding-right: 15px;
}

.tool img {
    position: relative;
    top: 2px;
}

.construction p {
    line-height: 34px;
    font-size: 17px;
}

/* Contact Us Page */

.contact-page {
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-time {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.contact-time h4 {
    padding-left: 25px;
    line-height: 34px;
    font-size: 28px;
}

.con-loc {
    margin-bottom: 23px;
}

.locations {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px 35px;
    cursor: pointer;
    height: 280px;
}

.locations h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.locations address {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.locations img {
    transition: 0.4s all ease-in-out;
}

.locations:hover img {
    transform: rotateY(180deg);
}

.number {
    margin-bottom: 6px;
}

.number:last-child {
    margin-bottom: 0;
}

.number a {
    color: #212529;
    /* font-weight: 500; */
    font-size: 17px;
    transition: 0.4s ease;
}

.number a:hover {
    color: #003b1c;
}

/* Enquiry Form Css */

.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 {

    padding: 18px;
}

.form-group {
    margin: 15px 0 !important;
}

.form-group input {
    font-size: 15px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #003b1c;
    color: #000;
}

.has-feedback .form-control::placeholder {
    color: #000000;
}

.has-feedback .form-control {
    color: #000000;
}

.form-group textarea {
    font-size: 15px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #003b1c;
}

.form-group select {
    font-size: 15px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #003b1c;
}

.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 #003b1c;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
}

.Submit-box {
    background-color: #003b1c;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #003b1c;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
    font-weight: 400;
}

.Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-bottom: 2px solid #003b1c;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.fill {
    font-size: 19px;
    font-weight: 500;
}

.get {
    font-size: 28px;
    color: #003b1c;
    padding-bottom: 5px;
}

.page-part {
    padding: 50px 0;
}

/* Galllery Page */

.gallery-page {
    padding: 50px 0;
}

.gal-img {
    padding: 5px;
    border: 1px solid #003b1c;
}


/* Enquiry Form Css End*/

/* Product Page */

.product-page {
    padding: 50px 0;
}

/* Media Query Start */

@media only screen and (max-width: 1199px) {

    .hamburger-menu {
        display: block;
    }

    .menu-nav>ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        background-color: #fff;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        display: flex;
        justify-content: flex-start;
        z-index: 999999999;
        overflow-y: auto;
    }

    .header-contact .menu-nav>ul {
        transform: translateX(0);
    }

    .menu-nav {
        display: initial;
    }

    .menu-nav>ul {
        display: initial;
        flex-direction: column;
    }

    .menu-nav>ul>li>a {
        padding: 13px 0;
        display: block;
        color: #000;
        padding-left: 14px;
    }

    .menu-nav>ul>li:first-child {
        padding-left: 0;
    }

    .menu-nav ul li {
        border-bottom: 1px solid #d4d4d4;
        padding-left: 0;
    }

    .menu-nav>ul>li>a>i {
        display: none !important;
    }

    .menu-nav ul li.drop-down-menu {
        padding-right: 60px;
        position: relative;
        overflow: hidden;
    }

    .menu-nav ul li.drop-down-menu::after {
        position: absolute;
        content: "+";
        top: 3px;
        right: 23px;
        font-size: 27px;
    }

    li.drop-down-menu.responsive-header::after {
        content: "-" !important
    }

    .drop-down-menu:hover .drop-down-nav {
        visibility: visible;
        overflow: visible;
        opacity: 1;
        top: 0;
        transition: 0s !important;
        z-index: 9999;
    }

    .drop-down-nav {
        position: initial;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        top: 0;
        left: 0;
        background-color: #fff;
        z-index: 9;
        height: 0;
    }

    .drop-down-nav>li>a {
        background-color: #00622f;
        color: #fff;
        padding-left: 15px;
        padding-right: 15px;
    }

    .responsive-header .drop-down-nav {
        height: 100%;
        overflow-y: scroll !important;
    }

    .drop-down-nav li {
        width: 300px !important;
    }

    header {
        padding: 42px 0;
    }

    .logo {
        top: -67px;
    }

    .bord-box p br {
        display: none;
    }

    .round-box img {
        width: 100px;
    }

    .about h1 {
        font-size: 32px;
    }

    .about {
        padding-right: 15px;
    }

    .you-box {
        margin-left: 15px;
    }

    .locations {
        padding: 25px;
        height: 300px;
    }

}

@media only screen and (max-width: 991px) {

    .topnav ul li:last-child {
        display: none;
    }

    .topnav ul li:nth-child(2) {
        padding-right: 0;
    }

    .bord-box {
        margin-top: -25px;
    }

    .vid-info {
        flex-direction: column-reverse;
    }

    .you-box {
        width: 100%;
    }

    .about {
        width: 100%;
    }

    .last-foot {
        padding-left: 0;
        padding-top: 25px;
    }

    .first-copy {
        text-align: center;
    }

    .power {
        text-align: center;
    }

    .about-img {
        text-align: center;
    }

    .abouts {
        padding-top: 25px;
    }

    .bread h1 {
        font-size: 30px;
    }

    .material h2 {
        font-size: 22px;
        padding: 7px 0 7px 10px;
        padding-right: 150px;
    }

    .locations {
        height: 274px;
    }



    .about-1 {
        background-color: #00622f;
        width: 100%;
        padding-bottom: 30px;
        text-align: left;
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 50px;
    }

}

@media only screen and (max-width: 767px) {

    .topnav ul li:nth-child(2) {
        display: none;
    }

    .bord-box {
        padding: 25px 10px;
    }

    .about p {
        padding-top: 0;
    }

    .about a {
        margin-top: 25px;
    }

    .first-foot {
        padding-top: 25px;
    }

    footer {
        padding-top: 25px;
    }

    .abouts h1 {
        font-size: 34px;
    }

    .abouts {
        padding-left: 0;
    }

    .about-page {
        padding: 35px 0 30px 0;
    }

    .bread h1 {
        font-size: 26px;
    }

    .bread-last {
        font-size: 17px;
    }

    .bread {
        padding: 50px 0;
    }

    .pro-back {
        padding: 15px;
    }

    .material h2 {
        font-size: 20px;
        padding-right: 120px;
    }

    .construction p {
        line-height: 28px;
        font-size: 16px;
    }

    .tool img {
        top: 0;
        width: 20px;
        height: auto;
    }

    .tool {
        padding-right: 10px;
    }

    .page-part {
        padding: 30px 0;
    }

    .get {
        font-size: 26px;
    }

    .fill {
        font-size: 17px;
    }

    .locations {
        height: auto;
        padding: 20px;
    }

    .contact-page {
        margin: 30px 0;
    }

}

@media only screen and (max-width: 576px) {

    .topnav ul li {
        display: none;
    }

    .topnav ul {
        margin: 17px 0;
    }

    .logo {
        width: 240px;
        top: -56px;
    }

    header {
        padding: 35px 0;
    }

    .three-box {
        padding: 30px 0;
    }

    .about h2 {
        text-align: center;
    }

    .about h1 {
        text-align: center;
    }

    .counter-time {
        padding: 30px 0;
    }

    .product-part {
        padding: 30px 0;
    }

    footer {
        padding-top: 5px;
        padding-bottom: 30px;
    }

    .bread {
        padding: 50px 0;
    }

    .bread h1 {
        font-size: 24px;
    }

    .bread-last {
        font-size: 15px;
        padding-top: 10px;
    }

    .abouts p {
        font-size: 16px;
    }

    .fully-pneumatic {
        padding: 35px 0;
    }

    .material h2 {
        font-size: 18px;
        padding-bottom: 5px;
        padding-right: 100px;
    }

    .construction {
        padding: 10px;
    }

    .construction p {
        font-size: 15px;
    }

    .get {
        font-size: 22px;
    }

    .fill {
        font-size: 16px;
        margin-bottom: 0 !important;
    }

    .has-feedback .form-control {
        padding: 15px;
    }

    .locations {
        text-align: center;
    }

    .con-loc {
        margin-bottom: 17px;
    }

    .locations h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-time h4 {
        line-height: 28px;
        font-size: 22px;
        padding-left: 20px;
    }

    .contact-time {
        margin-bottom: 30px;
    }

    .locations address {
        font-size: 16px;
    }

    .number {
        margin-bottom: 3px;
    }

    .number a {
        font-size: 16px;
    }



    .about-1 {
        background-color: #00622f;
        width: 100%;
        padding-bottom: 30px;
        text-align: left;
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 50px;
    }


}

@media only screen and (max-width: 450px) {

    .round-box img {
        width: 80px;
    }

    .bord-box h2 {
        font-size: 21px;
    }

    .about {
        text-align: center;
    }

    .about {
        padding: 25px 10px 25px 10px;
    }

    .about h1 {
        font-size: 26px;
        padding-bottom: 10px;
        font-weight: 600;
    }

    .about h2 {
        font-size: 26px;
    }

    .about p {
        text-align: center;
    }

    .count-box {
        padding: 20px 10px;
    }

    .count-box h2 {
        font-size: 36px;
    }

    .product-part h2 {
        font-size: 26px;
    }

    .first-copy {
        font-size: 14px;
    }

    .power {
        font-size: 14px;
    }

    .copy {
        padding: 10px 0;
    }

    .hamburger-menu {
        padding-right: 0;
    }

    .add-img {
        padding-right: 10px;
    }

    .abouts {
        text-align: center;
        padding-top: 35px;
    }

    .abouts h1 {
        font-size: 30px;
    }

    .abouts p:last-child {
        padding-bottom: 0;
    }

    .bread h1 {
        font-size: 22px;
    }

    .bread-last {
        font-size: 14px;
    }

    .bread {
        padding: 35px 0;
    }

    .material h2 {
        font-size: 17px;
        padding-bottom: 6px;
    }

    .pro-back {
        padding: 10px;
    }

    .get {
        font-size: 21px;
    }

    .fill {
        font-size: 15px;
    }

    .about-1 {
        background-color: #00622f;
        width: 100%;
        padding-bottom: 30px;
        text-align: left;
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 40px;
    }

}

@media only screen and (max-width: 400px) {

    .logo {
        width: 210px;
        top: -48px;
    }

    header {
        padding: 30px 0;
    }

    .round-box img {
        width: 75px;
    }

    .about h2 {
        font-size: 24px;
    }

    .about h1 {
        font-size: 22px;
    }

    .count-box h2 {
        font-size: 34px;
    }

    .count-box P {
        margin-top: 0;
    }

    .count-box {
        padding: 15px 10px;
    }

    .product-part h2 {
        font-size: 22px;
    }

    .pro-box a {
        font-size: 15px;
    }

    .bread h1 {
        font-size: 22px;
    }

    .bread-last {
        padding-top: 8px;
    }

    .get {
        font-size: 18px;
    }

    .fill {
        font-size: 14px;
    }

    .has-feedback .form-control {
        padding: 13px;
    }

    .contact-time h4 {
        font-size: 21px;
        padding-left: 18px;
        line-height: 26px;
    }

    .locations h2 {
        font-size: 22px;
    }

    .locations address {
        font-size: 15px;
    }

    .number a {
        font-size: 15px;
    }

}

@media only screen and (max-width: 350px) {

    .menu-nav>ul {
        width: 270px;
    }

}