/* Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
/* Space Grotesk */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/* Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&display=swap');

*{
  margin: 0;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
}

:root {
  --body-font: "Inter", sans-serif;
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;
   --theme-color: #E9160A;
  --theme-color2: #C90F06;
  --theme-color3: #FF3B20;
  --theme-color4: #FFE5E1;
  --theme-color5: #FFF7F5;
  --theme-color6: #F12A16;
  --theme-color7: #8A8F98;
  --theme-bg-light: #F7F7F7;
  --theme-bg-light2: #FFFFFF;
  --theme-color-light: rgba(233, 22, 10, .06);
  --theme-color-light2: rgba(233, 22, 10, .15);
  --body-text-color: #626262;
  --body-text-color2: #929292;
  --color-dark: #111111;
  --color-white: #FFFFFF;
  --color-blue: #E9160A;
  --color-silver: #C7C7C7;
  --color-light-silver: #E8E8E8;
  --color-gray: #F3F3F3;
  --color-red: #E9160A;
  --box-shadow:0 20px 60px rgba(0, 0, 0, .10);
  --box-shadow2:0 15px 40px rgba(233, 22, 10, .16);
  --box-shadow3:rgba(0, 0, 0, .08) 0 12px 35px;
  --border-info-color:rgba(233, 22, 10, .18);
  --border-info-color2:rgba(0, 0, 0, .08);
  --border-info-color3: rgba(199, 199, 199, .40);
  --border-colo--color-white: rgba(255, 255, 255, .15);
  --border-colo--color-white2: rgba(255, 255, 255, .30);
  --footer-bg: #111111;
  --footer-text-color: #E8E8E8;
  --facebook-color: #1877F2;
  --instagram-color: #E1306C;
  --youtube-color: #FF0000;
  --whatsapp-color: #25D366;
  --transition: all .5s ease;
  --transition2: all .3s ease;
  --lz-cyan: #FF3B20;
  --lz-text: #F3F3F3;
  --lz-dim: #929292;
  --lz-panel: #171717;
  --lz-border: #333333;
}


*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
}

a {
  color:  var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

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

ul {
  margin: 0;
  padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 500;
  font-family: var(--heading-font);
}

p {
  margin: 0px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/*  */

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
}


.topbar_section {
    background: var(--color-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 7px 0;
}

.topbar_main_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* Contact */

.right_side_data_div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.right_side_data_div > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d9d9d9;
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition2);
}

.right_side_data_div > a i {
    color: var(--theme-color);
    font-size: 11px;
}

.right_side_data_div > a:hover {
    color: var(--color-white);
}


/* Social */

.left_side_data_div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.left_side_data_div > span {
    color: #bdbdbd;
    font-size: 11px;
    font-weight: 600;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.left_side_data_div > a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #cfcfcf;
    font-size: 11px;
    transition: var(--transition2);
}

.left_side_data_div > a:hover {
    color: var(--color-white);
    background: var(--theme-color);
    border-color: var(--theme-color);
    transform: translateY(-2px);
}

.navbar {
    background: var(--color-white) !important;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    transition: var(--transition2);
}

.logo_center {
    display: flex;
    align-items: center;
    min-width: 190px;
    padding: 5px 0;
}

.logo_center img {
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
    transition: var(--transition2);
}

.navbar .navbar-nav {
    gap: 2px;
}

.navbar .navbar-nav > li {
    position: relative;
}

.navbar .navbar-nav > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 25px 18px !important;
    color: var(--color-dark);
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 650;
    text-transform: capitalize;
    letter-spacing: .1px;
    transition: var(--transition2);
}

.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li.active > a {
    color: var(--theme-color) !important;
}


.navbar .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 9px;
    height: 2px;
    border-radius: 20px;
    background: var(--theme-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition2);
}

.navbar .navbar-nav > li > a:hover::after,
.navbar .navbar-nav > li.active > a::after {
    transform: scaleX(1);
}

.navbar .navbar-nav > li > a i {
    font-size: 9px;
    transition: var(--transition2);}

.navbar .navbar-nav > li:hover > a i {
    transform: rotate(180deg);
}

.mega_menu_service {
    position: static !important;
}

.mega_menu_content {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 100% !important;
    width: min(900px, 92vw) !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, 12px) !important;
    background: var(--color-white) !important;
    border: 1px solid rgba(0, 0, 0, .07) !important;
    border-top: 3px solid var(--theme-color) !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12) !important;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}


.navbar .navbar-nav > .dropdown:hover > .mega_menu_content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) !important;
}

.mega_menu_content > .container {
    padding: 0;
}

.mega_menu_content .row {
    margin: 0;
}

.mega_menu_content [class*="col-"] {
    padding: 0;
}

.mega_menu_column {
    height: 100%;
    padding: 28px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
}

.mega_menu_content .col-lg-4:last-child .mega_menu_column {
    border-right: none;
}

.mega_menu_title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-dark);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
}

.mega_menu_title > span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color5);
    border: 1px solid var(--border-info-color);
    border-radius: 8px;
    color: var(--theme-color);
    font-size: 13px;
}


