@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@400;500;600;700&display=swap');
 
body {
	font-family: 'Poppins', sans-serif !important;
	background-color: #fff;
    color: #565656;
	overflow-x: hidden
}
p{
    color: #999;
}
img {
	max-width: 100%
}

.contact_details ul li,
li {
	list-style: none
}

.contact_details ul,
ul {
	padding-left: 0
}

a {
	text-decoration: none
}

hr {
	height: 2px;
	border: 1px solid #e0e0e0
}

/* general ========================================== */

/* componenet ========================================== */
/* btns --------------------------- */
.btn{
    padding: 8px 27px;
    border-radius: 40px;
}
.btn:active:focus{
    box-shadow: none !important;
}
/* primary ------- */
.btn-primary{
    background-color: #e4171d;
    border: 1px solid #e4171d;
}
.btn-primary:hover{
    background-color: #ce1717; 
    border: 1px solid #ce1717;
    transition: 0.3s;
}
.btn-primary:active:focus{
    box-shadow: none;
}

/* primary ------- */


/* danger ------- */
.btn-danger{
    background-color: #ff3434;
    border: 1px solid #ff3434;
}
.btn-danger:hover{
    background-color: #e4171d; 
    border: 1px solid #e4171d;
    transition: 0.3s;
}
.btn-danger:active:focus{
    box-shadow: none;
}

/* danger ------- */

/* light ------- */
.btn-light{
    background-color: #fff;
    border: 1px solid #fff;
    color: #e4171d;
}
/* light ------- */

/* btns --------------------------- */

/* form --------------------------- */
.form-control {
    border: solid 1px #e6e6e6;
    background-color: #fff;
    padding: 12px 13px;
    transition: .3s;
    font-weight: 400;
    font-size: 15px;
    color: #b6b6b6;
    border-radius: 10px;
}
textarea.form-control{
    border-radius: 10px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #e4171d7a;
    background-color: #fff;
    color: #b6b6b6; 
}
label{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 7px;
    color: #b7b7b7;
}
/* form --------------------------- */

/* componenet ========================================== */


/* ------------------------------------------------------------ */
/* header */
 
/* sticky */
.header.sticky{
    position: fixed;
    top: 0;
    transition: 0.3s;
    padding-top: 0; 
} 
.header.sticky .menu::after{
    display: none;
}
.header.sticky .menu .navbar .logo img {
    transition: 0.3s;
    width: 71px;
}
.header.sticky .menu .navbar{
    transition: 0.3s;
    padding: 4px 0;
}  
.header.sticky .menu .navbar .links ul li.list_item a{
    color: #414141;

}
.header.sticky .menu{
    transition: 0.3s;
    background-color: #fff;
    padding-top: 1px;
    padding-bottom: 6px;
    box-shadow: 0 3px 22px rgba(0, 0, 0, 0.17);
}

/* sticky */

.header{
    position: absolute;
    z-index: 9999;
    width: 100%;
    top: 0; 
	padding-top: 0;  
}
 

