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


:root {
    --white: #fff;
    --black: #000;
    --blue: #2E8BD4;
    --dark-blue: #003F75;
    --font-montserrat: "Montserrat", sans-serif;
    --trans: all 0.4s ease-in-out;
}

/*----------  Genral CSS  ----------*/

* {
    padding: 0;
    margin: 0;
    border: none;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    scroll-behavior: smooth !important;
}

body {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    position: relative;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

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

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

p {
    margin-bottom: 20px;
    font-family: var(--font-montserrat);
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 700 !important;
}

a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

a:hover {
    color: var(--blue);
    text-decoration: none;
    outline: none !important;
}

a:focus {
    text-decoration: none;
    outline: none !important;
}

*:focus {
    outline: none;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* 1.1 SVG default css*/
svg:not(:root).svgImg {
    overflow: visible;
}

.svgImg {
    display: inline-block;
    font-size: inherit;
    width: 1em;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

.svg-icons {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000000s ease-in-out 0s !important;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/*----------  Common CSS  ----------*/
.wrapper {
    display: block;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.body-fixed {
    overflow: hidden;
}

.container {
    max-width: 1500px;
    padding: 0 30px;
}

.container-fluid:not(.g-0) {
    --bs-gutter-x: 42px;
    max-width: 125rem;
}

.common-sec {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.sec-head {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.sec-title {
    color: var(--black);
    font-size: 36px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    line-height: 1.2;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    letter-spacing: 0;
    min-width: 104px;
    line-height: 1.2;
    border: 0;
    z-index: 1;
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
}

.btn::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1.25rem;
    background-color: #fff;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 5%;
    margin: auto;
    transform: translate(-50%, 30%);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn.btn-tran {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn.btn-tran::before {
    background-color: var(--white);
}

.btn.btn-white {
    background-color: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.btn.btn-white::before {
    background-color: var(--blue);
}

.btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline::before {
    background-color: var(--white);
}

.btn-blue {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn.btn-white:hover {
    color: var(--white);
    border-color: var(--blue);
    background-color: var(--bs-btn-hover-bg);
}

.btn.btn-tran:hover {
    background-color: var(--bs-btn-hover-bg);
    color: var(--black);
}

.btn.btn-outline:hover {
    background-color: var(--bs-btn-hover-bg);
    color: var(--blue);
}

.btn.btn-blue:hover {
    background-color: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.slick-arrow {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 0;
    font-size: 0;
    width: 42px;
    aspect-ratio: 1/1;
    position: relative;
    transition: all .4s ease-in-out;
}

.slick-arrow::before {
    content: '';
    position: absolute;
    background-image: url(../img/svg/left-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .4s ease-in-out;
}

.slick-arrow:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    box-shadow: 0px 0px 20px 0px #0000001A;
}

.slick-arrow:hover::before {
    filter: invert(1);
}

.slick-next.slick-arrow {
    transform: rotate(-180deg);
}

.slick-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 1px solid var(--dark-blue);
    background-color: transparent;
    font-size: 0;
    border-radius: 50%;
    position: relative;
    transition: all .4s ease-in-out;
}

.slick-dots li button::after {
    content: '';
    background: transparent;
    height: 8px;
    width: 8px;
    background: var(--dark-blue);
    border-radius: 50%;
    position: relative;
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all.5s ease-in-out;
}

.slick-dots li.slick-active button:after {
    opacity: 1;
}


.form-group {
    position: relative;
    display: block;
    margin-bottom: 8px;
}

.form-control {
    background-color: transparent;
    border: 1px solid #EBEBEB;
    border-radius: 0;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    padding: 20px 16px;
    resize: none;
}

.form-control::placeholder {
    color: rgb(0 0 0 / 40%);
    font-weight: 400;
    line-height: 1.1;
}

select:has(option:checked:first-child) {
    color: rgb(0 0 0 / 40%);
    font-weight: 400;
}

select:has(option:checked:first-child) option {
    color: #000;
    font-weight: 400;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--dark-blue);
}

textarea.form-control {
    height: 130px;
}

/* back to top arrow */

.hidden {
    width: 0;
    height: 0;
    display: none;
}

.back-to-top {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 70px;
    text-align: center;
    border: 2px solid #fff;
    opacity: 0;
    overflow: hidden;
    color: #fff
}

.back-to-top.active {
    bottom: 60px;
    opacity: 1;
    z-index: 9
}

.back-to-top>div {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out
}

.back-to-top>.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top>.arrow svg {
    fill: #fff;
    height: 20px;
    width: 100%;
}

.back-to-top>.text {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px
}

.back-to-top:hover {
    transform: scale(1.1);
    bottom: 60px;
    cursor: pointer;
}

.back-to-top:hover>.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0
}

.back-to-top:hover>.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1
}

/* back to top arrow */

/* header */
.header {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.header::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2))
}

.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo img {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
}

.header-top-right {
    display: flex;
    align-items: center;
}

.header-company-info {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: 42px;
    padding-right: 42px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.head-contact-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
}

.head-contact-box .icon-box {
    width: 42px;
    aspect-ratio: 1/1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-contact-box .icon-box .icon {
    width: 18px;
    height: 18px;
    background-color: var(--white);
}

.head-contact-box .content-box .head-contact-title {
    color: rgba(255, 255, 255, 60%);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
}

.head-contact-box .content-box a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    transition: all .4s ease-in-out;
}

.head-btn .btn {
    padding: 9px 25px;
}

.header-social-media {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-social-media a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social-media a .icon {
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transition: all .4s ease-in-out;
}

.header-main {
    padding: 12px 0;
}

.header-main.has-sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 0 .625rem rgba(0, 0, 0, 0.4);
    background: #000;
    backdrop-filter: blur(3.125rem);
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999;
    padding: 12px 0;
}

.header-main .site-logo {
    display: inline-block;
    vertical-align: middle;
}

.mb-menu-logo {
    display: none;
}

.menu-icon {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-left: 15px;
    color: #fff;
}

.menu-icon span {
    display: block;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: #fff;
    margin: auto;
}

.menu-icon span:before {
    content: "";
    width: 25px;
    position: absolute;
    top: -8px;
    right: 0;
    height: 2px;
    background: currentColor;
}

.menu-icon span:after {
    content: "";
    width: 25px;
    position: absolute;
    bottom: -8px;
    right: 0;
    height: 2px;
    background: currentColor;
}

.sidebar-overlay {
    visibility: hidden;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: #000;
    z-index: 998;
}

.nav-menu-main ul {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-menu-main ul li {
    position: relative;
}

.nav-menu-main>ul>li::before {
    content: "";
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 4px;
    background-color: var(--blue);
    transition: all .4s ease-in-out;
}

.header-main.has-sticky .nav-menu-main>ul>li::before {
    top: -29px;
}

.nav-menu-main>ul>li:hover::before,
.nav-menu-main>ul>li.current-menu-item::before,
.nav-menu-main>ul>li.current-menu-parent::before,
.nav-menu-main>ul>li.current-menu-ancestor::before {
    height: 4px;
    width: 100%;
}

.nav-menu-main ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    display: block;
    transition: all .4s ease-in-out;
}

.header-main .site-logo {
    margin-right: 82px;
    display: none;
}

.header-main.has-sticky .site-logo {
    display: block;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu {
    position: absolute;
    left: -30px;
    top: 85%;
    right: 0;
    margin: auto;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0rem 2px 8px 0px;
    z-index: 9;
    display: block;
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    visibility: hidden;
    opacity: 0;
    width: 274px;
    padding: 15px 10px;
    border-radius: 0;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li:hover>.sub-menu {
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
    opacity: 1;
    visibility: visible;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 40px;
    top: 0;
    transform: translateY(-100%);
}

.navbar-main .nav-menu-main ul li .arrow {
    position: absolute;
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    right: -16px;
    top: 2px;
    transition: border 0.4s ease-in-out;
    padding-right: 0rem;
}

.navbar-main .nav-menu-main>ul>li .sub-menu li {
    padding: 0;
    position: relative;
    margin-right: 0;
    width: 100%;
}

.navbar-main .nav-menu-main>ul>li .sub-menu li.current-menu-item a {
    color: var(--blue);
}

.nav-menu-main>ul>li>.sub-menu>li>a,
.navbar-main .nav-menu-main>ul>li>.sub-menu>li.nav-sub-menu>.sub-menu>li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: .625rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 11%);
    color: #000;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li.nav-sub-menu>.sub-menu>li:last-child>a {
    border-bottom: none;
}

.nav-menu-main>ul>li>.sub-menu>li:last-child>a {
    border-bottom: none;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li.nav-sub-menu .arrow {
    border: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    border-color: #000 !important;
    transform: rotate(-45deg);
    transition: border 0.4s ease-in-out;
    padding-right: 0px;
    float: right;
    top: 14px;
    right: 10px;
    display: block;
    width: 8px;
    height: 8px;
    transition: all .4s ease-in-out;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li.nav-sub-menu>.sub-menu {
    position: absolute;
    top: -15px;
    left: 104%;
    width: 250px;
    background: #fff;
    box-shadow: 0 0 .6rem rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    padding: 12px;
    display: block;
    border-radius: 0;
}

.navbar-main .nav-menu-main>ul>li>.sub-menu>li.nav-sub-menu:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}


.hero-banner-sec {
    height: 100vh;
    max-height: 945px;
    width: 100%;
    position: relative;
}

.hero-banner-silder {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    object-fit: cover;
    object-position: center top;
}

.hero-banner-silde,
.hero-banner-img,
.hero-banner-sec .slick-list,
.hero-banner-sec .slick-slide>div,
.hero-banner-sec .slick-track {
    width: 100%;
    height: 100%;
}

.hero-banner-img {
    position: relative;
}

.hero-banner-img::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner-silder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-banner-dots{
    margin-top: 30px;
}

.hero-banner-dots .slick-dots {
    justify-content: start;
}

.hero-banner-dots .slick-dots li {
    line-height: 0;
    height: 30px;
    display: flex;
    align-items: end;
    padding-bottom: 5px;
    cursor: pointer;
    transition: .4s all ease-in-out;
}

.hero-banner-dots .slick-dots li button {
    width: 30px;
    background-color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 0;
    height: 3px;
    transition: .4s all ease-in-out;
}

.hero-banner-dots .slick-dots li.slick-active button,
.hero-banner-dots .slick-dots li:hover button {
    height: 6px;
    background-color: var(--blue);
}

.hero-banner-dots .slick-dots li button::after {
    content: unset;
}

.hero-banner-sec .container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-banner-con {
    position: absolute;
    z-index: 1;
    bottom: 84px;
    width: 100%;
    left: 0;
    padding: 0 30px;
}

.hero-banner-details .banner-title {
    color: var(--white);
    font-weight: 700;
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: 0.62px;
    margin-bottom: 15px;
}

.hero-banner-details .banner-sub-title {
    color: var(--white);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 1%;
    display: block;
}

.product-range-sec {
    position: relative;
}

.product-range-bg {
    position: absolute;
    width: 1260px;
    z-index: -1;
    right: 0;
}

.product-range-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.product-range-btn .btn-text {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: all .4s ease-in-out;
}

.product-range-btn .btn-text .icon {
    width: 10px;
    height: 10px;
    background-color: var(--dark-blue);
    transition: all .4s ease-in-out;
}

.product-range-btn .btn-text:hover {
    color: var(--black);
}

.product-range-btn .btn-text:hover .icon {
    background-color: var(--black);
    transform: translateX(3px);
}

.product-range-box {
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 12px 30px 12px 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 10px;
    position: relative;
}

.product-range-sec .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
}

.product-range-box .img-box {
    width: 230px;
    flex: 0 0 230px;
}

.product-range-box .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-range-box .content-box {
    padding-top: 32px;
    width: 160px;
}

.product-sub-title {
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    margin-bottom: 14px;
}

.product-title {
    color: var(--black);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.3;
    display: block;
}

.product-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    gap: 6px;
    position: absolute;
    right: 30px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
}

.product-btn .icon {
    width: 10px;
    height: 10px;
    background-color: var(--black);
}

.product-btn:hover .icon,
.product-range-box:hover .icon {
    background-color: var(--blue);
}

.product-range-box:hover .product-btn {
    opacity: 1;
    visibility: visible;
    bottom: 22px;
}

.product-range-box::before {
    content: '';
    position: absolute;
    background-color: var(--blue);
    width: 0;
    height: 4px;
    bottom: -4px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .4s ease-in-out;
}

.product-range-box:hover::before {
    width: 93%;
}

.industrial-details-sec {
    background-color: var(--blue);
}

.industrial-details-content {
    margin-right: 30px;
    padding-left: calc((100vw - 1440px) / 2);
}

.industrial-details-content .sec-head {
    margin-bottom: 20px;
}

.industrial-details-content .sec-head .sec-title {
    color: var(--white);
    font-size: 29px;
}

.industrial-details-content .cms-con {
    margin-bottom: 60px;
}

.industrial-details-content .cms-con p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.industrial-details-img {
    height: 700px;
    width: 100%;
}

.industrial-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-work-sec {
    margin-top: -61px;
}

.our-work-sec .our-work-box {
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #0000001A;
    border: 1px solid #EBEBEB;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.our-work-box .img-box {
    width: 60px;
    flex: 0 0 60px;
    height: 60px;
}

.our-work-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-work-box .our-work-title {
    color: var(--black);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.our-work-sec .row {
    --bs-gutter-x: 42px;
}

.counter-sec.common-sec {
    padding-bottom: 60px;
}

.counter-box span {
    color: var(--black);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
}

.counter-box .numbers span {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    color: var(--blue);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.counter-box .number-con {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    color: var(--black);
}

.fact-highlight-sec {
    margin-bottom: 113px;
}

.fact-highlight-sec .row {
    --bs-gutter-x: 60px;
}

.fact-highlight-title-img {
    width: 100%;
    margin-bottom: 60px;
}

.fact-highlight-title-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fact-highlight-img {
    width: 100%;
    position: relative;
}

.fact-highlight-img .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fact-highlight-img .sub-img {
    position: absolute;
    bottom: -113px;
    right: 42px;
    border: 4px solid #EBEBEB;
    box-shadow: 0px 0px 20px 0px #0000001A;
    width: 345px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.fact-highlight-con .sec-head {
    margin-bottom: 24px;
}

.fact-highlight-con .sec-title span {
    display: block;
    color: var(--blue);
}

.fact-highlight-con .cms-con {
    margin-bottom: 60px;
}

.categories-sec {
    position: relative;
}

.categories-sec-bg {
    background-color: var(--blue);
    position: absolute;
    top: 0;
    width: 100%;
    height: 370px;
}

.categories-sec .container {
    position: relative;
}

.categories-sec .sec-head {
    margin-bottom: 40px;
}

.categories-sec .row {
    --bs-gutter-x: 42px;
}

.categories-box {
    display: block;
}

.categories-box .img-box {
    width: 100%;
    height: 327px;
    overflow: hidden;
    margin-bottom: 35px;
    position: relative;
}

.categories-box .img-box::before,
.industrial-serve-box::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 30%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 18%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.categories-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.categories-box .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-box .categories-title {
    color: var(--black);
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    display: block;
    transition: all .4s ease-in-out;
}

.categories-box .content-box .icon {
    background-color: var(--blue);
    width: 10px;
    height: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
}

.categories-box:hover .img-box::before,
.industrial-serve-box:hover::before {
    -webkit-animation: shine 1.3s;
    animation: shine 1.3s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.categories-box:hover .img-box img {
    transform: scale(1.05);
}

.categories-box:hover .categories-title {
    color: var(--blue);
}

.categories-box:hover .content-box .icon {
    opacity: 1;
    visibility: visible;
}

.industrial-serve-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 50px;
}

.industrial-serve-top .sec-title {
    margin-bottom: 20px;
}

.industrial-serve-top p {
    font-size: 19px;
}

.industrial-serve-box {
    position: relative;
    overflow: hidden;
}

.industrial-serve-box .img-box::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.industrial-serve-box .img-box {
    width: 100%;
    max-height: 443px;
    overflow: hidden;
    position: relative;
    transition: all .4s ease-in-out;
}

.industrial-serve-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industrial-serve-box:hover .img-box {
    transform: scale(1.05);
}

.industrial-serve-title {
    color: var(--white);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    position: absolute;
    top: 42px;
    left: 42px;
    transition: all .4s ease-in-out;
}

.industrial-serve-silder {
    margin: 0 -21px;
    padding: 0 42px;
}

.industrial-serve-silde {
    padding: 0 21px;
}

.industrial-serve-arrow,
.relative-machine-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-sec {
    background-color: #043f73;
}

.cta-map-img {
    position: absolute;
    top: 60px;
    left: calc((100vw - 1800px) / 2);
}

.cta-map-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-sec .container {
    max-width: 1340px;
    padding: 0 30px;
    position: relative;
}

.cta-form {
    background-color: var(--white);
    padding: 50px 60px;
}

.cta-title {
    color: var(--black);
    font-weight: 600;
    font-size: 29px;
    line-height: 1.1;
    display: block;
    margin-bottom: 40px;
}

.cta-form .btn {
    margin-top: 30px;
}

.cta-content {
    margin-bottom: 60px;
}

.cta-content .sec-head {
    margin-bottom: 40px;
}

.cta-content .sec-title {
    margin-bottom: 18px;
}

.cta-content .sec-head p {
    color: var(--white);
    letter-spacing: 0.32px;
}

.contact-details ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-details ul li:last-child {
    margin-bottom: 0;
}

.contact-details ul li .icon-box {
    background-color: var(--blue);
    width: 48px;
    flex: 0 0 48px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.contact-details ul li .icon-box .icon {
    width: 24px;
    height: 24px;
    background-color: var(--white);
}

.contact-details ul li .content-box span {
    color: rgba(255, 255, 255, 60%);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
}

.contact-details ul li .content-box a {
    color: var(--white);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    transition: all .4s ease-in-out;
}

.contact-details ul li .content-box a:hover {
    color: var(--blue);
}

.group-Of-companies-sec,
.group-Of-companies-sec .container {
    position: relative;
}

.group-Of-companies-sec .group-of-companies-img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    opacity: 28%;
    z-index: -1;
}

.group-Of-companies-sec .group-of-companies-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group-Of-companies-sec .container {
    max-width: 1340px;
}

.group-of-companies-con .sec-head {
    margin-bottom: 42px;
}

.group-of-companies-con .sec-title {
    margin-bottom: 18px;
}

.group-of-companies-con .sec-head p {
    font-size: 19px;
    letter-spacing: 0.16px;
    line-height: 1.4;
}

.companies-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
}

.companies-list::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--white);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.companies-list-box {
    height: 148px;
    background-color: var(--white);
    box-shadow: 0px 0px 20px 0px #0000001A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.companies-list-img {
    max-width: 250px;
    height: 100%;
}

.companies-list-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}


.foot-title {
    color: var(--black);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.1;
    display: block;
    margin-bottom: 22px;
}

.foot-box ul li {
    width: 100%;
    margin-bottom: 16px;
    position: relative;
    padding-left: 18px;
}

.foot-box ul li::before {
    content: '';
    position: absolute;
    background-image: url(../img/svg/foot-arrow.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    width: 9px;
    height: 9px;
    left: 0;
    top: 3px;
}

.foot-box ul li a {
    color: rgba(0, 0, 0, 60%);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: block;
}

.foot-box ul li a:hover,
.foot-box ul li.current-menu-item a {
    color: var(--black);
}

.foot-certificate {
    width: 192px;
}

.foot-certificate ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.foot-certificate ul li {
    padding-left: 0;
    margin-bottom: 0;
    width: 84px;
}

.foot-certificate ul li::before {
    content: unset;
}

.foot-certificate ul li img {
    width: 84px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.foot-contact {
    padding-left: 60px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.foot-contact .icon-box {
    width: 42px;
    flex: 0 0 42px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 139, 212, 0.1);
}

.foot-contact .icon-box .icon {
    width: 18px;
    height: 18px;
    background-color: var(--dark-blue);
}

.foot-contact a {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
    transition: all .4s ease-in-out;
}

.foot-contact a:hover {
    color: var(--blue);
}

.foot-social-media {
    margin-top: 28px;
}

.foot-social-media {
    display: flex;
    align-items: center;
    gap: 12px;
}

.foot-social-media a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 139, 212, 0.1);
    border-radius: 50%;
    transition: all .4s ease-in-out;
}

.foot-social-media a .icon {
    background-color: var(--dark-blue);
    width: 18px;
    height: 18px;
}

.footer-bottom {
    background-color: var(--dark-blue);
    padding: 60px 0;
}

.foot-logo {
    width: 318px;
    display: block;
}

.foot-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ask-catalogue {
    background-color: var(--black);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 1000px;
}

.ask-catalogue-form {
    width: 100%;
}

.ask-catalogue-con {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 400px;
}

.ask-catalogue-con .icon {
    width: 48px;
    height: 48px;
    background-color: var(--blue);
}

.ask-catalogue-title {
    color: var(--white);
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    display: block;
}

.ask-catalogue-form .form-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ask-catalogue-form .form-control {
    background-color: var(--white);
    height: 48px;
    flex: 1;
    padding: 10px 16px;
}

.ask-catalogue-form .btn {
    height: 48px;
}

.copy-right {
    background-color: var(--black);
    padding: 4px 0;
}

.copy-right-text,
.copy-right-text a {
    color: rgb(255 255 255 / 60%);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}

.copy-right-text a:hover {
    color: var(--blue);
}

.design-developed-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.design-developed-text p {
    color: rgb(255 255 255 / 60%);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.design-developed-text img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.wpcf7-form-control-wrap label.error {
    position: absolute;
    right: 0;
    top: -1.25rem;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 12px !important;
    line-height: 12px !important;
    background: #fb0101;
    padding: .3125rem .3125rem .25rem !important;
    color: #fff !important;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:after,
.wpcf7-form-control-wrap label.error:after,
.error:after {
    border-color: #fb0101 transparent transparent;
    -o-border-image: none;
    border-image: none;
    border-right: .375rem solid transparent;
    border-style: solid;
    border-width: .375rem;
    content: "";
    height: 0;
    left: .3125rem;
    position: absolute;
    bottom: -0.625rem;
    width: 0;
    transform: rotate(360deg);
}

.wpcf7 form .wpcf7-response-output {
    padding: .3125rem !important;
    text-align: center !important;
    margin: 15px 0 0 !important;
    font-size: 14px;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #fb0101 !important;
    color: #fb0101 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450 !important;
    color: #46b450 !important;
}

.inner-banner-sec {
    position: relative;
}

.inner-banner-img {
    width: 100%;
    height: 346px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 25%), #404040;
}

.page-template-about-us .inner-banner-img img {
    mix-blend-mode: luminosity;
    opacity: 100%;
}

.inner-banner-img img {
    width: 100%;
    height: 100%;
    opacity: 10%;
    object-fit: cover;
}

.page-template-about-us .inner-banner-sec::before {
    content: '';
    position: absolute;
    background-color: rgba(64, 64, 64, 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: luminosity;
}

.inner-banner-sec::after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 346px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 25%);
    position: absolute;
}

.inner-banner-content {
    position: absolute;
    bottom: 74px;
    z-index: 1;
}

.inner-banner-title {
    color: var(--white);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    display: block;
    margin-bottom: 15px;
}

.inner-banner-content p {
    color: var(--white);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.16px;
}

/* about-us-page */

.about-us-con .sec-head {
    margin-bottom: 20px;
}

.about-us-con .row {
    --bs-gutter-x: 60px;
}

.about-us-con .sec-head .sec-title {
    font-size: 29px;
}

.about-us-con .sec-head p {
    font-weight: 500;
    font-size: 19px;
}

.about-us-con .cms-con p {
    line-height: 1.6;
}

.about-video {
    position: relative;
    height: 810px;
    overflow: hidden;
}

.about-video .video-inner {
    height: 100%;
}

.video-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video .video-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.playMusicBtn {
    background-color: transparent;
}

.playMusicBtn::before {
    content: "";
    position: absolute;
    left: 0; 
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    background-color: rgb(255 255 255 / 50%);
    border-radius: 50%;
    animation: callBlink 3s infinite ease-in-out;
}

@keyframes callBlink {
    from {
        transform: scale(0.5);
        opacity: 0.9;
    }

    to {
        transform: scale(1.6);
        opacity: 0;
    }
}

.our-core-value-sec .row {
    --bs-gutter-x: 60px;
}

.our-core-value-details .sec-head {
    margin-bottom: 24px;
}

.our-core-value-details .cms-con p {
    margin-bottom: 0;
    font-size: 20px;
}

.our-core-value-list li {
    display: flex;
    align-items: start;
    gap: 24px;
    padding-bottom: 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.our-core-value-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.our-core-value-list li .img-box {
    width: 84px;
    flex: 0 0 84px;
}

.our-core-value-list li .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.our-core-value-list li .our-value-list-title {
    color: var(--black);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    margin-bottom: 15px;
}

.our-core-value-list li .cms-con p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.32px;
    color: var(--black);
}

.company-history-sec .sec-head {
    margin-bottom: 60px;
}

:root {
    --height: 720px;
    --width: 960px;
}

#company-history-list {
    display: grid;
    transform: translate3d(0, 0, 0.1px);
}

.company-history-item {
    display: flex;
    overflow: hidden;
    list-style: none;
    margin: 0;
    contain: layout;
    isolation: isolate;
    position: relative;
}

.company-history-img {
    position: absolute;
    inset: 0;
}

.company-history-img::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 60%);
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.company-history-box {
    display: grid;
    position: relative;
    align-content: start;
    flex: 1 1 10%;
    height: var(--height);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    contain: layout;
    isolation: isolate;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(.55, .24, .18, 1);
}

.company-history-img,
.company-history-con {
    width: var(--width);
    height: var(--height);
}

.company-history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s ease-in-out, filter 0.8s ease-in-out;
}

.company-history-box[data-active] {
    flex: 0 0 var(--width);
}

.company-history-box[data-active] .company-history-img::before {
    opacity: 0;
}

.company-history-box[data-active] img {
    transform: scale(1.05);
    filter: brightness(1);
}

.company-history-con {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-history-top {
    padding: 22px 42px;
    transition: background 0.6s ease-in-out;
}

.company-history-bottom .cms-con {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-history-box[data-active] .company-history-bottom .cms-con {
    opacity: 1;
}

.company-history-box::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    inset: 0;
    z-index: 1;
    transition: background-color 0.6s ease-in-out;
}

.company-history-box[data-active]::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 64.86%, rgb(255 255 255 / 58%) 82.45%)
}

