html,
body {
    overflow-x: hidden;
    font-family: sans-serif;
    color: #444444;
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
}

 ::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
}

header {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 30px;
    background-image: url(../images/header\ background\ image.jpg);
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    animation: transitionIn 1s ease-in;
}

header::before {
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.6);
}

header::after {
    position: relative;
}

header .logo {
    display: flex;
    justify-content: space-between;
}

header .logo h1 {
    font-size: 35px;
    color: #fff;
}

header .logo .logo-dot {
    color: #ffc451;
}

header .lists-flex ul {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

header .lists-flex ul li {
    margin: 10px;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
}

header .lists-flex ul li:hover {
    color: #facd74;
    transition: 0.3s ease-in;
}

header .lists-flex ul #important-li {
    color: #ffc451;
}

header .header-btn a button {
    width: 130px;
    padding: 8px;
    border: 2px solid #ffc451;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
}

header .header-btn a {
    margin: 0 60px 0 0;
}

header .header-btn a button:hover {
    background: #ffc451;
    color: #444;
    transition: 0.3s all linear;
}

header .none-menu a {
    margin: 0 60px 0 0;
}

header .none-menu {
    display: none;
}

.sidebar {
    position: absolute;
    right: 0;
    width: 80%;
    height: 100%;
    background: #333;
    left: -100%;
    top: 130px;
    height: 100vh;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li a {
    text-align: center;
    font-size: 25px;
    color: #fff;
}

.sidebar ul li ul li a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 65px;
    font-size: 25px;
    color: white;
    padding: 0 0 0 40px;
    transition: .5s all linear;
    position: relative;
    right: 200px;
}

.sidebar ul li ul li:hover a {
    color: #facd74;
    transition: 0.3s ease-in;
}

#check {
    display: none;
    position: relative;
}

label #btn {
    position: absolute;
    cursor: pointer;
    background-color: transparent;
    border-radius: 6px;
    left: 90%;
    top: 1%;
    font-size: 25px;
    padding: 6px 12px;
}

label #cancel {
    position: absolute;
    z-index: 1111;
    left: -80%;
    top: 1%;
    font-size: 25px;
    padding: 6px 12px;
    color: #333;
    cursor: pointer;
}

#check:checked~.sidebar {
    left: 100px;
}

#check:checked~label #btn {
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

#check:checked~label #cancel {
    left: 1%;
}

.blog {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    animation: transitionIn 1s ease-in;
}

.blog .row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 10px;
    flex-direction: row;
}

.blog .row .col {
    flex-basis: 20%;
    color: #fff;
    text-align: center;
    border: 2px solid grey;
    padding: 35px;
    cursor: pointer;
}

.blog .row .col:hover {
    border: 1px solid #ffc451;
    transition: 0.3s all linear;
}

.blog .row .col .icon {
    text-align: center;
    padding: 10px 0 10px 0;
}

.blog .row .col .icon i {
    color: #ffc451;
    font-size: 30px;
}

.blog .row .col h3 {
    font-size: 23px;
}

.blog .info {
    padding: 20px 0 20px 0;
    text-align: center;
}

.blog .info h1 {
    font-size: 40px;
    color: #fff;
}

.blog .info h3 {
    font-size: 20px;
    color: #fff;
}

.inside-our-factory {
    padding: 100px;
}

.inside-our-factory .row {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    flex-direction: row;
}

.inside-our-factory .row .col {
    flex-basis: 50%;
    align-self: center;
}

.inside-our-factory .row .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.inside-our-factory .row .col h2 {
    font-size: 30px;
    color: #000;
    padding: 15px 0 15px 0;
}

.inside-our-factory .row .col h4 {
    font-size: 17px;
    color: #444;
    padding: 8px 0 8px 0;
}

.inside-our-factory .row .col i {
    padding: 10px 10px 10px 0;
    color: #ffc451;
    font-size: 18px;
}

.our-work {
    padding: 100px;
}

.our-work .row {
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
    flex-direction: row;
}

.our-work .row .col {
    flex-basis: 50%;
}

.our-work .row .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our-work .row .col h1 {
    font-size: 27px;
    color: #000;
}

.our-work .row .col h4 {
    font-size: 17px;
    color: #444;
}

