		* {
			margin: 0;
			padding: 0;
			box-sizing: border-box;
		}

		body {
			font-family: 'Poppins', sans-serif;
			font-size: 15px;
			color: #bd1616;
			line-height: 1.6;
		}

		h1,
		h2,
		h3,
		h4,
		h5,
		h6 {
			font-family: 'Cinzel Decorative', cursive;
		}

		a {
			text-decoration: none;
			color: inherit;
		}

		ul {
			list-style: none;
		}

		img {
			max-width: 100%;
			height: auto;
		}

		.container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 15px;
		}

		.clearfix::after {
			content: "";
			display: table;
			clear: both;
		}

		/* Header */
		.site-header {
			position: absolute;
			width: 100%;
			z-index: 100;
			padding: 20px 0;
		}

		.header-nav-area {
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.logo-header img {
			max-width: 200px;
		}

		.site-navigation {
			display: flex;
			align-items: center;
			gap: 30px;
		}

		.mainmenu {
			display: flex;
			gap: 30px;
		}

		.mainmenu li a {
			color: #fff;
			font-size: 16px;
			font-weight: 500;
			transition: color 0.3s;
		}

		.mainmenu li a:hover {
			color: #ec7b34;
		}

		.header-socials a {
			color: #fff;
			margin-left: 15px;
			font-size: 16px;
		}

		.header-socials a:hover {
			color: #ec7b34;
		}

		/* Hero Slider */
		.slider-area {
			background-color: #eeebe6;
		}

.hero-slider {
			position: relative;
			height: 100vh;
			min-height: 600px;
			display: flex;
			align-items: center;

			background:
				linear-gradient(rgba(255, 204, 0, 0.35),
					rgba(0, 0, 0, 0.5)),
				url('../img/BG.png');

			background-position: center center;
			background-size: cover;
			background-repeat: no-repeat;
		}
		/* MOBILE FIX */

		@media (max-width: 768px) {

			.hero-slider {
				height: 100vh;
				min-height: auto;

				background-position: center top;
				background-size: cover;
			}

		}

		.about-area {
			padding: 90px 20px;
			background: linear-gradient(135deg, #fff7cc, #ffe066);
		}

		.about-content {
			display: flex;
			align-items: center;
			gap: 60px;
			flex-wrap: wrap;
		}

		.about-img {
			flex: 1;
		}

		.about-img img {
			width: 100%;
			border-radius: 25px;
			box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
		}

		.about-text {
			flex: 1;
		}

		.about-text h2 {
			font-size: 42px;
			line-height: 1.4;
			color: #b30000;
			margin-bottom: 15px;
			font-weight: 700;
		}

		.about-text h3 {
			font-size: 28px;
			color: #ff6600;
			margin-bottom: 25px;
		}

		.about-text p {
			font-size: 18px;
			line-height: 1.9;
			color: #333;
			margin-bottom: 20px;
		}

		.main-highlight {
			font-size: 22px !important;
			font-weight: 700;
			color: #b30000 !important;
		}

		.about-points {
			margin-top: 25px;
		}

		.point-box {
			background: rgba(255, 255, 255, 0.7);
			padding: 16px 20px;
			margin-bottom: 15px;
			border-left: 5px solid #ff6600;
			border-radius: 12px;
			font-size: 17px;
			line-height: 1.7;
			color: #222;
		}

		.join-btn-wrap {
			margin-top: 35px;
		}

		#button-377b1079 {
			display: inline-flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;

			padding: 22px 45px;

			background: linear-gradient(135deg, #ff0000, #ff6600);

			color: #fff;
			text-decoration: none;

			border-radius: 60px;

			box-shadow:
				0 12px 30px rgba(255, 0, 0, 0.3);

			transition: 0.4s ease;
		}

		#button-377b1079:hover {
			transform: translateY(-5px) scale(1.03);
		}

		.btn-title {
			font-size: 24px;
			font-weight: 700;
			text-align: center;
			line-height: 1.5;
		}

		.btn-sub {
			margin-top: 8px;
			font-size: 15px;
			color: rgba(255, 255, 255, 0.9);
		}

		@media(max-width:768px) {

			.about-content {
				flex-direction: column;
			}

			.about-text h2 {
				font-size: 30px;
			}

			.about-text h3 {
				font-size: 22px;
			}

			.main-highlight {
				font-size: 18px !important;
			}

			.btn-title {
				font-size: 18px;
			}

			#button-377b1079 {
				width: 100%;
				padding: 18px 20px;
			}

		}

		.workshop-section {
			padding: 80px 20px;
			background: linear-gradient(135deg, #fff5cc, #ffe066);
		}

		.workshop-box {
			background: #fff;
			padding: 40px;
			border-radius: 25px;
			margin-bottom: 40px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		.workshop-box h2 {
			font-size: 38px;
			color: #b30000;
			margin-bottom: 20px;
		}

		.workshop-box h3 {
			color: #ff6600;
			margin: 25px 0 15px;
		}

		.workshop-box p {
			font-size: 17px;
			line-height: 1.9;
			color: #333;
			margin-bottom: 15px;
		}

		.highlight-text {
			font-size: 22px !important;
			font-weight: 700;
			color: #b30000 !important;
		}

		.join-btn {
			display: inline-block;
			margin-top: 20px;
			padding: 18px 35px;
			background: linear-gradient(135deg, #ff0000, #ff6600);
			color: #fff;
			text-decoration: none;
			border-radius: 50px;
			font-weight: 700;
			font-size: 20px;
			transition: 0.4s;
		}

		.join-btn:hover {
			transform: translateY(-4px);
		}

		.join-btn span {
			font-size: 16px;
		}

		.bonus-text {
			margin-top: 20px;
			font-size: 24px !important;
			font-weight: 700;
			color: #ff0000 !important;
		}

		.tamil-box {
			background: #fff7e6;
		}

		.faq-section {
			padding: 80px 20px;
			background: #b30000;
		}

		.section-title {
			text-align: center;
			color: #fff;
			font-size: 40px;
			margin-bottom: 40px;
		}

		.faq-box {
			background: #fff;
			padding: 40px;
			border-radius: 20px;
		}

		.faq-box h4 {
			color: #b30000;
			margin-top: 20px;
			font-size: 22px;
		}

		.faq-box p {
			color: #444;
			line-height: 1.8;
		}

		@media(max-width:768px) {

			.workshop-box {
				padding: 25px;
			}

			.workshop-box h2 {
				font-size: 28px;
			}

			.highlight-text {
				font-size: 18px !important;
			}

			.join-btn {
				width: 100%;
				text-align: center;
				font-size: 18px;
			}

		}

		.slider-inner-box {

			color: #fff;

			max-width: 600px;

			padding: 0 50px;

			margin-left: 0;

			margin-right: auto;

			text-align: left;
		}

		.hero-slider .container {

			width: 100%;

			max-width: 1200px;

			margin: 0 auto;

			display: flex;

			justify-content: flex-start;
		}

		.slide-text p {
			font-size: 18px;
			margin-bottom: 20px;
			color: #f8f9f9;
		}

		.slide-title h2 {
			font-size: 48px;
			margin-bottom: 30px;
			line-height: 1.2;
		}

		.slide-btns {
			display: flex;
			gap: 15px;
			flex-wrap: wrap;
		}

		.slide-btns a.ReadMore {
			display: inline-block;
			padding: 12px 30px;
			border-radius: 5px;
			font-weight: 600;
			transition: all 0.3s;
			background-color: green;
		}

		.slide-btns-1 a.ReadMore {
			background: #af8451;
			color: #fff;
		}

		.slide-btns-2 a.ReadMore {
			background: #46567b;
			color: #fff;
		}

		.slide-btns a.ReadMore:hover {
			transform: translateY(-3px);
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
		}

		/* Section Styles */
		.section-padding {
			padding: 80px 0;
		}

		.section-head {
			text-align: center;
			margin-bottom: 50px;
		}

		.section-head h2 {
			color: #ec8034;
			font-size: 18px;
			margin-bottom: 10px;
			letter-spacing: 2px;
		}

		.section-head h3 {
			color: #46567b;
			font-size: 36px;
		}

		/* About Section */
		.about-area {
			background-color: #eeebe6;
			padding: 100px 0;
		}

		.about-content {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 50px;
			align-items: center;
		}

		.about-img {
			position: relative;
		}

		.about-img img {
			border-radius: 10px;
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
		}

		.about-text h2 {
			color: #ec7e34;
			font-size: 16px;
			margin-bottom: 10px;
		}

		.about-text h3 {
			color: #46567b;
			font-size: 32px;
			margin-bottom: 20px;
		}

		.about-text p {
			color: #5f5e5c;
			margin-bottom: 25px;
		}

		.btn-primary {
			display: inline-block;
			background: #ec7b34;
			color: #fff;
			padding: 12px 30px;
			border-radius: 5px;
			font-weight: 600;
			transition: all 0.3s;
		}

		.btn-primary:hover {
			background: #46567a;
			transform: translateY(-3px);
		}

		/* Services Section */
		.services-area {
			background-color: #eeebe6;
			padding: 100px 0;
		}

		.services-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.service-card {
			position: relative;
			height: 350px;
			border-radius: 10px;
			overflow: hidden;
			cursor: pointer;
		}

		.service-card img {
			width: 100%;
			height: 100%;
			object-fit: contain;
			transition: transform 0.5s;
		}

		.service-card:hover img {
			transform: scale(1.1);
		}

		.service-overlay {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			padding: 30px;
			background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
			color: #fff;
		}

		.service-card h4 {
			font-size: 20px;
			margin-bottom: 10px;
		}

		.service-card p {
			font-size: 14px;
			opacity: 0;
			transition: opacity 0.3s;
		}

		.service-card:hover p {
			opacity: 1;
		}

		/* Zodiac Symbols */
		.symbols-area {
			background-color: #eeebe6;
			padding: 80px 0;
		}

		.symbols-grid {
			display: grid;
			grid-template-columns: repeat(6, 1fr);
			gap: 20px;
		}

		.symbol-card {
			background: red;
			border-radius: 10px;
			padding: 30px 20px;
			text-align: center;
			transition: all 0.3s;
		}

		.symbol-card:hover {
			background: #af8451;
			transform: translateY(-10px);
		}

		.symbol-card img {
			width: 60px;
			height: 60px;
			margin-bottom: 15px;
			filter: brightness(0) invert(1);
		}

		.symbol-card h4 {
			color: #fff;
			font-size: 14px;
		}

		/* Counter Section */
		.counter-area {
			background-color: #eeebe6;
			padding: 60px 0;
		}

		.counter-grid {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 30px;
			text-align: center;
		}

		.counter-item .count {
			font-size: 60px;
			font-weight: 700;
			color: #46567b;
		}

		.counter-item h4 {
			color: #45567a;
			font-size: 18px;
		}

		/* Features Section */
		.features-area {
			background-color: #eeebe6;
			padding: 60px 0;
		}

		.features-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.feature-card {
			display: flex;
			gap: 20px;
			align-items: flex-start;
		}

		.feature-icon {
			width: 70px;
			height: 70px;
			background: #46567a;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-shrink: 0;
		}

		.feature-icon i {
			color: #efe4d1;
			font-size: 24px;
		}

		.feature-card:hover .feature-icon {
			background: #ec7b34;
		}

		.feature-content h4 {
			color: #47587d;
			font-size: 20px;
			margin-bottom: 10px;
		}

		.feature-content p {
			color: #5f5e5c;
			font-size: 14px;
		}

		/* Testimonials */
		.testimonials-area {
			background-color: #fff;
			padding: 80px 0;
		}

		.testimonial-card {
			display: flex;
			gap: 30px;
			align-items: center;
			max-width: 900px;
			margin: 0 auto;
		}

		.testimonial-img {
			width: 150px;
			height: 150px;
			border-radius: 50%;
			overflow: hidden;
			flex-shrink: 0;
			border: 5px solid #ad925d;
		}

		.testimonial-img img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.testimonial-content h4 {
			color: #415274;
			font-size: 24px;
			margin-bottom: 5px;
		}

		.testimonial-content h6 {
			color: #8f95a8;
			margin-bottom: 15px;
		}

		.testimonial-content p {
			color: #b5b6ba;
			font-style: italic;
		}

		.testimonial-content i {
			color: #687795;
			font-size: 24px;
		}

		/* Pricing */
		.pricing-area {
			background-color: #eeebe6;
			padding: 100px 0;
		}

		.pricing-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.pricing-card {
			background: #bdc6cb;
			border-radius: 15px;
			padding: 40px 30px;
			text-align: center;
			transition: all 0.3s;
			outline: 3px solid #b59860;
			outline-offset: -10px;
		}

		.pricing-card:hover {
			background: #46567b;
		}

		.pricing-card:hover h4,
		.pricing-card:hover li {
			color: #fff;
		}

		.pricing-card h4 {
			color: #36465e;
			font-size: 24px;
			margin-bottom: 20px;
		}

		.pricing-price {
			background: #b59860;
			color: #fff;
			padding: 20px;
			border-radius: 50%;
			width: 120px;
			height: 120px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 30px;
			font-size: 24px;
			font-weight: 700;
		}

		.pricing-card ul {
			margin-bottom: 30px;
		}

		.pricing-card li {
			color: #374757;
			padding: 10px 0;
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		}

		.pricing-card li i {
			margin-right: 10px;
		}

		.pricing-card .fa-check {
			color: #4caf50;
		}

		.pricing-card .fa-times {
			color: #f44336;
		}

		/* Banner CTA */

		/* BANNER SECTION */

		.banner-text {

			background: linear-gradient(135deg,
					#b30000,
					#ff1a1a);

			padding: 40px 25px;

			border-radius: 20px;

			text-align: center;

			box-shadow:
				0 10px 30px rgba(255, 0, 0, 0.25);
		}

		/* MAIN HEADING */

		.banner-text h2 {

			font-size: 42px;

			line-height: 1.4;

			color: #fff;

			font-weight: 700;

			margin-bottom: 15px;
		}

		/* PRICE COLOR */

		.banner-text h2 span {

			color: #ffcc00;

			font-size: 48px;

			font-weight: 800;
		}

		/* FOOTER TEXT */

		.banner-text p {

			color: rgba(255, 255, 255, 0.85);

			font-size: 15px;
		}

		/* MOBILE */

		@media(max-width:768px) {

			.banner-text h2 {

				font-size: 28px;
			}

			.banner-text h2 span {

				font-size: 34px;
			}

		}

		/* Team Section */
		.team-area {
			background-color: #eeebe6;
			padding: 80px 0;
		}

		.team-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.team-card {
			position: relative;
			border-radius: 10px;
			overflow: hidden;
		}

		.team-card img {
			width: 100%;
			height: 400px;
			object-fit: cover;
		}

		.team-overlay {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			background: rgba(0, 0, 0, 0.7);
			padding: 30px;
			transform: translateY(50px);
			transition: transform 0.3s;
		}

		.team-card:hover .team-overlay {
			transform: translateY(0);
		}

		.team-overlay h4 {
			color: #edeae5;
			font-size: 20px;
		}

		.team-overlay h6 {
			color: #dedcd7;
			margin-bottom: 15px;
		}

		.team-social a {
			display: inline-block;
			width: 35px;
			height: 35px;
			background: #f1f1f1;
			border-radius: 50%;
			line-height: 35px;
			text-align: center;
			color: #180b2a;
			margin-right: 5px;
			transition: all 0.3s;
		}

		.team-social a:hover {
			background: #ec7b34;
			color: #fff;
		}

		/* Blog Section */
		.blog-area {
			background-color: #eeebe6;
			padding: 80px 0;
		}

		.blog-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 30px;
		}

		.blog-card {
			background: #fff;
			border-radius: 10px;
			overflow: hidden;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
		}

		.blog-card img {
			width: 100%;
			height: 200px;
			object-fit: cover;
		}

		.blog-content {
			padding: 25px;
		}

		.blog-meta {
			display: flex;
			gap: 20px;
			margin-bottom: 15px;
			font-size: 14px;
			color: #888;
		}

		.blog-meta i {
			margin-right: 5px;
		}

		.blog-card h4 {
			color: #47597e;
			font-size: 20px;
			margin-bottom: 15px;
		}

		.blog-card h4:hover {
			color: #eb8733;
		}

		.blog-card p {
			color: #818798;
			font-size: 14px;
			margin-bottom: 20px;
		}

		.blog-link {
			color: #ec7b34;
			font-weight: 600;
		}

		.blog-link:hover {
			color: #45567a;
		}

		/* Newsletter */
		.newsletter-area {
			background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[images.unsplash.com](https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1920)') center/cover;
			padding: 100px 0;
		}

		.newsletter-content {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 50px;
		}

		.newsletter-content h2 {
			color: #fff;
			font-size: 28px;
		}

		.newsletter-form {
			display: flex;
			gap: 15px;
		}

		.newsletter-form input {
			padding: 15px 20px;
			border: none;
			border-radius: 5px;
			width: 300px;
			font-size: 16px;
		}

		.newsletter-form button {
			background: #46567a;
			color: #fff;
			padding: 15px 30px;
			border: none;
			border-radius: 5px;
			cursor: pointer;
			font-weight: 600;
			transition: background 0.3s;
		}

		.newsletter-form button:hover {
			background: #ec7a00;
		}

		/* Footer */
		.footer-area {
			background: linear-gradient(rgba(10, 9, 45, 0.9), rgba(10, 9, 45, 0.9)), url('[images.unsplash.com](https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=1920)') center/cover;
			color: #9d9c9a;
		}

		.footer-top {
			padding: 60px 0;
		}

		.footer-grid {
			display: grid;
			grid-template-columns: 2fr 1fr 1fr 1fr;
			gap: 40px;
		}

		.footer-widget h4 {
			color: #f5f4f4;
			font-size: 20px;
			margin-bottom: 25px;
		}

		.footer-widget p {
			margin-bottom: 20px;
		}

		.footer-widget ul li {
			margin-bottom: 10px;
		}

		.footer-widget ul li a {
			color: #eae8ea;
			transition: color 0.3s;
		}

		.footer-widget ul li a:hover {
			color: #b59860;
		}

		.footer-social a {
			display: inline-block;
			width: 40px;
			height: 40px;
			background: transparent;
			border: 1px solid #727275;
			border-radius: 50%;
			line-height: 40px;
			text-align: center;
			color: #fbfbfa;
			margin-right: 10px;
			transition: all 0.3s;
		}

		.footer-social a:hover {
			color: #b59860;
			border-color: #b59860;
		}

		.footer-bottom {
			border-top: 1px solid #727275;
			padding: 25px 0;
			text-align: center;
		}

		/* FLOAT BUTTON */

		.whatsapp-fixed {

			position: fixed;

			right: 20px;
			bottom: 20px;

			width: 65px;
			height: 65px;

			border: none;

			border-radius: 50%;

			background: #25D366;

			color: #fff;

			font-size: 34px;

			cursor: pointer;

			z-index: 9999;

			box-shadow:
				0 10px 25px rgba(0, 0, 0, 0.25);

			transition: 0.3s;
		}

		.whatsapp-fixed:hover {

			transform: scale(1.08);
		}

		/* POPUP BOX */

		.whatsapp-box {

			position: fixed;

			right: 20px;
			bottom: 95px;

			width: 320px;

			background: #fff;

			border-radius: 18px;

			overflow: hidden;

			box-shadow:
				0 15px 40px rgba(0, 0, 0, 0.25);

			z-index: 9999;

			opacity: 0;

			visibility: hidden;

			transform: translateY(20px);

			transition: 0.35s ease;
		}

		/* ACTIVE */

		.whatsapp-box.active {

			opacity: 1;

			visibility: visible;

			transform: translateY(0);
		}

		/* HEADER */

		.whatsapp-header {

			background: #25D366;

			color: #fff;

			padding: 18px;

			font-size: 20px;

			font-weight: 700;

			display: flex;

			align-items: center;

			gap: 10px;
		}

		/* BODY */

		.whatsapp-body {

			padding: 20px;
		}

		.whatsapp-body p {

			color: #333;

			margin-bottom: 18px;

			line-height: 1.6;
		}

		/* CHAT BUTTON */

		.whatsapp-body a {

			display: flex;

			align-items: center;

			justify-content: center;

			gap: 10px;

			background: #25D366;

			color: #fff;

			text-decoration: none;

			padding: 14px;

			border-radius: 10px;

			font-weight: 600;

			transition: 0.3s;
		}

		.whatsapp-body a:hover {

			background: #1ebe5d;
		}

		/* MOBILE */

		@media(max-width:768px) {

			.whatsapp-box {

				width: 90%;

				right: 5%;
			}

		}

		/* SERVICE CARD */

		.service-card {

			position: relative;

			overflow: hidden;

			border-radius: 20px;

			box-shadow:
				0 10px 30px rgba(0, 0, 0, 0.25);
		}

		/* IMAGE */

		.service-card img {

			width: 100%;

			height: 420px;

			object-fit: contain;

			display: block;
		}

		/* BONUS TAG */

		.bonus-tag {

			position: absolute;

			top: 15px;
			left: 15px;

			background: linear-gradient(135deg,
					#ffcc00,
					#ff8c00);

			color: #111;

			padding: 10px 18px;

			border-radius: 50px;

			font-size: 15px;

			font-weight: 700;

			z-index: 2;
		}

		/* OVERLAY */

		.service-overlay {

			position: absolute;

			bottom: 0;
			left: 0;

			width: 100%;

			padding: 25px;

			background: linear-gradient(transparent,
					rgba(0, 0, 0, 0.92));

			color: #fff;
		}

		/* TITLE */

		.service-overlay h4 {

			font-size: 26px;

			margin-bottom: 8px;

			color: #fff;
		}

		/* PRICE */

		.service-overlay h5 {

			font-size: 18px;

			color: #ffcc00;

			margin-bottom: 12px;

			font-weight: 600;
		}

		/* DESCRIPTION */

		.service-overlay p {

			font-size: 15px;

			line-height: 1.6;

			color: #f1f1f1;
		}

		#button-377b1079 {

			display: inline-flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;

			gap: 6px;

			padding: 22px 45px;

			background: linear-gradient(135deg,
					#ffcc00,
					#ff8c00);

			color: #111 !important;

			text-decoration: none;

			border-radius: 16px;

			font-family: 'Poppins', sans-serif;

			font-weight: 700;

			border: none;

			box-shadow:
				0 10px 25px rgba(255, 140, 0, 0.35);

			transition: 0.35s ease;

			position: relative;
		}

		/* HOVER */

		#button-377b1079:hover {

			transform: translateY(-4px);

			background: linear-gradient(135deg,
					#ffd633,
					#ff9900);

			box-shadow:
				0 15px 35px rgba(255, 140, 0, 0.45);
		}

		/* MAIN TEXT */

		#button-377b1079 .jgRbPR {

			font-size: 26px;

			font-weight: 700;

			line-height: 1.4;

			text-align: center;

			color: #111;
		}

		/* PRICE */

		#button-377b1079 .jBxLla {

			font-size: 16px;

			font-weight: 600;

			color: #5c1d00;
		}

		/* MOBILE */

		@media(max-width:768px) {

			#button-377b1079 {

				width: 100%;

				padding: 18px 20px;
			}

			#button-377b1079 .jgRbPR {

				font-size: 18px;
			}

			#button-377b1079 .jBxLla {

				font-size: 13px;
			}

		}

		/* Back to Top */
		#back2Top {
			position: fixed;
			bottom: 30px;
			right: 30px;
			width: 50px;
			height: 50px;
			background: #46567b;
			color: #fff;
			border-radius: 50%;
			text-align: center;
			line-height: 50px;
			cursor: pointer;
			opacity: 0;
			transition: all 0.3s;
			z-index: 999;
		}

		#back2Top.visible {
			opacity: 1;
		}

		#back2Top:hover {
			background: #ec7b34;
		}

		/* Responsive */
		@media (max-width: 992px) {
			.header-nav-area {
				flex-direction: column;
				gap: 20px;
			}

			.mainmenu {
				flex-wrap: wrap;
				justify-content: center;
			}

			.about-content,
			.services-grid,
			.pricing-grid,
			.team-grid,
			.blog-grid {
				grid-template-columns: 1fr 1fr;
			}

			.symbols-grid {
				grid-template-columns: repeat(4, 1fr);
			}

			.counter-grid,
			.features-grid {
				grid-template-columns: 1fr 1fr;
			}

			.footer-grid {
				grid-template-columns: 1fr 1fr;
			}

			.slide-title h2 {
				font-size: 36px;
			}
		}

		@media (max-width: 768px) {

			.about-content,
			.services-grid,
			.pricing-grid,
			.team-grid,
			.blog-grid,
			.counter-grid,
			.features-grid {
				grid-template-columns: 1fr;
			}

			.symbols-grid {
				grid-template-columns: repeat(3, 1fr);
			}

			.banner-content {
				flex-direction: column;
				text-align: center;
			}

			.newsletter-content {
				flex-direction: column;
				text-align: center;
			}

			.newsletter-form {
				flex-direction: column;
			}

			.newsletter-form input {
				width: 100%;
			}

			.testimonial-card {
				flex-direction: column;
				text-align: center;
			}

			.footer-grid {
				grid-template-columns: 1fr;
			}

			.slide-title h2 {
				font-size: 28px;
			}
		}