:root{
	--main-color: #A08173;
	--black: #e6bcb7;
    --dark-black: rgb(0, 0, 0);
	--bg: #fff;
	--heading: #939580;
	--border: .1rem solid rgba(255,255,255,.3);
}

*{
	margin: 0;padding: 0;
	box-sizing: border-box;
	outline: none;border: none;
	text-decoration: none !important;
	transition: .3s linear;
}

body
{
	background: var(--bg) !important;
	overflow-x: hidden;
}

html{
	overflow-x: hidden;
	scroll-padding-top: 90px;
	scroll-behavior: smooth;
}

html::-webkit-scrollbar{
	width: 8px;
}

html::-webkit-scrollbar-track{
	background: transparent;
}

html::-webkit-scrollbar-thumb{
	background: black;
	border-radius: 40px;
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - LOADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
#loader-wrapper{position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: white; z-index: 500;}

.loader {
    position: absolute;
    top: 55%; margin-top: -50px;
    left: 50%; margin-left: -50px;
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #222; /* Green */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popup style*/

#popUpMain{
	position: fixed;
	width: 100%;
	height: 100%;
	/* background: rgba(0, 0, 0, 0.6); */
	z-index: 1001;
}

#popup{
	width: 500px;
	height: 250px;
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(/img/subscribe-bg.webp);
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
	box-shadow: 3px 4px rgb(255, 255, 255, 0.5);
	text-align: center;
}

#popup input{
	background-color: rgb(255, 255, 255, 0.8);
	padding: 8px 12px;
	border: none;
	background-color: transparent;
	color: white;
	border-bottom: 2px solid white;
}

#newsheading{
	transform: translateY(50px);
	color: white;
	letter-spacing: .4px;
	font-family: Arial, Helvetica, sans-serif;
}

#emailid{
	width: 60%;
	padding: 5px;
	margin-top: 70px;
}

/*Popup style End */




/* header section style */

.header{
	/* background: rgba(113,48,56, 0.7); */
	background:transparent;
	display: flex;
	color: var(--heading);
	align-items: center;
	justify-content: space-between;
	padding: 16px 7%;
	position: fixed;
	top: 0;left: 0;right: 0;
	z-index: 5000;
}

.header .links a{
	margin: 0 16px;
	color: white;
	font-size: 15px;
	letter-spacing: .2px;
}

.header .icons div{
	color: white;
	cursor: pointer;
	font-size: 18px;
	margin-left: 16px;
}

.header .icons div:hover{
	color: rgb(192, 192, 192);
}

#menu-btnn{
	display: none;
}

/*on scroll effect*/

.nav-change{
	background: #713038;
}
/* header section */


/*home section style*/

