/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/*------- TS ---------*/
.wpcf7 {
    direction: rtl!important;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	text-align: right;
}
.phone-plus {
	direction: ltr!important;
}
/*------- TS ---------*/
/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	background-color: #fff;
	color: #fff;
	font-weight: 400;
	font-size: 2rem;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 6.0rem;
	height: 6.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 6.0rem;
	height: 6.0rem;
	left: calc(50% - 3rem);
	top: calc(50% - 3rem);
	border-radius: 100%;
	background: #864622;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	width: 3.0rem;
}
.hamburger-menu span {
	background: #864622;
	width: 100%;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 0.5rem;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(0.82rem) rotate(135deg);
	-ms-transform: translateY(0.82rem) rotate(135deg);
	transform: translateY(0.82rem) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-0.82rem) rotate(-135deg);
	-ms-transform: translateY(-0.82rem) rotate(-135deg);
	transform: translateY(-0.82rem) rotate(-135deg);
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	padding: 2rem 0;
	background-color: #FFFFFF;
	-webkit-box-shadow: .0rem .5rem 1.6rem -.6rem rgba(0, 0, 0, 0.15);
	        box-shadow: .0rem .5rem 1.6rem -.6rem rgba(0, 0, 0, 0.15);
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}

#menu {
	text-align: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-right: 16rem;
}

#menu li {
	display: inline-block;
	color: #fff;
}

#menu li a {
	font-size: 1.6rem;
	color: #383330;
	font-weight: 700;
}
#menu>li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
#menu li ul {
    background-color: #864622;
    position: absolute;
    top: 100%;
    min-width: 16rem;
    padding: 1.5rem 1.2rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}