.company-history-box[data-active] .company-history-top {
    background: #1B6DC2;
}

.company-history-top .year-name,
.company-history-top p {
    transition: color 0.6s ease-in-out;
}

.company-history-top .year-name {
    color: var(--black);
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
}

.company-history-box[data-active] .company-history-top .year-name {
    color: var(--white);
}

.company-history-top p {
    color: var(--black);
    font-size: 16px;
    line-height: 1.2;
    width: 20%;
    letter-spacing: 0.32px;
}

.company-history-box[data-active] .company-history-top p {
    color: var(--white);
    width: 100%;
}

.company-history-bottom {
    max-width: 100%;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 85px;
}

.company-history-bottom .company-logo {
    min-width: 150px;
    max-width: 150px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.company-history-bottom .company-logo img {
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease-in-out;
}

.company-history-box[data-active] .company-history-bottom .company-logo {
    min-width: 200px;
    max-width: 200px;
}

.company-history-box[data-active] .company-history-bottom .company-logo img {
    margin: auto;
}

.company-history-bottom .cms-con p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 0;
}

.company-history-bottom .cms-con {
    position: relative;
}

.company-history-bottom .cms-con::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    top: 0;
    left: -42px;
}

.message-founder-box {
    max-width: 1040px;
}

.message-founder-box .sec-head {
    margin-bottom: 20px;
}

