.container {
    width: 100%;
    max-width: 1170px !important;
    position: relative;
    padding: 0;
}

* {
    padding: 0;
    outline: none;
    margin: 0;
}

a.down {}

a {
    text-decoration: none;
    transition: all 0.5s ease 0s;
    outline: none;
}

a:hover {
    transition: all 0.5s ease 0s;
    outline: none;
}


/*@font-face {
font-family:DIN;
font-style:normal;
font-weight:normal;
src:url("fonts/ArbFONTS-DINNEXTLTARABIC-LIGHT-1.ttf") format('truetype')
}
*/

@font-face {
    font-family: sky;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/sky.ttf") format('truetype')
}

@font-face {
    font-family: sky bd;
    src: url("fonts/2c458bc98aac2311643f30a231a7ea30.woff2")format("woff2"), url("fonts/2c458bc98aac2311643f30a231a7ea30.woff")format("woff")
}




@font-face {
    font-family: f29;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/29ltbukraregular.ttf") format('truetype')
}
@font-face {
    font-family: f29r;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/29ltbukraregular.ttf") format('truetype')
}

@font-face {
    font-family: f29b;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/29ltbukrabold.ttf") format('truetype')
}
@font-face {
    font-family: f29bi;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/29ltbukrabolditalic.ttf") format('truetype')
}

@font-face {
 font-family:american;
 font-style:normal;
 font-weight:normal;
 src:url("fonts/american-typewriter-regular.ttf") format('truetype')
}


body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Roboto;
	font-family: american;
    font-size: 19px; 
    font-weight: 300;
    text-align: left;
    direction: ltr;

}
/*  */
.mas{
    background: #b79b38;
    padding: 5px 10px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
}
@media (max-width: 769px) {
    .mas{
        padding: 5px;
        font-size: 12px;
    }   
}
header{
    padding: 10px;
    background: #fff;
}
header .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
header .container .block{
    padding: 5px;
}
header .container .block img{
    width: auto;
    height: 150px;
    display: block;
    margin: 0 auto 10px;
}
@media (max-width: 769px) {
	header .container{
		display: flex;
		flex-direction: row-reverse;
	}
	header .container .block img{
		height: 75px;
		float: left;
		margin: 0 0 0 0;
	}	
}
/*  */

.topnav{
    width: 100%;
    display: flex;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    justify-content: center;
    /* border-top: 1px solid #0d0d0e29; */
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    text-transform: capitalize;
}
.topnav li{
    padding: 0 10px;
    position: relative;
}
.topnav li a{
    color: #000;
    text-decoration: none;
    outline: none;
    display: block;
    padding: 10px 20px;
    font-size: 18px;
}
.topnav li:hover > a{
    color: #B49730;
}
.topnav li.current-menu-item a{
    color: #B49730;

}
.topnav li ul{
    display: none;
    position: absolute;
    top: 95%;
    left: 0;
    padding: 10px 0 0;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    width: 230px;
    z-index: 99;
    background: #fff;
}
.topnav li ul ul{
    display: none;
    position: absolute;
    top: 0;
    left: 220px;
    padding: 0 0 0 15px;
    list-style: none;
    flex-direction: column;
    align-items: flex-start;
    width: 230px;
    z-index: 99;
}
.topnav li:hover > ul{
    display: flex;
}
.topnav li ul li{
    width: 100%;
    padding: 0;
    margin: 0;
}
.topnav li ul li a{
    background: #fff;
    display: block;
    padding: 10px 18px;
    color: #000;
    border-bottom: 1px solid #eee;
}
.bar{
    display: none;;
}
@media (max-width: 769px) {
    .bar{
        display: block;
        position: absolute;
        top: 27px;
        right: 10px;
        width: 40px;
        height: 30px;
        /* background: #f00; */
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }
    .bar::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 80%;
        border-top: 1px solid #000;

    }
    .topnav{
        display: block;
        flex-wrap: wrap;
        list-style: none;
        padding: 30px 10px;
        margin: 0;
        border-top: none;
        z-index: 9999999;
        background: #fff;
        position: fixed;
        top: 0;
        transition: all 0.5s ease 0s;
        left: -320px;
        height: 100vh;
        width: 300px;
        overflow-y: auto;
    }
    .open{
transition: all 0.5s ease 0s;
left: 0;
box-shadow: 0 0 10px #ddd;
    }
    .topnav li{
        padding: 10px 10px;
        position: relative;
        width: 100%;
        display: block;
    }
    .topnav li a{
        color: #000;
        text-decoration: none;
        outline: none;
        display: block;
        padding: 10px 15px;
        font-size: 18px;
    }
    .topnav li:hover > a{
        color: #B49730;
    }
    .topnav li.current-menu-item a{
        color: #B49730;
    
    }
    .topnav li ul{
        display: none;
        position: relative;
        top:auto;
        left: auto;
        padding: 10px 0 0;
        list-style: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        z-index: 99;
        background: #fff;
    }
    .topnav li ul ul{
        display: none;
        position: relative;
        top: auto;
        left: auto;
        padding: 0 ;
        list-style: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        z-index: 99;
    }
    .topnav li:hover > ul{
        display: flex;
    }
    .topnav li ul li{
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .topnav li ul li a{
        background: #fff;
        display: block;
        padding: 10px 18px;
        color: #000;
        border-bottom: 1px solid #eee;
    }
}