.menu{ 
    transition: 0.3s;
    padding-top: 7px; 
    padding-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.menu::after {
    content: "";
    position: absolute;
    height: 6px;
    bottom: 1px;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background-image: url('../img/png/wave.png');
}
.menu .navbar{
    padding: 10px 0;
    display: flex;
    transition: 0.3s;
    justify-content: space-between;
    /* background-color: #161616; */
}
.menu .navbar::after{
    content: "";
    position: absolute;
    height: 6px;
    bottom: -10px;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    pointer-events: none;
    background-image: url('../img/icon/wave.png');
}
.menu .navbar .logo{  
}

 


.menu .navbar .logo img{
    width: 141px;
    transition: 0.3s;
}
.menu .navbar .overlay{
    display: none;
}
.menu .navbar .links::after{
    content: " ";
}
.menu .navbar .links ul{
    margin: 0 auto;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 250;
    display: flex;
    flex-wrap: wrap;
}
.menu .navbar .links ul li.list_item{
    display: block;
    padding: 0;
    margin: 0; 
}
 
.menu .navbar .links ul li.list_item a{
    padding: 10px 15px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px; 
    text-transform: uppercase;
    position: relative;

}
.menu .navbar .links ul li.list_item a.active{
    color: #e4171d;
}
.menu .navbar .links ul li.list_item a.active::after{
    transition: 0.3s;
    height: 29px;
}
.menu .navbar .links ul li.list_item a::after{
    content: " ";
    width: 2px;
    height: 0;
    display: block;
    position: absolute;
    background-color: #e4171d;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -25px;
    transition: 0.3s;
}

.menu .navbar .links ul li.list_item a:hover{
    text-decoration: none;
    color: #e4171d;
    transition: 0.3s;
}
.menu .navbar .links ul li.list_item a:hover::after{
    transition: 0.3s;
    height: 29px;
}

.inner .menu .navbar .links ul li.list_item a{
    color: #353535;
}
.inner .menu .navbar .links ul li.list_item a.active {
    color: #e4171d;
}
.inner .menu .navbar .links ul li.list_item a:hover {
    text-decoration: none;
    color: #e4171d;
}
.inner .header{
    background-color: white;
    height: 90px;
}
.inner .menu .navbar{
    align-items: start;
    
}
.inner .menu .navbar .links{
    padding-top: 14px;   
}
.inner .menu .navbar .get{
    padding-top: 6px;   

}
.inner .menu .navbar .links ul li.list_item a::after {
    bottom: -24px;
}
/* dropdown ------- */
.menu .navbar .links ul li.list_item > .big_drop{
    position: absolute;
    display: block;
    max-height: 0;
    overflow: hidden;
    margin: 9px 0 0 -47px;
    padding: 25px 0 0 0;
    transition: .5s;
    list-style: none;
width: auto;
min-width: 220px;
}
 


ul.nav li ul { position: absolute; display:block; max-height:0; overflow:hidden;  margin:0 0 0 -55px; padding:25px 0 0 0; transition:.5s;}
.menu .navbar .links ul li.list_item:hover > ul {  max-height:1000px; display:block; }
.menu .navbar .links ul li.list_item > .big_drop > li{
    border: none; 
margin: 0;
padding: 0;
position: relative;
border-bottom: 1px solid #eee;
border-left: 1px solid #eee;
}

.menu .navbar .links ul li.list_item > .big_drop > li > a{
    display: block;
background: #fff;
font-size: 12px;
color: #555;
padding: 0 15px;
height: 40px;
line-height: 40px;
text-align: left;
font-weight: 700;
transition: 0.3s;

}
.menu .navbar .links ul li.list_item > .big_drop > li > a:hover{
    background-color: #e8e8e8;
    transition: 0.3s;
    color: #e4171d;
}
/* dropdown ------- */




.header .social{
    margin-left: 13%;
    margin-top: -1px;
    padding-bottom: 1px;
}
.header .social > h3{
    font-size: 14px;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
}
.header .social ul{
    margin: 0;
    display: inline;
}
.header .social ul li {
    display: inline-block;
    margin-top: 0;
}
.header .social ul li a {
    display: block;
    text-align: center;
    width: 28px;
    height: 28px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 3px;
    font-size: 12px;
}
.header .social ul li a i {
    color: #fff;
    margin-top: 7px;
    margin-left: 0;
}
.header .social ul li a:hover {
    background: #003365;
    border-color: #fb0000;

}
.header .social ul li a:hover {
    border: 1px solid #003365;
        border-top-color: #003365;
        border-right-color: #003365;
        border-bottom-color: #003365;
        border-left-color: #003365;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu .navbar .teklif{
    display: flex;
}
.menu .navbar .teklif em{
    font-style: normal;
    margin-right: 6px;
}
.menu .navbar .whatsup  span{
    display: none;
}
.menu .navbar .teklif a{
    margin-top: 0;
    padding: 7px 17px;
}
.menu .navbar .teklif a ion-icon{
    font-size: 21px;
    display: inline-block;
    position: relative;
    top: 5px;
    margin-right: 5px;
} 
.menu .navbar .get{ 
    display: flex;
    justify-content: space-between;
}
.menu .navbar .lang{
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.menu .navbar .lang ul{
  margin: 0;
  display: flex;  
}
.menu .navbar .lang ul li{
    margin-right: 0px; 
    padding-right: 8px;
} 
.menu .navbar .lang ul li a{
    display: flex;
}
.menu .navbar .lang ul li img{
    width: 25px;
}
.menu .navbar .whatsup{
    margin-left: 15px;
}
/* toggle menu --------- */
.menu_btn{ 
    display: none;
}
.menu_btn input#menu1 {
    display: none;
}

.menu_btn .icon { 
    cursor: pointer;
    display: block;
    height: 24px;
    padding: 0;
    width: 24px;
}

.menu_btn .hamburger  {
    position: relative;
    z-index: 200;
    border: 1px solid #fff;
    text-align: center;
    height: 34px;
    padding: 0;
    width: 38px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before{
    background-color: #fff;
    width: 24px;
height: 2px;
}
.hamburger-box{ 
    width: 25px;
    height: 24px;
    margin-top: 6px;
}
 
.hamburger-inner::before {
    top: -7px;
}
.hamburger-inner::after {
    top: 7px;

}
.menu_btn .hamburger.is-active .hamburger-inner::before{
    top: -10px;
}
.menu_btn .hamburger.is-active .hamburger-inner::after{
    top: 10px;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::after, .hamburger.is-active .hamburger-inner::before{
    background-color: #fff;
}
.menu_btn .hamburger-box{
    margin-top: 5px;
    width: 24px;
}
/* toggle menu --------- */


 

/* header */
/* ------------------------------------------------------------ */




/* ------------------------------------------------------------ */
/* slider */ 

.slider_section{ 
    position: relative; 
}
.slider_section .slider-item::after {
    content: " ";
    display: block; 
    line-height: 0;
    width: 100%;
    height: 100%;
    background-color: #0000003b;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.slider_section .slider-item{
    height: 97vh;
    position: relative;
}  
  
.slider_section .container{
    position: relative;
} 

.slider_section .owl-carousel .slider-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.slider_section .owl-carousel .owl-nav {
    width: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    position: absolute;
    bottom: 0;
    margin: auto;
    height: 90px;
}

.slider_section .owl-carousel .owl-nav .owl-prev {
    float: left;
    left: 40px;
    z-index: 1; 
    position: absolute
}

.slider_section .owl-carousel .owl-nav .owl-next {
    float: right;
    z-index: 1; 
    position: absolute;
    right: 40px
}

.slider_section .owl-carousel .owl-nav button i {
    display: block;
    margin-right: 6px;
    color: #e4171d;
    font-size: 43px;
    transition: .3s;
    border-color: #fff;
}

.slider_section .owl-carousel .owl-nav button i:hover {
    border-color: #f60;
    transition: .3s
}
.slider_section .owl-carousel .slider-item .caption{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
}
.slider_section .owl-carousel .slider-item .caption .content{
    
    padding-right: 40px;
}
.slider_section .owl-carousel .slider-item .caption .container{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.slider_section .owl-carousel .slider-item .caption span{
    font-size: 43px;
    color: #e4171d;
    font-family: 'Edu NSW ACT Foundation', cursive;
    font-weight: 500;
}
.slider_section .owl-carousel .slider-item .caption h3{
    font-weight: 700;
    color: #fff;
    font-size: 45px;
}
.slider_section .owl-carousel .slider-item .caption .action{
    margin-top: 40px;
}
.slider_section .owl-carousel .slider-item .caption .action a{
    margin-right: 16px;
} 
.slider_section .white_svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    z-index: 9;
}
.slider_section .white_svg svg {
  width: calc(160% + 1.3px);
  height: 80px;
  fill: #ffff;
}
/* slider */
/* ------------------------------------------------------------ */
 
 


/* ------------------------------------------------------------ */
 /* menu section */
.sec-title{
    background-image: url("");
    text-align: center;
    padding-bottom: 20px;
}
.sec-title h3{
    font-weight: 700;
}
.sec-title span{
    font-size: 22px;
    color: #e4171d;
    font-family: 'Edu NSW ACT Foundation', cursive;
}

.menu-section{
    padding-top: 4em;
}
.menu-section .boxes{
}
.menu-section .item{ 
    margin-bottom: 30px;
}
.menu-section .item .content{
    position: relative;
    border: 1px dashed #c1c1c1;
    border-radius: 15px;
    transition: 0.3s;
}
.menu-section .item:hover .content{
    transition: 0.3s; 
    border-color: #e4171d8f;
}  
.menu-section .item .img{
    height: 268px;
    position: relative;
    margin: 7px;
    overflow: hidden; 
    border-radius: 15px;

}
.menu-section .item button{
    display: block;
    width: 100%;
}
.menu-section .item .img img{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 15px;
}
.menu-section .item:hover .img img{ 
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.4s;
}
.menu-section .item .text{
    text-align: center;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu-section .item .text h3{
    display: block;
    color: #3a3a3a;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.menu-section .item .text h4{ 
    font-size: 17px;
    font-weight: 600;
    color: #e4171d;
    padding-top: 0; 
    margin-bottom: 0;
}
.menu-section .item .text .action{
    width: 100%;
    margin-bottom: 12px;
    margin-top: 11px;
}
.menu-section .item .text .action .row-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.card-section .items .item .product-quantity{
    width: 131px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
  /* product counter ------------------ */


.product-quantity .qty-input {
    color: #000;
    background-color: transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5px; 
    border-radius: 53px;
    border: 1px solid #eee;
  }
  .product-quantity .qty-input .product-qty,
  .product-quantity .qty-input .qty-count {
    background: transparent;
    color: inherit;
    font-weight: 500;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 32px;
    line-height: 1;
  }
  .product-quantity .qty-input .product-qty:focus,
  .product-quantity .qty-input .qty-count:focus {
    outline: none;
  }
  .product-quantity .qty-input .product-qty {
    width: 40px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    color: #3b3b3b;
    -webkit-appearance: textfield;
       -moz-appearance: textfield;
            appearance: textfield;
  }
  .product-quantity .qty-input .product-qty::-webkit-outer-spin-button, .product-quantity .qty-input .product-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
            appearance: none;
    margin: 0;
  }
  .product-quantity .qty-input .qty-count {
    padding: 0;
    cursor: pointer;
    width: 32px;
    font-size: 1.25em;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
  }
  .product-quantity .qty-input .qty-count:before, .product-quantity .qty-input .qty-count:after {
    content: "";
    height: 2px;
    width: 10px;
    position: absolute;
    display: block;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .product-quantity .qty-input .qty-count--minus {
    background: #bebebe;
    color: #000;
  }
  .product-quantity .qty-input .qty-count--minus:hover{
    background: #ff3838;
    color: #fff;
    transition: 0.3s;
  }
  .product-quantity .qty-input .qty-count--add {
    background: #bebebe;
    color: #fff;
    transition: 0.3s;
  }
  .product-quantity .qty-input .qty-count--add:hover{
    background: #ff3838;
    color: #fff;
    transition: 0.3s;
  }
  .product-quantity .qty-input .qty-count--add:after {
    transform: rotate(90deg);
  }
  .product-quantity .qty-input .qty-count:disabled {
    color: #c1c1c1;
    background: #f4f4f4;
    cursor: not-allowed;
    border-color: transparent;
  }
  .product-quantity .qty-input .qty-count:disabled:before, .product-quantity .qty-input .qty-count:disabled:after {
    background: #ccc;
  }  

  /* product counter ------------------ */

.page-link{
    text-align: center;
}
.page-link a{
    padding: 9px 47px;
}
.outofstuck{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #ff00007a;
    z-index: 9;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.outofstuck h3{
    color: #fff;
    background-color: red;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 22px;
    font-weight: 600;
    cursor: none; 
}
.thisoutofstuck{
    cursor: none; 

    pointer-events: none;
}
.menu-section .item.thisoutofstuck .content{
    border: 1px dashed #f00;
}



/* cart sec ------------------ */ 
.menu-section .item .text .total-sec{
    width: 100%; 
}
.menu-section .item .text .total-sec .product-quantity .qty-input{
    padding: 3px;
}
.menu-section .item .text .total-sec .product-quantity .qty-input .qty-count{
    width: 27px;
    height: 27px;
}
.menu-section .item .text .total-sec .product-quantity .qty-input .product-qty{
    height: 27px;
}

.menu-section .item .text .total-sec ul{
    margin-bottom: 0;

}
.menu-section .item .text .total-sec ul li{
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px dashed #ebebeb;
    padding: 7px 0;
    align-items: center;
}
.menu-section .item .text .total-sec ul li h4{
    color: #8c8c8c;
    padding: 10px 0;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
}
.menu-section .item .text .total-sec ul li h5{
    font-weight: 600;
    color: #e4171d;
    padding-top: 0;
    margin-bottom: 0;
}
.menu-section .boxes.card-sec .item .text{
    padding-top: 10px;
}
.menu-section .boxes.card-sec .item .text .price h4{
    color: #ff3434;
}
.menu-section .item .text .total-sec ul li h5{
    color: #ff3434;

}

.menu-section .boxes.card-sec .item .text .action{
    margin-bottom: 0;
}
.menu-section .boxes.card-sec .item .text h3{
    margin-bottom: 0;
    padding-bottom: 6px;
    padding-top: 0;
}
.menu-section .item .text .total-sec ul li .delete{
    width: 100%;
    padding-top: 7px;
    padding-bottom: 6px;
}
.menu-section .item .text .total-sec ul li .delete .btn{
    width: 100%;
}

/* total ----------------- */
.total_card {}

.total_card .card {

	background: #ffffff;
	padding: 30px 20px;
	max-width: 620px;
	border-radius: 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	border: 1px solid #ebebeb;
	display: block;
}

.total_card .card h3 {

	font-size: 20px;
	font-weight: 700;
}

.total_card .card ul {

	padding: 0;
	margin-top: 20px;
	list-style-type: none;
	border: 1px solid #ebebeb;
}

.total_card .card ul li {

	border-bottom: 1px solid #ebebeb;
	padding: 21px 15px;
	color: #1d1d1d;
	overflow: hidden;
	font-weight: 700;
	font-size: 16px;
}

.total_card .card ul li:last-child {

	border-bottom: 0;
}

.total_card .card ul li span {

	float: left;
	color: #000;
	font-weight: 700;
}

.total_card .card ul li h4 {

	float: right;
	font-size: 19px;
	color: #272727;
	margin-bottom: 4px;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
}

.total_card .card ul li h4 em {

	font-style: normal;
	font-size: 12px;
	position: relative;
	top: -7px;
	color: #a8a8a8;
	font-weight: 500;
}

.total_card .card .btn {

	margin: 0 auto;
	width: 100%;
	padding: 11px 26px;
}

.total_card .card .send_order {

	text-align: center;
	margin-top: 3em;
}

.send_order .btn {

	font-weight: 600;
	animation: myanimation 1.5s infinite;
}

@keyframes myanimation {

	0% {

		background-color: #e4171d;
		border-color: #e4171d;
	}

	50% {

		background-color: #292929;
		border-color: #292929;
	}

}
/* total ----------------- */

/* cart sec ------------------ */ 




 /* menu section */
/* ------------------------------------------------------------ */
 

/* ------------------------------------------------------------ */
/* gallery section */
.gallery-section{
    padding-top: 4em;
}
.gallery-section .boxes{
    padding-top: 40px;
}
.gallery-section .boxes .item{
    margin-bottom: 22px;
}
.gallery-section .boxes .item .content{
    height: 320px;
    overflow: hidden; 
    transition: 0.3s;
    position: relative;
    border-radius: 10px;
} 
.gallery-section .boxes .item:hover .content::after {
  transition: 0.3s;
  border-color: #e4171d8f;
}
.gallery-section .boxes .item .content a{
    display: block;
    height: 100%;
}
.gallery-section .boxes .item .content img{
    object-fit: cover;
    width: 100%;
    height: 100%; 
    transition: 0.3s;
    border-radius: 10px;
}
.gallery-section .boxes .item .content img:hover{
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.4s;
}
/* gallery section */
/* ------------------------------------------------------------ */
 

/* ------------------------------------------------------------ */
 /* map */
 .map-section{
    padding-top: 4em;
 }
 .map-section .content{ 
    border-radius: 15px;
    padding: 10px;
 }
 .map-section .content iframe{
    width: 100%;
    height: 500px;
    border-radius: 15px;
    -webkit-filter: grayscale(100%);
 }
 /* map */
/* ------------------------------------------------------------ */
 
/* ------------------------------------------------------------ */
 /* footer */ 

 .homepage .footer {
    margin-top:20px
  }
  .footer {
    margin-top: 9em;
    border-top:1px solid #f9f9f9;
    background-color:#f9f9f9
  }
  .footer .top_part {
    padding:40px 0 30px
  }
  .footer .item .content .map_content iframe {
    width:100%;
    height:240px;
    -webkit-filter:grayscale(100%);
    filter:grayscale(100%)
  }
  .footer .item .logo {
    margin-bottom:16px
  }
  .footer .item .logo img {
    width:60%
  }
  .footer .item .text p {
    font-size:15px;
    color:#999;
    margin-bottom:23px
  }
  .footer .item .text a {
    font-size:15px;
    color:#e4171d;
    transition:.5s;
    position:relative
  }
  .footer .item_title span::after,
  .footer .item_title span::before {
    content:"";
    background-color:#e4171d;
    position:absolute;
    display:block
  }
  .footer .item_title {
    margin-bottom:32px
  }
  .footer .item_title span {
    color:#353535;
    font-size:19px;
    font-weight:700;
    position:relative;
    padding-bottom:9px
  }
  .footer .item_title span::before {
    width:20%;
    height:2px;
    left:15px;
    bottom:-7px
  }
  .footer .item_title span::after {
    width:6px;
    height:6px;
    border-radius:100%;
    bottom:-9px;
    left:0
  }
  .footer .item_opening_time {
    margin-bottom:8px;
    display:flex;
    flex-wrap:wrap
  }
  .footer .item_opening_time h6 {
  font-size: 16px;
    color:#999;
    font-weight:500;
    margin-bottom:0
  }
  .footer .item_opening_time h5 {
  font-size: 16px;
    color:#999;
    margin-left:17px
  }
  .footer .item_opening_time h5 {
    margin-right: 11px;
    direction: ltr;
    font-weight: 400;
  }
  .footer .item_opening_time span {
    color:#e4171d;
    font-size: 16px;
    width: 110px;
    display:inline-block
  }
  .footer .item_tweets {
    display:flex;
    margin-bottom:2px
  }
  .footer .bottom_part .links ul li a:hover,
  .footer .item_tweets a:hover,
  .footer .item_tweets p span,
  .page_content .contact .contact_form .item .input_content.active i {
    color:#e4171d
  }
  .footer .item_tweets p,
  .page_content p {
    color:#999;
    font-size:15px
  }
  .footer .item_tweets a {
    color:#999;
    font-size:15px;
    transition:.5s
  }
  .footer .item_tweets i {
    width:53px;
    color:#e4171d;
    position:relative;
    top:5px;
    margin-right:7px
  }
  .footer .item .links ul li:first-child a {
    padding-top:0
  }
  .footer .item .links ul li a {
    transition:.3s;
    display:block;
    padding:9px 0;
    color:#999;
    font-weight:500;
    font-size:15px
  }
  .footer .boxes,
  .page_content .about-section .text {
    padding-left:15px
  }
  .footer .bottom_part {
    padding:25px 0;
    border-top:1px solid #e5e5e5
  }
  .footer .bottom_part .text {
    text-align:end
  }
  .footer .bottom_part p {
    color:#999;
    margin:0;
    font-size:15px;
    font-weight:500
  }
  .footer .bottom_part .webdesign p {
    text-align:right
  }
  .footer .bottom_part .links ul li a {
    font-size:14px;
    padding:0 23px 0 0;
    color:#999;
    font-weight:600;
    transition:.3s
  }
  .footer .item .social_media ul {
    padding-left:0;
    margin:0;
    position:relative;
    text-align:left
  }
  .footer .item .social_media ul li {
    margin-right:21px;
    display:inline-block
  }
  .footer .item .social_media h3 {
    font-size:16px;
    margin-bottom:15px;
    font-weight:600
  }
  .footer .item .social_media ul li a {
    color:#e4171d;
    font-size:17px;
    padding:2px 0;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    border-radius:40px
  }
  .footer .item_title span::before {
    right: 15px;
  }
  .footer .item_title span::after {
    right: 0;
  }
 /* footer */
/* ------------------------------------------------------------ */
 
/* inner pages ==================================== */
/* banner ------------------------ */
.banner_top {
    width: 100%;
    height: 292px;
    background-color: #ececec54;
    display: block;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-top: 0;
    position: relative;
  }
  .banner_top::after{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #00000069;
    opacity: 0;
  } 
  .banner_top .content { 
    height: 100%;
    position: relative;
    z-index: 9;
  }
  .banner_top .content .white_svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    z-index: 9;
    direction: ltr;
}
.banner_top .content .white_svg svg {
  width: calc(160% + 1.3px);
  height: 37px;
  fill: #fff;
}
  .banner_top .content .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;

  }
  .banner_top .content h3 {
    color: #353535;
    margin-top: 3em;
    font-weight: 600;
    width: 100%;
    font-size: 34px;
    display: block;
    text-align: center;
    position: relative;
  }  
  
/* banner ------------------------ */

/* page content ------------------------ */
.page-content{
    padding-top: 6em;
}
/* page content ------------------------ */

/* about page ------------------------ */
.page-content .contact-sec{}
.page-content .contact-sec .text{}
.page-content .contact-sec .text span{
    font-weight: 500;
    color: #e4171d;
}
.page-content .contact-sec .text h3{
    font-weight: 600;
    font-size: 30px;
    margin-top: 7px;
    margin-bottom: 20px;
}
.page-content .contact-sec .text p{
    text-align: justify;
    padding-right: 10px;
}
.page-content .contact-sec .text a{}

.page-content .contact-sec .image{}
.page-content .contact-sec .image img{
    border-radius: 10px;
}


/* about page ------------------------ */

/* gallery page ------------------------ */
.page-content .gallery-section{
    padding-top: 0;
}
/* gallery page ------------------------ */

/* products page ------------------------ */
.page-content .menu-section{
    padding-top: 0;
}
/* products page ------------------------ */

/* products details page ------------------------ */
.page-content .product-image .detail table, th, td {
    border: 1px solid #373737;
    padding: 19px 10px;
  }
  
.page-content .product-image .detail table {
      border-collapse:collapse;
      caption-side:bottom;
      width: 100%;
} 
.page-content .product-image .detail table td{
    font-size: 18px;
    font-weight: 600;

}
.page-content .product-image .detail table td:nth-child(2){
    font-weight: 600;
    color: #e4171d;
    width: 25%;
    text-align: center;
}
.page-content .product-image .image{
	width: 50%;
}
.page-content .product-image .image.mobile{
    display: none;
}
.page-content .product-image .image .gallery_box{
	  display: block; 
}
.page-content .product-image .image .gallery_box .galeri{
	width: 100%;
	margin-top: 17px;
	margin-right: 13px; 	
} 

.page-content .product-image .image .main_img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 99;
    position: relative;  
}

.page-content .product-image .image .main_img a {
	width: 100%;
	height: 100%;
	display: block;
}

.page-content .product-image .image .main_img a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #373737;
    transition: 0.3s;
    border-radius: 15px;

}
  
.page-content .product-image .image .main_img a:hover img{
    border: 1px solid #e4171d;
    transition: 0.3s;
}
.page-content .product-image .image .galeri ul { 
	margin-bottom: 0; 
	margin-right: -12px;
}

.page-content .product-image .image .galeri ul li {
    list-style: none;
    width: 120px;
    height: 100px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    margin-bottom: 7px;
    margin-right: 9px;
    display: inline-block;
    border: 1px solid #373737;
    transition: 0.3s;
    border-radius: 15px;
}
.page-content .product-image .image .galeri ul li:hover{
    border: 1px solid #e4171d;
    transition: 0.3s;
}
.page-content .product-image .image .galeri ul li a {
	width: 100%;
	height: 100%;
	display: block;
}

.page-content .product-image .image .galeri ul li a img {
	width: 100%;
}

.page-content .product-image .image .galeri ul li a iframe {
	width: 100%;
	height: 48px;
}

.page-content .product-image .detail h3{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative; 
    color: #353535;
}
.page-content .product-image .detail .price{
	padding-top: 10px;
    padding-bottom: 10px;
} 
.page-content .product-image .detail .price h4{
	font-size: 26px;
    font-weight: 600;
    color: #e4171d;
    border-bottom: 1px solid #373737;
    padding-bottom: 10px;
} 
.page-content .product-image .detail .price span{
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 9px;
	display: block;
}
.page-content .product-image .detail .infor{
	
}
.page-content .product-image .detail .infor p{
    color: #959595;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}
.page-content .product-image .detail .infor .link{
    margin-top: 30px;
} 
.page-content .product-image .detail .infor .link a i{
    font-size: 21px;
    position: relative;
    top: 2px;
    margin-right: 8px;
} 




/* products details page ------------------------ */


/* contact page ------------------------ */
.page-content .contact_info .content {
	padding-right: 0em
}

.page-content .contact_info .content h5 {
    font-weight: 400;
    color: #e4171d;
    font-size: 17px;
}

.page-content .contact_info .content h2 {
	font-weight: 700
}

.page-content .contact_info .contact_details {
	margin-top: 3em
}

.contact_details ul {
	padding-left: 0
}

.contact_details ul li {
	list-style: none
}

.contact_details ul li a {
    display: inline-flex;
	padding-bottom: 20px;
    color: #919191;
	transition: .3s
}

.contact_details ul li a i {
    margin-right: 10px;
    margin-left: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-content .contact_form .form-content .item {
	margin-bottom: 20px
}
/* contact page ------------------------ */

.form-error{
    padding: 8px 10px;
    margin-bottom: 25px;
    border: 1px solid #c6282873;
    border-radius: 8px;
}
.form-error p{
    margin-bottom: 0;
    font-size: 15px;
    color: #dd4242;
}

.form-success{
    padding: 8px 10px;
    margin-bottom: 25px;
    border: 1px solid #39c73173;
    border-radius: 8px;
}
.form-success p{
    margin-bottom: 0;
    font-size: 15px;
    color: #24af2b;
}




 
/* inner pages ==================================== */


