:root {
	--custom-color: #9c2e67;
	--color: #9c2e67;
	--bg-light: #e6f3ff;        	
	--hover: #9c2e67;
}

body {
	margin: 0;
	padding: 0;
}

img,
iframe,
video {
	max-width: 100%;
	vertical-align: middle;
}

a {
	outline: none;
	text-decoration: none;
	color: #555;
}

h4 {
	font-weight: 700;
	color: var(--custom-color);
}


.logo {
	width: 30%;
}


/* team css start  */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');





.containerrrrr {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 100px 50px;
	padding: 100px 50px;
}

.containerrrrr .card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 350px;
	max-width: 100%;
	height: 300px;
	background: white;
	border-radius: 20px;
	transition: 0.5s;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.containerrrrr .card:hover {
	height: 400px;
}

.containerrrrr .card .img-box {
    position: absolute;
    top: 20px;
    width: 300px;
    right: 24px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.containerrrrr .card:hover .img-box {
	top: -100px;
	scale: 0.75;
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.containerrrrr .card .img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.containerrrrr .card .content {
	position: absolute;
	top: 252px;
	width: 100%;
	height: 35px;
	padding: 0 30px;
	text-align: center;
	overflow: hidden;
	transition: 0.5s;
}

.containerrrrr .card:hover .content {
	top: 130px;
	height: 250px;
}

.containerrrrr .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c2e67;
}

.containerrrrr .card .content p {
	color: #333;
}

.containerrrrr .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: #9c2e67;
    color: white;
    font-weight: 500;
}
.containerrrrr .card .content a:hover {
	opacity: 0.8;
}

@media (max-width: 480px) {
	.containerrrrr .card {
		width: 230px;
		border-radius: 15px;
	}

	.containerrrrr .card .img-box {
		width: 185px;
		border-radius: 10px;
	}

	.containerrrrr .card .content p {
		font-size: 0.8rem;
	}

	.containerrrrr .card .content a {
		font-size: 0.9rem;
	}
}

/* team css end  */


/* 2 headder css start  */


:root {
	--clr-bg-header: #9c2e67;
	--clr-btn: #9c2e67;
	--clr-dropdown: #9c2e67;
	--clr-nav-hover: #9c2e67;
	--clr-dropdown-hov: #9c2e67;
	--clr-dropdown-link-hov: #9c2e67;
	--clr-light: #FAFAFA;
}



ul {
	list-style: none;
}

a {
	text-decoration: none;
}

header {
	position: sticky;
	top: 0px;
	background-color: var(--clr-bg-header);
	width: 100%;
	z-index: 1000;
}



header {
	position: sticky;
	top: 0px;
	background-color: #e7e7e7;
	width: 100%;
	z-index: 1000;
}

.containerrr {
	max-width: 65rem;
	padding: 0 2rem;
	margin: 0 auto;
	display: flex;
	position: relative;
}

.logo-container {
	flex: 1;
	display: flex;
	align-items: center;
}

/* .nav-btn {
	flex: 3;
	display: flex;
} */

/* .nav-links {
	flex: 2;
} */

.log-sign {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
}




.nav-links>ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 7px;
	/* margin-left: 25px; */
}

.nav-link {
	position: relative;
}

.nav-link>a {
    line-height: 3rem;
    color: var(--custom-color);
    letter-spacing: 0px;
    font-size: 12px;
    display: flex;
    align-items: center;
    transition: .5s;
    font-weight: 600;
}

.nav-link>a>i {
	margin-left: .2rem;
}

.nav-link:hover>a {
	transform: scale(1.1);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 10rem;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: .5s;
}

.dropdown .second {
	position: absolute;
	top: 100%;
	left: 0;
	width: 275px;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: .5s;
}

.dropdown ul {
	position: relative;
}

.dropdown-link>a {
	display: flex;
	background-color: var(--clr-light);
	color: #000000;
	padding: 3px 1rem;
	border-bottom: 1px solid var(--custom-color);
	font-size: 13px;
	align-items: center;
	justify-content: space-between;
	transition: .3s;
}

