:root {
    --theme-font: "Open Sans", sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #010081;
    --theme-color: #444746;
    --secondary-color: #FFC366;
    --light-color: #F7F9FA;
    --color-gray: #696969;
    --text-color-rgb: 30, 45, 125;
    --header-border-color: rgba(182, 182, 182, 0.7);
    --base-text-font-size: 15px;
    --default-text-font-size: 15px;
    --text-font-weight: 400;
    --text-font-style: normal;
    --text-font-bolder-weight: bolder;
    --border-color-rgb: 225, 227, 228;
    --border-color: #C9C9C9;
    --main-color: #444746;
    --secondary-color: #3285c2;
}

section, header, footer, main {
    height: auto;
    clear: both
}

section, header, footer, main {
    width: 100%;
    position: relative
}

.specifications::before, .single-products-overview::before, .products-page-title::before, .industries-page-title::before, .about-overview::before, .products-section .products-video-slider .video-link::after, .industries-section .box-item::before, .industries-section .box-item::after, .home-slider .hero-slider .slide-inner::before, .header .menu-items .menu-item .mega-menu .product-img a::before, .header .menu-items .menu-item .mega-menu .menu-content h4::before, .header .menu-items .menu-item .mega-menu .menu-content.hardware::before {
    position: absolute;
    content: ""
}

@-webkit-keyframes slideDown {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideDown {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    50% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes zoom-in-zoom-out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }

    50% {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5)
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@-webkit-keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: .75
    }

    75% {
        padding: 50px;
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: .75
    }

    75% {
        padding: 50px;
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes pulsee {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37,211,102,.5);
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }

    80% {
        -webkit-box-shadow: 0 0 0 14px rgba(37,211,102,0);
        box-shadow: 0 0 0 14px rgba(37,211,102,0)
    }
}

@keyframes pulsee {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37,211,102,.5);
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }

    80% {
        -webkit-box-shadow: 0 0 0 14px rgba(37,211,102,0);
        box-shadow: 0 0 0 14px rgba(37,211,102,0)
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    to {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }

    to {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg)
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%
}

body {
    margin: auto;
    font-family: var(--theme-font);
    color: var(--color-black);
    transition: all .3s ease 0s;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    position: relative;
    z-index: 1;
    width: 100%
}

    body::-webkit-scrollbar {
        width: 5px
    }

    body::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(126,214,234,.5);
        box-shadow: inset 0 0 5px rgba(126,214,234,.5)
    }

    body::-webkit-scrollbar-thumb {
        background-color: var(--theme-color);
        outline: 1px solid var(--theme-color)
    }

ul {
    margin: 0;
    padding: 0;
    display: block
}

li {
    list-style: none;
    font-family: var(--theme-font)
}

a {
    color: inherit
}

    a, a:hover, a:focus, button, button:focus {
        outline: none !important;
        text-decoration: none;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        font-family: var(--theme-font);
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease
    }

button, input, optgroup, select, textarea, :focus, :focus-visible {
    margin: 0;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease
}

    button, html input[type=button], input[type=reset], input[type=submit] {
        -webkit-appearance: button;
        -moz-appearance: button;
        appearance: button;
        cursor: pointer
    }

    button, input[type=submit] {
        padding: 0;
        overflow: visible;
        background: none;
        border: none;
        border-radius: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease
}

p {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    font-family: inherit;
    font-weight: normal;
    margin-bottom: 15px
}

img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
    height: auto;
    border-style: none;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease
}

svg {
    vertical-align: middle;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease
}

.is_relative {
    position: relative
}

section, div, footer {
    scroll-margin-top: 150px
}

.o-hidden {
    overflow: hidden
}

section, header, footer, main {
    position: relative
}

@media(max-width: 1280px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 30px
    }
}

@media(max-width: 575px) {
    .container {
        padding: 0 17px
    }
}

.mainContent {
    padding: 50px 0
}

@media(min-width: 1281px) {
    .mainContent {
        padding: 80px 0
    }
}

@media(min-width: 1700px) {
    .mainContent {
        padding: 100px 0
    }
}

@media(min-width: 1281px) {
    .hidden-desk {
        display: none !important
    }

    .hidden-lap-and-up {
        display: none !important
    }
}

@media(-moz-touch-enabled: 1),(hover: none) {
    .touch-area {
        position: relative;
        background: rgba(0,0,0,0)
    }

        .touch-area::before {
            position: absolute;
            content: "";
            top: -8px;
            right: -8px;
            left: -8px;
            bottom: -8px;
            -webkit-transform: translateZ(0);
            transform: translateZ(0)
        }
}

.hidden {
    display: none !important;
    visibility: hidden
}

.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media(max-width: 1280px) {
    .w-full {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%
    }
}

.load-complete {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 99999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .load-complete img {
        width: 250px;
        height: auto;
        -webkit-animation: zoom-in-zoom-out 4s ease infinite;
        animation: zoom-in-zoom-out 4s ease infinite
    }

    .load-complete.hides {
        opacity: 0;
        -webkit-transition: all 1s;
        transition: all 1s;
        visibility: hidden
    }

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    background-color: var(--color-white);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    z-index: 9999;
    padding: 15px 0
}

    .header .main-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .header .logo img {
        max-width: 132px
    }

@media(max-width: 1699px) {
    .header .logo img {
        max-width: 200px
    }
}

.header .logo svg {
    width: 132px;
    height: 96px
}

@media(max-width: 1699px) {
    .header .logo svg {
        width: 200px;
        height: 72px
    }
}

@media(max-width: 575px) {
    .header .logo svg {
        height: 60px
    }
}

.header .logo svg .logo-text {
    fill: var(--color-black)
}

