/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-LightItalic.woff2') format('woff2'),
        url('../../assets/fonts/Touche-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-Light.woff2') format('woff2'),
        url('../../assets/fonts/Touche-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-Medium.woff2') format('woff2'),
        url('../../assets/fonts/Touche-Medium.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-BoldItalic.woff2') format('woff2'),
        url('../../assets/fonts/Touche-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-Bold.woff2') format('woff2'),
        url('../../assets/fonts/Touche-Bold.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-RegularItalic.woff2') format('woff2'),
        url('../../assets/fonts/Touche-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-Semibold.woff2') format('woff2'),
        url('../../assets/fonts/Touche-Semibold.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-SemiboldItalic.woff2') format('woff2'),
        url('../../assets/fonts/Touche-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-MediumItalic.woff2') format('woff2'),
        url('../../assets/fonts/Touche-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Touche';
    src: url('../../assets/fonts/Touche-Regular.woff2') format('woff2'),
        url('../../assets/fonts/Touche-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}












html {
    margin: 0 !important;
    padding: 0 !important;
}


body {
    font-family: 'Touche';
    color: #17171B;
    overflow-x: hidden;
    font-weight: normal;
}

a {
    font-family: 'Touche';
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Touche';
    font-weight: 700;
    letter-spacing: 2px;
}

p {
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

ul {
    list-style: none;
    font-family: 'Touche';
    padding: 0;
    margin: 0;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    border-radius: 0;
    font-size: 0;
    border: 0;
    background-color: #d52128;
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 9;
}

.slick-arrow.slick-prev {
    left: 15px;
}

.slick-arrow.slick-prev:before {
    content: "\f104";
    font-size: 18px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.slick-arrow.slick-next {
    right: 15px;
}

.slick-arrow.slick-next:before {
    content: "\f105";
    font-size: 20px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.slick-arrow.slick-disabled {
    opacity: 0.2;
}

.slick-slide {
    padding: 0 15px;
}

.slick-dots {
    display: flex;
    justify-content: left;
    margin-top: 0;
    align-items: center;
    justify-content: center;
}

.slick-dots button {
    font-size: 0;
    padding: 0;
    width: 10px;
    height: 10px;
    line-height: 0;
    border: none;
    background-color: #7acfd875;
    transition: all ease 0.4s;
    position: relative;
    border-radius: 2px;
}

.slick-dots button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 2px solid #d52128;
    transition: all ease 0.4s;
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
}

ul.slick-dots li {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
}

.slick-dots .slick-active button::before {
    opacity: 1;
    visibility: visible;
}

.slick-dots .slick-active button {
    background-color: #283694;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.btn_bx {
    margin-top: 50px;
    text-align: center;
}

.section-title.yellow-text span {
    color: #000000;
}

.section-title.yellow-text span:after {
    background: #000000;
}

.section-title.yellow-text span:before {
    background: #000000;
}

.section-title span {
    font-weight: 700;
}

.section-title h2 {
    font-size: 32px;
    position: relative;
    color: #283694;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title p {
    font-size: 15px;
    margin-bottom: 15px;
    border: 0;
    font-weight: 500;
    font-size: 17px;
}

.our-btn-black {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500 !important;
    padding: 10px 30px 6px 30px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid #d52128;
    background: #d52128;
}

.our-btn-black:hover {
    background: #000000;
    border-color: #000;
}

.our-btn-white {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 30px 6px 30px;
    min-width: 170px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid #fff;
    transition: all 0.5s;
}

.our-btn-white:hover {
    color: #fff;
    background-color: #d52128;
    border-color: #d52128;
}




/* ------------------------------------------------------------ # call-buton Css --------------------------------------------------------------*/
*/ .call-buton {
    display: none;
}

.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    background: #d52128;
    width: 4rem;
    height: 4rem;
    padding: 0rem;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 2.2rem;
}

.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 0 rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2);
        box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 0 rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2), 0 0 0 20px rgba(255, 64, 38, 0);
        box-shadow: 0 4px 10px rgba(236, 24, 24, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2), 0 0 0 20px rgba(255, 64, 38, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 0 rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2);
        box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 0 rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2), 0 0 0 20px rgba(255, 64, 38, 0);
        box-shadow: 0 4px 10px rgba(255, 64, 38, 0.2), 0 0 0 5px rgba(255, 64, 38, 0.2), 0 0 0 10px rgba(255, 64, 38, 0.2), 0 0 0 20px rgba(255, 64, 38, 0);
    }
}

span.num {
    position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.lyt_logo {
    width: 25vh;
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.center-menu {
    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;
    width: 50vw;
}

a.side_bar_btn {
    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;
}

.header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 0;
    box-shadow: 0 0 11px #0000003d;
}

.header .min_lg {
    display: block;
    margin: 0;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header .scrol_min_lg {
    display: none;
}

.header.sticky .scrol_min_lg {
    display: block;
}

.header.sticky .min_lg {
    display: none;
}

.header.sticky::before {
    content: none;
}

.header.sticky .container-fluid {
    padding: 14px 55px 14px 55px;
}

.header.sticky .logo_bx a {
    transform: none;
    position: relative;
}

.header.sticky .logo_bx a img {
    max-width: 80px;
    transition: all 0.5s;
}

.header.sticky .bottom_head {
    padding: 14px 18px;
}

.header.sticky .navbar ul li a:hover {
    color: #283694 !important;
    opacity: 1 !important;
}

.header.sticky .right_btn .our-btn-black {
    color: #17171B;
}

.header.sticky .our-btn-black:before,
.header.sticky.our-btn-black:after {
    border: 2px solid #283694
}

.header.sticky .right_btn .our-btn-black .top-line,
.header.sticky .right_btn .our-btn-black .bottom-line-1,
.header.sticky .right_btn .our-btn-black .bottom-line-2 {
    background: #d52128;
}

.header {
    z-index: 99;
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
}

header.header.sticky .top_head_sec {
    display: none;
}

.bottom_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.bottom_head:after {
    border-bottom: 1px solid #28369424;
    content: '';
    position: absolute;
    bottom: 0;
    width: 75%;
    right: 0;
}

.home .bottom_head .lyt_logo img {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 20px;
}

.bottom_head .lyt_logo img {
    width: 100%;
    max-width: 200px;
    position: relative;
}

.logo_bx {
    text-align: center;
    position: relative;
}

header .right_btn .our-btn-black {
    color: #fff;
    text-transform: capitalize;
    border-radius: 8px;
    text-transform: uppercase;
}

header .right_btn .our-btn-black .top-line,
header .right_btn .our-btn-black .bottom-line-1,
header .right_btn .our-btn-black .bottom-line-2 {
    background: #17171B;
}

header .right_btn .our-btn-black:before {
    border-color: #fff;
}

.logo_bx a {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    transform: translate(0px, -50px);
}

a.logo img {
    max-width: 140px;
    transition: all 0.5s;
    background: #ffffff;
    padding: 15px;
}

.right_btn {
    flex: 0 0 25%;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    padding-right: 15px;
    position: relative;
}

.search_bx {
    position: absolute;
    background: #fff;
    padding: 15px;
    top: 75%;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
        z-index: 9;
}

.search_bx.show {
    opacity: 1;
    visibility: visible;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #283694;
    outline: 0;
    box-shadow: none;
}

.search_bx:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    border-top: 0;
    top: -10px;
    margin-inline: auto;
    right: 0;
    left: 0;
}

.search_bx .input-group-text {
    background: #283694;
    border-radius: 0;
}

.search_bx input {
    border-radius: 0;
}

.search_bx .input-group-prepend img {
    max-width: 30px;
    filter: invert(1);
}

.search_bx .input-group-prepend button {
    padding: 8px 20px;
}

.search_bx button {
    background: #283694;
    border-radius: 0 !important;
    border-color: #283694;
}

.right_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 1.04vw;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    justify-content: flex-end;
    padding: 0;
}

.right_btn ul li {
    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;
}

.right_btn ul li a {
    color: #000;
    margin: 0;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -10px;
}

.right_btn ul li a#search-btn span {
    position: relative;
    padding-bottom: 10px;
}

.right_btn ul li a#search-btn span:before {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #aa0008;
    position: absolute;
    bottom: -1px;
    left: 0;
    -webkit-transition: width 0.3s ease-in-out 0.2s;
    -o-transition: width 0.3s ease-in-out 0.2s;
    transition: width 0.3s ease-in-out 0.2s;
}

.right_btn ul li a#search-btn:hover span:before {
    width: 0;
}

.right_btn ul li a img {
    max-width: 28px;
    margin-right: 5px;
    margin-top: 10px;
}

.right_btn ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    display: none;
}

