:root {
	--darkblue: #181e74;
	--yellow: #FFEB3B;
	--orange: #ff9800;
	--whitebgtext: #750706;
	--whitenobgtext: #ffffff;
	--accentOrange: #FE3E06;
	--primaryColor: #ffd9c288;
	--secondaryColor: #7a3b08;
	--yellowbg: #e6ae15;
	--navy: #101B3D;

}

/*darkred:#e00000, 

red:#FD0100  */

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--navy);
	background: radial-gradient(ellipse at top, #FFE9C2 0%, #FBD89A 45%, #F3C272 100%);
	background-attachment: fixed;
	overflow-x: hidden;
	line-height: 1.7;
	font-size: 16px;
}



.customers {
	background: var(--primaryColor);
	padding-top: 50px;
	padding-bottom: 50px;
}

.customers h2 {
	font-weight: bold;
	font-size: 30px;
	color: var(--whitebgtext);
}

.flag-slider {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.flag-track {
	display: flex;
	gap: 60px;
	width: max-content;
	animation: scrollFlags 25s linear infinite;
}

.flag-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 120px;
}

.flag-item img {
	height: 50px;
	object-fit: contain;
	margin-bottom: 8px;
	transition: 0.3s;
}

.flag-item p {
	font-size: 14PX;
	color: var(--secondaryColor);
	font-weight: bold;
}

.flag-item img:hover {
	transform: scale(1.1);
}

@keyframes scrollFlags {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}


.toast-message {
	position: fixed;
	top: 20px;
	right: 20px;
	background: #28a745;
	color: #fff;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.4s ease;
	z-index: 9999;
	font-size: 14px;
}

.toast-message.show {
	opacity: 1;
	transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: var(--whitebgtext);
	font-weight: 400;
	font-family: "DM Sans", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 18px;
	font-family: "DM Sans", sans-serif;
	color: var(--whitenobgtext);
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}






input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}



a,
a:hover,
a:focus,
a:active {
	text-decoration: none !important;
}

ul,
ol {
	padding: 0;
	margin: 0;
}









/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 45px;
	text-align: center;

}

.section-title.normal-title {
	margin-bottom: 50px;
}

.section-title.normal-title h2 {
	margin-bottom: 20px;
	margin-top: 0;
}

.section-title.normal-title p {
	margin-bottom: 0;
	color: var(--whitenobgtext);
}

.section-title h1 {
	font-size: 44px;
	color: var(--whitebgtext);
	margin-top: 34px;
	margin-bottom: 5px;
}

.section-title h2 {
	font-size: 35px;
	color: var(--yellow);
	margin-top: 34px;
	margin-bottom: 5px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}


.breadcrumb-option {
	width: 100%;
	height: 480px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}


@media (max-width:1200px) {
	.breadcrumb-option {
		width: 100%;
		min-height: 300px;
		background-position: top center;
	}
}

@media (max-width: 1400px) {
	.breadcrumb-option {
		height: 380px;
	}
}

@media (max-width: 576px) {
	.breadcrumb-option {
		height: 180px;
	}
}


@media (max-width: 1200px) {
	.breadcrumb-option {
		height: 320px;
	}
}


@media (max-width: 992px) {
	.breadcrumb-option {
		height: 260px;
		margin-top:85px;
	}
}

@media (max-width: 768px) {
	.hero {
		min-height: 260px;
		background-position: top center;
	}
}


.breadcrumb-option.portrait {
	background-position: center top;
}


.breadcrumb__text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
}


.spad.set-bg {
	width: 100%;
	min-height: 420px;

}

/* .spad {
	padding-top:50px;
	padding-bottom:50px;
} */

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}


/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 16px 36px 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: var(--darkblue);
	border-radius: 2px;
	letter-spacing: 2px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 50px;
	background: var(--darkblue);
	border: none;
	letter-spacing: 2px;
	border-radius: 2px;
}

.site-btns {
	text-decoration: none;
	color: black;
	background-color: var(--yellow);
	font-size: 16px;
	padding: 15px;
	font-weight: 500;
	border-radius: 15px;
}

.site-btns:hover {
	color: black;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}












.header__top {
	padding: 10px 0;
}

.header__top__widget {
	text-align: right;
	padding: 28px 0 24px;
}

.header__top__widget ul {
	display: inline-block;
	margin-right: 65px;
}

.header__top__widget ul li {
	font-size: 12px;
	color: var(--yellow);
	text-transform: uppercase;
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.header__top__widget ul li:last-child {
	margin-right: 0;
}

.header__top__widget ul li:last-child:after {
	display: none;
}

.header__top__widget ul li:after {
	position: absolute;
	right: -5px;
	top: 8px;
	height: 2px;
	width: 2px;
	background: var(--darkblue);
	content: "";
	border-radius: 50%;
}

.header__top__widget .primary-btn {
	display: inline-block;
}




.header__social {
	text-align: right;
}

.header__social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	margin-right: 25px;
}

.header__social a:last-child {
	margin-right: 0;
}











.header-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: black;
}

.header-item small {
	font-size: 11px;
	letter-spacing: 1px;
	opacity: 0.8;
}

.header-item a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.header-icon {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}


/* #google_translate_element {
	display: flex;
	align-items: center;
} */

.header-tools {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
}

.translate-box {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: end;
	justify-content: end;
}

/* Google Translate Fix */
#google_translate_element select {
	background: #fff;
	color: var(--darkblue);
	border: 1px solid var(--yellow);
	font-size: 12px;
	max-width: 140px !important;
	min-width: 140px !important;
	padding: 4px 6px;
	border-radius: 4px;
}

.goog-logo-link,
.goog-te-gadget span {
	display: none !important;
}

.goog-te-gadget {
	color: transparent !important;
	white-space: normal !important;
}



/*---------------------
  Hero
-----------------------*/

