@font-face {
    font-family: Roboto;
    src: url(../fonts/mainfont/Roboto-Regular.woff);
  }
  
  *,
  *:after,
  *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  :active,
  :hover,
  :focus{
    outline: 0 !important;
    outline-offset: 0;
  }
  a,
  a:hover{
    text-decoration: none;
    cursor: pointer;
    color: var(--secondry-color);
  }
  a:hover {
    color: var(--primary-color) !important;
  }
  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
/* =============Variables Define =============== */
:root {
    --primary-color: #ff0000;
    --bg-gray: #F2F2F2;
    --heading-color: #ff0000;
    --subheading-color: #1f1f1f;
    --navtext-color: #0D0D0D;
    --activenav-color:#ff0000;
    --primary-button: #ff0000;
    --primary-buttonhov: #c70000;
    --secondry-button:#ff0000;
    --iconprimary-color: #ff0000;
    --iconsecondry-color: #ffffff;
    --white-color: #ffffff;
    --text-color:#000000;
    --textprimary-color: #000000;
    --textsecondry-color: #1f1f1f;
    --primary-font: 'Roboto';
}
#scroll_top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
html {
    scroll-behavior: smooth;
}
body{
    font-family: var(--primary-font) !important;
    font-size: 100%;
    font-weight: 400;
}