.our-work .row .col i {
    font-size: 35px;
    color: #ffc451;
    padding: 10px;
}

.services {
    padding: 100px;
}

.services .row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 10px 0 10px 0;
    flex-direction: row;
}

.services .row .col {
    flex-basis: 33%;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid rgb(205, 205, 205);
}

.services .row .col:hover {
    transform: scale(1.02);
    transition: 0.4s ease-in;
    box-shadow: 0 5px 25px rgb(126, 126, 126);
}

.services .row .col h2 {
    font-size: 25px;
    color: #000;
    padding: 8px 0 8px 0;
    cursor: pointer;
}

.services .row .col h2:hover {
    color: #ffc451;
    transition: 0.3s ease-out;
}

.services .row .col h4 {
    font-size: 17px;
    color: #444;
    padding: 8px 0 8px 0;
}

.services .row .col .icon {
    text-align: center;
    padding: 10px 0 10px 0;
}

.services .row .col .icon i {
    font-size: 20px;
    border: 1px solid black;
    padding: 10px;
    border-radius: 5px;
    background: #ffc451;
    color: black;
}

.action {
    background: url(../images/another\ bi.jpg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.action .center {
    text-align: center;
    padding: 50px 0 50px 0;
}

.action .center h1 {
    font-size: 30px;
    color: #fff;
    padding: 8px 0 8px 0;
}

.action .center h4 {
    font-size: 17px;
    color: #fff;
    padding: 8px 0 8px 0;
}

.action .center .btn {
    text-align: center;
    padding: 20px 0 20px 0;
}

.action .center .btn a button {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    width: 160px;
    padding: 9px;
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
}

.action .center .btn a button:hover {
    background: #ffc451;
    border: 2px solid #ffc451;
    color: #000;
    transition: 0.3s ease-in;
}

.check {
    padding: 150px;
}

.check .row-low {
    display: flex;
    justify-content: center;
    column-gap: 5px;
}

.check .row-low .col {
    padding: 10px;
    cursor: pointer;
}

.check .row-low .col:nth-child(1) {
    border: 1px solid #ffc451;
    border-radius: 5px;
    color: #000;
    background: #ffc451;
}

.check .row-low .col:hover {
    border-radius: 5px;
    color: #000;
    background: #ffc451;
    transition: 0.3s all linear;
}

.check .row {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
    padding: 8px 0 8px 0;
}

.check .row .col {
    flex-basis: 33%;
}

.check .row .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.check .row .col img:hover {
    filter: brightness(50%);
    transition: 0.4s linear;
}

.exp {
    padding: 100px;
}

.exp .row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.exp .row .col {
    flex-basis: 50%;
    align-self: center;
}

.exp .row .col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.exp .row .col .nav-s {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 20px;
}

.nav-first,
.nav-second,
.nav-third,
.nav-fourth {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.nav-first,
.nav-second,
.nav-third,
.nav-fourth,
#first-one,
#second-one,
#third-one,
#fourth-one {
    font-size: 35px;
    color: #000;
}

.nav-first,
.nav-second,
.nav-third,
.nav-fourth,
li {
    font-size: 15px;
    color: #444444;
}

.exp .row .col h2 {
    font-size: 30px;
    color: #000;
}

.exp .row .col h4 {
    font-size: 20px;
    color: #444;
}

i {
    font-size: 35px;
    color: #ffc451;
}

.quote {
    background: url(../images/background\ image.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    position: relative;
}

.quote .center {
    padding: 100px 0 100px 0;
    text-align: center;
    color: #fff;
}

.quote .center img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    box-shadow: 0 2px 5px grey;
}

.quote .center h2 {
    font-size: 25px;
}

.quote .center h4 {
    font-size: 17px;
    color: #444;
}

.quote .center p {
    font-size: 20px;
    padding: 50px;
}

.quote .center .icons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.quote .center .icons i {
    font-size: 13px;
    color: #444;
}

.quote .center .icons i:nth-child(1) {
    color: #ffc451;
}

.team {
    padding: 100px;
}

.team h1 {
    font-size: 35px;
    color: #000;
}

.team h4 {
    font-size: 17px;
    color: #444;
}

.team .row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.team .row .col {
    flex-basis: 25%;
}

.team .row .col img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.team .row .col img:hover {
    filter: brightness(70%);
    transition: 0.3s ease-in-out;
}

.team .row .col .information {
    margin-top: -4px;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    padding: 20px;
    box-shadow: 0 3px 15px rgb(219, 219, 219);
}

.team .row .col .information h2 {
    font-size: 21px;
    color: #000;
}

.team .row .col .information h4 {
    font-size: 17px;
    color: #444;
}

.contact {
    padding: 100px;
}

.contact .map {
    padding: 10px 0 10px 0;
}

.contact .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    cursor: crosshair;
}

.contact .row {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.contact .row .col {
    flex-basis: 33%;
}

.contact .flex {
    display: flex;
    justify-content: space-between;
    column-gap: 25px;
    padding: 10px 0 10px 0;
}

.contact .flex .col:nth-child(1) {
    flex-basis: 30%;
}

.contact .flex .col:nth-child(2) {
    flex-basis: 70%;
}

.contact input {
    width: 100%;
    outline: none;
    border: 1px solid #444;
}

.contact .flex .nav {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact .flex .nav li:nth-child(1) {
    font-size: 25px;
    color: #000;
}

.contact .flex .nav li:nth-child(2) {
    font-size: 17px;
    color: #444;
    font-size: 17px;
    color: #444;
    position: relative;
    bottom: 15px;
    left: 63px;
}

.contact .flex .nav i {
    font-size: 20px;
    border-radius: 5px;
    background-color: #ffc451;
    color: #000;
    padding: 20px;
    position: relative;
    top: 10px;
}

.contact .row .nav {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact .row .nav li:nth-child(1) {
    font-size: 25px;
    color: #000;
}

.contact .row .nav li:nth-child(2) {
    font-size: 17px;
    color: #444;
    font-size: 17px;
    color: #444;
    position: relative;
    bottom: 15px;
    left: 63px;
}

.contact .row .nav i {
    font-size: 20px;
    border-radius: 5px;
    background-color: #ffc451;
    color: #000;
    padding: 20px;
    position: relative;
    top: 10px;
}

input[type=email],
#txt {
    border-radius: 4px;
    border: 1px solid grey;
    font-size: 15px;
    text-align: start;
    padding: 10px 0 10px 0;
    color: #444;
}

input[type=email]::placeholder,
#txt::placeholder {
    padding: 0 0 0 5px;
}

#sub {
    padding: 10px 12px;
    border-radius: 5px;
    color: #444;
    font-size: 15px;
    text-align: start;
    border: 1px solid #444;
    width: 93.5%;
    margin-left: 25px;
}

#sub::placeholder {
    padding: 10px 12px;
}