.header .menu-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

    .header .menu-items .menu-item {
        list-style: none;
        -webkit-transition: .3s ease;
        transition: .3s ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%
    }

        .header .menu-items .menu-item .menu-link {
            font-size: 16px;
            color: var(--color-black);
            font-weight: 600;
            text-transform: capitalize;
            line-height: 1;
            padding: 30px 15px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between
        }

            .header .menu-items .menu-item .menu-link.expand-btn::after {
                content: " ▾";
                opacity: .4;
                margin-left: 5px
            }

            .header .menu-items .menu-item .menu-link.active {
                color: var(--secondary-color) !important
            }

        .header .menu-items .menu-item.sub-dropdown {
            position: relative
        }

            .header .menu-items .menu-item.sub-dropdown .sub-menu {
                position: absolute;
                background: var(--theme-color);
                min-width: 250px;
                line-height: 30px;
                border-radius: 0;
                top: calc(100% + 15px);
                left: 0;
                opacity: 0;
                visibility: hidden;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                -webkit-transform: rotateX(-90deg);
                transform: rotateX(-90deg);
                -webkit-transform-origin: 0 0;
                transform-origin: 0 0;
                display: block;
                padding: 0;
                -webkit-box-shadow: 0 5px 16px rgba(0,0,0,.1);
                box-shadow: 0 5px 16px rgba(0,0,0,.1)
            }

                .header .menu-items .menu-item.sub-dropdown .sub-menu li {
                    background: 0 0;
                    position: relative;
                    text-align: left;
                    border-bottom: 1px solid rgba(255,255,255,.1);
                    background-color: rgba(0,0,0,0);
                    padding: 0;
                    color: var(--color-white);
                    transition: all .3s ease;
                    -webkit-transition: all .3s ease;
                    -o-transition: all .3s ease;
                    -moz-transition: all .3s ease;
                    -ms-transition: all .3s ease
                }

                    .header .menu-items .menu-item.sub-dropdown .sub-menu li .sub-item-link {
                        display: block;
                        line-height: 1.4;
                        padding: 15px 15px;
                        font-size: 14px;
                        font-weight: 500;
                        position: relative;
                        color: currentColor
                    }

                        .header .menu-items .menu-item.sub-dropdown .sub-menu li .sub-item-link.active {
                            color: var(--secondary-color);
                            text-decoration: underline
                        }

                    .header .menu-items .menu-item.sub-dropdown .sub-menu li:last-child {
                        border: none
                    }

                    .header .menu-items .menu-item.sub-dropdown .sub-menu li:hover {
                        color: var(--secondary-color)
                    }

                        .header .menu-items .menu-item.sub-dropdown .sub-menu li:hover .sub-item-link {
                            text-decoration: underline
                        }

        .header .menu-items .menu-item .mega-menu {
            position: absolute;
            left: 0;
            width: 100%;
            top: calc(100% + 15px);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all .4s ease-out 0s,visibility .1s linear 0s;
            transition: all .4s ease-out 0s,visibility .1s linear 0s;
            background: var(--theme-color);
            -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
            -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
            padding: 50px 15px;
            -webkit-box-shadow: 0 5px 16px rgba(0,0,0,.1);
            box-shadow: 0 5px 16px rgba(0,0,0,.1)
        }

            .header .menu-items .menu-item .mega-menu .menu-content.hardware {
                position: relative
            }

                .header .menu-items .menu-item .mega-menu .menu-content.hardware::before {
                    right: 30px;
                    top: 0;
                    bottom: 0;
                    width: 1px;
                    height: 100%;
                    background-color: rgba(255,255,255,.1)
                }

            .header .menu-items .menu-item .mega-menu .menu-content h4 {
                font-size: 16px;
                color: var(--secondary-color);
                font-weight: 600;
                margin-bottom: 30px;
                text-transform: uppercase;
                display: inline-block;
                position: relative
            }

                .header .menu-items .menu-item .mega-menu .menu-content h4::before {
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 1px;
                    background-color: var(--secondary-color)
                }

            .header .menu-items .menu-item .mega-menu .menu-content ul li {
                padding-bottom: 15px
            }

                .header .menu-items .menu-item .mega-menu .menu-content ul li:last-child {
                    padding: 0
                }

                .header .menu-items .menu-item .mega-menu .menu-content ul li a {
                    font-size: 15px;
                    color: var(--color-white);
                    font-weight: 600;
                    text-transform: capitalize;
                    display: block
                }

                    .header .menu-items .menu-item .mega-menu .menu-content ul li a.active {
                        color: var(--secondary-color);
                        text-decoration: underline
                    }

                .header .menu-items .menu-item .mega-menu .menu-content ul li:hover a {
                    color: var(--secondary-color);
                    text-decoration: underline
                }

            .header .menu-items .menu-item .mega-menu .product-img .img-block {
                margin-bottom: 15px
            }

            .header .menu-items .menu-item .mega-menu .product-img h4 {
                font-size: 16px;
                font-weight: 600;
                color: var(--theme-color);
                margin-bottom: 15px
            }

            .header .menu-items .menu-item .mega-menu .product-img p {
                font-size: 15px;
                line-height: 30px;
                color: var(--color-gray)
            }

            .header .menu-items .menu-item .mega-menu .product-img a {
                font-size: 15px;
                color: var(--color-dark);
                text-transform: uppercase;
                position: relative;
                padding-bottom: 5px
            }

                .header .menu-items .menu-item .mega-menu .product-img a::before {
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 1px;
                    background-color: var(--color-dark)
                }

        .header .menu-items .menu-item:hover .menu-link {
            color: var(--secondary-color)  !important
        }

        .header .menu-items .menu-item:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            -webkit-transform: rotateX(0);
            transform: rotateX(0)
        }

        .header .menu-items .menu-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            -webkit-transform: rotateX(0);
            transform: rotateX(0)
        }

@media(max-width: 1280px) {
    .header .menu-items {
        display: none
    }
}

.header .other-menu {
    display: -webkit-box ;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end
}

@media(max-width: 1280px) {
    .header .other-menu .dealer-logo img {
        height: 72px
    }
}

@media(max-width: 575px) {
    .header .other-menu .dealer-logo img {
        height: 60px
    }
}

@media(max-width: 1280px) {
    .header .other-menu {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}


.header .header-mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    color: var(--color-white);
    padding-left: 30px
}

    .header .header-mobile-nav .icon-state {
        position: relative;
        vertical-align: middle
    }

    .header .header-mobile-nav .header-mobile-nav-toggle {
        top: -1px
    }

    .header .header-mobile-nav .icon {
        width: 20px;
        height: 16px;
        display: block;
        fill: var(--theme-color);
        background: none;
        pointer-events: none;
        overflow: visible
    }

        .header .header-mobile-nav .icon path {
            fill: var(--theme-color)
        }

    .header .header-mobile-nav .icon-state {
        position: relative;
        vertical-align: middle
    }

    .header .header-mobile-nav .icon-state-primary, .header .header-mobile-nav .icon-state-secondary {
        display: block;
        -webkit-transition: opacity .35s ease-in-out,-webkit-transform .35s ease-in-out;
        transition: opacity .35s ease-in-out,-webkit-transform .35s ease-in-out;
        transition: opacity .35s ease-in-out,transform .35s ease-in-out;
        transition: opacity .35s ease-in-out,transform .35s ease-in-out,-webkit-transform .35s ease-in-out
    }

    .header .header-mobile-nav .icon-state-secondary {
        position: absolute;
        top: 50%;
        left: 0;
        opacity: 0;
        -webkit-transform: translateY(-50%) scale(0.3);
        transform: translateY(-50%) scale(0.3)
    }

    .header .header-mobile-nav .icon--close {
        width: 19px;
        height: 19px;
        display: block
    }

    .header .header-mobile-nav .mobile-nav-toggle-show .icon-state-primary {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }

    .header .header-mobile-nav .mobile-nav-toggle-show .icon-state-secondary {
        opacity: 1;
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1)
    }

@media(max-width: 575px) {
    .header .header-mobile-nav {
        border: none;
        padding-left: 15px
    }
}

.header.header-home {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px)
}

    .header.header-home .logo svg .logo-text {
        fill: var(--color-white)
    }

    .header.header-home .menu-items .menu-item .menu-link {
        color: var(--color-white)
    }

    .header.header-home .header-mobile-nav .icon {
        fill: var(--color-white)
    }

        .header.header-home .header-mobile-nav .icon path {
            fill: var(--color-white)
        }

    .header.header-home.is-sticky {
        background-color: rgba(0,0,0,.5);
        -webkit-backdrop-filter: blur(50px);
        backdrop-filter: blur(50px);
        -webkit-animation: none;
        animation: none
    }

.header.is-sticky {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 5px 16px rgba(0,0,0,.1);
    box-shadow: 0 5px 16px rgba(0,0,0,.1);
    -webkit-animation: slideDown .5s ease-out;
    animation: slideDown .5s ease-out
}

.nav-wrapper {
    position: fixed;
    width: 300px;
    height: 100vh;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 99999
}

    .nav-wrapper.show-menu {
        -webkit-transform: none;
        transform: none
    }

    .nav-wrapper nav {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        background-color: var(--theme-color)
    }

        .nav-wrapper nav .nav-toggle {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 15px;
            background-color: var(--color-black);
            color: var(--color-white);
            z-index: 100;
            cursor: pointer;
            -webkit-transition: backgroun-color .2s;
            transition: backgroun-color .2s
        }

            .nav-wrapper nav .nav-toggle.back-visible .nav-back {
                opacity: 1
            }

            .nav-wrapper nav .nav-toggle.back-visible .nav-title {
                -webkit-transform: translateX(40px);
                transform: translateX(40px)
            }

        .nav-wrapper nav .nav-title {
            position: absolute;
            left: 0;
            top: 18px;
            padding-left: 15px;
            -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s
        }

        .nav-wrapper nav .nav-back {
            display: inline-block;
            position: relative;
            width: 30px;
            height: 30px;
            vertical-align: middle;
            z-index: 1;
            opacity: 0;
            -webkit-transition: opacity .2s;
            transition: opacity .2s
        }

            .nav-wrapper nav .nav-back:before, .nav-wrapper nav .nav-back:after {
                content: "";
                position: absolute;
                top: 50%
            }

            .nav-wrapper nav .nav-back:before {
                left: 50%;
                width: 9px;
                height: 9px;
                border: 2px solid currentcolor;
                border-right-color: rgba(0,0,0,0);
                border-bottom-color: rgba(0,0,0,0);
                -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
                transform: translate(-50%, -50%) rotateZ(-45deg)
            }

            .nav-wrapper nav .nav-back:after {
                left: 28%;
                width: 15px;
                height: 2px;
                background-color: currentcolor;
                margin-top: -1px
            }

        .nav-wrapper nav a {
            display: block;
            position: relative;
            padding: 15px 15px;
            border-bottom: 1px solid rgba(255,255,255,.15);
            color: var(--color-white);
            text-decoration: none;
            -webkit-transition: color .15s,background-color .15s;
            transition: color .15s,background-color .15s
        }

            .nav-wrapper nav a:hover {
                color: var(--color-white);
                background-color: #0e416c
            }

        .nav-wrapper nav ul {
            list-style: none;
            padding: 60px 0 0;
            -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
            background-color: rgba(0,0,0,0);
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%
        }

            .nav-wrapper nav ul ul {
                display: none;
                left: 100%
            }

        .nav-wrapper nav li.has-dropdown > a {
            /* padding-right: 2.5em; */
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden
        }

            .nav-wrapper nav li.has-dropdown > a:after {
                content: "";
                position: absolute;
                top: 50%;
                right: 1em;
                width: 9px;
                height: 9px;
                border: 1px solid currentcolor;
                border-left-color: rgba(0,0,0,0);
                border-top-color: rgba(0,0,0,0);
                -webkit-transform: translateY(-90%) rotateZ(-45deg);
                transform: translateY(-90%) rotateZ(-45deg);
                -webkit-transition: -webkit-transform .3s;
                transition: -webkit-transform .3s;
                transition: transform .3s;
                transition: transform .3s, -webkit-transform .3s;
                -webkit-transform-origin: 100%;
                transform-origin: 100%
            }

        .nav-wrapper nav li.nav-dropdown-open > ul {
            display: block
        }