/*  */
#searchform{
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
#searchform .s{
    border: none;
    padding: 0 30px 0 0;
    border-bottom: 1px solid #ddd;
    height: 50px;
    outline: none;
    width: 100%;
    font-size: 15px;
}
#searchform button{
    width: 40px;
    height: 44px;
    border: none;
    outline: none;
    display: flex;
    color: #00000066;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
}



/*  */
.slider{
    padding: 0;
    margin: 0;
    position: relative;
    border: none;
    overflow: hidden;
}
.slider .item{
    padding: 0;
    border: none;
    margin: 0;
    position: relative;
}
.slider .item img{
    width: 100%;
    border: none;
    height: 600px;
    object-fit: cover;
}
.slider .item video{
    border: none;
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.slider .item .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slider .item .text .container{
    display: flex;
}
.slider .item .text .block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}
.slider .item .text h2{
    font-size: 23px;
    margin: 0 0 10px;
}
.slider .item .text a{
    min-width: 230px;
    display: inline-block;
    padding: 10px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
}
.slider .item .text a:hover{
    color: #fff;
    background: #000;
}
/*  */
section{
    padding: 60px 10px;
    overflow: hidden;
    clear: both;
}
.story{
    padding: 60px 0;

}
.story .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}
.story .container .block{
    padding: 20px 20px;
    display: flex;
    color: #000;
    flex-direction: column;
    align-items: flex-start;
}
.story .container .block img{
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin: auto;
    max-height: 500px;
}
.story .container .block h1{
    color: #B49730;
    margin: 0 0 20px;

}
.story .container .block p{}
.story .container .block a{
    min-width: 230px;
    display: inline-block;
    padding: 10px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    text-decoration: none;
    margin: 20px 0 0;
    text-align: center;
}
.story .container .block a:hover{
    color: #000;
    background: #fff;
}