#msg {
    padding: 10px 12px 50px;
    border-radius: 5px;
    color: #444;
    border: 1px solid #444;
    text-align: start;
    font-size: 15px;
    margin-left: 27px;
    width: 93%;
}

.contact .btn {
    text-align: center;
    position: relative;
    left: 215px;
    padding: 20px 0 20px 0;
}

.contact .btn a button {
    border: 1px solid #ffc451;
    background: #ffc451;
    padding: 15px;
    border-radius: 5px;
    color: #000;
    font-size: 17px;
    width: 175px;
    cursor: pointer;
}

.contact .btn a button:hover {
    background: #facd74;
    transition: 0.3s all linear;
}

footer {
    background: black;
}

footer .footer-top {
    padding: 100px;
    background-color: #151515;
    border-bottom: 1px solid #222222;
}

footer .footer-top .row .col a {
    color: #fff;
}

footer .footer-top .row .col a:hover {
    color: #facd74;
    transition: 0.3s ease-in;
}

footer .footer-bottom {
    padding: 100px;
    background: black;
}

footer .row {
    display: flex;
    justify-content: space-between;
    column-gap: 25px;
    padding: 10px 0 10px 0;
}

footer .row .col {
    flex-basis: 25%;
    color: #fff;
}

footer .row .col .icons {
    display: block;
}

footer .row .col .icons i {
    font-size: 20px;
    padding: 10px;
    border: #292929;
    background: #292929;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

footer .row .col .icons i:hover {
    background: #ffc451;
    color: #000;
    transition: 0.3s ease-in;
}

footer .row .col input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    color: #000;
}