.right_btn ul li a:hover:before {
    width: 100%;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

.right_btn ul li:nth-child(2) {
    padding-left: 1.2vw;
    padding-right: 0;
}

.section-title.text-white h2 {
    color: #fff;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar {
    padding: 0;
    margin: 0;
    position: inherit;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
}

.navbar ul li {
    white-space: nowrap;
    padding: 22px 0;
}

.navbar a.nav-item,
.navbar a.nav-item:focus {
    padding: 0;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 14px;
    color: #000;
    position: relative;
    padding-top: 10px;
    padding-bottom: 16px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 600;
    display: inline-block;
}

.navbar ul li:hover a.nav-item {
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: background-color 0.4s linear;
    -o-transition: background-color 0.4s linear;
    transition: background-color 0.4s linear;
    color: #000;
}

.navbar ul li a.nav-item:before {
    content: '';
    width: 0;
    height: 3px;
    background-color: #aa0008;
    position: absolute;
    bottom: -1px;
    left: 0;
    -webkit-transition: width 0.3s ease-in-out 0.2s;
    -o-transition: width 0.3s ease-in-out 0.2s;
    transition: width 0.3s ease-in-out 0.2s;
}

.navbar ul li:hover a:before {
    width: 100%;
}

.mega-dropdown i {
    transition: 0.3s;
    margin-top: 7px;
}

.mega-dropdown:hover i {
    transform: rotate(180deg);
}

.mega-menu .list-item a {
    text-decoration: none;
    font-weight: 500;
    color: #fff !important;
    font-size: 18px;
    padding: 0.65em 1.35em;
    /* display: inline-block; */
    transition: all 200ms;
}

.mega-dropdown {
    padding: 10px;
}

.submenu-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.submenu-left {
    display: inline-block;
    width: 25%;
    background-color: #283694;
}

.submenu-title-holder {
    padding: 1.56vw 4.58vw 0.78vw;
}

.submenu-left-description {
    padding-left: 4.58vw;
    padding-right: 3.39vw;
    padding-bottom: 3.39vw;
}

.submenu-title.white {
    color: #ffffff;
}

.submenu-left-description .txt-24 {
    font-size: 18px;
    white-space: pre-wrap;
    color: #fff;
    margin: 0 !important;
}

.btn-link.white {
    color: #ffffff !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin-top: 25px;
    display: block;
    text-decoration: none;
}

.btn-link.white:hover {
    color: #ffffff !important;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.btn-link:hover img {
    -webkit-animation: bounce 2s linear -0.4s;
    animation: bounce 2s linear -0.4s;
    -webkit-transition: left 0.3s ease-in-out;
    -o-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
}

.header-ul .header-li:hover .submenu .submenu-center,
.header-ul .header-li:hover .submenu .submenu-right {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.submenu-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
}

.submenu-center .inline_block {
    border-right: 1px solid #dcdcdc;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.submenu-center .submenu-ul-tag li {
    display: inline-block;
    width: calc(50% - 15px);
    margin-bottom: 15px;
}

.submenu-right {
    display: inline-block;
    width: 25%;
}

.submenu-center .submenu-title-holder,
.submenu-center .submenu-default-col {
    padding: 1.56vw 3.13vw 0.78vw;
}

.submenu-center .submenu-ul-tag {
    padding-left: 3.13vw;
    padding-right: 2.29vw;
    display: block;
    white-space: normal;
}

.submenu-center .submenu-ul-tag a {
    font-size: 16px;
    margin-top: 10px;
    color: #17171B !important;
    padding: 0 !important;
    display: block;
    white-space: normal;
}

.submenu-feat a,
.submenu-feat a {
    color: #17171B;
    font-size: 22px;
    display: block;
    margin: 0 auto;
}

.submenu-feat {
    padding: 30px 20px;
    padding-bottom: 2.6vw;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

.radius {
    border-radius: 8px;
}

.submenu-feat-img {
    max-width: 75%;
}

.submenu-feat-img {
    border-radius: 8px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.img-wrapper.aspect-ratio-400-240 {
    padding-top: 60%;
}

.submenu-feat-img .img-wrapper {
    border-radius: 8px;
}

.img-wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
    overflow: hidden;
    font-size: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.img-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0%;
    object-position: 50% 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.to-be-scaled img {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.bor-bottom h2 {
    position: relative;
}

.bor-bottom h2:after {
    width: 80px;
    height: 3px;
    background: #d52128;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section-title.bor-bottom h2 {
    padding-bottom: 15px;
}

/* .mega-dropdown:hover>a::before {
    rotate: 180deg;
}

.mega-dropdown>a::before {
    content: "\f107" !important;
    position: absolute !important;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    inset: 50% 1em auto auto;
    translate: 0 -50%;
    font-size: 0.875rem;
    line-height: 1;
    transition: 200ms;
    display: none !important;
} */

.mega-dropdown:hover .mega-menu {
    transition: 200ms ease;
    scale: 1;
    opacity: 1;
    visibility: visible;
    padding: 0;
}

.mega-menu {
    position: absolute;
    inset: 100% 0 auto 0;
    visibility: hidden;
    opacity: 0;
    scale: 0.95;
    z-index: 777;
    background: rgb(255 255 255);
}


.mega-menu-row {
    display: flex;
    width: 100%;
    column-gap: 30px;
}

.mega-menu-list {
    width: 50%;
    max-width: 560px;
    margin-inline-start: auto;
    padding-block: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-list li.list-item {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}



.mega-menu a:hover {
    background-color: transparent !important;
    color: #283694 !important;
}

.submenu-title-holder h3 {
    font-size: 19px;
    font-weight: 500;
}

.mega-menu .list-item {
    contain: layout;
    padding: 0;
}

.mega-menu .list-item::after {
    content: "\f105";
    position: absolute;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    inset: 50% 3rem auto auto;
    translate: 0 -50%;
    background-color: #832b33;
    color: #fff;
    width: 30px;
    border: 1px solid #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    translate: -50% -50%;
    opacity: 0;
    transition: 300ms ease;
    pointer-events: none;
}

.mega-menu .list-item:hover::after {
    translate: 0 -50%;
    opacity: 1;
}


.mega-menu-images {
    contain: paint;
    width: 50%;
    background-color: #f2f2f2;
    animation: skeleton 0.85s linear infinite alternate both;
}

.mega-menu-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}


.mega-menu a:hover::before {
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    transition: 300ms;
    left: 100%;
}

.mega-menu a:hover::after {
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    transition: 300ms 300ms;
    left: 50%;
}

div.mega_menu_image {
    background-repeat: no-repeat !important;
    height: 100%;
    background-color: #FFF;
    background-size: cover;
    background-position: center;
}

/*--------------------------------------------------------------
 # Sidebar Css
--------------------------------------------------------------*/

.side-bar {
    position: fixed;
    overflow: hidden;
    top: -100%;
    width: 100%;
    max-width: 100%;
    padding: 50px 50px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: hidden;
}

.side-bar .inner {
    padding: 40px 20px 0 0;
}

@media (max-width: 991px) {
    .side-bar .inner {
        padding: 40px 0 0 0;
    }
}

.side-bar .inner-main-wrapper-desk .thumbnail {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.side_bar_menu ul li a {
    font-size: 18px;
    color: #000000;
    text-transform: capitalize;
    /* font-family: "Playfair Display", serif; */
}

.side_bar_menu {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #875b2636;
}

.side_bar_menu ul li a:hover {
    color: #b58f55;
}

.side_bar_menu ul li {
    margin-bottom: 25px;
    text-align: center;
}

.side_bar_menu ul li:last-child {
    margin-bottom: 0;
}

.side_bar_location h4 {
    font-weight: 600;
    color: #000000;
    font-size: 30px;
    text-transform: capitalize;
    margin: 25px 0;
}

.side-bar .inner-main-wrapper-desk .thumbnail img {
    width: 150px;
    margin-left: 0;
}

.side-bar .inner-main-wrapper-desk .banner-shape-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    opacity: 1;
    transition-delay: 0.7s;
}

.side-bar .inner-main-wrapper-desk .banner-shape-area .shape {
    height: 10px;
    width: 10px;
    line-height: 10px;
    transform: rotate(45deg);
    margin: 0 6px;
    background: var(--color-primary);
    display: block;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li {
    list-style: none;
    margin: 0 5px;
    color: #fff;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li a {
    width: 40px;
    height: 40px;
    border: 1px solid #283694;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #283694;
    border-radius: 0;
}

.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li a:hover {
    color: #fff;
    background-color: #283694;
    border-color: #283694;
}

.side-bar.header-one {
    background-color: #ffffff;
}

.side-bar button:hover {
    background-color: #283694;
    border-color: #283694;
}

.side-bar.show {
    top: 0;
    overflow-y: auto;
}

.side-bar button {
    max-width: 100%;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 0;
    top: 0;
    background: #aa0008;
    padding: 6px;
    border: 1px solid #aa0008;
}

.side-bar button i {
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#side_bar_overlay.bgshow {
    background: #0e1013;
    opacity: 70%;
    visibility: visible;
    pointer-events: visible;
    z-index: 999;
    top: 0;
}

#side_bar_overlay {
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

.burger-icon {
    width: 50px;
    cursor: pointer;
    padding: 10px 5px;
}

header.sticky .burger-icon span {
    background: #17171B;
}

.burger-icon span {
    display: block;
    height: 2px;
    margin: 6px 0;
    transition: background-color 0.3s ease-in, opacity 0.3s ease-in, transform 0.3s ease-in;
    width: 100%;
    background: #aa0008;
    transition: all 400ms ease-in-out;
    margin-left: auto;
}

.burger-icon span:nth-child(2) {
    width: 100%;

}

.burger-icon span:nth-child(3) {
    width: 100%;
}

.burger-icon span:nth-child(1) {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

.burger-icon span:nth-child(2) {
    width: 100%;
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}

.burger-icon span:nth-child(3) {
    width: 100%;
    transition: all 100ms ease-in-out;
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}

@-webkit-keyframes burger-hover {
    0% {
        width: 100%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

@keyframes burger-hover {
    0% {
        width: 100%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}


.inner-main-wrapper-desk {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.side_bar_cn {
    margin-bottom: 41px;
    text-align: center;
    flex: 0 0 100%;
}

.side_bar_address {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #875b2636;
    flex: 0 0 calc(33.33% - 50px);
}

.side_bar_address h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffffff;
    background: #283694;
    padding: 11px 11px;
    border-left: 3px solid #aa0008;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.side_bar_address a {
    color: #000000;
    transition: all 0.3s ease-in-out;
}

.side_bar_address a:hover {
    color: #d52128;
}

.side_bar_address p {
    margin: 0;
    text-align-last: left;
    font-size: 18px;
}

.side_bar_cn img {
    width: 300px;
}

/*--------------------------------------------------------------
 # Banner top css
--------------------------------------------------------------*/
.banner-top-cn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-top-cn .section-title {
    flex: 0 0 70%;
}

.ban_head.text-black h1 {
    color: #000;
}

.ban_head h1 {
    color: #ffffff;
    font-size: 55px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    transform: translate(100px, 0px);
    transition: all 2s
}

.banner-main .slick-slide.slick-current.slick-active .ban_head h1 {
    transform: translate(0px, 0px);
}

.banner-inner-cn img {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.banner-top {
    background: #e7fff1;
}

.ban_inner-img img {
    width: 100%;
    transform: translate(100px, 0px);
    transition: all 5s;
}

.banner-main .slick-slide.slick-current.slick-active .ban_inner-img img {
    transform: translate(0px, 0px);
}

.ban_head.text-white h1 {
    color: #fff;
}

.ban_head {
    text-align: left;
    max-width: 500px;
}

.ban_head span {
    color: #ba3103;
    display: inline-block;
    font-family: "Epilogue", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 60px;
    text-transform: uppercase;
    transform: translate(0px, -100px);
    transition: all 2s;
}

.banner-main .slick-slide.slick-current.slick-active .ban_head span {
    transform: translate(0px, 0px);
}


.ban_head a.theme-btn {
    margin-top: 25px;
    transform: translate(0px, 100px);
    transition: all 0.5s
}

.banner-main .slick-slide.slick-current.slick-active .ban_head a.theme-btn {
    transform: translate(0px, 0px);
}

.ban_head p {
    color: #fff;
    font-size: 20px;
}

.ban_head h1 span {
    padding: 0 15px;
    display: inline-block;
    font-size: 80px;
    background: linear-gradient(to left, #000000 50%, #000000 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    transition: all .5s ease-out;
}

.banner-main .slick-slide.slick-current.slick-active .ban_head h1 span {
    background-position: right bottom;
}

.banner-main {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    background: #000000;
}

.banner-main .slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    left: 0;
    width: 100%;
}

.banner-main .slick-dots button {
    height: 10px;
    width: 10px;
    background: #ffffff6e;
    font-size: 0;
    margin: 0 2px;
    border: 0;
}

.banner-main .slick-dots .slick-active button {
    background: #d52128;
    height: 10px;
    width: 10px;
}

.banner-slide {
    display: block !important;
}

.banner-main .slider-track {
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.banner-main .banner-image {
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner-slider .slick-slide {
    padding: 0;
}

.banner-main .banner-image img {
    width: 100%;
    -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform: scale(1);
    transform: scale(1);
    height: 100vh;
    object-fit: cover;
}

.banner-image-inner img {
    transform: inherit !important;
}

.banner-image-inner img {
    max-height: 650px;
    margin: 0 auto;
}

.banner-main .slick-slide {
    display: block !important;
}

.banner-text {
    position: absolute;
    top: 55%;
    left: 0;
    width: 100%;
    z-index: 99;
    transform: translate(0px, -50%);
}


.banner-cn {
    max-width: 650px;
}

.banner-cn h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #000000;
    text-transform: capitalize;
}

.banner-cn ul li {
    display: inline-block;
    margin-right: 12px;
    padding: 2px 8px;
    border-bottom: 1px solid #283694;
    background: #ffffff75;
    color: #000000;
    margin-bottom: 10px;
}

.banner-cn ul {
    margin-bottom: 25px;
}

.banner-cn p {
    font-size: 25px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.4;
}

.section-title.text-black h2 {
    color: #000;
}



.btn-bx {
    margin-top: 50px;
}

.ban-img-face {
    position: relative;
    text-align: center;
    transform: translate(0px, 51px);
}

.ban-img-face img {
    margin-inline: auto;
}

.banner-slider .slick-list {
    overflow: visible;
}

.banner-slider .slick-slide {
    padding: 0;
}

@media screen and (min-width: 1280px) {}

@media screen and (min-device-width: 1280px) and (max-device-width: 1366px) {
    .ban-img-face img {
        max-width: 85%;
    }
}

/*--------------------------------------------------------------
# offer Section
--------------------------------------------------------------*/
.offer-sec {
    position: relative;
    z-index: 7;
    background: #ffffff;
}

.offer-product-bx {
    background: rgb(255 255 255 / 60%);
}

.offer-product-cn {
    padding: 0 15px 15px;
}

.offer-product-cn h3 {
    margin: 0;
    text-align: center;
    font-size: 18px;
    color: #000000;
}

.offer-product-cn ul li {
    text-align: center;
    color: #000;
    margin-top: 5px;
}

.offer-sec .section-title {
    margin-bottom: 50px;
}

.offer-product-img {
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-product-img img {
    transition: all 0.5s;
}

.offer-product-bx:hover .offer-product-img img {
    transform: scale(1.2);
}

.offer-main-bx {
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
.blog-section .section-title {
    margin-bottom: 50px;
}

.blog-container {
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-bx .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-img {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    height: 275px;
    display: inline-block;
    border-radius: 15px;
    width: 100%;
}

.blog-bx:hover .blog-img:before {
    transform: scale(1);
}

.blog-bx:hover .read-more {
    opacity: 1;
}

.blog-img:before {
    content: '';
    background: #0000009e;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    transition: all 0.5s;
}

.read-more {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0;
    transition: all 0.5s;
}

.blog-cn h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.blog-cn p {
    margin-bottom: 20px;
    color: #000000;
    border: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-bx {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    flex-direction: column;
}

.blog-cn span {
    color: #d52128;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.blog-cn a {
    color: #d52128 !important;
}

.blog-cn a.link-btn img {
    max-width: 24px;
    margin-left: 5px;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
    filter: brightness(0) saturate(100%) invert(29%) sepia(70%) saturate(6493%) hue-rotate(345deg) brightness(85%) contrast(98%);
}

/*--------------------------------------------------------------
# coming soon Section
--------------------------------------------------------------*/

.message {
    display: flex;
    justify-content: center;
    padding: 150px 0 115px 0;
}

.texts {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    color: #283694;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 90px;
    line-height: normal;
    cursor: wait;
    height: auto;
    width: 100%;
    text-align: center;
}

.text {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.text-front {
    z-index: 1;
}

/*--------------------------------------------------------------
# lang Section
--------------------------------------------------------------*/
.suppliers-section {
    background: rgb(162 168 209 / 20%);
}

.suppliers-logos {
    text-align: center;
    margin-top: 25px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    max-width: 85%;
    margin-inline: auto;
}

/* .lang-logos:before {
    content: '';
    text-align: center;
    background: #00000014;
    height: 1px;
    width: 95.5%;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    left: 0;
    margin-inline: auto;
    right: 0;
} */
.suppliers-logo-img {
    display: inline-block;
    margin: 0;
    text-align: center;
    vertical-align: top;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    height: 100%;
    position: relative;
    background: #ffffff;
    border: 1px solid #313d9647;
}

.suppliers-section .section-title {
    margin-bottom: 50px;
}


.suppliers-logo-img:hover img {
    transform: scale(1.1);
}

.suppliers-logo-img img {
    height: 40px;
    object-fit: contain;
    mix-blend-mode: darken;
    margin-inline: auto;
    transition: all 0.5s;
}

.suppliers-section .section-title p {
    max-width: 750px;
    margin-inline: auto;
}

.cta-section .section-title.text-center {
    max-width: 950px;
    margin-inline: auto;
}



.body_lines {
    display: none !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-transition: opacity 0.8s ease-out;
    -o-transition: opacity 0.8s ease-out;
    transition: opacity 0.8s ease-out;
}

.body_lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 50%;
    margin-inline: auto;
    background: transparent;
    z-index: 1;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.body_lines span {
    height: 100%;
    width: 1px;
    background: rgb(40 54 148 / 12%);
    display: inline-block;
}

/*--------------------------------------------------------------
 # services
--------------------------------------------------------------*/
.services-section {
    background: #ebecf8;
    overflow: hidden;
    background-image: url(https://excelcomp.com/wp-content/uploads/2024/11/57787-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    background-attachment: fixed;
    padding-bottom: 100px;
    background-position: center;
    position: relative;
}

.services-section:after {
    content: '';
    backdrop-filter: blur(5px);
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.services-bx-small {
    display: grid;
    position: relative;
    flex: 0 0 calc(33.333% - 15px);
    transition: all 0.5s;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid #ffffff36;
    background: rgb(0 0 0 / 20%);
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-small-cn {
    text-align: center;
    padding: 30px 15px;
    background: transparent;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.services-small-cn h2 {
    font-size: 18px;
    color: #fdc72e;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

.services-small-cn p {
    color: #fff;
}

.services-small-cn h3 {
    font-size: 18px;
    background-color: #aa0008;
    color: #fff;
    padding: 5px 18px;
    text-align: center;
    margin: 0;
    font-family: 'Touche';
    font-weight: 400;
    text-transform: uppercase;
    display: none;
}

.services-bx-big .services-cn p {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.services-small-img {
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    text-align: center;
}

.services-big-img img {
    backface-visibility: hidden;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s;
    height: 700px;
    width: 100%;
    object-fit: cover;
}

.services-small-img img {
    backface-visibility: hidden;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1s ease 0s, transform 1s ease 0s;
    transition: opacity 1s ease 0s, transform 1s ease 0s;
    height: auto;
    width: 120px;
    object-fit: cover;
    margin-inline: auto;

}


/* .services-bx-small:hover .services-small-cn {
    transform: translate(0px, -10px);
} */

.services-bx-big .services-cn {
    position: relative;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    bottom: 0;
    margin: auto;
    max-width: 750px;
}

.services-bx-big .services-cn h3 {
    font-size: 18px;
    background-color: #aa0008;
    color: #fff;
    padding: 5px 18px;
    text-align: center;
    font-family: 'Touche';
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
}

.services-bx-big .services-cn h2 {
    color: #fff;
    margin-bottom: 25px;
}

.services-bx-big .services-cn a.our-btn-white {
    max-width: 150px;
    margin-inline: auto;
    margin-top: 25px;
}

.service-inner-main {
    display: flex;
    gap: 23px;
    justify-content: center
}

a.link-btn {
    color: #fff;
    font-size: 16px;
}

.services-small-cn span.link-btn img {
    max-width: 30px;
    filter: invert(1);
    margin-left: 5px;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
}

a.link-btn img {
    max-width: 30px;
    filter: invert(1);
    margin-left: 5px;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

/*--------------------------------------------------------------
 # Footer
--------------------------------------------------------------*/
.lines {
    position: absolute;
    inset: 0;
    max-width: 1520px;
    margin-inline: auto;
    z-index: 0;
}

.lines .line:nth-child(1) {
    margin-left: -19%;
}

.lines .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgb(40 54 148 / 14%);
    overflow: hidden;
}

.lines .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.lines .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(213 33 40) 100%);
    -webkit-animation: run 7s 0s infinite;
    animation: run 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.lines .line:nth-child(2) {
    left: 69%;
}

.lines .line:nth-child(3) {
    left: 72%;
}

@keyframes run {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

.footer-rapid {
    text-align: center;
    margin-top: 35px;
}

.footer-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-bx {
    flex: 0 0 25%;
}

.footer-section {
    position: relative;
    padding-top: 44px;
    background: #ebecf8;
    z-index: 2;
}

.about-logo img {
    max-width: 190px;
}

.social_links {
    display: flex !important;
    gap: 12px;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 35px;
}

.social_links li,
.social_links li a {
    margin-bottom: 0 !important;
}

.social_links li {
    width: fit-content !important;
}

.social_links li:before {
    display: none;
}

.social_links li a {
    width: 40px;
    height: 40px;
    border: 1px solid #283694;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

.social_links li a:hover {
    background-color: #283694;
    color: #fff !important;
}

.about-footer-cn {
    margin-top: 25px;
}

.about-footer-cn p {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-footer-cn a {
    color: #283694;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.footer-widget.w_100 ul li {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.footer-cta {
    border-bottom: 1px solid rgb(255 255 255 / 25%);
    padding-bottom: 50px;
}

.footer-cta .cta-text a {
    color: #fff;
}

.footer-cta .cta-text a:hover {
    color: #d52128;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 44px;
}

.footer-content .row {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    background: #ffff;
}

.footer-text p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    font-size: 16px;
    margin-right: 15px;
    border: 1px solid #d7b65d;
    height: 40px;
    width: 40px;
    display: inline-block;
    color: #d7b65d;
}

.footer-social-icon a:hover {
    color: #fff;
    border: 1px solid #d7b65d;
    background-color: #d7b65d;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.footer-widget-heading h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    color: #283694;
    text-align: left;
    text-transform: capitalize;
    padding-bottom: 25px;
    text-align: center;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #aa0008;
    margin: 0 auto;
    right: 0;
}

.footer-widget ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 18px;
    position: relative;
    text-align: center;
}

.about-footer {
    text-align: center;
}

.footer-widget ul li a:hover {
    color: #283694;
}

.footer-widget ul li a {
    color: #283694;
    text-transform: capitalize;
}

/* .footer-bx:nth-child(1) ul {
    display: flex;
    flex-wrap: wrap;
}
.footer-bx:nth-child(1) ul li {
    flex: 0 0 50%;
}
.footer-bx:nth-child(1) {
    flex: 0 0 50%;
} */

.copyright-area {
    padding: 15px 0;
    border-top: 1px solid rgb(255 255 255 / 11%);
    background: #283694;
}

.copyright-text p {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

.copyright-text p a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.copyright-text p a:hover {
    color: #d52128;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #d7b65d;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.ft_li {
    margin-bottom: 45px;
}

.footer-section figure {
    margin-bottom: 0;
}

.footer-section figure img {
    width: 191px;
}

.ft_links {
    display: flex;
    gap: 60px;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    align-items: center;
    height: 100%;
}

.ft_links li a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.ft_links li a:hover {
    opacity: 0.7;

}






/* 20-11-2024 */


.inner_banner {
    padding: 0;
    position: relative;
    margin: 0px;
    margin-top: 90px;
}

.inner_banner img {
    width: 100%;
    max-height: 256px;
    -o-object-fit: cover;
    object-fit: cover;
}

.page-template-Services .banner_pic {
    background: #dfe3e7;
    min-height: 275px;
    height: 100%;
    max-height: 370px;
}

.inner_banner .banner_heading {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 7;
    transform: translate(-50%, -40%);
}

.inner_banner .banner_heading h2 {
    color: #283694;
    text-transform: uppercase;
    font-size: 30px;
    background: #ffffff;
    padding: 10px 28px;
    border-bottom: 3px solid #283694;
}

/*
.inner_banner::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    inset: 0;
    background: linear-gradient(180deg, #000000bd 0, rgba(255, 255, 255, 0) 100%);
} */

/* .inner_banner .container{
    position: relative;
    z-index: 77;
} */


.faq-section {
    overflow: visible;
}

.faq-img {
    position: sticky;
    top: 150px;
    /* transform: translate(0px, -100px); */
}

.accordion-card .accordion-button:after {
    content: "\2b";
    height: 100%;
    width: auto;
    line-height: 1;
    background-color: transparent;
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    font-size: 25px;
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: 30px;
    color: #283694;
}

.accordion-card .accordion-button:not(.collapsed):after {
    content: '';
    height: 1px;
    width: 15px;
    border: 1px solid #283694;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    top: 35px;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: unset;
    border: unset;
}

.accordion-card .accordion-button {
    font-size: 18px;
    font-weight: 500;
    border: 0;
    border-radius: 18px;
    border-color: #D8DDE1;
    background-color: #f5f7fa;
    border-radius: 0;
    padding: 22px 45px 22px 30px;
    min-height: 56px;
    gap: 10px;
    margin-bottom: 0;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 18px;
    color: #000 !important;
    position: relative;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-body {
    background: #f5f7fa;
}

.accordion-card .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-radius: 0;
}

.section-title h2 {
    position: relative;
    margin-bottom: 30px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 90px;
    background: #aa0008;
    margin: 0 auto;
    right: 0;

}


.services-section .section-title h2::after {
    background: #fdc72e;
}




.all-prod .card- {
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: rgb(149 157 165 / 9%) 0px 8px 24px;
    margin-bottom: 35px;
    height: 380px;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    z-index: 7;
    background: #fff;
    transition: 0.4s;
    border: 2px solid rgb(40 54 148 / 24%);
}

/* .all-prod .card-:hover h3,
li {
    color: #fff;
} */

.all-prod {
    background-color: #f5f7fa;

}

.all-prod .offer-product-cn {
    padding: 20px 20px;
    background: #ebecf8;
    /* margin: 20px; */
    border-radius: 0px;
}

.all-prod .row {
    justify-content: center;
}

/* .all-prod .card-:hover li {
    color: #fff;
} */

.all-prod .card-:hover:after {
    width: 100%;
    height: 100%;
    right: 0px;
    top: 0px;
    border-radius: 0px;
    opacity: 1;
}

.all-prod .card-::after {
    background-color: rgb(40 54 148 / 83%);
    position: absolute;
    content: '';
    border-radius: 0;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    transition: 0.4s;
    z-index: -1;
    opacity: 0;
    border: 2px solid rgb(213 33 40 / 51%);
}



@keyframes cycleEffect {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
.all-prod .card-:hover::before {
    border: 2px dashed #fff;

}



*/
/* .about-us .left-side .pic img {
    width: 100%;
    max-width: 100%;
} */
.about-us .image-slider .slick-slide {
    padding: 0;
}

.about-us .right-side {
    padding-left: 3%;
}

.parallax-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.parallax-section .inner-text {
    padding: 50px;
    position: relative;
    background: hsl(0deg 0% 0% / 93%);
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    border-bottom: 3px solid #d52128;
    transition: 0.2s;
    width: 100%;
    max-width: 850px;
    text-align: center;
    margin-inline: auto;
    color: #fff;
}

.parallax-section .inner-text p {
    color: #fff;
}

.parallax-section .inner-text+.inner-text {
    margin-top: 15px;
}

.cont-info {
    text-align: center;
}

.services-section- {
    background: transparent;
}

.services-section- .services-bx-small {
    border: 2px solid #283694;
    border-radius: 10px;
    transition: all 0.5s;
    background: transparent;
}

.services-section- .services-bx-small:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.services-section- .services-small-cn p {
    color: #000;
}

.services-section- span.link-btn {
    color: #000;
    font-size: 18px;
    transition: all 0.5s;
}

.services-section- .services-bx-small:hover span.link-btn {
    color: #d52128;
}

.services-section- .services-bx-small:hover {
    border: 2px solid #d52128;
    transform: translate(10px, 10px);
}

.services-section- .services-bx-small:hover .services-small-img img {
    transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    transform-origin: center;
    -moz-transform-origin: center;
    -webkit-transform-origin: center;

    transition: transform 1s ease all;
    -moz-transition: -moz-transform 1s ease all;
    -webkit-transition: -webkit-transform 1s ease all;
}

.services-section- span.link-btn img {
    filter: unset;
}

.services-section- .services-small-cn h2 {
    font-size: 17px;
    color: #283694;
    margin-bottom: 5px;
}

.suppliers-section2 {
    background-color: transparent;
}

.suppliers-section2 .suppliers-logos {
    text-align: center;
    margin-top: 11px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 19px;
}

.suppliers-section2 .suppliers-logo-img:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.line-card .logo-pic {
    border: 1px solid #eee;
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-bottom: 0px solid #283694;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.line-card .logo-pic::after {
    height: 3px;
    width: 0%;
    left: 50%;
    position: absolute;
    content: '';
    background-color: #283694;
    bottom: 0;
    transition: 0.2s;
}

.line-card .logo-pic:hover::after {
    width: 100%;
    left: 0%;
}

.line-card .logo-pic:hover {
    transform: translateY(-10px);
}

.line-card .logo-pic img {
    width: 100%;
    max-width: 100%;
    margin: auto;
    display: block;
    height: 80px;
    object-fit: contain;
}

.line-card .row {
    margin-top: 35px;
    justify-content: center;
    row-gap: 25px;
}

.bg-imgae {
    min-height: 600px;
    display: flex;
    align-items: center;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.bg-imgae .container {
    position: relative;
    z-index: 77;
}

.bg-imgae::after {
    height: 100%;
    width: 100%;
    inset: 0;
    position: absolute;
    content: '';
    background-color: #000000a1;
}

.bg-imgae .section-title h2 {
    color: #fff;
}

.bg-imgae .section-title h2::after {
    background-color: #fdc72e;
}



#user-content img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 35px;
}

.page-template header {
    position: fixed;
    padding: 0;
    background: rgb(222, 222, 222);
    background: linear-gradient(270deg, rgba(222, 222, 222, 1) 70%, rgba(179, 179, 179, 1) 84%);
}

.home header {
    position: fixed;
    background: transparent;
}

header.scrolled {
    position: fixed;
    padding: 0;
    background: rgb(222, 222, 222);
    background: linear-gradient(270deg, rgba(222, 222, 222, 1) 70%, rgba(179, 179, 179, 1) 84%);

}

header.scrolled .bottom_head .lyt_logo img {
    width: 100%;
    max-width: 200px;
    position: relative;
    top: 0;
}

.contact-us {
    background: #ffffff;
    z-index: 9;
    position: relative;
}

#contact-form {
    background-color: #fff;
    border-radius: 0;
    padding: 50px;
    box-shadow: 0 0 4px 4px #afacac36;
}

[id^="contact"] .row {
    row-gap: 1rem;
}

#contact-form .form-control {
    line-height: 2;
    border-radius: 0;
    box-shadow: none;
}

#contact-form .form-control:is(:focus, :focus-visible) {
    border-color: var(--clr-dark);
}

.reach-us li {
    display: flex;
    gap: 24px;
    align-items: center;
}

.reach-us li .icon>* {
    min-width: 50px;
    height: 100%;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    background-color: #d52128;
    color: #fff;
    border-radius: 50%;
}

.reach-us li:not(:last-child) {
    margin-bottom: 0;
}

ul.reach-us {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.reach-us li {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #a80532;
    box-shadow: 0 0 4px 4px #afacac36;
    flex: 0 0 calc(33.33% - 20px);
}

.reach-us li a {
    color: #d52128;
}

.map-bx {
    height: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 4px 4px #afacac36;
}

.reach-us li strong {
    margin-bottom: 4px;
    display: block;
}

.contact-us-info {
    border-radius: 20px;
    padding: 65px 100px;
    margin-right: -10px;
    background: linear-gradient(98deg, #FFF8F5 16.02%, #F6F7FF 75.01%);
    border: 1px solid #eee;
}

.contact-us-info li a {
    color: #283694;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none !important;
}

.style-bx {
    margin-bottom: 50px;
}

.contact-us-info .style-bx i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    background-color: #d52128;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.7s;
}

a.text-decoration-underline {
    color: #283694;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none !important;
}

.contact-form {
    background-color: #283694;
    padding: 35px;
    border-radius: 20px;
    margin-left: 0px;
}

.contact-form h2 {
    font-size: 35px;
    margin-bottom: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-us-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.contact-us-info li.main-bx {
    margin-bottom: 30px;
}

.contact-us-info .style-bx {
    gap: 10px;
    margin: 20px 0px 0px 0px;
}

.contact-us-info .style-bx span {
    font-size: 16px;
    font-weight: 600;
    color: #404040;
}

.social-link {
    display: flex;
    gap: 10px;
    margin: 20px 0px 15px 0px;
}

.social-link i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    display: inline-block;
    background-color: #d52128;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.7s;
}


.contact-form label {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.contact-form input {
    background-color: #ffffff;
    border: 1px solid#DDDDDD;
    height: 56px;
    color: #838383;
    font-size: 16px;
    padding: 20px 24px;
    width: 100%;
    border-radius: 4px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form form textarea {
    width: 100%;
    border-radius: 7px;
    padding: 5px 27px 0px;
    height: 70px;
}

.map-pic {
    padding: 50px 0px 0px;
}

.map-pic .pic img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.offcanvas.offcanvas-top {
    height: 100%;
    padding: 15px;
    padding-left: 0px;
    padding-right: 0px;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #bbb5b5;
    padding: 25px 35px 15px 25px;
}

.rapid-quote form {
    background-color: #283694c9;
    padding: 35px;
    z-index: 7;
    position: relative;
    border-radius: 20px;
    margin-left: 0px;
}

.rapid-quote form h2 {
    text-align: center;
    color: #fff;
    font-size: 35px;
    margin-bottom: 5%;
}

.rapid-quote form input {
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    border: 1px solid #eee;
}

.rapid-quote form input.common-btn,
.rapid-quote form input.our-btn-black {
    background-color: #d52128;
    border: none;
    color: #fff;
}

.rapid-quote form input.common-btn:hover,
.rapid-quote form input.our-btn-black:hover {
    background-color: #000;
}

#catalog-request-quote-form span.error {
    background-color: #d52128;
    color: #fff;
    font-size: 14px;
    padding-left: 7px;
    width: 100%;
    display: block;
}

#catalog-request-quote-form .req-quote-form-detail-ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
}

#catalog-request-quote-form .req-quote-form-detail-ul li {
    color: #fff;
}

.rapid-quote form select {
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    border: 1px solid #eee;
}

.rapid-quote form label {
    color: #fff;
    margin-bottom: 4px;
    display: inline-block;
}

.remove-part-row i.fa-solid.fa-trash {
    padding: 15px 13px;
}

.rapid-quote .required-field .red {
    color: #ffffff;
    font-weight: 500;
    background-color: #d52128;
    display: block;
    PADDING: 4px 5px;
}

.rapid-quote .form-group .error {
    background-color: #d52128;
    color: #fff;
    font-size: 14px;
    padding-left: 7px;
}

.rapid-quote form .inf_bx {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 15px;
}

.trash-bx button {
    background: #d52128;
    border: none;
    padding: 8px 13px;
    color: #fff;
    font-size: 16px;
}

.rapid-quote form .input_bx {
    width: 100%;
}

.sub-heading {
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    border-top: 1px solid #eeeeee38;
    padding-top: 20px;
}

.rapid-quote form textarea {
    width: 100%;
    padding: 12px;
    border: 0px;
    height: 80px;
    border-radius: 0px;
}

.rapid-quote form .row {
    row-gap: 25px;
}

.rapid-quote {
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* background-attachment: fixed; */
    height: auto;
    position: relative;
    /* background-image: url(https://excelcomp.com/wp-content/uploads/2024/11/18631.jpg); */
}

#request-quote-table-mr .error-type-tooltip .error {
    position: absolute;
    background-color: #d52128;
    color: #fff;
    font-size: 14px;
    padding-left: 7px;
    display: block;
    padding-right: 31px;
}

/*
.rapid-quote::after {
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    background-color: #00000080;
    inset: 0;
} */

.side-bar- h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    background: #d52128;
    width: 100%;
    padding: 15px 20px;
    margin: 0;
    line-height: normal;
}

.side-bar- #category-list-parent li a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px 12px 20px;
    background: #ffffff;
    border-bottom: 1px solid #0000001f;
    width: 100%;
    z-index: 9;
    position: relative;
}

.side-bar- #category-list-parent li a::before {
    width: 0%;
    transition: all ease .5s;
    height: 100%;
    z-index: -7;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #283694;
}

.side-bar- #category-list-parent li a:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

.side-bar- #category-list-parent li a:hover {
    color: #fff;
}

.side-bar- {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #eee;
}

.right-table {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 99;
}

.right-table .Search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.right-table .Search-bar input {
    width: 100%;
    border: 1px solid #a6a6a6;
    padding: 10px;
    border-radius: 4px;
}

.search-by-name ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2px;
    margin: 20px 0px 20px 0px;
}

.search-by-name ul li {
    height: 35px;
    width: 35px;
    background: gray;
    display: grid;
    place-content: center;
    border: 1px solid #eee;
    background: #000;
}

.search-by-name ul li a {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
}

.right-table table {
    width: 100%;
    margin-top: 44px;
}

.right-table table thead th {
    text-align: left;
    background: #283694;
    border-right: 1px solid #eee;
    padding: 10px 15px;
    color: #fff;
    font-weight: 200;
}

.right-table table tbody td {
    padding: 10px 15px;
    font-size: 16px;
    border-block: 1px solid #eee;
}

.right-table table tbody td a {
    color: red;
}

.pagination {
    justify-content: center;
    margin-top: 3.333333%;
    gap: 10px;
}

.page-link {
    border-radius: 0px !important;
    padding: 8px 18px;
    background: #fffefe;
    color: #000;
    transition: 0.3s;
}


.page-link:hover {
    color: #fff;
    background: #283694 !important;
}

.parts-section .form-validate {
    width: 100%;
}

.parts-section .form-validate .partsearch_outer {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.parts-section .form-validate #djcatsearch {
    width: 25%;
    border-radius: 0;
    outline: none;
}

.parts-section .form-validate #djcatsearch:focus {
    border: 1px solid #283694
}

.parts-section .form-validate #submitsearch-newps {
    width: 91px;
    border-radius: 0;
    border: none
}

/* Targeting the 2nd, 3rd, and 4th rows in the tbody */
/* .right-table table tbody tr:nth-child(2) {
    background-color: #ebecf8;
}

.right-table table tbody tr:nth-child(4) {
    background-color: #ebecf8;

} */
.parts-section .col-sm-12 span {
    display: none;
}

.parts-section .col-sm-12 .page-numbers {
    display: block;
}

.parts-section .page-numbers {
    border-radius: 0px;
    margin-right: 5px;
}

.parts-section a.prev.page-numbers {
    background: #000;
    border-color: #000;
    color: #fff;
    border-radius: 0;
}

.parts-section .page-numbers {
    position: relative;
    float: left;
    padding: 6px 10px;
    line-height: 1.42857143;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    display: block;
}

.parts-section span.page-numbers.current {
    background: #d52128;
    color: #fff;
    border-color: #d52128;
}

.parts-section nav .col-sm-12 {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.parts-section .page-numbers:hover {
    background-color: #d52128;
    color: #fff;
}

.right-table table tbody tr:nth-child(odd) {
    background-color: #ebecf8;

}

#request-quote-table-mr .label-heading-disktop th {
    color: #fff;
    font-weight: 300;
}

.list-style {
    padding: 2px 10px 5px 29px;
}

.list-style li {
    position: relative;
    margin: 14px 0px;
    font-size: 16px;
}

.list-style li:before {
    content: '';
    position: absolute;
    min-width: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #d52128;
    outline: #d52128 solid 2.5px;
    outline-offset: 3px;
    margin-right: .75rem;
    left: -23px;
    top: 6.75px;
}

.pd_bx.parallax-section .inner-text {
    max-width: 604px;
}

.bg-rd {
    background-color: rgb(213 33 40 / 6%);
}

.pd_bx .inner-text p {
    margin-bottom: 0;
    font-size: 16px;
}

.about-us .right-side p {
    font-size: 16px;
}

.app_sec .list-style li::before {
    content: none;
}

.app_sec .list-style {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.app_sec .list-style li {
    background-color: #fff;
    color: #000;
    padding: 15px;
    /* border-bottom: 3px solid #d52128; */
    text-transform: capitalize;
    margin: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

.app_sec .list-style li::after {
    position: absolute;
    content: "";
    background-color: #283694;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.app_sec .list-style li:hover:after {
    width: 100%;
    height: 100%;
    clip-path: border-box;
}

.app_sec .list-style li:hover {
    color: #fff;
}

/* .why_point {
    position: relative;
}
.why_point .pic img {
    position: absolute;
    top: auto;
    width: 666px !important;
    bottom: 0px;
    left: 14%;
} */


.battery.app_sec .list-style li {
    width: 32%;
}

.battery.app_sec .list-style li b {
    display: block;
}



#battery {
    min-height: 395px;
}

/* .batter_why .pic img {
    width: 715px !important;
}
.fus_why .pic img {
    width: 483px !important;
    left: 22%;
}
.why_semmi .pic img {
    width: 415px !important;
    left: 22%;
} */

/******** jumbo dropdown css **************/
.mega-dropdown i {
    transition: 0.3s;
    margin-top: 7px;
}

.mega-dropdown:hover i {
    transform: rotate(180deg);
    color: #000;
    margin-top: 4px;
}

.mega-dropdown:hover {
    color: #000 !important;
}




/* .nav-item.mega-dropdown a:hover {
    background-color: transparent !important;
} */
/* .mega-menu>.list-item:hover>a {
    background-color: var(--gold-color);
    color: var(--black-text) !important;
} */

.mega-menu>.list-item>a {
    text-decoration: none;
    font-weight: 500;
    color: #fff !important;
    font-size: 18px;
    padding: 0.65em 1.35em;
    display: inline-block;
    transition: all 200ms;
}

.mega-menu-row li {
    padding: unset !important;
}

.mega-dropdown {
    padding: 10px;
}

.mega-dropdown:hover>a::before {
    rotate: 180deg;
}

.mega-dropdown .nav-item {
    padding-top: 5px !important;
}

.mega-dropdown>a::before {
    content: "\f107" !important;
    position: absolute !important;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    inset: 50% 1em auto auto;
    translate: 0 -50%;
    font-size: 0.875rem;
    line-height: 1;
    transition: 200ms;
    display: none !important;
}

.mega-dropdown:hover .mega-menu {
    transition: 200ms ease;
    scale: 1;
    opacity: 1;
    visibility: visible;
    padding: 20px;
}

.mega-menu {
    position: absolute;
    inset: 100% 0 auto 0;

    visibility: hidden;
    opacity: 0;
    scale: 0.95;
    box-shadow: 0 8px 32px hsl(0 0% 0% / 15%);
    z-index: 777;
    background: rgb(0 0 0 / 94%)
        /* background: linear-gradient(180deg, rgb(2 146 59 / 90%) 0%, rgb(51 196 108 / 90%) 100%); */
    ;
    /* background: linear-gradient(180deg, rgb(2 146 59 / 90%) 0%, rgb(51 196 108 / 90%) 100%); */
}


.mega-menu-row {
    display: flex;
    width: 100%;
    column-gap: 30px;
}

.mega-menu-list {
    width: 50%;
    max-width: 728px;
    margin-inline-start: auto;
    padding-block: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-list li.list-item {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}



.mega-menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: #fff !important;
    padding: 0.45em 1.35em;
    display: inline-block;
    padding: 20px 10px !important;
    transition: all 200ms;
}

.mega-menu a:hover {
    background-color: transparent !important;
    color: #fff !important;
}

.mega-menu a {
    display: block;
    padding: 1rem;
    contain: paint;
}

.mega-menu .list-item {
    contain: layout;
    padding: 0;
}

.mega-menu .list-item::after {
    content: "\f105";
    position: absolute;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    inset: 50% 3rem auto auto;
    translate: 0 -50%;
    background-color: #d52128;
    color: #fff;
    width: 30px;
    border: 1px solid #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    translate: -50% -50%;
    opacity: 0;
    transition: 300ms ease;
    pointer-events: none;
}

.mega-menu .list-item:hover::after {
    translate: 0 -50%;
    opacity: 1;
}

.mega-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(40 54 148 / 37%);
    width: 50%;
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    z-index: -1;
    opacity: 0.8;
}

.mega-menu a::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #283694;
    width: 50%;
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    z-index: -1;
}

.mega-menu a:hover {
    opacity: 1;
}

.mega-menu-images {
    contain: paint;
    width: 40%;
    background-color: #f2f2f2;
    animation: skeleton 0.85s linear infinite alternate both;
}

.mega-menu-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}


.mega-menu a:hover::before {
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    transition: 300ms;
    left: 100%;
}

.mega-menu a:hover::after {
    transform: skewX(-15deg) translateX(calc(-100% - 15px));
    transition: 300ms 300ms;
    left: 50%;
}

.mega-menu-list .excel_dp {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    row-gap: 0;
}

.mega-menu-list .excel_dp .list-item {
    width: 48%;
}

div.mega_menu_image {
    background-repeat: no-repeat !important;
    min-height: 350px;
    background-color: #FFF;
    background-size: cover;
    background-position: center;
}

li#menu-item-69.menu-item.mega-dropdown {
    padding: 20px 0px 20px 0px;
    position: inherit;
}

li#menu-item-69.mega-dropdown .nav-item:hover {
    color: #000 !important;
}

li#menu-item-69.mega-dropdown a:hover {
    color: #fff !important;
    opacity: 1;
}

/******** jumbo dropdown end **************/



.top_hd {
    display: none;
}

.batter_why .left-side .pic img {
    min-height: 700px;
    object-fit: cover;
}

.fus_why .left-side .pic img {
    min-height: 503px;
    object-fit: cover;
}


.why_semmi .left-side .pic img {
    min-height: 516px;
    object-fit: cover;
}

.page-id-303 .rapid-quote {
    background-image: none;
}

.why_led .left-side .pic img {
    min-height: 618px;
    object-fit: cover;
}

.why_relay .left-side .pic img {
    min-height: 731px;
    object-fit: cover;
}


.why_switch .left-side .pic img {
    min-height: 943px;
    object-fit: cover;
}

.why_terminal .left-side .pic img {
    min-height: 708px;
    object-fit: cover;
}

.why_diodes .left-side .pic img {
    min-height: 604px;
    object-fit: cover;
}

#menu-item-80 .mega-menu-list .excel_dp .list-item {
    width: 100%;
}



.btm_form form {
    padding: 30px;
    background: #fff;
    border: 2px solid #283694;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    max-width: 645px;
    margin: auto;
}

.btm_form form .row {
    row-gap: 20px;
}

.btm_form form .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.btm_form .row input {
    border: 1px solid #c2c2c2;
    border-radius: 0px;
    padding: 11px;
}

.btm_form .row textarea {
    border: 1px solid #c2c2c2;
    border-radius: 0px;
    padding: 11px;
}

.btm_form .row select {
    border: 1px solid #c2c2c2;
    border-radius: 0px;
    padding: 11px;
    height: 50px;
    font-size: 16px;
    width: 100%;
    background: none;
    color: #000;
}

.btm_form .row input::placeholder {
    color: #000;
    font-size: 16px;
}

.btm_form .row textarea::placeholder {
    color: #000;
    font-size: 16px;
}

.cont-info {
    text-align: left;
    position: relative;
    z-index: 9;
}

.cont-info .section-title h2 {
    font-weight: 600;
}

.cont-info .section-title h2::after {
    margin: 0;
}

.btm_form .row {
    row-gap: 20px;
}

.btn-bx {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .fluid-block {
        padding-block: 0;
    }

    .fluid-block .fluid-image {
        position: relative;
        overflow: hidden;
    }

    .fluid-block .fluid-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fluid-block .container-fluid .row>*:not(:is(.fluid-image, .fluid-content)) {
        max-width: 660px;
        padding: clamp(25px, 4vw, 50px);
    }

    .fluid-block .container-fluid .row>*:first-child:not(:is(.fluid-image, .fluid-content)) {
        margin-left: auto;
    }

    .fluid-block .row>*:first-child:not(:is(.fluid-image, .fluid-content)) {
        padding-inline-start: 2rem !important;
    }

    .fluid-block .row>*:last-child:not(:is(.fluid-image, .fluid-content)) {
        padding-inline-end: 2rem !important;
    }

    .fleet_in_list ul li {
        flex: 0 0 calc(33.33% - 15px);
    }

}

@media (max-width: 1440px) and (min-width: 1367px) {
    .why_point .pic img {
        left: 4%;
    }
}

@media (max-width:1366.98px) {
    /* .why_point .pic img {
        position: absolute;
        top: auto;
        width: 698px !important;
        bottom: 0px;
        left: 1%;
    } */

    .why_point .pic img {
        min-height: 464px;
        object-fit: cover;
    }

    .batter_why .left-side .pic img {
        min-height: 775px;
        object-fit: cover;
    }

    .fus_why .left-side .pic img {
        min-height: 620px;
        object-fit: cover;
    }

    .why_semmi .left-side .pic img {
        min-height: 649px;
        object-fit: cover;
    }

    .why_led .left-side .pic img {
        min-height: 690px;
        object-fit: cover;
    }

    .why_terminal .left-side .pic img {
        min-height: 688px;
        object-fit: cover;
    }

    .why_diodes .left-side .pic img {
        min-height: 731px;
        object-fit: cover;
    }


    .contact-us-info h4 {
        font-size: 20px;
    }

    .blog-cn h3 {
        font-size: 18px;
    }

    .all-prod .offer-product-cn {
        padding: 10px 30px;
        /* margin: 10px; */
        /* border-radius: 40px; */
    }

    .accordion-card .accordion-button {
        font-size: 17px;
    }

    .contact-us-info .style-bx span {
        font-size: 15px;
    }

    .map-pic {
        padding: 0px 0px 0px;
    }

    /* .batter_why .pic img,
    .fus_why .pic img {
        width: 749px !important;
        bottom: -2px;
        left: 4%;
    }
    .fus_why .pic img {
        width: 561px !important;
    }
    .why_semmi .pic img {
        width: 500px !important;
        bottom: -2px;
        left: 9%;
    } */
}

/* 20-11-2024 */



@media (max-width: 1366.98px) {
    .suppliers-section .container {
        max-width: 1340px;
    }

    .right-table table thead th {
        padding: 2px 10px;
        font-size: 15px;
    }

    #request-quote-table-mr .error-type-tooltip .error {
        padding-right: 2px;
    }

    .page-template-templates.page-template-request-quote .request-quote-table tr td.blu16 .error {
        padding-right: 10px !important;
    }
}

@media (max-width: 1199.98px) {
    .side-bar- #category-list-parent li a {
        padding: 10px 10px 8px 10px;
        font-size: 15px;
    }

    .side-bar- h2 {
        font-size: 18px;
        width: 100%;
        padding: 10px 15px;
    }

    .right-table table {
        overflow: scroll;
        display: block;
    }

    .contact-us-info {
        padding: 65px 60px;
    }

    .right-table table tbody td {
        padding: 5px 10px;
        font-size: 16px;
        width: 100%;
        min-width: 150px;
    }


    .all-prod .card- {
        padding: 10px;
    }

    .all-prod .offer-product-cn {
        padding: 15px 25px;
        margin: 10px;
        border-radius: 40px;
    }

    .offer-product-cn h3 {
        font-size: 16px;
    }

    .offer-product-cn ul li {
        margin-top: 7px;
        font-size: 15px;
    }

    .all-prod .card- {
        padding: 30px;
        height: auto;
        margin-bottom: 20px;
    }
}




@media (max-width: 1279.98px) {
    .mobmenu-content #mobmenuright>li>a:hover {
        background-color: #283694 !important;
    }

    .center-menu {
        display: none;
    }

    .right_btn ul li:nth-child(2) {
        display: none;
    }

    .bottom_head .lyt_logo img {
        position: unset;
    }

    .right_btn {
        justify-content: start;
        display: none;
    }

    .bottom_head {
        justify-content: space-between;
        padding: 10px 0;
    }

    /*
    .home header {
        position: unset;
        background: #b8cdfa;
        border-bottom: 1px solid #2836941f;
    }
 */


    .right_btn ul li a#search-btn span {
        font-size: 14px;
    }

    .right_btn ul li a img {
        max-width: 25px;
        margin-right: 5px;
        margin-top: 15px;
    }

    .body_lines {
        display: none;
    }

    .banner-sec {
        /* background: #b8cdfa; */
    }

    .offer-product-cn h3 {
        font-size: 17px;
    }

    .suppliers-logos {
        gap: 20px;
    }

    .services-small-cn h2 {
        font-size: 18px;
    }

    .search_bx {
        right: 100px;
        left: -100px;
    }




    .mob-menu-right-bg-holder {
        background: #121212;
    }

    .mobmenur-container {
        position: absolute;
        right: 0px;
        top: 5em !important;
        background: #283694;
        height: 40px;
        width: 40px;
        display: grid;
        place-items: center;
        margin-right: 4% !important;
        font-size: 10px !important;
    }

    #mobmenuright a {
        padding: 9px 20px !important;
        color: #fff !important;
        font-family: "Roboto", sans-serif !important;


        font-size: 16px !important;
        text-transform: capitalize !important;
    }

    #mobmenuright a {
        padding: 9px 20px !important;
        color: #fff !important;
        font-size: 16px !important;
        text-transform: capitalize !important;
        font-family: "Roboto", sans-serif !important;
    }

    .mobmenu-right-panel .mob-cancel-button {
        color: #fff !important;
        height: 40px;
        width: 40px;
        background: #283694;
        font-size: 25px !important;
        display: grid !important;
        place-content: center;
    }

    .mobmenu-content li {
        padding: 0 !important;
    }

    ul#mobmenuright {
        margin-top: 35px !important;
    }

    .mob-menu-logo-holder {
        display: none !important;
    }

    .mob-menu-header-holder.mobmenu {
        background: transparent !important;
        /* display: block !important; */
    }

    .mobmenu .headertext {
        display: none;
    }

    body.mob-menu-slideout-over {
        padding: 0px !important;
    }

    .mob-expand-submenu {
        position: relative;
        right: 0px;
        float: right;
        background: #ff0000;
        height: 25px;
        width: 25px;
        display: grid;
        place-content: center;
        border-radius: 50%;
    }

    .mob-expand-submenu i {
        font-size: 16px !important;
        color: #fff !important;
    }

    .top_hd {
        display: flex;
        position: relative;
        z-index: 999;
        justify-content: space-between;
        background-color: #283694;
    }

    .top_hd .top_phn {
        width: 50%;
        padding: 12px 9px;
        text-align: center;
    }

    .top_hd .top_phn a {
        font-size: 18px;
        color: #fff;
    }

    .top_hd .top_prt {
        width: 50%;
        padding: 12px 9px;
        background-color: #d52128;
        text-align: center;
    }

    .top_hd .top_prt a {
        font-size: 18px;
        color: #fff;
    }

    .home .header {
        top: 46px;
    }

    .page-template .mobmenur-container {
        top: 89px !important;
    }

}