.message-founder-box .sec-head .sec-title {
    font-size: 29px;
}

.message-founder-box .cms-con {
    margin-bottom: 60px;
}

.message-founder-box .cms-con p {
    color: var(--black);
    font-weight: 400;
    font-size: 22px;
    font-style: italic;
    line-height: 1.4;
    display: block;
}

.message-founder-box .founder-details .founder-name {
    color: var(--black);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
}

.message-founder-box .founder-details span {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .032px;
    color: var(--black);
    display: block;
}

/* product listing */
.product-category ul {
    margin: 0 -12px;
    margin-bottom: 60px;
}

.product-category ul li {
    display: inline-block;
    padding: 0 12px;
    width: 288px;
}

.product-category ul li a {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 19px 26px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
    transition: all .4s ease-in-out;
}

.product-category ul li a.active,
.product-category ul li a:hover {
    background-color: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.product-list-details .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
}

.product-list-box .product-list-img {
    background-color: var(--white);
    box-shadow: 0px 0px 20px 0px #0000001A;
    display: block;
    max-height: 452px;
    height: 100%;
    width: 100%;
    margin-bottom: 14px;
    overflow: hidden;
}

.product-list-box .product-list-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    transition: all .4s ease-in-out;
}

.product-list-box:hover .product-list-img img {
    transform: scale(1.02);
}