footer .row .col a button {
    float: right;
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    width: 150px;
    color: #000;
    background: #ffc451;
    cursor: pointer;
}

footer .row .col a button:hover {
    background: #facd74;
    transition: 0.3s ease-out;
}

footer .center {
    text-align: center;
}

footer .center h1 {
    font-size: 20px;
    color: #fff;
}

footer .center h2 {
    font-size: 15px;
    color: #fff;
}

footer .important {
    color: #ffc451;
}

footer .myName {
    color: #ffc451;
}

@keyframes transitionIn {
    from {
        opacity: 0;
        transform: translateY(-80deg);
    }
    to {
        opacity: 1;
        transform: rotateX(2);
    }
}

@keyframes scrollY {
    0% {
        transform: translateY(-1000px)
    }
    100% {
        transform: translateY(0px)
    }
}

@media only screen and (max-width:600px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
    header {
        padding: 20px;
        margin: 0;
        height: 200vh;
    }
    header::before {
        top: 10%;
    }
    header .lists-flex {
        display: none;
    }
    header .none-menu {
        display: block;
    }
    label #btn {
        left: 78%;
    }
    .sidebar ul li ul li a {
        right: 0;
        top: 50px;
        color: #222222;
        width: 80%;
    }
    #check:checked~.sidebar {
        left: 35px;
        bottom: -70px;
        background: white;
        height: 80vh;
        z-index: 1;
    }
    #check:checked~.blog {
        display: none;
    }
    #check:checked~label #cancel {
        top: 4.5%;
        left: 80%;
        font-size: 30px;
        color: #fff;
    }
    .sidebar ul li ul li:hover a {
        color: #333;
        transition: 0.3s ease-in;
        background: #facd74;
    }
    #firstList {
        background: #facd74;
        color: #333;
    }
    header .none-menu .navbar-reponsive ul header .header-btn a {
        margin: 0 auto;
    }
    .blog {
        top: 110%;
    }
    .blog .row {
        flex-direction: column !important;
        row-gap: 20px;
    }
    .blog .info {
        width: 350px;
    }
    .inside-our-factory {
        padding: 20px;
    }
    .inside-our-factory .row {
        flex-direction: column;
    }
    .our-work {
        padding: 20px;
    }
    .our-work .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .services {
        padding: 20px;
    }
    .services .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .action .center {
        padding: 25px 0 25px 0;
    }
    .check {
        padding: 20px;
    }
    .check .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .check .row-low {
        padding: 20px 0 20px 0;
    }
    .check h1 {
        font-size: 40px;
        color: #000;
        padding: 5px 0 5px 0;
    }
    .exp {
        padding: 20px;
    }
    .exp .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .exp .row .col .nav-s {
        row-gap: 35px;
        padding: 20px 0 20px 0;
        flex-direction: row;
    }
    .quote .center {
        padding: 30px 0 30px 0;
    }
    .team {
        padding: 20px;
    }
    .team .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .contact {
        padding: 20px;
    }
    .contact .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .contact .flex {
        flex-direction: column;
        row-gap: 20px;
    }
    #sub {
        padding: 10px;
        width: 94%;
        margin: 0 auto;
    }
    #msg {
        padding: 10px 10px 50px 10px;
        width: 94%;
        margin: 0 auto;
    }
    .contact .btn {
        left: 0;
    }
    footer .footer-top {
        padding: 20px;
    }
    .footer-top .row {
        flex-direction: column;
        row-gap: 20px;
    }
    footer .row .col input {
        width: 97%;
    }
    footer .footer-bottom {
        padding: 20px;
    }
}