.mega_menu_column > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega_menu_column > ul > li {
    margin-bottom: 5px;
}

.mega_menu_column > ul > li > a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    color: var(--body-text-color);
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition2);
}

.mega_menu_column > ul > li > a  > i {
    color: var(--theme-color);
    font-size: 8px;
    transition: var(--transition2);
}

.mega_menu_column  > ul > li > a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.mega_menu_column > ul > li > a:hover i {
    transform: translateX(3px);
}

.header_enquiry_div {
    margin-left: 18px;
}

.header_enquiry_div > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 43px;
    padding: 0 19px;
    color: var(--color-white);
    background: var(--theme-color);
    border-radius: 6px;
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    box-shadow: 0 8px 20px rgba(233, 22, 10, .16);
    transition: var(--transition2);
}

.header_enquiry_div > a > i {
    font-size: 10px;
    transition: var(--transition2);
}

.header_enquiry_div > a:hover {
    color: var(--color-white);
    background: var(--theme-color2);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 22, 10, .24);
}

.header_enquiry_div > a:hover i {
    transform: translateX(4px);
}


.header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.header.scrolled .topbar_section {
    display: none;
}

.header.scrolled .logo_center img {
    height: 50px;
}

.header.scrolled .navbar .navbar-nav > li > a {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}


.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, .12) !important;
    padding: 7px 9px;
    border-radius: 6px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--theme-color-light) !important;
}
/* end */


/* =========================================================
   MOBILE HEADER
========================================================= */

.mobile_view_header_div_main {
    display: none;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    padding: 8px 0;
    transition: var(--transition2);
}

.mobile_view_flex_main_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo_div_mobile_view {
    display: flex;
    align-items: center;
}

.mobile-navbar-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mobile-navbar-brand > img {
    width: auto;
    height: 48px;
    max-width: 165px;
    object-fit: contain;
    transition: var(--transition2);
}


.phone_view_icons_div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone_view_icons_div > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
    color: var(--color-white);
    transition: var(--transition2);
}



.menu_icon_box {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 7px;
    box-shadow:
        0 7px 18px rgba(233, 22, 10, .20);
    transition: var(--transition2);
}

.menu_icon_box > i {
    color: var(--color-white);
    font-size: 18px;
    transition: var(--transition2);
}


.phone_view_icons_div > a:hover .menu_icon_box {
    background: var(--theme-color2);
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(233, 22, 10, .28);
}



.phone_view_icons_div > a:focus {
    outline: none;
}

.phone_view_icons_div > a:focus .menu_icon_box {
    box-shadow:
        0 0 0 4px var(--theme-color-light2);
}

.mobile_view_header_div_main.scrolled {
    background: var(--color-white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
}

.mobile_view_header_div_main.scrolled
.mobile-navbar-brand > img {
    height: 44px;
}
/* end css */


/* offcanvas css */
.mobilenav_sidebar_section > .offcanvas {
    width: 390px;
    max-width: 92%;
    z-index: 99999;
    background: var(--color-white);
    border: none !important;
    outline: none !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, .12) !important;
}



.mobilenav_sidebar_section
.offcanvas-header {
    min-height: 76px;
    padding: 10px 18px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    position: relative;
}


.mobilenav_sidebar_section
.offcanvas-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme-color);
}


.mobilenav_sidebar_section
.offcanvas-header
.offcanvas-title {
    margin: 0;
    padding: 0;
}

.mobilenav_sidebar_section
.offcanvas-header
.offcanvas-title a {
    display: inline-flex;
    align-items: center;
}

.mobilenav_sidebar_section
.offcanvas-header
.offcanvas-title img {
    width: auto;
    height: 48px;
    max-width: 170px;
    object-fit: contain;
}

.mobile_sidebar_close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .08) !important;
    border-radius: 8px;
    background: var(--theme-color5) !important;
    color: var(--theme-color) !important;
    font-size: 15px;
    transition: var(--transition2);
}

.mobile_sidebar_close:hover {
    color: var(--color-white) !important;
    background: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
    transform: rotate(90deg);
}



.mobilenav_sidebar_section
.offcanvas-body {
    padding: 18px !important;
    background:
        linear-gradient(
            180deg,
            var(--color-white) 0%,
            var(--theme-bg-light) 100%
        );
}


.mobilenav_sidebar_main_div {
    margin-bottom: 20px;
}

.mobilenav_sidebar_main_div > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.mobilenav_sidebar_main_div > ul > li {
    list-style: none;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, .055);
}


.mobilenav_sidebar_main_div > ul > li > a {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 4px;
    color: var(--color-dark);
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: var(--transition2);
}


.mobile_menu_icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color5);
    border: 1px solid var(--border-info-color);
    border-radius: 8px;

    color: var(--theme-color);

    font-size: 13px;

    transition: var(--transition2);
}


.mobile_link_arrow {

    margin-left: auto;

    color: var(--body-text-color2);

    font-size: 9px;

    transition: var(--transition2);
}


/* Hover */

.mobilenav_sidebar_main_div > ul > li > a:hover {

    color: var(--theme-color);

    padding-left: 8px;
}