h1{
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font) !important; */
    line-height: 3rem;
}
h2{
    font-size: 2.625rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 2.625rem;
}
h3{
    font-size: 2.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 2.375rem;
}
h4{
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 1.75rem;
}
h5{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 1.5rem;
}
h6{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 1.125rem;
}
.small{
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-transform: capitalize;
    /* font-family: var(--primary-font); */
    line-height: 0.875rem;
}
strong{
    font-weight: bold;
    line-height: 1rem;
}
p{
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.5rem;
}
.button_primary{
    background-color: var(--primary-button);
    border: 0;
    padding: 0.5rem 1rem;
    color: var(--white-color) !important;
}
.button_primary:hover{
    background-color: var(--primary-buttonhov);
    border: 0;
    padding: 0.5rem 1rem;
    color: var(--white-color);
}
.buy_button{
    background-color: var(--primary-button);
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    color: var(--white-color);
    border-radius: 5px;
    margin: 1rem;
    font-weight: 700;
    font-size: 14px;
}
.buy_button:hover{
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.section{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.section-gray{
    background-color: var(--bg-gray);
}
.section .title {
    text-align: center;
    margin-bottom: 1rem;
}
.section .title h4{
    color: var(--primary-color);
}
.border-r{
    border-right: 1px solid #D7D7D7;
}
.border-l{
    border-left: 1px solid #D7D7D7;
}
.border-t{
    border-top:1px solid #D7D7D7;
}
.border-b{
    border-bottom:1px solid #D7D7D7;
}
.border-r-dashed{
    border-right: 1px dashed #D7D7D7;
}
.border-l-dashed{
    border-left: 1px dashed #D7D7D7;
}
.border-t-dashed{
    border-top:1px dashed #D7D7D7;
}
.border-b-dashed{
    border-bottom:1px dashed #D7D7D7;
}

header{
    width: 100%;
    position: relative;
    /* padding: 0 5%; */
    align-items: center;
    justify-content: center;
    /* z-index: 9999; */
}
.top_header{
    background-color: #262626;
}
.top_contact
{
    color: var(--white-color);
    align-items: center;
    font-size: 14px;
}
.top_contact i{
    color: var(--primary-color);
}
.reserve_tab{
    text-align: center;
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    display: block;
}
.reserve_tab:hover{
    background-color: var(--white-color);
}
.mobile_toggle{
    border: none;
}
.mobile_toggle i{
    color: var(--primary-color);
    font-size: 2.5rem;
}
.panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
.mobnav_submenu
{
    background-color: #fff;
    padding: 0.2rem 0;
    border-radius: 10px;
    margin-top: 0.5rem;
}
.mobnav_submenu span{
    display: block;
    margin: 0.5rem;
}
.mobile_toggle .navbar-toggler-icon{
    color: var(--white-color);
}
.navbar_list{
    align-items: center;
    display: flex;
}
.navbar-expand-lg .navbar-collapse{
    display: none !important;
}
.mobile_nav{
    padding-left: 0;
}
.mobnavbar-collapse{
    display: none;
}
.mobile_nav li{
    display: block !important;
    padding: 0.5rem!important;
}

.navbar-brand{
    width: auto;
    height: 40px;
}
.navbar-brand img{
    width: 150px !important;
    height: 70px;
}
.navigation-wrap{
    background-color: rgb(255 255 255 / 96%);
    width: 100%;
    z-index: 1000;
    left: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap .nav-item{
    padding: 0 0.625rem;
    transition: all 200ms linear;
}
.navbar-toggler:focus {
    outline: unset;
    border: unset;
    box-shadow: none;
}
.nav-link{
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--textprimary-color);
    letter-spacing: 1px;
    padding: 0.5rem 0.3rem;
}
.cart_mobile{
    display: none;
}
.search_box_mobile{
    display: none;
}
.icon_nav{
    position: relative;
}
.icon_nav i{
    display: inline-block;
    font-size: 1.8rem;
    position: relative;
}
.icon_nav .bedge{
    position: absolute;
    top: 5px;
    left: 1.1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 100%;
    text-align: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
}
.icon_nav span{
    display: inline-block;
}
.nav-link:focus, .nav-link:hover{
    color: var(--secondry-color);
}
.navbar-nav .nav-link .active, .navbar-nav .show>.nav-link{
    color: var(--primary-color) !important;
    font-weight: bold;
    background-color: var(--primary-color);
}

.navbar-expand-lg li {
	display: inline-block;
    padding: 0.2rem;
}
.navbar-expand-lg li:hover > nav .container > nav.navigation-wrap{
    background-color: #fff !important;
}
nav a {
	display: block;
	text-decoration: none;
	color: grey;
}
nav li .submenu_wrapper {
	display: none;
	width: 100%;
	height: auto;
	position: absolute;
    top: 3.8rem;
	left: 0;
    padding: 2rem 0 3rem 0;
	background: var(--white-color);
    box-shadow: 1px 1px 5px #ccc;
}

nav li:hover .submenu_wrapper {
	display: block;
}
nav li .nav_submenu li{
    margin-right: 1rem;
    padding: 0.3rem 0px;
    position: relative;
    display: block;
}
nav li .nav_submenu li span
{
    border-left: 3px solid var(--primary-color);
    padding-left: 0.5rem;
    color: var(--primary-color);
    font-weight: 300;
    font-size: 22px;
}
nav li .nav_submenu li img{
    border-radius: 10px;
    position: relative;
}
.nav_submenu .menu_imglink{
    position: absolute;
    left: 11px;
    top: 40%;
    font-size: 14px;
    line-height: 1.5rem;
    color: var(--white-color);
}
.nav_submenu li:hover .menu_imglink{
    
    color: var(--secondry-color);
}
nav .nav-link.active, .navbar-nav .show>.nav-link{
    color: var(--white-color) !important;
    font-weight: bold;
    background-color:var(--primary-color) !important;
}
.nav-link:hover{
    color: var(--primary-color) !important;
    /* border-bottom: 2px solid var(--secondry-color) !important; */
}

nav li:hover > nav {
    background-color: var(--primary-color);
}

nav li div ul {
	display: inline-block;
	vertical-align: top;
}

nav li div ul li {
	display: block;
}
.search_box{
    padding: 1rem 0;
}
.search_box .input-group input{
    border-radius: 0;
    font-size: 12px;
    padding: 1.2rem;
    padding-left: 1rem;
    border-right: 0;
}
.search_box .input-group input:focus{
    box-shadow: none;
    border-color: #ccc;
}
.search_box .input-group-append button{
    border-radius: 0;
    border-color: #ccc;
    border-left: 0;
}
.search_box .category{
    width: 7rem;
    border: 1px solid #ccc;
    background-color: transparent;
}
.search_box .input-group-append button:focus{
    box-shadow: none;
}
.search_box .input-group-append .dropdown-menu{
    font-size: 14px;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}
.search_box .input-group-append .search_button{
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 0;
}
.slider_content{
    position: absolute;
    bottom: 15%;
    width: 100%;
}
.carousel-control-prev, .carousel-control-next{
    width: 8% !important;
}
.prev_arrow i, .next_arrow i{
    color: var(--primary-color);
    font-size: 32px;
}
.product_catbox{
    border: 1px solid #ccc;
    text-align: center;
    padding: 1rem;    
    margin-bottom: 1rem;
    border-radius: 5px;
}
.product_catbox:hover{
    background-color: var(--primary-color);
}
.product_catbox:hover img{
    filter: brightness(0) invert(1);
}
.product_catbox img{
    width: auto;
    margin-bottom: 1rem;
}
.product_catbox:hover h6{
    color: var(--white-color);
}
.product_box{
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
    padding: 2px;
}
.product_box img{
    width: 100%;
    border-radius: 5px 5px 0 0;   
    margin-bottom: 1rem;
}
.product_box p{
    font-size: 12px;
    text-transform: uppercase;
}
.product_box h5{
    margin-bottom: 0;
    text-align: center;
}
.product_box ul li{
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 1rem;

}

.product_box small {
    color: var(--primary-color);
    margin-left: 5px;
}

.testimonial_sec{
    background-image: url(../img/testimonial-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.testimonial_sec .carousel-indicators{
    bottom: -30px;
}
.testimonial_sec .carousel-indicators li{
    background-color: var(--primary-color);
}
.testimonial_sec .carousel-item{
    text-align: center;
}
.testimonial_sec .carousel-item img{
    width: 20%;
    border: 3px solid var(--primary-color);
    border-radius: 100%;
    margin: auto;
}
.testimonial_sec .carousel-item p{
    margin: 1rem 0;
}
.testimonial_sec .carousel-item p::before{
    content: '"';
    font-family: bootstrap-icons !important;
    color: var(--primary-color);
    font-size: 42px;
}
.testimonial_sec .carousel-item p::after{
    content: '"';
    font-family: bootstrap-icons !important;
    color: var(--primary-color);
    font-size: 42px;
    transform: rotate(90deg)
}
.testimonial_sec .carousel-item h5{
    color: var(--primary-color);
}


.white {
    color: #fff !important;
  }
  .mt{float: left;margin-top: -20px;padding-top: 20px;}
  .bg-blue-ui {
    background-color: var(--primary-color) !important;
  }
  figure img{width:300px;}
  
  
  
  /* The colour of the indicators */
  
  .blog .carousel-indicators li {
    background: var(--textsecondry-color);
    border-radius: 50%;
    width: 20px;
    height: 0px;
  }
  
  .blog .carousel-indicators .active {
    background: var(--primary-color);
  }
  
  
  
  .cta-100 {
    margin-top: 100px;
    padding-left: 8%;
    padding-top: 7%;
    padding-bottom:20px;
  }
  .item-carousel-blog-block {
    outline: medium none;
    padding: 15px;
  }
  .carousel-indicators{
    bottom: -15px;
  }
  .blog .carousel-control-prev{
    position: absolute;
    left: -5rem;
  }
  .blog .carousel-control-next{
    position: absolute;
    right: -5rem;
  }
  .item-box-blog {
    border: 1px solid #dadada;
    text-align: left;
    margin-bottom: 1rem;
    z-index: 4;
    padding: 10px;
    box-shadow: 0px 0px 10px #ccc;
  }
  
  .item-box-blog-image {
    position: relative;
    height: 218px;
  }
  
  .item-box-blog-image figure img {
    width: 100%;
    height: auto;
  }
  .item-box-blog-body {
    padding: 10px;
  }
  .item-box-blog-data .blog_author{
    margin-right: 1rem;
  }
  .item-heading-blog a h5 {
    margin: 0;
    line-height: 1;
    text-decoration:none;
    transition: color 0.3s;
  }
  
  .item-box-blog-heading a {
      text-decoration: none;
  }
  
  .item-box-blog-data p {
    font-size: 13px;
  }
  
  .item-box-blog-data p i {
    font-size: 12px;
  }
  
  .item-box-blog-text {
    max-height: 100px;
    overflow: hidden;
  }
  
  .mt-10 {
    float: left;
    margin-top: -10px;
    padding-top: 10px;
  }
  
  .btn.bg-blue-ui.white.read {
    cursor: pointer;
    padding: 4px 20px;
    float: left;
    margin-top: 10px;
  }
  
  .btn.bg-blue-ui.white.read:hover {
    box-shadow: 0px 5px 15px inset #4d5f77;
  }
  footer.section{
      padding-top: 1.5rem;
      padding-bottom: 1rem;
  }
  footer{
    background-image: url(../img/footer_bg.jpg);
    background-size: 100%;
    background-position: left;
  }
  footer img{
    filter: brightness(0) invert(1);
    width: 200px !important;
    height: 100px;
  }
  .contact_footer{
    margin-top: 1rem;
  }
  .contact_footer li{
    margin: 1rem 0;
    color: var(--white-color);
    display: inline-block;
    width: 33%;
  }
  .contact_footer li i{
    color: var(--primary-color);
    margin-right: 1rem;
  }
  .link_footer{
    margin-top: 2rem;
    float:right;
  }
  .link_footer li h4{
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 0.5rem;
  }
  .link_footer li{
    color: var(--white-color);
  }
  .social_link li{
    color: var(--white-color);
    display: inline-block;
    background-color: #1f1f1f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    text-align: center;
    margin: auto;
    align-items: center;
    display: inline-grid;
  }
  .social_link li:hover{
    color: var(--white-color);
    background-color: var(--primary-color);
  }
  .link_footer li a:hover{
    color: var(--primary-color) !important;
  }
  .sub_footer{
    padding: 1rem 0;
    background-color: #22262f;
  }
  .sub_footer p{
    color: var(--white-color) !important;
    margin-bottom: 0;
  }


  /* product listing css */
  .filter_box{
    position: sticky;
    top: 1rem;
    margin-bottom: 1rem;
  }
  .filter_type{
    margin-bottom: 1rem;
  }
  .sorting_button{
    font-size: 12px;
  }
  .sorting_button:focus {
    box-shadow: none;
  }
  .sorting_dropdown{
    font-size: 14px;
    padding: 0;
  }
  .sorting_dropdown .dropdown-item{
    padding: 0.25rem 0.5rem;
  }
  .filter_box .filter_type h6{
    background-color: var(--primary-color);
    padding: 1rem;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 100;
    text-align: center;;
  }
  .filter_box .filter_type ul li input[type="checkbox"]{
    background-color:#ccc;
    margin-right: 1rem;
}
.filter_box .filter_type ul li{
    padding: 0.5rem 0;
    border-bottom: 1px solid #ccc;
    padding-left: 1rem;
}
.filter_box .filter_type ul li:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
    
}
.price_rangefilter input{
    width: 45%;
    font-size: 14px;
    border-radius:0;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 0.5rem;   
}
.product_list .product_box{
    position: relative;
    border: none;
    /* text-align: center; */
    border-radius: 5px;
    margin-bottom: 1rem;
    background-color: #f7f7f7;
    padding: 2px;
}
.pagination li a{
    color: var(--primary-color);
}
.pagination .active a{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.pagination .active a:hover{
   color: var(--white-color) !important;
}

/* product detail css */
.breadcrum ul li{
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
}
.breadcrum ul li::after{
    content: '/';
    margin: 0.3rem;
}
.breadcrum ul li:nth-child(3){
    color: var(--text-color);
}
.breadcrum ul li:nth-child(3)::after{
    display: none;
}
.product_img{
    width: 100%;
    height: 500px;
    display: flex;
}
.product_detail small{
    color: var(--primary-color);
    font-size: 12px;
    margin-bottom: 1rem;
    display: block;
}
.product_detail h1{
    color: #5A5A5A;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.75rem;
}
.product_detail strong{
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 12px;
}
.product_detail strong span{
    color: var(--primary-color);
}
.product_detail .product-rating ul{
    display: inline-block;
    float: right;
}
.product_detail .product-rating ul li{
    display: inline-block;
    color: var(--primary-color);
}
.product_detail .product-rating ul li:last-child{    
    color: var(--text-color);
}
.product_detail p{
    font-size: 14px;
    text-align: justify;
    line-height: 1.6rem;
    text-transform: inherit;
}
.product_detail .product-size{
    display: inline-block;
    width: 30%;
    font-size: 15px;
    margin-bottom: 1rem;
}
.product_detail .product-size select{
    width: 100%;
    border-radius: 0;
    padding: 4px;
    border: 1px solid var(--primary-color);
}
.product-qty{
    display: inline-block;
    font-size: 15px;
    margin-bottom: 1rem;
}
.product-qty input{
    border-radius: 0;
    padding: 6px;
    border: 1px solid var(--primary-color);
}

.product_intro .attatchment_detail h5{
    color: var(--primary-color);
    font-weight: 500;
}

.table-responsive table a{
    color: var(--primary-color);
}
.table-responsive table td a:hover{
    text-decoration: underline;
}

.login-form {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    margin-bottom: 1rem;
}
.login-form .field{
    padding: 10px;
}
.login-form  input{
    width: 40%;
    border-radius: 0;
    padding: 6px;
    border: 1px solid var(--primary-color);
}
.cart-table th{
    color: var(--primary-color);
}

.subtotal span{
    color: var(--primary-color);
}

.remove_cart_button{
    background-color: var(--primary-button);
    border: 1px solid transparent;
    color: var(--white-color);
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}
.remove_cart_button:hover{
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.signup h4{
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}
.form-elements label{
    display: block;
    margin-bottom: 5px;
}
.form-elements input,select,textarea{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 0;
    font-size: 12px;
    padding: 0.5rem;
    border: 1px solid #ced4da;
}
.form-elements span.error{
    color: var(--primary-color);
    font-size: 12px;
}
.form-submit input{
    margin-top: 50px;
    border-radius: 0;
    font-size: 17px;
    width: 20%;
}
.form-elements .form_btn{
    background-color: var(--primary-button);
    border: 0;
    padding: 0.4rem 1rem;
    color: var(--white-color);
    margin: 28px 0 10px 0;
}
.checkout h4{
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-transform: capitalize;
    font-family: var(--primary-font);
    line-height: 1.75rem;
}
.content_heading h1{
    color: var(--primary-color);
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    /* font-family: var(--primary-font) !important; */
    line-height: 3rem;
}
.section_detail {
    padding-top: 1rem;
}
.primary-color{
    color: var(--primary-color);
}
.password-heading{
    padding-top: 15px;
    border-bottom-width: 15px;
}
.order-detail h1{
    color: var(--primary-color);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
    /* font-family: var(--primary-font) !important; */
    line-height: 3rem;
}
.order-detail h4{
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-transform: capitalize;
    font-family: var(--primary-font);
    line-height: 1.75rem;
}

.order-detail .table-responsive::-webkit-scrollbar {
    -webkit-appearance: none;
}

.order-detail .table-responsive::-webkit-scrollbar:vertical {
    width: 12px;
}

.order-detail .table-responsive::-webkit-scrollbar:horizontal {
    height: 12px;
}

.order-detail .table-responsive::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.order-detail .table-responsive::-webkit-scrollbar-track {
    border-radius: 10px;  
    background-color: #ffffff; 
}

.order-detail table th {
    color: var(--primary-color);
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
.order-detail table td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }

.ez__title {
    line-height: normal !important;
}

.btn_link {
    background-color: var(--primary-button);
    border: 0;
    padding: 0.5rem 1rem;
    color: var(--white-color) !important;
    font-size:17px;
  }
.btn_link:hover {
    color: white !important;
  }
.button_primary:hover {
    color: white !important;
  }