.hero {
	margin-top: -50px;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text span {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text h2 {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text .primary-btn {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	color: #ffffff;
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	position: absolute;
	left: 40px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.hero__sliders.owl-carousel .owl-nav button:hover {
	color: #111111;
	background: #ffffff;
}

.hero__sliders.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 40px;
}

.hero__items {
	height: 500px !important;
	display: flex;
	align-items: center;
}

.hero__text span {
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	display: block;
	margin-bottom: 30px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.2s;
	-moz-transition: all, 0.2s;
	-ms-transition: all, 0.2s;
	-o-transition: all, 0.2s;
	transition: all, 0.2s;
}

.hero__text h2 {
	text-transform: capitalize;
	font-size: 70px;
	line-height: 80px;
	color: #ffffff;
	margin-bottom: 50px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.8s;
	-moz-transition: all, 0.8s;
	-ms-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

/*---------------------
  Services
-----------------------*/

.services__item {
	background: #ffffff;
	border-radius: 18px;
	padding: 16px;
	margin-bottom: 30px;

	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.08),
		0 3px 8px rgba(0, 0, 0, 0.05);

	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth hover – no scale jump */
.services__item:hover {
	transform: translateY(-6px);
	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.12),
		0 6px 16px rgba(0, 0, 0, 0.08);
}

.services__item img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 14px;
	background: #f5f5f5;
}


.services__item h5 {
	margin-top: 14px;
	font-size: 12px;
	text-align: center;
	font-weight: 700;
	color: var(--accentOrange);
	text-transform: uppercase;
}

.services__item h6 {
	font-size: 14px;
	font-weight: 600;
	text-align: end;
	color: #666;
	margin-top: 10px;
	letter-spacing: 0.4px;
}

.services__list a {
	text-decoration: none;
	color: inherit;
	display: block;
}


@media (max-width: 767px) {
	.services__item img {
		height: 160px;
	}

	.services__item h5 {
		font-size: 16px;
	}
}

.services__item {
	border-top: 4px solid rgba(212, 175, 55, 0.6);
}

.services__item h6::after {
	content: " →";
	opacity: 0;
	transition: 0.3s;
}

.services__item:hover h6::after {
	opacity: 1;
}


.gemstone-text {
	white-space: nowrap;
	display: inline-block;
	max-width: none;
	overflow: visible;

	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	/* letter-spacing: 1px; */
	opacity: 0.6;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
	pointer-events: none;
}



/*---------------------
  Para
-----------------------*/

.para {
	padding: 40px 35px;
	margin-bottom: 40px;
	background: #ffffff;
	border-radius: 16px;

	/* layered soft shadow */
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.08),
		0 2px 6px rgba(0, 0, 0, 0.05);

	transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.para:hover {
	transform: translateY(-4px);
	box-shadow:
		0 16px 35px rgba(0, 0, 0, 0.12),
		0 6px 12px rgba(0, 0, 0, 0.08);
}


.para h5 {
	text-transform: uppercase;
	font-size: 20px;
	color: var(--orange);
	margin-top: 35px;
	margin-bottom: 12px;
}

.para p a {
	text-decoration: none;
	color: var(--secondaryColor);
}

.breadcrumb__text {
	visibility: hidden;
}

.vedicimg {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
	/* box-shadow: 0 10px 25px rgba(0,0,0,0.25); */
}

.vedic-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.vedictext {
	max-width: 900px;
	margin: auto;
}


.para p {
	color: var(--secondaryColor);
	line-height: 1.8;
	font-size: 15.5px;
	margin-bottom: 18px;
}

.para {
	border-left: 4px solid #d4af37;
}

@media (max-width: 767px) {
	.para {
		padding: 25px 20px;
		border-radius: 14px;
	}

	.para p {
		font-size: 14.5px;
		line-height: 1.7;
	}
}


.para img {
	width: 100%;
	height: 170px;
}


.section-headline {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 40px;
	padding: 10px 15px;
}

/* main highlight line */
.headline-primary {
	font-size: 26px;
	font-weight: 700;
	/* background-color:var(--primaryColor); */
	color: var(--whitebgtext);
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

/* supporting line */
.headline-secondary {
	font-size: 20px;
	font-weight: 600;
	color: #222;
	line-height: 1.5;
}

/* emphasis */
.section-headline b {
	color: #d4af37;
	/* gold accent */
}

/* subtle divider */
.section-headline::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: #d4af37;
	margin: 18px auto 0;
	border-radius: 10px;
}


@media (max-width: 767px) {
	.headline-primary {
		font-size: 20px;
	}

	.headline-secondary {
		font-size: 16px;
	}
}


.section-headline {
	/* background: rgba(255, 255, 255, 0.6); */
	border-radius: 14px;
}


.section-headline {
	animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}





/*---------------------
  Chooseus
-----------------------*/

.chooseus {
	background: #000;
	background-image: url(../img/chooseus/stars.png);
	padding-bottom: 20px;
	overflow-x: hidden;
}

.counter__item__icon i::before {
	color: #fff !important;
}


.counter__item__icon i {
	color: #fff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}



.chooseus__text {
	margin-bottom: 50px;
}

.chooseus__text h2 {
	font-size: 35px;
	color: #fff;
	/* margin-bottom: 6px; */
}

.chooseus__text p {
	margin-bottom: 0;
}

.chooseus__item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
	width: 100%;
}

.chooseus__item__icon {
	flex-shrink: 0;
}

.chooseus__item__text {
	overflow: hidden;
}

.chooseus__item__text h2 {
	font-size: 42px;
	line-height: 1.1;
	color: var(--whitenobgtext);
}

.chooseus__item__text p {
	font-size: 16px;
	color: var(--whitenobgtext);
}


@media (max-width: 991px) {
	.chooseus__item__text h2 {
		font-size: 34px;
	}
}


@media (max-width: 575px) {
	.chooseus__item {
		flex-direction: row;
		gap: 15px;
	}

	.chooseus__item__text h2 {
		font-size: 28px;
	}

	.chooseus__text h2 {
		font-size: 28px;
	}
}


/*---------------------
  Gallery
-----------------------*/
.gallery__pic {
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
}

.gallery__pic img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.gallery__pic:hover img {
	transform: scale(1.08);
}

.text-orange {
	color: var(--orange);
}


/*---------------------
  Instructor
-----------------------*/

.instructor {
	padding-top: 80px;
	padding-bottom: 70px;
}

.instructor__item {
	margin-bottom: 30px;
}

.instructor__item__pic {
	margin-bottom: 20px;
}

.instructor__item__pic img {
	min-width: 100%;
}

.instructor__item__text {
	text-align: center;
}

.instructor__item__text h5 {
	clear: #001943;
	margin-bottom: 5px;
}

.instructor__item__text span {
	font-size: 14px;
	color: #9B9EA3;
}

.appointment-section {
	background: linear-gradient(135deg, var(--navy), var(--navy-dark));
	position: relative;
}

.appointment__wrap {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(232, 184, 75, .25);
	border-radius: var(--radius);
	padding: 46px 36px;
}

.appointment__eyebrow {
	display: inline-block;
	padding: 6px 18px;
	background: var(--gold);
	color: var(--navy-dark);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.appointment__heading {
	color: #fff;
	font-size: 30px;
}

.appointment__subtitle {
	color: var(--saffron-light);
	font-size: 14px;
}

.appointment__field {
	position: relative;
}

.appointment__field input,
.appointment__field textarea {
	width: 100%;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(232, 184, 75, .3);
	border-radius: 10px;
	padding: 13px 16px;
	color: #fff;
	font-size: 14px;
	transition: var(--transition);
}

.appointment__field input::placeholder,
.appointment__field textarea::placeholder {
	color: rgba(255, 255, 255, .5);
}

.appointment__field input:focus,
.appointment__field textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 0 0 3px rgba(232, 184, 75, .15);
}

.appointment__field textarea {
	resize: vertical;
	min-height: 110px;
}

/* date input icon visible on dark bg */
.appointment__field input[type="date"] {
	color-scheme: dark;
}

.appointment__captcha {
	display: flex;
	justify-content: center;
	margin: 22px 0 20px;
}

.appointment__btn {
	background: var(--saffron);
	color: var(--navy-dark);
	font-weight: 700;
	font-size: 15px;
	padding: 12px 44px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: var(--transition);
}

.appointment__btn:hover {
	background: var(--gold);
	transform: translateY(-2px);
}

.response_msg {
	max-width: 800px;
	margin: 14px auto 0;
	color: #fff;
	font-size: 14px;
}

@media(max-width:767px) {
	.appointment__wrap {
		padding: 32px 20px;
	}

	.appointment__heading {
		font-size: 24px;
	}
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
	background: #f8f9fa;
	overflow-x: hidden;
}

.testimonial__slider {
	overflow: hidden;
}

.testimonial__inner {
	max-width: 900px;
	margin: 0 auto;
}

.testimonial__text p {
	font-size: 16px;
	color: #333;
	line-height: 1.8;
	margin-bottom: 25px;
}

.testimonial__text h5 {
	font-size: 18px;
	color: #222;
	font-weight: 700;
}

.testimonial__text h5 span {
	font-size: 14px;
	color: #777;
}



.testimonial__item {
	background: #ffffff;
	padding: 50px 40px;
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
	.testimonial__item {
		padding: 30px 20px;
	}
}

.testimonial__text .fa-star {
	color: #f4c150;
	margin: 0 2px;
}

.testimonial__text {
	text-align: center;
	position: relative;
	padding-top: 70px;
}

.testimonial__text:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	content: '"';
	color: var(--darkblue);
	font-size: 100px;
	line-height: 119px;
	margin: 0 auto;
}



@media (min-width: 992px) {
	.testimonial__text:before {
		font-size: 120px;
	}
}


.testimonial__text img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	margin: 0 auto;
}



.testimonial__slider.owl-carousel .owl-item img {
	width: auto;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 36px;
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 9px;
	width: 9px;
	background: #8a8e9e;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.testimonial__slider.owl-carousel .owl-dots button:after {
	position: absolute;
	left: -7px;
	top: -7px;
	height: 23px;
	width: 23px;
	border: 2px solid #8a8e9e;
	border-radius: 50%;
	content: "";
	opacity: 0;
}

.testimonial__slider .owl-item {
	text-align: center;
}


.testimonial__slider.owl-carousel .owl-dots button.active {
	background: var(--darkblue);
}

.testimonial__slider.owl-carousel .owl-dots button.active:after {
	opacity: 1;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}


/*---------------------
  Footer
-----------------------*/

.footer {
	background: var(--whitebgtext);
	background-image: url(../img/chooseus/stars.png);
	padding-top: 70px;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 25px;
}

.footer__about ul {
	margin-bottom: 25px;
	margin-top: 20px;
	font-size: 16px;
	font-weight: 600;
}

.footer__about ul li {
	color: #fff;
	line-height: 37px;
	font-size: 16px;
	list-style: none;
}

.footer__about ul li i {
	font-size: 16px;
	color: #fff;
	margin-right: 5px;
}

.footer__about .subscribe-form {
	position: relative;
}

.footer__about .subscribe-form input {
	width: 100%;
	height: 50px;
	font-size: 14px;
	color: #fff;
	background: rgba(250, 250, 250, 0.1);
	border: none;
	border-radius: 2px;
	padding-left: 22px;
}

.footer__about .subscribe-form button {
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	background: var(--orange);
	padding: 0 15px;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 25px;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	line-height: 37px;
	font-weight: 600;
}

.footer__widget .footer-address li {
	list-style: none;
	font-size: 16px;
	color: #fff;
	line-height: 37px;
	font-weight: 600;
}

.footer__widget .footer-address li h3 {
	color: #fff;
	font-size: 20px;
}

.footer__widget .footer-address li i {
	margin-right: 8px;
}

.footer__copyright {
	border-top: 1px solid rgba(225, 225, 225, 0.1);
	overflow: hidden;
	padding: 15px 0;
	margin-top: 20px;
	/* background-color: var(--primaryColor) */

}

.copyrights {
	background-color: var(--primaryColor)
}

.footer__copyright__text p {
	font-size: 14px;
	color: var(--whitebgtext);
	margin-bottom: 0;
}

.footer__copyright__text i {
	color: #a11f1f;
}

.footer__copyright__text a {
	color: var(--darkblue);
}

.footer__copyright__social {
	text-align: right;
}

.footer__copyright__social a {
	display: inline-block;
	font-size: 15px;
	color: var(--whitebgtext);
	text-decoration: none;
	margin-right: 25px;
}

.footer__copyright__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Breadcrumb
-----------------------*/



.breadcrumb__text,
.blog-hero {
	text-align: center;
}

.breadcrumb__text h2,
.blog-hero h2 {
	text-transform: capitalize;
	font-size: 44px;
	color: #ffffff;
	margin-bottom: 6px;
}

.breadcrumb__widget a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	margin-right: 15px;
	position: relative;
}

.breadcrumb__widget a:after {
	position: absolute;
	right: -14px;
	top: 1px;
	font-weight: 400;
	content: "/";
}

.breadcrumb__widget span {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
}

/*---------------------
  Home About
-----------------------*/

.home-about {
	padding-top: 0;
	padding-bottom: 0;

}

.home__about__pic {
	margin-right: -20px;
	padding-right: 30px;
}

.home__about__pic__item {
	height: 620px;
	width: calc(50% - 20px);
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}

.home__about__pic__item__inner {
	height: 300px;
	margin-bottom: 20px;
}


/* .home__about__text {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 15px;
	margin-top: 40px;
} */


.object-fit-cover {
	object-fit: cover;
}

.home__about__text {
	background: #ffffff;
	border-radius: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}





/* Main heading */
.about-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #222;
}

/* Subtitle */
.about-subtitle {
	font-size: 26px;
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 14px;
}

/* Tamil verse */
.about-verse {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	line-height: 1.8;
	margin-bottom: 30px;
	opacity: 0.85;
}

/* Images */
.about-image-row {
	margin-top: 20px;
	margin-bottom: 20px;
}

.about-img {
	/* width: 400px; */
	height: 320px;
	object-fit: contain;
	border-radius: 10px;
	object-position: center center;
	transition: transform 0.3s ease;
}

.about-img-lg {
	height: 320px;
	width: 100%;
	object-fit: contain;
	border-radius: 16px;

	box-shadow:
		0 10px 25px rgba(0, 0, 0, 0.12),
		0 4px 10px rgba(0, 0, 0, 0.08);

	transition: transform 0.3s ease;
}


.about-img:hover {
	transform: translateY(-4px);
}

/* Highlight line */
.about-highlight {
	font-size: 24px;
	font-weight: 700;
	color: var(--orange);
	margin-top: 20px;
}

/* Gold emphasis */
.home__about__text b {
	color: var(--secondaryColor);
}


@media (max-width: 767px) {
	.about-title {
		font-size: 20px;
		margin-bottom: 4px;
	}

	.chooseus__text {
		font-size: 20px;
	}

	.payment-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.contact-heading {
		font-size: 20px;
	}

	.about-subtitle {
		font-size: 20px;
	}

	.about-highlight {
		font-size: 18px;
	}

	.about-img {
		height: 170px;
		border-radius: 14px;
	}

	.about-img-lg {
		height: 220px;
	}

	.home__about__text {
		padding: 24px !important;
	}
}

.home__about__text {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-mantra {
	color: var(--orange);
	letter-spacing: 1px;
	line-height: 1.4;
}

.about-divider {
	width: 70px;
	height: 3px;
	background: linear-gradient(90deg, #d4af37, #ff9800);
	margin: 0 auto;
	border-radius: 3px;
}

.about-para {
	font-size: 15.5px;
	line-height: 1.9;
	color: var(--secondaryColor);
	margin-bottom: 14px;
}


/*---------------------
    About
-----------------------*/

.about {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding-bottom: 0;
}

.about:before {
	position: absolute;
	left: -447px;
	top: -144px;
	width: 990px;
	height: 1008px;
	background-image: url(../img/about/background-left.png);
	content: "";
	z-index: -1;
}

.about:after {
	position: absolute;
	right: -120px;
	bottom: 0;
	width: 459px;
	height: 504px;
	background-image: url(../img/about/background-right.png);
	content: "";
	z-index: -1;
}

.about__services {
	padding-bottom: 70px;
}

.about__text .section-title {
	margin-bottom: 26px;
	text-align: left;
}

.about__text .section-title h2 {
	margin-bottom: 8px;
}

.about__text .section-title p {
	color: #6E7580;
	line-height: 24px;
	margin-bottom: 0;
}

.about__bar .about__bar__item {
	margin-bottom: 30px;
}

.about__bar .about__bar__item:last-child {
	margin-right: 0;
}

.about__bar .about__bar__item p {
	color: var(--yellow);
	font-weight: 700;
	margin-bottom: 20px;
}

.about__bar .about__bar__item .barfiller {
	height: 8px;
	border: none;
	background: rgba(87, 104, 173, 0.1);
	border-radius: 50px;
	box-shadow: inherit;
	margin-bottom: 0;
}

.about__bar .about__bar__item .barfiller .tip {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 2px 11px 1px;
	border-radius: 10px;
	background: var(--darkblue);
	margin-top: -40px;
}

.about__bar .about__bar__item .barfiller .tip:after {
	border-color: var(--darkblue) transparent;
	left: 50%;
	top: 92%;
	-webkit-transform: translateX(-6px);
	transform: translateX(-6px);
}

.about__bar .about__bar__item .barfiller .fill {
	background: var(--darkblue);
	border-radius: 50px;
}

.about-image {
	width: 100%;
	max-width: 900px;
	/* prevents over-stretching */
	height: auto;
	display: block;
	margin: 0 auto;

	border-radius: 18px;
	object-fit: cover;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.12),
		0 4px 10px rgba(0, 0, 0, 0.08);
}


@media (max-width: 767px) {
	.about-image {
		border-radius: 14px;
		max-width: 100%;
	}
}

.about-image {
	border: 2px solid rgba(212, 175, 55, 0.4);
	padding: 6px;
	background: #fff;
}


.nadi-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--whitenobgtext);
	border: 2px solid var(--accentOrange);
	color: var(--whitebgtext);
	padding: 14px 22px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.35s ease;
	box-shadow: 0 0 0 rgba(254, 62, 6, 0);
}

/* Icon Circle */
.icon-circle {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--accentOrange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 0 12px rgba(254, 62, 6, 0.8);
}

/* Hover Glow Effect */
.nadi-btn:hover {
	background: var(--accentOrange);
	color: var(--whitebgtext);
	box-shadow: 0 0 25px rgba(254, 62, 6, 0.9);
	transform: translateY(-2px);
}

.nadi-btn:hover .icon-circle {
	background: #fff;
	color: var(--accentOrange);
}

/* Active (Selected) */
.nadi-btn.active {
	background: var(--accentOrange);
	box-shadow: 0 0 30px rgba(254, 62, 6, 1);
}


@media (max-width: 575px) {
	.nadi-btn {
		width: 100%;
		justify-content: center;
	}
}




.payment-details {
	/* background: #f8f9fa; */
	padding: 60px 0;
}

.payment-wrapper {
	background: #ffffff;
	border-radius: 14px;
	padding: 40px 30px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.payment-title {
	text-align: center;
	font-size: 35px;
	color: var(--whitebgtext);
	font-weight: bold;
	margin-bottom: 40px;
}

.payment-card {
	background: #ffffff;
	border-radius: 14px;
	padding: 25px;
	height: 100%;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.171);
}

.payment-heading {
	font-weight: 700;
	color: var(--orange);
	font-size: 16px;
	margin-bottom: 20px;
}

.payment-logo {
	max-width: 170px;
	margin-bottom: 20px;
}

/* 
.payment-btn {
	display: inline-block;
	margin-top: 15px;
	background: var(--darkblue);
	color: var(--accentOrange);
	padding: 10px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
}

.payment-btn:hover {
	background: var(--darkblue);
	color: var(--darkblue);
} */

.qr-img {
	width: 100%;
	max-width: 220px;
	margin-bottom: 10px;
	border-radius: 12px;
}

.upi-logo {
	max-width: 210px;
	margin: 10px auto;
}

.upi-id {
	margin-top: 10px;
	font-weight: 600;
	font-size: 13px;
	color: var(--orange);

}

.bank-logo {
	display: block;
	margin: 0 auto 20px;
	max-width: 150px;
}

.bank-logo2 {
	display: block;
	margin: 0 auto 20px;
	max-width: 150px;
}

.bank-details {
	list-style: none;
	padding: 0;
	font-size: 14px;
	color: #444;
}

.bank-details li {
	margin-bottom: 6px;
}





/*---------------------
    Team
-----------------------*/

.team {
	background: #f5f6fa;
	padding-bottom: 60px;
	margin-top: -60px;
}

.team__item {
	box-shadow: 0px 10px 15px rgba(35, 37, 43, 0.1);
	position: relative;
	padding: 20px 20px;
	background: #ffffff;
}

.team__item__pic {
	position: absolute;
	right: -15px;
	bottom: 0;
}

.team__item__text p {
	color: var(--whitebgtext);
}

.team__item__text .team__item__title {
	margin-bottom: 18px;
	margin-top: 20px;
}

.team__item__text .team__item__title h4 {
	color: var(--darkblue);
	margin-bottom: 4px;
}

.team__item__text .team__item__title span {
	font-size: 16px;
	color: var(--whitebgtext);
}

.team__item__text p {
	font-size: 16px;
	line-height: 20px;
}

.team__item__text a {
	color: #007bff !important;
}

.team__item__text .team__item__social a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__item__text .team__item__social a:hover {
	color: var(--darkblue);
}

.team__item__text .team__item__social a:last-child {
	margin-right: 0;
}

.team__slider.owl-carousel .col-lg-6 {
	max-width: 100%;
}

.team__slider.owl-carousel .owl-stage-outer {
	padding-top: 60px;
	padding-bottom: 40px;
}

.team__slider.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: #ffffff;
	border-radius: 2px;
	color: #111111;
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	position: absolute;
	left: -76px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__slider.owl-carousel .owl-nav button:hover {
	color: #ffffff;
	background: var(--darkblue);
}

.team__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -76px;
}

/*---------------------
    Counter
-----------------------*/

.counter {
	padding-top: 0;
}



.counter__text {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}


.counter__item {
	text-align: center;
	padding: 30px 20px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 16px;
	backdrop-filter: blur(4px);
}



.counter__item:last-child {
	margin-right: 0;
}