.product-list-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.product-list-box .product-category-name {
    display: block;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 12px;
    transition: all .4s ease-in-out;
}

.product-list-box:hover .product-category-name {
    color: var(--black);
}

.product-list-box .product-name a {
    color: var(--black);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    display: block;
    transition: all .4s ease-in-out;
}

.product-list-box:hover .product-name a {
    color: var(--blue);
}

.product-list-btn a {
    background-color: rgba(46, 139, 212, 0.1);
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

.product-list-box:hover .product-list-btn a {
    background-color: var(--blue);
}

.product-list-btn a .icon {
    width: 10px;
    height: 10px;
    background-color: var(--black);
    transition: all .4s ease-in-out;
}

.product-list-box:hover .product-list-btn a .icon {
    background-color: var(--white);
}

.not-found-sec .not-found-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    display: block;
}

.post-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.post-pagination .page-numbers {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgba(46, 139, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: all .4s ease-in-out;
}

.post-pagination .page-numbers.current,
.post-pagination .page-numbers:hover {
    background-color: var(--blue);
    color: #fff;
}

.post-pagination .next.page-numbers,
.post-pagination .prev.page-numbers {
    color: var(--black);
    background: none;
    font-size: 0;
    height: 40px;
    width: 20px;
    border: 0;
    border-radius: 0;
    position: relative;
    transition: all .4s ease-in-out;
}

.post-pagination .page-numbers.next::before,
.post-pagination .prev.page-numbers::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    margin: auto;
    transition: all .4s ease-in-out;
    right: 0;
    bottom: 0;
}

