/*--------------------------------------------------------------
Root
--------------------------------------------------------------*/
:root {
    --primary_color: #ED7D31;
    --secondary_color:#78BDB5;
    --text_primary_color:#000000;
    --bg_color:#FFFFFF;
    --sidebar_background:#44546A;
}
*,
*:after,
*:before{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ol,ul{
    list-style: none;
}
html{
    scroll-behavior: smooth;
    font-size: 100%;
}
a{
    color: var(--text_primary_color);
    text-decoration: none;
}
body {
    color: var(--text_primary_color);
    background-color: var(--bg_color);
}
.noSelection {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }
/*--------------------------------------------------------------
 Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary_color);
    border-top-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
 Back to top 
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}
.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: var(--primary_color);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: var(--primary_color);
    color: #fff;
}
/*--------------------------------------------------------------
 Top Header
--------------------------------------------------------------*/
#header{
    transition: all 0.5s;
    z-index: 997;
    min-height: 64px;
    max-height: 64px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
}
.headerLogo{
    height: 64px;
    object-fit: contain;
}
.nav-menu {
    padding-right: 15px;
}
.nav-menu ul {
    list-style: none;
    width: max-content;
    margin: 0;
}
.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 2px 12px 2px 12px;
    margin-right: 2px;

}
.nav-menu__list--item.active{
    background-color:rgba(237, 125, 49,0.3);
    border-radius: 15px;
}
.nav-menu a {
    display: block;
    position: relative;
    color: var(--text_primary_color);
    transition: 0.3s;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: bold;
}
.hamburgerMenu i{
    font-size: 1.34rem;
    cursor: pointer;
    
}
.hamburgerMenu{
    display: none!important;
}
.mobile-nav-close-menu{
    display: none!important;
}

/*--------------------------------------------------------------
 Sidebar
--------------------------------------------------------------*/
.sideBarMenu{
    position: fixed;
    top: 64px;
    left: 0;
    /* background-color: var(--sidebar_background); */
    width: 240px;
    height: calc(100vh - 64px);
    
}
.sidebarMenuList{
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.sidebarMenuList ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.sidebarMenuList--item{
    padding-left: 1rem;
    padding-right: 15px;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    position: relative;
    cursor: pointer;
    margin-bottom: 0.2rem;
}
.sidebarMenuList--item:hover,
.sidebarMenuList--item.active{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    /* background: rgba(120, 189, 181,0.3); */
    background: rgba(237, 125, 49,0.3);
}
.sidebarMenuList--item a{
    font-size: 1rem;
    font-weight: 700;
    color: #000000;    
}
.sidebarMenuList--item .menuListIcon{
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-left: auto;
    transition: all 0.5s;
}
#ourProductId.activeSub .menuListIcon{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
#ourProductId .submenu{
    padding-left: 56px;
}
#ourProductId .submenu ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
#ourProductId .submenu ul li{
    padding-bottom: 0.5rem;
    padding-top: 0.5rem; 
}
#ourProductId .submenu ul li a{
    font-size: 0.9rem;
    font-weight: 700;
    color: #000000; 
    
}
/*--------------------------------------------------------------
 Main 
--------------------------------------------------------------*/
#main{
    /* padding-left: 260px; */
    padding-top: 15px;
}
.topSectionHeading{
    color: var(--primary_color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.secondHeading{
    font-size: 1.1rem;
}
.boldText{
    font-weight: bold;
    font-size: 1.05rem;
}
.mainBodyText{
    color: var(--text_primary_color);
    font-size: 1rem;
    padding-right: 15px;
    margin-bottom: 1rem;
}
.mainBodyLiText{
    color: var(--text_primary_color);
    font-size: 1rem;
    padding-right: 15px;
    margin-bottom: 0.5rem;
}
 ul.mainUlList{
    list-style-type: circle;
}
.numberStyle{
    list-style: decimal!important;
}
.lowerRomanStyle{
    list-style: lower-roman!important;
}
.contactUsMapImage{
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
}
.contactAddress{
    font-weight: bold;
}
.thirdHeading{
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: bold;

}
.linkText{
    color: var(--primary_color);
}
.subHeading{
   margin-left: 8px;
}
.subHeadingTxt{
    font-weight: 400;
    text-decoration: underline;
}

/*--------------------------------------------------------------
 Footer 
--------------------------------------------------------------*/
#footer{
    margin-top: 20px;
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
 Responsive 
--------------------------------------------------------------*/
@media  all and (max-width:767.98px){    
    .container{
        padding-right: 24px;
        padding-left: 24px;
    }
    .hamburgerMenu{
        display: block!important;
    }
    .mobile-nav-close-menu{
        display: block!important;
    }
    .nav-menu__list{
        position: fixed;
        top: 0;
        left: -1000px;
        right: -1000px;
        height: 100%;
        width: 100%!important;
        justify-content: center;
        flex-direction: column;
        padding: 10px 0;
        z-index: 9999;
        background: #FFFFFF;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        transition: all 0.5s ease-in-out;
    }
    .nav-menu__list.active{
        left: 0;
        right: 0;
    }
    .nav-menu__list .nav-menu__list--item a{
        font-size: 1.5rem;
    }
    .nav-menu__list .nav-menu__list--item{
        margin-bottom: 22px;
    }
    .mobile-nav-close-menu{
        position: fixed;
        top: 15px;
        right: -50px;
        z-index: 99999;
        cursor: pointer;
        transition: all 0.5s;
    }
    .mobile-nav-close-menu.active{
        right: 24px;
    }
    .mobile-nav-close-menu i{
        font-size: 2rem;       
    }    
    .mobile-nav-overly {
        width: 100%;
        height: 100%;
        z-index: 9997;
        top: 0;
        left: 0;
        position: fixed;
        background:rgba(0, 0, 0, 0.6);
        overflow: hidden;
        transition: ease-in-out 0.2s;
        display: none;
    }
}