@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Pathway+Gothic+One&display=swap');
:root{
	--primary-color: #000;
	--secondary-color: #212121;
	--third-color: #0f6969;
	--alice-color: #f0fdff;
	--facebook: #4267b2;
    --twitter: #00acee;
    --linkedin: #0e76a8;
    --youtube: #ff0000;
    --whatsapp: #25d366;
    --instagram: #c92bb7;
}
body {
	color:#000;
	font-family: 'Open Sans', sans-serif;
	font-weight:400;
	overflow-x:hidden;
	font-size:14px;
}
ul{padding-left:0; margin-bottom:0;}
a:hover {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.filter-white{
	-ms-filter:brightness(50);
	filter:brightness(50);
}
.object-cover{
	object-fit: cover;
}
.gap-row{
	row-gap: 30px;
}
.gap-form-row{
	row-gap: 10px;
}
.container-fluid{
	padding:0 3vw;
}
/*header*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	background-color: #fff;
	z-index: 9999;
	transition:all 300ms ease-in-out;
}
.topHeader{
	background-color: var(--third-color);
}
.topHeader ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}
.topHeader ul a{
	color: rgb(255 255 255 / 80%);
	font-size: .75rem;
	gap: 6px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 5px 0;
}
.topHeader ul a i{
	font-size: 75%;
}
.topHeader ul a:hover{
	color: #fff;
}
.logo{
	width:110px;
	position: relative;
	min-height: 1px;
	transition:all 300ms ease-in-out;
}
.logo a img{
	height:100%;
	transition:all 300ms ease-in-out;
}
.navi, .navi > ul{
	display:flex;
	align-items:center;
}
.navi ul{
	gap: 1rem;
}
.navi ul li a{
	color:var(--primary-color);
	font-weight:600;
	display:block;
	position:relative;
	text-transform:uppercase;
	z-index:1;
}
.navi ul li a i{
	color: var(--third-color);
}
.navi ul li a:before{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	height:1px;
	width:0;
	background:var(--third-color);
	z-index:-1;
	transition:all 300ms ease;
}
.navi ul li:hover > a:before{
	width:100%;
}
.header .navi ul li .dropdown{
  position: absolute;
  left: 0;
  top: 100%;
  width: 250px;
  padding: 10px 20px;
  background-color: #fff;
  border-top: 2px solid var(--third-color);
  border-bottom: 2px solid var(--third-color);
  box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
  opacity: 0;
  visibility: hidden;
  translate: 0 20px;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}
.header .navi ul li:hover .dropdown{
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  pointer-events: all;
}
.header .navi ul li .dropdown ul li a{
  font-size: 13px;
  display: block;
  color: var(--primary-color);
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}
.header .navi ul li .dropdown ul li:last-of-type a{
  border-bottom: none;
}
.header .navi ul li .dropdown ul li a.active,
.header .navi ul li .dropdown ul li a:hover{
  color: var(--third-color);
}
.header.fixed{
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}
.header.fixed .logo{
	width:90px;
}
.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}
.menuBtn {
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}
.menuBtn div {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all 300ms ease-in-out;
}
.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.menuBtn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(3px, 3px);
  transform: rotate(45deg) translate(3px, 3px);
}
.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}
.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(3px, -3px);
  transform: rotate(-45deg) translate(3px, -3px);
}
.menuContainer {
  position: fixed;
  inset: 0;
  padding: calc(55px + 1rem) 1rem 1rem;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;
}
.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--third-color), var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}
.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}
.menuContainer.active .inner {
  visibility: visible;
}
.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}
.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}
.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}
.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}
.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}
.mainMenu li.active > a i{
  transform: rotate(540deg);
}
.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/*header*/
/* forms */
.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background: rgb(255 255 255 / 75%);
  outline: none;
  border-radius: 0;
  height: auto;
  padding: 10px;
  font-size: 14px;
}
.form-control[readonly] {
  background: none;
}
.form-control:focus {
  box-shadow: 0 10px 20px rgb(0 0 0 / 15%);
  border-bottom-color: var(--primary-color);
  background: #fff;
}
/* forms */
.hero-banner{
	height: calc(90vh - 67px);
	margin-top: 67px;
	position:relative;
	background:radial-gradient(circle at 200% -150%, var(--third-color), var(--primary-color));
	z-index:1;
}
#banner .slide-img::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:rgba(0,0,0,0.05);
	z-index:1;
	pointer-events: none;
}
.bannerText{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}
.bannerText .inner{
	padding: 0 2rem;
}
.bannerText .h1{
	font-weight: 300;
	text-transform: uppercase;
}
.bannerText h6{
	text-transform: uppercase;
	font-weight:700;
	letter-spacing:5px;
	padding: 5px 0 3px 5px;
	background-color: #fff;
	color: var(--primary-color);
}
.bannerText form {
    padding: 1rem;
    background-color: #fff;
}
.callBtn{
	display: flex;
	align-items: center;
	color: var(--primary-color);
	gap: 8px;
	font-weight: 700;
}
.callBtn i{
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	border-right: 1px solid var(--secondary-color);
}
.callBtn:hover{
	color: var(--third-color);
}
.scrollDown{
	position:absolute;
	left:3vw;
	bottom:2vw;
	width:85px;
	height:85px;
	cursor:pointer;
	z-index:9;
}
.scrollDown .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: .2;
    transform-origin: center;
	transform:scale(1,1);
    transition: transform .6s cubic-bezier(.785,.135,.15,.86),border .6s cubic-bezier(.785,.135,.15,.86);
}
.scrollDown:hover .circle{
	transform:scale(1.2,1.2);
}
.scrollDown svg {
    position: absolute;
    height: 35px;
    width: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transform-origin: center center;
    fill: #fff;
    z-index: 2;
}
.bannerControl{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	position:absolute;
	left:10px;
	top:50%;
	transform:translateY(-50%);
	z-index:10;
}
.bannerControl .num{
	width:20px;
	text-align:center;
	color:#000;
	font-weight:700;
	font-size:16px;
	pointer-events:none;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.bannerControl .num span{
	width:100%;
	padding:5px 0;
	display:block;
}
.bannerControl .num span:first-child{
	border-bottom:3px solid #000;
}
.bannerControl .carousel-control-next.banner-next, 
.bannerControl .carousel-control-prev.banner-prev{
	position:relative;
	top:auto;
	width:40px;
	height:100px;
	flex-direction:column;
	justify-content:flex-end;
	margin:20px 0;
	opacity:1;
	z-index:9;
}
.bannerControl a:after{
	content:'';
	top:0;
	height:100%;
	width:1px;
	background:#000;
	transition:all 0.5s ease;
}
.bannerControl a:hover:after{
	animation:prevLine 0.5s alternate;
}
@keyframes prevLine{
	0%{height:0%;}
	100%{height:100%;}
}
.bannerControl .carousel-control-next.banner-next{
	flex-direction:column-reverse;
}
.carousel-control-next.banner-next .carousel-control-next-icon, 
.carousel-control-prev.banner-prev .carousel-control-prev-icon{
	position:absolute;
	width:10px;
	height:10px;
	background:none;
	border:solid #000;
	transform:rotate(45deg);
}
.carousel-control-prev.banner-prev .carousel-control-prev-icon{
	border-width:1px 0 0 1px;
	top:0;
}
.carousel-control-next.banner-next .carousel-control-next-icon{
	border-width:0 1px 1px 0;
	bottom:0;
}
p{
	font-weight:400;
}
.padding {
  padding-top:5rem;
  padding-bottom:5rem;
}
.text-third{
	color: var(--third-color) !important;
}
.heading {
	display:table;
	position:relative;
	margin-bottom:40px;
	z-index:1;
}
.heading h2,
.heading h4 {
	display:table;
    color: var(--third-color);
}
.heading h2{
	font:800 5.5rem/1.2 'Pathway Gothic One', sans-serif;
	/* background-size:cover;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text; */
}
.heading .h1{
	font-weight: 800; 
	font-family: 'Pathway Gothic One', sans-serif;
    color: var(--third-color);
}
.readmoreBox{
	display: flex;
	gap: 1rem;
}
.readmore{
	width:100%;
	margin-top:30px;
}
.readmore .button{
	position:relative;
	z-index:1;
	display:block;
	padding: .75rem 1rem;
	width: fit-content;
	overflow:hidden;
	color:#fff;
	background-color: var(--third-color);
	font-size:13px;
	font-weight:600;
	letter-spacing:1px;
	text-align:center;
	text-transform:uppercase;
	cursor:pointer;
	transition:all ease-in-out 0.2s;
}
.readmore button{
	background:none;
	border: none;
}
.readmore .button:hover{
	background-color:var(--primary-color);
}
.readmore.whitemore .button{
	color:var(--primary-color);
	background-color: #fff;
}
.readmore.whitemore .button:hover{
	color:var(--primary-color);
	background-color: #def6ff;
}
.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}
.viewmore a {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-size: 75%;
  font-weight: 700;
}
.viewmore a:hover {
  color: var(--third-color);
}
.hm-overview .inner{
	position:relative;
	z-index:1;
}
.hm-overview .inner h2{
	font-weight:800;
	color: var(--third-color);
}
.slick-list{margin-left: -10px;}
/* services */
.customContainer .customHead{
	margin:5rem 0 30px;
	align-self: flex-end;
}
.serviceCard{
	transition:all 500ms ease;
	padding:20px;
	overflow:hidden;
	position:relative;
	border:solid #e0e7ed;
	border-width:0 1px 1px 0;
	z-index:1;
}
.customIconContainer .serviceCard{
}
.customIconContainer .serviceCard:nth-child(2n),
.guaranteeCard:nth-child(3n){
	border-right:none;
}
.serviceCard:nth-last-child(1),
.serviceCard:nth-last-child(2),
.guaranteeCard:nth-last-child(3){
	border-bottom:none;
}
.serviceCard:before{
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	clip-path:circle(50% at 50% -80%);
	background:rgb(0 0 0 / 0%);
	transition:all 500ms ease;
	z-index:-1;
}
.serviceCard:hover:before{
	clip-path:circle(60% at 50% -20%);
	background:rgb(0 0 0 / 07%);
}
.serviceCard .img-fluid{
	width:60px;
	margin-bottom: 1rem;
}
.serviceCard article h5{
	font-family:'Pathway Gothic One', sans-serif;
	margin-bottom:10px;
	font-size:20px;
	font-weight:600;
	letter-spacing:1px;
	color:var(--third-color);
}
.serviceCard article p{
	margin-bottom: 0;
}
.customPKimg{
	position:relative;
}
.customPKimg img{
	height: 100%;
    object-fit: cover;
    object-position: -13vw 0vw;
}
.bg-third {
    background-color: var(--third-color) !important;
}
.bg-aliceblue {
    background-color: var(--alice-color) !important;
}
.bg-light {
    background-color: #f7ffff !important;
}
/* services */
.bg-black{
	background-color:#000 !important;
}
/*Testimonials*/
.slick-track{
	display: flex;
}
.testimBox {
	float: none;
	height: auto;
  margin: 0 10px;
}
.testimBox .inner {
  height: 100%;
  display: block;
  background: #fff;
  border: 1px solid #ececec;
  padding: 2rem;
  transition: all 300ms ease-in-out;
}
.testimBox .inner:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
  box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
}
.testimBox .inner p:last-child{
	margin-bottom: 0;
}
.scroller{
	overflow: auto;
	padding-right: 10px;
}
.scroller::-webkit-scrollbar{
	background-color: #f1f1f1;
	width: 5px;
	height: 5px;
	box-shadow: 0 0 5px rgb(0 0 0 / 20%) inset;
}
.scroller::-webkit-scrollbar-thumb{
	background: var(--third-color);
	cursor: pointer;
}
.scroller::-webkit-scrollbar-thumb:hover{
	background: linear-gradient(90deg, #739778 0%,var(--primary-color) 80%);
}
.testimBox .inner article .scroller{
	height: 235px;
}
.testimBox .inner .testim-footer{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 1rem;
}
.testimBox .inner .testim-footer .img-fluid {
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
  /* margin: -25px 10px 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.5rem;
}
.testimBox .inner .testim-footer p strong {
  display: block;
}
.testimBox.testimBox-inside .inner{
	display: flex;
	flex-wrap: wrap;
}
.testimBox.testimBox-inside .inner .img-fluid {
  width: 400px;
  align-items: flex-start;
}
.testimBox.testimBox-inside .inner article{
	width: calc(100% - 400px);
	padding-left: 2rem;
}
/*Testimonials*/
/* blogs */
.blogBox{
	margin: 0 10px;
}
.blogBox .inner{
  height: 100%;
  padding: 1rem;
  background: #fff;
}
.blogBox .inner img{
  margin-bottom: 1rem;
}
/* blogs */
/* custom home form */
.bookingContainer{
	background:url(../images/Hair-Transplant-Header-Img-3.jpg) center no-repeat;
	background-size:cover;
	position:relative;
	z-index:1;
}
.bookingContainer:before{
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	backdrop-filter:blur(12px) brightness(0.5);
	z-index:-1;
}
.hm-appointment{
	display:flex;
	justify-content:center;
	align-items:center;
	color:#fff;
}
.hm-appointment section{
	padding-right:5%;
	margin-right:5%;
	width: 60%;
}
.hm-appointment .hm-appointmentHead{
	display:table;
	margin-bottom:40px;
	padding:1.25rem 3rem;
	position:relative;
	z-index:1;	
}
.hm-appointment .hm-appointmentHead:before,
.hm-appointment .hm-appointmentHead:after{
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	width:50px;
	border:1px solid #fff;
	z-index:-1;
}
.hm-appointment .hm-appointmentHead:before{
	left:0;
	border-right-width:0;
}
.hm-appointment .hm-appointmentHead:after{
	right:0;
	border-left-width:0;
}
.hm-appointment .hm-appointmentHead h5,
.hm-appointment .hm-appointmentHead h3{
	font-weight:300;
}
.hm-appointment .hm-appointmentHead h3{
	font-size:2.5rem;
	text-transform:uppercase;
}
.hm-appointment .hm-appointmentText h5{
	font-weight:300;
}
.hm-appointment .form-fluid{
	width:40%;
	padding: 1rem;
	background-color: rgb(255 255 255 / 100%);
}
/* custom home form */
.instabox{
	position:relative;
	z-index:1;
}
.instabox:before{
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index:-1;
}
.instabox section{
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding-top:20px;
}
.trustpilot .inner{
	height: 100%;
	background-color: var(--alice-color);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	gap: 1rem;
}
/*Footer*/
.footer-area{
	background:radial-gradient(circle at 50% -50%, var(--third-color), var(--primary-color));
	position:relative;
	z-index:1;
	color: #fff;
}
.footer-area .mainfooter{
	padding-top:4rem;
	padding-bottom:4rem;
}
.footer-area .mainfooter .footAbout{
	padding-right:10%;
}
.footer-area .mainfooter .footAbout .footLogo{
	width:140px;
	margin-bottom:15px;
}
.footer-area .mainfooter .footAbout p{
	font-size:13px;
}
.footer-area .mainfooter h5{
	letter-spacing:2px;
	font-family:'Pathway Gothic One', sans-serif;
	margin-bottom:20px;
}
.footer-area .mainfooter ul{
	display:flex;
	flex-wrap:wrap;
	flex-direction:column;
}
.footer-area .mainfooter ul li{
	width:fit-content;
	margin:8px 0;
}
.footer-area .mainfooter .socialBox ul li{
	margin:10px 0;
}
.footer-area .mainfooter ul li a{
	display:flex;
	align-items:center;
	color:#fff;
	text-transform:uppercase;
	letter-spacing:1px;
	font-size:12px;
	position:relative;
	z-index:1;
}
.footer-area .mainfooter ul li a span{
	position:relative;
	z-index:1;
}
.footer-area .mainfooter .footBox ul li a:before,
.footer-area .mainfooter ul li a span:before{
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	height:1px;
	width:0;
	background:#fff;
	z-index:-1;
	transition:all 300ms ease;
}
.footer-area .mainfooter .footBox ul li a:hover:before,
.footer-area .mainfooter ul li a:hover span:before{
	width:100%;
}
.footer-area .mainfooter ul li a{
	display:flex;
	align-items:center;
}
.footer-area .mainfooter ul li a i{
	width:40px;
	font-size:18px;
	margin-right:25px;
	border-right:1px solid #fff;
}
.bottom{
	margin-top:2rem;
	justify-content:space-between;
	flex-wrap: wrap;
}
.bottom,
.bottom p{
	display:flex;
	align-items:center;
	margin-right:20px;
}
.bottom p{
	font-size:13px;
	margin-bottom:0;
}
.bottom p img{
	width:20px;
}	
.button-top {
    background: rgba(0, 0, 0, 0.32);
    position: fixed;
    cursor: pointer;
    left: 50%;
	transform:translateX(-50%);
    bottom: -40px;
    color: #FFFFFF;
    font-size: 13px;
    opacity: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
	pointer-events:none;
	transition:all 500ms ease;
    z-index: 99;
}
.button-top.fixed{
    bottom: 10px;
	opacity:1;
	pointer-events:auto;
}
.button-top:hover {
    background: #2d333a;
}
/*Footer*/
.footer-enquiryBtn {
  position: fixed;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  border-top: 1px solid var(--third-color);
  text-align: center;
}
.footer-enquiryBtn a {
  color: var(--primary-color);
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 6px 5px;
  font-weight: 600;
  text-transform: uppercase;
  border-right: 1px solid var(--third-color);
  border-left: 0;
}
.footer-enquiryBtn a:not(.whatsCall) i{
	color: var(--third-color);
}
.footer-enquiryBtn a.whatsCall {
	color: #fff;
	background: linear-gradient(45deg,#0db634,var(--third-color));
	border: 0;
}
/* inside page */
.title{
	font: 800 3.5rem/1.2 'Pathway Gothic One', sans-serif;
	color: #fff;
	text-align: center;
}
.title small{
	font-size: 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}
/* Blog page */
.blog-img {
  margin-bottom: 1rem;
}
.blogText{
	font-size: 1.125rem;
}
.blogText ul, .blogText ol {
  margin-bottom: 1rem;
}
.blogText li::marker{
	font-weight: 800;
	color: var(--third-color);
}
.sideContainer aside {
  padding: 20px;
  border: 1px solid rgba(0 0 0 / 10%);
}
.sideContainer .shareStory {
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shareStory a i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  z-index: 1;
}
.shareStory a i.fa-facebook-f {
  background-color: var(--facebook);
}
.shareStory a i.fa-linkedin-in {
  background-color: var(--linkedin);
}
.shareStory a i.fa-twitter {
  background-color: var(--twitter);
}
.shareStory a i.fa-whatsapp {
  background-color: var(--whatsapp);
}
.shareStory a i.fa-envelope {
  background-color: var(--primary-color);
}
.shareStory a:hover i {
  color: var(--third-color);
}
.shareStory a i::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #fff;
  opacity: 0;
  transition: all 300ms ease-in-out;
  z-index: -1;
}
.shareStory a:hover i::after {
  opacity: 1;
}
.topRatedProjectBox:not(:last-of-type) {
  margin-bottom: 1rem;
}
.topRatedProjectBox .inner {
  display: flex;
  gap: 1rem;
  font-size: 15px;
}
.topRatedProjectBox .inner img {
  width: 70px;
  height: 80px;
  object-fit: cover;
}
.topRatedProjectBox .inner a {
  display: table;
  margin-bottom: 5px;
  transition: all 300ms ease-in-out;
}
.topRatedProjectBox .inner a:hover {
  text-decoration: underline;
}
/* Blog page */
.accredBox .inner{
	height: 100%;
	display: flex;
	align-items: center;
}
.achieveBox .inner{
	height: 100%;
	padding: 2rem;
	background-color: #fff;
}
.achieveBox .inner .img-fluid{
	max-width: 300px;
}
/* Contact */
.contactBox .inner {
  background: var(--third-color);
  color: #fff;
  height: 100%;
  padding: 2rem;
}
@media only screen and (min-width: 1920px) {
  .contactBox .inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media only screen and (max-width: 360px) {
  .contactBox .inner {
    padding: 20px 10px;
  }
}
.contactBox h4 {
  margin-bottom: 1rem;
}
.contactBox ul li{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.contactBox ul li:last-child{margin-bottom: 0;}
.contactBox ul li a{
  color: #fff;
}
.contactBox ul li a:hover{
  text-decoration: underline;
}
.contactBox .socialLinks i{
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: var(--primary-color);
}
.contactBox .socialLinks i:hover{
	color: #fff;
}
.contactBox .socialLinks i.fa-facebook-f:hover{
	background-color: var(--facebook);
}
.contactBox .socialLinks i.fa-instagram:hover{
	background-color: var(--instagram);
}
.contactBox .socialLinks i.fa-twitter:hover{
	background-color: var(--twitter);
}
.contactBox .socialLinks i.fa-youtube:hover{
	background-color: var(--youtube);
}
/* Contact us */
.galBox .inner{
	display: block;
	background-color: var(--primary-color);
	overflow: hidden;
	position: relative;
	isolation: isolate;
}
.galBox .inner .img-fluid{
	transition: all 300ms ease-in-out;
	opacity: 0.5;
}
.galBox .inner:hover .img-fluid{
	opacity: 1;
	transform: scale(1.1,1.1);
}
.galBox .inner i.fa-magnifying-glass-plus{
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(255 255 255 / 75%);
	color: var(--primary-color);
	border-radius: 50%;
	z-index: 1;
}
.galBox .inner:hover i.fa-magnifying-glass-plus{
	background-color: var(--third-color);
	color: #fff;
}
.videoBox .inner{
	height: 100%;
	padding: 2rem;
	background-color: var(--alice-color);
	box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}
.videoBox .inner .line{
	width: 40px;
	height: 3px;
	display: block;
	background-color: var(--third-color);
	margin-bottom: 1rem;
}
.testim-modal .close {
    font-size: 3rem;
    font-weight: 200;
    position: absolute;
    right: 3px;
    opacity: 0.2;
    z-index: 1;
}
.testim-modal .modal-body {
    padding: 2rem;
    text-align: justify;
}

/* celebs page */
.celebTextbox i.fa-quote-left{
	width: 100px;
	height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	background-color: var(--third-color);
	color: #fff;
	font-size: 3rem;
}
.celeb-text h4{
	font-weight: 400;
	line-height: 1.5;
	font-style: italic;
}
/* celebs page */
/* inside page */
/*transformation Animation*/
.leftTranslate{
	-webkit-transform:translate(-200px, 0);
	transform:translate(-200px, 0);
	opacity:0;
	-webkit-transition:all 1000ms;
	transition:all 1000ms;
}
.rightTranslate{
	-webkit-transform:translate(200px, 0);
	transform:translate(200px, 0);
	opacity:0;
	-webkit-transition:all 1000ms;
	transition:all 1000ms;
}
.topTranslate{
	-webkit-transform:translate(0, -200px);
	transform:translate(0, -200px);
	opacity:0;
	-webkit-transition:all 1000ms;
	transition:all 1000ms;
}
.bottomTranslate{
	-webkit-transform:translate(0, 200px);
	transform:translate(0, 200px);
	opacity:0;
	-webkit-transition:all 1000ms;
	transition:all 1000ms;
}
.doneTranslate{
	-webkit-transform:translate(0, 0);
	transform:translate(0, 0);
	opacity:1;
}
/*transformation Animation*/