footer {
    padding: 0 !important
}

    footer .footer-top {
        padding: 100px 0 80px;
        background-color: var(--light-color)
    }

        footer .footer-top .footer-content .logo {
            margin-bottom: 50px
        }

            footer .footer-top .footer-content .logo img {
                max-width: 132px
            }

@media(max-width: 1699px) {
    footer .footer-top .footer-content .logo img {
        max-width: 100px
    }
}

@media(max-width: 1280px) {
    footer .footer-top .footer-content .logo {
        margin-bottom: 30px
    }
}

footer .footer-top .footer-content .enquiry-link a {
    font-size: 30px;
    line-height: 45px;
    color: var(--theme-color);
    font-weight: 600
}

    footer .footer-top .footer-content .enquiry-link a i {
        color: var(--secondary-color);
        margin-left: 10px
    }

@media(max-width: 991px) {
    footer .footer-top .footer-content .enquiry-link a {
        font-size: 20px;
        line-height: 35px
    }
}

footer .footer-top .footer-contact-info h4 {
    font-size: 15px;
    color: var(--color-black);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    footer .footer-top .footer-contact-info h4 {
        margin-bottom: 10px
    }
}

footer .footer-top .footer-contact-info p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 30px;
    margin-bottom: 20px
}

@media(max-width: 1280px) {
    footer .footer-top .footer-contact-info p {
        font-size: 12px
    }
}

footer .footer-top .footer-contact-info .location-link {
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 600;
    position: relative;
    margin-bottom: 30px;
    display: inline-block
}

    footer .footer-top .footer-contact-info .location-link::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: var(--theme-color)
    }

@media(max-width: 1280px) {
    footer .footer-top .footer-contact-info .location-link {
        font-size: 14px
    }
}

footer .footer-top .footer-contact-info ul {
    display: block
}

    footer .footer-top .footer-contact-info ul li {
        color: var(--theme-color);
        margin-bottom: 10px
    }

        footer .footer-top .footer-contact-info ul li:last-child {
            margin: 0
        }

        footer .footer-top .footer-contact-info ul li a {
            font-size: 15px;
            color: var(--color-black);
            font-weight: 500;
            margin-left: 10px
        }

@media(max-width: 991px) {
    footer .footer-top .footer-contact-info {
        border-top: 1px solid rgba(0,0,0,.15);
        padding-top: 30px;
        margin-top: 30px
    }
}

@media(max-width: 991px) {
    footer .footer-top {
        padding: 50px 0 50px;
        text-align: center
    }
}

