.hero-banner {
    margin-top: -121px;
    position: relative;
}

.hero-banner .slide-item {
    position: relative;
    color: #fff;
}

.hero-banner .slide-item img,
.hero-banner .slide-item .responsive-banner {
    width: 100%;
    object-fit: cover;
}

.hero-banner .slide-item .responsive-banner {
    display: none;
}

.hero-banner .slide-content {
    position: absolute;
    top: 50%;
    left: 110px;
    transform: translate(-0%, -50%);
    padding: 00px;
    opacity: 0;
    max-width: 45%;
    margin: auto;
    width: 100%;
    text-align: center;
}

.hero-banner .slide-content h1,
.hero-banner .slide-content h2 {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 44px;
    font-weight: 100;
}

.hero-banner .slide-content p {
    margin: 0;
    opacity: 0.9;
    opacity: 0;
    font-size: 21px;
    color: white;
    font-weight: 100;
    line-height: 31px;
}

.hero-banner .slide-content .button1 {
    position: relative;
}

.banner_btn a {
    overflow: hidden;
    padding: 8px 20px;
    outline: 1px solid #fff;
    outline-offset: -5px;
    font-weight: 100;
    font-size: 15px;
    display: inline-block;
    border-radius: 99px;
    transition: .3s all ease;
    text-decoration: none;
    background: #6600ff;
    color: #fff;
    position: relative;
    z-index: 9;
    width: 100%;
    max-width: 220px;
    text-align: center;
    margin: 0 10px;
}

.banner_btn a:hover {
    background-color: var(--primary-color);
    transition: .3s all ease;
}

.banner_btn {
    position: absolute;
    right: 0;
    bottom: 90px;
    width: 55%;
    display: flex;
    justify-content: center;
}

/* Animations */
.hero-banner .animate__fadeUp {
    animation: fadeUp 1.5s forwards;
}