@media (max-width: 1199.98px) {
    .services-small-cn {
        padding: 20px 10px;
    }

    .services-small-cn h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .services-bx-small {
        padding: 10px;
        margin-top: 25px;
    }

    .blog-bx {
        gap: 25px;
    }

    .blog-cn h3 {
        font-size: 20px;
    }

}

@media (max-width: 991.98px) {

    .parallax-section3 .text-bx {
        flex-direction: column;
        align-items: center;
    }

    .parallax-section2 .inner-text {
        max-width: 100% !important;
        width: 100% !important;
        padding: 25px !important;
    }

    .rapid-quote form {
        padding: 20px;
    }

    .rapid-quote form .row {
        row-gap: 20px;
    }

    .rapid-quote form h2 {
        font-size: 25px;
        margin-bottom: 4%;
    }

    .right-table .Search-bar {
        flex-wrap: wrap;
    }

    .side-bar- {
        margin-bottom: 4.444444%;
    }

    .side-bar- h2 {
        font-size: 20px;
        padding: 19px 15px;
    }

    .map-pic .pic img {
        height: auto;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form h2 {
        font-size: 30px;
    }

    .contact-us-info {
        padding: 2pc;
        margin-top: 25px;
    }

    .contact-us-area .row {
        flex-direction: column-reverse;
    }

    .parallax-section .inner-text {
        padding: 19px;
        width: 100%;
        max-width: 100%;
    }

    .about-us .left-side .pic img {
        padding: 2px;
        border: 1px solid #eee;
        border-radius: 10px;
    }

    .about-us .left-side .pic img {
        height: 224px;
        width: 100%;
        border-radius: 0;
    }

    .about-us .right-side {
        padding-left: 0px;
        margin-top: 25px;
        text-align: center;
    }

    .inner_banner .banner_heading h2 {
        font-size: 25px;
        padding: 10px 15px;
        margin: 0px;
    }

    .right_btn ul li {
        padding: 28px 0;
    }

    .home header {
        position: unset;
        background: #bcd1fc;
    }

    .right_btn ul li a#search-btn span {
        display: none;
    }

    .mobmenur-container {
        top: 28px !important;
    }

    .right_btn ul li a img {
        max-width: 30px;
        margin-right: unset;
        margin-top: unset;
        padding: 3px;
        filter: invert(5);
    }

    a#search-btn {
        height: 40px;
        width: 40px;
        background: #283694;
        display: grid;
        place-content: center;
    }

    .search_bx {
        right: 100px;
        left: -100px;
        z-index: 7;
        top: 69px;
    }

    .search_bx .input-group-prepend button {
        padding: 5px 11px;
    }

    .search_bx {
        padding: 10px;
    }

    .right_btn {
        justify-content: center;
        position: relative;
        z-index: 99;
        display: none;
    }

    .mobmenur-container {
        right: 10px;
        top: 31px !important;
    }

    .search_bx:before {
        top: -10px;
        margin-inline: unset;
        right: 13px !important;
        left: unset;
    }

    .search_bx {
        top: 74px;
    }

    .banner-bx {
        position: unset;
        transform: unset;
    }

    /*
    .banner-image img {
        display: none;
    } */

    .banner-sec {
        background: #b8cdfa;
    }

    .home header {
        position: absolute;
        background: transparent;
        border-bottom: 1px solid transparent;
    }

    .banner-cn {
        max-width: 100%;
        text-align: center;
    }

    .banner-cn h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .banner-cn h1 br {
        display: none;
        margin-left: 5px;
    }

    .ban-img-face img {
        width: 100%;
        max-width: 450px;
    }

    .banner-sec {
        padding: 45px 0px 45px 0px;
    }

    .banner-bx .row {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .ban-img-face {
        position: unset;
        text-align: center;
        transform: unset;
    }

    .offer-main-bx {
        padding: 0 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    section {
        padding: 45px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .suppliers-logos {
        margin-top: 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .btn-bx {
        margin-top: 35px;
    }

    .services-section {
        padding: 45px 0;
    }

    .service-inner-main {
        gap: 15px;
    }

    .service-inner-main {
        gap: 23px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-bx-small {
        margin-top: 20px;
    }

    .services-bx-small {
        flex: 0 0 calc(50% - 15px);
    }

    .blog-cn h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .footer-main .footer-bx:nth-child(1),
    .footer-main .footer-bx:nth-child(3) {
        display: none;
    }

    .footer-bx {
        flex: 0 0 100%;
    }

    .lines {
        display: none;
    }

    .footer-section {
        padding-top: 45px;
    }

    .footer-widget-heading h3 {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .footer-content {
        padding-bottom: 45px;
    }

    .copyright-area {
        padding: 10px 0;
    }

    .faq-img {
        position: relative;
    }

    ul.reach-us {
        display: block;
    }

    .reach-us li:not(:last-child) {
        margin-bottom: 29px;
    }

    #contact-form {
        padding: 20px;
    }

    #catalog-request-quote-form .req-quote-form-detail-ul {
        display: block;
    }

    #contact_form .col-md-12 {
        overflow-x: scroll;
    }

    #request-quote-table-mr .label-heading-disktop th {
        white-space: nowrap;
    }
}

@media (max-width: 768.98px) {
    .contact-form input {
        padding: 10px 10px;
        height: auto;
    }

    .contact-form input {
        padding: 10px 10px;
    }

    .search_bx {
        right: 77px;
        left: -100px;
    }

    .contact-us-info {
        padding: 20px;
        margin-top: 25px;
    }

    .mobmenur-container {
        top: 25px !important;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .banner-cn h1 {
        font-size: 25px;
    }

    .banner-cn p {
        font-size: 20px;
    }

    .banner-cn p br {
        display: none;
    }


}

@media (max-width: 768.98px) {
    .inner_banner img {
        min-height: 220px;
    }

    .lyt_logo {
        flex: 0 0 30%;
    }

    .lyt_logo {
        padding-left: 5px;
    }
}

@media (max-width: 767.98px) {
    .why_relay .left-side .pic img {
        min-height: auto;
        object-fit: cover;
    }

    .all-prod .offer-product-cn {
        padding: 10px 20px;
        margin: 0px;
        border-radius: 15px;
    }

    .all-prod .card- {
        border-radius: 30px;
    }

    .offer-product-cn h3 {
        font-size: 16px;
    }

    .offer-product-cn ul li {
        margin-top: 7px;
        font-size: 15px;
    }

    .all-prod .card- {
        padding: 30px;
        height: auto;
        margin-bottom: 20px;
    }

    .offer-main-bx {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .services-bx-small {
        flex: 0 0 calc(100% - 15px);
    }

    .blog-bx {
        gap: 25px;
        flex-direction: column;
        border: 1px solid #eee;
        padding: 10px;
        box-shadow: rgb(149 157 165 / 10%) 0px 8px 24px;
    }

    .blog-bx+.blog-bx {
        margin-top: 25px;
        flex-direction: column-reverse;
    }

    .blog-cn p {
        margin-bottom: 12px;
    }

    .home .bottom_head .lyt_logo img {
        max-width: 220px;
    }

    .mobmenur-container {
        top: 37px !important;
        right: -5px !important;
    }

    .banner-main .banner-image img {
        object-position: 14%;
    }

    .ban-img-face img {
        margin-top: 18px;
    }

    .blog-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .page-template header {
        padding: 14px 0;
    }

    .page-template header .bottom_head:after {
        display: none;
    }

    /* .about-us .left-side .pic img {
        display: none;
    } */
    .mob-menu-header-holder {
        height: auto !important;
    }

    .why_point .pic img {
        min-height: auto;
    }

    .list-style {
        text-align: left;
    }

    .app_sec .list-style li {
        width: 100%;
        text-align: center;
    }

    .battery.app_sec .list-style li {
        width: 100%;
    }

    .fus_why .left-side .pic img {
        min-height: auto;
    }

    .why_semmi .left-side .pic img {
        min-height: auto;
    }

    .page-template-request-quote .mf_inpu .input-bx:nth-child(3) {
        width: 100%;
    }

    .why_switch .left-side .pic img {
        min-height: auto;
        object-fit: cover;
    }

    .why_terminal .left-side .pic img {
        min-height: auto;
        object-fit: cover;
    }
}

@media (min-width: 575.98px) {
    .mobmenur-container {
        top: 85px !important;
        right: -5px !important;
    }

    .mob-menu-header-holder {
        height: auto !important;
    }
}


@media (max-width: 575.98px) {
    .parallax-section2 .inner-text {
        padding: 15px !important;
    }

    .rapid-quote form h2 {
        margin-bottom: 4% !important;
        margin-top: 20px !important;
    }

    .most-search-form form .row {
        padding: 20px 0px 15px 0px;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .sub-heading {
        font-size: 20px;
    }

    .rapid-quote form h2 {
        margin-bottom: 7%;
    }

    .contact-form {
        padding: 20px;
    }

    .rapid-quote form {
        padding: 14px;
    }

    .accordion {
        gap: 15px;
    }

    .accordion-card .accordion-button {
        padding: 11px 51px 15px 15px;
    }

    .contact-form h2 {
        font-size: 25px;
    }

    .all-prod .card-::before {
        width: 140px;
        height: 140px;
    }

    .all-prod .card-::after {
        width: 130px;
        height: 130px;
    }

    .inner_banner .banner_heading h2 {
        font-size: 22px;
        margin: 0px;
        text-align: center;
    }

    .right_btn ul li {
        align-items: baseline;
        padding: 11px 0px 0px 0px;
    }

    .right_btn {
        justify-content: start;
    }

    .search_bx:before {
        display: none;
    }


    .lyt_logo {
        flex: 0 0 50%;
    }

    .search_bx {
        right: 57px;
        left: -200px;
    }

    .home .mobmenur-container {
        top: 90px !important;
        right: -5px !important;
    }

    /* a#search-btn {
        position: relative;
        right: 25px;
        top: 5px;
    } */

    .ban-img-face img {
        width: 100%;
        max-width: 300px;
    }

    .banner-bx .row {
        flex-direction: column-reverse;
        row-gap: 20px;
    }

    section {
        padding: 35px 0;
    }

    .suppliers-section .section-title {
        margin-bottom: 20px;
    }

    .suppliers-logos {
        gap: 10px;
    }

    .service-inner-main {
        gap: 7px;
    }

    .footer-section {
        padding-top: 35px;
    }

    .footer-rapid {
        margin-top: 8px;
    }

    .footer-content {
        padding-bottom: 35px;
    }

    .line-card .logo-pic img {
        height: 60px;
    }

    .why_diodes .left-side .pic img {
        min-height: auto;
        object-fit: cover;
    }
}

/*
@media (max-width: 1279.98px) {

    .mobmenur-container {
        top: 22px !important;
    }
} */
.line-card a p {
    display: none !important;
}

.contdt .error {
    background-color: #d52128;
    color: #fff;
    width: 100%;
    display: block;
    font-size: 14px;
    padding-left: 7px;
}

#contact-form .col-lg-3 {
    text-align: right;
}

.page-template-request-quote .request-quote-table tr td {
    padding-bottom: 38px;
}

.page-template-request-quote .request-quote-table tr th.blu15 {
    width: 14%;
}

.page-template-request-quote .request-quote-table tr th.blu14 {
    width: 19%;
}

.page-template-request-quote .request-quote-table tr th.blu16 {
    width: 25%;
}

.page-template-request-quote .request-quote-table tr td.blu16 .error {
    padding-right: 46px !important;
}

.capt_row {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.capt_row .col-lg-3.mt-3 {
    text-align: right;
}

.page-template-request-quote .mf_inpu .input-bx:nth-child(3) {
    width: 59%;
}

.page-template-request-quote .mf_sle .input-bx {
    width: 185px;
}






.most-search-form form .row {
    row-gap: 25px;
    background: #ebecf8;
    padding: 20px 0px 15px 0px;
    margin-left: 25px;
    margin-right: 25px;
}

.most-search-form form label {
    color: #000000;
    margin-bottom: 4px;
    display: inline-block;
}

.rapid-quote form input {

    background: #fff;
}

.rapid-quote .sub-heading {
    color: #283694;

}

.rapid-quote form {
    background-color: #fff;
    padding: 0px 0px 30px 0px;
    border-radius: 0px;
    border: 1px solid #eee;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.rapid-quote form h2 {
    color: #283694;
    margin-bottom: 3%;
}



.form-head li {
    color: #000000 !important;
}

.form-head {
    border-bottom: 1px solid #283694;
    background: #ffffff;
    padding: 18px 25px 18px 25px;
    margin-bottom: 3%;
}

#catalog-request-quote-form .req-quote-form-detail-ul {
    margin-bottom: 10px;
}

#catalog-request-quote-form .g-recaptcha {
    max-height: 60px;
}














/***************** catalog form css ******************/

.page-template-catalog-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}

.page-template-catalog-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}