.mobilenav_sidebar_main_div > ul > li > a:hover
.mobile_menu_icon {

    color: var(--color-white);

    background: var(--theme-color);

    border-color: var(--theme-color);

    transform: translateX(2px);
}

.mobilenav_sidebar_main_div > ul > li > a:hover
.mobile_link_arrow {

    color: var(--theme-color);

    transform: translateX(3px);
}


/* =========================================================
   PRODUCTS ACCORDION
========================================================= */

.mobile_product_accordion {

    border-bottom: 1px solid rgba(0, 0, 0, .055);
}


/* Product Header */

.mobile_product_header {

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Product link */

.mobile_product_header > a {

    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--color-dark);

    font-family: var(--nav-font);

    font-size: 14px;
    font-weight: 650;

    text-decoration: none;

    flex: 1;

    transition: var(--transition2);
}

.mobile_product_header > a:hover {

    color: var(--theme-color);
}


/* Toggle */

.mobile_product_toggle {

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: var(--theme-color);

    background: var(--theme-color5);

    border: 1px solid var(--border-info-color);

    border-radius: 7px;

    font-size: 10px;

    transition: var(--transition2);
}


/* Rotate when open */

.mobile_product_toggle[aria-expanded="true"] {

    color: var(--color-white);

    background: var(--theme-color);

    border-color: var(--theme-color);

    transform: rotate(180deg);
}


/* =========================================================
   PRODUCT DROPDOWN
========================================================= */

.mobile_product_dropdown {

    margin: 0 0 12px 20px;

    padding: 6px 0;

    background: var(--theme-color5);

    border-left: 2px solid var(--theme-color);

    border-radius: 0 8px 8px 0;

    overflow: hidden;
}


.mobile_product_dropdown > a {

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 12px;

    color: var(--body-text-color);

    font-family: var(--body-font);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition2);
}


.mobile_product_dropdown > a i {

    color: var(--theme-color);

    font-size: 8px;

    transition: var(--transition2);
}


.mobile_product_dropdown > a:hover {

    color: var(--theme-color);

    padding-left: 17px;
}


.mobile_product_dropdown > a:hover i {

    transform: translateX(3px);
}


/* =========================================================
   CONTACT AREA
========================================================= */

.mobile_sidebar_contact_main {

    margin-top: 10px;

    padding: 16px;

    background: var(--color-white);

    border: 1px solid rgba(0, 0, 0, .07);

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .045);
}


/* Contact item */

.sidebar_media_object_main_div {

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.sidebar_media_object_main_div:first-child {
    padding-top: 0;
}

.sidebar_media_object_main_div:last-child {

    padding-bottom: 0;

    border-bottom: none;
}


/* Contact Icon */

.sidebar_contact_icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--theme-color);

    background: var(--theme-color5);

    border: 1px solid var(--border-info-color);

    border-radius: 8px;

    font-size: 13px;
}


/* Contact Content */

.sidebar_media_content_div {

    min-width: 0;
}

.sidebar_media_content_div > span {

    display: block;

    margin-bottom: 3px;

    color: var(--color-dark);

    font-family: var(--heading-font);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.sidebar_media_content_div > p {

    margin: 0;

    color: var(--body-text-color);

    font-family: var(--body-font);

    font-size: 11px;

    line-height: 1.6;
}


.sidebar_media_content_div > a {

    display: block;

    color: var(--body-text-color);

    font-family: var(--body-font);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.8;

    text-decoration: none;

    transition: var(--transition2);
}

.sidebar_media_content_div > a:hover {

    color: var(--theme-color);
}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.mobile_sidebar_enquiry {

    margin-top: 15px;
}


.mobile_sidebar_enquiry > a {

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: var(--color-white);

    background: var(--theme-color);

    border-radius: 8px;

    font-family: var(--nav-font);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .5px;

    text-decoration: none;

    box-shadow: 0 10px 24px rgba(233, 22, 10, .18);

    transition: var(--transition2);
}


.mobile_sidebar_enquiry > a i {

    font-size: 10px;

    transition: var(--transition2);
}


.mobile_sidebar_enquiry > a:hover {

    color: var(--color-white);

    background: var(--theme-color2);

    transform: translateY(-2px);

    box-shadow: 0 14px 28px rgba(233, 22, 10, .24);
}


.mobile_sidebar_enquiry > a:hover i {

    transform: translateX(4px);
}


/* =========================================================
   SOCIAL
========================================================= */

.mobile_sidebar_social {

    margin-top: 20px;

    text-align: center;
}


.mobile_sidebar_social > span {

    display: block;

    margin-bottom: 10px;

    color: var(--body-text-color2);

    font-family: var(--body-font);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.mobile_sidebar_social > div {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}


.mobile_sidebar_social > div > a {

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--color-dark);

    background: var(--color-white);

    border: 1px solid rgba(0, 0, 0, .08);

    border-radius: 50%;

    font-size: 12px;

    transition: var(--transition2);
}


.mobile_sidebar_social > div > a:hover {

    color: var(--color-white);

    background: var(--theme-color);

    border-color: var(--theme-color);

    transform: translateY(-3px);
}



/* mobile header css end */