.dropdown-linkk>a {
	display: flex;
	background-color: var(--clr-light);
	color: #000000;
	padding: 3px 1rem;
	border-bottom: 1px solid var(--custom-color);
	font-size: 13px;
	width: 180px !important;
	align-items: center;
	justify-content: space-between;
	transition: .3s;
}

.dropdown-linkkk>a {
	display: flex;
	background-color: var(--clr-light);
	color: #000000;
	padding: 6px 10px;
	border-bottom: 1px solid var(--custom-color);
	font-size: 13px;
	width: 150px !important;
	align-items: center;
	justify-content: space-between;
	transition: .3s;
}

.dropdown-link:hover>a {
	background-color: var(--clr-dropdown);
	color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
	border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
	transform: rotate(-90deg);
}

.arrow {
	position: absolute;
	width: 11px;
	height: 11px;
	top: -5.5px;
	left: 32px;
	background-color: var(--clr-light);
	transform: rotate(45deg);
	cursor: pointer;
	transition: .3s;
	z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
	background-color: var(--clr-dropdown);
}

.dropdown-link {
	position: relative;
}

.dropdown.second {
	top: 0;
	left: 70%;
	padding-left: .8rem;
	cursor: pointer;
	transform: translateX(10px);
}

.dropdown.second .arrow {
	top: 10px;
	left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
	transform: translate(0, 0);
	opacity: 1;
	pointer-events: auto;
}

.hamburger-menu-container {
	flex: 1;
	display: none;
	align-items: center;
	justify-content: flex-end;
}

.hamburger-menu {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.hamburger-menu div {
	width: 1.6rem;
	height: 3px;
	border-radius: 3px;
	background-color: var(--clr-light);
	position: relative;
	z-index: 1001;
	transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
	content: '';
	position: absolute;
	width: inherit;
	height: inherit;
	background-color: var(--clr-light);
	border-radius: 3px;
	transition: .5s;
}

.hamburger-menu div:before {
	transform: translateY(-7px);
}

.hamburger-menu div:after {
	transform: translateY(7px);
}

#check {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	z-index: 90000;
	cursor: pointer;
	opacity: 0;
	display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
	background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
	transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
	transform: translateY(0) rotate(45deg);
}

@keyframes animation {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0px);
	}
}

@media (max-width: 920px) {
	.hamburger-menu-container {
		display: flex;
	}

	#check {
		display: block;
	}

	.nav-btn {
		position: fixed;
		height: calc(100vh - 3rem);
		top: 3rem;
		left: 0;
		width: 100%;
		background-color: var(--clr-btn);
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		overflow-x: hidden;
		overflow-y: auto;
		transform: translateX(100%);
		transition: .65s;
	}

	#check:checked~.nav-btn {
		transform: translateX(0);
	}

	#check:checked~.nav-btn .nav-link,
	#check:checked~.nav-btn .log-sign {
		animation: animation .5s ease forwards var(--i);
	}

	.nav-links {
		flex: initial;
		width: 100%;
	}

	.nav-links>ul {
		flex-direction: column;
	}

	.nav-link {
		width: 100%;
		opacity: 0;
		transform: translateY(15px);
	}

	.nav-link>a {
		line-height: 1;
		padding: 1.6rem 2rem;
	}

	.nav-link:hover>a {
		transform: scale(1);
		background-color: var(--clr-nav-hover);
	}

	.dropdown,
	.dropdown.second {
		position: initial;
		top: initial;
		left: initial;
		transform: initial;
		opacity: 1;
		pointer-events: auto;
		width: 100%;
		padding: 0;
		background-color: var(--clr-dropdown-hov);
		display: none;
	}

	.nav-link:hover>.dropdown,
	.dropdown-link:hover>.dropdown {
		display: block;
	}

	.nav-link:hover>a>i,
	.dropdown-link:hover>a>i {
		transform: rotate(360deg);
	}

	.dropdown-link>a {
		background-color: transparent;
		color: var(--clr-light);
		padding: 1.2rem 2rem;
		line-height: 1;
	}

	.dropdown.second .dropdown-link>a {
		padding: 1.2rem 2rem 1.2rem 3rem;
	}

	.dropdown.second .dropdown.second .dropdown-link>a {
		padding: 1.2rem 2rem 1.2rem 4rem;
	}

	.dropdown-link:not(:nth-last-child(2)) {
		border-bottom: none;
	}

	.arrow {
		z-index: 1;
		background-color: var(--clr-btn);
		left: 10%;
		transform: scale(1.1) rotate(45deg);
		transition: .5s;
	}

	.nav-link:hover .arrow {
		background-color: var(--clr-nav-hover);
	}

	.dropdown .dropdown .arrow {
		display: none;
	}

	.dropdown-link:hover>a {
		background-color: var(--clr-dropdown-link-hov);
	}

	.dropdown-link:first-child:hover~.arrow {
		background-color: var(--clr-nav-hover);
	}

	.nav-link>a>i {
		font-size: 1.1rem;
		transform: rotate(-90deg);
		transition: .7s;
	}

	.dropdown i {
		font-size: 1rem;
		transition: .7s;
	}

	.log-sign {
		flex: initial;
		width: 100%;
		padding: 1.5rem 1.9rem;
		justify-content: flex-start;
		opacity: 0;
		transform: translateY(15px);
	}
}