.page-template-catalog-request-quote .rapid-quote {
    background-image: none;
}

.page-template-catalog-request-quote .rapid-quote::after {
    content: none;
}

.page-template-catalog-request-quote .trash-bx button {
    background: #d52128;
    border: none;
    padding: 8px 13px;
    color: #fff;
    font-size: 16px;
}

.page-template-catalog-request-quote .trash-bx button i {
    background: transparent !important;
    padding: 0 !important
}

.page-template-catalog-request-quote .rapid-quote form {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 9;
}

.page-template-catalog-request-quote .rapid-quote form label {
    color: #000;
}

.page-template-catalog-request-quote .sub-heading {
    color: #000;
    padding-top: 0;
    padding-bottom: 16px;
}

.page-template-catalog-request-quote .mfsec {
    display: flex;
    justify-content: space-between;
}

.page-template-catalog-request-quote .mf_bx,
.page-template-catalog-request-quote .mf_form {
    width: 49%;
}

.page-template-catalog-request-quote .rapid-quote form input,
.page-template-catalog-request-quote .rapid-quote form textarea,
.page-template-catalog-request-quote .rapid-quote form select {
    border: 1px solid #dbdbdb;
    transition: all 0.3s ease-in-out;
    color: #000;
    display: inline-block;
}

.page-template-catalog-request-quote .rapid-quote form input:focus,
.page-template-catalog-request-quote .rapid-quote form textarea:focus {
    border: 1px solid #283694;
    outline: none;
}