.post-pagination .prev.page-numbers::before {
    transform: rotate(-135deg);
}

.post-pagination .next.page-numbers:hover::before,
.post-pagination .prev.page-numbers:hover::before {
    border-color: var(--blue);
}

/* product details */

.product-details-sidebar {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-details-sidebar ul>li {
    position: relative;
}

.product-details-sidebar>ul>li::before {
    content: '';
    position: absolute;
    background-color: var(--blue);
    height: 4px;
    width: 0;
    top: 0;
    transition: all .4s ease-in-out;
}

.product-details-sidebar>ul>li.active::before {
    width: 100%;
}

.product-details-sidebar ul>li>a {
    color: var(--black);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    padding: 20px 17px;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-details-sidebar ul>li:first-child>a {
    border-top: 0;
}

.product-details-sidebar ul>li>.inner-product-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: inherit;
    width: 100%;
    box-shadow: none;
    display: none;
    transition: inherit;
    margin-bottom: 20px;
}

.product-details-sidebar ul>li>.inner-product-list>li>a {
    font-size: 16px;
    font-weight: 400;
    padding: 15px 24px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s ease-in-out;
}

.product-details-sidebar ul>li>.inner-product-list>li.active a,
.product-details-sidebar ul>li>.inner-product-list>li>a:hover {
    color: var(--blue);
    font-weight: 600;
}

.product-details-sidebar ul>li>.inner-product-list>li.active a .icon,
.product-details-sidebar ul>li>.inner-product-list>li>a:hover .icon {
    background-color: var(--blue);
}


.product-details-sidebar ul>li>.inner-product-list>li>a .icon {
    background-color: #666666;
    width: 12px;
    height: 12px;
}

.product-sidebar-cate {
    position: relative;
}

.product-details-sidebar>ul>li .plus {
    position: absolute;
    right: 0px;
    top: -2px;
    width: 51px;
    height: 61px;
    z-index: 9;
    transform: none;
    bottom: inherit;
    border: none;
}

.product-details-sidebar>ul>li .plus::before {
    content: "";
    position: absolute;
    left: inherit;
    right: 25px;
    top: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    margin: auto;
    transition: border .4s ease-in-out, transform .4s ease-in-out;
}

.product-details-sidebar>ul>li .plus.minus::before {
    transform: rotate(225deg);
    top: 10px;
}

.get-quote-btn {
    margin-top: 18px;
}

.get-quote-btn .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-quote-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    transition: all .4s ease-in-out;
}