.category{}
.category .container{
    display: flex;
    flex-wrap: wrap;
}
.category .container .block{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.category .container .block h1{
    color: #B49730;
    margin: 0 0 20px;
    padding: 0 10px;
}
.category .container .block .box{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    /* height: 100%; */
    text-align: center;
    padding: 10px;
}
.category .container .block .box a{
    font-size: 20px;
    color: #000;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
	overflow: hidden;
}

.category .container .block .box img{
    max-width: 100%;
transition: all 0.5s ease 0s;
    margin: 0 auto;
    display: flex;
}
.category .container .block .box:hover img{
transition: all 0.5s ease 0s;
transform: scale(1.1);
}


.category .container .block .box h4{
    font-size: 20px;
    color: #000;
    text-decoration: none;
    margin: 0;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
}
/*  */
.best{
    background: #f7f7f7;
}
.best .container{}
.best .container .block{
    display: flex;
    flex-wrap: wrap;
}
.best-box{
    padding: 10px;
}
.best-box a{
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    outline: none;
    color: #000;
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 1px solid #f7f7f7;
	overflow: hidden;
}
.best-box a img{
    width: auto;
    height: 200px;
    max-width: 100%;
transition: all 0.5s ease 0s;
    display: block;
    margin: auto;
}
.best-box a:hover img{
transition: all 0.5s ease 0s;
transform: scale(1.1);
}
.best-box a h3{
    margin: 20px 0;
    text-align: center;
    color: #000;
    font-size: 17px;
    width: 100%;
}
.best-box a span{
    color: #000;
    font-size: 14px;
    width: 100%;
    text-align: center;
    font-family: tahoma;
}
.owl-buttons{
    display: flex;
    justify-content: center;
    text-transform: uppercase;
}
.owl-buttons div{
    margin: 0;
}
/*  */
.contact{
    overflow: hidden;
}
.contact .container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.contact .container .block{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact .container .block h1{
    color: #B49730;
    margin: 0 0 30px;
    padding: 0;
}
.contact .container .block img{
	max-width: 100%;
	height: auto;
}
.contact .container .block iframe{
    width: 100%;
    height: 540px;
    margin: 0 0 20px;
/*     filter: grayscale(1); */
}
.contact .container .block form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
label{
    width: 100%;
}

.wpcf7-form-control{
    width: 100%;
    min-height: 30px;
    max-height: 90px;
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    padding: 10px  0;
}
.wpcf7-submit{
    background: #000;
    color: #fff;
    border: none;
    
}
/*  */
footer{
    clear: both;
    background: #000;
    padding: 20px 10px;
    text-align: center;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}
@media (max-width: 769px) {
    footer .container{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        font-size: 15px;
        flex-direction: column;
        justify-content: center;
    }
}

footer .container .box{
    padding: 10px;
    color: #fff;
}
footer .container .box a{
    color: #fff;
    text-decoration: none;
    outline: none;
}
footer .container .box a:hover{
    color: #B49730;
}
/*  */
.cover{
    padding: 0;
}
.cover img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.pro{
    padding: 5px;
}
/*  */
.filter{
    width: 100%;
    margin: 0 0 10px;
}
ul.sub{
    list-style: none;
    margin: 0 0 50px;
    padding: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
ul.sub li{
    padding: 5px;
}
ul.sub li a{
    padding: 10px 20px;
    border: 1px solid #ddd;
    display: inline-block;
    color: #444;
    text-decoration: none;
    outline: none;
    text-transform: capitalize;
}
ul.sub li a:hover{
    background: #B49730;
    border-color: #B49730;
    color: #fff;
}
/*  */
.product-det{}
.product-det .container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px !important;
    font-size: 0;
}
.product-det .container .block{
    padding: 20px;
    font-size: 19px;
}
.product-det .container .block h1{
    color: #B49730;
    margin: 0 0 20px;
    font-size: 30px;
}
.product-det .container .block ul{
    font-weight: 400;
}

.product-det .container .block img{
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
}
.product-det .container .block video{
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
}
.carousel-inner .carousel-item .box{
    display: flex;
    min-height: 545px;
    justify-content: center;
    align-items: center;
}
@media (max-width: 769px) {
    .carousel-inner .carousel-item .box{
        min-height: 400px;
    }
}

/*  */
.carousel-indicators {
    position: relative !important;
    right: 0;
    bottom: auto !important;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin:  15px 0 0 !important;
}
.carousel-indicators button{
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #ddd !important;
}
.carousel-indicators button img{
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.carousel-indicators button video{
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.carousel-indicators .active{
    opacity: 1;
}
/*  */
.code{
    display: block;
    width: 100%;
    margin: 0 0 15px;
    color: #000;
    font-weight: 400;
    font-size: 15px;
}
/*  */
.media{
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0 0;
}
.media a{
    font-size: 40px;
    text-decoration: none;
    outline: none;
    margin: 0 5px;
    color: #000;
}
.media a:hover{
    color: #B49730;
}
.contact-home .container{
    display: flex;
    align-items: flex-end;
}
/*  */
.review-box{
    padding: 50px 10px 15px;
}
.review-box .box{
    background: #fff;
    /* box-shadow: 0 0 10px #aaaaaa6e; */
    position: relative;
    height: 100%;
    padding: 0 20px 20px;
    border: 1px solid #aaaaaa6e;
    display: flex;
    flex-direction: column;
}
.review-box .box img{
    margin: -60px auto 20px !important;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #aaaaaa6e;
}
.review-box .box h5{}
.review-box .box p{
    font-size: 15px;
}


.owl-next{
	font-size: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -15px;
}
.owl-prev{
	font-size: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.owl-next:after{
	content: "\f105";
	font-family:fontawesome;
	font-size: 20px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.owl-prev:after{
	content: "\f104";
	font-family:fontawesome;
	font-size: 20px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category .owl-next{
	right: -20px !important;
}
.category .owl-prev{
	left: -20px !important;
}
@media (max-width: 769px) {
	.block-phone{
		font-size: 13px;
	}
}
/*  */
.services-all .category:nth-child(odd) .container{
	display: flex;
	flex-direction: row-reverse;
	
}

.services-all .category{
	border-bottom: 1px solid #f1f1f1
	
}

a.mor{
	display: inline-block;
	border: 1px solid #ddd;
	padding: 10px 15px;
	border-radius: 5px;
	color: #000;
	width: 160px;
	text-align: center;
	margin: 20px 0 0;
}
a.mor:hover{
	background: #000;
	color: #fff;
}

.wa {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background-image: url(img/wa.png);
    background-repeat: no-repeat;
    background-size: 100%;
transition: all 0.5s ease 0s;
background-position: center;
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 99;
}


/*  */
ul li.menu-item-has-children:after{
	content: "\f107";
	font-family: fontawesome;
	position: absolute;
	right: 10px;
	top: 15px;
	font-size: 14px;
	z-index: 99;
}
@media (min-width: 769px) {
	ul li li.menu-item-has-children:after{
		transform: rotate(-90deg);
	}
}


.nav-desk{
	display: flex;
	align-items: center;
	padding: 5px  15px;
	margin: 0 auto;
	/* max-width: 1200px; */
	border-top: 1px solid #dddddd;
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 99999;
}
@media (max-width: 769px) {
	.nav-desk{
	border-top: none;
}
}

.nav-desk .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
}
.nav-desk img{
	height: 50px;
	width: auto;
	margin: 0;
	display: none;
}
.nav-desk #searchform{
	display: none;
	
	width: 200px;
	#searchform .s{
		border: none !important
	}
}

.block-vid-imd{
	display: flex;
	padding: 10px 0 !important;
	flex-wrap: wrap;
}
.block-vid-imd .boxx{
	padding: 10px;
	position:relative;
}
.block-vid-imd .boxx > div{
	border: 1px solid #ddd;
	display: flex;
	height: 100%;
}
@media (min-width: 769px) {
	.block-vid-imd .boxx > div{
	min-height: 400px
}
}

button.sw{
	position: absolute;
	top: 20px;
	left: 0;
	color: #000;
	border: none;
	outline: none;
	background: none;
	font-family: tahoma;
	font-weight: 100;
	font-size: 12px;
	padding: 30px 0 0;
	z-index: 9;
	cursor: pointer;
	width: 80px;
	text-align: center;
}
.but-selver:after{
	content:"";
	position: absolute;
	top: 0;
	left: 50%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-left: -10px;
	background: #9e9e9e;
	background: linear-gradient(0deg, rgba(158, 158, 158, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.but-gold:after{
	content:"";
	position: absolute;
	top: 0;
	left: 50%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-left: -10px;
background: #ffe27a;
background: linear-gradient(0deg, rgba(255, 226, 122, 1) 0%, rgba(255, 255, 255, 0) 100%);
}


.product-det .container .block video.selver{
	display: none;
}
.but-gold{
	display: none;
}

#carouselExampleIndicators{
	display: none;
}
@media (max-width: 769px) {
#carouselExampleIndicators{
	display: block !important;
}
	.sx{
		display: none !important
	}
}




/* .accordion-item .accordion-button.collapsed:after {
    background-image: url(img/+.png) !important;
  } */




/***
*******************************************************/

@media (max-width: 769px) {}



/*::placeholder { 
color: #ffffff50;
}*/


/*
background-color: rgba(80,104,140,0.5);
transition: all 0.5s ease 0s;
transform: scale(1.2);

*/

.owl-carousel {
    direction: ltr !important;
    position: relative;
}