#menu li:hover ul{
	opacity: 1;
	pointer-events: all;
}
#menu li ul li{
	display: block;
}
#menu li ul li a:hover,
#menu li ul li a.active{
	color: #CAB5A4;
}
#menu>li>a.active,
#menu>li>a:hover {
	color: #CAB5A4;
}
.logo img{
	width: 6.5rem;
}
.drop_down i{
	margin-left: 0.7rem;
}
main{
	padding-top: 7.8rem;
}
/*home_content*/
.home_area{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.home_area::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.39);
	z-index: -1;
}
.home_content{
	padding: 16.8rem 0 19.4rem;
	max-width: 58rem;
}
.home_content h3{
	font-size: 1.6rem;
	line-height: 1.25;
	margin-bottom: 2.9rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.home_content h3 span{
	width: 7.5rem;
	height: 0.1rem;
	background-color: #fff;
	margin-left: 0.7rem;
}
.home_content h1{
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}
.button{
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 700;
	background-color: #864622;
	border-radius: 0.8rem;
	padding: 1.2rem 3.2rem;
	color: #fff;
}
.button:hover{
	background-color: #fff;
	color: #864622;
}
.outline:hover{
	background-color: #fff;
	color: #864622;
}
.outline {
    background-color: transparent;
    border: 0.1rem solid #fff;
}
/*arabic_area2*/
.arabic_area2{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 4rem 0 8rem;
}
.arabic_area2 h3 {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.78;
    color: #CF8E56;
    margin-bottom: 0.6rem;
    border-bottom: 0.1rem solid #CF8E56;
    display: inline-block;
    padding: 0 0 0.5rem 1rem;
}
.arabic_area2 h2{
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1.78;
	color: #864622;
}
.arabic_area2 p{
	color: #BFAEA4;
	line-height: 1.78;
}
.arabic_area2 p span{
	color: #000;
	font-weight: 700;
}
.custom_area2 img{
	width: 3.8rem;
	margin-left: 1.4rem;
}
.custom_area2 span{
	width: 51.6rem;
	height: 0.1rem;
	background-color: #BBB5B0;
}
/*arabic_area3*/
.arabic_area3{
	background-color: #FAFAFA;
	padding: 4.3rem 0 4.8rem;
}
.arabic_area3 img{
	width: 4rem;
}
.arabic_area3 h3{
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.78;
	color: #383330;
	margin: 0.7rem 0 0.4rem;
}
.arabic_area3 p{
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.78;
	color: #BFAEA4;
}
.arabic_area3 h2{
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.78;
	color: #864622;
}
.arabic_area3 h2 span{
	color: #000;
}
/*arabic_area4*/
.arabic_area4{
	padding: 9.5rem 0 8.5rem;
}
.arabic_area4 .title h2{
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.78;
	color: #383330;
	margin-bottom: 1.2rem;
	position: relative;
	z-index: 1;
}
.arabic_area4 .title h2::before{
	content: '';
	position: absolute;
	background-color: rgba(191, 174, 164, 0.26);
	width: 7.6rem;
	height: 3.4rem;
	top: 0;
	left: 50%;
	z-index: -1;
}
.arabic_area4 h3{
	font-size: 1.2rem;
	line-height: 1.78;
	color: #CF8E56;
	padding-bottom: 0.8rem;
	border-bottom: 0.1rem solid #CF8E56;
	display: inline-block;
}
.arabic_area4 h4{
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.78;
	color: #864622;
	margin-top: 1rem;
}
.area4_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.area4_box img{
	width: 1.6rem;
	margin-left: 0.8rem;
}
.area4_box p{
	max-width: 45.5rem;
	font-weight: 600;
	font-size: 1.2rem;
	color: #CAB5A4;
}
.media_img_box{
	width: 5rem;
	height: 5rem;
	background: #E8E8E8;
	border-radius: .5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.media_img_box img{
	width: 2.3rem;
}
.media h5{
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.78;
	color: #383330;
	margin-bottom: 0.4rem;
}
.media p{
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.87;
	color: #CAB5A4;
	max-width: 21.9rem;
}
.arabic_area4_right{
	position: relative;
	z-index: 1;
}
.arabic_area4_right::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 43.3rem;
    height: 30.9rem;
    right: -.8rem;
    top: .6rem;
    background-color: #CF8E56;
}
.area4_cart {
    padding: 1.1rem 1.5rem 1rem 1.7rem;
    background: -o-linear-gradient(323.52deg, rgba(134, 70, 34, 0.24) 0%, rgba(207, 142, 86, 0) 100%);
    background: linear-gradient(126.48deg, rgba(134, 70, 34, 0.24) 0%, rgba(207, 142, 86, 0) 100%);
    border: 0.1rem solid #FFFFFF;
    -webkit-backdrop-filter: blur(.2rem);
            backdrop-filter: blur(.2rem);
    border-radius: 0.8rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: -2.6rem;
    right: 5rem;
}
.area4_cart img{
	width: 3rem;
	margin-left: 2.2rem;
}
.area4_cart p{
	font-weight: 600;
	font-size: 1.6rem;
	color: #864622;
}
/*area_carousel*/
.area_carousel{
	margin: 11.6rem 0;
}
.area_carousel h3{
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.78;
	color: #CF8E56;
	padding-bottom: 0.8rem;
	border-bottom: 0.1rem solid  #CF8E56;
	display: inline-block;
}
.area_carousel h2{
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1.78;
	color: #864622;
	padding: 0.8rem 0 1.9rem;
	border-bottom: 0.1rem solid rgba(56, 51, 48, 0.33);
}
.carousel_item{
	border-radius: 0.8rem;
	overflow: hidden;
	border: 0.1rem solid #CAB5A4
}
.carousel_item h4{
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.78;
	color: #383330;
}
.carousel_item p{
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.78;
	color: #BFAEA4;
	max-width: 24.3rem;
}
.carousel_item h5{
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.78;
	text-decoration: underline;
	color: #864622;
}
.carousel_cont{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.owl-carousel .owl-item img {
}
.carousel_box .service-excerpt {
}
.slider1 .owl-nav button{
	position: absolute;
	left: 0;
	top: -8rem;
	background-color: transparent;
}
.slider1 .owl-nav .owl-prev{
	margin-left: 5rem;
}
.slider1 .owl-nav button img{
	width: 1.2rem;
}
.slider1 .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.slider1 .owl-dots button {
    height: 1.1rem;
    width: 1.1rem;
    background-color: transparent;
    border: 0.2rem solid #864622;
    padding: 0.2rem;
    margin: 0 0.6rem;
}
.slider1 .owl-dots button.active {
    background-color: #864622;
}
.carousel_cont{
	padding: 1.3rem 3.4rem 1.7rem 3.1rem;
}
/*arabic_area5*/
.arabic_area5{
	padding: 5rem 0 6rem;
	background-color: #864622;
	margin: 8.5rem 0;
	position: relative;
}
.arabic_area5::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 82%;
	left: 0;
	bottom: 0;
	background-image: url(var(--ts4wp_uri)/img/shape1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.title h2{
	font-weight: 600;
	font-size: 3.6rem;
	line-height: 1.78;
	color: #FFFFFF;
}
.arabic_area5_box{
	background-color: #fff;
	border-radius: 4.0rem .0rem 4.0rem 4.0rem;
	padding: 1.8rem 2rem 1.7rem 1.9rem;
}
.arabic_area5_cont{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 0.1rem solid #CF8E56;
	border-radius: 4.0rem .0rem 4.0rem 4.0rem;
	padding: 2.5rem 2rem;
}
.arabic_area5_box img {
    width: 4.5rem;
    height: 4.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    margin-left: 1.2rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.carousel_cont a{
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 2rem;
}
.arabic_area5_box h2{
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.78;
	color: #000000;
	margin-bottom: 0.8rem;
}
.arabic_area5_box p{
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 1.71;
	color: #9CA9BA;
}
.arabic_area6{
	padding: 8.5rem 0;
}
.arabic_area6 .title h2{
	color:  #864622;
	margin-bottom: 1.6rem;
}
.arabic_area6 .title p{
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.78;
	color: #CAB5A4;
	max-width: 78.2rem;
	margin: 0 auto;
	padding: 0 2rem 2rem;
	border-bottom: .2rem solid #BBB5B0;
}
.arabic_area6_img{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.arabic_area6_img .img6_box{
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
.arabic_area6_img img{
	width: 17.7rem;
}
/*arabic_form*/
.arabic_area7{
	padding: 15rem 0 10.9rem;
}
.arabic_form{
	background-color: #F5F5F5;
	border-radius: 4.2rem;
	padding: 3.4rem 10.1rem 7.9rem;
}
.arabic_form h2{
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.78;
	color: #864622;
}
.arabic_form p{
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 175.9%;
	color: #BFAEA4;
	/*max-width: 47.9rem;*/
}
.arabic_form input {
	 width: 100%;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 175.9%;
    color: #CAB5A4;
    border: none;
    background-color: transparent;
    padding-bottom: 0.7rem;
    border-bottom: 0.1rem solid #383330;
    margin-bottom: 3rem;
}
.arabic_form button{
	border: none;
	width: 100%;
}
.arabic_form_img{
	position: relative;
}
.arabic_form_img img {
    position: absolute;
    width: 35.4rem;
    -webkit-box-shadow: 1.0rem 2.2rem 3.6rem -.9rem rgba(0, 0, 0, 0.15);
            box-shadow: 1.0rem 2.2rem 3.6rem -.9rem rgba(0, 0, 0, 0.15);
    border-radius: 18.9rem;
    top: -13rem;
    left: 0;
}
/*footer*/
.footer_mid li:not(:first-child){
	padding-right: 2rem;
}
.footer_mid li a:hover{
	color: #864622;
}
.footer_last li a:hover{
	color: #864622;
}
footer{
	background-color: #BFAEA4;
	padding: 4.6rem 0 6.3rem;
}
footer h3{
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.75;
	color: #000000;
}
.social_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.social_icon a:not(:last-child) {
    margin-left: 1.8rem;
}
.social_icon a {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    background-color: #fff;
    color: #BFAEA4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.8rem;
}
.social_icon a:hover{
	background-color: #864622;
	color: #fff;
}
.footer_mid li a{
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.75;
	color: #000000;
}
.footer_last li a{
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.75;
	color: #000000;
}
.footer_last li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_last li:not(:last-child){
	margin-bottom: 1.2rem;
}
.footer_last li img{
	width: 1.3rem;
	margin-left: 1.6rem;
}
/*return-to-top START CSS*/

.back-to-top {
	font-size: 2.4rem;
	width: 4.5rem;
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	border-radius: 50%;
	background: #864622;
	z-index: 1000;
}

.back-to-top i {
	color: #fff;
}