.get-quote-btn .btn-text span {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    text-align: left;
}

.get-quote-btn .btn-text .icon-quote {
    mask-image: url(../img/svg/file.svg);
    width: 29px;
    height: 36px;
}

.inner-product-group {
    margin-bottom: 60px;
}

.inner-product-group .row {
    --bs-gutter-x: 42px;
}

.product-inner-box {
    margin-bottom: 32px;
}

.inner-product-group .product-inner-img {
    background-color: var(--white);
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 10%);
    width: 100%;
    height: 282px;
    margin-bottom: 16px;
}

.inner-product-group.product-single-col .product-inner-img {
    box-shadow: none;
    height: 400px;
}

.inner-product-group.product-single-col {
    margin-bottom: 0;
}

.inner-product-group .product-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
}

.inner-product-group .product-inner-content .product-inner-title {
    color: var(--black);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    display: block;
    margin-bottom: 8px;
}

.inner-product-group .product-inner-content p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    display: block;
}

.product-desc-title {
    color: var(--blue);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    display: block;
    margin-bottom: 20px;
}

.product-desc .cms-con p {
    margin-bottom: 12px;
}

.product-desc .cms-con p strong {
    font-size: 19px;
    font-weight: 500 !important;
}

.product-desc .cms-con ul {
    margin-bottom: 0;
}