.page-template-catalog-request-quote .mf_brd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* border-bottom: 1px dashed rgb(40 54 148 / 84%); */
    padding-bottom: 23px;
}

.page-template-catalog-request-quote .d-flex.align-items-end {
    width: 100%;
}

.page-template-catalog-request-quote .trash-bx {
    width: 200px;
    margin-top: 26px;
}

.page-template-catalog-request-quote .nf_df {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    margin-top: 22px;
}

.page-template-catalog-request-quote .nf_in {
    width: 48%;
}

.page-template-catalog-request-quote .mf_bx {
    border-right: 1px solid #f5f5f5;
    padding-right: 22px;
}

.page-template-catalog-request-quote .mf_inpu {
    display: flex;
    gap: 16px;
}

.page-template-catalog-request-quote .mf_sle {
    display: flex;
    gap: 24px;
}

.page-template-catalog-request-quote .rapid-quote h3 {
    margin-bottom: 20px;
    color: #283694;
    font-size: 18px;
}

.page-template-catalog-request-quote .trash-bx button {
    transition: all 0.3s ease-in-out;
}

.page-template-catalog-request-quote .trash-bx button:hover {
    background-color: #000;
}

.page-template-catalog-request-quote .mf_form .sub-heading {
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid rgb(40 54 148 / 43%);
}