.home{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(rgba(0, 0, 0, .2),rgba(0, 0, 0, .2)),url(/img/banner-img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.home .contentt h1{
	font-size: 50px;
    margin-top: 120px;
	text-transform: uppercase;
	color: var(--heading);
}

.home .contentt p {
	font-size: 20px;
    font-weight: 300;
	color: #eee;
	line-height: 0;
	padding: 6px 0;
}

.btnn{
	margin-top: 16px;
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	color: var(--bg);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: #fff;
}

.btnn span{
	position: relative;
	z-index: 3;
}

.btnn:after{
	content: '';
	display: block;
	width: 100%;height: 100%;
	position: absolute;
	right: 0%;top: 0%;
	background: var(--main-color);
	transition: .5s;
	z-index: 1;
}

.btnn:hover:after
{
	right: -100%;
}

.btnn:hover{
	color: var(--dark-black);
}

/*home section style end*/


/* our Story & our Mission style */
.bg0 {background-color: #fff;}
.p-t-75 {padding-top: 75px;}
.p-b-120 {padding-bottom: 120px;}
.p-b-148 {padding-bottom: 148px;}
.p-t-7 {padding-top: 7px;}
.p-r-85 {padding-right: 85px;}
.mtext-111 {
font-family: Poppins-Bold;
font-size: 25px;
line-height: 1.2;
}
.p-b-16 {padding-bottom: 16px;}

.stext-113 {
font-family: Poppins-Light;
font-size: 14px;
line-height: 1.7857;
}
.cl2 {color: #333;}
.cl6 {color: #888;}
.p-b-26 {padding-bottom: 26px;}
.m-lr-auto {margin-left: auto; margin-right: auto;}

/*---------------------------------------------*/
.how-bor2,
.how-bor1 {
position: relative;
z-index: 1;
}

.how-bor2::before,
.how-bor1::before {
content: "";
display: block;
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
border: 3px solid #ccc;
}

.how-bor1::before {
bottom: -21px;
left: -21px;
}

@media (max-width: 767px) {
.how-bor1::before {
bottom: -21px;
right: -21px;
left: auto;
}
.p-l-0-md {padding-left: 0;}
.p-r-0-md{padding-right: 0;}
}

.how-bor2::before {
bottom: -21px;
right: -21px;
}
/*---------------------------------------------*/
.hov-img0 {
display: block;
overflow: hidden;
}

.hov-img0 img{
width: 100%;
-webkit-transition: transform 0.9s ease;
-o-transition: transform 0.9s ease;
-moz-transition: transform 0.9s ease;
transition: transform 0.9s ease;
}

.hov-img0:hover 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);
}
.p-b-30, .p-tb-30 {padding-bottom: 30px;}
.p-l-85 {padding-left: 85px;}
@media (max-width: 991px) {
.p-l-15-lg {padding-left: 15px;}
.p-r-15-lg {padding-right: 15px;}
}
.bor16 {
border-left: 3px solid #e6e6e6;
}
.p-l-29 {padding-left: 29px;}
.p-b-9 {padding-bottom: 9px;}
.m-t-22 {margin-top: 22px;}
.stext-114 {
font-family: Poppins-Italic;
font-size: 15px;
line-height: 1.666667;
}
.p-r-40, .p-lr-40 {padding-right: 40px;}
.p-b-11 {padding-bottom: 11px;}
.stext-111 {
font-family: Poppins-Regular;
font-size: 13px;
line-height: 1.6923;
}
.cl8 {color: #555;}
.p-b-30, .p-tb-30 {padding-bottom: 30px;}
.hov-img0 {
display: block;
overflow: hidden;
}
.hov-img0 img{
width: 100%;
-webkit-transition: transform 0.9s ease;
-o-transition: transform 0.9s ease;
-moz-transition: transform 0.9s ease;
transition: transform 0.9s ease;
}

.hov-img0:hover 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);
}
/* our Story & our Mission style End*/


/* Button */

.btnn-appoinment{
	margin-top: 16px;
	display: inline-block;
	padding: 14px 32px;
	font-size: 18px;
	color: var(--bg);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: rgba(160, 129, 115, 0.7);
}

.btnn-appoinment:hover{
    background-color: rgb(160, 129, 115);
}

.btnn-apoinment span{
	position: relative;
	z-index: 3;
}

/* Button */


/*project style*/

.project .box-container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	gap: 22px;
	margin-right: 50px;
	margin-left: 50px;
	padding: 20px 0;
}

.project .box-container .box{
	position: relative;
	cursor: pointer;
	box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.06),
	  0px 20px 31px 3px rgba(0, 0, 0, 0.07), 0px 8px 20px 7px rgba(0, 0, 0, 0.01);
	overflow: hidden;
}

.project .box-container .box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center;
}

.project .box-container .box:hover img{
	transform: scale(1.1);
}

.project .box-container .box .contentt{
	position: absolute;
	top: 0;left: 0;right: 0;bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(231, 228, 228);
	background: rgba(0, 0, 0, .4);
	text-align: center;
	opacity: 0;
}

.project .box-container .box .contentt h3{
	font-size: 30px;
}

.project .box-container .box:hover .contentt{
	opacity: 1;
}

.heading{
text-align: center;
color: var(--heading);
padding: 8px 0;
font-family: Poppins-Bold;
font-size: 32px;
line-height: 1.2;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@1&display=swap');
.mini-heading{
	text-align: center;
	color: #333;
	font-family: 'Poppins', sans-serif !important;
	font-style: italic;
    font-size: 32px;
    line-height: 1.2;
	padding: 4px 0;
}

.paragraph{
	text-align: center;
	font-size: 16px;
	color: #747474;
	padding: 14px 0;
	line-height: 1.8;
}

.submit-button{
	justify-content: center;
	text-align: center;
}
/* Total Event Coverage */

.section-work-data{
	transition: all 0.7s linear;
	margin-top: 50px !important;
	margin-bottom: 50px !important;
}

#only-for-colour{
	font-size: 32px;
	color: #939580;
}

@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

#counting{
	font-size: 50px;
	font-family: "Courgette";
	color: #323232;
}

/* Total Event Coverage End*/