/* 2 headder css end  */

.heig {
	width: 100%;
	height: 312px;
}

.blight {
	background-color: #f9f9f9 !important;
}

.disp {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

img.gol1 {
	width: 23%;
	opacity: 0.5;
}

.gol {
	width: 25%;
}

section.contact.pb-5 {
	background: #ebebeb;
}


section.services {
	background: #e3e3e3;
}

.boxx {
	padding: 20px;
	background: white;
	border-radius: 10px;
	transition: .5s;
}

.boxx:hover {
	transform: translateY(-10px);
}


.hair img {
	width: 100%;
	height: 200px !important;
	object-fit: cover;
}

.hair {
	box-shadow: 0px 5px 12px -9px;
	transition: .5s;
	cursor: pointer;
}

.hair:hover {
	transform: translatey(-10px);
}

section.aboutus {
	padding-top: 60px !important;
}

section.about-up.my-5 {
	background: #f3f3f3;
	padding: 20px;
}

.boxx img {
	height: 200px;
	object-fit: cover;
	width: 100%;
}

/* button css start  */


:active,
:hover,
:focus {
	outline: 0 !important;
	outline-offset: 0;
}

::before,
::after {
	position: absolute;
	content: "";
}

.btn-holder {
	display: flex;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0px auto -8px;
}

.btn {
	position: relative;
	display: inline-block;
	width: auto;
	height: auto;
	background-color: transparent;
	border: none;
	cursor: pointer;
	margin: 0px 25px 15px;
	min-width: 150px;
}

.btn span {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 13px;
	transition: 0.3s;
}



/*--- btn-3 ---*/
.btn-3 {
	padding: 5px;
}

.btn-3 span {
	color: rgb(255, 255, 255);
	background-color: var(--custom-color);
}

.btn-3::before,
.btn-3::after {
	background: transparent;
	z-index: 2;
}




/* 12. hover-border-2 */
.btn.hover-border-2::before,
.btn.hover-border-2::after {
	width: 10%;
	height: 25%;
	transition: 0.35s;
}

.btn.hover-border-2::before {
	bottom: 0;
	left: 0;
	border-left: 1px solid rgb(28, 31, 30);
	border-bottom: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2::after {
	top: 0;
	right: 0;
	border-right: 1px solid rgb(28, 31, 30);
	border-top: 1px solid rgb(28, 31, 30);
}

.btn.hover-border-2:hover::before,
.btn.hover-border-2:hover::after {
	width: 99%;
	height: 99%;
}




/* button css end  */

.welcomee {
	background-image: url(../images/about1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10px 40px;
	text-align: right;
}

button.btnnn {
	border: 2px solid var(--custom-color);
	border-radius: 6px;
	padding: 3px 14px;
	font-weight: 600;
}

.col-md-6.bgg {
	background: #fbfbfb;
}

.ic img {
	width: 75px;
}

.icc img {
	width: 75px;
}

.ic {
	background: #f7e3ed52;
	height: 158px;
	padding: 18px;
}

.icc {
	background: #e6087f1a;
	height: 158px;
	padding: 18px;
}


/* counter css strat */


.counter-sc {
	background-color: var(--bg-light);
	padding: 50px 0;
}

#counter {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: #e6e6e7; */
	padding: 40px 0px;
	width: 100%;
	flex-wrap: wrap;
}

#counter .item {
	background: #ffffff05;
	width: 274px;
	padding: 22px 21px;
	margin: 10px;
	text-align: center;
	border-radius: 12px;
	-webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
	-moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
	box-shadow: 0px 0px 18px -8px rgba(0, 0, 0, 0.34);
}

#counter .item .count {
	color: #000000;
	margin-bottom: 5px;
	font-size: 40px;
}

