@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Poppins', sans-serif;
font-family: 'Raleway', sans-serif; */


:root {
    --headingfont: 'Raleway', sans-serif;;
    --poppinsfont: 'Poppins', sans-serif;
    --rakkasfont: 'Rakkas', cursive;
    --redcolor: #BE0B00;;
    --blackcolor: #1E1E1E;
}

body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6rem;
    color: #676767;
    font-family: var(--poppinsfont);
}
html, body{
    overflow-x: hidden;
}
.supp-register-form{
    overflow: hidden;
  }
.wrapper.mm-page {
    /* z-index: 0; */
    position: initial;
}

img {
    max-width: 100%;
}

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

span,
mark {
    display: inline-block;
}

a {
    transition: all 0.5s ease-in-out;
    display: inline-block;
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

section {
    padding: 90px 0;
    position: relative;
}

.button,
button,
input[type="submit"] {
    background: #000000;
    border-radius: 4px;
    border: 0;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    
    transition: .4s all ease-in-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--blackcolor);
    color: #fff;
}

label {
    margin-bottom: 5px;
    display: inline-block;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--headingfont);
    margin-bottom: 10px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

p {
    margin-bottom: 1rem;
}

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

select {
    width: 100%;
    height: 40px;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #efefef url(../images/down_arrow.svg) no-repeat calc(100% - 20px) center / 18px;
}

input:not(input[type="checkbox"],
input[type="radio"],
input[type="submit"]) {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}


/* checkbox  */

.checkbox {
    position: relative;
    margin-left: 20px;
    padding-left: 30px;
    font-size: 18px;
    color: #000;
}

.checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkbox input:checked~span::after {
    background-size: 15px;
}

.checkbox span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    border: 2px solid #000;
    border-radius: 3px;
}

.checkbox span::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    background: url(../images/check.svg) no-repeat center center;
    background-size: 0;
    transition: 0.2s all ease-in-out;
}


/* checkbox  end*/


/* custom radio  */

.radioBtn {
    position: relative;
    margin-left: 20px;
    padding-left: 30px;
    font-size: 18px;
    color: #000;
}

.radioBtn input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.radioBtn input:checked~span::after {
    background: #000;
    transform: translateY(-50%) scale(1);
}

.radioBtn span::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    border: 2px solid #000;
    border-radius: 50%;
}

.radioBtn span::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    background-size: 0;
    transition: 0.2s all ease-in-out;
    border-radius: 50%;
}


/* custom radio end */


/* custom file upload  */

.fileupload {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fileupload span {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

.fileupload mark {
    height: 100%;
    background: #ecebeb;
    padding: 10px 20px;
}

.fileupload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
}


/* custom file upload end */

.sitemain {
    /* padding-top: 112px; */
}
.pt-150{
    padding-top: 150px;
}

/*======START MOBILE MENU SECTION=======*/

/*=======END MOBILE MENU SECTION=======*/


/* header */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: 00.5s ease-in-out;
    left: 0;
    background: #fff;
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}
header.site-header.sticky {
    transform: translateY(-65px);
}
.navbar-nav>li {
    padding: 22px 10px;
    position: relative;
}
.navbar-nav>li:last-child{
    padding-right: 0px;
}
.navbar-nav>li:not(:last-child){
   margin-right: 24px;
}
.navbar-nav>li>a {
    color: #1E1E1E;
   
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.navbar-nav > li.sub_menu_items:hover .sub-menu {
    opacity: 1;
    top: 100%;
    z-index: 1;
    pointer-events: all;
  }
.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover {
    color: var(--redcolor);
}


/* sub menu*/

.sub_menu_items {
    position: relative;
  }
  
  .sub-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 230%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0,.3);
    padding: 15px;
    border-radius: 3px;
    z-index: -5;
    transition: 0.4s all ease-in-out;
    opacity: 0;
    pointer-events: none;
    width: 230px;
  }
  .sub-menu::before{
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 50%;
    top: -9px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
  }
  .sub-menu > li > a {
    display: block;
    color: #000;
    padding: 8px 0;
    line-height: 1;
    text-transform: capitalize;
  }
  
  .navbar-nav > li.sub_menu_items:hover .sub-menu {
    opacity: 1;
    top: 100%;
    z-index: 1;
    pointer-events: all;
  }
  
  .submenuarrow {
    font-size: 15px;
    cursor: pointer;
  }
  .sub-menu.mega-menu{
    width: 500px;
    display: flex;
    flex-wrap: wrap;
  }
  .sub-menu.mega-menu li{
    width: 33%;
  }
  /* sub menu end*/


/* mobile menu  */

body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 999;
    transition: opacity .3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

.navbar-toggler {
    display: none;
}

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



/* header css */
.top_hdr{
    background: #1E1E1E;
    padding: 10px 0px;
}


.hdr_frm label{
    margin-bottom: 0px;
    color: #1E1E1E;
    cursor: pointer;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-left: 10px;
}
.hdr_frm  .catgory_icon{
   display: flex;
   align-items: center;
   width: 100%;
    flex-wrap: wrap;
}
.hdr_frm .seach_label{
    border-radius: 5px 0px 0px 5px;
    background: #E9E9E9;
    width: 134px;
    height: 40px;
}
.seach_label {
    padding: 9px;
}
.hdr_frm {
    background: #fff;
    max-width: 440px;
    border-radius: 15px;
    height: 40px;
}
.frm_box {
    width: calc(100% - 184px);
}
.submit_box {
    width: 50px;
    height: 40px;
}
.submit_box input[type="submit"]{
    background: var(--redcolor) url(../images/search.png)no-repeat center center / 20px;
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 0px;
    border-radius: 0px 10px 10px 0px;
 
}
.hdr_frm input[type="text"]{
  border-radius: 0px;
  border:0px;
}
.hdr_frm input[type="text"]::placeholder{
    color: #A1A1A1;
   
    font-size: 14px;
    
}

.submit_box input[type="submit"]:hover{
   opacity: 0.8;
}
.quick_link ul{
    display: flex;
    align-items: center;
}
.quick_link ul li a{
    color: #FFF;
font-family:var(--poppinsfont);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
display: flex;
align-items: center;
}
.quick_link ul li:not(:last-child){
    margin-right: 24px;
}
.quick_link ul li{
    padding-left:15px;
}
.quick_link ul li i{
  color:#949494;
  font-size: 24px;
  margin-right: 10px;
}
.quick_link ul li a:hover{
    color:var(--redcolor);
}
.login_hdr span{
    color: #949494;
  
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    
}


.login_hdr a{
    color: #FFF;
    
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
}
.login_hdr a i{
    font-size: 18px;
    margin-left: 4px;
}

.inner_hdr {
    padding-left: 183px;
}
.top_hdr{
    position: relative;
}
.top_hdr:before {
    position: absolute;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 90% 1%, 100% 100%, 0% 100%);
    background: var(--redcolor);
    height: 100%;
    width: 280px;
    content: "";
}
.middle_hdr {
    padding: 0px 0px;
}
.login_hdr{
    position: relative;
}
.login_dropdwn_menu {
    position: absolute;
    top: 58px;
    left: -57px;
    background: #fff;
    padding: 15px;
    width: 224px;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    transform: translateY(70px);
    pointer-events: none;
}

.login_hdr.active_login .login_dropdwn_menu{
    opacity: 1;
    transform: translateY(0px);
    z-index: 9;
    pointer-events: inherit;
}
.login_hdr.active_login .accont_link i{
    transform: rotate(180deg);
}



