html {
	scroll-behavior: smooth;
}
@font-face {
    font-family: 'Kaj';
    src: url('../font/Graphik\ Arabic\ Super.otf')  format('truetype'), 

}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "kaj";
}

a {
	text-decoration: none;
	display: inline-block;
	color: #fff;
}
div{
	direction: rtl;
}

:root {
	--logo-cl: linear-gradient(
		36deg,
		rgba(232, 196, 105, 1) 25%,
		rgba(252, 232, 153, 1) 50%,
		rgba(239, 174, 22, 1) 75%,
		rgba(252, 232, 153, 1) 100%
	);
}
/* loader */
.loader {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 999999;
}

.loader.hidden {
	animation: fadeOut 1s;
	-webkit-animation: fadeOut 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeOut {
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
.containerload {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tree {
	position: relative;
	width: 50px;
	height: 50px;
	transform-style: preserve-3d;
	transform: rotateX(-20deg) rotateY(30deg);
	animation: treeAnimate 5s linear infinite;
}

@keyframes treeAnimate {
	0% {
		transform: rotateX(-20deg) rotateY(360deg);
	}

	100% {
		transform: rotateX(-20deg) rotateY(0deg);
	}
}

.tree div {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transform: translateY(calc(25px * var(--x))) translateZ(0px);
}

.tree div.branch span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #69c069, #77dd77);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	border-bottom: 5px solid #00000019;
	transform-origin: bottom;
	transform: rotateY(calc(90deg * var(--i))) rotateX(30deg) translateZ(28.5px);
}

.tree div.stem span {
	position: absolute;
	top: 110px;
	/* updated top value */
	left: calc(50% - 7.5px);
	width: 15px;
	height: 50%;
	background: linear-gradient(90deg, #bb4622, #df7214);
	border-bottom: 5px solid #00000019;
	transform-origin: bottom;
	transform: rotateY(calc(90deg * var(--i))) translateZ(7.5px);
}

.shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	filter: blur(20px);
	transform-style: preserve-3d;
	transform: rotateX(90deg) translateZ(-65px);
}
.typee{
    font-size: 20px;
    font-weight: bolder;
    font-family: sans-serif;
	margin-bottom: 300px;
	position:fixed;
}
/* ____ */
@keyframes blink{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
/* _______________ */

.information {
	background-color: #fff;
	/* height: 120px; */
	text-transform: capitalize;
	/* display: flex;
	align-items: center; */
	/* display: flex;
    justify-content: space-between; */
}
.information > a {
	color: #282828;
	text-decoration: none;
}

.info1 {
	color: #585858;
	text-transform: uppercase;
	/* display: inline-block; */
}
.info2 {
	font-size: 0.9rem;
	font-weight: bolder;
	transition: all 300ms;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
}
.icn {
	padding: 1rem;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	color: #efae16;
	border: 0.001rem solid #efae16;
	font-size: 1.5rem;
	transition: all 300ms;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
}
.information:hover   i {
	background-color: #efae16;
	color: black;
}
.information a:hover .info2 {
	color: #efae16;
}
.logosize {
	width: 250px;
	height: 100px;
}
/* ________________________navbar */
.navigation {
	background-color: #282828;
	border-radius: 3rem;
	-webkit-border-radius: 3rem;
	-moz-border-radius: 3rem;
	-ms-border-radius: 3rem;
	-o-border-radius: 3rem;
	/*width: 75%;
    */
	display: flex;
	position: absolute;
	left: 50%;
	padding: 0.4rem;
	z-index: 999;
	transform: translate(-50%);
	-webkit-transform: translate(-50%);
	-moz-transform: translate(-50%);
	-ms-transform: translate(-50%);
	-o-transform: translate(-50%);
}
.bg-yl {
	background-color: #efae16;
}
.aNav {
	margin-left: auto;
	font-size: 1.3rem;
	color: #fff;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	list-style: none;
}
.Home {
	background-color: #efae16;
	color: #282828;
	padding: 0.8rem;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}
.aNav:nth-child(n):hover {
	background-color: #efae16;
	color: #282828;
	border-radius: 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
}


/* slide show */

.slideshowImage {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slideshowImage img {
	position: absolute;
	left: 0;
	top: 2rem;
	width: 100%;
	height: auto;
	background-position: center center;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	opacity: 0;
	display: block;
}
.slideTxt {
	opacity: 0;
}

.slideshowImage .active img {
	opacity: 1;
}
.slideshowImage .active .slideTxt {
	opacity: 1;
	padding: 2.5rem;
}
@keyframes txt {
	0% {
		transform: translateX(37.5rem);
		-webkit-transform: translateX(37.5rem);
		-moz-transform: translateX(37.5rem);
		-ms-transform: translateX(37.5rem);
		-o-transform: translateX(37.5rem);
		opacity: 0.2;
	}
	100% {
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		opacity: 1;
	}
}
.slideshowImage .active .slideTxt h2 {
	position: absolute;
	top: 39.5%;
	right: 30%;
	padding: 1.25rem;
	background: rgba(0, 0, 0, 0.7);
	color: #efae16;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-size: 2.5rem;
	animation: txt 0.8s;
	-webkit-animation: txt 0.8s;
	font-weight: lighter;
}

.slideshowImage .active .slideTxt h3 {
	position: absolute;
	top: 30%;
	right: 25%;
	padding: 0.625rem;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-size: 1.875rem;
	font-weight: lighter;
	animation: txt 0.5s;
	-webkit-animation: txt 0.5s;
}
.slideshowImage .active .slideTxt1 h2 {
	position: absolute;
	top: 26%;
	right: 25%;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.7);
	color: #efae16;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-size: 2.5rem;
	animation: txt 0.5s;
	-webkit-animation: txt 0.5s;
	font-weight: lighter;
}
.slideshowImage .active .slideTxt1 h3 {
	position: absolute;
	top: 39.5%;
	right: 25%;
	padding: 0.625rem;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-size: 1.875rem;
	font-weight: lighter;
	animation: txt 0.8s;
	-webkit-animation: txt 0.8s;
}
.sliderbtn {
	width: 32.5px;
	height: 40px;
	padding: 0.625rem;
	font-size: 1.25rem;
	color: #d3d3d3;
	background-color: rgba(119, 119, 119, 0.2);

	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.next {
	position: absolute;
	/* right: 1.25rem; */
	/* top: 24.125rem;
	transform: translateY(-50px);
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px); */
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	cursor: pointer;
	inset: 0;
	margin:auto 1.25rem auto auto;
}
.prev {
	position: absolute;
	/* left: 20px;
	top: 24.125rem; */
	border-radius: 50%;
	/* transform: translateY(-50px);
	-webkit-transform: translateY(-50px);
	-moz-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	-o-transform: translateY(-50px);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%; */
	cursor: pointer;
	inset: 0;
	margin:auto auto auto 20px;
}
.next:hover,
.prev:hover {
	color: #000;
	background-color: #fff;
}

/* __________ */

.opLow {
	opacity: 0.179;
	font-size: 5.625rem;
	color: #efae16;
	position: absolute;
	top: -3.75rem;
}
.opLowNum {
	opacity: 0.179;
	font-size: 5.625rem;
	color: #efae16;
	position: absolute;
	top: -3.75rem;
	margin-top: 0;
}
.num {
	margin-top: 5rem;
	position: relative;
}
/* @media (max-width) {
	
}
.marginR{
	margin-top: 5rem;
	margin-right: 5rem;
}
.marginL{
	margin-top: 5rem;
	margin-left: 5rem;
} */


.text-yellow {
	color: #efae16;
}
.col-12 > h2 {
	font-size: 2.5rem;
}


.pTxt {
	line-height: 1.5;
	font-size: 1.125rem;
	color: rgba(0, 0, 0, 0.5);
	margin-top: 0.938rem;
	text-align: justify;
}


/* -------------------- */
.bgSlide {
	background-color: #efae16;
	overflow: hidden;
	height: 757px;
}
.opLowProject {
	opacity: 0.179;
	font-size: 90px;
	color: #000;
	position: absolute;
	top: -60px;
	margin-top: 0px;
}
.merg {
	margin-top: 150px;
}
.wrapper {
	display: flex;
	max-width: 1200px;
	position: relative;
	margin-top: 50px;
}
.wrapper i  {
	top: 50%;
	height: 44px;
	width: 44px;
	color: #343f4f;
	cursor: pointer;
	font-size: 1.15rem;
	position: absolute;
	text-align: center;
	line-height: 44px;
	background: #fff;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: transform 0.1s linear;
	z-index: 20;
}
.wrapper i:active {
	transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover {
	background: #f2f2f2;
}
.wrapper i:first-child {
	left: -22px;
}
.wrapper i:last-child {
	right: -22px;
	display: none;
}
.wrapper .carousel a{
	display: inline;
	margin-left: 14px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.wrapper .carousel {
	font-size: 0px;
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	scroll-behavior: smooth;
}
.carousel.dragging {
	cursor: grab;
	scroll-behavior: auto;
}
.carousel.dragging a img {
	pointer-events: none;
}
.carousel a img {
	width: 420px;
	height: 329px;
	object-fit: cover;
	user-select: none;
	width: calc(100% / 3);
	border-radius: 20px;

	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
/* .carousel a img:hover{
	background-color: rgba(0,0, 0, 0.5);
	
} */
.carousel a img:first-child {
	margin-left: 0px;
}

@media screen and (max-width: 900px) {
	.carousel a img {
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 550px) {
	.carousel a img {
		width: 100%;
	}
	.bgSlide{
		height: 100vh;

	}
}


.carousel a{
	position: relative;
}



.carousel-content1{
	position: absolute;
	width: 0;
	height: 0;
	padding: 20px;
	inset: 0 ;
	margin: auto;
	border-radius: 10px;
	background: rgba(0, 0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	transition: 0.6s;
}

/* ====================================== */

.carousel a:hover .carousel-content1{
	opacity: 1;
	width: 320px;
	height: 290px;
}


.carousel-content1 h1{
	font-size: 35px;
	color: #efae16;
	margin-bottom: 15px;
}
.carousel-content1 p{
	font-size: 10px;
	font-weight:200;
}


/* ============================== */
.carousel-content1 > *{
	transform: translateY(25px);
	transition: transform 0.6s;
}
.carousel-content1 > *:hover{
	transform: translateY(0px);
}


/* _________________________________watch video  */
.watchVideo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 70px;
}
.num figure {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.num figure img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	width: 37.5rem;
	height: 32.353rem;
}

.num figure button {
	position: absolute;
	background-color: #282828;
	border-radius: 40px 30px 30px 40px;
	-webkit-border-radius: 40px 30px 30px 40px;
	-moz-border-radius: 40px 30px 30px 40px;
	-ms-border-radius: 40px 30px 30px 40px;
	-o-border-radius: 40px 30px 30px 40px;
	font-size: 25px;
	border: none;
	cursor: pointer;
	padding: 3px;
	box-sizing: border-box;
}
.num figure button .play {
	padding: 20px 25px;
	background-color: #efae16;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.num figure button span {
	color: #efae16;
	letter-spacing: 2px;
	transition: all 0.3s ease-in-out;

}
.num figure:hover span{
	padding: 0 30px;

}
.num figure:hover .play {
	padding: 25px 30px;
}
.check {
	margin-top: 40px;
	font-size: 20px;

}
/* @media (max-width:1400px){
	.num{
		margin: 30px;
	}
} */
.check:hover .mark {
	background-color: #efae16;
	color: #282828;
}
.mark {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	color: #efae16;
	font-size: 25px;
	padding: 7px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}


@keyframes translateAnim {
	0% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
	33.3333333% {
		transform: translateY(-50px);
		-webkit-transform: translateY(-50px);
		-moz-transform: translateY(-50px);
		-ms-transform: translateY(-50px);
		-o-transform: translateY(-50px);
		opacity: 0;
	}
	66.6666666% {
		transform: translateY(50px);
		-webkit-transform: translateY(50px);
		-moz-transform: translateY(50px);
		-ms-transform: translateY(50px);
		-o-transform: translateY(50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		opacity: 1;
	}
}

.btnCount {
	padding: 8px;
	font-size: 16px;
	font-weight: bold;
	background-color: #efae16;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	overflow: hidden;
	margin-top: 10px;
}
.btnCount:hover {
	background-color: #282828;
	color: #efae16;
}
.btnCount p {
	margin: 0;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.btnCount:hover p {
	animation: translateAnim 0.3s ease-in-out;
	-webkit-animation: translateAnim 0.3s ease-in-out;
}

.display {
	text-align: center;
	margin-top: 50px;
}
.text {
	display: flex;
	justify-content: center;
	align-items: center;
}
.text .purecounter {
	font-size: 45px;
}
.btns {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ptag {
	font-size: 16px;
	letter-spacing: 1px;
}
/* ____________________backtotop */
.backtotop {
	position: fixed;
	color: #efae16;
	padding: 15px;
	background-color: #282828;
	right: 40px;
	bottom: 20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	cursor: pointer;
	opacity: 0;
	z-index:9999;
}

.backtotop:hover .bktop {
	animation: translateAnim 0.5s;
	-webkit-animation: translateAnim 0.5s;
}

.backtotop:hover {
	background-color: #efae16;
	color: #000;
}
/* modal */

.Modal_container {
	position: absolute;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	z-index: 1000;
}


.Modal_container.show {
	opacity: 1;
	pointer-events: auto;
}

video {
	width: fit-content;
	height: 100vh;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.Modal nav {
	width: 100vw;
	position: fixed;
	top: 0;
	right: 0;
	padding: 20px;
	color: #fff;
	height: 70px;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}
.btnclose {
	position: fixed;
	font-size: 20px;
	right: 20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	padding: 10px;
	transition: background-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	border: none;
	outline: none;
}
.btnclose:hover {
	background-color: #777;
	color: #d3d3d3;
}
/* 
----- testimonials ------ */

.testimonials-sec{
	background-color: #f7f3e9;
	display: grid;
	place-items:center;
	height: 70vh;
	margin-top: 15px;
}

.section-header{
	margin-top: 40px;
	position: relative;
	text-align: center;
	font-weight: 900;
	padding-bottom: 20px;
	color: #282828;

}

.section-header:after{
	content: '';
	height: 3px;
	width: 200px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 100px);
	background: #efae16;
}

.section-header span{
	display: block;
	font-size: 15px;
	font-style: 300;
}

.testimonials{
	
	
	max-width: 1000px;
	padding: 0 15px 50px;
	margin: 30px auto 80px auto;

}

.single-items{
	background: #f2f2f2;
	color: #111;
	padding: 15px;
	margin: 50px 15px;
}

.profile{
	margin-bottom: 40px;
	text-align: center;
}

.img-area{
	margin: 0 15px 15px 15px;
}

.img-area img{
	height: 100px;
	width: 100px;
	zoom:0fr;
	border-radius: 50%;
	border: 7px solid #efae16;
}

.content{
	font-size: 18px;
}
.content p{
	text-align: justify;
}
.content p span{
	font-size: 48px;
	margin-right: 20px;
	color: #efae16;
}

.socials i{
	margin-right: 25px;
}

.bio h4{
	color: #757575;
	font-weight: lighter;
}

.carousel-control-next-icon,
.carousel-control-prev-icon{
	background-color: #efae16;
	border-radius: 50%;
}
.carousel-control-prev-icon{
	margin-right: 40px;
}
.carousel-control-next-icon{
	margin-left: 40px;
}













/* -----start new projects--- */
.end-section{
	background-color: #efae16;
	position: relative;
}
.end-section .container  div {
	direction: ltr ;
}
.end-section .bi{

	color: #efae16;
	background-color:#000;
	font-size: 4rem;
	border-radius: 5rem;
	padding: 30px;
	transition: all .4s;
	
}
.strt-new{
	font-size: 1.9rem;
	color: #000;
	position: absolute;
	top: 60px;
	left: 16rem;
	bottom: 5rem;
}
.strt-new-second{
	position: absolute;
	top: 110px;
	left: 17rem;
	bottom: 3rem;

}


#btn-strt{
	background-color: #000;
	color: #efae16;
	font-size:2rem;
	padding: 1rem;
	width: 20rem;
	height: 5.2rem;
	border-radius: 3rem;
	margin-top: 3rem;
	margin-left: 1.5rem;
	margin-bottom: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .6s;
	
}
#btn-strt:hover{
	background-color: #fff;
	color: #000;
	border: #fff;
	

}
.end-section .bi-chevron-double-right{
	color: #efae16;
	background-color: #b1b1b100;
	font-size: 1.5rem;
}













/* ----------footer------------- */
.site-footer{
	background-color: #000;

}
.footer-title{
	color: #efae16;
	border-bottom: 1px dotted #585858;
}

.footer-links {
	padding-left: 0;
	list-style: none;
	color: #b1b1b1;
	}
	.footer-links li {
	display: block;
	}
	.footer-links a {
	color: #b1b1b1;
	}
	.footer-links i:active,
	.footer-links i:focus,
	.footer-links i:hover {
	color: #fff;
	text-decoration: none;
	}
	.footer-links li a{
		font-size: 1rem;
		transition: all .3s;
		margin-top: 2px;
		
	}
	.footer-links li a:hover{
		transform:scale( 1.1 );
		color: #efae16;
		cursor: pointer;
		
	}




	@media (max-width: 768px) {
		
		video{
			width: 100vw;
			height: 100vh;
		}
		.backtotop{
			right: 10px;
			bottom: 70px;
			}
		.num figure img{
			width: 21.938rem;
			height: 18.926rem;
	
		}
		.col-12 >img{
			width:auto;
			height: 505.55px;
		}
		.opLow {
			font-size: 4.625rem;
			top: -2.75rem;
		}
		.slideshowImage img,.slideshowImage {
			height: 17.5rem;
		}
		.slideshowImage .active .slideTxt h2 {
			position: absolute;
			top: 41%;
			right: 0%;
			color: #efae16;
			font-size: 1.1rem;
		}
		.slideshowImage .active .slideTxt h3 {
			position: absolute;
			top: 26%;
			right: 20%;
			padding: 0.625rem;
			font-size: 1.1rem;
		}
		.slideshowImage .active .slideTxt1 h2 {
			position: absolute;
			top: 26%;
			right: 50%;
			transform: rotateX(100%);
			padding: 0.625rem;
			font-size: 1.1rem;
			-webkit-transform: rotateX(100%);
			-moz-transform: rotateX(100%);
			-ms-transform: rotateX(100%);
			-o-transform: rotateX(100%);
		}
		.slideshowImage .active .slideTxt1 h3 {
			position: absolute;
			top: 40.5%;
			right: 0;
			font-size: 1.1rem;
		}
		.navigation div{
			direction: ltr;
		}
		.navigation {
			position: fixed;
			bottom: 0;
			flex: 0 0 auto;
			width: 100vw;
			background-color: #efae16;
			border-radius: 3rem 3rem 0 0;
			-webkit-border-radius: 3rem 3rem 0 0;
			-moz-border-radius: 3rem 3rem 0 0;
			-ms-border-radius: 3rem 3rem 0 0;
			-o-border-radius: 3rem 3rem 0 0;
		}
		.Home {
			background-color: #282828;
			color: #efae16 !important;
		}
		.aNav {
			color: #282828;
		}
		.aNav:nth-child(n):hover {
			background-color: #282828;
			color: #efae16;
		}
		.end-section{
			position: relative;
		}
		
		.end-section .bi{
			font-size: 2rem;
			padding: 1rem;
		}
		.strt-new{
			font-size: 1.4rem;
			position: absolute;
			left: 6rem;
			top: 4rem;
			
		}
		.strt-new-second{
			font-size: 0.8rem;
			position: absolute;
			left: 6rem;
			top:8.9rem;
		}
		#btn-strt{
			background-color: #000;
			color: #efae16;
			font-size: 1.5rem;
			padding: 0.8rem;
			width: 15rem;
			height: 5rem;
			border-radius: 3rem;
			margin-top: 3rem;
			margin-left: 4.5rem;
			margin-bottom: 4rem;
			display: flex;
			justify-content: center;
			align-items: center;
			transition: all .6s;	

		}
		
		#working-hours{
			margin-bottom: 7rem;
		}
	}
	/* /////// CAROUSEL HOVER IMAGES IN MOBILE SCREEN /////// */
	@media screen and (max-width: 768px){
		.carousel{
			position: relative;
		}
		.carousel-content1{
			position: absolute;
			right:1rem;
		}
		.carousel-content2{
			position: absolute;
			right: 27rem;
		}
		.carousel-content3{
			right: 52.5rem;
		}
		.carousel-content4{
			right: 77.5rem;
		}
		.carousel-content5{
			right: 103rem;
		}
		.carousel-content6{
			right: 128rem;
		}
		.carousel-content7{
			right: 153rem;
		}
	}
	.about {
		margin: 70px 0;
	}
	.gallery__item img {
		max-width: 100%;
		vertical-align: top;
		width: 600px;
		height: 400px;
		object-fit: cover;
	
	}
	.gallery {
		display: flex;
		margin: 10px auto;
		max-width: 600px;
		position: relative;
		padding-top: 66.6666666667%;
	}
	@media screen and (min-width: 200px) {
		.gallery {
			padding-top: 400px;
		}
	}
	.gallery__img {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
		border-radius: 50px;
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		-ms-border-radius: 50px;
		-o-border-radius: 50px;
	}
	.gallery__thumb {
		padding-top: 6px;
		margin: 6px;
		display: block;
		
	}
	.gallery__thumb img{
		height: 92px;
		object-fit: cover;
		border-radius:25px;
		-webkit-border-radius:25px;
		-moz-border-radius:25px;
		-ms-border-radius:25px;
		-o-border-radius:25px;
	}
	.gallery__selector {
		position: absolute;
		opacity: 0;
		visibility: hidden;
	}
	.gallery__selector:checked + .gallery__img {
		opacity: 1;
	}
	.gallery__selector:checked ~ .gallery__thumb > img {
		box-shadow: 0 0 0 3px #0be2f6;
	}
	.map iframe{
		position: relative;
		width: 100%;
		height: 50vh;
		top: 10px;
		border: 0;
	}
	
	
/* vir tour */
.btn-vir{
	position: absolute;
	inset: 0;
	margin: auto;
	height: 60px;
	top: -16px;
	z-index: 4;
}


#viewer {
	background-color: #333333;
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
#preloadContainer {
	z-index: 2;
	position: relative;
	width: 100%;
	height: 100%;
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
}