#counter .item h3 {
	color: #4f4e28;
	text-transform: capitalize;
}

#counter i {
	font-size: 30px;
	color: var(--custom-color);
	padding: 15px 0px;
	border-radius: 50%;
	margin-bottom: 15px;
	position: relative;
	left: -13px;
}

.text-white {
	color: var(--custom-color) !important;
}


/* counter css end */

/* heding css start  */

.heading h2 {
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color);
}

.heading h2:before {
	content: '';
	background: var(--custom-color);
	width: 100px;
	height: 3px;
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: auto;
}

/* heding css end  */


section.ree.py-5 {
	background: #f1f1f1;
}

.serv {
	box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
	border-radius: 0px 216px 168.75px 168.75px;
	transition: .5s;
}

.serv:hover {
	transform: translateY(-10px);
	cursor: pointer;
}

.serv .contentt {
	padding: 20px 30px 1px;
	text-align: center;
}

.serv img {
	position: relative;
	z-index: -1;
	border-radius: 0px 168.75px 0px 0px;
	height: 174px;
	object-fit: cover;
	width: 100%;
}

.servv {
	box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
	border-radius: 216px 0px 168.75px 168.75px;
	transition: .5s;
}

.servv:hover {
	transform: translateY(-10px);
	cursor: pointer;
}

.servv img {
	position: relative;
	z-index: -1;
	border-radius: 168.75px 0px 0px 0px;
	height: 174px;
	object-fit: cover;
	width: 100%;
}

.servv .contentt {
	padding: 20px 30px 1px;
	text-align: center;
}


.blogs {
	box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);

	transition: .5s;
}

.blogs .contenttt {
	padding: 20px 30px 1px;
	text-align: center;
}

h6.head {
	color: var(--custom-color);
	font-size: 19px;
}

input.form-buton.btn.mt-3 {
	background: var(--custom-color);
	color: white;
	font-size: 20px;
}


footer {
	background: #c5c5c566 url(../images/back-1.jpg);
	background-blend-mode: multiply;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 20px;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.address .list-unstyled a {
	color: var(--custom-color);
	text-decoration: none;
	display: flex;
	font-weight: 600;
	gap: 34px;
}

.address ul.list-unstyled i {
	font-size: 25px;
}

.footer-bottom.py-2 {
	background: var(--custom-color);
}


@media (max-width: 1024px) {
	.nav-links>ul {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 21px;
		margin-left: 0px;
	}

	.servv .contentt {
		padding: 21px 9px 1px;
		text-align: center;
	}

	.serv .contentt {
		padding: 21px 16px 1px;
		text-align: center;
	}

	.serv {
		box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
		border-radius: 0px 257px 168.75px 168.75px;
		transition: .5s;
	}

	.servv {
		box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
		border-radius: 258px 0px 168.75px 168.75px;
		transition: .5s;
	}

}

@media (max-width: 767px) {

	.serv {
		box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
		border-radius: 0px 169px 86.75px 86.75px;
		transition: .5s;
	}

	.servv {
		box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
		border-radius: 166px 0px 86.75px 86.75px;
		transition: .5s;
	}

	.nav-link>a {
		line-height: 3rem;
		color: #ffffff;
		letter-spacing: 1px;
		font-size: 15px;
		display: contents !important;
		transition: .5s;
		font-weight: 600;
	}

	.heig {
		width: 100%;
		height: 337px;
	}

}