/* General Reset & Variables */
:root {
    --primary-color: #0d3b8e; /* Dark blue from logos/buttons */
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-gray: #f2f5fc;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
html, body {margin: 0;padding: 0;}
IMG {border-width:0;}
* {list-style-type: none;margin: 0;padding: 0;font-family: 'Open Sans', sans-serif;}
a { text-decoration: none !important;}
body {
    font-family: 'Open Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Top bar */
.top-bar {
    font-size: 1rem;
    width: 100%;
    overflow: hidden;display: flex;align-items: center;
    color: #000;
    padding: .5rem 0;
}
.top-bar a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;   color: #000;
}
.top-bar a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
   max-width: 1500px;
    padding: 0 2%;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
    margin: 0 auto;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 5px;
    vertical-align: middle;
}
.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size:.95rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}
.btn-primary-custom {
    background-color: var(--text-dark);
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-weight: normal;
}
.btn-primary-custom:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.search-icon {
    color: var(--text-dark);
    font-size: 1rem;
    margin-left: 1rem;
    cursor: pointer;
}
/*导航*/
.menu-bg{position: fixed;z-index: 2;width: 100%;overflow: hidden}
.menu-bg.shadow{background: #fff}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .swiper {
    width: 100%;
    overflow: hidden;
    height: auto;
}
.hero-slider img{width: 100%;height: auto}
.main-hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-hero-prev, .main-hero-next {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}
.main-hero-prev:hover, .main-hero-next:hover {
    color: #fff;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}
.hero-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 50px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Products Section */
.products-section {
    padding: 0 0 80px 0;
    background-color: #fff;
}
.product-headline{background: url("../images/pro-bg.jpg") no-repeat top center;background-size: cover;padding:1.1rem 0}
.productsSwiper{padding: 1rem 0!important;margin: 1rem auto!important;}

.product-card {
    background: linear-gradient(146deg, #EAEBED 50%, #F5F5F5 50%);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin: 20px auto;

}
.product-card h3 {
    font-size: 1.4rem;
    width: 100%;margin:.5rem auto;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;
    color: var(--text-dark);
    text-align: left;
}
.product-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;text-overflow: ellipsis;overflow: hidden;
    text-align: left;
    margin:.5rem auto;
}
.btn-read-more {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 8px 25px;
    font-size:1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: auto;
    background-clip: border-box;
    border-left: solid 5px #768cb9;text-transform: uppercase;

}
.product-card:hover  .btn-read-more {
    background-color: #092c6b;
    color: #fff;
}
.swiper-button-custom {
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.swiper-button-custom:hover {
    background-color: #092c6b;
}

/* About Us Section */
.about-section {

    background: url("../images/about-bg.jpg") no-repeat center center;
    background-size: cover;


}
.about-image {
    flex: 1 1 50%;
    min-height: 550px;
    background: url('../images/aboutImg.jpg') no-repeat center center/cover;
}

.about-box{
    display: flex;
    flex-wrap: wrap;
    position:relative;
}
.about-info{position: absolute;width: 100%;left: 0;top:0;bottom:0;display:flex;justify-content: flex-end;align-items: center}
.about-info-box{max-width:1500px;margin:0 auto;height:100%;display: flex;align-items: center;justify-content: flex-end;position: relative }
.about-content {
    flex: 1 1 50%;
    background-color: rgba(15,53,116,.85);
}
.about-content1 {
    width: 48%;float: right;
    color: #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-content1 h2 {
    font-size: 2.5rem;
}
.about-content1 p {
    font-size: 1rem;
    line-height: 1.9;
    color: #f0f2f7;
    margin: 1rem auto;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;

}
.about-content1 .btn-read-more {
    background-color: #fff;
    color: var(--primary-color);
    align-self: flex-start;
    border: none;
    margin-top:1rem ;
}
.about-content .btn-read-more:hover {
    background-color: #e9ecef;
}
.about-contact {
    display: flex;
    position: absolute;bottom:0;width:calc(50% + 50px);right: 0;
    background:#004098;
    padding: 10px 0 10px 20px;
    color: #fff;
    border-top-left-radius:10px;
}
.about-contact div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}
.about-contact .bi{background: rgba(255,255,255,.1);border-radius: 80px;margin-left:.5rem;width: 40px;height:40px;display: flex;align-items: center;justify-content: center}
    /* Advantage Section */
.advantage-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    background: url("../images/advantage-bg.jpg") no-repeat;background-size: cover;
}
.advantage-card {
    background-color: #f6f6f6;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;cursor: pointer;
    height: calc(100% - 30px);
}
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.adv-icon {
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.adv-icon .icon{background: #004098;border-radius: 80px;padding:10px;
    border: solid 3px #b0d0fb;width:80px;height: 80px;display: flex;align-items: center;justify-content: center}
.adv-icon .icon img{max-width: 90%;height: auto}
.advantage-card h4 {
    font-size:1.6rem;
    width: calc(100% - 90px);
    color:#333;margin:0 0 0 .5rem;

}
.advantage-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.adv-row div:nth-child(even) .advantage-card{background: #eaf3ff}

/* Hot Selling Products */
.hot-bg{width:100%; }
.hot-bg img{max-height: 440px;width: 100%;object-fit: cover}
.hot-selling-section {
    position: relative;
    margin-top:-120px;

}
.hot-selling-overlay {
    bottom: -150px;
    left: 0;
    width: 100%;
    z-index: 10;
}
.hot-selling-container {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding:35px 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

}
.hot-selling-head{font-size: 2.4rem}
.hot-top{padding: 0 2rem}
.hot-product-card {
    text-align: center;
    margin:2rem auto;
}
.hot-product-image {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin: 15px 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}
.hot-product-image img{width: 100%;height: auto;object-fit: cover;aspect-ratio: 1/1;transition: all .3s}

.hot-product-card:hover .hot-product-image img{transform: scale(1.1)}
.hot-product-card p {
    padding: 0 .5rem;
    text-align: left;
    color: var(--text-dark);
}
.hot-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}
.hot-nav-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #2c2f3c; /* Dark slate gray */
    color: #fff;
    padding: 80px 0 20px;
    margin-top: 40px; /* Space for overlay */
}
.newsletter {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}
.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.newsletter p {
    color: #adb5bd;
    margin-bottom: 20px;
}
.newsletter-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}
.newsletter-form input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    width: 30%;
}
.newsletter-form input::placeholder {
    color: #888;
}
.newsletter-form .vertical{width:150px}
.newsletter-form button {
    background-color: #fff;
    color: #2c2f3c;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
}
.footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact li {
    color: #adb5bd;
    margin-bottom: 10px;
    display: flex;
    align-items:center;
    gap: 10px;
}
.footer-contact i {
    color: #fff;
    margin-top: 4px;
}
.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #adb5bd;
    font-size: 0.9rem;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: #adb5bd;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: #fff;
}
.navbar .container{max-width:1500px!important;}
.container-box{max-width: 1500px;margin: 0 auto;padding: 0 3%}
.headline-space{margin-bottom:2.5rem}
/*搜索*/
.search-bar-container{
    display: flex;
    align-items: center;
    background-color: rgb(240 248 255 / 20%);
    padding:0 0 0 5px;
    width: 300px;height: 28px;border-radius: 50px;
    position: relative;
    transition: width .5s;
    border: solid 1px #eee;
    float: right;overflow: hidden;
}
.magnifier{
    width: 18px;
    cursor: pointer;
    position: absolute;
    left: 5px;
}
.input{
    background-color: transparent;
    border: none;
    margin: 0px 0px 0 28px;
    width: 100%;
    outline: none;
    color: rgb(100,100,100);
    transition: all .3s;
    transition-delay: 0.5s;
}
.input input{width: 78%;float: left;line-height: 30px;font-size: 14px;outline: none;border: none;background:none}
.ssbutton{width: 22%;height: 28px;font-size: 14px;line-height:28px; border-radius: 30px;
    text-align: center;
    background: #004098;color: #fff;display: block;border: none;float: right;transition:width .3s}
.active1.search-bar-container{
    width: 28px;
}
.active1 .input input{display: none}
.active1 .input .ssbutton{display: none;transition:all .3s;}

.position {
    max-width: 1500px;
    margin: 0 auto;
    line-height: 35px;
    font-size:1rem;
    color: #555;
    padding: 8px 15px
}

.position a {
    color: #555
}



.nynav {
    background: #f3f3f3;
    overflow: hidden
}

.nyposition {
    max-width: 1500px;
    padding: 0 0 0 30px;
    overflow: hidden;
    line-height: 40px;
    font-size: 15px;
    margin: 0 auto;
}
.nyposition a{color: #444}
.menu-bg1{position: relative;z-index: 9}
.menu-bg1.shadow{position: fixed;background: #fff;width: 100%}
.inner-banner{width: 100%;}
.inner-banner img{width: 100%;height: auto}
/*页码*/
.list-page {
    text-align: center;
    width: 98%;
    margin: 1.5rem auto 2rem;display: flex;justify-content: center;
}

.pagination a {

    color: #0b112a !important
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff !important;
    cursor: default;
    background-color: #333 !important;
    border-color: #ddd !important;
}
@keyframes bannerImg {
    0%{transform: scale(1.2);}
    50%{transform: scale(1);}
    100%{transform: scale(1)}

}
.hero-slider img{animation: bannerImg 5s ease-in infinite;animation-iteration-count:1}
#CB_ContentHide {
    background: rgba(0, 0, 0, .8) !important;
}
.nav-item a.active{color: #004098!important;}
/*about us*/

/* Media Queries */
@media (max-width: 991.98px) {
    .logo-img{width: 80%;height: auto}
    .about-image {
        min-height: 300px;
    }
    .about-contact {
        flex-direction: column;
        gap: 15px;
    }
    .hot-selling-overlay {
        position: relative;
        bottom: 0;
        margin-top: -50px;
    }
    .footer {
        margin-top: 10px;
        padding: 25px 10px;
    }

    /* About Us Section */
    .about-section {
        background: url("../images/about-bg.jpg") no-repeat center center;
        background-size: cover;
    }
    .about-image {
        display: none;
    }
    .about-box{
        display: block;
        position:relative;
    }
    .about-info{position:relative;width: 100%;left: 0;top:0;bottom:0;display:flex;flex-direction: column;}
    .about-info-box{max-width:1500px;margin:0 auto;height:100%;padding-top: 1rem;display: flex;
        align-items: center;justify-content: flex-end;position: relative;background: rgba(15,53,116,.75) }
    .about-content {
display: none;
    }
    .about-content1 {
        width: 100%;float: right;
        color: #fff;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .about-content1 h2 {
        font-size: 1.6rem;
    }
    .about-content1 p {
        font-size:.9rem;
        line-height: 1.6;
        color: #f0f2f7;
        margin: 1rem auto;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;

    }
    .about-content1 .btn-read-more {
        background-color: #fff;
        color: var(--primary-color);
        align-self: flex-start;
        border: none;
        font-size: .9rem;
    }
    .about-content .btn-read-more:hover {
        background-color: #e9ecef;
    }
    .about-contact {
        display: block;
        position: relative;bottom:0;width:100%;right: 0;
        background:#004098;
        padding: 10px 0 10px 20px;
        color: #fff;
        border-top-left-radius:10px;
        font-size: .9rem;
    }
    .about-contact div {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 1rem;
    }
    .about-contact .bi{background: rgba(255,255,255,.1);border-radius: 80px;
        margin-left:.5rem;width: 40px;height:40px;display: flex;align-items: center;justify-content: center}

    /* Section Titles */
    .section-title {
        font-size:1.6rem;
        margin-bottom: 5px;
        color: var(--text-dark);
    }
    .section-subtitle {
        color: var(--text-muted);
        font-size: .8rem;
        margin-bottom: 30px;line-height: 1.3;
    }

    /* Products Section */
    .products-section {
        padding: 0 0 20px 0;
        background-color: #fff;
    }
    .product-headline{background: url("../images/pro-bg.jpg") no-repeat top center;background-size: cover;padding:1.1rem 0}
    .productsSwiper{padding: 0rem 0!important;margin: 1rem auto!important;width: 90%;}

    .product-card {
        background: linear-gradient(146deg, #EAEBED 50%, #F5F5F5 50%);
        border-radius: 30px;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid #eee;
    }
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .product-image {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        margin: 20px auto;

    }
    .product-card h3 {
        font-size: 1.2rem;
        width: 100%;margin:.5rem auto;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;
        color: var(--text-dark);
        text-align: left;
    }
    .product-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        white-space: nowrap;text-overflow: ellipsis;overflow: hidden;
        text-align: left;
        margin:0 auto;
    }
    .product-card .btn-read-more {
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 30px;
        font-size:1rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
        margin:0 auto;
        background-clip: border-box;
        border: none;

    }

    .product-card  .btn-read-more {
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 30px;
        padding: 8px 25px;
        font-size:.95rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
        margin-top: auto;
        background-clip: border-box;
        text-transform: none;

    }
    .hero-slider img{height:60vw;width: auto}
    .hero-slider .main-hero-prev, .hero-slider .main-hero-next{display:none}
    /* Advantage Section */
    .advantage-section {
        padding: 30px 0;
        background-color: var(--bg-light);
        background: url("../images/advantage-bg.jpg") no-repeat;background-size: cover;
    }
    .advantage-card {
        background-color: #f6f6f6;
        border-radius: 12px;
        padding:1rem .5rem;
        margin-bottom: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        transition: transform 0.3s ease;cursor: pointer;
        height: calc(100% - 30px);

    }
    .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
    .adv-icon {
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .adv-icon .icon{background: #004098;border-radius: 80px;padding:10px;
        border: solid 3px #b0d0fb;width:55px;height: 55px;display: flex;align-items: center;justify-content: center}
    .adv-icon .icon img{max-width: 100%;height: auto}
    .advantage-card h4 {
        font-size:1.1rem;
        width: calc(100% - 65px);
        color:#333;margin:0 0 0 .5rem;

    }
    .advantage-card p {
        font-size: .85rem;
        color: var(--text-muted);
        line-height: 1.5;
    }
    .adv-row div:nth-child(even) .advantage-card{background: #eaf3ff}
    .headline-space{margin-bottom:1.5rem}
    .more-box{width: 80px;height: 80px;line-height: 1.1;display: flex;align-items: center;border:solid 2px #999;justify-content: center;

        border-radius: 90px;font-size:.9rem}


    /* Hot Selling Products */
    .hot-bg{width:100%; }
    .hot-bg img{min-height:40vw;width: 100%;object-fit: cover}
    .hot-selling-section {
        position: relative;
        margin-top:-100px;
    }
    .hot-selling-overlay {
        width: 100%;
    }
    .hot-selling-container {
        background-color: rgba(255, 255, 255, 0.75);
        border-radius: 20px;
        padding:10px 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    }
    .hot-selling-section .mb-4{margin-bottom: 0!important;}
    .hot-selling-head{font-size: 1.4rem}
    .hot-top{padding: 0 .5rem}
    .hot-product-card {
        text-align: center;
        margin:0 auto;
    }
    .hot-product-image {
        width: 100%;
        object-fit: cover;
        border-radius: 15px;
        margin: 15px 0;
        overflow: hidden;
        box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    }
    .hot-product-image img{width: 100%;height: auto;object-fit: cover;aspect-ratio: 1/1;transition: all .3s}

    .hot-product-card:hover .hot-product-image img{transform: scale(1.1)}
    .hot-product-card p {
        padding: 0 .5rem;
        text-align: left;
        color: var(--text-dark);
    }
    .hot-nav-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--text-muted);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        cursor: pointer;
        background: transparent;
        transition: all 0.3s ease;
    }
    .hot-nav-btn:hover {
        background-color: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }
    .newsletter {
        text-align: center;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }
    .newsletter h3{font-size: 1.3rem;margin-top: .5rem}
    .newsletter p{font-size: .9rem;}
    .newsletter-form input {
        background-color: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: .9rem;
        width: 100%;
    }
    .newsletter-form input::placeholder {
        color: #888;
    }
    .newsletter-form .vertical{width:50%}
    .newsletter-form img{display: inline-block}
    .vertical-box{display: flex;align-items: self-start}
    .end-row{font-size: .9rem;line-height: 1.5}
    .end-row div{display: none}
    .end-row div:first-child{display: block}
    .footer-bottom {
        margin-top: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #adb5bd;
        font-size: 0.9rem;
    }
    .footer-contact li {
        color: #adb5bd;
        margin-bottom: 5px;
        display: flex;
        align-items:center;
        gap: 10px;
    }
    .text-end{font-size: .8rem;text-align: left!important;margin-left: .5rem!important;}
    .navbar-nav{padding-top: 1rem}
    .navbar-nav li{border-top: solid 1px #dedede;width: 100%;text-align: center}
    .navbar-nav li:last-child{border: none!important;}
}
@media (max-width: 767.98px) {
    .newsletter-form {
        flex-direction: column;
    }
    .hero-content {
        margin: 0 15px;
    }
    .menu-bg{background: #fff;position: fixed}
    .menu-bg1{position: relative;z-index: 9;padding: 0.5rem 0}
    .menu-bg1.shadow{position: fixed;background: #fff;width: 100%}
}