footer .footer-bottom {
    border-top: 1px solid rgba(0,0,0,.15);
    padding: 30px 0
}

    footer .footer-bottom .row {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

@media(max-width: 1280px) {
    footer .footer-bottom .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

footer .footer-bottom p {
    font-size: 15px;
    color: var(--color-black);
    margin: 0;
    padding: 0
}

@media(max-width: 1280px) {
    footer .footer-bottom p {
        text-align: center
    }
}

footer .footer-bottom .social-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 15px
}

    footer .footer-bottom .social-links ul li a {
        background-color: var(--color-white);
        border: 1px solid rgba(0,0,0,.15);
        color: var(--color-dark);
        font-size: 15px;
        width: 50px;
        height: 50px;
        border-radius: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

@media(max-width: 1280px) {
    footer .footer-bottom .social-links ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(max-width: 1280px) {
    footer .footer-bottom .social-links {
        margin-bottom: 15px
    }
}

.white-popup-block {
    background: #fff;
    padding: 50px 50px;
    text-align: left;
    max-width: 650px;
    margin: 40px auto;
    position: relative
}

    .white-popup-block .title {
        font-size: 30px;
        line-height: 45px;
        color: var(--color-dark);
        font-weight: 700;
        margin-bottom: 50px
    }

@media(max-width: 1280px) {
    .white-popup-block .title {
        font-size: 26px;
        line-height: 35px
    }
}

@media(max-width: 991px) {
    .white-popup-block .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px
    }
}

.white-popup-block .form-control {
    background-color: #f7f9fa;
    color: #000;
    font-size: 15px;
    border: 1px solid #f7f9fa;
    border-radius: 0;
    padding: 15px 30px
}

.white-popup-block input.form-control {
    height: 60px
}

.white-popup-block textarea.form-control {
    height: 120px
}

@media(max-width: 1280px) {
    .white-popup-block {
        padding: 30px 30px
    }

        .white-popup-block .mb-4 {
            margin-bottom: 1rem !important
        }
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    border: 1px solid #eee;
    background-color: var(--color-white)
}

    .progress-wrap.active-progress {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    .progress-wrap::after {
        position: absolute;
        content: "";
        text-align: center;
        line-height: 50px;
        left: 0;
        top: 0;
        height: 15px;
        width: 15px;
        cursor: pointer;
        display: block;
        z-index: 1;
        transition: all 200ms linear;
        -webkit-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
        background: url(../images/up-arrow.svg) no-repeat;
        background-position: center;
        margin: auto;
        right: 0;
        bottom: 0
    }

    .progress-wrap:hover::before {
        opacity: 1
    }

    .progress-wrap svg path {
        fill: none
    }

    .progress-wrap svg.progress-circle path {
        stroke: var(--theme-color);
        stroke-width: 4;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        transition: all 200ms linear;
        -webkit-transition: all 200ms linear;
        -o-transition: all 200ms linear;
        -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear
    }

@media(max-width: 991px) {
    .progress-wrap {
        width: 40px;
        height: 40px
    }
}

.home-slider {
    padding: 0;
    position: relative;
    overflow: hidden
}

    .home-slider .hero-slider {
        width: 100%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        z-index: 0
    }

        .home-slider .hero-slider .swiper-slide {
            overflow: hidden;
            color: #fff
        }

        .home-slider .hero-slider .swiper-container {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0
        }

        .home-slider .hero-slider .slide-inner {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1
        }

            .home-slider .hero-slider .slide-inner::before {
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, rgb(0, 24, 40) 0%, rgba(0, 24, 40, 0) 100%)
            }

            .home-slider .hero-slider .slide-inner .slide-video video {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover
            }

            .home-slider .hero-slider .slide-inner .meta {
                position: absolute;
                width: 100%;
                left: 0;
                right: 0;
                bottom: 100px
            }

                .home-slider .hero-slider .slide-inner .meta .row {
                    -webkit-box-align: end;
                    -ms-flex-align: end;
                    align-items: flex-end
                }

@media(max-width: 1699px) {
    .home-slider .hero-slider .slide-inner .meta {
        bottom: 150px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .slide-inner .slider-left {
        width: 100%
    }
}

.home-slider .hero-slider .slide-inner .slider-title {
    position: relative;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease
}

    .home-slider .hero-slider .slide-inner .slider-title h2 {
        font-size: 50px;
        line-height: 70px;
        color: var(--color-white);
        font-family: var(--theme-font);
        text-transform: capitalize;
        font-weight: 600;
        text-align: left;
        margin-bottom: 30px;
        padding: 0
    }

@media(max-width: 1699px) {
    .home-slider .hero-slider .slide-inner .slider-title h2 {
        font-size: 35px;
        line-height: 45px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .slide-inner .slider-title h2 {
        font-size: 30px;
        line-height: normal;
        text-align: center
    }

        .home-slider .hero-slider .slide-inner .slider-title h2 br {
            display: none
        }
}

@media(max-width: 767px) {
    .home-slider .hero-slider .slide-inner .slider-title h2 {
        font-size: 26px
    }
}

.home-slider .hero-slider .slide-inner .slider-text p {
    font-size: 18px;
    color: var(--color-white);
    line-height: 35px;
    font-weight: 400;
    padding: 0;
    max-width: 60%;
    margin-bottom: 30px
}

@media(max-width: 1699px) {
    .home-slider .hero-slider .slide-inner .slider-text p {
        font-size: 15px;
        line-height: 30px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .slide-inner .slider-text p {
        margin: 0 auto;
        margin-bottom: 30px;
        text-align: center
    }
}

@media(max-width: 767px) {
    .home-slider .hero-slider .slide-inner .slider-text p {
        max-width: 100%
    }
}

.home-slider .hero-slider .slide-inner .slider-btn .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .home-slider .hero-slider .slide-inner .slider-btn .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .home-slider .hero-slider .slide-inner .slider-btn .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .home-slider .hero-slider .slide-inner .slider-btn .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .slide-inner .slider-btn .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.home-slider .hero-slider .swipper-navigation {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px
}

@media(max-width: 1699px) {
    .home-slider .hero-slider .swipper-navigation {
        bottom: 100px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .swipper-navigation {
        position: relative
    }
}

.home-slider .hero-slider .swiper-button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 20px
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .swiper-button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.home-slider .hero-slider .swiper-button-prev, .home-slider .hero-slider .swiper-button-next {
    background: rgba(0,0,0,0);
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border-radius: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0;
    opacity: .95;
    position: relative
}

    .home-slider .hero-slider .swiper-button-prev:hover, .home-slider .hero-slider .swiper-button-next:hover {
        opacity: 1
    }

    .home-slider .hero-slider .swiper-button-prev::after, .home-slider .hero-slider .swiper-button-prev::before, .home-slider .hero-slider .swiper-button-next::after, .home-slider .hero-slider .swiper-button-next::before {
        width: 18px;
        height: 18px
    }

@media(max-width: 1280px) {
    .home-slider .hero-slider .swiper-button-prev::after, .home-slider .hero-slider .swiper-button-prev::before, .home-slider .hero-slider .swiper-button-next::after, .home-slider .hero-slider .swiper-button-next::before {
        width: 15px;
        height: 15px
    }
}

@media(max-width: 1699px) {
    .home-slider .hero-slider .swiper-button-prev, .home-slider .hero-slider .swiper-button-next {
        width: 50px;
        height: 50px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .swiper-button-prev, .home-slider .hero-slider .swiper-button-next {
        width: 35px;
        height: 35px;
        opacity: 1;
        visibility: visible
    }
}

.home-slider .hero-slider .swiper-button-prev:hover, .home-slider .hero-slider .swiper-button-next:hover {
    background-color: var(--color-white);
    border-color: var(--color-white)
}

.home-slider .hero-slider .swiper-button-prev {
    left: 0;
    -webkit-transform: none;
    transform: none
}

    .home-slider .hero-slider .swiper-button-prev::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        background-image: url(../images/arrow-prev.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain
    }

.home-slider .hero-slider .swiper-button-next {
    right: 0;
    -webkit-transform: none;
    transform: none
}

    .home-slider .hero-slider .swiper-button-next::after {
        content: "";
        color: #d4d3d3;
        display: inline-block;
        vertical-align: middle;
        background-image: url(../images/arrow-next.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain
    }

@media(max-width: 1280px) {
    .home-slider .hero-slider:hover .swiper-button-prev, .home-slider .hero-slider:hover .swiper-button-next {
        opacity: 1;
        visibility: visible
    }
}

.home-slider .hero-slider .swiper-pagination {
    bottom: 70px;
    left: 150px;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media(max-width: 1699px) {
    .home-slider .hero-slider .swiper-pagination {
        left: 120px
    }
}

@media(max-width: 1280px) {
    .home-slider .hero-slider .swiper-pagination {
        left: 0;
        right: 0;
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.home-slider .hero-slider .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 0;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0,0,0,0);
    border: 1px solid var(--color-white);
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.home-slider .hero-slider .swiper-pagination-bullet-active {
    background-color: var(--color-white)
}

@media(min-width: 1700px) {
    .custom-container {
        padding: 0 100px
    }
}

.mt-20 {
    margin-top: 20px
}

.mb-50 {
    margin-bottom: 50px
}

.mt-50 {
    margin-top: 50px
}

.mt-70 {
    margin-top: 70px
}

.mt-100 {
    margin-top: 100px
}

.main-title {
    text-align: center
}

    .main-title .title {
        font-size: 33px;
        color: var(--theme-color);
        font-weight: 600;
        margin: 0;
        padding: 0;
        text-transform: capitalize
    }

@media(max-width: 1280px) {
    .main-title .title {
        font-size: 25px
    }
}

.main-title .sub-title {
    font-size: 30px;
    color: var(--color-black);
    font-weight: 700
}

.industries-section .box-item {
    background-color: var(--color-white);
    border-radius: 30px;
    border: 1px solid #ebe3e3;
    padding: 50px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

@media(max-width: 767px) {
    .industries-section .box-item {
        text-align: center
    }
}

.industries-section .box-item::before, .industries-section .box-item::after {
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.industries-section .box-item::before {
    background-color: var(--color-white);
    left: 0;
    right: 0;
    bottom: 0
}

.industries-section .box-item::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 65, 108, 0)), to(rgb(14, 65, 108)));
    background: linear-gradient(to bottom, rgba(14, 65, 108, 0) 0%, rgb(14, 65, 108) 100%);
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0
}

.industries-section .box-item .meta-icon {
    margin-bottom: 80px
}

@media(max-width: 767px) {
    .industries-section .box-item .meta-icon {
        margin-bottom: 40px
    }
}

.industries-section .box-item .meta-icon svg .icon-gray {
    fill: #908282;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.industries-section .box-item .meta-icon svg .icon-red {
    fill: #fe0000;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.industries-section .box-item .meta-box .meta-title {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: 30px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.industries-section .box-item .meta-box .button-wrapper .explore-btn {
    background-color: rgba(0,0,0,0);
    border-radius: 50px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

@media(max-width: 767px) {
    .industries-section .box-item .meta-box .button-wrapper .explore-btn {
        margin: 0 auto
    }
}

.industries-section .box-item .meta-box .button-wrapper .explore-btn i {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid var(--theme-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 30px
}

    .industries-section .box-item .meta-box .button-wrapper .explore-btn i svg {
        width: 6px;
        height: 6px;
        fill: var(--theme-color)
    }

.industries-section .box-item:before {
    opacity: 0
}

.industries-section .box-item:after {
    opacity: 1
}

.industries-section .box-item .meta-icon svg .icon-gray {
    fill: var(--color-white)
}

.industries-section .box-item .meta-box .meta-title {
    color: var(--color-white)
}

.industries-section .box-item .meta-box .button-wrapper .explore-btn {
    background-color: var(--color-white);
    border-color: var(--color-white)
}

@media(max-width: 1280px) {
    .industries-section .box-item {
        padding: 30px 30px;
        margin-bottom: 26px
    }
}

@media(max-width: 767px) {
    .industries-section .mt-50 {
        margin-top: 20px
    }
}

.products-section {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(247, 249, 250)));
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(247, 249, 250) 100%)
}

    .products-section .main-title .title {
        margin-bottom: 30px
    }

@media(max-width: 767px) {
    .products-section .main-title .title {
        margin-bottom: 10px
    }
}

@media(max-width: 767px) {
    .products-section .main-title .sub-title {
        font-size: 25px
    }
}

@media(max-width: 767px) {
    .products-section .mt-50 {
        margin-top: 20px
    }
}

.products-section .products-slider .slider-item .img-block {
    overflow: hidden;
    position: relative
}

    .products-section .products-slider .slider-item .img-block img {
        width: 100%;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

.products-section .products-slider .slider-item .meta-block {
    padding: 30px 30px
}

    .products-section .products-slider .slider-item .meta-block .title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 30px;
        color: var(--color-black)
    }

@media(max-width: 767px) {
    .products-section .products-slider .slider-item .meta-block .title {
        font-size: 20px;
        margin-bottom: 10px
    }
}

.products-section .products-slider .slider-item .meta-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    max-width: 100%
}

.products-section .products-slider .slider-item .meta-block span {
    background-color: var(--theme-color);
    border-radius: 50px;
    border: 1px solid var(--theme-color);
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 30px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

@media(max-width: 767px) {
    .products-section .products-slider .slider-item .meta-block span {
        margin-top: 15px
    }
}

.products-section .products-slider .slider-item .meta-block span i {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 30px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

    .products-section .products-slider .slider-item .meta-block span i svg {
        width: 6px;
        height: 6px;
        fill: var(--color-white)
    }

.products-section .products-slider .slider-item a:hover .img-block img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.products-section .products-slider .slider-item a:hover .meta-block span {
    background-color: rgba(0,0,0,0);
    color: var(--theme-color)
}

    .products-section .products-slider .slider-item a:hover .meta-block span i {
        border-color: var(--theme-color)
    }

        .products-section .products-slider .slider-item a:hover .meta-block span i svg {
            fill: var(--theme-color)
        }

.products-section .products-slider .owl-nav {
    margin: 0 auto;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px
}

@media(min-width: 1281px) {
    .products-section .products-slider .owl-nav {
        margin-top: 0
    }
}

@media(max-width: 1699px) {
    .products-section .products-slider .owl-nav {
        position: static
    }
}

.products-section .products-slider .owl-nav .owl-prev, .products-section .products-slider .owl-nav .owl-next {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #dbdbdb
}

@media(max-width: 1699px) {
    .products-section .products-slider .owl-nav .owl-prev, .products-section .products-slider .owl-nav .owl-next {
        width: 50px;
        height: 50px
    }
}

@media(min-width: 1281px) {
    .products-section .products-slider .owl-nav .owl-prev, .products-section .products-slider .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.products-section .products-slider .owl-nav .owl-prev span, .products-section .products-slider .owl-nav .owl-next span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../images/owl-next.svg) no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
    color: rgba(0,0,0,0)
}

@media(max-width: 1699px) {
    .products-section .products-slider .owl-nav .owl-prev span, .products-section .products-slider .owl-nav .owl-next span {
        width: 15px;
        height: 15px
    }
}

.products-section .products-slider .owl-nav .owl-prev:hover, .products-section .products-slider .owl-nav .owl-next:hover {
    background-color: var(--color-white)
}

.products-section .products-slider .owl-nav .owl-prev span {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

@media(min-width: 1281px) {
    .products-section .products-slider .owl-nav .owl-prev {
        left: -70px
    }
}

@media(min-width: 1700px) {
    .products-section .products-slider .owl-nav .owl-prev {
        left: -110px
    }
}

@media(min-width: 1281px) {
    .products-section .products-slider .owl-nav .owl-next {
        right: -70px
    }
}

@media(min-width: 1700px) {
    .products-section .products-slider .owl-nav .owl-next {
        right: -110px
    }
}

.products-section .line-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,.15);
    margin: 100px auto
}

@media(max-width: 1280px) {
    .products-section .line-divider {
        margin: 50px auto
    }
}

.products-section .products-video-slider .video-link {
    position: relative;
    z-index: 1
}

    .products-section .products-video-slider .video-link::after {
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -o-transition: all .5s ease;
        -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 65, 108, 0)), to(rgb(14, 65, 108)));
        background: linear-gradient(to bottom, rgba(14, 65, 108, 0) 0%, rgb(14, 65, 108) 100%);
        left: 0;
        right: 0;
        bottom: 0
    }

    .products-section .products-video-slider .video-link .video-thumb {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .products-section .products-video-slider .video-link .meta-icon {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 9
    }

        .products-section .products-video-slider .video-link .meta-icon img {
            max-width: 50px;
            margin: 0 auto
        }

    .products-section .products-video-slider .video-link .meta-title {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 30px 15px;
        text-align: center;
        z-index: 9
    }

        .products-section .products-video-slider .video-link .meta-title h4 {
            color: var(--color-white);
            font-size: 18px;
            font-weight: 500;
            margin: 0;
            padding: 0
        }

    .products-section .products-video-slider .video-link:hover .video-thumb {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

.products-section .products-video-slider .owl-dots {
    text-align: center;
    margin-top: 50px
}

    .products-section .products-video-slider .owl-dots .owl-dot {
        outline: none;
        width: 8px;
        height: 8px;
        margin-right: 10px;
        background: rgba(0,0,0,0);
        border: 1px solid var(--theme-color);
        border-radius: 100%;
        transition: 400ms;
        -webkit-transition: 400ms;
        -o-transition: 400ms;
        -moz-transition: 400ms;
        -ms-transition: 400ms
    }

        .products-section .products-video-slider .owl-dots .owl-dot.active {
            background: var(--theme-color);
            width: 8px
        }

.other-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 150px 0;
    position: relative;
    z-index: 1
}

@media(max-width: 767px) {
    .other-section {
        padding: 50px 0
    }
}

.other-section::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)
}

@media(max-width: 1280px) {
    .other-section .content-block {
        text-align: left !important
    }
}

@media(max-width: 991px) {
    .other-section .content-block {
        text-align: center !important
    }
}

.other-section .content-block .title {
    color: var(--color-white);
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 30px
}

.other-section .content-block p {
    font-size: 15px;
    color: var(--color-white);
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px
}

.other-section .content-block .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .other-section .content-block .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .other-section .content-block .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .other-section .content-block .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 991px) {
    .other-section .content-block .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(max-width: 1280px) {
    .other-section .content-block {
        text-align: center
    }
}

.page-navigation {
    background-color: var(--theme-color);
    padding: 15px 0
}

    .page-navigation .breadcrumb {
        margin: 0
    }

        .page-navigation .breadcrumb .breadcrumb-item {
            color: var(--color-white);
            margin: 0
        }

            .page-navigation .breadcrumb .breadcrumb-item.active {
                color: var(--secondary-color)
            }

@media(max-width: 1280px) {
    .page-navigation .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.inner-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 9;
    padding: 50px 0
}

    .inner-banner:after {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: var(--color-black);
        z-index: -9
    }

    .inner-banner .banner-details {
        text-align: center
    }

        .inner-banner .banner-details h1 {
            font-size: 35px;
            color: var(--color-white);
            font-family: var(--title-font);
            text-transform: capitalize;
            font-weight: 600
        }

        .inner-banner .banner-details ul li {
            display: inline-block;
            color: #fff;
            padding-left: 15px;
            position: relative;
            margin-right: 10px
        }

            .inner-banner .banner-details ul li:before {
                position: absolute;
                content: "";
                left: 0;
                top: 12px;
                bottom: 0;
                width: 8px;
                height: 3px;
                background: #fff;
                border-radius: 10px
            }

.about-overview {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}

    .about-overview::before {
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        background: -webkit-gradient(linear, left top, right top, from(rgba(18, 71, 142, 0)), color-stop(38%, rgba(18, 71, 142, 0.6)), to(rgba(18, 71, 142, 0.75)));
        background: linear-gradient(to right, rgba(18, 71, 142, 0) 0%, rgba(18, 71, 142, 0.6) 38%, rgba(18, 71, 142, 0.75) 100%);
        z-index: -1
    }

@media(max-width: 767px) {
    .about-overview::before {
        background: rgba(18,71,142,.75)
    }
}

.about-overview .overview-content .main-title {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding-bottom: 30px;
    color: var(--color-white);
    text-align: left
}

    .about-overview .overview-content .main-title .title {
        color: var(--color-white)
    }

    .about-overview .overview-content .main-title span {
        line-height: 30px;
        font-size: 18px;
        width: 100%;
        padding-top: 15px;
        display: block;
        font-weight: 500;
        color: var(--color-white)
    }

@media(max-width: 1280px) {
    .about-overview .overview-content .main-title {
        text-align: center
    }
}

.about-overview .overview-content p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-white);
    margin: 0 0 20px;
    padding: 0;
    max-width: 100%;
    text-align: left
}