.product-desc .cms-con ul li {
    display: flex;
}

.product-desc .cms-con ul li strong {
    width: 180px;
    flex: 0 0 180px;
    display: inline-block;
    font-weight: 600 !important;
}

.product-specification {
    padding-bottom: 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-machine-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 60px;
}

.relative-machine-top .sec-title {
    margin-bottom: 15px;
}

.relative-machine-top .sec-head p {
    color: var(--black);
    font-weight: 400;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 0.16px;
}

.relative-machine-con {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 18px;
}

.relative-machine-sec .relative-machine-con {
    min-height: 50px;
}

.relative-machine-con .silde-number {
    color: var(--blue);
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    display: block;
}

.relative-machine-title {
    color: var(--black);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    text-transform: capitalize;
    display: block;
}

.relative-machine-slider {
    margin: 0 -18px;
}

.relative-machine-slide {
    padding: 0 18px;
}

.relative-machine-img {
    position: relative;
    overflow: hidden;
}

.relative-machine-img::before {
    content: '';
    position: absolute;
    background: linear-gradient(180.2deg, rgba(0, 63, 117, 0) 51.66%, #003F75 99.82%);
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
}

.relative-machine-img:hover::before {
    bottom: 0;
}

.relative-machine-desc {
    position: absolute;
    bottom: -200px;
    left: 0;
    z-index: 1;
    padding: 24px 24px 15px;
    transition: all .4s ease-in-out;
}

.relative-machine-img:hover .relative-machine-desc {
    bottom: 0;
}

.relative-machine-desc p {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    display: block;
}

.single-product .wrapper {
    overflow: inherit;
}

.product-details-sec .sidebar-wrapper {
    position: sticky;
    top: 80px;
}


.error-con {
    text-align: center;
    max-width: 960px;
    margin: auto;
}

.error-con .error-img {
    width: 100%;
    margin-bottom: 42px;
}

.error-text {
    max-width: 620px;
    margin: auto;
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}


.thank-you-sec .thank-you-img {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block
}

.thank-you-sec .thank-you-con .thank-you-title {
    font-size: 68px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000
}

.thank-you-sec .thank-you-con p {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    margin-bottom: 22px
}

/* Quality */

.commitment-quality-sec .sec-head {
    margin-bottom: 24px;
}

.commitment-quality-sec .cms-con {
    margin-bottom: 40px;
}

.commitment-quality-sec .row {
    --bs-gutter-x: 42px;
}

.commitment-quality-item {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px;
    height: 100%;
}

.commitment-quality-item .icon-box {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.commitment-quality-item .icon-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.commitment-quality-title {
    color: var(--black);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.2;
    display: block;
    margin-bottom: 15px;
}

.commitment-quality-item .cms-con p {
    line-height: 1.4;
    margin-bottom: 0;
}

.quality-control-sec {
    background-color: var(--dark-blue);
    padding-bottom: 240px;
}

.quality-control-sec .sub-img {
    border-color: #003F75;
}

.quality-control-con {
    padding-left: 30px;
}

.quality-control-con .sec-head {
    margin-bottom: 60px;
}

.quality-control-con .sec-title span {
    color: var(--blue);
    display: block;
}

.quality-control-con .sec-title {
    color: var(--white);
}

.quality-control-item {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.quality-control-item:last-child {
    margin-bottom: 0;
}

.quality-control-item .img-box {
    width: 120px;
    flex: 0 0 120px;
    height: 120px;
}

.quality-control-item .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.quality-control-title {
    color: var(--white);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    display: block;
    margin-bottom: 18px;
}

.quality-control-item .content-box .cms-con p {
    color: var(--white);
}

.our-quality-work-sec .row {
    --bs-gutter-x: 24px;
}

.our-quality-work-con {
    background-color: var(--white);
    box-shadow: 0px 0px 16px 0px #0000001A;
    padding: 24px;
    display: flex;
    gap: 18px;
    height: 100%;
    width: 100%;
}

.our-quality-work-con .img-box {
    width: 68px;
    flex: 0 0 68px;
    height: 68px;
}

.our-quality-work-con .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.our-quality-work-title {
    color: var(--black);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.2;
    display: block;
    margin-bottom: 10px;
}

.our-quality-work-text {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.32px;
    display: block;
}

.instruments-sec .row {
    --bs-gutter-x: 60px;
    --bs-gutter-y: 60px;
}

.instruments-title-img {
    height: 88px;
    margin-bottom: 60px;
}

.instruments-title-img img {
    height: 100%;
    object-fit: contain;
    margin: auto;
}

.instruments-box .img-box {
    width: 100%;
    height: 388px;
    margin-bottom: 15px;
}

.instruments-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instruments-title {
    color: var(--black);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0.32px;
    display: block;
}

.quality-policy-sec {
    background-color: var(--dark-blue);
}

.quality-policy-title {
    color: var(--white);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    display: block;
    margin-bottom: 20px;
}

.quality-policy-sec .cms-con ul li {
    color: rgba(255, 255, 255, 0.8);
}

.quality-policy-sec .cms-con ul li:before {
    background-image: url(../img/svg/right-arrow2.svg);
    width: 10px;
    height: 10px;
    top: 7px;
}

.training-policy-sec .row {
    --bs-gutter-x: 60px;
}

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

.training-policy-sec .training-policy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-policy-sec .sec-head {
    margin-bottom: 24px;
}

.training-policy-sec .cms-con p {
    font-weight: 500;
    line-height: 1.5;
}

.training-policy-sec .cms-con ul li {
    padding-left: 0;
}

.training-policy-sec .cms-con ul li b {
    font-weight: 600 !important;
    color: var(--blue);
    display: block;
    position: relative;
    padding-left: 24px;
}

.training-policy-sec .cms-con p strong {
    font-weight: 500 !important;
    font-size: 20px;
}

.our-machine-sec .sec-head {
    margin-bottom: 60px;
}

.our-machine-sec .sec-head .sec-title {
    margin-bottom: 20px;
}

.our-machine-sec .sec-head p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    display: block;
    color: var(--black);
}

.our-machine-sec .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
}

.our-machine-sec .relative-machine-img {
    width: 100%;
    height: 100%;
}

.our-machine-sec .relative-machine-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.precision-machining-sec {
    background-color: var(--dark-blue);
}

.precision-machining-sec .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
}

.precision-machining-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    height: 100%;
    width: 100%;
}

.precision-machining-box .img-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 64px;
    aspect-ratio: 1/1;
    padding: 12px;
    margin-bottom: 20px;
}

.precision-machining-box .precision-machining-title {
    color: var(--white);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.1;
    display: block;
    margin-bottom: 15px;
}

.precision-machining-box .content-box p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    display: block;
}

.our-gallery-sec .sec-head {
    margin-bottom: 32px;
}

.our-gallery-sec .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 42px;
}

.our-gallery-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.our-gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-gallery-box::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in-out;
}

.our-gallery-box:hover::before {
    opacity: 1;
    visibility: visible;
}

.our-gallery-box span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    transition: all .4s ease-in-out;
}

.our-gallery-box:hover span {
    opacity: 1;
    visibility: visible;
}

/* contact-us */

.contact-us-sec {
    background-color: rgba(46, 139, 212, 0.1);
}

.contact-form {
    background-color: var(--white);
    padding: 60px;
    margin-left: 30px;
}

.contact-form .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

.contact-form .btn {
    margin-top: 40px;
}

.contact-counter {
    margin-bottom: 45px;
}

.contact-counter .counter-box .numbers span {
    color: var(--blue);
    margin-bottom: 0;
}

.contact-counter .counter-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.32px;
    color: var(--black);
    margin-top: 12px;
}

.contact-counter .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}

.our-company-details {
    display: flex;
    align-items: center;
    gap: 78px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-box {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-box .icon-box {
    width: 48px;
    flex: 0 0 48px;
    height: 48px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-box .icon-box .icon {
    background-color: var(--white);
    width: 24px;
    height: 24px;
}

.content-sub-title {
    color: rgba(0, 0, 0, 60%);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.16px;
    display: block;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.32px;
    display: block;
}

.contact-link br {
    display: none;
}

.contact-google-map {
    margin-top: 60px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.grecaptcha-badge {
    display: none;
}