@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: "Libre Franklin", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Mona Sans", sans-serif;
}

:root {
    --primary-color: #000000;
    --second-color: #FF0303;
    --white-color: #ffffff;

}

.bg-reds {
    background: var(--second-color);
}

.text-reds {
    color: var(--second-color);
}

.bg-blacks {
    background: var(--primary-color);
}

.btn-redwhite {
    background: var(--second-color);
    color: var(--white-color);
    font-size: 18px;
    border-radius: 50px;
    padding: 12px 32px;
    box-shadow: inset 0 2px 0 #fff, inset 0 -2px 0 #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    margin: 40px 0;
}

.btn-redblack {
    background: var(--second-color);
    color: var(--white-color);
    font-size: 18px;
    border-radius: 50px;
    padding: 12px 32px;
    box-shadow: inset 0 2px 0 #000, inset 0 -2px 0 #000;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;
    margin: 30px 0;
}

.btn-redwhite:hover {
    transform: scale(1.1);
    background: var(--white-color) !important;
    color: var(--primary-color) !important;

}


.btn-redblack:hover {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
}





/*********Navigation************/
.top-head .top-contact {
    list-style: none;
    display: flex;
    justify-self: end;
    padding: 10px 0;
    margin: 0;
}

.top-head .top-contact li {
    margin-right: 20px;
}

.top-head .top-contact li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
}

.navbar {
    background-image: url(../images/navbar-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

a.navbar-brand img {
    max-width: 150px;
}



.navbar ul.navbar-nav li a.nav-link.active {
    color: var(--white-color);
    font-weight: 500;
    border-radius: 50px;

}


/* Navigation bar css */
.navbar ul ul {
    display: none;
}

.navbar ul li:hover>ul {
    display: block;
}

.navbar li {
    position: relative;
}

.navbar ul ul {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99999;
    width: 100%;
    background: var(--second-color);
    margin: 0;
    padding: 0;
    min-width: 220px;
}

.navbar ul.navbar-nav li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 2.2;
    font-size: 14px;
    color: var(--white-color) !important;
    padding: 0 5px !important;
}

.navbar ul.navbar-nav li {
    padding: 0 10px;
}

.navbar ul.sub-menu li {
    padding: 0 15px;
    list-style: none;
    color: #fff;
}

.navbar ul.sub-menu li a {
    color: #fff;
}

/* wordpress Add a chevron to menu items with submenus */
.menu-item-has-children>a {
    position: relative;
    padding-right: 20px;
}

/* wordpress Chevron icon */
.menu-item-has-children>a::after {
    content: "\25BC";
    font-size: 12px;
    position: absolute;
    right: -13px;
    top: 60%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* wordpressRotate chevron when submenu is open */
.menu-item-has-children.open>a::after {
    transform: translateY(-50%) rotate(275deg);
}

@media screen and (max-width: 991px) {
    .navbar ul ul {
        position: initial !important;
    }

    .navbar ul.navbar-nav li {
        padding: 0px !important;
    }
}





/* Search Box */
.right-menus .search-form {
    position: relative;
    width: 150px;
}

.right-menus .search-input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    border-radius: 50px;
    border: 1px solid #ff0303;
    background-color: #fff;
    color: #000;
    outline: none;
}

.right-menus .search-input::placeholder {
    color: #888;
    opacity: 0.8;
}

.right-menus .search-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 47px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: #ff0303;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-menus .cart-btn {
    color: #fff;
}

.right-menus .account-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.right-menus .account-link:hover {
    text-decoration: underline;
}


/***** Banner Slider *****/

.banner-slider .banner-slider-content {
    text-align: left;
    position: absolute;
    bottom: 100px;
    width: auto;
}

.banner-slider h2 {
    font-size: 72px;
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
}


.banner-slider p {
    font-size: 24px;
    color: var(--white-color);
}

.banner-slider .banner-slider-content a {
    text-decoration: none;
    color: var(--white-color);
}


#banner-slider video {
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    #banner-slider video {
        height: 50vh;
    }

    #banner-slider .row {
        min-height: 50vh;
    }
}