@media(max-width: 1280px) {
    .about-overview .overview-content p {
        text-align: justify;
        -moz-text-align-last: center;
        text-align-last: center
    }
}

@media(max-width: 1280px) {
    .about-overview {
        background-position: center left
    }
}

.about-video {
    min-height: 650px;
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    .about-video:after {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #001828;
        opacity: .7;
        z-index: -9
    }

    .about-video a {
        width: 120px;
        height: 120px;
        border: 1px solid #fff;
        padding: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        z-index: 9
    }

        .about-video a:before {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            border: 1px solid #fff;
            border-radius: 50%;
            opacity: 0;
            -webkit-animation: pulse-border-2 1.5s linear infinite;
            animation: pulse-border-2 1.5s linear infinite;
            visibility: hidden
        }

        .about-video a:after {
            position: absolute;
            content: "";
            background: #fff;
            left: 0;
            right: 0;
            top: 100%;
            bottom: 0;
            -webkit-transition: all 400ms;
            transition: all 400ms;
            z-index: -9
        }

        .about-video a svg {
            width: 25px;
            height: 25px
        }

            .about-video a svg path {
                fill: #fff;
                -webkit-transition: all 400ms;
                transition: all 400ms
            }

        .about-video a:hover {
            border-radius: 50%
        }

            .about-video a:hover:before {
                opacity: 1;
                visibility: visible;
                -webkit-transition-delay: 1s;
                transition-delay: 1s
            }

            .about-video a:hover:after {
                top: 0;
                -webkit-transition: all 400ms;
                transition: all 400ms;
                border-radius: 50%
            }

            .about-video a:hover svg path {
                fill: var(--secondary-color);
                -webkit-transition: all 400ms;
                transition: all 400ms
            }

@media(max-width: 1280px) {
    .about-video a {
        width: 100px;
        height: 100px
    }
}

@media(max-width: 767px) {
    .about-video a {
        width: 70px;
        height: 70px;
        padding: 25px
    }
}

@media(max-width: 1280px) {
    .about-video {
        min-height: 450px
    }
}

@media(max-width: 767px) {
    .about-video {
        min-height: 300px
    }
}

@-webkit-keyframes pulse-border-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@keyframes pulse-border-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

.who-we-are .top {
    margin-bottom: 70px
}

    .who-we-are .top .main-title {
        text-align: left
    }

    .who-we-are .top span {
        line-height: 30px;
        font-size: 18px;
        width: 60%;
        padding-top: 15px;
        display: block;
        font-weight: 500
    }

.who-we-are .logo figure img {
    width: auto;
    max-width: 200px
}

@media(max-width: 1280px) {
    .who-we-are .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 30px
    }
}