/* wait-costumer */
.wpo-page-title{
	background: url(/img/waiting-cos.jpeg) no-repeat top/cover;
    min-height: 360px;
    position: relative;
    display: flex;
	text-align: center;
    justify-content: center;
    flex-direction: column;
	color: #fff;
    z-index: 1;
}
/* wait-costumer End*/


/* nextwork */


/*team style*/


#team-1{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.box-11{
    width: 266px;
    height: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    position: relative;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar{
    width: 50%;
    height: 4px;
    position: absolute;
    left: 50%;
    top:0;
    transform: translate(-50%);
    background-color: #333;
    border-radius: 0 0 10px 10px;
}

.verify{
     color: #333;
}

.nav-11{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-11 .heart{
   color: rgba(155,155,155);
}

.nav-11 .heart:before {
    content: '\f004';
    font-family: fontAwesome;
    line-height: 30px;
    z-index: 1;
    cursor: pointer;
}
.nav-11 .heart-btn{
    display: none;
}

.details {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.details img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.details p{
    font-size: 0.8rem;
    color: #7a7a7a;
    margin: 5px 0;

}

.bt-n{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 8px;
}

.bt-n a{
    height: 45px;
    width: 45px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 45px;
}

.bt-n a i {
    padding-left: 13px;
}

.fa-facebook-f{
color: #3B5999;
}
.fa-twitter{
color: #55ACEE;
}
.fa-instagram{
color: #C80DE9;
}
.fa-youtube{
color: #FE0000;
}
.fa-facebook-f:hover{
	color: #333;
	transition: all ease-in-out 0.3s;
}
.fa-twitter:hover{
	color: #333;
	transition: all ease-in-out 0.3s;
}
.fa-instagram:hover{
	color: #333;
	transition: all ease-in-out 0.3s;
}
.fa-youtube:hover{
	color: #333;
	transition: all ease-in-out 0.3s;
}

.box-11:hover{
    transform: scale(1.1);
    transition: all ease-in-out .5s;
}

@media(max-width:612px){
    .box-11{
        flex-grow: 0.7;
    }
}

/* Review Section */
.rev-img1:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.review-section{
	line-height: 20px;
	text-align: center;
}
.review-section img{
	border-radius: 100px;
	overflow: hidden;
}
.review-name{
	font-size: 25px;
	color: #333;
}
.review-para{
	font-family: Poppins-Light;
	font-size: 14px;
	line-height: 1.7857;
	text-align: start;
	color: #888;
}

/* Review Section End */


/* pricing-features */
  
  .background{
	padding: 0 25px 25px;
	position: relative;
	width: 100%;
  }
  
  .background::after{
	content: "";
	background: #E5CFC9;
	background: -moz-linear-gradient(top, #E5CFC9 0%, #E5CFC9 100%);
	background: -webkit-linear-gradient(top, #E5CFC9 0%, #E5CFC9 100%);
	background: linear-gradient(to bottom, #E5CFC9 0%, #E5CFC9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60a9ff', endColorstr='#4394f4',GradientType=0 );
	height: 350px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
  }
  
  .pricing-features-item{
	  list-style: none !important;
  }
  
  @media (min-width: 900px) {
	.background{
	  padding: 0 0 25px;
	}
  }
  
  .container{
	margin: 0 auto;
	padding: 50px 0 0;
	max-width: 960px;
	width: 100%;
  }
  
  .panel{
	background-color: #fff;
	border-radius: 10px;
	padding: 15px 25px;
	position: relative;
	width: 100%;
	z-index: 10;
  }
  
  .pricing-table{
	/* box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08),
	  0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02); */
	display: flex;
	flex-direction: column;
  }
  
  @media (min-width: 900px) {

	.pricing-table{
	  flex-direction: row;
	}

  }
  
  .pricing-table *{
	text-align: center;
  }
  
  .pricing-plan{
	border-bottom: 1px solid #e1f1ff; 
	padding: 25px;
  }
  
  .pricing-plan:last-child{
	border-bottom: none;
  }
  
  @media (min-width: 900px){

	.pricing-plan{
	  border-bottom: none;
	  border-right: 2px solid #D4B0A5;
	  flex-basis: 100%;
	  padding: 25px 20px;
	}
  
	.pricing-plan:last-child{
	  border-right: none;
	}

  }
  
  .pricing-img{
	max-width: 100%;
  }
  
  .pricing-header{
	color: rgb(71, 71, 71);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 1px;
  }
  
  .pricing-header-span{
	color: #939580;
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 30px;
	letter-spacing: 1px;
  }
  
  .pricing-header-span span{
	  font-size: 12px;
  
  }
  
  .pricing-features{
	color: #7B7B8F;
	font-weight: 500;
	letter-spacing: 1px;
  }
  
  .pricing-features-item{
	font-size: 14px;
	line-height: 1.8;
	padding: 8px 0;
  }
  
  .pricing-button{
	border: 1px solid #9dd1ff;
	border-radius: 10px;
	color: #348efe;
	display: inline-block;
	margin: 25px 0;
	padding: 15px 35px;
	text-decoration: none;
	transition: all 150ms ease-in-out;
  }
  
  .pricing-button:hover,
  .pricing-button:focus{
	background-color: #e1f1ff;
  }
  
  .pricing-button.is-featured{
	background-color: #48aaff;
	color: #fff;
  }
  
  .pricing-button.is-featured:hover,
  .pricing-button.is-featured:active{
	background-color: #269aff;
  }

  /* footer */

  .footer{
  background: #FBF7F6;
  padding: 30px 0px;
  font-family: "Play", sans-serif;
  padding: 40px 0;
  text-align: center;
}

.footer .row{
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: gray;
  font-size: 0.8em;
}

.footer .row a{
  color: gray;
  transition: 0.5s;
}

.footer .row a:hover{
  color: #D4B0A5;
}

.footer .row a i{
  font-size: 2em;
  margin: 0% 1%;
}

.footer-link ul{
	display: flex;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	gap: 20px;
}

.footer-link ul :first-child{
	list-style: none;
}

.menu__link{
  font-size: 20px;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  opacity: 0.75;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.menu__link:hover{
  opacity: 1;
}





/*media query start*/
@media (max-width: 991px){
	.header{
		padding: 12px 20px;
	}

	.btnn{
		padding: 13px 20px;
	}

    .btnn-appoinment
    {
        margin-top: 12px;
        padding: 12px 20px;
        font-size: 16px;
    }
	
	#for-none-sm{
		display: none;
	}

	.mini-heading{
		font-size: 28px !important;
	}

}
@media (max-width: 768px){
	.header .links a {
		color: #ccc;
		display: block;
		margin: 15px;
		padding: 14px;
		border-bottom: var(--border);
	}
	.header .links a:hover{
		padding-bottom: 15px;
	}

	.header.active{
		background: #713038;
	}

	.header .links.active{
		right: 0;
	}	

	#menu-btnn{
		display: inline-block;
		font-size: 18px;
		cursor: pointer;
		margin-right: 4px;
	}

	.header .links{
		position: absolute;
		top: 100%;right: -100%;
		background: rgba(113, 48, 56, .96);
		width: 100%;
		height: calc(100vh - 9.5rem);
		text-align: left;
	}

	.wpo-page-title {
		min-height: 250px;
	}

	.line-none{
		display: none;
	}

	.contact .roww .contentt{
		text-align: center;
	}
	
	.project .box-container{
		margin-left: 0;
		margin-right: 0;
	}

    .home .contentt h1{
	font-size: 40px;
    margin-top: 120px;
	text-transform: uppercase;
	color: var(--heading);
    }

    .btnn-appoinment{
        margin-top: 12px;
        padding: 12px 20px;
        font-size: 16px;
    }

	.project .box-container .box .contentt{
		color: rgb(50, 50, 50);
		opacity: 1;
	}

	#only-for-colour{
		font-size: 30px;
	}

	#counting{
		font-size: 40px;
	}

	#for-none-sm{
		display: none;
	}

	.review-top{
		padding-top: 16px;
	}

	.review-para{
		padding: 0 100px;
	}

}
@media (max-width: 450px){

	.home .contentt h1{
		font-size: 28px;
	}
	.home .contentt p{
		font-size: 15px;
	}


	#only-for-colour{
		font-size: 20px;
	}

	#counting{
		font-size: 30px;
	}

	#for-none-sm{
		display: none;
	}


	.mini-heading{
		font-size: 20px !important;
	}

   .review-top{
	    padding-top: 14px;
    }
   .review-para{
	    padding: 0 50px;
    }

}


/* Bottom to top button */

.to-top{
    background-color: #FFFFFF;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    box-shadow: 0 0 5px rgb(0 0 0 / 17%);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
  }

  .to-top i{
    color: black;
    font-size: 22px;
  }

  .to-top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
  }

  /* Bottom to top button end */