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

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

body {
	font-family: 'Tajawal-Regular';
	font-size: 16px;
	text-align: right;
	direction: rtl;
	overflow-x: hidden;
}

a#menu-toggle {
	margin-left: 10px;
}

ul {
	list-style-type: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

a,
button,
img {
	transition: all .8s cubic-bezier(.4, 0, 0, 1);
	-webkit-transition: all .8s cubic-bezier(.4, 0, 0, 1);
}

p,
ul {
	margin: 0;
}

a:hover,
a:active,
a:focus,
a:visited {
	text-decoration: none !important;
}

input:focus,
textarea:focus,
a:focus,
button:focus {
	outline: none !important;
	text-decoration: none;
}

.btn-site {
	background-image: linear-gradient(96deg, #010080 0%, #0200e6 51%, #010080 100%);
	display: inline-block;
	color: #FFF;
	padding: 12px 50px;
	border-radius: 10px;
	background-size: 150% 100%;
	border: 0;
	transition: 300ms;
}

.btn-site:hover {
	background-position: 100% 150%;
	color: white;
}

header,
.product,
footer {
	transition-duration: .3s;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
}

.active-menu header,
.active-menu .product,
.active-menu footer {
	transform: translateX(-250px);
}

.list-inline {
	padding-right: 0;
	padding-left: 0;
}

.list-inline-item:not(:last-child) {
	margin-left: .5rem;
	margin-right: 0;
}

.form-group label {
	display: block;
}

.form-check-inline .form-check-input {
	margin-left: .3125rem;
	margin-right: 0;
}

.form-check-inline {
	margin-left: .75rem;
	margin-right: 0;
}

/*Header*/

a#menu-toggle {
	display: block;
	position: relative;
	cursor: pointer;
	z-index: 420;
}

a#menu-toggle > span {
	display: inline-block;
	position: relative;
	top: -4px;
	width: 22px;
	height: 2px;
	margin-top: -2px;
	transition-property: background;
	transition-duration: .3s;
	transition-timing-function: ease;
	background-color: #1d1d1d;
}

a#menu-toggle > span:before {
	top: 6px;
}

a#menu-toggle > span:after {
	bottom: 6px;
}

a#menu-toggle > span:after,
a#menu-toggle > span:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	transform-origin: 50% 50%;
	transition: top .3s ease .2s, transform .3s ease, background-color .3s ease;
	background-color: #1d1d1d;
}

header .logos {
	display: flex;
	align-items: center;
}

header .logos img.img-fluid {
	max-width: 100px;
}

header {
	background-image: url('../images/background-20.jpg');
	background-position: 0 -530px;
	background-size: cover;
	padding: 10px 0;
	position: relative;
}

header:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-height: 100px;
	background: linear-gradient(0deg, white, transparent);
}

ul.main-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: white;
	z-index: 1;
	padding: 0;
	min-width: 250px;
	transition-duration: .3s;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transform: translateX(250px);
}

ul.main-menu li a {
	display: block;
	color: #151515;
	padding: 10px 15px;
}

.active-menu ul.main-menu {
	transform: translateX(0);
}

.product ul.nav.nav-tabs {
	border: 0;
	padding: 0;
	margin-bottom: 1.5rem;
}

.product .nav-tabs li.nav-item {
	margin: 0;
}

.product .nav-tabs li.nav-item a.nav-link {
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Tajawal-Bold';
	font-size: 14px;
	opacity: .4;
	color: black;
}

.product .nav-tabs li.nav-item a.nav-link figure {
	max-width: 40px;
	margin: 0 0 10px;
	flex: 0 0 40px;
}

.product .nav-tabs li.nav-item a.nav-link figure img {
	height: 100%;
	width: 100%;
	object-fit: scale-down;
}

.product .nav-tabs li.nav-item a.nav-link.active,
.product .nav-tabs li.nav-item a.nav-link:hover {
	opacity: 1;
}

.product .item-box {
	position: relative;
	overflow: hidden;
	margin: 0 0 30px;
}

.product .item-box .img-item {
	height: 250px;
	overflow: hidden;
}

.product .item-box .img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product .item-box .caption-item {
	position: absolute;
	background-color: white;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 1px solid #232323;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.product .item-box .caption-item a {
	color: #101010;
	font-family: 'Tajawal-Bold';
	display: block;
	margin: 0 0 10px;
}

.product .item-box .caption-item span.price {
	color: #c49a6c;
	font-family: 'Tajawal-Bold';
	position: absolute;
	bottom: 20px;
}

.product .item-box:hover .caption-item {
	opacity: 1;
	visibility: visible;
}

.active-menu a#menu-toggle > span {
	background-color: transparent;
}

.active-menu a#menu-toggle > span:before {
	transform: rotate(-45deg);
	top: 0;
}

.active-menu a#menu-toggle > span:after {
	transform: rotate(45deg);
}

.active-menu a#menu-toggle > span:after,
.active-menu a#menu-toggle > span:after {
	transition: top .3s ease, transform .3s ease .2s, background-color .3s ease .2s;
	top: 0;
}

.modal-header .close {
	margin: -1rem auto -1rem -1rem;
}

.modal-body figure {
	overflow: hidden;
	height: 320px;
	position: relative;
}

.modal-body figure img {
	height: 100%;
	width: 100%;
	object-fit: scale-down;
	position: relative;
}

.modal-body figure span {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-size: 120%;
	filter: blur(27px);
	background-position: 40px -170px;
	z-index: 0;
}

.modal-body .content {
	line-height: 1.9;
	font-size: 17px;
}

.modal-body .content .image .item {
	display: block;
	height: 140px;
	overflow: hidden;
}

.modal-body .content .image .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-body .content ul li i {
	color: #c76901;
}

footer {
	text-align: center;
	background-color: #fbfbfb;
}

footer h2 {
	margin: 0 0 1rem;
	font-size: 18px;
	font-family: 'Tajawal-Bold';
}

footer ul {
	padding: 0;
}

footer .bottom-footer {
	padding: 30px 0;
	border-top: 1px solid #eee;
}

footer .item {
	padding: 2rem 0;
}


header div.lang a {
	background-color: #c69d70;
	display: inline-block;
	padding: 4px 19px;
	border-radius: 7px;
	font-size: 15px;
	color: white;
}

header div.lang a img {
	display: none;
}

header div.lang a:hover {
	background-color: #ab7841;
}

.modal-body .video iframe {
    max-width: 100%;
}

@media only screen and (max-width : 767px) {
	.container-fluid.p-5 {
		padding: 15px !important;
	}

	.product .item-box .img-item {
		height: 170px;
	}

	.product ul.nav.nav-tabs {
		flex-wrap: inherit;
		overflow: auto;
	}

	footer .item {
		padding: 15px 0;
	}

	footer .bottom-footer {
		padding: 20px 0;
	}

	.product .nav-tabs li.nav-item a.nav-link {
		text-align: center;
		font-size: 13px;
	}

	.modal-body .content .image .item {
		margin: 0 0 30px;
	}

	header {
		background-position: 0 -130px;
		background-repeat: no-repeat;
	}

	ul.nav.nav-tabs.fixed {
		position: fixed;
		z-index: 9;
		top: 0;
		background-color: white;
		left: 0;
		right: 0;
	}

	.product .nav-tabs li.nav-item {
		max-width: 110px;
		flex: 0 0 110px;
	}

	.product {
                min-height: 800px;
        }

}