@media(max-width: 767px) {
    .who-we-are .logo {
        margin-bottom: 10px
    }
}

.who-we-are .title h3 {
    font-size: 18px;
    font-weight: 700
}

    .who-we-are .title h3 span {
        display: block
    }

@media(max-width: 1280px) {
    .who-we-are .title {
        width: 100%;
        text-align: center;
        margin-bottom: 30px
    }
}

@media(max-width: 767px) {
    .who-we-are .title {
        margin-bottom: 10px
    }
}

.who-we-are .details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px
}

    .who-we-are .details h3 span {
        display: block
    }

.who-we-are .details p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    max-width: 95%
}

@media(max-width: 1280px) {
    .who-we-are .details p {
        max-width: 100%;
        text-align: justify;
        -moz-text-align-last: center;
        text-align-last: center
    }
}

@media(max-width: 1280px) {
    .who-we-are .details {
        width: 100%;
        text-align: center
    }
}

.who-we-are .seperation hr {
    border: 0;
    border-top: 1px solid #eee;
    opacity: 1;
    margin: 70px 0
}

@media(max-width: 1280px) {
    .who-we-are .seperation hr {
        margin: 50px 0
    }
}

.contact-details {
    background: #f7f9fa
}

    .contact-details .details .main-title {
        text-align: -webkit-match-parent;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px
    }

        .contact-details .details .main-title span {
            line-height: 30px;
            font-size: 18px;
            width: 100%;
            padding-top: 15px;
            display: block;
            font-weight: 500
        }

@media(max-width: 991px) {
    .contact-details .details .main-title {
        text-align: center
    }
}

.contact-details .details .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    padding-bottom: 15px
}

    .contact-details .details .address .icon i {
        padding-top: 8px;
        color: var(--theme-color)
    }

    .contact-details .details .address p {
        font-size: 15px;
        line-height: 30px;
        color: var(--color-black);
        margin: 0;
        padding: 0;
        max-width: 100%
    }

@media(max-width: 991px) {
    .contact-details .details .address {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }
}

.contact-details .cnt-form form {
    padding-left: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

    .contact-details .cnt-form form .input-filed {
        width: 100%;
        margin-bottom: 2%
    }

        .contact-details .cnt-form form .input-filed input, .contact-details .cnt-form form .input-filed textarea {
            height: 70px;
            width: 100%;
            padding: 0 15px;
            border-radius: 0;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            border: none;
            background: rgba(1,0,129,.0196078431)
        }

@media(max-width: 1399px) {
    .contact-details .cnt-form form .input-filed input, .contact-details .cnt-form form .input-filed textarea {
        height: 50px
    }
}

.contact-details .cnt-form form .input-filed input::-webkit-input-placeholder, .contact-details .cnt-form form .input-filed textarea::-webkit-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed input::-moz-placeholder, .contact-details .cnt-form form .input-filed textarea::-moz-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed input:-ms-input-placeholder, .contact-details .cnt-form form .input-filed textarea:-ms-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed input::-ms-input-placeholder, .contact-details .cnt-form form .input-filed textarea::-ms-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed input::placeholder, .contact-details .cnt-form form .input-filed textarea::placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed textarea {
    min-height: 150px;
    padding-top: 15px
}

@media(max-width: 1399px) {
    .contact-details .cnt-form form .input-filed textarea {
        min-height: 100px
    }
}

.contact-details .cnt-form form .input-filed textarea::-webkit-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed textarea::-moz-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed textarea:-ms-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed textarea::-ms-input-placeholder {
    font-size: 15px;
    color: #000
}

.contact-details .cnt-form form .input-filed textarea::placeholder {
    font-size: 15px;
    color: #000
}

@media(max-width: 767px) {
    .contact-details .cnt-form form .input-filed textarea {
        min-height: 100px
    }
}

.contact-details .cnt-form form .input-filed.half {
    width: 49%
}

@media(max-width: 767px) {
    .contact-details .cnt-form form .input-filed.half {
        width: 100%
    }
}

.contact-details .cnt-form form .input-filed.textarea {
    width: 100%
}

.contact-details .cnt-form form .input-filed.submit input {
    border: 1px solid var(--theme-color);
    background: var(--theme-color);
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    width: auto;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    outline: none
}

    .contact-details .cnt-form form .input-filed.submit input:hover {
        background: var(--secondary-color);
        border: 1px solid #fff;
        color: #fff;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

@media(max-width: 991px) {
    .contact-details .cnt-form form .input-filed.submit {
        text-align: center;
        margin-top: 15px
    }
}

@media(max-width: 991px) {
    .contact-details .cnt-form form {
        padding-left: 0
    }
}

@media(max-width: 991px) {
    .contact-details .cnt-form {
        margin-top: 30px
    }
}

@media(max-width: 767px) {
    .map-details {
        padding-bottom: 0
    }
}

@media(max-width: 1399px) {
    .map-details .location-map {
        margin-bottom: 50px
    }
}

.map-details .location-map h4 {
    font-size: 15px;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    background-color: var(--theme-color);
    padding: 15px 30px
}

.map-details .location-map iframe {
    width: 100%;
    height: 350px
}

.video-popup-block {
    width: 70%;
    padding: 0;
    margin: 0 auto
}

    .video-popup-block video {
        width: 100%
    }

.mfp-bg {
    background-color: rgba(0,0,0,.95)
}

.industries-page-title {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1
}

    .industries-page-title::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(1, 24, 54, 0.65)), to(rgba(1, 24, 54, 0)));
        background: linear-gradient(to right, rgba(1, 24, 54, 0.65) 0%, rgba(1, 24, 54, 0) 100%);
        z-index: -1
    }

    .industries-page-title .title-content {
        color: var(--color-white)
    }

        .industries-page-title .title-content h1 {
            font-size: 30px;
            font-weight: 700;
            color: currentColor;
            line-height: 1.5;
            padding: 0;
            margin-bottom: 30px
        }

@media(max-width: 991px) {
    .industries-page-title .title-content h1 {
        margin-bottom: 15px
    }
}

.industries-page-title .title-content p {
    font-size: 15px;
    line-height: 30px;
    color: currentColor;
    margin: 0;
    padding: 0
}

.industries-page-title .title-content .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px
}

    .industries-page-title .title-content .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .industries-page-title .title-content .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .industries-page-title .title-content .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 991px) {
    .industries-page-title .title-content .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(max-width: 991px) {
    .industries-page-title {
        min-height: 400px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 30px 0 30px;
        background-position: center right;
        text-align: justify;
        -moz-text-align-last: center;
        text-align-last: center
    }

        .industries-page-title::before {
            background: rgba(1,24,54,.65)
        }
}

@media(max-width: 767px) {
    .industries-overview {
        padding-bottom: 0
    }
}

.industries-overview .meta-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .industries-overview .meta-title {
        margin-bottom: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.industries-overview .meta-title i {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color)
}

@media(min-width: 992px) {
    .industries-overview .text-block {
        padding-right: 50px
    }
}

.industries-overview .text-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    color: var(--color-black);
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .industries-overview .text-block h2 {
        margin-bottom: 10px;
        text-align: center
    }
}