.login_dropdwn_menu ul li img{
    margin-right: 10px;
}
.login_dropdwn_menu ul li:not(:last-child){
    margin-bottom: 20px;
}
.login_dropdwn_menu ul li a{
    color: #4B4B4B;
font-family: var(--headingfont);
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.login_dropdwn_menu ul li a:hover{
    color:var(--redcolor);
}
.login_dropdwn_menu ul li{
    display: flex;
    align-items: center;
}
.login_dropdwn_menu .login_btn {
  
    border-radius: 3px;
    background:var(--redcolor);
    text-align: center;
    padding: 18px 25px;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}
.login_dropdwn_menu .regi_btn {
  
    color: #1E1E1E;
font-family: var(--headingfont);
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-align: center;
padding: 18px 25px;
text-align: center;
display: block;
border-radius: 3px;
border:1px solid var(--redcolor);
}
.login_dropdwn_menu ul{
    margin-top: 27px;
}
.login_dropdwn_menu .regi_btn:hover{
    background:var(--redcolor);
    color:#fff;
}
.login_dropdwn_menu .login_btn:hover{
    background:var(--blackcolor);
    color:#fff;
}
.login_dropdwn_menu:before {
    position: absolute;
    width: 23px;
    height: 23px;
    content: "";
    border-left: 21px solid #fff;
    border-top: 21px solid transparent;
    top: -11px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(135deg);
}


/* megamenu */
.megamenu_content {
    position: absolute;
    height: auto;
    width: 100%;
    background: #fff;
    z-index: 9;
    top: 72px;
    padding-top: 25px;
    left: -155px;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 660px;
    opacity: 0;
    z-index: -1;
    transform: translateY(-70px);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}
.navbar-nav>li:hover .megamenu_content{
    opacity: 1;
    z-index: 1;
    transform: translateY(0px);
    pointer-events: inherit;
}
.navbar-nav .arrw{
   cursor: pointer;
    display:inline-block;
}
.navbar-nav .arrw i{
    color:var(--redcolor);
}

.megamenu_content:before{
    position: absolute;
    width: 25px;
    height: 25px;
    content: "";
    border-right: 10px solid transparent;
    border-top: 23px solid #fff;
    top: -10px;
    left: 35%;
    transform: rotate(45deg);
    z-index: 0;
}
.megamenu_content ul li {
    margin-bottom: 0px;
    padding: 15px 0;
   
}
.megamenu_content ul li a {
    color: #1E1E1E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 30%;
    display: block;
    position: relative;
    font-size: 18px;
    color: #222;
    padding: 15px 0;
    border-bottom: 0.3px solid #F7F7F7;
}
.megamenu_content h4.menu_title{
    font-size: 16px;
}
.pro_lst span{
    width:30px;
}
.pro_lst .text{
    width:calc(100% - 62px);
    /* padding-left: 15px; */
}
.megamenu_content figure{
    height:100%;
}
.megamenu_content .pro_lst span {
    overflow: hidden;
    border-radius: 10px;
}
.megamenu_content .pro_lst span img{
    transition: all 0.5s ease-in-out;
}
/* .megamenu_content .pro_lst:hover span img{
   transform: scale(1.05);
} */
.megamenu_content figure img{
    height:100%;
    width:100%;
    object-fit: cover;
}
.megamenu_content .pro_lst .text h5{
  
    font-family: var(--poppinsfont);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; 
}

.megamenu_content .pro_lst .text h5 a{
    color: #1E1E1E;
}
.megamenu_content .pro_lst .text h5 a:hover{
    color:var(--redcolor);
}
.megamenu_content:after {
}

.btm_menu h1{
    margin-bottom: 0px;
}
/* banner css */

.bnner_txt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}
.banner_section figure{
    position: relative;
}
.banner_section figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner_section figure:after{
    background: url(../images/bnnr_overly.png)no-repeat center center / cover;
    position: absolute;
    left:0px;
    top:0px;
    width: 100%;
    height: 100%;
    content:"";
    z-index: 0;
    pointer-events: none;
}
.bnner_txt h2{
    color:#fff;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.bnner_txt p{
    color: #FFF;
    font-family: var(--poppinsfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.all_btn{
    min-width: 200px;
    text-align: center;
    color: #FFF;
font-family: var(--headingfont);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
border-radius: 5px;
background: #BE0B00;
padding: 20px 35px;
margin-top: 14px;
}
.all_btn:hover{
 background: var(--blackcolor);
 color:#fff;
}

.bnner_slider .itm{
    position: relative;
}

.bnner_slider .slick-dots {
    bottom: 75px;
    display: block;
    left: 0;
    right: 0;
    width: auto;
    margin: 0 auto;
    text-align: center;
}
.bnner_slider .slick-dots li button{
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.bnner_slider .slick-dots li.slick-active button{
    border: 5px solid var(--redcolor);
}

.bnner_slider .slick-dots li button::before{
    display: none;
}
.bnner_slider .slick-dots li{
    width: auto;
    margin: 0px 10px;
}
.bnner_form{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    padding: 17px;
    margin-top: -83px;
    position: relative;
}
.bnner_form select{
    border-radius: 2px;
    background: #E9E9E9 url(../images/down_arrow.svg) no-repeat calc(100% - 20px) center / 18px;
    padding: 0px 15px;
    height: 55px;
    width: 100%;
    color: #1E1E1E;
font-family: var(--blackcolor);
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.bnner_form input[type="text"]{
    padding: 15px;
    height: 55px;
    background: #E9E9E9;
    border:0px;
    width: 100%;
}
.bnner_form input[type="text"]::placeholder{
    color: #1E1E1E;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bnner_form input[type="text"]::-webkit-placeholder{
    color: #1E1E1E;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bnner_form input[type="submit"]{
  width: 100%;
  height: 55px;
  background: var(--redcolor) url(../images/search.png)no-repeat left 64px center / 20px;
  color: #FFF;
font-family: var(--headingfont);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.bnner_form input[type="submit"]:hover{
    background: var(--blackcolor) url(../images/search.png)no-repeat left 70px center / 20px;
}
.bnner_slider{
  margin-bottom: 0px !important;
}
/* supplier css */
.title h3{
    color: #1E1E1E;
    text-align: center;
     margin-bottom: 30px;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    
}
.title {
    margin-bottom: 40px;
}
.suplier_area h5.sub_hding{
    border-radius: 10px;
    background: var(--blackcolor);
  width: 100%;
  text-align: center;
  padding: 12px 25px;
  color: #FFF;
font-family: var(--headingfont);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
display: flex;
align-items: center;
justify-content: center;
margin:0 auto 12px;

}
.suplier_area h5 img{
    margin-right: 10px;
}
.suplier_list ul li{
    display: flex;
    align-items: center;
}
.suplier_list ul li{
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 12px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.suplier_list ul li:before{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--redcolor);
    content:"";
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
    z-index: -1;
}
.suplier_list ul li:hover:before{
    opacity: 1;
    transform: scale(1);
}
.suplier_list ul li:hover h4{
    color:#fff;
}

.suplier_list ul li span{
    width: 66px;
    height: 66px;
    border-radius: 3px;
    background: #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.suplier_list ul li:not(:last-child){
    margin-bottom: 15px;
}
.suplier_list ul li h4{
    color: #131313;
    font-family: var(--headingfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; 
}
.subli_logo{
  background: #FFF;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.10));
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.sub_bx {
    position: relative;
}
.sub_bx .line {
    position: absolute;
    left: 0;
    z-index: -1;
    animation: subani ease-in-out 1s;
}
.sub_bx .line:nth-child(1) {
    left: -214px;
    top: -50px;
    transform: rotate(-15deg);
}
.sub_bx .line:nth-child(2) {
    left: -274px;
    top: 44px;
}
.sub_bx .line:nth-child(3) {
    left: -274px;
    top: 114px;
}
.sub_bx .line:nth-child(4) {
    left: -274px;
    top: 125px;
}
.sub_bx .line:nth-child(5) {
    right: -203px;
    top: -40px;
    left: auto;
}

.sub_bx .line:nth-child(6) {
    right: -274px;
    top: 53px;
    left: auto;
}


.sub_bx .line:nth-child(7) {
    right: -216px;
    top: 151px;
    left: auto;
}
.sub_bx .line:nth-child(8) {
    right: -201px;
    top: 114px;
    left: auto;
}
.subli_btn_area{
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
a.all_btn.blnk_btn{
    color: #1E1E1E;
font-family: var(--headingfont);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
border-radius: 5px;
border: 1px solid #1E1E1E;
background: transparent;
padding: 17px 35px;
}
.subli_btn_area .all_btn{
    margin: 0px 7px;
}
a.all_btn.blnk_btn:hover{
    color:var(--redcolor);
}

.bnner_slider .slick-slide .bnner_txt h2{
    transform: translateY(-140px);
    opacity: 0;
    transition: all 1s ease-in-out;
}
.bnner_slider .slick-slide .bnner_txt p{
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease-in-out;
}
.bnner_slider .slick-slide .bnner_txt .all_btn{
    transform: translateY(140px);
    opacity: 0;
    transition: all 1s ease-in-out;
}



.bnner_slider .slick-slide.slick-current  .bnner_txt h2{
    transform: translateY(0px);
    opacity: 1;
}
.bnner_slider .slick-slide.slick-current .bnner_txt p{
    transform: translateY(0px);
    opacity: 1;
}
.bnner_slider .slick-slide.slick-current .bnner_txt .all_btn{
    transform: translateY(0px);
    opacity: 1;
}
.pt-50{
    padding-top: 50px;
}

/* product css */
.our_products_section{
  background: url(../images/product_bg.jpg)no-repeat center center / cover;
  background-attachment: fixed;
}
.title .font40{
    font-size: 40px;
    line-height: 42px;
    color:#fff;
}
.pro_lft p{
    color: #FFF;
    font-family: var(--headingfont);
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px; 
}
.product_box .text h4{
    color: #1E1E1E;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.product_box{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    padding: 15px;
}
.product_box .text{
    text-align: center;
}
.product_box .text h6 {
    background: #1E1E1E;
    color: #FFF;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px 0px;
}
.product_slider{
    margin: 0px -10px;
}
.product_slider .slick-slide{
    padding: 0px 10px;
}
.product_slider  .product_box p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.product_slider  .product_box figure{
    overflow: hidden;
}
.product_slider  .product_box figure img{
    transition: all 0.5s ease-in-out;
}
.product_slider  .product_box:hover figure img{
    transform: scale(1.05);
}
.product_slider .slick-dots li button{
    width: 10px;
    height: 10px;
    background: #8A6C62;
    border-radius: 50%;
}
.product_slider .slick-dots li.slick-active button{
    background: #fff;
}

.product_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
    padding-bottom: 30px;
}
.product_slider {
    margin-top: -175px;
}
.product_slider .slick-list {
    padding: 15px 0px;
}
.pdding-150{
    padding-bottom: 170px !important;
}
.pro_lft p{
 padding-right: 15px;

}
section.our_products_section {
    padding-bottom: 47px;
}
.our_products_section .title {
    margin-bottom: 17px;
}


/* one_stop css */

.one_stop_area h4{
    color: #1E1E1E;
    font-family: var(--headingfont);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.bg_lightgry{
    background: #F1EDED;

}
.one_stop_area h4{
    margin-bottom: 20px;
}
.one_stop_area:first-child{
    margin-top: 35px;
}
.one_stop_area:not(:last-child){
    margin-bottom: 30px;
}
.one_stop_area:nth-child(odd) .row{
    flex-direction: row-reverse;
}
.one_stop_area:nth-child(even) .row .content {
    padding-left: 25px;
}
.overlay1{
    position: absolute;
    left: 0;
    bottom:0;
    width: 402px;
    z-index: -1;
}
.overlay2{
    position: absolute;
    right: 0;
    bottom:0;
    width: 402px;
    z-index: -1;
}
.overlay1 img, .overlay2 img{
    width: 100%;
}
.one_stop_area figure {
    position: relative;
    z-index: 3;
}
.one_stop_building_section {
    z-index: 0;
}
/* material section css */
.material_tab_area .nav-tabs{
   border-bottom: 0px;
   justify-content: center;
}
.material_tab_area .nav-tabs .nav-link{
    border:0px;
    border-radius: 3px;
    border: 1px solid #1E1E1E;
    color: #1E1E1E;
    text-align: center;
    font-family: var(--headingfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
    margin: 0px 10px;
    min-width: 163px;
    transition: all 0.5s ease-in-out;
}
.material_tab_area .nav-tabs .nav-link:hover{
    background: var(--redcolor);
    color:#fff;
    border: 1px solid var(--redcolor);
}
.material_tab_area .nav-tabs .nav-link.active{
    border-radius: 3px;
    background: var(--redcolor);
    color: #FFF;
    border: 1px solid var(--redcolor);
} 
.material_tab_area .material_slider{
    margin-top: 140px;
}
.prev_arrow.slick-arrow i {
    color: #000;
    font-size: 36px;
}
.prev_arrow.slick-arrow {
    width: 46px;
    height: 46px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 17px;
}
.next_arrow.slick-arrow i {
    color: #000;
    font-size: 36px;
}
.next_arrow.slick-arrow {
    width: 46px;
    height: 46px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    right: 17px;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mater_inform h5{
    display: flex;
    align-items: center;
    color: #1E1E1E;
    font-family: var(--headingfont);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.mater_inform h5 img{
    margin-right: 10px;
}
.mater_inform{
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 50%;
    right: 21px;
    transform: translateY(-50%);
    padding: 20px 20px;
    max-width: 350px;
}
.material_tab_area .tab-pane{
    position: relative;
}
.mater_inform p{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.mater_inform ul {
    padding-left: 20px;
}
.mater_inform ul li{
    color: #1E1E1E;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style: disc;
}
.mater_inform ul li:not(:last-child){
    margin-bottom: 10px;
}
.register_btn{
   
    justify-content: center;
    border-radius: 3px;
    border: 1px solid #BE0B00;
    padding: 12px 25px;
    color: #1E1E1E;
    font-family: var(--headingfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
   margin-top: 20px;
   width: auto;
}
.register_btn img{
    margin-left: 10px;
}
.register_btn:hover{
    background: #BE0B00;
    color:#fff;
}
.material_slider .slick-dots {
    top: -100px;
    bottom: auto;
}
.material_slider .slick-dots li button{
    border-radius: 50%;
    background: #000;
    width: 15px;
    height: 15px;
    position: relative;
}

.material_slider .slick-dots li.slick-active button{
    background: #fff;
}
.material_slider .slick-dots li button:after{
  position: absolute;
  left: -10px;
  top: -10px;
  width: 35px;
  height: 35px;
  background: transparent;
  content: "";
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease-in-out;

}
.material_slider .slick-dots li.slick-active  button:after{
    background: var(--redcolor);
}
.material_slider .slick-dots li button:before{
    font-family: var(--poppinsfont);
}
.material_slider .slick-dots li{
    margin: 0px 81px;
    position: relative;
}
.material_slider .slick-dots li:nth-child(1) button::before {
    content: "Install App" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}

.material_slider .slick-dots li:nth-child(2) button::before {
    content: "Register" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}
.material_slider .slick-dots li:nth-child(3) button::before {
    content: "Request Quotation" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}
.material_slider .slick-dots li:nth-child(4) button::before {
    content: "Place Order" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}
.material_slider .slick-dots li:nth-child(5) button::before {
    content: "Payment" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}
.material_slider .slick-dots li:nth-child(6) button::before {
    content: "Get Delivery to Site" !important;
    opacity: 1;
    color: #1E1E1E;
    text-align: center;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    bottom: -37px;
    top: auto;
    left: -67px;
}
.material_slider .slick-dots li:not(:last-child):after {
    width: 182px;
    height: 2px;
    background: #000;
    content: "";
    position: absolute;
    top: 8px;
    transform: translateY(-50%);
    z-index: -2;
}
.material_tab_area .tab-content>.tab-pane{
    display: block;
  height: 0;
  overflow: hidden;
}
.material_tab_area .tab-content>.active{
    height: auto;
}
.material_slider.slick-dotted.slick-slider{
    margin-bottom: 0px;
}
.text-center{
    text-align: center;
}
.pt-100{
    padding-top: 100px;
}
.mate_cateroy_list ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.mate_cateroy_list ul li {
    margin: 0px 9px;
}
.mate_cateroy_list ul li span{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border:1px dotted #898989;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index:0;
}

.mate_cateroy_list ul li{
    position: relative;
}
.mate_cateroy_list ul li a:hover p{
  color:var(--redcolor);
}
.mate_cateroy_list ul li p {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #4B4B4B;
text-align: center;
font-family: var(--poppinsfont);
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
width: 100%;
}
.mate_cateroy_list ul li span:after{
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #F1EDED;
    content: "";
    z-index: -1;
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.5s ease-in-out;
    border-radius: 50%;
}

.mate_cateroy_list ul li:hover span:after{
    opacity: 1;
    transform: scale(1);
}
.pb-45{
    padding-bottom: 45px;
}

.mate_cateroy_list ul li span img{
    transition: all 0.5s ease-in-out;
}
.mate_cateroy_list ul li span:hover img {
    transform: scale(1.05);
}
.mat_146{
    margin-bottom: 146px;
}



/* happy_user_section css */
.happy_user_section{
    background: #F1EDED url(../images/testimonial_bg.png)no-repeat center center / cover;
}
.title.white h3{
    color:#fff;
}
.title.white p{
    color:#fff;
}
.testi_pc{
    width: 134px;
    height: 134px;
    border-radius: 50%;
    border:10px solid #B06F3F;
}
.testi_pc img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.testi_box .text{
    width: calc(100% - 134px);
    padding-left: 30px;
}
.testi_box .text p{
    color: #FFF;   
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; 
}
.testi_box .text h5{
    color: #FFF;
    
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.happy_slider{
    margin: 0px -30px;
    margin-top: 60px;
}
.happy_slider .slick-slide{
    padding: 0px 15px;
}
.happy_slider .slick-slide.slick-current .testi_box{
    border-right: 1px solid #C0B0B0;
}
.testi_box .text ul{
    display: flex;
    align-items: center;
}
.testi_box .text ul li{
    color: #FFF;
    font-family: var(--poppinsfont);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    line-height: 12px;
}
.testi_box .text ul li:not(:last-child){
    border-right: 1px solid #fff;
}
.happy_user_section{
    position: relative;
    z-index: 0;
}
.icn_overlay{
    position: absolute;
    top:37%;
    width: 100%;
    left: 0px;
    height: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: -1;
}
.testi_box{
    padding: 0px 30px;
}
.testi_box .text ul li:first-child{
    padding-left: 0px;
}
.requiremnt_form{
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    padding: 14px 25px 25px 25px;
}
.requiremnt_form input[type="text"], .requiremnt_form input[type="tel"],.requiremnt_form input[type="number"], .requiremnt_form input[type="email"], .requiremnt_form  textarea, .requiremnt_form input[type="password"], .requiremnt_form input[type="date"]{
    border-radius: 2px;
    background: #E9E9E9;
    height: 50px;
    border:0px;
    /* padding: 10px; */
    width: 100%;
    padding: 10px 25px 10px 10px;
}
.requiremnt_form input[type="date"]::-webkit-calendar-picker-indicator {
    width: 100% !important;
  }
.requiremnt_form  textarea{
    height: 100px;
}
.requiremnt_form select{
    height: 50px;
    border:0px;
    padding: 10px;
    border-radius: 2px;
}
.send_otp{
    border-radius: 3px;
    background: #1E1E1E;
    height: 50px;
    color: #FFF;
font-family: var(--headingfont);
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: normal;
display: flex;
align-items: center;
justify-content: center;
}
.requiremnt_form .row{
    margin: 0px -7px;
}
.requiremnt_form .row .re_bx{
    padding: 0px 7px;
}
.requiremnt_form input::placeholder, .requiremnt_form input::-webkit-input-placeholder{
    color: #1E1E1E !important;
}
.requiremnt_form input[type="text"]::placeholder, .requiremnt_form input[type="tel"]::placeholder, .requiremnt_form input[type="email"]::placeholder, .requiremnt_form input[type="number"]::placeholder, .requiremnt_form input[type="password"]::placeholder, .requiremnt_form input[type="password"]::placeholder{
    color: #1E1E1E !important;
    font-family:var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
}
.requiremnt_form input[type="radio"]{
    accent-color: #f00;
    transform: scale(1.1);
}

.requiremnt_form input[type="submit"]{
    width: 100%;
    background: var(--redcolor);
    color: #FFF;
font-family: var(--headingfont);
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
height: 55px;
}
.requiremnt_form input[type="submit"]:hover{
    background: var(--blackcolor);
    color:#fff;
}
.requiremnt_form h5{
    color: #1E1E1E;
    
    font-family: var(--headingfont);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    
}
.requiremnt_form p{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}
.requimnt_bx_right figure{
    background: #FFF;
   position: relative;
    padding: 15px;
}
.requirement_section{
    position: relative;
}
.requirement_section .bg_img{
    position: absolute;
    top:0px;
    width: 100%;
    height: 471px;
    left: 0;
    z-index: -1;
}
.requirement_section .bg_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.partner_slider{
    margin: 0px -7px;
}
.requirement_section .slick-slide{
    padding: 0px 7px;
}
a.play_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: auto;
    display: table;
}
/* footer css */
.up_footer{
    padding: 70px 0px;
    border-top: 5px solid #8D8D8D;
    position: relative;
}
.up_footer:before{
    position: absolute;
    left: 0;
    top:-5px;
    content:"";
    background: var(--redcolor);
    height: 5px;
    width: 50%;
}
.footer_section{
    background: rgba(0,0,0,0.9) url(../images/footer_bg.png)no-repeat center center / cover;
}
.socail_media_icons ul{
    display: flex;
    align-items: center;
}
.socail_media_icons ul li:not(:last-child){
    margin-right: 16px;
}
.socail_media_icons{
    margin-top: 16px;
}
.read_more{
    color: #BE0B00;
    
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}
.read_more:hover{
    color:#fff;
}
.logo_holder{
    margin-bottom: 40px;
}
.up_footer p{
    color: #FFF;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.ft_quick_links ul li:not(:last-child){
    margin-bottom: 20px;
}

.ft_quick_links ul li{
    color: #FFF;
font-family: var(--poppinsfont);
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
position: relative;
padding-left: 30px;
line-height: 26px;
}
.ft_quick_links ul li a{
    color:#fff;
}
.ft_quick_links ul li span {
    position: absolute;
    left: 0;
    top: 0px;
}
.ft_quick_links ul li a:hover{
    color:var(--redcolor);
}
.ft_quick_links ul li strong {
    margin-right: 5px;
    font-weight: 600;
}
.up_footer h4{
    color: #FFF;
font-family: var(--poppinsfont);
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-bottom: 30px;
}
.up_footer .ft_menu ul li a{
    color: #FFF;

font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.up_footer .ft_menu ul li:not(:last-child){
    margin-bottom: 7px;
}
.up_footer .ft_menu ul li a:hover{
    color:var(--redcolor);
}
.copyright_area{
    background: #050505;
    text-align: center;
    padding: 10px 0px;
}
.copyright_area p a{
    color:var(--redcolor);
}
.copyright_area p a:hover{
    color:#fff;
}

@keyframes subani {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100%;
    }
}
.pro_lft .title h3{
    text-align: left;
}
.socail_media_icons ul li a:hover {
    transform: scale(1.05);
}

/* inner page css */
.pro_box{
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 20px;
}
.pro_box .content{
    text-align: center;
    padding: 20px 0px 0px;
}
.pro_box .content h5{
    color: #1E1E1E;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.pro_box .content p{
    color: #4B4B4B;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    min-height: 42px;
}
.pro_box .content h6{
    color: #4B4B4B;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.book_btn{
    border-radius: 5px;
    background: var(--redcolor);
    width: 49%;
    color: #FFF;
    font-family: var(--headingfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12px 25px;
    border:1px solid var(--redcolor);
}
.book_btn:hover{
    background: var(--blackcolor);
    color:#fff;
    border:1px solid var(--blackcolor);
}
.btn_area_pro {
    margin-top: 20px;
}
a.detils_blck_btn{
    border-radius: 5px;
    background: #fff;
    width: 49%;
    color: #1E1E1E;
    font-family: var(--headingfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12px 16px;
    border:1px solid var(--blackcolor);
}
a.detils_blck_btn:hover{
    background: var(--blackcolor);
    color:#fff;
    border:1px solid var(--blackcolor);
}

.checkbox_area ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.checkbox_area ul li{
    width: 33%;
}
.checkbox_area ul li label {
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 30px;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
}
.checkbox_area ul li label:before {
    border-radius: 2px;
    border: 1px solid #B8B8B8;
    background: #FFF;
    content: "";
    width: 21px;
    height: 21px;
    position: absolute;
    left: 0;
}

.checkbox_area ul li input[type="checkbox"]{
    display: none;
}

.checkbox_area ul li label:after{
    position: absolute;
    left: 0;
    top: 0px;
    background: #BE0B00 url(../images/check-mark.png)no-repeat center center / 13px;
    content: "";
    width: 20px;
    height: 20px;
    opacity: 0;
    
}

.checkbox_area ul li input[type="checkbox"]:checked +  label:after{
    opacity: 1;
}

.details_pg_area .col-md-6.detls_bx figure {
    margin-right: -140px;
}

.details_pg_area .requiremnt_form{
    /* margin-top: 50px; */
    position: relative;
}
.relatie_product_slider .slick-list {
    padding: 10px 0px 25px;
}
.relatie_product_slider{
  margin: 0px -15px;
}
.relatie_product_slider .slick-slide{
    padding: 0px 15px;
}
.title.text-left h3 {
    text-align: left;
}
.related_product_section .slick-dots li{
    width: auto;
    height: auto;
    margin: 0px 8px;
}
.related_product_section .slick-dots li button{
    background: #CACACA;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}
.related_product_section .slick-dots li button:before{
    display: none;
}
.related_product_section .slick-dots li.slick-active button{
  background: #1E1E1E;
}
.pro_box figure{
    overflow: hidden;
}
.pro_box figure img{
    transition: all 0.5s ease-in-out;
}
.pro_box:hover figure img{
    transform: scale(1.05);
}

.navbar-toggler span
{
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  
  background: #fff;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
.navbar-toggler span:last-child{
    margin-bottom: 0px;
}

.details_pg_area .detls_bx figure {
    margin-right: -174px;
    position: relative;

}
.details_pg_form_area  .detls_bx{
    position: relative;
}
.contpg .details_pg_area .detls_bx figure{
    height: 100%;
}
.details_pg_area .detls_bx figure:after{
  position: absolute;
  top:0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  left: 0;
  content:"";
}



.details_pg_form_area{
    position: relative;
}
.details_pg_form_area .text{
    position: absolute;
    top: 0;
    padding: 30px 30px;
    color: #fff;
    left: 0;
}
.details_pg_form_area .text h4{
    margin-bottom: 30px;
}
.contpg .details_pg_form_area .detls_bx:first-child{
    position: relative;
    
}
.details_pg_form_area{
    margin-top: 50px;
}
.details_pg_txt{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.details_pg_form_area .text ul {
    padding-left: 10px;
}
.details_pg_form_area .text ul li {
    padding-left: 0;
    list-style: disc;
}
.details_pg_form_area .text ul li a{
    color:#fff;
}
.details_pg_form_area .text ul li a:hover{
    color:var(--redcolor);
}
.details_pg_form_area .text ul li:not(:last-child){
    margin-bottom: 20px;
}
.details_pg_form_area .text ul li address{
    margin-bottom: 0px;
}
.contpg .requiremnt_form{
    padding-top: 15px;
    margin-top: 50px;
    position: relative;
    margin-left: -80px;
    margin-bottom: 50px;
}
.btn_area_pro .book_btn, .btn_area_pro a.detils_blck_btn{
    font-size: 16px;
    padding: 8px 10px;
}

.max-800{
    max-width: 800px;
    margin: 0 auto 40px;
}
.breadcamb{
    padding: 15px 0px;
    background: #EEEEEE;
}
.breadcrumb li a{
    color:#1E1E1E;
}
.breadcrumb li a:hover{
    color:var(--redcolor);
}
.breadcrumb li.breadcrumb-item.active{
    font-weight: 600;
}

.map_area{
    margin-top: 20px;
}
.map_area iframe{
    height: 350px;
    width: 100%;
}
.contpg .details_pg_form_area .detls_bx:first-child .text{
    background: url(../images/contactpc.jpg)no-repeat center center / cover;
    position: relative;
    z-index: 0;
    padding: 30px 60px 30px 30px;
    height: 100%;
}
.contpg .details_pg_form_area .detls_bx:first-child .text:after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0,0,0,0.7);
    left: 0;
    top:0;
    z-index: -1;
}
.contpg  .details_pg_form_area .text ul li{
    display: flex;
}
.contpg .details_pg_form_area .text ul li i img {
    width: 19px;
}
.contpg  .details_pg_form_area .text ul li i {
    margin-right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--redcolor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contpg  .details_pg_form_area .text ul li .txt{
    width:calc(100% - 40px);
    
} 
.innr_product_section{
    padding: 40px 0px;
}
section.related_product_section{
    padding-bottom: 40px;

}

a.all_btn.black_btn {
    background: var(--blackcolor);
    color: #fff;
}
a.all_btn.black_btn:hover{
    background: var(--redcolor);
}

.matreial_overly_1 {
    
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.matreial_overly_2{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.happy_user_section .title p{
    color: #1E1E1E;
    text-align: center;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    line-height: 30px;
}
.testi_box .text h5{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
} 
.testi_box .text h6{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.testi_box .text p{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
}
.experenece_section  h3{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 39.8px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.experenece_section p{
    color: #1E1E1E;
    font-family: var(--poppinsfont);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.count_box  span.cunt_icon {
    width: 60px;
}
.count_box .txt{
    width:calc(100% - 60px);

}
.count_box .txt h3{
    color: var(--redcolor);
    font-family: var(--poppinsfont);
    font-size: 25.313px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;

}
.experenece_section  .ex_bx:not(:last-child) .count_box{
  border-right:1px solid #E9E3E3;
}
.experenece_section .row{
    justify-content: center;
}
.meterial_icon1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.meterial_icon2{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.mega-img{
    height: 230px !important;
    margin: 0;
}
/* customer form start */
.breadcamb.inner-breadcrumb {
    padding: 15px 0;
    background: #EEEEEE;
}
.breadcamb.inner-breadcrumb .breadcrumb{
    margin: 0;
}
.details_pg_area.customer_quotation .detls_bx figure::after{
    display: none;
}
.details_pg_area.customer_quotation .details_pg_form_area .text{
    color: #1E1E1E;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    margin-left: 23px;
    text-align: justify;
}
.check_area  input[type="checkbox"] {
    display: none;

}
.check_area label{
    position: relative;
}
.check_area label::before{
    border-radius: 2px;
  border: 1px solid #B8B8B8;
  background: #FFF;
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
}
.check_area label::after{
    position: absolute;
  left: 0;
  top: 0px;
  background: #BE0B00 url(../images/check-mark.png)no-repeat center center / 13px;
  content: "";
  width: 20px;
  height: 20px;
  opacity: 0;
}
.check_area input:checked ~ label::after{
    opacity: 1;
}
.details_pg_area.customer_quotation .frm_bx .d-flex input[type="number"]{
    width: 65%;
}
.details_pg_area.customer_quotation .frm_bx .d-flex select{
    width: 35%;
}
.requiremnt_form select.norm_color{
    background: #E9E9E9;
}
/* customer form end */
.details_pg_area.contpg .title p{
    width: 70%;
    margin: 0 auto;
}
.megamenu_content.notmegamenu{
    width: 335px;
    left: 50%;
    transform: translate(-50%, -70px);
}
.navbar-nav > li:hover .megamenu_content.notmegamenu{
    transform: translate(-50%, 0);
}
.megamenu_content.notmegamenu::before{
    left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}
.txt.counter_hldr .counter , .txt.counter_hldr{
    display: inline-block;
    color: var(--redcolor);
  font-family: var(--poppinsfont);
  font-size: 25.313px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
}
/* customer registration form start */
.detail_text p{
    color: #1E1E1E;
font-family: Raleway;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 42px; 
text-align: justify;
}
.detail_text{
    padding-right: 30px;
}
.frm_bx.radio_list_bx{
    padding: 15px;
    background: #E9E9E9;
}
.frm_bx.radio_list_bx h6, .frm_radio_list li label, .re_bx h6, .terms_cndtn{
    color: #1E1E1E !important;
  font-family: var(--poppinsfont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
}
.frm_radio_list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.frm_radio_list li label{
    margin-left: 5px;
    margin-bottom: 0;
}

/* customer registration form end */
.details_pg_area.customer_registration_form{
    background: url(../images/customer_reg_bg.png) no-repeat left bottom;
    background-size: contain;
}
.details_pg_area.supplier_registration_form{
    background: url(../images/supplier_reg_bg.png) no-repeat left bottom;
    background-size: contain;
}
.breadcrumb{
    margin: 0;
}
.add_more{
    color: #BE0B00;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.re_bx p{
    color: #1E1E1E;
font-family: Poppins;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
/* additional changes in css */
.pro_lst span{
    display: none;
} 
.otpModal .requiremnt_form{
    padding: 25px;
}
.otpModal .modal-body{
    padding: 0;
    position: relative;
}
.otpModal .modal-body .btn-close{
    position: absolute;
    top: 5px;
    right: 5px;
}
.otpModal .modal-body .btn-close:hover{
    background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
}
input:disabled{
    pointer-events: none;
    background: #b6b6b6 !important;
}
/* multiselect style start */
.SumoSelect{
    width: 100%;
}
.SumoSelect > .CaptionCont {
    position: relative;
    border: 0;
    min-height: 14px;
    background-color: #fff;
    border-radius: 2px;
    margin: 0;
    padding: 0;
    height: 50px;
  }
  .SumoSelect > .CaptionCont > span{
    height: 100%;
    padding-top: 10px;
    padding-left: 15px;
    background: #E9E9E9;
    color: #1E1E1E;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
  }
  .SumoSelect > .CaptionCont > span.placeholder{
    color: #1E1E1E !important;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal !important;
    font-weight: 400;
    line-height: normal; 
    opacity: 1;
  }
  /* faq section 29.9.23*/
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(.7) !important;
    transition: 0.5s;
  }
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transition: 0.5s;
}
  .accordion .button:hover, button:hover, input[type="submit"]:hover{
    background:#EEEEEE;
    color: #000000;
}
.accordion-item {
    color: #000;
    background-color: #fff;
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item {
    color: rgb(0, 0, 0);
   margin-bottom: 20px;
    border: none;
}
.accordion p:last-child {
    margin-bottom: 0;
    padding: 30px;
}
.accordion .accordion-item button.accordion-button{
    border-left: 5px solid #BE0B00;
    box-shadow: 0 0 19px -9px;
    border-top: none;
    border-right: none;
    border-bottom: none;
}
.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #EEEEEE;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.faq_main .faq_heading{
    font-size: 30px;
    font-weight: 700;
    color: #1E1E1E;
    text-align: center;

}
.accordion-item .accordion-button {
    border-radius:7px
   
}
.accordion .card-body{
    box-shadow: 0 0 19px -9px;
}
.accordion {
    --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: var(--bs-body-bg);
    --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    /* --bs-accordion-border-color: var(--bs-border-color); */
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--bs-primary-text-emphasis);
    --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
/* multiselect style end */

/* log-in page */
/* log in page start */
.site-main.log_in {
    padding: 0;
    height: 100vh;
  }
  
  .log_in {
    height: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 2;
    
  }
  .log_in::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: url('../images/login-back-2.jpg') no-repeat center left / cover;
  }
  .log_in::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    left: 0px;
    bottom: 0;
    z-index: -1;
    background: url('../images/login-back-1.jpg') no-repeat center right / cover;
  }
  .log_in_hldr {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 12px 12px 24px #ded9f7, -12px -12px 24px #ece7ff;
  }
  .inner_lg_in {
    padding: 30px 50px;
    text-align: center;
    background: #fff;
  }
  
  .log_in_logo {
    display: block;
    margin: 0 0 15px 0;
  }
  
  .log_in_logo img {
    width: 100px;
  }
  
  .crt_nw_acc {
    color: #7e7e7e;
  }
  
  .log_in_frm {
    margin: 50px 0 0 0;
  }
  
  .log_in_frm h6 {
    font-size: 14px;
    line-height: 1.5;
    color: #3d3b47;
    margin-bottom: 8px;
  }
  
  .log_in_frm input {
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.2);
  }
  
  .log_in_frm input::placeholder {
    color: #cfcfcf;
  }
  
  .log_in_frm input:focus {
    box-shadow: none;
    border: 1px solid #696969;
  }
  
  .log_in_frm .eye {
    position: relative;
/* margin-bottom: 33px; */
  }
  
  .log_in_frm .eye i {
    position: absolute;
    top: 12px;
    right: 15px;
  }
  .log_in_frm .eye a {
    position: absolute;
    color: var(--deepblue);
    font-size: 12px;
    top: -30px;
    right: 0;
  }
  /* .log_in_frm .eye #password-error {
    position: absolute;
    bottom: 29px;
    left: 18%;
    font-size: 14px;
    transform: translate(-50%,0);
} */
  .log_in_frm input[type="submit"] {
    /* margin-top: 15px; */
    border: none;
    background: #2666fa;
    color: #fff;
  }
  
  .log_in_frm input[type="submit"]:hover {
    background: #18409e;
  }
  .inner_lg_in p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    position: relative;
    color: #616161;
    margin: 40px 0;
  }
  .inner_lg_in p span {
    background: #fff;
    display: inline-block;
    z-index: 1;
    position: relative;
    padding: 0 5px;
  }
  .inner_lg_in p:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #bdbdbd;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .google_sign_in {
    display: inline-block;
    background: #fff;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    width: 100%;
    box-shadow: 0 2px 10px -3px rgb(0, 0, 0, 0.3);
  }
  .google_sign_in span {
    color: #616161;
  }
  .google_sign_in:hover {
    color: #fff;
  }
  .google_sign_in img {
    padding: 10px;
    background: #fff;
    vertical-align: middle;
  }
  .google_sign_in span {
    vertical-align: middle;
  }
  .log_in_img {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:url(../images/login-img-new.jpg) no-repeat center center / cover;
    flex-direction: column;
  }
  .log_in_img::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 45%);
    top: 0;
    left: 0;
  } 
  .log_in_img h3 {
    color: #fff;
    margin-top: 30px;
    font-size: 28px;
    font-weight: 800;
    position: relative;
  }
  .log_in_img figure img {
    max-width: 300px;
  }
  .inner_lg_in p.sign_up {
    font-size: 12px;
    margin: 30px 0 0 0;
  }
  .inner_lg_in p.sign_up::before {
    display: none;
  }
  .log_in_hldr.full-width{
    max-width: 100%;
  }
  .requiremnt_form.full-height{
    height: 98vh;
    overflow: auto;
  }
  .discount_icn{
    display: none;
  }
  .testi_pc{
    display: none;
  }
/* floting */
.floating-icons-hldr {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 20px;
}
.floating-icons-hldr .green a {
    background: #218529;
    padding: 8px;
    border-radius: 50%;
}
.floating-icons-hldr .green a .icon {
    background: #218529;
   
}
.floating-icons-hldr .zmdi-whatsapp:before {
    content: '\f405';
    color: #fff;
    height: 20px;
    font-size: 30px;
}
.floating-icons-hldr .my-float{
    margin-top: 4px;
    margin-left: 4px;
}
/* select 2 20-10-2023*/


.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    padding: 16px 0;
    border: 0 !important;
    box-shadow: none;
    color: #1E1E1E;
    -webkit-appearance: textfield;
  }
  .select2-container .select2-selection--multiple {
    border: 0 !important;
  }
  .select2-container--default .select2-search--inline .select2-search__field::placeholder{
    color: #1E1E1E;
    opacity: 1;
  }
  .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder{
    color: #1E1E1E;
    opacity: 1;
  }
  .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder{
    color: #1E1E1E;
    opacity: 1;
  }
  
  /* select 2 checkbox  */
  .select2-results__options .select2-results__option{
    position: relative;
    padding-left: 40px;
  }
  .select2-results__options .select2-results__option::before {
  position: absolute;
  content: "";
  left: 4px;
  top: 6px;
  width: 20px;
  height: 20px;
  background: #eee;
  border-radius: 3px;
  }
  .select2-results__options .select2-results__option.select2-results__option--selected::before{
  background: #f00 url(../images/check-mark.png) no-repeat center center / 15px;
  height: 20px;
  width: 20px;
  color: #000;
  }
  .select2-selection .select2-selection--multiple{
    height: 43px;
    display: flex;
    align-items: center;
  }
  
  .select2-search__field{
    width: 100%;
    padding: 6px 3px !important;
    height: 32px !important;
  }
  .form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 43px;
  }
  .select2-container--default .select2-selection--multiple {
    background-color: #E9E9E9;
    border: 0;
    border-radius: 4px;
    cursor: text;
    padding-left: 4px;
    padding-bottom: 12px;
    position: relative;
}
.frm_bx .select2-container {
    height: 52px;
    overflow-x: hidden;
}
.second-form i{
    position: absolute;
    right: 50px;
    z-index: 22;
    top: 188px;
}
.zmdi-chevron-down:before {
    content: '\f2f9';
    font-size: 25px;
}
.selection{
    width: 100% !important;
}
/* 30-10-2023 */
.requiremnt_form .re_bx .frm_bx .g-recaptcha > div > div iframe{
    transform: scale(0.96) !important;
    transform-origin: left top;
}
label.error {
    color: #e50d0d;
    font-size: 14px;
    text-align: left;
    display: block;
}
/* 21.11.23 */
label#email_phone-error {
    position: absolute;
    bottom: -28px;
    left: 0;
    font-size: 12px;
}
input.form-control.error-box {
    border: 1.8px solid #e50d0d;
}
select.error-box{
    border: 1.8px solid #e50d0d;
}
/* 30.11.23 */
/* #otpModalPhone .modal-body .btn-closes {
	float: right;
	background-color: #ff0000;
	padding: 2px 8px;
}
  #otpModalPhone #verfiy_phone_number {
	background-color: #7d241e;
	padding: 6px 24px;
	border-radius: 4px;
    color: #fff;
}
#otpModalPhone #verfiy_phone_number:hover {
	background-color: transparent;
	padding: 6px 24px;
    border: 1px solid #7d241e;
	border-radius: 4px;
    color: #7d241e;
} */
.tooltip{
	position: absolute;
	background: #D7E3F9;
	color: #4C4C80;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	border-top-left-radius: 0;
	z-index: 300;
	font-size: 1.2rem;
	line-height: 1.5rem;
	border: 1px solid #A3B7DC;
	box-shadow: 1px 2px 8px rgba(0,0,100,0.2);
	opacity: 0;
	transition-duration: 0.2s;
	transition-property: opacity;
}
/* 8.12.23 */
.is_tooltip{
    position: relative;
}
.qusn_img {
    position: absolute;
    right: 7px;
    top: 13px;
    cursor: pointer;
}

.is_tooltip .tooltip_txt {
    visibility: hidden;
    position: absolute;
    top: 55px;
    right: 0;
    transition: 0.3s;
    border-radius: 10px;
    transition: 0.3s;
}
.is_tooltip .tooltip_txt::before {
	position: absolute;
	content: "";
	width: 6px;
	height: 9px !important;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 10px solid #000;
	right: 15px;
	top: -10px;
    transition: 0.3s;
    opacity: 0;
}
.qusn_img:hover ~ .tooltip_txt::before{
opacity: 1;
}
.qusn_img:hover ~ .tooltip_txt {
    visibility: visible;
    background-color: #000;
    padding: 7px;
    transition: 0.3s;
    position: absolute;
    z-index: 1;
}
.tooltip_txt p{
    color: #fff;
    margin-bottom: 5px;
    font-size: 13px;
}
.login_typ li:not(:last-child){
    margin-right: 15px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
#termsAndconditionsModal .modal-dialog{
    min-width: 1100px !important;
}

.frm_bx .select2-container {
    height: 52px;
    overflow-x: hidden;
}
.registration_logo{
    width: 150px;
    /* margin-bottom: 15px; */
    position: relative;
    z-index: 1;
    background: #fffffff1;
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}
.registration_logo img{
    width: 100%;
}
.bck_hme{
    color: var(--redcolor);
}
.bck_hme:hover{
    color: var(--blackcolor);
}


/* #termsAndconditionsModal .modal-content{
    background: #f2dbd9;
} */
/* responsive */
@media (min-width:1440px){
    .banner_section figure {
        height: 550px;
    }
}
@media (max-width:1700px) {
    .overlay1{
        width: 202px;
    }
    .overlay2 {
        width: 350px;
    }
    .all_btn{
        min-width: 190px;
        padding: 16px 29px;
        font-size: 17px;
    }
    a.all_btn.blnk_btn{
        padding: 13px 35px;
    }
    .inner_hdr {
        padding-left: 109px;
    }
    
}
@media (max-width:1600px) {
    .icn_overlay {
        left: 0;
        width: 100%;
    }
    .top_hdr:before {
        width: 155px;
        clip-path: polygon(0 0, 83% 1%, 100% 100%, 0% 100%);
    }   

    .icn_overlay{

        top: 33%;

    }
    .matreial_overly_1{
        width: 250px;
    }
    .matreial_overly_2{
        width: 250px;
    }
    .meterial_icon1{
        width: 196px;
    }
    .meterial_icon2{
        width: 306px;
    }

}
@media(max-width:1400px) {
    .requiremnt_form .re_bx .frm_bx .g-recaptcha > div > div iframe{
        transform: scale(0.8) !important;
        transform-origin: left top;
    }
}

@media (max-width:1300px) {
    .top_hdr:before {
        width: 171px;
    }
    .login_dropdwn_menu{
        width: 191px;
        left: -55px;
    }
}

@media (max-width:1199px) {
    .hdr_frm label{
        font-size: 13px;
    }
    .navbar-nav>li>a{
        font-size: 14px;
    }
    .navbar-nav>li:not(:last-child) {
        margin-right: 15px;
    }
    .quick_link ul li a{
        font-size: 14px;
    }
    .quick_link ul li {
        padding-left: 8px;
    }
    .bnner_txt h2 {
        font-size: 34px;
        line-height: 40px;
    }
    .bnner_txt p{
        font-size: 16px;
    }
    .bnner_form input[type="submit"]{
        background: var(--redcolor) url(../images/search.png)no-repeat left 40px center / 20px;
    }
    .register_btn{
        font-size: 14px;
        margin-top: 8px;
        padding: 11px 25px;
    }
    .mater_inform h5{
        font-size: 22px;
    }
    .mater_inform ul li:not(:last-child){
        margin-bottom: 2px;
    }
    .mate_cateroy_list ul li {
        margin: 0px 9px;
    }
    .mate_cateroy_list ul li span {
        width: 70px;
        height: 70px;
    }
    .mate_cateroy_list ul li p{
        font-size: 13px;
    }
    .testi_pc {
        width: 117px;
        height: 117px;
    }
    .testi_box .text{
        width: calc(100% - 117px);
    }
    .partner_slider{
        margin: 0px -10px;
    }
    .partner_slider .slick-slide{
        padding: 0px 10px;
    }
    .product_box .text h4{
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .title h3{
        font-size: 39px;
    }
    .testi_box .text p{
        font-size: 15px;
        line-height: 25px;
    }
    .top_hdr:before {
        width: 128px;
    }
    .login_hdr span{
        font-size: 14px;
    }
    .quick_link ul li:not(:last-child) {
        margin-right: 11px;
    }
    .hdr_frm{
        max-width: 333px;
    }
    .login_dropdwn_menu .login_btn, .login_dropdwn_menu .regi_btn{
        padding: 15px 25px;
    }
    .hdr_frm .seach_label{
        width: 122px;
      }
      .frm_box {
        width: calc(100% - 172px);
    }
    .megamenu_content {
        top: 73px;
        left: -217px;
        width: 848px;
    }
    .material_slider .slick-dots li{
        margin: 0px 66px;
    }
    .material_slider .slick-dots li:not(:last-child):after {
        width: 152px;
    }
    .btm_menu{
        padding: 10px 0;
    }
    .requiremnt_form .re_bx .frm_bx .g-recaptcha > div > div iframe{
        transform: scale(0.68) !important;
        transform-origin: left top;
    }
    #termsAndconditionsModal .modal-dialog{
        min-width: 100% !important;
    }
}

@media (max-width:991px) {
    /* 26.12.23 */
    .log_in_img h3 {
        color: #fff;
        margin-top: 100px;
        font-size: 28px;
        font-weight: 800;
        position: relative;
    }
        .site-main.log_in {
            padding: 0;
            /* / height: 100vh; / */
        }
        .log_in_img {
            position: relative;
            top: 0;
            left: 0;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url(../images/login-img-new.jpg) no-repeat center center / cover;
            flex-direction: column;
        }
        /* mobile menu  */
        .offcanvas-header {
            position: absolute;
            top: 10px;
            right: 10px;
            border: 1px solid #000;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .offcanvas-header .btn-close {
            background: none;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }
        .mobile-offcanvas {
            visibility: hidden;
            transform: translateX(-100%);
            border-radius: 0;
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 75%;
            z-index: 1200;
            overflow-y: scroll;
            overflow-x: hidden;
            transition: visibility .3s ease-in-out, transform .3s ease-in-out;
            background: #fff;
            padding-top: 40px;
        }
        .mobile-offcanvas.show {
            visibility: visible;
            transform: translateX(0);
        }
        .mobile-offcanvas .container,
        .mobile-offcanvas .container-fluid {
            display: block;
        }
        .navbar-nav>li>a {
            padding: 15px 0;
            line-height: 1;
            border-bottom: 1px solid #ece4e4;
            display: block;
        }
        .navbar-toggler {
            display: block;
            padding: 7px;
            background: var(--redcolor);
            transition: .4s all ease-in-out;
            line-height: 0;
        }
        .navbar-toggler img {
            width: 40px;
        }
        /* mobile menu end */
        .submenuarrow {
            font-size: 15px;
            cursor: pointer;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translate(0, -50%);
          }
    .navbar-nav > li > a {
        padding: 15px 0;
        line-height: 1;
        border-bottom: 1px solid #ece4e4;
        display: block;
      }
      .navbar-nav > li{
        padding: 0 15px;
      }
    .middle_hdr .navbar-nav{
        display: none;
    }
    .inner_hdr {
        flex-wrap: wrap;
    }
    .banner_section figure{
        height: 380px;
    }
    .banner_section figure img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .bnner_txt h2 {
        font-size: 29px;
        line-height: 33px;
    }
    .bnner_form input[type="submit"] {
        background: var(--redcolor) url(../images/search.png)no-repeat left 20px center / 16px;
    }
    .bnner_form input[type="submit"]:hover{
        background: var(--blackcolor) url(../images/search.png)no-repeat left 22px center / 16px;
    }
    .login_dropdwn_menu{
        left: -60px;
    }
    .title h3{
        font-size: 33px;
    }
    .title h3 br{
        display: none;
    }
    .suplier_area h5.sub_hding{
        font-size: 16px;
    }
    .suplier_area h5 img {
        margin-right: 6px;
        width: 25px;
    }
    .suplier_list ul li span {
        width: 37px;
        height: 41px;
    }
    .all_btn {
  
        padding: 16px 19px;
    }
    .bnner_form select {
        border-radius: 2px;
        background: #E9E9E9 url(../images/down_arrow.svg) no-repeat calc(100% - 7px) center / 18px;

    }
    .sub_bx .line:nth-child(1){
        left: -200px;
        width: 224px;
        top: -19px;
    }
    .sub_bx .line:nth-child(2) {
        left: -188px;
        top: 74px;
        width: 225px;
    }
    .sub_bx .line:nth-child(3) {
        left: -191px;
        top: 122px;
        width: 225px;
    }
    .sub_bx .line:nth-child(4) {
        left: -164px;
        top: 146px;
        width: 225px;
    }
    .sub_bx .line:nth-child(5) {
        right: -203px;
        top: -18px;
        left: auto;
        width: 250px;
    }
    .sub_bx .line:nth-child(6){
        right: -215px;
        top: 85px;
        left: auto;
        width: 224px;
    }
    .sub_bx .line:nth-child(7){
        width: 224px;
    }
    .sub_bx .line:nth-child(8){
        width: 224px;
        top: 164px;
    }
    .title .font40{
        font-size: 31px;
        line-height: 35px;
    }
    .all_btn {
        min-width: 148px;
    }
    .one_stop_area h4{
        font-size: 22px;
    }
    .material_box {
        padding: 0px 0px;
    }
    .mater_inform{
        position: relative;
        top: auto;
        right: 0;
        transform: inherit;
        max-width: 100%;
    }
    .material_slider .slick-dots li {
        margin: 0px 47px;
    }
    .material_slider .slick-dots li:nth-child(1) button::before, .material_slider .slick-dots li:nth-child(2) button::before, .material_slider .slick-dots li:nth-child(3) button::before, .material_slider .slick-dots li:nth-child(4) button::before, .material_slider .slick-dots li:nth-child(5) button::before{
        font-size: 14px;
    }
    .mate_cateroy_list ul{
        flex-wrap: wrap;
    }
    .mate_cateroy_list ul li{
      width: 19%;
      margin: 0px 12px 55px;
    }
    .mate_cateroy_list ul li span{
        margin: 0 auto 10px;
    }
    .material_category_area.pb-45{
        padding-bottom: 0px !important;
    }
    .pt-100 {
        padding-top: 37px;
    }
    .register_btn{
        margin-top: 15px;
    }
    .happy_slider .slick-slide.slick-current .testi_box{
        border-right: 0px;
    }
    .requiremnt_form h5 {
        font-size: 21px;
    }
    section {
        padding: 62px 0;
    }
    .inner_hdr {
        padding-left: 0;
    }
    .top_hdr:before {
      display: none;
    }
    .hdr_frm {
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }
    .top_hdr form{
        width:100%;
    }
    .discount_icn {
        position: absolute;
        top: 8px;
        left: 60px;
      }
    header.site-header.sticky {
        transform: translateY(-112px);
    }
    .mater_inform{
        background: #F1EDED;
        border-radius: 0px;
    }
    .checkbox_area ul li {
        width: 100%;
    }
    .details_pg_area .requiremnt_form {
        margin-top: 0;
    }
    .details_pg_area .detls_bx figure {
        margin-right: 0;
    }
    .pt-150 {
        padding-top: 196px;
    }
    .contpg .requiremnt_form{
        margin-left: 0px;
    }
    .contpg .requiremnt_form{
        margin-bottom: 0;
    }
    .megamenu_content{
        display:none;
    }
    .sub-menu.mega-menu li {
        width: 100%;
    }
    .sub-menu, .sub-menu.mega-menu{
        width: 100%;
    }
    .sub-menu::before{
        display: none;
    }
    .requiremnt_form .re_bx .frm_bx .g-recaptcha > div > div iframe{
        transform: scale(1) !important;
        transform-origin: left top;
    }
    .frm_bx.radio_list_bx h6, .frm_radio_list li label, .re_bx h6, .terms_cndtn{
        display: inline;
    }
        /* registration page scroll fixing 13.05-2024*/
        .site-main.log_in {
            padding: 0;
            height: auto;
        }
}

@media (max-width:767px) {
    .bnner_form .form_box{
        margin-bottom: 20px;
    }
    .bnner_form .row{
        margin-bottom: -20px;
    }
    .title h3 {
        font-size: 28px;
    }
    .title {
        margin-bottom: 26px;
    }
    .sub_bx .line{
        display: none;
    }
    .suplier_area .sub_bx:nth-child(2) {
        order: 1;
    }
    .suplier_area .sub_bx:nth-child(1) {
        order: 2;
    }
    .suplier_area .sub_bx:nth-child(3) {
        order: 3;
    }
    .subli_btn_area{
        flex-wrap: wrap;
    }
    .subli_btn_area .all_btn{
        margin-bottom: 10px;
    }
    .pdding-150 {
        padding-bottom: 71px !important;
    }
    .material_tab_area .material_slider {
        margin-top: 196px;
    }
    .material_slider .slick-dots {
        top: -160px;
        bottom: auto;
    }
    .material_slider .slick-dots li {
        margin: 0px 47px 33px;
    }
    .top_hdr:before{
        display: none;
    }
    .product_slider {
        margin-top: 17px;
      }
    .our_products_section .pro_lft{
        text-align: center;
    }
    .pro_lft .title h3 {
        text-align: center;
    }
    .one_stop_area figure{
        text-align: center;
    }
    .one_stop_area:nth-child(even) .row .content {
        padding-left: 0;
        text-align: center;
        padding-top: 35px;
    }
    .one_stop_area .row .content{
        text-align: center;
        padding-top: 35px;
    }
    .one_stop_area:not(:last-child) {
        margin-bottom: 64px;
    }
    .overlay2, .overlay1 {
        width: 156px;
    }
    .material_slider .slick-dots li:not(:last-child):after{
        display: none;
    }
    .material_slider .slick-dots li {
        margin: 0px 59px 33px;
    }
    .mate_cateroy_list ul li {
        width: 26%;
        margin: 0px 12px 73px;
    }
    .mate_cateroy_list{
        margin-bottom: -33px;
    }
    .up_footer .ft_bx{
        margin-bottom: 20px;
    }
    .up_footer .ft_bx:last-child{
        margin-bottom: 0px;
    }
    .up_footer {
        padding: 42px 0px;
    }
    .up_footer h4{
        margin-bottom: 16px;
    }
    .logo_holder {
        margin-bottom: 25px;
    }
    .suplier_list ul li span {
        width: 55px;
        height: 55px;
    }
    .quick_link ul li a{
        font-size: 0;
    }
    .login_dropdwn_menu {
        left: -85px;
        right: 0;
    }
    .login_dropdwn_menu:before {
        left: auto;
        right: 40px;
    }
    
    .quick_link ul li {
        padding-left: 0px;
    }
    .quick_link {
        margin-right: 10px;
    }
    .banner_section figure {
        height: 434px;
    }
    .testi_pc {
        width: 80px;
        height: 80px;
        border: 1px solid var(--redcolor);
    }
    .bnner_txt{
        text-align: center;
    }
    .requiremnt_form input[type="text"], .requiremnt_form input[type="tel"], .requiremnt_form input[type="email"]{
        height: 48px;
    }
    .requiremnt_form {
        padding: 29px 15px 25px 15px;
    }
    .subli_btn_area .all_btn:nth-child(2) {
        order: 3;
    }
   
    .contpg .details_pg_form_area .detls_bx:first-child .text{
        padding: 30px;
    }
}
@media(max-width:575px) {
   
    .testi_box .text {
        width: 100%;
        padding-left: 0px;
        padding-top: 20px;
        text-align: center;
    }
    .testi_box {
        flex-wrap: wrap;
    }
    .testi_box .text p {
        font-size: 14px;
        line-height: 22px;
    }
    .testi_pc{
        margin: 0 auto;
    }
    .testi_box .text ul{
        justify-content: center;
    }
    .happy_slider{
        margin-top: 20px;
    }
    .next_arrow.slick-arrow,  .prev_arrow.slick-arrow{
        width: 40px;
        height: 40px;
    }
    .title h3 {
        font-size: 25px;
    }
    .btm_menu h1 a {
        width: 91px;
    }
    .material_slider .slick-dots li:nth-child(1) button::before, .material_slider .slick-dots li:nth-child(2) button::before, .material_slider .slick-dots li:nth-child(3) button::before, .material_slider .slick-dots li:nth-child(4) button::before, .material_slider .slick-dots li:nth-child(5) button::before {
        font-size: 13px;
    }
    .subli_logo{
        width: 136px;
    height: 136px;
    }
    .subli_logo img {
        width: 100px;
    }
    .pt-150 {
        padding-top: 183px;
      }
      .mobilemenuBtn {
        top: 139px;
      }
      .material_section .title{
        margin-bottom: 180px;
      }
      .requiremnt_form input[type="radio"] {
        transform: scale(1);
      }
}






@media(max-width:479px) {
    .material_slider .slick-dots li {
        margin: 0px 44px 33px;
    }
    .overlay2, .overlay1 {
        width: 69px;
    }
    .material_tab_area .nav-tabs .nav-link {
        min-width: 133px;
        font-size: 15px;
    }
    .material_slider .slick-dots li button:after {
        position: absolute;
        left: -5px;
        top: -5px;
        width: 25px;
        height: 25px;
        
    }
    .all_btn{
        padding: 14px 19px;
    }
    .bnner_txt p {
        font-size: 15px;
    }
    .bnner_txt h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .book_btn, .detils_blck_btn{
        font-size: 16px;
    }
   
    .subli_btn_area .all_btn {
        margin-bottom: 10px;
        width: 200px;
        padding: 10px 10px;
    }
    .details_pg_form_area.contpg .text {
        position: relative;
       
        padding: 25px;
     
        background: var(--redcolor);
    }
    .details_pg_form_area.contpg .text h4 {
        margin-bottom: 19px;
    }
    .details_pg_form_area .text{
        background: #000;
        padding: 30px 18px;
        position: relative;
    }
}
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  
  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
  
    background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  }

  #take_action{
    padding: 9px 10px;
  }
  
  /* Animation */
  
  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }