/********** Template CSS **********/

body {
	font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary: #F8A62A;
    --light: #FFF5F3;
    --dark: #000;
	--white: #FFFFFF;
	--secondery-color: #29A17E;
	--secondary-light-bg: rgb(41,161,126, 0.2);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.secondary-light-bg{
	background: var(--secondary-light-bg);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    /* font-family: 'Lobster Two', cursive; */
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.pointer{
	cursor:pointer;
}

.freeze{
	overflow: hidden;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** header ***/
header {
	width: 100%;
	height:auto; 
	position:fixed;  
	top: 0;
	left: 0;
	background: var(--white);
	z-index: 20;
}

header a.nav-link{
	text-decoration: none;
	color: var(--dark) !important;
	font-size: 1.2rem;
}

header a.nav-link:hover{
	color: var(--primary) !important;
}

header .header-header-container{
	width: 100%;
	height: 60px;
	display:flex;
	justify-content: space-between;
	align-items: center;
    color: var(--dark);
    font-weight: 500;
    outline: none;
	position:relative;
}

header .header-nav-links-holder{
	width: 100%;
	height: 100%;
	display:flex;
	align-items: center;
	justify-content: flex-end;
}

header .clouds{
	position:relative;
}

header .clouds::before {
	position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

header .header-small-menu-btn-holder{
	display: none;
}

@media only screen and (max-width: 890px) {
	header .header-small-menu-btn-holder{
		display: block;
	}
	
	header .header-nav-links-holder{
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		background: rgb(0, 0, 0, 0.5);
		z-index: -1;
		width: 100%;
		height: calc(100vh - 60px);
		align-items: end;
		flex-direction: column;
		justify-content: start;
		overflow: hidden;
	}
	
	header .header-nav-links-holder.active{
		display: flex;
		animation: fadeInUp; /* referring directly to the animation's @keyframe declaration */
		animation-duration: 0.5s; /* don't forget to set a duration! */
	}
	
	header .header-nav-links-holder.deactive{
		animation: fadeInDown; /* referring directly to the animation's @keyframe declaration */
		animation-duration: 0.5s; /* don't forget to set a duration! */
	}
	
	header .header-nav-links-holder::after {
		/* height: 19px;
		background:blue;
		top: auto;
		bottom: 0;
		background: url(../img/bg-header-bottom.png) center center repeat-x; */
		position: absolute;
		height: 19px;
		content: "";
		width: 100%;
		bottom: 0;
		left: 0;
		background: url(../img/bg-header-bottom.png) center center repeat-x;
		z-index: 1;
	}
	
	header .header-nav-links-holder a:first-child{
		margin-top:2em;
	}
	
	header .header-nav-links-holder a{
		width:250px;
		background:white;
		border-left: 1px solid var(--primary);
		border-top: 1px solid var(--primary);
	}
	
	header .header-nav-links-holder a:last-child{
		border-bottom: 1px solid var(--primary);
	}
}
/*** Header Ends***/

/*** Slider Starts ***/
.header-carousel-container{
	width: 100%;
	height:calc(100vh - 60px);
	position: relative;
	top:60px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: capitalize;
	border-top: 2px solid var(--secondery-color);
	overflow: hidden;
}

.header-carousel-container .header-carousel-slide-box{
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--white);
	background: url(../images/welcome-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	transition: left 0.5s ease-in-out;
}

@media only screen and (max-width: 768px) {
	.header-carousel-container .header-carousel-slide-box{
		background-size:  100% 100%;;
	}
}

.header-carousel-container .header-carousel-slide-box.slide-two{
	background: url(../images/welcome-2.jpg);
}

.header-carousel-container .header-carousel-slide-box.slide-three{
	background: url(../images/welcome-3.jpg);
}

.header-carousel-container .header-carousel-slide-box.current-slide{
	left: 0;
}

.header-carousel-container .header-carousel-slide-box.slide-previous {
	left: -100%;
}

.header-carousel-container span.shrink{
	animation-duration: 3s;
	animation-name: growshrink;
}

.header-carousel-container h1.slider-header{
	font-size:4rem;
	text-align: center;
	color: var(--white);
}

.header-carousel-container p.slider-sub-header{
	font-size:2rem;
	text-align: center;
	color: var(--white);
}

@media only screen and (max-width: 576px) {
	.header-carousel-container h1.slider-header{
		font-size:2.8rem;
	}
	
	.header-carousel-container p.slider-sub-header{
		font-size:1.4rem;
	}
}

.header-carousel-container .breadcrumbs-custom-line {
    stroke: #ffffff;
}

.breadcrumbs-custom-line {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    stroke: #FFAD00;
}

.header-carousel-slide-nextPrev-Btns-Holder{
	width: 100%;
	position: absolute;
	background: blue;
	z-index: 2;
}

.header-carousel-slide-nextPrev-Btns-Holder button{
	position: absolute;
	border: 1px solid #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgb(0, 0, 0, 0.2);
	outline: none;
	cursor: pointer;
	color: #fff;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-carousel-slide-nextPrev-Btns-Holder #nextSlide{
	right: 0;
}
/*** Slider Ends ***/

section.web-content{
	width: 100%;
	padding: 4rem 0;
	position: relative;
	top: 10px;
}

.text-shadow-1 {
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.text-decor-1 {
	position: relative;
	z-index: 1;
}

.text-decor-1:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 3px;
	background-color: #FFE49E;
	width: 112px;
	height: 16px;
	z-index: -1;
}

.text-decor-1.decor-centered:before {
	left: 50%;
	transform: translateX(-50%);
}

.text-decor-1.left-middle:before {
	top: 33%;
	bottom: auto;
	transform: translateY(-50%);
}

.text-decor-2 {
	position: relative;
}

.text-decor-2:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	width: 112px;
	height: 16px;
	z-index: 1;
}

.heading-1 {
	font-size: 32px;
	line-height: 1.5;
	font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 768px) {
	.heading-1 {
		font-size: 40px;
	}
}

@media (min-width: 992px) {
	.heading-1 {
		font-size: 56px;
	}
}

@media (min-width: 1200px) {
	.heading-1 {
		font-size: 90px;
		line-height: 0.84444;
	}
}

.heading-2 {
	font-size: 28px;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.heading-2 {
		font-size: 36px;
	}
}

@media (min-width: 992px) {
	.heading-2 {
		font-size: 40px;
	}
}

@media (min-width: 1200px) {
	.heading-2 {
		font-size: 48px;
		line-height: 1.16667;
	}
}

.heading-3 {
	font-size: 22px;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.heading-3 {
		font-size: 26px;
		line-height: 1.33333;
	}
}

@media (min-width: 1200px) {
	.heading-3 {
		font-size: 30px;
	}
}

.heading-4 {
	font-size: 19px;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.heading-4 {
		font-size: 21px;
	}
}

@media (min-width: 1200px) {
	.heading-4 {
		font-size: 24px;
		line-height: 1.25;
	}
}

.heading-5 {
	font-size: 16px;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.heading-5 {
		font-size: 18px;
		line-height: 1.44444;
	}
}

.heading-6 {
	font-size: 15px;
	line-height: 1.375;
}

@media (min-width: 576px) {
	.heading-6 {
		font-size: 16px;
	}
}

.heading-7 {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .25em;
}

@media (min-width: 768px) {
	.heading-7 {
		font-size: 18px;
		line-height: 1.33333;
	}
}

/*
* Lists
*/
/*
* Vertical list
*/
.list > li + li {
	margin-top: 10px;
}

.list-xs > li + li {
	margin-top: 5px;
}

.list-sm > li + li {
	margin-top: 11px;
}

.list-md > li + li {
	margin-top: 20px;
}

.list-lg > li + li {
	margin-top: 25px;
}

.list-xl > li + li {
	margin-top: 30px;
}

.list-1 {
	line-height: 1.25;
}

.list-1 > li + li {
	margin-top: 13px;
}

@media (min-width: 768px) {
	.list-xl > li + li {
		margin-top: 62px;
	}
}

@media (min-width: 1200px) {
	.list-1 {
		font-size: 18px;
	}
}

.list {
	color: #808080;
}

.list a {
	color: inherit;
}

/*
* Index list
*/
.index-list {
	counter-reset: li;
}

.index-list > li .list-index-counter:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
}

/*
* Marked list
*/
.list-marked {
	text-align: left;
	color: #000000;
}

.list-marked > li {
	text-indent: -25px;
	padding-left: 25px;
}

.list-marked > li::before {
	position: relative;
	display: inline-block;
	left: 25px;
	top: -1px;
	min-width: 25px;
	content: '\f222';
	font: 400 15px/24px 'Material Design Icons';
	color: #FFAD00;
}

.list-marked > li.li-alternate::before {
	content: '\f69a';
	color: #ffee59;
}

.list-marked a {
	color: inherit;
}

.list-marked > li + li {
	margin-top: 10px;
}

* + .list-marked {
	margin-top: 15px;
}

p + .list-marked {
	margin-top: 10px;
}

.list-ordered {
	counter-reset: li;
	text-align: left;
	color: #000000;
}

.list-ordered > li {
	position: relative;
	padding-left: 25px;
}

.list-ordered > li:before {
	content: counter(li, decimal) ".";
	counter-increment: li;
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 15px;
}

.list-ordered > li + li {
	margin-top: 9px;
}

* + .list-ordered {
	margin-top: 15px;
}

.list-palette {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -9px;
	margin-left: -9px;
}

.list-palette:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.list-palette > * {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 9px;
	margin-left: 9px;
}

.list-palette > li {
	width: 40px;
	height: 40px;
}

@media (min-width: 768px) {
	.list-palette > li {
		width: 54px;
		height: 54px;
	}
}

* + .list-palette {
	margin-top: 20px;
}

@media (min-width: 992px) {
	.list-palette {
		max-width: 190px;
	}
}

.list-group-1 {
	counter-reset: li;
}

.lg-1-item {
	max-width: 250px;
	margin: 0 auto;
	color: #353535;
}

.lg-1-item p {
	color: #000000;
}

.lg-1-item-icon {
	font-size: 33px;
	color: #000000;
}

.lg-1-item-counter {
	font-weight: 600;
	color: #FFAD00;
}

.lg-1-item-counter::before {
	content: counter(li, decimal-leading-zero) ".";
	counter-increment: li;
	display: inline-block;
	margin-right: 5px;
}

* + .lg-1-item-main {
	margin-top: 10px;
}

* + .lg-1-item-title {
	margin-top: 10px;
}

@media (min-width: 768px) {
	.lg-1-item {
		margin-left: 0;
	}
	* + .lg-1-item-main {
		margin-top: 15px;
	}
	* + .lg-1-item-title {
		margin-top: 15px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.col-sm-6.col-lg-3 .lg-1-item {
		display: flex;
		max-width: 100%;
	}
	.col-sm-6.col-lg-3 .lg-1-item > * + * {
		margin-top: 0;
		margin-left: 30px;
	}
	.col-sm-6.col-lg-3 .lg-1-item-icon {
		flex-shrink: 0;
	}
}

@media (min-width: 992px) {
	html:not(.tablet):not(.mobile) .lg-1-item:hover .lg-1-item-icon {
		transform: translateY(-5px);
	}
	html:not(.tablet):not(.mobile) .lg-1-item-icon {
		position: relative;
		transition: .4s;
	}
}

@media (min-width: 1200px) {
	.lg-1-item-icon {
		font-size: 44px;
	}
	* + .lg-1-item-title {
		margin-top: 22px;
	}
}

@media (min-width: 1600px) {
	.lg-1-item-icon {
		font-size: 50px;
	}
}

.list-group-2 {
	counter-reset: li;
}

.list-group-2 li {
	list-style: none;
}

.lg-2-item {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	flex-direction: column;
	text-align: center;
}

@media (min-width: 1200px) {
	.lg-2-item {
		max-width: 370px;
		align-items: flex-start;
	}
}

@media (min-width: 768px) {
	.lg-2-item > * + * {
		margin-left: 20px;
	}
}

@media (min-width: 768px) {
	.lg-2-item {
		flex-direction: row;
		text-align: left;
	}
}

.lg-2-item-aside {
	position: relative;
	width: 76px;
	height: 76px;
	line-height: 60px;
	flex-shrink: 0;
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
}

.lg-2-item-icon {
	font-size: 40px;
	line-height: 76px;
	color: #ffffff;
}

.list-group-2 .lg-2-item-icon {
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.lg-2-item-counter {
	position: absolute;
	top: -10px;
	right: -10px;
	display: block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	border-radius: 50%;
	font-size: 16px;
	color: #000000;
	background: #ffffff;
	text-align: center;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35);
}

.lg-2-item-counter::before {
	content: counter(li);
	counter-increment: li;
}

.lg-2-item-main {
	text-align: center;
	margin-top: 20px;
}

.lg-2-item-main * + p {
	margin-top: 6px;
}

.lg-2-item-main p {
	color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
	.lg-2-item-main {
		margin-top: 0;
		text-align: left;
	}
}

.lg-2-item-title {
	line-height: 1.3;
}

@media (min-width: 1200px) {
	.lg-2-item-title {
		font-size: 22px;
	}
}

@media (min-width: 768px) {
	.lg-2-item {
		margin-left: 0;
	}
	.lg-2-item > * + * {
		margin-left: 35px;
	}
	.lg-2-item-aside {
		width: 66px;
		height: 66px;
		line-height: 66px;
	}
}

@media (min-width: 992px) {
	.lg-2-item-aside {
		width: 76px;
		height: 76px;
		line-height: 76px;
	}
	.lg-2-item-counter {
		width: 28px;
		height: 28px;
		line-height: 30px;
		font-size: 16px;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.lg-2-item-title {
		font-size: 19px;
	}
}

.list-categories a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.list-categories a > * {
	display: inline-block;
	vertical-align: middle;
	transition: inherit;
}

.list-categories a > * + * {
	margin-left: 15px;
}

.list-categories > li + li {
	margin-top: 10px;
}

.list-categories .lc-text {
	color: #000000;
	font-weight: 500;
}

.list-categories .lc-counter {
	color: #808080;
}

.list-categories a:hover .lc-text {
	color: #FFAD00;
}

* + .list-categories {
	margin-top: 15px;
}

@media (min-width: 768px) {
	* + .list-categories {
		margin-top: 27px;
	}
}

.list-pricing a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	line-height: 1.2;
	margin-bottom: -5px;
	margin-left: -10px;
	transition: none;
	color: #808080;
}

.list-pricing a:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.list-pricing a > * {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 5px;
	margin-left: 10px;
}

.list-pricing a > * {
	transition: .2s;
}

.list-pricing a:hover > * {
	color: #FFAD00;
}

.list-pricing .list-pricing-title {
	font-weight: 500;
	color: #000000;
}

.list-pricing > li + li {
	margin-top: 10px;
}

@media (min-width: 768px) {
	.list-pricing .list-pricing-title {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	.list-pricing .list-pricing-title {
		font-size: 17px;
	}
}

@media (min-width: 1200px) {
	.list-pricing .list-pricing-title {
		font-size: 18px;
	}
}

.list-number {
	display: flex;
	align-items: center;
}

.list-number li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 11px;
	width: 60px;
	height: 60px;
	padding: 5px;
	background: #f6f6f6;
	border-radius: 4px;
	border: 1px solid rgba(196, 196, 196, 0.5);
	color: #000000;
	font-size: 20px;
	text-align: center;
}

.list-number li:last-child {
	margin-right: 0;
}

@media (min-width: 768px) {
	.list-number li {
		width: 75px;
		height: 75px;
		font-size: 40px;
	}
}

.icon-list-1 .lg-1-item-icon, .icon-list-1 .lg-1-item-counter {
	color: #ffffff;
}

.icon-list-1 .lg-1-item p {
	color: #ffffff;
}

/*** About Us ***/
.about-us .label-box{
	width: 100%;
	height: auto;
	position: relative;
}

.about-us .label-box img{
	width: 100%;
	height: auto;
}

.about-us .label-box .label-figure{
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FF4C82;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 16px;
    color: #ffffff;
    bottom: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

@media (max-width: 768px) {
	.about-us .about-col-header{
		margin-top: 2em;
	}
}

/*
* Accent Backgrounds
*/
.bg-primary {
	background-color: #FFAD00;
}

.bg-primary:not([style*="background-"]) + .bg-primary:not([style*="background-"]) {
	padding-top: 0;
}

.bg-primary-2 {
	background-color: #FFA133;
}

.bg-primary-2:not([style*="background-"]) + .bg-primary-2:not([style*="background-"]) {
	padding-top: 0;
}

.bg-secondary {
	background-color: #ffee59;
}

.bg-secondary:not([style*="background-"]) + .bg-secondary:not([style*="background-"]) {
	padding-top: 0;
}

.bg-tertiary {
	background-color: #FF4C82;
}

.bg-tertiary:not([style*="background-"]) + .bg-tertiary:not([style*="background-"]) {
	padding-top: 0;
}

.bg-accent-blue-2 {
	background-color: #3190FF;
}

.bg-accent-blue-2:not([style*="background-"]) + .bg-accent-blue-2:not([style*="background-"]) {
	padding-top: 0;
}

.bg-violet {
	background-color: #6D5BB6;
}

.bg-violet:not([style*="background-"]) + .bg-violet:not([style*="background-"]) {
	padding-top: 0;
}

.bg-accent-green {
	background-color: #75C15B;
}

.bg-accent-green:not([style*="background-"]) + .bg-accent-green:not([style*="background-"]) {
	padding-top: 0;
}

.bg-accent-green-2 {
	background-color: #6EC6A6;
}

.bg-accent-green-2:not([style*="background-"]) + .bg-accent-green-2:not([style*="background-"]) {
	padding-top: 0;
}

/*** Services starts ***/
.services{
	width: 100%;
	height: auto;
	background: url(../images/bg-img-1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.facility-item {
	background: rgba(255, 255, 255, .9);
	padding: 2em 0;
	border-radius: 2em;
}

.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
	
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}
/*** Services ends ***/

/*** Pricing starts ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}
/*** Pricing ends ***/

/* gallery */
.gallery{
  background: url(../images/gallery-bg.png) no-repeat;
  background-size: cover; 
  padding:4em 0;
}

.gallery .gallery-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery .gallery-container .box{
  width:calc(25% - 1em);
  display:flex;
  position:relative;
  position: relative;
  overflow: hidden;
  margin-right:1em;
  margin-top:1em;
  cursor:pointer;
}

@media(max-width:992px){
	.gallery .gallery-container .box{
		width:calc(33.3% - 1em);
	}
}

@media(max-width:768px){
	.gallery .gallery-container .box{
		width:calc(50% - 1em);
	}
}

@media(max-width:576px){
	.gallery .gallery-container .box{
		width:95%;
		margin-right:0;
	}
}

.gallery .gallery-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-container .box:hover img{
  transform: scale(1.2);
}

.gallery .gallery-container .box .icon{
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.4);
  display: none;
}

.gallery .gallery-container .box .icon i{
  font-size: 6rem;
  color: var(--white-color);
}

.gallery .gallery-container .box:hover .icon{
  display: flex;
}

.gallery .gallery-container .box h4{
	position:absolute;
	background-color: var(--primary-background);
	color: var(--white-color);
	bottom:0;
	right:0;
	padding: 0.5em;
}

/* end */

/* Modal styling */
.my-Silde-Show-Modal {
	display: none; 
	flex-direction:column;
	position: fixed; 
	z-index: 50; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100vh; 
	overflow: auto; 
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.9); 
	color: #fff;
}

.my-Silde-Show-Modal .my-Silde-Show-Modal-Slide-Holder{
	width:100%;
	height:calc(100vh - 50px - 2px);
	border-top:1px solid #fff;
	display:flex;
	position:relative;
	align-items:center;
}

.my-Silde-Show-Modal .my-Silde-Show-Modal-Slide-Holder button{
	width:40px;
	height:40px;
	font-size:2.4em;
	color:#fff;
	border:none;
	background:none;
	outline:none;
}

.my-Silde-Show-Modal .my-Silde-Show-Modal-Slide-Holder button:disabled {
	opacity:0;
}

.my-Silde-Show-Modal .my-Silde-Show-Modal-Slide-Holder .slide-Img-Holder{
	flex:1;
	display: flex;
	height:calc(100vh - 50px - 2px);
	position:relative;
	justify-content:center;
	align-items:center;
	
}

.my-Silde-Show-Modal .my-Silde-Show-Modal-Slide-Holder .slide-Img-Holder img{
	max-width: 100%;
	max-height: 100%;;
}

.my-Silde-Show-Modal.show{
	display: flex;
}

/* Modal styling End*/

/*** Contact us starts ***/
.contact-us {
    width: 100%;
	height: auto;
	background: url(../images/contact-us-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.contact-banner-holder {
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 2em;
	overflow: hidden;
	margin-top: 3em;
}

.contact-banner-holder img {
	width: 100%;
	height: auto;
}

.contact-box-info-holder {
	width: 100%;
	margin: 2em 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-box-info-holder .contact-info-holder{
	white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
	margin-top: 1em;
	margin-right: 1em;
	border: 1px solid var(--white);
	border-radius: 1em;
	padding: 1em;
	/* text-align: center; */
}

.g-Map-Canvas{
	width:100%; 
	height:500px; 
	overflow:hidden;
	color:red;
}

@media only screen and (max-width: 425px) {
	.g-Map-Canvas{
		height:350px; 
	}
}
/*** Contact us ends ***/

footer{
	position: relative;
	top: 10px;
	color: var(--dark);
	text-align: center;
	padding: 5px 0;
	font-weight: 700;
}

@keyframes slidein {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

@keyframes growshrink {
  25%,
  75% {
    scale: 100%;
  }

  50% {
    scale: 200%;
    color: var(--secondery-color);
  }
}