@media only screen and (min-width:601px) and (max-width:820px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
    header {
        padding: 20px 0 20px 0;
        height: 120vh;
    }
    header .lists-flex {
        display: none;
    }
    header .none-menu {
        display: block;
    }
    #check:checked~.sidebar {
        left: 35px;
        bottom: -70px;
        width: 90%;
        z-index: 1;
        background-color: #fff;
    }
    #check:checked~label #cancel {
        top: 12%;
        left: 12%;
        font-size: 30px;
        color: #333;
    }
    .sidebar ul li ul li a {
        right: 10px;
        width: 70%;
        color: #333;
    }
    .sidebar ul li ul li:hover a {
        color: #333;
        transition: 0.3s ease-in;
        background: #facd74;
    }
    #firstList {
        background: #facd74;
        color: #333;
    }
    header .none-menu a {
        margin: 0 auto;
    }
    header .none-menu {
        padding: 0 20px 0 0;
    }
    header .header-btn a {
        margin: 0 auto;
    }
    .blog {
        left: 50%;
        top: 65%;
    }
    .blog .info h1 {
        font-size: 35px;
    }
    .blog .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .inside-our-factory {
        padding: 50px;
    }
    .inside-our-factory .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .our-work {
        padding: 50px;
    }
    .our-work .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .services {
        padding: 50px;
    }
    .services .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .action .center {
        padding: 35px 0 35px 0;
    }
    .check {
        padding: 50px;
    }
    .check .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .check h1 {
        font-size: 40px;
        color: #000;
        padding: 10px 0 10px 0;
    }
    .exp {
        padding: 50px;
    }
    .exp .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .quote .center {
        padding: 50px 0 50px 0;
    }
    .team {
        padding: 50px;
    }
    .team .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .contact {
        padding: 50px;
    }
    .contact .row,
    .flex {
        flex-direction: column;
        row-gap: 20px;
    }
    #sub {
        padding: 10px;
        margin: 0;
    }
    #msg {
        padding: 10px 10px 50px 10px;
        margin: 0;
    }
    .contact .btn {
        left: 0;
    }
    footer .footer-top {
        padding: 50px;
    }
    footer .row {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media only screen and (min-width:820px) and (max-width:920px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
    header {
        padding: 20px 0 20px 0;
        height: 110vh;
    }
    header .lists-flex {
        display: none;
    }
    header .none-menu {
        display: block;
    }
    header .header-btn a {
        margin: 0 auto;
    }
    .sidebar ul li ul li a {
        right: 0;
        width: 90%;
        color: #333;
    }
    #check:checked~.sidebar {
        z-index: 1;
        background-color: #fff;
    }
    .sidebar ul li ul li:hover a {
        color: #333;
        transition: 0.3s ease-in;
        background: #facd74;
    }
    #firstList {
        background: #facd74;
        color: #333;
    }
    #check:checked~label #cancel {
        top: 11%;
        left: 11%;
    }
    .blog .row {
        flex-direction: column;
        row-gap: 20px;
    }
    .inside-our-factory,
    .our-work,
    .services,
    .exp,
    .team,
    .contact {
        padding: 50px;
    }
    .check {
        padding: 75px;
    }
    .contact .row {
        align-items: center;
    }
    .contact .flex {
        align-items: center;
    }
    .contact .flex .nav li:nth-child(2),
    .contact .row .nav li:nth-child(2) {
        font-size: 15px;
    }
    #sub {
        padding: 10px;
        margin: 0 0 0 10px;
        width: 95%;
    }
    #msg {
        padding: 10px 10px 50px 10px;
        width: 95%;
        margin: 0 0 0 10px;
    }
    footer .footer-top {
        padding: 50px;
    }
    footer .row {
        flex-direction: column;
        row-gap: 20px;
    }
}

@media only screen and (min-width:921px) and (max-width:1024px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
    .check,
    .exp,
    .team,
    .team,
    .our-work,
    .contact,
    .services,
    .inside-our-factory {
        padding: 75px;
    }
    #msg {
        padding: 10px 10px 50px 10px;
        width: 94.5%;
        margin-left: 15px;
    }
    #sub {
        margin-left: 15px;
        width: 97.5%;
    }
    .contact .btn {
        left: 275px;
        top: 50px;
    }
    footer .footer-top {
        padding: 50px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1240px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
    #sub {
        padding: 10px;
        width: 94%;
        margin-left: 25px;
    }
    #msg {
        padding: 10px 10px 50px 10px;
        margin-left: 25px;
    }
    .contact .btn {
        top: 50px;
        left: 0;
        text-align: end;
    }
}

@media only screen and (min-width:1241px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
}

@media only screen and (min-width:1241px) {
    html,
    body {
        overflow-x: hidden;
    }
    * {
        padding: 0;
        margin: 0;
    }
     ::-webkit-scrollbar {
        display: none;
    }
}