/* ****Patriot Technologies** */

.patriot .patriot-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
    max-width: clamp(280px, 50vw, 500px);
}


.patriot .patriot-content h2 span {
    color: var(--second-color);
}

.patriot .patriot-content p {
    font-size: 16px;
    line-height: 2;
    color: var(--primary-color);
}


.our-mission .img-box {
    position: relative;
    display: inline-block;
}

.our-mission .img-box img {
    display: block;
    width: 100%;
}

.our-mission .img-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    /* backdrop-filter: blur(8px);        
  -webkit-backdrop-filter: blur(8px); */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
}



.our-mission .our-mission-content {
    padding: 100px 50px 20px;
    max-width: 650px;
    width: 100%;
}


.our-mission .our-mission-content h2 {
    font-size: 48px;
    font-weight: 800;
    padding: 10px 0;
    color: var(--white-color);

}

.our-mission .our-mission-content h2 span {
    color: var(--second-color);
}

.our-mission .our-mission-content p {
    font-size: 16px;
    color: var(--white-color);
    list-style: 2;
    margin-bottom: 20px;
}

/* Our Industries */

.our-industries h2 {
    font-size: 48px;
    font-weight: 800;
    padding: 10px 0;
    color: var(--primary-color);
    text-align: center;

}

.our-industries h2 span {
    color: var(--second-color);
}

.our-industries p {
    font-size: 16px;
    color: var(--primary-color);
    list-style: 2;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.our-industries .industry-card {
    position: relative;
    color: var(--white-color);
    overflow: hidden;
}

.our-industries .industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.our-industries .industry-card:hover img {
    transform: scale(1.05);
}

.our-industries .industry-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-industries .industry-content h4 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.our-industries .industry-card .btn-viewmore {
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 30px;
    padding: 6px 18px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-in-out;
    max-width: fit-content;
}

.our-industries .industry-card .btn-viewmore:hover {
    background: var(--second-color);
    color: var(--white-color);
    border: 1px solid var(--second-color);
    transform: scale(1.05);
}

.our-industries .industry-card .btn-viewmore i {
    font-size: 16px;
    color: var(--white-color);
}


/* **Featured Products** */

.featured-products h2 {
    font-size: 48px;
    font-weight: 800;
    padding: 10px 0;
    color: var(--primary-color);
}

.featured-products h2 span {
    color: var(--second-color);
}

.featured-products p {
    font-size: 16px;
    color: var(--primary-color);
    list-style: 2;
    margin-bottom: 20px;
    font-weight: 500;
}


.featured-products .product-card {
    border : 1px solid #ddd !important;
    text-align: left;
}

.featured-products .owl-item .product-card {
    display: block !important;
}


.featured-products .product-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.featured-products .product-card .card-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.featured-products .product-card .card-text {
    font-size: 16px;
    color: var(--primary-color);
    min-height: 100px;
}

.featured-products .price {
    margin: 10px 0;
}

.featured-products .current-price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 8px;
}

.featured-products .old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
}

.featured-products .action-bar {
    background: var(--second-color);
    padding: 5px 15px;
    border-radius: 0px;
}

.featured-products .add-to-cart {
    color: var(--white-color);
    font-weight: 400;
    text-decoration: none;
    font-size: 1rem;
    background: transparent;
    border: none;
    padding: 0;
}