.hero-banner .animate__fadeDelay {
    animation: fadeUp 1.5s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pin-btn {
    width: 25px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    /* move up */
    100% {
        transform: translateY(0);
    }

    /* back to start */
}

 
.hero-banner .owl-nav {
    margin-top: 0;
    text-align: right;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.hero-banner .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
}
.hero-banner .owl-nav .owl-next {
    position: absolute;
    right: 20px;
}

.hero-banner .owl-nav img {
    width: 20px;
    margin: 0px;
}

.top-banner-line {
    margin: 0;
    margin-top: -6px;
}

.heading-section {
    margin-bottom: 40px;
}

/* production section start here */
.product-section {
    background: url('../images/product-bg.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-section h2 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    background: url('../images/colorful-wallpaper.jpg') no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 100;

}

.product-section .product-text {
    text-align: left;
    padding-left: 32px;
}

.product-section .product-text h3 {
    font-size: 38px;
    color: white;
    font-weight: 100;
    margin-bottom: 20px;
}

.product-section .col-lg-8 {
    flex: 0 0 auto;
    width: 61.666667%;
}

.product-section .col-lg-4 {
    flex: 0 0 auto;
    width: 38.333333%;
}

.product-section p {
    color: white;
    font-size: 20px;
}

.product-section .nav-link {
    background-image: url('../images/product-bg.jpg');
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 10px;
}

.product-section .nav {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.product-section .nav-item {
    max-width: 25%;
    flex: 1;
}

.product-section .nav-item p {
    color: white;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: normal;
}

.product-section .nav-item:hover img {
    transform: scale(1.13);
}


.product-section .nav-link img {
    max-height: 100px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.product-section .nav-link.active img {
    transform: scale(1.1);
}


.fancy-btn {
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    text-decoration: none;
    background: linear-gradient(90deg, #ff00ff, #00e1ff, #00ff00);
    background-size: 200% 200%;
    border: none;
    clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
    transition: all 0.3s ease-in-out;

    background: url("../images/btn-bg.png") no-repeat;
    background-size: cover;
    margin-top: 20px;
}

/* Hover effect (moves gradient) */
.fancy-btn:hover {
    color: white;
    background-position: 100% 0;
}

/* production section end here */

/* testimonial section start here */

.marquee {
    width: 100%;
    color: #fff2a8;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 30px;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
    font-weight: 100;
    font-size: 60px;
    margin: 0;
    color: #fff2a8;
    line-height: normal;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.marquee img {
    width: 90px;
    margin-left: 10px;
    vertical-align: middle;
}




/* product slider section start here */
.product-sec {
    background-image: url('../images/product-section-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
}

.product-content-box {
    padding: 20px;
    text-align: center;
}

.product-box h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    font-weight: 100;
    line-height: 30px;
    text-transform: capitalize;
}

.product-content-box p {
    color: white;
    font-size: 14px;
    font-style: italic;
}

.product-content-box p a {
    color: white;
    border-bottom: 1px solid white;
}

.product-content-box p a:hover {
    color: #229024;
}




.product-sec .owl-nav {
    margin-top: 0;
    text-align: right;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.product-sec .owl-nav .owl-prev {
    position: absolute;
    left: 20px;
}
.product-sec .owl-nav .owl-next {
    position: absolute;
    right: 20px;
}
.product-sec .owl-nav img {
    width: 50px;
    margin: 0px;
}



.marquee2 {
    width: 100%;
    color: #fff2a8;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 30px;
}

.marquee2 p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee2 10s linear infinite;
    font-weight: 100;
    font-size: 60px;
    margin: 0;
    color: #fff2a8;
    line-height: normal;
}

@keyframes marquee2 {
    100% {
        transform: translate(0, 0);
    }

    0% {
        transform: translate(-100%, 0);
    }
}

.marquee2 img {
    width: 90px;
    margin-left: 10px;
    vertical-align: middle;
}


/* about section end here */
.for-bg-class {
    background: url('../images/bg-img.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
}

.about-sec {
    position: relative;
}

.about-sec .row {
    margin: 0;
}

.about-sec .col-lg-6 {
    padding: 0;
}

.about-sec h2,
.contact-us h2 {
    font-size: 45px;
    color: #888888;
    font-weight: 100;
    margin-bottom: 20px;
    padding-top: 50px;

}

.about-sec h4 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #ff0000;
}

.about-sec p {
    color: #888888;
    font-weight: 100;
    margin-left: 20px;
    margin-left: 20px;
    font-size: 19px;
}

.about-text {
    position: relative;
    padding-left: 50px;
    margin-left: 170px;
}

.about-sec ul {
    padding-left: 60px;
}

.about-sec li {
    list-style: disc;
    color: #888888;
    font-weight: 100;
    margin-bottom: 15px;
}

.about-text::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #ff0000;
    left: 0;
    top: 0;
    max-height: 660px;
}

.about-text::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff0000;
    left: -7px;
    top: 649px;
    border-radius: 100%;

}

.about-sec .for-space {
    margin-top: 60px;
}

.ul-margin {
    margin-right: -20px;
}

.about-right-text {
    width: fit-content;
    margin: auto;
}

.big-icon {
    position: absolute;
    left: 40.550%;
    top: 275px;
    width: 240px;
    opacity: 0.2;
    height: auto;
    object-fit: contain;
}

/* about section end here */



/* contact section start here */
.contact-us {
    max-width: 850px;
    margin: auto;
}

.custom-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-form input,
.custom-form textarea {
    background: transparent;
    border: 1px solid #888888;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: #888888;
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-color: #ff0000;
    /* Predator red focus */
}

.contact-us p {
    color: #888888;
    font-size: 24px;
    padding: 0 40px;
    margin-bottom: 0;
}

.contact-us h2 {
    margin-bottom: 40px;
}

.contact-text {
    padding-top: 60px;
}

.contact-us button {
    color: #ffffff;
    background: transparent;
    border-radius: 40px;
    padding: 7px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-left: 0px;
    font-weight: 100;
    box-shadow: 0 0 3px #bb0000, 0 0 8px hsl(121, 62%, 35%), inset 0 0 10px #bb0000, inset 0 0 10px #bb0000;
    border: 0;
    width: fit-content;
    margin-top: 20px;
}

.contact-us button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* border thickness */
    border-radius: inherit;
    background: linear-gradient(90deg, #bb0000, #bb0000);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

}

.contact-us button:hover {
    background: rgba(0, 255, 102, 0.1);
    box-shadow: 0 0 7px #bb0000, 0 0 14px hsl(121, 62%, 35%), inset 0 0 14px #bb0000, inset 0 0 10px #bb0000;
}

/* contact section end here */
footer {
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url();
}

.footer-wrapper {
    padding-left: 28%;
    max-width: 1050px;
    position: relative;
}

footer h4 {
    font-size: 18px;
    font-weight: 100;
    color: #888888;
}

footer li {
    font-weight: 100;
    color: #fff;
}

footer li a {
    color: #fff;
}

footer li a:hover {
    color: var(--primary-color);
}

.footer-shape {
    max-width: 250px;
}

.footer-shape {
    max-width: 260px;
    margin-left: -70px;
}

.footer-logo {
    margin-top: -100px;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: end;
    padding-right: 30px;
    margin-bottom: 0;
}

.social-icons li img {
    width: 30px;
    transition: .3s ease all;
}

.social-icons li a:hover img {

    filter: brightness(2);
}

.bottom-shape {
    text-align: right;
    margin-top: -55px;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
    margin-bottom: 0;
}

.footer-shape2 {
    max-width: 260px;
    margin-left: 0px;
    margin-right: -70px;
}

.copyright {
    font-size: 14px;
    color: #888888;
    text-align: center;
    margin-bottom: 0;
    padding-top: 20px;
}

.managed-copyright {
    font-size: 14px;
    color: #888888;
    text-align: center;
    margin-bottom: 0;
    padding-top: 3px;
    padding-bottom: 20px;
}

.back-to-top {
    width: 30px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 9;
    animation: floatUpDown 2s ease-in-out infinite;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none; /* hidden by default */
  z-index: 999;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#backToTop.show {
  display: block;
  opacity: 1;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

    /* move up */
    100% {
        transform: translateY(0);
    }

    /* back to start */
}

.whats-ic {
    position: fixed;
    bottom: 110px;
    /* distance from bottom */
    right: 5px;
    /* distance from right */
    z-index: 9999;
}

.btn-whatsapp-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.btn-whatsapp-pulse img {
    width: 40px;
    height: 40px;
}

/* 🔹 Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width:1199px) {
    .about-text {
        padding-left: 40px;
        margin-left: 100px;
    }

    .big-icon {
        left: 38.55%;
        top: 235px;
        width: 240px;
    }

    .site-navbar .button2 {
        margin-left: 20px;
    }

    .marquee2 p {
        font-size: 50px;
    }

    .marquee2 img {
        width: 70px;
    }
}

@media (max-width:1080px) {

    .hero-banner .slide-content h1,
    .hero-banner .slide-content h2 {
        font-size: 37px;
    }

    .hero-banner .slide-content {
        left: 70px;
        transform: translate(-0%, -50%);
        padding: 00px;
        opacity: 0;
        max-width: 50%;
    }

    .product-section .nav-link {
        height: 250px;
    }

    .product-section .nav-link img {
        max-height: 90px;

    }
}

@media (max-width:992px) {
    .hero-banner .slide-item {
        position: relative;

    }

    .hero-banner .slide-content {
        left: 20px;
        transform: unset;
        margin: 0;
        max-width: 90%;
        top: 63%;
    }

    /* .hero-banner .slide-item img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
} */

    .hero-banner .slide-item img,
    .hero-banner .slide-item .responsive-banner {
        display: none;
    }

    .hero-banner .slide-item .responsive-banner {
        display: inline-block;
        height: 790px;
        object-fit: cover;
        object-position: top;
    }


    .banner_btn {
        /* position: unset;
    top: inherit; */
        width: 100%;
        justify-content: start;
        margin-top: 20px;
    }

    .banner_btn a {
        width: auto;
    }






    .hero-banner .slide-content h1,
    .hero-banner .slide-content h2 {
        font-size: 33px;
    }

    .hero-banner .slide-content br {
        display: none;
    }

    .product-section .col-lg-8 {
        flex: 0 0 auto;
        width: 55.666667%;
    }

    .product-section .col-lg-4 {
        flex: 0 0 auto;
        width: 44.333333%;
    }

    .product-section .product-text {
        text-align: left;
        padding-left: 10px;
    }

    .product-section .product-text h3 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .product-section p {
        color: white;
        font-size: 17px;
    }

    .product-section .nav-link {
        height: 180px;
    }

    .product-section .nav-link img {
        max-height: 60px;
    }

    .fancy-btn {
        font-size: 18px;
    }

    .product-section h2 {
        font-size: 40px;
    }

    .marquee p {
        font-size: 45px;
    }

    .marquee img,
    .marquee2 img {
        width: 60px;
    }

    .about-sec .col-lg-6 {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
    }

    .about-image {
        order: 2;
        display: inline-block;
        max-width: 500px;
        margin: auto;
        margin-top: 20px;
    }

    .about-text {
        padding-left: 20px;
        margin-left: 20px;
    }

    .about-right-text {
        order: 1;
        margin: 0;
        padding-left: 20px;
        margin-left: 20px;
    }

    .about-sec .for-space {
        margin-top: 20px;
    }

    .about-sec h2,
    .contact-us h2 {
        font-size: 35px;
    }

    .contact-text {
        padding-top: 0px;
        text-align: center;
    }

    .contact-us p {
        margin-bottom: 20px;
    }

    .contact-us h2 {
        padding-top: 0;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin-top: -70px;
    }
    .hero-banner .owl-nav{
        
    top: 46%;
    }
}


@media (max-width:900px) {
    .hero-banner .slide-item .responsive-banner {
        height: 790px;
    }
}

@media (max-width:850px) {
    .hero-banner .slide-item .responsive-banner {
        height: 730px;
    }

    .hero-banner .slide-content {
        top: 57%;
    }
}


@media (max-width:767px) {
    .product-section .nav-link {
        height: 110px;
    }

    .product-section .nav {
        gap: 13px;
    }

    .product-section .col-lg-8 {
        flex: 0 0 auto;
        width: 42.666667%;
    }

    .product-section .col-lg-4 {
        flex: 0 0 auto;
        width: 57.333333%;
    }

    .fancy-btn {
        font-size: 18px;
        margin-top: 8px;
    }

    .product-section .product-text h3 {
        font-size: 28px;
    }

    .product-section .product-text {
        padding: 0;
    }

    .fancy-btn {
        padding: 8px 25px;
    }

    .product-section .nav-item p {
        font-size: 16px;
    }

    .marquee,
    .marquee2 {
        padding: 10px;
    }

    .marquee p,
    .marquee2 p {
        font-size: 33px;
    }

  .product-sec .owl-nav .owl-prev{
    left: 10px;
  }
  .product-sec .owl-nav .owl-next{
    right: 10px;
  }
    .product-sec .owl-nav img {
        width: 40px;
        margin: 0;
    }

    .about-sec h2,
    .contact-us h2 {
        padding-top: 20px;
        font-size: 32px;
        margin-bottom: 10px;

    }

    .ul-margin {
        margin: 0;
    }

    .contact-us h2 {
        padding-top: 0;
    }

    .contact-us p {
        font-size: 20px;
    }

    .footer-wrapper {
        padding: 0;
    }

    .footer-logo {
        margin-top: -40px;
    }

    .bottom-shape {
        margin-top: -25px;
    }

    .footer-shape2 {
        max-width: 240px;
        margin-left: 0px;
        margin-right: -120px;
    }

    footer h4 {
        font-size: 17px;
    }

    footer li {
        font-size: 16px;
    }

    .footer-shape {
        max-width: 240px;
        margin-left: -100px;
        margin-bottom: 20px;
    }

    .copyright {
        padding: 15px 0;
        line-height: 20px;
    }

    .product-section h2 {
        font-size: 35px;
    }

    .big-icon {
        left: 50%;
        top: 235px;
        width: 170px;
        transform: translateX(-50%);
    }

    .hero-banner .slide-content h1,
    .hero-banner .slide-content h2 {
        font-size: 30px;
    }

    .hero-banner .slide-content p {
        font-size: 19px;
    }

    .hero-banner .slide-content {
        top: 54%;
        max-width: 94%;
    }

    .banner_btn {
        bottom: 110px;
    }
.hero-banner .owl-nav .owl-prev { 
    left: 10px;
}
.hero-banner .owl-nav .owl-next { 
    right: 10px;
}
}

@media (max-width:575px) {
    .product-content-box {
        padding: 20px 10px;
    }

    .product-box h4 {
        font-size: 17px;
        line-height: 24px;
    }

    .product-section .col-lg-8,
    .product-section .col-lg-4 {
        width: 100%;
    }

    .product-section .col-lg-8 img {
        max-width: 380px;
    }

    .footer-logo {
        margin-top: 0px;
    }

    .social-icons {
        padding-right: 12px;
    }

    .footer-shape2 {
        max-width: 140px;
        margin-left: 0px;
        margin-right: -100px;
    }

    .social-icons {
        display: flex;
        gap: 5px;
    }

    .footer-shape {
        max-width: 170px;
        margin-left: -80px;
    }

    .about-sec ul {
        padding-left: 40px;
    }

    .hero-banner .slide-content {
        top: 66%;
        transform: translate(-0%, -62%);
        max-width: 94%;
    }

    .hero-banner .slide-content h1,
    .hero-banner .slide-content h2 {
        font-size: 27px;
    }
}

@media (max-width:480px) {
    .product-section h2 {
        font-size: 32px;
    }

    /* .product-section .nav-item {
    flex: 0 0 50%;
    max-width: 48%;
} */
    .product-section .nav-link {
        height: 80px;
    }

    .product-section .nav-item p {
        font-size: 15px;
    }

    .product-slider {
        max-width: 330px;
        margin: auto;
    }

    .product-box h4 {
        font-size: 18px;
    }

    .product-sec .owl-nav {
        padding: 0;
        margin: auto;
        text-align: center;
    }

    .marquee p,
    .marquee2 p {
        font-size: 30px;
    }

    .marquee img,
    .marquee2 img {
        width: 46px;
    }

    .bottom-shape {
        margin-top: -15px;
    }

    .contact-us p {
        font-size: 18px;
        padding: 0;
    }

    .contact-us {
        padding-top: 0px;
    }

    .about-text {
        margin-left: 10px;
        padding-left: 15px;
    }

    .about-sec p {
        margin-left: 15px;
    }

    .about-sec ul {
        padding-left: 35px;
    }

    .about-sec li {
        margin-bottom: 10px;
    }

    .heading-section {
        margin-bottom: 25px;
    }

    .banner_btn a {
        padding: 8px 15px;
        margin: 0;
        margin-left: 20px;
    }

    .banner_btn a:last-child {
        margin-left: 10px;
    }

    .hero-banner .slide-item .responsive-banner {
        height: 770px;
    }

    .hero-banner .slide-content {
        max-width: 88%;
        left: 25px;
    }

    .hero-banner .slide-content {
        top: 68%;
    }

    .pin-btn {
        width: 20px;
    }

    .hero-banner .owl-nav {
        padding-left: 20px;
    }
.product-sec .owl-nav .owl-prev{
    left: -20px;
  }
  .product-sec .owl-nav .owl-next{
    right: -20px;
  }
}


@media (max-width:374px) {
    .product-section .nav-link {
        height: 70px;
    }

    .product-section .nav-link img {
        max-height: 50px;
    }

    .product-slider {
        max-width: 300px;
        margin: auto;
    }

    .about-sec h2,
    .contact-us h2 {
        margin-top: 0;
        padding-top: 0;
    }

    .about-sec ul {
        padding-left: 25px;
    }

    .about-sec .for-space {
        margin-bottom: 10px;
    }

    .space-class {
        padding: 30px 0;
    }

    .bottom-shape {
        margin-top: 10px;
    }

    .hero-banner .slide-content h1,
    .hero-banner .slide-content h2 {
        font-size: 22px;
    }

    .hero-banner .slide-content p {
        font-size: 17px;
        line-height: 21px;
    }

    .hero-banner .slide-content {
        top: 65%;
    }

    .banner_btn a {
        padding: 8px 12px;
        font-size: 14px;
        margin-left: 10px;
    }

    .hero-banner .slide-item .responsive-banner {
        height: 650px;
    }

    .contact-us {
        padding-top: 0px;
    }
    .product-sec .owl-nav .owl-prev{
    left: -6px;
  }
  .product-sec .owl-nav .owl-next{
    right: -6px;
  }
      .product-sec .owl-nav img {
        width: 35px;
      }
}