@media(max-width: 767px) {
    .industries-overview .text-block h2 {
        font-size: 25px
    }
}

.industries-overview .text-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-black)
}

@media(max-width: 991px) {
    .industries-overview .text-block p {
        margin-bottom: 30px
    }
}

.industries-overview .img-block {
    border-radius: 10px;
    overflow: hidden
}

@media(max-width: 991px) {
    .industries-overview {
        text-align: justify;
        -moz-text-align-last: center;
        text-align-last: center
    }
}

@media(max-width: 767px) {
    .industries-product-list {
        padding-bottom: 100px !important
    }
}

@media(max-width: 575px) {
    .industries-product-list {
        padding-bottom: 70px !important
    }
}

.industries-product-list .product-title {
    margin-bottom: 50px
}

@media(max-width: 767px) {
    .industries-product-list .product-title {
        text-align: center;
        margin-bottom: 30px
    }
}

.industries-product-list .meta-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .industries-product-list .meta-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px
    }
}

.industries-product-list .meta-title i {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color)
}

.industries-product-list h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-black)
}

@media(max-width: 575px) {
    .industries-product-list h2 {
        font-size: 25px
    }
}

.extra-block {
    position: relative;
    z-index: 1
}

@media(max-width: 767px) {
    .extra-block {
        margin-top: 50px
    }
}

.extra-block:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(0, 24, 40) 0%, rgba(0, 24, 40, 0.82) 100%);
    z-index: -1
}

.extra-block .content-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 15px
}

@media(max-width: 767px) {
    .extra-block .content-block h2 {
        font-size: 20px
    }
}

.extra-block .content-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-white);
    margin: 0
}

.extra-block .content-block .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px
}

    .extra-block .content-block .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .extra-block .content-block .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .extra-block .content-block .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

.products-page-title {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1
}

    .products-page-title::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(1, 24, 54, 0.75)), to(rgba(1, 24, 54, 0)));
        background: linear-gradient(to right, rgba(1, 24, 54, 0.75) 0%, rgba(1, 24, 54, 0) 100%);
        z-index: -1
    }

    .products-page-title .title-content {
        color: var(--color-white)
    }

@media(max-width: 991px) {
    .products-page-title .title-content {
        text-align: center
    }
}

.products-page-title .title-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: currentColor;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .products-page-title .title-content h1 {
        margin-bottom: 10px
    }
}

.products-page-title .title-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .products-page-title .title-content h4 {
        margin-bottom: 10px
    }
}

.products-page-title .title-content p {
    font-size: 15px;
    line-height: 30px;
    color: currentColor;
    margin: 0;
    padding: 0
}

.products-page-title .title-content .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px
}

    .products-page-title .title-content .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-black);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .products-page-title .title-content .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .products-page-title .title-content .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 991px) {
    .products-page-title .title-content .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.products-overview {
    padding: 0;
    padding-top: 100px
}

@media(max-width: 991px) {
    .products-overview {
        padding-top: 50px
    }
}

.products-overview .meta-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .products-overview .meta-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px
    }
}

.products-overview .meta-title i {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color)
}

.products-overview .text-block {
    padding-bottom: 50px
}

@media(max-width: 991px) {
    .products-overview .text-block {
        text-align: center
    }
}

.products-overview .text-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    color: var(--color-black);
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .products-overview .text-block h2 {
        margin-bottom: 10px
    }
}

.products-overview .text-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .products-overview .text-block h4 {
        margin-bottom: 10px
    }
}

.products-overview .text-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-black)
}

.products-overview .text-block .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px
}

    .products-overview .text-block .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-white);
        background-color: var(--theme-color);
        border: 1px solid var(--theme-color);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .products-overview .text-block .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--theme-color);
            color: var(--theme-color)
        }

@media(max-width: 1399px) {
    .products-overview .text-block .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 991px) {
    .products-overview .text-block .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.products-overview .img-block {
    overflow: hidden;
    text-align: right
}

@media(max-width: 991px) {
    .products-overview .img-block {
        text-align: center
    }
}

.products-overview .img-block img {
    max-width: 350px
}

@media(max-width: 767px) {
    .products-overview .img-block img {
        max-width: 180px
    }
}

@media(max-width: 767px) {
    .products-product-list {
        padding-bottom: 100px !important
    }
}

@media(max-width: 575px) {
    .products-product-list {
        padding-bottom: 50px !important
    }
}

.products-product-list .product-title {
    margin-bottom: 50px
}

@media(max-width: 767px) {
    .products-product-list .product-title {
        text-align: center;
        margin-bottom: 30px
    }
}

.products-product-list h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-black);
    margin-bottom: 15px
}

@media(max-width: 767px) {
    .products-product-list h2 {
        margin-bottom: 10px;
        font-size: 25px
    }
}

.products-product-list p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-gray);
    margin: 0
}

.products-slider .slider-item {
    border: 1px solid #dbdbdb
}

    .products-slider .slider-item .img-block {
        overflow: hidden;
        position: relative;
        background-color: #fff
    }

        .products-slider .slider-item .img-block img {
            width: 100%;
            -webkit-transform: scale(1);
            transform: scale(1)
        }

    .products-slider .slider-item .meta-block {
        padding: 30px 30px
    }

@media(max-width: 767px) {
    .products-slider .slider-item .meta-block {
        padding: 30px 15px;
        text-align: center
    }
}

.products-slider .slider-item .meta-block h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block
}

.products-slider .slider-item .meta-block .title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-black)
}

@media(max-width: 767px) {
    .products-slider .slider-item .meta-block .title {
        margin-bottom: 10px
    }
}

.products-slider .slider-item .meta-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-black);
    margin: 0;
    padding: 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.products-slider .slider-item .meta-block span {
    background-color: var(--theme-color);
    border-radius: 50px;
    border: 1px solid var(--theme-color);
    color: var(--color-white);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 30px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

@media(max-width: 767px) {
    .products-slider .slider-item .meta-block span {
        margin: 20px auto 0
    }
}

.products-slider .slider-item .meta-block span i {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 30px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease
}

    .products-slider .slider-item .meta-block span i svg {
        width: 6px;
        height: 6px;
        fill: var(--color-white)
    }

.products-slider .slider-item a:hover .img-block img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.products-slider .slider-item a:hover .meta-block span {
    background-color: rgba(0,0,0,0);
    color: var(--theme-color)
}

    .products-slider .slider-item a:hover .meta-block span i {
        border-color: var(--theme-color)
    }

        .products-slider .slider-item a:hover .meta-block span i svg {
            fill: var(--theme-color)
        }

.products-slider .owl-nav {
    margin: 0 auto;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px
}

@media(max-width: 1699px) {
    .products-slider .owl-nav {
        position: absolute;
        right: 0;
        top: -80px;
        width: 110px
    }
}

@media(min-width: 1281px) {
    .products-slider .owl-nav {
        margin-top: 0
    }
}

@media(max-width: 1280px) {
    .products-slider .owl-nav {
        top: -140px
    }
}

@media(max-width: 767px) {
    .products-slider .owl-nav {
        top: auto;
        bottom: -100px;
        left: 0
    }
}

@media(max-width: 575px) {
    .products-slider .owl-nav {
        bottom: -80px
    }
}

.products-slider .owl-nav .owl-prev, .products-slider .owl-nav .owl-next {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: var(--color-white) !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #dbdbdb !important
}

@media(max-width: 1699px) {
    .products-slider .owl-nav .owl-prev, .products-slider .owl-nav .owl-next {
        width: 50px;
        height: 50px
    }
}

@media(min-width: 1281px) {
    .products-slider .owl-nav .owl-prev, .products-slider .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.products-slider .owl-nav .owl-prev span, .products-slider .owl-nav .owl-next span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../images/owl-next.svg) no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
    color: rgba(0,0,0,0)
}

@media(max-width: 1699px) {
    .products-slider .owl-nav .owl-prev span, .products-slider .owl-nav .owl-next span {
        width: 15px;
        height: 15px
    }
}