.counter__item__icon {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.choose-counter {
	font-size: 42px;
	font-weight: 700;
	color: #FFEB3B;
	/* yellow highlight */
	margin-bottom: 8px;
}

.counter__item__text p {
	color: #fff;
	font-size: 16px;
	margin: 0;
}

.counter__item__text {
	overflow: hidden;
}

.counter__item__text h2 {
	font-size: 44px;
	font-weight: 700;
	color: #ffffff;
}

.counter__item__text p {
	color: #ffffff;
	margin-bottom: 0;
	font-size: 18px;
}

@media (max-width: 991px) {
	.counter__text {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.counter__text {
		grid-template-columns: 1fr;
	}
}



/*---------------------
  Classes
-----------------------*/

.classes__filter {
	background: #ffffff;
	box-shadow: 0px 10px 20px rgba(35, 37, 43, 0.1);
	border-radius: 2px;
	padding: 25px 100px 30px;
	margin-bottom: 60px;
}

.classes__filter form {
	position: relative;
	width: 100%;
	display: inline-block;
}

.classes__filter form .class__filter__select {
	width: calc(24% - 30px);
	float: left;
	margin-right: 30px;
}

.classes__filter form .class__filter__select p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__filter form .class__filter__select .nice-select {
	float: none;
	height: 40px;
	background: #f5f6fa;
	border: 1px solid #D4D5D8;
	border-radius: 2px;
}

.classes__filter form .class__filter__select .nice-select span {
	font-size: 16px;
	color: #001943;
}

.classes__filter form .class__filter__select .nice-select .list {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
}

.classes__filter form .class__filter__select .nice-select:after {
	border-bottom: 2px solid var(--darkblue);
	border-right: 2px solid var(--darkblue);
	height: 8px;
	margin-top: 0;
	right: 20px;
	top: 37%;
	width: 8px;
}

.classes__filter form .class__filter__btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

.classes__filter form .class__filter__btn button {
	font-size: 18px;
	color: #ffffff;
	height: 40px;
	width: 42px;
	border-radius: 2px;
	background: var(--darkblue);
	line-height: 40px;
	text-align: center;
	border: none;
	display: inline-block;
}

.upcoming-classes {
	padding-bottom: 70px;
	padding-top: 80px;
}

.upcoming-classes.top-classes {
	background: #f5f6fa;
}

.classes__item {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	margin-bottom: 30px;
	background: #ffffff;
}

.classes__item.classes__item__page .classes__item__pic span {
	padding: 5px 30px 4px 20px;
}

.classes__item__pic {
	height: 241px;
	position: relative;
}

.classes__item__pic span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 7px 16px 4px;
	background: var(--darkblue);
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__item__text {
	padding: 15px;
}

.classes__item__text ul {
	margin-bottom: 10px;
}

.classes__item__text ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 45px;
}

.classes__item__text ul li:last-child {
	margin-right: 0;
}

.classes__item__text ul li span {
	margin-right: 5px;
}

.classes__item__text p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__item__text img {
	width: 100%;
	height: 200px;
}

.classes__item__text h4 {
	margin-bottom: 50px;
	text-align: center;
}

.classes__item__text h4 a {

	color: var(--orange) !important;
	line-height: 36px;
}

.classes__item__text h6 {
	color: var(--whitebgtext);
	font-weight: bold;
	margin-bottom: 35px;
}

.classes__item__text h6 span {
	color: var(--whitebgtext);

}

.classes__item__text .class-btn {
	font-size: 14px;
	font-weight: 700;
	color: var(--orange);
	display: inline-block;
	border: 1px solid rgba(155, 158, 163, 0.2);
	padding: 10px 20px 7px;
	border-radius: 2px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.classes__item__text .class-btn:hover {
	background: var(--darkblue);
	border: 1px solid var(--darkblue);
	color: #ffffff;
}

.classes__pagination {
	text-align: center;
	padding-top: 30px;
}

.classes__pagination.blog__pagination {
	text-align: left;
	padding-top: 0;
}

.classes__pagination a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	background: #f5f6fa;
	font-weight: 700;
	height: 40px;
	width: 40px;
	border: 1px solid #D4D5D8;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 16px;
}

.classes__pagination a:last-child {
	margin-right: 0;
}

.classes__pagination a span {
	font-size: 24px;
	position: relative;
	top: 3px;
}

.classes__pagination a:hover {
	background: var(--darkblue);
	border-color: var(--darkblue);
	color: #ffffff;
}

/*---------------------
  Classes Details
-----------------------*/

.classes__sidebar__item {
	margin-bottom: 60px;
}

.classes__sidebar__item.classes__sidebar__item--info h4 {
	margin-bottom: 30px;
}

.classes__sidebar__item h4 {
	color: var(--yellow);
	margin-bottom: 40px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li {
	display: inline-block;
	margin-right: 45px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li:last-child {
	margin-right: 0;
}

.classes__sidebar__item ul.classes__sidebar__item__id {
	margin-bottom: 30px;
}

.classes__sidebar__item ul li {
	list-style: none;
	font-size: 18px;
	color: #6E7580;
	line-height: 36px;
}

.classes__sidebar__item ul li span {
	margin-right: 5px;
	font-size: 18px;
}

.classes__sidebar__item .sidebar-btn {
	font-size: 14px;
	font-weight: 700;
	color: var(--darkblue);
	display: inline-block;
	border: 1px solid var(--darkblue);
	padding: 10px 20px 7px;
	border-radius: 2px;
}

.classes__sidebar__instructor__pic {
	float: left;
	margin-right: 30px;
}

.classes__sidebar__instructor__pic img {
	height: 121px;
	width: 121px;
	border-radius: 50%;
}

.classes__sidebar__instructor__text {
	overflow: hidden;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title {
	margin-bottom: 15px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title h4 {
	color: var(--darkblue);
	margin-bottom: 0;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title span {
	font-size: 16px;
	color: #6E7580;
}

.classes__sidebar__instructor__text p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a {
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:hover {
	color: var(--darkblue);
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:last-child {
	margin-right: 0;
}

.classes__sidebar__comment {
	border-bottom: 1px solid rgba(37, 37, 37, 0.1);
	padding-bottom: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.classes__sidebar__comment:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.classes__sidebar__comment__pic {
	text-align: center;
	float: left;
	margin-right: 30px;
}

.classes__sidebar__comment__pic img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.classes__sidebar__comment__pic .classes__sidebar__comment__rating i {
	font-size: 12px;
	color: #F5C136;
	margin-right: -4px;
}

.classes__sidebar__comment__text {
	overflow: hidden;
}

.classes__sidebar__comment__text span {
	font-size: 14px;
	color: #9B9EA3;
	display: block;
}

.classes__sidebar__comment__text h6 {
	color: var(--darkblue);
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 5px;
}

.classes__sidebar__comment__text p {
	line-height: 28px;
	margin-bottom: 0;
}

.classes-details {
	padding-top: 30px;
}

.classes__details h1 {
	text-transform: capitalize;
	font-size: 44px;
	color: var(--yellow);
	margin-bottom: 16px;
}

.classes__details h2 {
	text-transform: capitalize;
	font-size: 44px;
	color: var(--yellow);
	margin-bottom: 16px;
}

.classes__details h5 {
	color: var(--secondaryColor);
}



.classes__details p {
	padding-top: 20px;
	line-height: 28px;
	margin-bottom: 15px;
}

.classes__details .classes__details__widget {
	margin-bottom: 15px;
}

.classes__details .classes__details__widget li {
	list-style: none;
	font-size: 16px;
	color: var(--whitenobgtext);
	display: inline-block;
	margin-right: 45px;
}

.classes__details .classes__details__widget li:last-child {
	margin-right: 0;
}

.classes__details .classes__details__widget li span {
	margin-right: 5px;
	color: var(--yellow);
}

.classes__details__large {
	position: relative;
	margin-bottom: 28px;
}

.classes__details__large img {
	object-fit: cover;
	height: 300px;
	width: 100%
}

.classes__details__large span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 5px 30px 4px 20px;
	background: var(--darkblue);
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__details__item {
	margin-bottom: 20px;
}

.classes__details__item img {
	min-width: 100%;
	margin-bottom: 20px;
}

.classes__details__desc h6 {
	color: var(--accentOrange);
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: capitalize;
}

.classes__details__desc ul li {
	list-style: none;
	font-size: 16px;
	line-height: 28px;
}

.classes__details__desc ul li span {
	color: var(--darkblue);
	margin-right: 10px;
}

/*---------------------
  Leave Comment
-----------------------*/

.leave-comment {
	background: #f5f6fa;
	padding-bottom: 70px;
	padding-top: 80px;
}

.leave__comment__text h2 {
	font-size: 44px;
	color: var(--orange);
	text-align: center;
	margin-bottom: 35px;
}

.leave__comment__text form input {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 50px;
	margin-bottom: 20px;
}

.leave__comment__text form input::placeholder {
	color: #6E7580;
}

.leave__comment__text form .leave__comment__rating {
	margin-bottom: 20px;
}

.leave__comment__text form .leave__comment__rating h5 {
	font-size: 20px;
	color: var(--yellow);
	display: inline-block;
	font-weight: 700;
	margin-right: 12px;
}

.leave__comment__text form .leave__comment__rating i {
	font-size: 16px;
	color: #F5C136;
	margin-right: -4px;
}

.leave__comment__text form .leave__comment__rating i:last-child {
	color: #9B9EA3;
}

.leave__comment__text form textarea {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 132px;
	margin-bottom: 35px;
	resize: none;
	padding-top: 14px;
}

.leave__comment__text form textarea::placeholder {
	color: #6E7580;
}

/*---------------------
  Pricing
-----------------------*/

.pricing {
	padding-top: 40px;
	padding-bottom: 20px;
}

.pricing__item {
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	padding: 35px 0 46px;
	position: relative;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	z-index: 1;
	margin-bottom: 40px;
	border-radius: 10px;
	overflow: hidden;
}

.pricing__item .active {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover .pricing__item__price h2 {
	color: var(--darkblue);
}

.pricing__item:hover ul li {
	color: #6E7580;
}

.pricing__item:hover .primary-btn {
	background: var(--darkblue);
}

.pricing__item .pricing__item__star {
	height: 119px;
	width: 119px;
	background: var(--yellow);
	border-radius: 50%;
	position: absolute;
	right: -50px;
	top: -50px;
}

.pricing__item .pricing__item__star i {
	font-size: 35px;
	color: #ffffff;
	position: absolute;
	left: 25px;
	bottom: 21px;
}

.pricing__item h4 {
	font-size: 25px;
	color: #001943;
	margin-bottom: 45px;
}

.pricing__item .pricing__item__price {
	margin-bottom: 15px;
}

.pricing__item .pricing__item__price h2 {
	font-size: 70px;
	font-weight: 700;
	color: var(--yellow);
	line-height: 65px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .pricing__item__price span {
	color: #9B9EA3;
	font-size: 15px;
	font-weight: 400;
	display: block;
}

.pricing__item ul {
	margin-bottom: 12px;
}

.pricing__item ul li {
	list-style: none;
	font-size: 18px;
	color: #454545;
	line-height: 45px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .primary-btn {
	background: #acacac;
	padding: 16px 55px 14px 50px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 60px;
}

.blog__item__pic {
	margin-bottom: 0px;
}

.blog__item__pic img {
	min-width: 100%;
}

.blog__item__text ul {
	margin-bottom: 26px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #9B9EA3;
	margin-right: 15px;
	display: inline-block;
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text ul li i {
	margin-right: 5px;
}

.blog__item__text h5 {
	margin-bottom: 15px;
	min-height: 50px;
}

.blog__item__text h5 a {
	font-size: 20px;
	color: var(--orange);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__item__text h5 a:hover {
	color: var(--darkblue);
}

.blog__item__text p {
	color: var(--whitebgtext);
	margin-bottom: 5px;
}

.blog__item__text .blog_read_more {
	font-size: 14px;
	color: #9B9EA3;
	padding: 18px 25px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	border: 1px solid rgba(155, 158, 163, 0.3);
	display: inline-block;
}

.blog__item__text .blog_read_more span {
	font-size: 16px;
	position: relative;
	top: 2px;
	margin-left: 6px;
}

.chapter-card img {
	height: 200px;
	object-fit: cover;
}

.chapter-card {
	transition: all 0.3s ease;
	border-radius: 12px;
}

.chapter-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.badge {
	font-size: 14px;
}


/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-right: 50px;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	font-size: 16px;
	color: #9B9EA3;
	padding-left: 25px;
}

.blog__sidebar__search form input::placeholder {
	color: #9B9EA3;
}

.blog__sidebar__search form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	color: #9B9EA3;
	height: 100%;
	padding: 0 15px;
	background: transparent;
	border: none;
}

.blog__sidebar__categories {
	margin-bottom: 30px;
}

.blog__sidebar__categories h4 {
	color: #1C1C1C;
	margin-bottom: 10px;
}

.blog__sidebar__categories ul li {
	list-style: none;
}

.blog__sidebar__categories ul li a {
	font-size: 16px;
	color: #9B9EA3;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__categories ul li a:hover {
	color: var(--darkblue);
}

.blog__sidebar__recent {
	margin-bottom: 50px;
}

.blog__sidebar__recent h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

.blog__recent__item {
	margin-bottom: 20px;
	overflow: hidden;
}

.blog__recent__item:last-child {
	margin-bottom: 0;
}

.blog__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__recent__item__text {
	overflow: hidden;
}

.blog__recent__item__text h6 {
	color: var(--yellow);
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__recent__item__text span {
	font-size: 12px;
	color: #9B9EA3;
	text-transform: uppercase;
}

.blog__sidebar__tags {
	margin-bottom: 40px;
}

.blog__sidebar__tags h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

.blog__sidebar__tags a {
	font-size: 16px;
	background: #f5f5f5;
	color: #9B9EA3;
	display: inline-block;
	padding: 7px 15px 3px;
	margin-right: 6px;
	margin-bottom: 10px;
}

.blog__sidebar__comment h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog__hero__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	margin-right: 35px;
	position: relative;
}

.blog__hero__text ul li:after {
	position: absolute;
	right: -23px;
	top: -1px;
	content: "|";
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li:last-child:after {
	display: none;
}

.blog__hero__text ul li span {
	font-weight: 700;
}

/*---------------------
  Blog Details
-----------------------*/

.blog__details__large {
	position: relative;
	margin-bottom: 40px;
}

.blog__details__large span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 5px 30px 4px 20px;
	background: var(--darkblue);
	position: absolute;
	left: 0;
	top: 10px;
}

.blog__details__text {
	margin-bottom: 30px;
}

.blog__details__text p {
	line-height: 28px;
}

.blog__details__quote {
	position: relative;
	padding-left: 30px;
	margin-bottom: 60px;
}

.blog__details__quote:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 56px;
	width: 2px;
	background: var(--darkblue);
	content: "";
}

.blog__details__quote p {
	line-height: 28px;
	color: var(--yellow);
}

.blog__details__pic {
	margin-bottom: 30px;
}

.blog__details__pic img {
	margin-bottom: 20px;
	min-width: 100%;
}

.blog__details__desc {
	margin-bottom: 40px;
}

.blog__details__desc h4 {
	color: var(--yellow);
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__desc p {
	line-height: 28px;
}

.blog__details__tags__share {
	overflow: hidden;
	margin-bottom: 25px;
}

.blog__details__tags__share p {
	color: #9B9EA3;
	float: left;
}

.blog__details__tags__share p span {
	color: var(--yellow);
	font-weight: 700;
}

.blog__details__tags__share .blog__details__share {
	float: right;
}

.blog__details__tags__share .blog__details__share a {
	display: inline-block;
	font-size: 18px;
	color: var(--yellow);
	margin-right: 24px;
}

.blog__details__tags__share .blog__details__share a:last-child {
	margin-right: 0;
}

.blog__details__author {
	background: #f5f6fa;
	border-radius: 2px;
	padding: 35px 40px 35px 20px;
	margin-bottom: 50px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 20px;
}

.blog__details__author__pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
}

.blog__details__author__text h4 {
	color: var(--yellow);
	font-weight: 700;
	margin-bottom: 5px;
}

.blog__details__author__text p {
	color: #9B9EA3;
	line-height: 28px;
	margin-bottom: 0;
}

.blog__previous__btn,
.blog__next__btn {
	display: block;
	position: relative;
	padding-left: 30px;
}

.blog__previous__btn i,
.blog__next__btn i {
	font-size: 25px;
	color: #9B9EA3;
	position: absolute;
	left: 0;
	top: 0;
}

.blog__previous__btn h6,
.blog__next__btn h6 {
	color: var(--yellow);
	font-weight: 700;
	margin-bottom: 5px;
}

.blog__previous__btn span,
.blog__next__btn span {
	font-size: 12px;
	color: #9B9EA3;
}

.blog__next__btn {
	text-align: right;
	padding-left: 0;
	padding-right: 30px;
}

.blog__next__btn i {
	right: 0;
	top: 0;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-bottom: 80px;
}

.contact__widget__item {
	text-align: center;
	margin-bottom: 30px;
}

.contact__widget__item span {
	font-size: 36px;
	color: #007bff;
}

.contact__widget__item h4 {
	color: var(--yellow);
	margin-top: 16px;
	margin-bottom: 5px;
}

.contact__widget__item p {
	color: var(--whitenobgtext);
	margin-bottom: 0;
}

.contact-heading {
	font-size: 30px;

}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: var(--darkblue);
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: #ffffff;
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -38px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-9px);
	border: 18px solid transparent;
	border-top: 36px solid #ffffff;
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h5 {
	font-size: 20px;
	color: var(--yellow);
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.comment-form {
	background: #ffffff;
	padding-bottom: 100px;
}

.comment-form form input {
	margin-bottom: 30px;
}

.comment-form form textarea {
	margin-bottom: 34px;
}

/*---------------------
  Faq
-----------------------*/

.faq__accordion .card {
	border: none;
	border-radius: 0;
}

.faq__accordion .card:last-child .card-heading {
	border-bottom: none;
}

.faq__accordion .card:last-child .collapse.show .card-body {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.faq__accordion .card .card-heading {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 20px;
	margin-bottom: 15px;
}

.faq__accordion .card .card-heading.active {
	border-bottom: 0;
}

.faq__accordion .card .card-heading.active a span {
	color: var(--yellow);
}

.faq__accordion .card .card-heading.active a span:before {
	opacity: 1;
}

.faq__accordion .card .card-heading a {
	font-size: 24px;
	cursor: pointer;
}

.faq__accordion .card .card-heading a span {
	font-weight: 700;
	position: relative;
	color: #9B9EA3;
	display: inline-block;
	transition: all 0.4s;
}

.faq__accordion .card .card-heading a span:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 100%;
	background: var(--darkblue);
	content: "";
	opacity: 0;
	transition: all 0.4s;
}

.faq__accordion .card .card-body {
	padding: 0;
	padding-bottom: 30px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__accordion .card .card-body p {
	margin-bottom: 0;
	line-height: 24px;
}

.faq__accordion .card .card-body h6 {
	color: #6E7580;
	margin-top: 35px;
}

.faq__accordion .card .card-body h6 a {
	color: #6E7580;
}

.faq__accordion .card-heading a:after,
.faq__accordion .card-heading>a.active[aria-expanded=false]:after {
	content: "+";
	font-size: 32px;
	font-weight: 400;
	color: var(--yellow);
	position: absolute;
	right: 0;
	top: 0;
	line-height: 20px;
	top: 8px;
}

.faq__accordion .card-heading.active a:after {
	content: "-";
	font-size: 32px;
	font-weight: 400;
	color: var(--darkblue);
	position: absolute;
	right: 0;
	top: 4px;
	line-height: 20px;
}

.faq__accordion .card-heading a[aria-expanded=true]:after,
.faq__accordion .card-heading>a.active:after {
	content: "-";
	font-size: 32px;
	font-weight: 400;
	color: var(--darkblue);
	position: absolute;
	right: 0;
	top: 4px;
	line-height: 20px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
	}

	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}

	.team__slider.owl-carousel .owl-nav button {
		left: -5px;
	}

	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -5px;
	}

	.counter__item {
		margin-right: 50px;
	}

	.header__top__widget .primary-btn {
		display: none;
	}

	.header__top__widget ul {
		margin-right: 0;
	}

	.header__top__widget {
		padding: 44px 0 35px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu ul li {
		margin-right: 18px;
	}

	.header__top__widget ul {
		display: none;
	}

	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
		display: none;
	}

	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}

	.about__pic {
		margin-bottom: 30px;
	}

	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -80px;
	}

	.team__item {
		padding: 30px 35px 40px;
	}

	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}

	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}

	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}

	.classes__filter {
		padding: 25px 50px 30px;
	}

	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}

	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}

	.blog__sidebar {
		margin-top: 50px;
	}

	.counter__item {
		margin-right: 50px;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {


	.single-header-info {
		display: none;
	}

	.appointment__text {
		padding: 60px 30px;
	}

	.hero__sliders.owl-carousel .owl-nav button {
		position: relative;
		left: 15px;
		bottom: 120px;
		display: none;
	}

	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: -25px;
	}

	.home__about__pic__item {
		width: 100%;
		margin-right: 0;
	}

	.about .p-0 {
		padding: 0 15px !important;
	}

	.about__pic {
		margin-bottom: 30px;
	}

	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -100px;
	}

	.team__item {
		padding: 30px 35px 40px;
	}

	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}

	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}

	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}

	.classes__filter {
		padding: 25px 50px 30px;
	}

	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}

	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}

	.blog__sidebar {
		margin-top: 50px;
	}

	.blog__previous__btn,
	.blog__next__btn {
		margin-bottom: 20px;
	}

	.header__top__widget {
		display: none;
	}

	.header__nav {
		display: none;
	}

	.hero {
		margin-top: 85px;
	}

	.header__top .container {
		position: relative;
	}









	/* .nav-link
	{
		color: var(--whitenobgtext);

	}

	.dropdown-item
	{
      color: var(--whitenobgtext);
	} */






	.canvas__open {
		font-size: 20px;
		color: var(--yellow);
		height: 30px;
		width: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid var(--yellow);
		cursor: pointer;
		position: absolute;
		right: 7px;
		bottom: -25px;
		display: block;
	}


	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}

	.slicknav_btn {
		display: none;
	}

	.slicknav_nav {
		background: transparent;
		display: block !important;
	}

	.slicknav_nav .slicknav_row:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: var(--yellow);
	}

	.slicknav_nav a:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: var(--yellow);
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: var(--orange);
		font-size: 16px;
		border-bottom: 1px solid #e1e1e1;
	}

	.header__menu {
		display: none;
	}

	.header__social {
		display: none;
	}

	.hero__items {
		height: auto;
	}

	.hero__text {
		text-transform: capitalize;
		padding: 120px 0 170px;
	}

	.breadcrumb-option,
	.blog-hero {
		margin-top: 84px;
	}

	.footer__copyright__text {
		text-align: center;
		margin-bottom: 10px;
	}

	.footer__copyright__social {
		text-align: center;
	}

	.home__about__pic {
		margin-right: 0;
		padding-right: 0;
	}

	.blog__details__tags__share p {
		float: none;
	}

	.blog__details__tags__share .blog__details__share {
		float: none;
	}

	.over-hid {
		overflow: hidden;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__text h2 {
		font-size: 40px;
		line-height: normal;
	}

	.hero__sliders.owl-carousel .owl-nav button {
		/* bottom: 80px; */
		display: none;
	}

	.chooseus__item {
		width: 100%;
		margin-bottom: 60px;
	}

	.appointment .section-title h2 {
		font-size: 35px;
	}

	.section-title h2 {
		font-size: 20px;
	}

	.counter__item {
		display: block;
		margin-right: 0;
	}

	.counter__text {
		padding: 95px 30px 20px 50px;
	}

	.blog__details__author__pic {
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.map .map-inside {
		-webkit-transform: translateX(-150px);
		-ms-transform: translateX(-150px);
		transform: translateX(-150px);
	}

	.map .map-inside .inside-widget {
		width: 300px;
	}

	.blog__sidebar {
		padding-right: 0;
	}

	.faq__accordion .card .card-heading a {
		font-size: 16px;
	}
}