.page-template-catalog-request-quote .mf_brd {
    margin-bottom: 0px;
}

.page-template-catalog-request-quote .rapid-quote form::after {
    background: #ebecf8;
    content: "";
    width: 51%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-bottom-right-radius: 9px;
    border-top-right-radius: 9px;
}

/* .page-template-catalog-request-quote .mf_scrol {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 12px;
} */
.page-template-catalog-request-quote select:focus {
    box-shadow: none;
    border-color: #283694;
}

.page-template-catalog-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}

.page-template-catalog-request-quote .mf_brd {
    padding: 16px;
}

.page-template-catalog-request-quote .mf_brd:nth-child(odd) {
    background-color: #ebecf8;
}

.page-template-catalog-request-quote .mf_brd:nth-child(even) {
    background-color: #f3f3f3;
}

.page-template-catalog-request-quote .input-bx label span,
.page-template-catalog-request-quote .input_bx label span,
.page-template-catalog-request-quote .nf_in label span {
    color: #d52128;
}

.page-template-catalog-request-quote .cont_hd {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px solid rgb(40 54 148 / 72%); */
    padding-bottom: 11px;
}

.page-template-catalog-request-quote .cont_hd h3 {
    margin-bottom: 0;
}

.page-template-catalog-request-quote .cont_hd span {
    font-weight: 600;
    color: #d52128;
    font-size: 14px;
}