.featured-products .wishlist {
    font-size: 20px;
    color: var(--white-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.featured-products .wishlist:hover {
    transform: scale(1.2);
}

/* Owl nav container */
.featured-products {
    position: relative;
}

.featured-products .owl-nav {
    position: absolute;
    top: -100px;
    right: 25px;
    display: flex;
    gap: 20px;
}

.featured-products .owl-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color) !important;
    border-radius: 50px !important;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.featured-products .owl-nav button:hover {
    background: var(--second-color) !important;
    border-color: var(--second-color) !important;
    color: var(--white-color);
}

/* **Trusted Partner** */

.trusted-partner {
    background-image: url(../images/trusted-partner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    margin-bottom: 80px;
}


.trusted-partner h2 {
    font-size: 48px;
    font-weight: 800;
    padding: 10px 0;
    color: var(--white-color);
    text-align: center;
}

.trusted-partner h2 span {
    color: var(--second-color);
}

.trusted-partner p {
    font-size: 16px;
    color: var(--white-color);
    list-style: 2;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.trusted-partner .trusted-partner-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    list-style: none;
}

.trusted-partner .trusted-partner-list img {
        max-width: 100px;
    height: auto;
}

/* **Adherence to Highest Standards** */

.quality-section {
    background: url('../images/adherence.png') no-repeat center center/cover;
    position: relative;
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding: 100px 0;

}

.quality-section .quality-content {
    max-width: 700px;
    margin: 0 auto;

}

.quality-section .quality-content h2 {
    font-size: 36px;
    font-weight: 500;
    padding: 10px 0;
    color: var(--white-color);
}

.quality-section .btn-getmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}


.quality-section .btn-getmore:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.quality-section .btn-getmore:hover i {
    color: var(--white-color);
}

/* **Strategic Alliances** */

.strategic-alliances {
    background-color: #1f1f1f;
}

.strategic-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.strategic-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.strategic-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    z-index: 2;
    padding: 2rem;
    width: 80%;
}

.strategic-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
}

.strategic-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    margin-top: 15px;
}

.strategic-content .btn-getmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.strategic-content .btn-getmore:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.strategic-content .btn-getmore:hover i {
    color: var(--white-color);
}

.feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    min-width: 200px;
    justify-content: center;

}


.feature-box i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-box h5 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

/* **Latest News** */


.latest-news .news-title {
    font-size: 48px;
    font-weight: 800;
    padding: 10px 0;
    color: var(--primary-color);
}

.latest-news h2 span {
    color: var(--second-color);
}

.latest-news p {
    font-size: 16px;
    color: var(--primary-color);
    list-style: 2;
    margin-bottom: 20px;
    font-weight: 500;
}


.latest-news .learn-btn {
    background: var(--second-color);
    color: var(--white-color);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease-in-out;
}

.latest-news .learn-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.latest-news .card img {
    height: 400px;
    object-fit: cover;
}

.latest-news .card .card-title {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 1.5;
}

.latest-news .card a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* **Premier Aerospace** */

.premier-aerospace .cta-section {
    background: url('../images/premier-aerospace.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    border-radius: 20px;
    position: relative;
}

.premier-aerospace .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    border-radius: 20px;
}

.premier-aerospace .cta-content {
    position: relative;
    z-index: 2;
}

.premier-aerospace .cta-section strong {
    font-weight: 700;
}

.premier-aerospace .btn-outline-light {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.premier-aerospace .btn-outline-light:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.premier-aerospace .btn-outline-light:hover i {
    color: var(--white-color);
}




/************CopyRight **********/
.footer {
    background: var(--primary-color);
}

.footer {
    padding: 2rem 0 1rem 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .newsletter-input {
    border-radius: 30px;
    padding: 0.75rem 1rem;
    width: 100%;
    max-width: 400px;
    border: none;
}

.footer .newsletter-btn {
    border-radius: 50%;
    margin-left: -45px;
    border: none;
    color: var(--primary-color);
    padding: 0.6rem 0.8rem;
}

.footer .logo {
    max-width: 180px;
}

.footer .logo-badges img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.36);
    padding: 5px;
    border-radius: 8px;
}

.footer ul.list-unstyled.footer-nav {
    display: grid;
    grid-template-columns: auto auto;
}

.footer .footer-nav li {
    margin: 5px 10px;
}

.footer .footer-nav li a {
    color: var(--white-color);
    font-size: 16px;
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-bottom: 1px solid rgba(255, 255, 255, 0.36);
    margin-top: 20px;

}

.copyright p,
.copyright p a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    padding: 16px 0;
}

/* **Inner Banner** */

.inner-banner {
    background: url('../images/inner-banner.png') center/cover no-repeat;
    padding: 150px 0 100px;
    position: relative;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 60px;
}