.products-slider .owl-nav .owl-prev:hover, .products-slider .owl-nav .owl-next:hover {
    background-color: var(--color-white)
}

.products-slider .owl-nav .owl-prev span {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1)
}

@media(min-width: 1281px) {
    .products-slider .owl-nav .owl-prev {
        left: -70px
    }
}

@media(min-width: 1700px) {
    .products-slider .owl-nav .owl-prev {
        left: -110px
    }
}

@media(max-width: 1699px) {
    .products-slider .owl-nav .owl-prev {
        left: 0px
    }
}

@media(min-width: 1281px) {
    .products-slider .owl-nav .owl-next {
        right: -70px
    }
}

@media(min-width: 1700px) {
    .products-slider .owl-nav .owl-next {
        right: -110px
    }
}

@media(max-width: 1699px) {
    .products-slider .owl-nav .owl-next {
        right: 0px
    }
}

.single-products-overview {
    padding: 0;
    padding-top: 100px;
    position: relative;
    z-index: 1
}

@media(max-width: 991px) {
    .single-products-overview {
        padding-top: 50px
    }
}

.single-products-overview::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18,71,142,.95);
    z-index: -1
}

.single-products-overview .meta-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .single-products-overview .meta-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px
    }
}

.single-products-overview .meta-title i {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color)
}

.single-products-overview .text-block {
    padding-bottom: 100px
}

@media(max-width: 991px) {
    .single-products-overview .text-block {
        padding-bottom: 50px;
        text-align: center
    }
}

.single-products-overview .text-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    color: var(--color-white);
    margin-bottom: 15px
}

.single-products-overview .text-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 30px
}

.single-products-overview .text-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-white);
    max-width: 80%;
    margin: 0
}

@media(max-width: 991px) {
    .single-products-overview .text-block p {
        max-width: 100%
    }
}

.single-products-overview .text-block .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px
}

    .single-products-overview .text-block .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--theme-color);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .single-products-overview .text-block .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .single-products-overview .text-block .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 991px) {
    .single-products-overview .text-block .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.single-products-overview .img-block {
    overflow: hidden;
    text-align: right
}

@media(max-width: 991px) {
    .single-products-overview .img-block {
        text-align: center
    }
}

.single-products-overview .img-block img {
    max-width: 350px
}

.video-section .video-block {
    min-height: 550px;
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

@media(max-width: 991px) {
    .video-section .video-block {
        min-height: 350px
    }
}

.video-section .video-block:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #001828;
    opacity: .7;
    z-index: -9
}

.video-section .video-block a {
    width: 100px;
    height: 100px;
    border: 1px solid #fff;
    padding: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 9
}

@media(max-width: 991px) {
    .video-section .video-block a {
        width: 70px;
        height: 70px;
        padding: 25px
    }
}

.video-section .video-block a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: pulse-border-2 1.5s linear infinite;
    animation: pulse-border-2 1.5s linear infinite;
    visibility: hidden
}

.video-section .video-block a:after {
    position: absolute;
    content: "";
    background: #fff;
    left: 0;
    right: 0;
    top: 100%;
    bottom: 0;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    z-index: -9
}

.video-section .video-block a svg {
    width: 25px;
    height: 25px
}

    .video-section .video-block a svg path {
        fill: #fff;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

.video-section .video-block a:hover {
    border-radius: 50%
}

    .video-section .video-block a:hover:before {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 1s;
        transition-delay: 1s
    }

    .video-section .video-block a:hover:after {
        top: 0;
        -webkit-transition: all 400ms;
        transition: all 400ms;
        border-radius: 50%
    }

    .video-section .video-block a:hover svg path {
        fill: var(--secondary-color);
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

@media(min-width: 992px) {
    .video-section .text-block {
        padding-left: 50px
    }
}

@media(max-width: 991px) {
    .video-section .text-block {
        margin-top: 30px;
        text-align: center
    }
}

.video-section .text-block .meta-title {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .video-section .text-block .meta-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px
    }
}

.video-section .text-block .meta-title i {
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--secondary-color)
}

.video-section .text-block h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--color-black);
    max-width: 70%;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .video-section .text-block h2 {
        max-width: 100%;
        margin-bottom: 10px;
        font-size: 25px
    }
}

.video-section .text-block p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-gray);
    max-width: 80%;
    margin: 0
}

@media(max-width: 991px) {
    .video-section .text-block p {
        max-width: 100%
    }
}

@media(max-width: 991px) {
    .benefits-section .row.mb-50 {
        margin-bottom: 30px
    }
}

.benefits-section .section-title .title {
    color: var(--color-black);
    font-size: 30px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 30px
}

@media(max-width: 767px) {
    .benefits-section .section-title .title {
        margin-bottom: 10px
    }
}

.benefits-section .section-title p {
    font-size: 15px;
    color: var(--color-black);
    font-weight: 400;
    line-height: 30px;
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .benefits-section .section-title p {
        margin-bottom: 10px;
        max-width: 100%
    }
}

.benefits-section .block-content h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 40px;
    color: var(--color-black);
    max-width: 70%;
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .benefits-section .block-content h4 {
        margin: 30px 0 10px;
        max-width: 100%;
        text-align: center
    }
}

.benefits-section .block-content p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-gray);
    max-width: 80%;
    margin: 0
}

@media(max-width: 991px) {
    .benefits-section .block-content p {
        max-width: 100%;
        text-align: center
    }
}

@media(min-width: 992px) {
    .benefits-section .block-content.pl-50 {
        padding-left: 50px
    }
}

.benefits-section .line {
    width: 100%;
    height: 1px;
    background-color: rgba(201,201,201,.5);
    margin: 80px auto
}

@media(max-width: 991px) {
    .benefits-section .line {
        margin: 40px auto
    }
}

.specifications {
    position: relative;
    z-index: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

    .specifications::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18,71,142,.95);
        z-index: -1
    }

    .specifications .section-title .meta-title {
        font-size: 15px;
        text-transform: uppercase;
        color: var(--color-white);
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px
    }

        .specifications .section-title .meta-title i {
            width: 12px;
            height: 12px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            background-color: var(--secondary-color)
        }

    .specifications .section-title .title {
        font-size: 30px;
        font-weight: 700;
        line-height: 45px;
        color: var(--color-white);
        margin-bottom: 15px
    }

    .specifications .section-title p {
        font-size: 15px;
        line-height: 30px;
        color: var(--color-white);
        max-width: 70%;
        margin: 0 auto;
        margin-bottom: 30px
    }

@media(max-width: 991px) {
    .specifications .section-title p {
        max-width: 100%
    }
}

.specifications .spec-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 50px 0
}

@media(max-width: 991px) {
    .specifications .spec-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 0
    }
}

.specifications .spec-wrapper .spec-item {
    width: 33.3333333333%;
    text-align: center
}

@media(max-width: 991px) {
    .specifications .spec-wrapper .spec-item {
        width: 100%;
        margin-bottom: 50px
    }
}

.specifications .spec-wrapper .spec-item .icon {
    margin-bottom: 30px
}

@media(max-width: 991px) {
    .specifications .spec-wrapper .spec-item .icon {
        margin-bottom: 20px
    }
}

.specifications .spec-wrapper .spec-item .icon img {
    max-width: 30px
}

.specifications .spec-wrapper .spec-item .icon svg {
    width: 30px;
    height: 30px
}

    .specifications .spec-wrapper .spec-item .icon svg path {
        fill: var(--color-white)
    }

.specifications .spec-wrapper .spec-item h4 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 700
}

.specifications .spec-wrapper .spec-item p {
    font-size: 15px;
    line-height: 30px;
    color: var(--color-white);
    max-width: 80%;
    margin: 0 auto
}

@media(max-width: 991px) {
    .specifications .spec-wrapper .spec-item p {
        max-width: 100%
    }
}

.specifications .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px
}

    .specifications .button-wrapper .theme-btn {
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 500;
        color: var(--theme-color);
        background-color: var(--color-white);
        border: 1px solid var(--color-white);
        border-radius: 50px;
        text-transform: uppercase;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .specifications .button-wrapper .theme-btn:hover {
            background-color: rgba(0,0,0,0);
            border: 1px solid var(--color-white);
            color: var(--color-white)
        }

@media(max-width: 1399px) {
    .specifications .button-wrapper .theme-btn {
        font-size: 12px;
        gap: 30px
    }
}

@media(max-width: 1280px) {
    .specifications .button-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}
i.bi.bi-list.fs-1.text-dark {
     -webkit-text-stroke: thin; 
}