.capt_row .nf_in .input_bx .col-md-9 {
    width: 100%;
}

@media (max-width: 1366px) and (min-width: 1280px) {
    .page-template-catalog-request-quote .container {
        max-width: 1275px;
    }
}

@media (max-width: 767px) {
    .page-template-catalog-request-quote .cont_hd {
        display: block;
        margin-top: 14px;
    }

    .page-template-catalog-request-quote .mfsec {
        display: block;
    }

    .page-template-catalog-request-quote .mf_bx,
    .page-template-catalog-request-quote .mf_form {
        width: 100%;
    }

    .page-template-catalog-request-quote .rapid-quote form::after {
        display: none;
    }

    .page-template-catalog-request-quote .mf_inpu {
        display: block;
        width: 100%;
    }

    .page-template-catalog-request-quote .mf_sle {
        display: block;
    }

    .page-template-catalog-request-quote .mf_bx {
        border-right: none;
        padding-right: 0px;
    }

    .page-template-catalog-request-quote .mf_form .sub-heading {
        margin-top: 40px;
    }

    .page-template-catalog-request-quote .nf_df {
        display: block;
    }

    .page-template-catalog-request-quote .nf_in {
        width: 100%;
    }

    .page-template-catalog-request-quote .nf_in .input-bx,
    .page-template-catalog-request-quote .nf_in select,
    .page-template-catalog-request-quote .nf_in input {
        margin-bottom: 12px;
    }

    .page-template-catalog-request-quote .mf_inpu .input-bx:nth-child(3) {
        width: 100%;
    }

    .page-template-catalog-request-quote .mf_sle .input-bx {
        width: 100%;
    }

    .page-template-catalog-request-quote .input-bx {
        margin-bottom: 12px;
    }
}

.page-template-catalog-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}

/***************** catalog form css end******************/


/***************** rapid quote css start******************/
.page-template-request-quote .rapid-quote {
    background-image: none;
}

.page-template-request-quote .rapid-quote::after {
    content: none;
}

.page-template-request-quote .trash-bx button {
    background: #d52128;
    border: none;
    padding: 8px 13px;
    color: #fff;
    font-size: 16px;
}

.page-template-request-quote .trash-bx button i {
    background: transparent !important;
    padding: 0 !important
}

.page-template-request-quote .rapid-quote form {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 9;
}

.page-template-request-quote .rapid-quote form label {
    color: #000;
}

.page-template-request-quote .sub-heading {
    color: #000;
    padding-top: 0;
    padding-bottom: 16px;
}

.page-template-request-quote .mfsec {
    display: flex;
    justify-content: space-between;
}

.page-template-request-quote .mf_bx,
.page-template-request-quote .mf_form {
    width: 49%;
}

.page-template-request-quote .rapid-quote form input,
.page-template-request-quote .rapid-quote form textarea,
.page-template-request-quote .rapid-quote form select {
    border: 1px solid #dbdbdb;
    transition: all 0.3s ease-in-out;
    color: #000;
    display: inline-block;
}

.page-template-request-quote .rapid-quote form input:focus,
.page-template-request-quote .rapid-quote form textarea:focus {
    border: 1px solid #283694;
    outline: none;
}

.page-template-request-quote .mf_brd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* border-bottom: 1px dashed rgb(40 54 148 / 84%); */
    padding-bottom: 23px;
}

.page-template-request-quote .d-flex.align-items-end {
    width: 100%;
}

.page-template-request-quote .trash-bx {
    width: 200px;
    margin-top: 26px;
}

.page-template-request-quote .nf_df {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
    margin-top: 22px;
}

.page-template-request-quote .nf_in {
    width: 48%;
}

.page-template-request-quote .mf_bx {
    border-right: 1px solid #f5f5f5;
    padding-right: 22px;
}

.page-template-request-quote .mf_inpu {
    display: flex;
    gap: 16px;
}

.page-template-request-quote .mf_sle {
    display: flex;
    gap: 24px;
}

.page-template-request-quote .rapid-quote h3 {
    margin-bottom: 20px;
    color: #283694;
    font-size: 18px;
}

.page-template-request-quote .trash-bx button {
    transition: all 0.3s ease-in-out;
}

.page-template-request-quote .trash-bx button:hover {
    background-color: #000;
}

.page-template-request-quote .mf_form .sub-heading {
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid rgb(40 54 148 / 43%);
}

.page-template-request-quote .mf_brd {
    margin-bottom: 0px;
}

.page-template-request-quote .rapid-quote form::after {
    background: #ebecf8;
    content: "";
    width: 51%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-bottom-right-radius: 9px;
    border-top-right-radius: 9px;
}

.page-template-request-quote .mf_scrol {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 12px;
}

.page-template-request-quote select:focus {
    box-shadow: none;
    border-color: #283694;
}

.page-template-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}

.page-template-request-quote .mf_brd {
    padding: 16px;
}

.page-template-request-quote .mf_brd:nth-child(odd) {
    background-color: #ebecf8;
}

.page-template-request-quote .mf_brd:nth-child(even) {
    background-color: #f3f3f3;
}

.page-template-request-quote .input-bx label span,
.page-template-request-quote .input_bx label span,
.page-template-request-quote .nf_in label span {
    color: #d52128;
}

.page-template-request-quote .cont_hd {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px solid rgb(40 54 148 / 72%); */
    padding-bottom: 11px;
}

.page-template-request-quote .cont_hd h3 {
    margin-bottom: 0;
}

.page-template-request-quote .cont_hd span {
    font-weight: 600;
    color: #d52128;
    font-size: 14px;
}

.capt_row .nf_in .input_bx .col-md-9 {
    width: 100%;
}

.parallax-section2 .inner-text {
    max-width: 600px !important;
    width: 100% !important;
    margin: unset !important;
    padding: 35px;
}

.parallax-section2 .section-title.text-black h2 {
    color: #fff;
    text-align: left;
}