.inner-banner h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white-color);
}

.inner-banner h1 {
    font-size: 72px;
    font-weight: 800;
    margin: 0;
    color: var(--white-color);
    text-transform: uppercase;
}

.inner-banner h1 span {
    color: var(--second-color);
}

/* **Part Number** */


.part-number h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.part-number h2 span {
    color: var(--second-color);
}

.part-number .part-number-list {
    list-style: none;
    padding: 0;
}

.part-number .part-number-list li {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.part-number p {
    font-size: 16px;
    color: var(--primary-color);
    list-style: 2;
    margin-bottom: 20px;
    font-weight: 500;
}

.part-manufacturers h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    background-color: #ededed;
    padding: 10px 16px;
}

.part-manufacturers .part-card {
    border-radius: 12px;
    padding: 16px;

}


.part-manufacturers .part-card .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.part-manufacturers .part-card .part-number {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.part-manufacturers .part-card .company {
    font-weight: 500;
    color: var(--second-color)
}

.part-manufacturers .part-card .item-name,
.part-manufacturers .part-card .cage {
    font-size: 16px;
    color: var(--primary-color);
}

.part-manufacturers .part-card .shield {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.part-manufacturers .right-col {
    margin-top: 0;
}

.divider {
    border-top: 3px solid #ddd;
    margin-top: 10px;
}


@media (min-width: 768px) {
    .part-manufacturers .right-col {
        margin-top: -60px;
    }
}

/* **Request Form** */
.Request-quote-form {
    background: var(--primary-color);
    border-radius: 12px;
    color: var(--white-color);
}

.Request-quote-form .form-control,
.Request-quote-form .form-select {
    height: 50px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 0;
}

.Request-quote-form .form-control::placeholder {
    color: #575757;
    opacity: 1;
}

.Request-quote-form .form-select option {
    color: #000;
}

.Request-quote-form textarea.form-control {
    height: auto;
    min-height: 100px;
}

.Request-quote-form .middle-contact-info p {
    font-size: 14px;
    color: var(--white-color);
    margin: 0;
    padding: 0;
}

.Request-quote-form p {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}

/*  */

.upload-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
}

.upload-section h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.upload-btn:hover {
    background-color: #cc0000;
}

.upload-img {
    max-width: 220px;
}

/* **NSN Components** */
.nsn-components {
    background: #EDEDED;
}

.nsn-components h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;

}

.nsn-components h2 span {
    color: var(--second-color);
}

.nsn-components .nsn-card {
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: transparent;
    height: 100%;
}

.nsn-components .nsn-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);

}

.nsn-components .nsn-sub {
    font-size: 16px;
    color: var(--primary-color);
}

.nsn-components .nsn-code {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
}

/* Top NSN Manufacturers */
.top-nsn-manufacturers {
    background-image: url(../images/top-nsn-manufacturers.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
}

.top-nsn-manufacturers h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 40px;

}

.top-nsn-manufacturers h2 span {
    color: var(--second-color);
}

.top-nsn-manufacturers .list-group-item {
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 16px;
    padding: 10px 20px;
}

.top-nsn-manufacturers .list-manu {
    border-right: 2px solid #fff;
}

.top-nsn-manufacturers .list-manu:last-of-type {
    border-right: 2px solid #000;
}


/* FAq */

.faq .faq-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq .faq-content h2 span {
    color: var(--second-color);
}

.faq .accordion-button {
    background-color: transparent;
    border: none;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
}

.faq .accordion-button::after {
    background-image: none !important;
    content: none !important;
}

.faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.faq .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq .accordion-body {
    border: none;
    border-radius: 0 0 6px 6px;
    background-color: transparent;
}

.faq .accordion-item:not(:first-of-type) {
    border-top: 1px solid var(--second-color);
    border-radius: 15px !important;
}

.faq .accordion-item:first-of-type {
    border-radius: 15px !important;
}

