* {
    list-style: none;
    text-decoration: none;
    box-shadow: none;
 }
body{
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
    transition: .4s all ease-in-out;
    list-style: none;
}
ul{
    margin: 0;
    padding: 0;
}
a, a:hover, a:focus{
    text-decoration: none;
}
img {
    max-width: 100%;
 }
.btn{
    padding: 17px 44px;
    color: #ffffff;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    border-radius: 0px;
    font-size: 16px;
}
.btn:hover{
    background: #000000;
    border: 1PX solid #000000;
}
.nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 0px 18.5px 0px;
}
.nav-bar .logo figure{
    margin: 0;
}
.nav-bar .navigation ul{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-bar .navigation ul li{
    list-style: none;
    margin-right: 30px;
}
.nav-bar .navigation ul li:nth-last-child(1){
    margin-right: 0;
}
.nav-bar .navigation ul li a{
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: capitalize;
    transition: all .3s ease;
}
.nav-bar .navigation ul li a:hover{
    color: #ED1C24;
}
.menu-bar{
    display: none;
}
.nav-bar .button-right figure{
    margin: 0px 5px 0px 30px;
}
.nav-bar .button-right figure:first-child{
    margin-left: 0px;
}
.nav-bar .button-right figure img{
    width: 20px;
}
.logo-right figure{
    margin: 0px;
}
.button-right{
    display: flex;
    margin-left: 15px;
}
.nav-bar .navigation .form-select{
    color: #000000;
    font-weight: 600;
    border: 1px solid #000000;
    border-radius: 0px;
    padding: 5px 25px 5px 8px;
    box-shadow: none;
    background-image: url(../images/dropdown.svg);
    background-size: 8px 8px;
}

/*------BANNER SECTION-----*/
.banner-section{
    background-image: url(../images/banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    padding: 181px 0px 178px 0px;
}
.banner-section::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(290deg, #ED1C24ED 12%, #A9244BF3 35%, #3A308BFE 79%, #2E3192 100%);
    opacity: .63;
    z-index: -1;
}
.banner-section .banner-content{
    text-align: center;
    transition: .4s all ease-in-out;
}
.banner-section .banner-content h1{
    font-size: 65px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}
.banner-section .banner-content p{
    font-size: 18px;
    color: #ffffff;
    margin: 0 auto;
    max-width: 970px;
}
.banner-section .banner-content .btn{
    margin-top: 45px;
}

/* marketing-section */
ul.packing-list{
    padding: 0 0 20px 0;
	margin-bottom: 0;
}
ul.packing-list:last-child{
	padding-bottom:0;
}
ul.packing-list li{
    position: relative;
    padding-left: 20px;
    line-height: 30px;
    color: #000;
        font-size: 15px;
    font-weight: 500;
}
ul.packing-list li:before{
	    position: absolute;
    content: "";
    border: 3px solid #000;
    border-radius: 50%;
    top: 11px;
    left: 0;
    width: 3px;
    height: 3px;
	background-color:#000;
}
.marketing-section {
    padding: 0 !important;
}
.marketing-section .marketing_sectn_row{
	padding:95px 0;
}
.marketing-section h1{
	padding-bottom:20px;
}
.marketing-section p{
	    font-size: 18px;
    color: #000;
    font-weight: 400;
	    margin-bottom: 0;
}
.marketing-section span {
    font-size: 20px;
    font-weight: 700;
}
.marketing-section p:not(.has-background):last-of-type{
	padding-bottom:1em;
}

/* marketing-section */

@media (min-width: 1600px) {
    .container {
       max-width: 1424px !important;
    }
 }
 @media (max-width:1199px){
    .logo-right{
        display: none;
    }
    .nav-bar .navigation ul li {
        margin-right: 20px;
    }
 }

@media (max-width:991px){

    .menu-bar{
        display: block;
        transition: all .4s ease-in-out;
        width: 30px;
        height: 30px;
        position: relative;
        top: 5px;
        background: none;
        border: none;
        margin-left: 25px;
        z-index: 20;
    }
    .menu-bar span{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        border-bottom: 2px solid #000;
        transition: all .3s ease-in-out;
    }
    .menu-bar span:nth-child(2){
        top: 10px;
    }
    .menu-bar span:nth-child(3){
        top: 20px;
    }
        .menu-bar.open span:nth-child(1){
        top: 10px;
        transform: rotate(-45deg);
    }
    .menu-bar.open span:nth-child(2){
        top: 10px;
        transform: rotate(45deg);
    }
    .menu-bar.open span:nth-child(3){
        display: none;
    }
    .navigation{
        transition: all .3s ease-in-out;
        background-color: #3A308BFE;
        width: 450px;
        height: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 10;
        overflow: auto;
    }
    .navigation.open{
        left: 0;
    }
    .nav-bar .navigation ul{
        display: block;
        margin-top: 40px;
        padding-left: 20px;
    }
    .nav-bar .navigation ul li{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .nav-bar .navigation ul li a{
        color: #fff;
    }
    .nav-bar .btn{
        margin-left: auto;
    }
    .logo-right{
        display: none;
    }
    .nav-bar .navigation .form-select{
        width: 90px;
    }
    .button-right {
       margin-left: 0px;
    }
    .banner-section {
        padding: 230px 0px 150px 0px;
    }
    .banner-section .banner-content h1 {
        font-size: 50px;
    }
    .banner-section .banner-content p {
        font-size: 16px;
    }
    .banner-section .banner-content .btn {
        margin-top: 30px;
        padding: 17px 44px;
    }
}


@media (max-width:767px){
    .banner-section .banner-content h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .banner-section .banner-content h1 br{
       display: none;
    }
    .banner-section .banner-content .btn {
        margin-top: 21px;
        padding: 13px 22px;
        font-size: 14px;
    }
    .banner-section {
        padding: 80px 0px 80px 0px;
    }
}


@media(max-width:576px){
    .container{
        max-width: 100%;
    }
    .navigation{
        width: 100%;
    }
    .nav-bar .logo figure a img{
        max-width: 150px;
    }
    .menu-bar.open span{
        border-bottom: #fff 2px solid;
    }
    .banner-section .banner-content h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .banner-section .banner-content h1 br{
        display: block;
    }
    .banner-section .banner-content p {
        font-size: 14px;
    }
    .banner-section .banner-content .btn {
        margin-top: 20px;
        padding: 13px 15px;
        font-size: 13px;
    }
} 
.scrollstop{
    position: fixed;
    inset: 0;
    overflow: hidden;
}





/* Title Banner CSS Start */
.tittle-banner{height: 260px;background-size: cover; background-repeat: no-repeat;display: flex;align-items: center;}
.title-content{max-width: 780px;}
.title-content h2{font-family: 'Montserrat', sans-serif;font-size: 40px;font-weight: bold;color: #fff;margin-bottom: 0;margin-bottom: 15px;}
.title-content .shape-heading::after{background-color: #fff;}
.title-content p{color: #fff;font-size: 16px;line-height: 30px;margin-bottom: 0;}
/* Title Banner CSS End */
.breadcrumbs-section{
    background-color: #f5f5f5;
    padding: 10px 0;
}
.breadcrumbs-section .breadcrumb{
    margin-bottom: 0;
}
.breadcrumbs-section .breadcrumb a{
    text-decoration: none;
    color: #000;
}
.breadcrumb-item {
    font-size: 14px;
}


.product-list ul{display: flex;flex-wrap: wrap;margin: 34px -10px 0 -10px;}
.product-list ul li{flex: 0 0 auto;padding: 0 10px 36px 10px;width: 33.33%;}
.product-list ul li a{display: block;border: solid 1px #d7d7d7;background-color: #fff;border-radius: 6px;}
.product-list ul li .product-box figure{margin: 0;border-radius: 6px 6px 0px 0px;overflow: hidden;position: relative;}
.product-list ul li .product-box figure img{transition: .3s;width: 100%;}
.product-list ul li .product-box:hover figure img{transform: scale3d(1.1, 1.1, 1.1);}
.product-list ul li .product-box h3{color: #000;border-radius: 6px;margin: 0;z-index: 1;position: relative;font-size: 20px;line-height: 27px;padding: 20px 15px;font-weight: 600;font-family: 'Poppins', sans-serif;-webkit-transition: all 0.5s ease-out 0s;-moz-transition: all 0.5s ease-out 0s;-ms-transition: all 0.5s ease-out 0s;-o-transition: all 0.5s ease-out 0s;    transition: all 0.5s ease-out 0s;}
.product-list ul li .product-box:hover h3{color: #ed1c24;}


.product-section{ padding: 30px 0;}
.product-section .product-row{ display: flex; flex-wrap: wrap;}
.product-section .product-row .product-sidebar{flex: 0 0 auto; width: 25%;}
.product-section .product-row .product-right{flex: 0 0 auto; width: 75%;padding-left: 30px;}
.product-section .product-row .product-right h2{font-size: 30px;font-weight: bold;color: #000;margin-bottom: 0;flex: 1;margin-right: 15px;}
.product-section .accordion-item{border-radius: 0;}
.product-sidebar .accordion-header a{ position: relative; display: flex;align-items: center; width: 100%; padding: 1rem 1.25rem; font-size: 1rem;color: #212529; text-align: left;
border: 0; border-radius: 0; overflow-anchor: none;transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;}
.product-sidebar ul li{ display: block; margin-bottom: 15px;}
.product-sidebar ul li:last-child{ margin-bottom: 0;}
.product-sidebar ul li a{color: #000;font-size: 14px;}
.product-sidebar ul li a:hover{ color: #ED1C24;}
.product-sidebar .accordion-header a[aria-expanded="true"]{ color: #fff; background-color: #332f91;}
.product-sidebar .accordion-header a[aria-expanded="true"]::after{ filter: brightness(0) invert(1);}
.product-row{ display: flex; flex-wrap: wrap;}
.product-row .col-left{ flex: 0 0 auto; width: 40%;}
.product-row .col-right{ flex: 0 0 auto; width: 60%;padding-left: 50px;}
.product-row .col-right h1{font-size: 40px;font-weight: bold;margin-bottom: 30px;}
.mainSlider .item {  display: flex; align-items: center; justify-content: center;}
.mainSlider .item img{ max-width: 100%; max-height: 100%;}
.thumbSlider .item { width: 75px; height: 75px; display: flex; align-items: center;justify-content: center; margin-right: 14px}
.thumbSlider .item.slick-current{ border: solid 1px #000;}
.thumbSlider .item img{ max-width: 55px;}
.thumbSlider { display: flex; margin-top: 14px}
.thumbSlider .slick-arrow { flex: 0 0 auto; width: 20px;display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; border: 0;
padding: 0; position: relative;background-repeat: no-repeat;background-position: center;text-indent: -999px;background-size: 24px;}
.thumbSlider .slick-arrow.slick-prev { left: 0;background-image: url(../images/arrow-left.svg);}
.thumbSlider .slick-arrow.slick-next { right: 0;background-image: url(../images/arrow-right.svg);}
.thumbSlider .slick-arrow.slick-disabled { display: none !important}
.details-table{margin-top: 60px;}
.details-table thead th{background-color: #2E3192;color: #fff;padding: 15px;white-space: nowrap;}
.details-table tbody td{font-size: 14px;padding: 15px;white-space: nowrap;}
.details-table table{border: solid 1px #2E3192;}   
.details-table tbody td, .details-table tbody th, .details-table tbody tr, .details-table tbody, .details-table thead{border: 0;} 
.details-table tbody tr:nth-child(even){background-color: #f5f5f5;}
.details-table.table-responsive .table tr td {border: none;}
.details-table.table-responsive .table tbody tr td:first-child {font-weight:bold;}
.product-details .product-row{padding: 30px; border: solid 1px #f1f1f1;}
.mobile-filter-btn{display: flex;align-items: center;justify-content: center;background-color: transparent;border: 0;width: 30px;height: 30px;background-color: #2E3192;padding: 4px;}
.mobile-filter-btn img{filter: invert(1);}
.product-section .product-row .product-sidebar .heading{padding: 1rem 1.25rem;background-color: #000;}
.product-section .product-row .product-sidebar .heading h2{margin-bottom: 0;font-size: 18px;color: #fff;}
.product-section .product-row .product-sidebar .mobile-filter-close{background-color: transparent;width: 30px;height: 30px;display: flex;align-items: center;justify-content: center;border: 0;}
.product-section .product-row .product-sidebar .mobile-filter-close img{filter: invert(1);}
.product-sidebar .accordion-item:first-of-type .accordion-button{border-radius: 0;}
@media(max-width:1199px){
    .product-section .product-row .product-right{width: 65%;}
    .product-section .product-row .product-sidebar{width: 35%;}
    .product-section .product-row .product-right .product-list ul li{width: 50%;}
    .product-details .product-row{padding: 15px;}
    .product-row .col-right{padding-left: 30px;}
    .product-row .col-right h1{font-size: 30px;}
}
@media(max-width:991px){
    .product-list ul li{width: 50%;}
    .product-section .product-row .product-right{width: 100%;padding-left: 0;}
    .product-section .product-row .product-sidebar{position: fixed;top: 0;left: -100%;height: 100%;overflow: auto;z-index: 99;width: 100%;transition: 0.4s all;background-color: #fff;}
    .product-section .product-row .product-sidebar.open{left: 0;}
    .product-row .col-left{width: 100%;}
    .product-row .col-right{width: 100%;padding-left: 0;padding-top: 30px;}
    .product-row .col-right h1{margin-bottom: 15px;}
}
@media(max-width:767px){
    .product-list ul li .product-box h3{font-size: 16px;line-height: normal;}
    .product-list ul li{width: 100%;}
    .product-list ul{margin-top: 0;}
    .title-content h2{font-size: 30px;}
    .title-content p{font-size: 15px;line-height: normal;}
    .product-section .product-row .product-right .heading{margin-bottom: 30px;}
    .product-section .product-row .product-right h2{font-size: 20px;}
    .product-section .product-row .product-right .product-list ul li{width: 100%;}
    .breadcrumb-item{font-size: 13px;}
    .details-table{margin-top: 30px;}
    .product-row .col-right .dec p{font-size: 14px;}
    .thumbSlider .item{width: 50px; height: 50px;}
    .product-row .col-right h1{font-size: 22px;}
}

/* 21-11-2022 */
.et_contact_bottom_container{
	margin-top:10px;	
	align-items:center;
}
.et_contact_bottom_container p.clearfix{
	color:#fff;
	font-weight:500;
	margin-bottom:0;
}
.product-list ul li a.product-box h3{
	text-align:center;
	font-size:18px;
}
.et_pb_blurb_description p a{
	color:#fff;
}
.product-right .product-list ul li{
	width:25%;
}
.product-list ul li{
	width:25%;
}

.clearfix .et_pb_contact_right p input{
	padding:4px 16px;
}
.product-details .product-row .col-right h1{
	margin-bottom:10px;
}
.nav li ul.sub-menu{
	top:26px;
	border-top:2px solid #2ea3f2;
	padding: 10px 0;
}
.nav li ul.sub-menu li{
	padding:0 10px !important;
}
body #page-container .et_pb_section .et_pb_contact_form_0.et_pb_contact_form_container.et_pb_module .et_pb_contact_submit.et_pb_button{
	border-width:2px!important;
}
.et_contact_bottom_container .et_pb_contact_right{
	border: 1px solid #fff;
    padding-left: 9px;
}
.product-row .col-left{
	width:100%;
}
.product-details .product-row .cstm_product_heading{
	display:flex;
	justify-content:center;
	width:100%;
}
.thumbSlider.slick-slider .slick-list.draggable{
	max-width:268px;
	margin: 0 auto;
}
@media (max-width:767px){
	.product-list ul li{
		width:50%;
	}
	}
@media (max-width:420px){
	.product-list ul li{
		width:100%;
	}
	}

.main-cstm-slider .et_pb_container{
	max-width:100% !important;
}
.main-cstm-slider .et_pb_slide_description  h2.et_pb_slide_title a{
	pointer-events:none;
	    text-decoration: none;
}