.parallax-section2 .section-title h2::after {
    display: none;
}


.parallax-section2 .inner-text {
    text-align: left;
}

.parallax-section2 .inner-text p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: left;
}

.parallax-section2 .inner-text h2 {
    color: #fff;
}

.parallax-section3 .text-bx {
    display: flex;
    gap: 2em;
    justify-content: center;
}

.support_bx .service-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: rgb(149 157 165 / 10%) 0px 8px 24px;
    margin-bottom: 20px;
    transition: 0.2s;
    z-index: 9;
    overflow: hidden;
    position: relative;
    transition: 0.2s;
    min-height: 346px;
}

.support_bx {
    background: #ededed;
}

.support_bx .service-card:hover::after {
    width: 100%;
    left: 0%;
    transform: rotate(0deg);
    background: #283694;
}

.support_bx .service-card:hover h3 {
    color: #fff;
}

.support_bx .service-card:hover p {
    color: #fff;
}

.support_bx .service-card::after {
    height: 100%;
    width: 0%;
    background-color: #f5ebe1;
    position: absolute;
    content: '';
    z-index: -7;
    transition: 0.4s;
    top: 0;
    left: 50%;
    transform: rotate(25deg);
}

.support_bx .service-card::before {
    height: 100%;
    width: 50%;
    background-color: #d52128;
    position: absolute;
    content: '';
    z-index: -7;
    bottom: 0;
    transition: 0.2s;
    right: -50%;
}



.support_bx .service-card:hover .service-card__number-ring h3 {
    color: #d52128 !important;
    -webkit-text-stroke-color: #d52128 !important;
}

.support_bx .service-card .service-card__number-ring h3 {
    color: rgb(25 50 93 / 0%);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #283694;
    transition: all 0.3s ease-in-out;
    font-size: 40px;
}

.support_bx .service-card h3 {
    font-size: 22px;
    color: #000;
}

.support_bx .service-card p {
    color: #000;
}

.support_bx .section-title {
    margin-bottom: 40px;
}

.support_bx {
    color: #f5ebe1;
}

.page-id-926 .service-card {
    min-height: 369px;
}

.page-id-936 .service-card {
    min-height: 311px;
}











































@media (max-width: 1366px) and (min-width: 1280px) {
    .page-template-request-quote .container {
        max-width: 1275px;
    }

    .support_bx .service-card {
        min-height: 397px;
    }

    .page-id-936 .service-card {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .page-template-request-quote .cont_hd {
        display: block;
        margin-top: 14px;
    }

    .page-template-request-quote .mfsec {
        display: block;
    }

    .page-template-request-quote .mf_bx,
    .page-template-request-quote .mf_form {
        width: 100%;
    }

    .page-template-request-quote .rapid-quote form::after {
        display: none;
    }

    .page-template-request-quote .mf_inpu {
        display: block;
        width: 100%;
    }

    .page-template-request-quote .mf_sle {
        display: block;
    }

    .page-template-request-quote .mf_bx {
        border-right: none;
        padding-right: 0px;
    }

    .page-template-request-quote .mf_form .sub-heading {
        margin-top: 40px;
    }

    .page-template-request-quote .nf_df {
        display: block;
    }

    .page-template-request-quote .nf_in {
        width: 100%;
    }

    .page-template-request-quote .nf_in .input-bx,
    .page-template-request-quote .nf_in select,
    .page-template-request-quote .nf_in input {
        margin-bottom: 12px;
    }

    .page-template-request-quote .mf_inpu .input-bx:nth-child(3) {
        width: 100%;
    }

    .page-template-request-quote .mf_sle .input-bx {
        width: 100%;
    }

    .page-template-request-quote .input-bx {
        margin-bottom: 12px;
    }

    header.scrolled {
        position: inherit;
    }

    .cont-info .section-title h2 {
        margin-top: 23px;
    }
}

.page-template-request-quote .inner_banner {
    min-height: 135px;
    background: #ebecf8;
}


li.active-link {
    border-bottom: 3px solid #aa0008;
}

.parallax-section2 .inner-text h3 {
    color: #fff;
}

.page-id-548 .cont-info,
.page-id-1008 .cont-info,
.page-id-714 .cont-info,
.page-id-809 .cont-info {
    background-color: #f7f7f7;
}

.cont-info .row {
    align-items: center;
}

.page-id-714 .why_led .left-side .pic img {
    min-height: auto;
}

.page-id-714 .battery.app_sec .list-style li b {
    font-size: 18px;
    margin-bottom: 6px;
}

.btm_form {
    border: 2px solid rgb(40 54 148 / 30%);
    padding: 23px;
}

.page-id-453 .cont-info,
.page-id-491 .cont-info,
.page-id-527 .cont-info,
.page-id-676 .cont-info,
.page-id-724 .cont-info,
.page-id-758 .cont-info,
.page-id-772 .cont-info,
.page-id-792 .cont-info {
    background-color: #f7f7f7;
}

.page-id-936 .cont-info {
    text-align: center;
}



/*************** simple dropdown *****/
.menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 4px;
    font-size: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}
 
.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}
.si_drp {
    position: relative;
}

.si_drp .sub-menu {
    position: absolute;
    max-width: max-content;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 235px;
    background: #fff;
    margin-top: 15px;
    box-shadow: 0px 0px 0 5px #a1a1a133 !important;
    border-radius: 0;
    border: none !important;
    z-index: 77;
    top: -18px;
    display: none;
    transition: all 0.5s;
    margin-top: 3px;
}

.si_drp:hover ul.sub-menu {
    top: 64px;
    display: block;
    transition: all 0.5s;
}

.si_drp .sub-menu::after {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    z-index: 0;
    top: -14px;
    right: 0;
    border-bottom: none;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #fff;
}

.si_drp .sub-menu li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #6868682e;
    /* display: inline-block; */
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
}

.si_drp .sub-menu li:hover {
    background-color: #000;

}

.si_drp .sub-menu li:hover a {
    color: #fff !important;
}

.si_drp .sub-menu li a {
    padding: 10px 10px;
    transition: all 0.5s;
    display: block;
    color: #000 !important;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}
.si_drp .sub-menu li a::before {
    display: none;
}

.page-id-48 .all-prod {
    margin-top: 80px;
}

.reach-us li address {
    margin-bottom: 0;
}


.page-id-491 .inner_banner .banner_heading h1,
.page-id-453 .inner_banner .banner_heading h1,
.page-id-758 .inner_banner .banner_heading h1,
.page-id-527 .inner_banner .banner_heading h1,
.page-id-676 .inner_banner .banner_heading h1,
.page-id-714 .inner_banner .banner_heading h1,
.page-id-724 .inner_banner .banner_heading h1,
.page-id-548 .inner_banner .banner_heading h1,
.page-id-792 .inner_banner .banner_heading h1,
.page-id-809 .inner_banner .banner_heading h1,
.page-id-1314 .inner_banner .banner_heading h1 {
    border-bottom: 0;
    background: transparent;
    font-size: 26px;
    color: #283694;
}


@media (max-width:767px) {
    .page-template header {
        position: relative;
    }

    .page-id-47 .about-us {
        margin-top: 7px !important;
    }

    .inner_banner {
        margin-top: 0;
    }

    .page-id-48 .all-prod {
        margin-top: 00px;
    }

    .cont-info .row {
        gap: 22px;
    }

    .social_links {
        margin-bottom: 36px;
    }

    .parts-section .form-validate #djcatsearch {
        width: 172px;
    }

    .parts-section .our-btn-black {
        padding: 10px 27px 6px 2px;
    }

    #contact-form .col-lg-3 {
        text-align: left;
    }
}










.supply-chain-page {
    width: 100%;
    overflow: hidden;
    background-image: url('https://excelcomp.com/wp-content/uploads/2026/05/bg-blue-map.jpg');
    background-attachment: fixed;
    background-size: cover;
}

.hero-section {
    position: relative;
    min-height: 532px;
    padding: 54px 0 38px;
}

.map-glow {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 24% 54%, rgba(18, 113, 190, 0.13), transparent 22%),
        radial-gradient(circle at 70% 56%, rgba(18, 113, 190, 0.14), transparent 25%);
}

.intro-copy h1 {
    margin: 0;
    color: #283694;
    font-size: clamp(2rem, 3.15vw, 2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.intro-copy p {
    margin: 16px 0 0;
    color: #000000;
    font-size: clamp(1.06rem, 1.48vw, 1.2rem);
    line-height: 1.24;
    font-weight: 400;
}

.process-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    column-gap: 18px;
    margin: 76px auto 0;
    max-width: 1534px;
}


.process-item {
    position: relative;
    min-width: 0;
    text-align: center;
}

.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 59px;
    left: calc(50% + 62px);
    right: calc(-50% + 45px);
    height: 3px;
    background: #283694;
    box-shadow: 0 1px 3px rgba(2, 44, 86, 0.22);
}

.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 59px;
    left: calc(50% + 62px);
    right: calc(-50% + 75px);
    height: 3px;
    background: #283694;
    box-shadow: 0 1px 3px rgba(2, 44, 86, 0.22);
}

.process-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 53px;
    right: calc(-50% + 65px);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #283694;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(2, 44, 86, 0.22);
}

.step-icon {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 123px;
    height: 123px;
    margin: 0 auto 21px;
    border: 4px solid #283694;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 10px 20px rgba(4, 54, 105, 0.08);
}

.step-icon svg {
    width: 64px;
    height: 64px;
    stroke: #283694;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.step-copy h2 {
    margin: 0 0 9px;
    color: #283694;
    font-size: clamp(1rem, 1.08vw, 1.15rem);
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.step-copy p {
    max-width: 240px;
    margin: 0 auto;
    color: #000000;
}

.photo-strip {
    height: 302px;
    background-image: url("https://excelcomp.com/wp-content/uploads/2026/05/photo-strip.png");
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    border-top: 1px solid rgba(0, 34, 68, 0.08);
    border-bottom: 1px solid rgba(0, 34, 68, 0.25);
    animation: 30s linear 0s infinite normal none running bg-marquee;
}

@keyframes bg-marquee {
    0% {
        background-position: 0;
    }

    100% {
        background-position: -1190px;
    }
}

.value-bar {
    padding: 0;
    display: flex;
    align-items: center;
    background: #283694;
    color: #ffffff;
    box-shadow: inset 0 10px 24px rgba(0, 0, 0, 0.18);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.value-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 94px;
    padding: 20px 22px;
}

.value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.value-item svg {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    stroke: rgba(255, 255, 255, 0.88);
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.value-item span {
    color: #ffffff;
    font-size: clamp(1rem, 1.09vw, 1rem);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}




.policy_text .wp-block-heading {
    background-color: #ebecf8;
    display: flex;
    font-size: 30px;
    padding: 15px 15px 15px 20px;
    border-left: 5px solid #283694;
    margin: 25px 0px 10px 0px !important;
    color: #283694;
}


.social-area,
.social_links {
    display: none !important;
}

i {
        font-style: normal;
}
.input_bx select,
.nf_in select {
    background-image: url(https://www.excelcomp.com/wp-content/uploads/2026/05/arrow-black.png);
    background-repeat: no-repeat;
    background-position: 97% 59%;
}

.services-small-cn .link-btn {
	color: #fff;
}

@media (max-width: 1199.98px) {
    .hero-section {
        padding-top: 44px;
    }

    .process-row {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        row-gap: 42px;
        max-width: 900px;
        margin-top: 58px;
    }

    .process-row::after,
    .process-item::before,
    .process-item::after {
        display: none;
    }

    .photo-strip {
        height: 246px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 34px 0 34px;
    }

    .intro-copy p {
        margin-top: 12px;
    }

    .process-row {
        grid-template-columns: 1fr;
        row-gap: 26px;
        margin-top: 38px;
    }

    .process-item {
        display: grid;
        grid-template-columns: 104px 1fr;
        align-items: center;
        gap: 18px;
        text-align: left;
        max-width: 440px;
        margin: 0 auto;
    }

    .step-icon {
        width: 98px;
        height: 98px;
        margin: 0;
        border-width: 3px;
    }

    .step-icon svg {
        width: 52px;
        height: 52px;
    }

    .step-copy p {
        max-width: none;
        margin: 0;
    }

    .photo-strip {
        height: 210px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item {
        min-height: 82px;
        justify-content: flex-start;
    }

    .value-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .intro-copy h1 {
        font-size: 1.4rem;
    }

    .intro-copy p {
        font-size: 1rem;
    }

    .photo-strip {
        height: 176px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-bottom: 1px solid #ffffff47;
    }

    .value-item::after {
        display: none;
    }
}
