* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none
}

:root {
    --main-color: #BF0121;
    --bg-color: #202020;
}

header.sticky-top {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1020;
    background: #ffffff;
}

header.scrolled {
    backdrop-filter: blur(10px);
    background-color: #131313bb !important;
    box-shadow: 0 2px 8px rgb(0 0 0 / .1)
}

header {
    background-color: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(255 255 255 / .2);
    box-shadow: 0 4px 30px rgb(0 0 0 / .1);
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

header nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between
}

.logo {
    flex: 2;
    display: flex;
    align-items: center
}

.logo a {
    text-decoration: none;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    font-weight: 800
}

.logo img {
    width: 275px;
    padding: 10px 0;
}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: #202020;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #BF0121
}

.NavMenu li ul li a:hover {
    color: #BF0121;
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #BF0121;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: #202020;
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    right: 100%;
    top: 0
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #BF0121
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1024px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 430px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #013d4c;
        left: 0;
        top: 40px;
        height: 90vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: #fff;
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .logo img {
        width: 55%;
    }

    .NavMenu {
        top: 75px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }
}

@media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
}

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 75% !important
    }

    .NavMenu {
        top: 81px
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: auto
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}

.head h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;

}

.head h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 40px;
    font-weight: 800;
    line-height: normal;

}

.head h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 32px;
    font-weight: 600;
    line-height: normal
}

.head h4 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 26px;
    font-weight: 600;
    line-height: normal
}

.head h5 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #202020;
    font-size: 22px;
    font-weight: 600;
    line-height: normal
}

.main-para p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #262626;
    letter-spacing: 0;
    text-align: justify;
    font-weight: 400
}

.main-para a {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 700;
    color: #BF0121;
    letter-spacing: 0;
    text-decoration: none
}

.sec-img img {
    width: 100%;
    height: auto
}

footer {
    background-color: #013d4c;
}

footer a {
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 28px
}

footer li a:hover {
    color: #bababa !important
}

footer ul li {
    margin-bottom: 7px;
    background-image: url(../img/ftr-arrow.webp);
    background-repeat: no-repeat;
    background-position: 0 5px;
    font-size: 16px;
    padding-left: 30px;
    background-size: 20px
}

footer p.fw-bold::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #bababa;
    margin-top: 8px;
    transition: width 0.3s
}

footer p {
    font-family: Georgia, 'Times New Roman', Times, serif, Geneva, Tahoma, sans-serif;
    font-size: 22px;
    line-height: 28px
}

footer p:hover::after {
    width: 60px
}

@media (max-width:767px) {

    footer .col-md-6 p,
    footer ul {
        justify-content: center
    }

    .ftr-2 {
        text-align: center
    }

    .ftr-2 .col-lg-6 {
        text-align: center !important
    }
}

.right-ok {
    background-image: url(../img/right-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.wrong-icon {
    background-image: url(../img/wrong-icon.webp);
    background-repeat: no-repeat;
    background-position: 8px;
    height: auto
}

.modal-lg {
    width: 750px
}

.modal-dialog {
    margin: 7% auto
}

.inq-btn-home {
    position: fixed;
    top: 300px;
    left: 10px;
    width: 45px;
    height: 50px;
    z-index: 1111
}

.modal {
    z-index: 999999 !important
}

.modal-header {
    padding: 10px 15px 0 15px;
    background-color: #373435
}

.modal-title {
    font-size: 18px;
    color: #fff;
    text-align: left;
    padding-bottom: 9px
}

.modal-body {
    padding: 0 15px 10px 15px
}

.capside {
    float: left;
    margin-top: 25px
}

.close {
    position: absolute;
    right: 16px;
    top: 15px;
    font-size: 28px;
    color: #fff !important
}

.pop-img {
    margin-top: 10%;
    margin-bottom: 20px;
    width: 100%;
    height: auto
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    border: 0;
    background-color: #b52414 !important;
    padding: 1px 10px 17px 10px !important;
    margin-top: -15px !important;
    position: absolute;
    opacity: 1;
    color: #fff !important
}

button.btn.moClose {
    background-color: #b52414 !important;
    color: #fff !important
}

@media only screen and (max-width:425px) {
    .footer-divider.border-top.py-3 {
        text-align: center !important
    }

    .contact-main-2.py-5 {
        padding-top: 0 !important
    }
}

@media only screen and (max-width:768px) {
    .modal-lg {
        width: 75%;
        margin: 15px auto
    }

    .dmo {
        display: none
    }

    .modal-footer {
        padding: 15px 21px;
        text-align: right;
        border-top: none;
        margin-top: -72px;
        position: relative;
        z-index: 999;
        width: 120px;
        float: right
    }

    .inq-btn-home img {
        width: 30px;
        height: auto
    }

    .moClose {
        display: none
    }

    .modal-body {
        padding: 0 15px 45px 15px
    }

    .modal-dialog {
        margin: 15% auto
    }
}

.form-group {
    margin: 15px 0 !important
}

.form-group input {
    border-left: 5px solid var(--main-color)
}

.form-group label {
    color: var(--bg-color);
    line-height: 1.75em;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 1.75em;
    letter-spacing: 0;
    text-transform: initial;
    line-height: 1.6em;
    font-weight: 400;
    margin-top: 5px
}

.form-group textarea {
    border-left: 5px solid var(--main-color)
}

.form-group select {
    border-left: 5px solid var(--main-color)
}

.Submit-box {
    background-color: var(--main-color);
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    border: none !important
}

.purple {
    margin-top: 10px;
    border-bottom: 1px solid #a0a0a0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 28px !important
}

.page_text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.page_content {
    line-height: 10px
}

.ball-valve a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 20px;
    line-height: 28px
}

.social a {
    border-radius: 50% !important;
    padding: 2px;
    background-color: #fff !important;
    margin: 10px
}

/* CSS */
.button-50 {
    appearance: button;
    background-color: #9b001a;
    background-image: none;
    border: 1px solid #000;
    border-radius: 4px;
    box-shadow: #fff 4px 4px 0 0, #000 4px 4px 0 1px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: ITCAvantGardeStd-Bk, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px 10px 0;
    overflow: visible;
    padding: 12px 40px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.button-50:focus {
    text-decoration: none;
}

.button-50:hover {
    text-decoration: none;
}

.button-50:active {
    box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
    outline: 0;
}

.button-50:not([disabled]):active {
    box-shadow: #fff 2px 2px 0 0, #000 2px 2px 0 1px;
    transform: translate(2px, 2px);
}

.shdw {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 7px;
    padding: 25px;
}

.list-style-disclosure-closed li {
    list-style-type: '▸ ' !important;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    padding-bottom: 10px;
}

table {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
}

table tr td:first-child {
    font-weight: bold;
}

img.card-img-top {
    height: 215px;
}

h4.card-title.fs-5.fw-semibold.text-dark.mb-2 {
    text-align: center;
}

.shadow-sm {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

/* breadcrumb */
.header {
    background: linear-gradient(135deg, #00627a 0%, #023746 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgb(0 0 0 / .1)
}

.header h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.breadcrumb-link:hover {
    color: #bababa
}

.breadcrumb-link {
    color: #fff
}

.breadcrumb-link i {
    margin-right: 5px
}

.breadcrumb-divider {
    margin: 0 10px;
    color: #fff
}

.breadcrumb-current {
    color: #fff;
    font-weight: 500;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgb(0 0 0 / .08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid #084298;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgb(0 0 0 / .12)
}

.contact-card h2 {
    color: var(--main-color, #084298);
    margin-bottom: 20px;
    font-weight: 600
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: #084298;
    margin: 0 auto 30px;
    border-radius: 2px
}

.contact-info {
    margin-bottom: 25px
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(13 110 253 / .1);
    border-radius: 50%;
    color: #084298;
    margin-bottom: 15px
}

.contact-icon i {
    font-size: 24px
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    text-align: center;
    font-size: 22px !important
}

.contact-content {
    color: #555;
    line-height: 1.6;
    font-size: 16px;

}

.contact-content a {
    color: #084298;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
    border-bottom: 1px dashed #004e92;

}

.contact-detail a:hover {
    text-decoration: underline
}

.map-container {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / .08);
    height: 100%
}

@media (max-width:1024px) {
    .NavMenu li a::after {
        background-color: #fff0
    }

    .ftr-quick ul {
        padding-left: 0
    }

    .footer-logo img {
        width: 61%;
    }

    .ftr-logo img {
        width: 80%
    }

    .head h1 {
        font-size: 34px
    }

    .head h2 {
        font-size: 30px
    }

    .head h3 {
        font-size: 26px
    }

    img.card-img-top {
        height: 200px;
    }


}

@media (max-width:768px) {
    .head h1 {
        font-size: 30px
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto
    }

    .mission-main p {
        margin-top: 20px
    }

    .rw-dir {
        flex-direction: column-reverse;
        align-items: center
    }

    .bread-links a {
        letter-spacing: 2px
    }

    .head h3 {
        font-size: 28px
    }

    .tab-width {
        width: 100% !important
    }

    .ftr-2 {
        text-align: center
    }

    .ftr-2 .col-lg-6 {
        text-align: center !important
    }

    .sec-img {
        margin-top: 20px;
    }

    ul.NavMenu {
        top: 76px;
    }

    .row.g-4.justify-content-center {
        --bs-gutter-x: 1rem !important;

    }

    .row.g-5.mb-5.head.main-para,
    .row.g-5.mb-5 {
        --bs-gutter-x: 1.25rem !important;
    }
}

@media (max-width:425px) {
    .navbar-brand img {
        width: 70%
    }

    .navbar-brand {
        width: 75%
    }
    ul.NavMenu {
        top: 90px;
    }
    .head h1 {
        font-size: 30px
    }

    .head h2 {
        font-size: 28px
    }

    .head h3 {
        font-size: 26px
    }

    .head h4 {
        font-size: 24px
    }

    .head h5 {
        font-size: 22px
    }

    .NavMenu {
        width: 425px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .logo img {
        width: 85%;
    }

    img.card-img-top {
        height: auto;
    }
    .products-section .row.g-5.mb-5{
        margin-bottom: 0 !important;
    }.col-xl-3.col-lg-6.col-md-6.mb-4.mb-5{
        margin-bottom: 0 !important;
        margin-top: 35px !important;
    }
  .col-xl-3.col-lg-6.col-md-6.mb-4.mb-5.mt-5.pt-2{
    margin-top: 0 !important;
  }
}

@media (max-width:375px) {
    .NavMenu {
        width: 375px
    }

    ul.NavMenu {
        top: 80px;
    }
}

@media (max-width:320px) {

    .head h2 {
        font-size: 26px
    }

    .head h1 {
        font-size: 28px
    }

    .head h3 {
        font-size: 24px
    }

    .NavMenu {
        width: 100%
    }

    .mail a {
        word-wrap: break-word
    }

    .NavMenu li a {
        padding: 8px 12px
    }

    ul.NavMenu {
        top: 70px;
    }
    .NavMenu li a{
        letter-spacing: 0;
    }
}