.faq .accordion-item {
    margin-bottom: 20px;
    border-color: var(--second-color);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq .accordion-icon {
    background-color: #EAEAEA;
    color: #979797;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
    border-radius: 50px;
    margin-right: 10px;
}

.faq .accordion-icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq .accordion-button:not(.collapsed) .fa-arrow-down {
    transform: rotate(180deg);
}

.faq .accordion-item h2 span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.nsn-components button {
    background: #000;
    color: #fff;
    padding: 5px 25px;
    margin: 0 5px;
    border-radius: 25px;
}

.nsn-components button:hover {
    background: #cc0000;
    color: #fff;
}

.nsn-components p {
    margin-top: 20px;
}

.nsn-components a {
    background: var(--second-color);
    color: var(--white-color);
    font-size: 12px;
    border-radius: 50px;
    padding: 7px 15px;
    box-shadow: inset 0 2px 0 #fff, inset 0 -2px 0 #fff;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    max-width: fit-content;
    width: 100%;

}

.nsn-components a:hover {
    transform: scale(1.1);
    background: var(--primary-color) !important;
    color: var(--white-color) !important;
}

div#noptin-form-1__wrapper {
    width: 100%;
}

div#noptin-form-1__wrapper input {
    height: 48px;
}

input#noptin-form-1__submit {
    border: none;
    background: var(--second-color) !important;
    color: var(--white-color);
}

.noptin-optin-form-wrapper {
    border: 0 !important;
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .navbar ul.navbar-nav li {
        padding: 0 7px;
    }

    .patriot .patriot-content h2,
    .our-mission .our-mission-content h2,
    .our-industries h2,
    .featured-products h2,
    .trusted-partner h2,
    .latest-news .news-title,
    .our-mission .our-mission-content h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {

    .patriot .patriot-content h2,
    .our-mission .our-mission-content h2,
    .our-industries h2,
    .featured-products h2,
    .trusted-partner h2,
    .latest-news .news-title,
    .our-mission .our-mission-content h2 {
        font-size: 36px;
    }

    .navbar ul.navbar-nav li {
        padding: 0 6px;
    }

    .our-industries .industry-content h4 {
        font-size: 18px;
    }

    .our-industries .industry-card .btn-viewmore {
        font-size: 14px;
    }

    .our-industries .industry-content {
        left: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 991px) {

    .navbar .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 80px;
        z-index: 99;
        background: #1a1a1a;
        width: 100%;
        left: 0;
        padding: 10px 10px 20px;
    }

    .main-header button.navbar-toggler {
        background: var(--white-color) !important;
    }

    .navbar ul ul {
        position: initial !important;
        padding-left: 10px;
    }

    .our-mission .our-mission-content,
    .patriot .patriot-content h2 {
        max-width: 100%;
    }

    .our-mission .our-mission-content,
    .our-mission .our-mission-content {
        padding: 30px 20px;
    }

    .our-industries .industry-content {
        display: block;
    }

    .our-industries .industry-content h4 {
        margin-bottom: 10px;
    }

    .patriot .patriot-content h2,
    .our-mission .our-mission-content h2,
    .our-industries h2,
    .featured-products h2,
    .trusted-partner h2,
    .latest-news .news-title,
    .our-mission .our-mission-content h2 {
        font-size: 32px;
    }

    .featured-products .owl-nav {
        top: -160px;
        right: 15px;
    }

}

@media screen and (max-width: 767px) {

    .featured-products .owl-nav {
        position: relative !important;
        top: 0px !important;
        right: 0px;
        display: flex;
        justify-content: center;
    }

    .strategic-alliances .strategic-content {
        position: relative !important;
        top: 0 !important;
        left: 50%;
        transform: translate(-50%, 0%) !important;
        text-align: center;
        color: var(--white-color);
        z-index: 2;
        padding: 0;
        width: 100%;
    }

    .quality-section .btn-getmore {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border: 1px solid #fff;
        border-radius: 50px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        font-weight: 500;
        font-size: 14px;
    }

    .banner-slider h2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 479px) {
    .banner-slider h2 {
        font-size: 32px;
    }

}