﻿:root {
	--bg: #2d2d2d;
	--blackc: #000000;
	--whitec: #fff;
	--bgcolor: #ff0009;
	--brcolor: #0E76BC;
	--paracolor: #555;
	--titlecolor: #111111;
	--surface: #2d2d2d;
	--surface2: #161616;
	--accent: #c0392b;
	--accent2: #e74c3c;
	--text: #f0ece4;
	--muted: #777;
	--border: #222;
	--font-display: 'firasanscondensed', sans-serif;
	--font-body: 'firasanscondensed', sans-serif;
	--nav-h: 68px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
* {
  scrollbar-width: none;
}
::-webkit-scrollbar {
    width: 7.5px;
    height: 6px;
    background-color: #f0f0f0;
    display: none
}
::-webkit-scrollbar-thumb {
    background-color: #b1b1b1;
    border-radius: 15px
}
::-webkit-scrollbar-thumb:hover {
    background-color: #777
}
.container {
	max-width: 1300px;
	margin: 0 auto;
	/* padding: 0 2rem; */
}
a{
	text-decoration: none;
}
.section-pad {
	padding: 7rem 0;
}

.dark-section {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.mt-1 {
	margin-top: 1rem;
}

.mt-2 {
	margin-top: 2rem;
}

/* NAV */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background 0.3s, border-color 0.3s;
}

#navbar.scrolled {
	background: #2d2d2d;
	border-color: var(--border);
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1600px;
	margin: 0 auto;
	padding:2.4rem 2rem;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	gap: 5rem;
}

.nav-logo {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	padding:14px;
	background: #2d2d2d;
	border-radius: 50%;
	transform:translate(0,30px);
}

.logo-main {
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: var(--text);
}

.logo-sub {
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--muted);
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin-left: auto;
}
@media(max-width:1500px){
		
	.nav-links{
		gap: 1rem;
	}
}
.nav-links a {
	text-decoration: none;
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	/* letter-spacing: 0.1em; */
	transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--text);
}

.nav-cta {
	text-decoration: none;
	background: var(--accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.55rem 1.2rem;
	transition: background 0.2s;
	white-space: nowrap;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-cta span{
	padding-left:10px;
}
.nav-cta:hover {
	background: var(--accent2);
}
.h-icon{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.icon-tab{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-right:10px;
	width:30px;
	height:30px;
	text-align: center;
}
.icon-tab:hover{
	background: #dd3c34;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	margin-left: auto;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	text-decoration: none;
	color: var(--text);
	font-size: 1.1rem;
	font-weight: 600;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--border);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mobile-cta {
	color: var(--accent) !important;
	border-bottom: none !important;
	margin-top: 0.5rem;
}
@media(max-width:999px){
	.nav-logo{
		transform: translate(0, 10px);
	}
	.h-icon{
		display: none;
	}
	.nav-logo img{
		width:60px;
	}
}
/* HOME HERO */
#hero {
	position: relative;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	margin-top: var(--nav-h);
	overflow: hidden;
}

.hero-img-wrap {
	position: absolute;
	position: relative;
	inset: 0;
	z-index: 0;
}
.hero-block{
	max-width:850px;
	width:100%;
}
.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(25%);
}

.hero-img-overlay {
	position: absolute;
	inset: 0;
}
.hero-text{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	z-index: 2;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1600px;
	margin: 0 auto;
	padding: 10rem 2rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.hero-eyebrow {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-eyebrow::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--accent);
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(4rem, 11vw, 10rem);
	line-height: 0.9;
	letter-spacing: 0.02em;
	color: var(--text);
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	width:100%;
}

.hero-title span {
	display: block;
	text-transform: uppercase;
	font-size:120px;
	font-weight:800;
}

.hero-sub {
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	line-height: 1.75;
	color: rgba(240,236,228,0.75);
	margin-bottom: 2.5rem;
	width:100%;
}

.hero-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	width:100%;
}

.btn-primary {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
	background: var(--accent2);
	transform: translateY(-2px);
}

.btn-outline {
	display: inline-block;
	border: 1.5px solid rgba(255,255,255,0.25);
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.9rem 2rem;
	transition: border-color 0.2s;
}

.btn-outline:hover {
	border-color: var(--text);
}

.hero-scroll {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 2;
}

.hero-scroll span {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--muted);
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.scroll-bar {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--accent), transparent);
}
@media(max-width:999px){
	.hero-text{
		display: none;
	}
}

/* INNER PAGE HERO */
.page-hero {
	position: relative;
	padding: calc(var(--nav-h) + 5rem) 0 5rem;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
	text-transform: uppercase;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.1) 0%, transparent 65%);
}

.page-hero-content {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	width:100%;
	margin: 0 auto;
}

.page-hero-content h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 5vw, 7rem);
	letter-spacing: 0.04em;
	line-height: 0.95;
	color: var(--text);
	margin: 0.5rem 0 1rem;
	font-weight: 800;
}

.page-hero-content p {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.7;
	max-width: 540px;
}

/* SHARED */
.eyebrow {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

.section-head {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-head h2 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	letter-spacing: 0.05em;
	color: var(--text);
	margin-bottom: 0.75rem;
}

.section-head p {
	font-size: 0.95rem;
	color: var(--muted);
	max-width: 440px;
	margin: 0 auto;
	line-height: 1.65;
}

.section-cta {
	text-align: center;
	margin-top: 3rem;
}

.check {
	width: 20px;
	height: 20px;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	font-weight: 700;
	flex-shrink: 0;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text);
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.hour-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border);
}

.day {
	color: var(--text);
	font-weight: 500;
}

.time {
	color: var(--muted);
}

.hour-row.closed .day, .hour-row.closed .time {
	color: var(--muted);
	opacity: 0.5;
}

/* STATS */
#stats {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 2.5rem 2rem;
}

.stats-wrap {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat {
	flex: 1;
	text-align: center;
	padding: 0 2rem;
}

.stat-row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.1rem;
}

.stat-num {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--text);
	line-height: 1;
}

.stat-plus {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--accent);
}

.stat-text {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--text);
	line-height: 1;
}

.stat-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 0.4rem;
}

.stat-divider {
	width: 1px;
	height: 48px;
	background: var(--border);
	flex-shrink: 0;
}

/* HOME PROGRAMS GRID */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
}

.pcard {
	background: var(--surface);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: background 0.2s;
}

.pcard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s ease;
	z-index: 1;
}

.pcard:hover {
	background: var(--surface2);
}

.pcard:hover::before {
	transform: scaleY(1);
}

.pcard-img-wrap {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: var(--border);
	flex-shrink: 0;
}

.pcard-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: transform 0.4s ease;
}

.pcard:hover .pcard-img-wrap img {
	transform: scale(1.04);
}

.pcard-tag {
	display: inline-block;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 1.5rem 2rem 0.5rem;
}

.pcard h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	color: var(--text);
	margin: 0 2rem 0.6rem;
}

.pcard p {
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--muted);
	margin: 0 2rem 1.25rem;
	flex: 1;
}

.pcard-link {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	text-decoration: none;
	margin: 0 2rem 2rem;
	display: inline-block;
	transition: letter-spacing 0.2s;
}

.pcard-link:hover {
	letter-spacing: 0.14em;
}

/* HOME ABOUT PREVIEW */
.about-preview-wrap {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 5rem;
	align-items: center;
}

.about-preview-img {
	height: 500px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.about-preview-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%);
	transition: transform 0.5s ease;
}

.about-preview-img:hover img {
	transform: scale(1.03);
}

.about-preview-text h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 1rem;
}

.about-preview-text p {
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--muted);
}

/* GALLERY STRIP */
.gallery-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	height: 280px;
	gap: 2px;
	background: var(--border);
}

.gstrip-item {
	overflow: hidden;
	background: var(--surface2);
}

.gstrip-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(30%);
	transition: transform 0.5s ease, filter 0.3s ease;
}

.gstrip-item:hover img {
	transform: scale(1.06);
	filter: grayscale(0%);
}

/* CTA */
#cta {
	position: relative;
	padding: 8rem 2rem;
	text-align: center;
	overflow: hidden;
}
#cta .index-p1{
	margin-bottom:35px;
}
.trial-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(192,57,43,0.2) 0%, #2a2a2a 65%);
}

.trial-content {
	position: relative;
	z-index: 1;
	max-width: 940px;
	margin: 0 auto;
}

.trial-content .eyebrow {
	margin-bottom: 0.75rem;
}

.trial-content h2 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 7vw, 5rem);
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 1rem;
}

.trial-content p {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.trial-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* FOOTER */
footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 4rem 0 0;
}

.footer-grid {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 0 3rem;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 2.5rem;
}

.footer-brand .logo-main {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.2rem;
}

.footer-brand .logo-sub {
	display: block;
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--muted);
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.footer-brand p {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.65;
}

.footer-col h4 {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 0.2rem;
	font-weight:400;
}
.footer-col-a{
	display: flex!important;
	align-items: center;
	margin-bottom:10px;
	text-transform: uppercase;
}
.footer-col-a span{
	padding-left:5px;
}

.footer-col a, .footer-col p {
	display: block;
	font-size: 0.85rem;
	color: var(--muted);
	text-decoration: none;
	line-height: 1.75;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--text);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding: 1.25rem 0;
	max-width: 1300px;
	margin: 0 auto;
	font-size: 0.78rem;
	color: var(--muted);
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	width:100%;
}
.footer-bottom a{
	color: var(--muted);
}
.footer-bottom a:hover{
	color:#fff;
}

/* PROGRAMS PAGE */
.program-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	padding: 4rem 0;
}

.program-block.reverse {
	direction: rtl;
}

.program-block.reverse > * {
	direction: ltr;
}

.program-img {
	height: 420px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.program-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%);
	transition: transform 0.5s ease;
}

.program-img:hover img {
	transform: scale(1.03);
}

.program-text h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.04em;
	color: var(--text);
	margin: 0.5rem 0 1rem;
}

.program-text p {
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--muted);
}

.program-details {
	display: flex;
	gap: 2rem;
	margin: 1.75rem 0;
	padding: 1.25rem 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.pd-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.pd-label {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}

.pd-item span:last-child {
	font-size: 0.875rem;
	color: var(--text);
	font-weight: 500;
}

.program-divider {
	height: 1px;
	background: var(--border);
}

/* ABOUT PAGE */
.story-wrap {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 5rem;
	align-items: start;
}

.story-img {
	height: 500px;
	overflow: hidden;
	border: 1px solid var(--border);
	position: sticky;
	top: calc(var(--nav-h) + 2rem);
}

.story-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%);
}

.story-text h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 1rem;
}

.story-text p {
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--muted);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	margin-top: 3rem;
}

.value-card {
	background: var(--surface2);
	padding: 2.5rem;
	transition: background 0.2s;
}

.value-card:hover {
	background: #1c1c1c;
}

.value-num {
	font-family: var(--font-display);
	font-size: 3rem;
	color: var(--accent);
	opacity: 0.3;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.value-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 0.75rem;
}

.value-card p {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--muted);
}

.facility-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
	margin-top: 3rem;
	background: var(--border);
}

.facility-img {
	height: 260px;
	overflow: hidden;
	background: var(--surface2);
}

.facility-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%);
	transition: transform 0.4s ease, filter 0.3s ease;
}

.facility-img:hover img {
	transform: scale(1.04);
	filter: grayscale(0%);
}

.facility-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.ff-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 1rem 1.25rem;
}

/* LOCATION PAGE */
.location-full-wrap {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: start;
}

.loc-block {
	margin-bottom: 2rem;
}

.loc-tag {
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: var(--accent);
	color: #fff;
	display: inline-block;
	padding: 0.3rem 0.75rem;
	margin-bottom: 1rem;
}

.loc-address-lg {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text);
	font-weight: 500;
	margin-bottom: 1rem;
}

.loc-phone-lg {
	display: block;
	font-family: var(--font-display);
	font-size: 2rem;
	letter-spacing: 0.06em;
	color: var(--accent);
	text-decoration: none;
	margin-bottom: 0.4rem;
	transition: color 0.2s;
}

.loc-phone-lg:hover {
	color: var(--accent2);
}

.loc-email-lg {
	display: block;
	font-size: 0.9rem;
	color: var(--muted);
	text-decoration: none;
	margin-bottom: 2rem;
	transition: color 0.2s;
}

.loc-email-lg:hover {
	color: var(--text);
}

.loc-hours-block h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	color: var(--text);
	margin-bottom: 1rem;
}

.loc-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.location-map {
	height: 480px;
	border: 1px solid var(--border);
	overflow: hidden;
	filter: grayscale(80%) invert(92%) contrast(85%);
}

.directions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.dir-card {
	background: var(--surface2);
	border: 1px solid var(--border);
	padding: 2rem;
	transition: border-color 0.2s;
}

.dir-card:hover {
	border-color: var(--accent);
}

.dir-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block;
}

.dir-card h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 0.75rem;
}

.dir-card p {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--muted);
}

/* CONTACT PAGE */
.contact-wrap {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 5rem;
	align-items: start;
}

.contact-form-col h2 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.04em;
	color: var(--text);
	margin-bottom: 0.75rem;
}

.contact-form-col > p {
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 0.9rem;
	padding: 0.85rem 1rem;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
}

.form-group input::placeholder, .form-group textarea::placeholder {
	color: var(--muted);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	border-color: var(--accent);
}

.form-group select {
	cursor: pointer;
	appearance: none;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-submit {
	width: 100%;
	cursor: pointer;
	font-family: var(--font-body);
	border: none;
}

.form-note {
	font-size: 0.82rem;
	color: var(--muted);
	text-align: center;
}

.form-note a {
	color: var(--accent);
	text-decoration: none;
}

.contact-card {
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 2rem;
	margin-bottom: 1.25rem;
}

.contact-phone {
	display: block;
	font-family: var(--font-display);
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	color: var(--accent);
	text-decoration: none;
	margin-bottom: 0.4rem;
	transition: color 0.2s;
}

.contact-phone:hover {
	color: var(--accent2);
}

.contact-email {
	display: block;
	font-size: 0.9rem;
	color: var(--muted);
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.2s;
}

.contact-email:hover {
	color: var(--text);
}

.contact-divider {
	height: 1px;
	background: var(--border);
	margin: 1.5rem 0;
}

.contact-addr {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--muted);
}

.contact-programs {
	background: var(--surface);
	border: 1px solid var(--border);
	padding: 1.5rem 2rem;
}

.cp-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--muted);
	text-decoration: none;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--border);
	transition: color 0.2s;
}

.cp-item:last-child {
	border-bottom: none;
}

.cp-item:hover {
	color: var(--text);
}

.cp-item span {
	color: var(--accent);
}

/* ANIMATIONS */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.1s;
}

.delay-2 {
	transition-delay: 0.2s;
}

.delay-3 {
	transition-delay: 0.35s;
}

.delay-4 {
	transition-delay: 0.5s;
}

/* RESPONSIVE TABLET */
@media (max-width: 960px) {
	.programs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-preview-wrap {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.about-preview-img {
		height: 340px;
	}

	.gallery-strip {
		grid-template-columns: repeat(3, 1fr);
		height: 200px;
	}

	.gstrip-item:nth-child(4), .gstrip-item:nth-child(5) {
		display: none;
	}

	.program-block, .program-block.reverse {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		direction: ltr;
	}

	.program-img {
		height: 300px;
	}

	.story-wrap {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.story-img {
		height: 340px;
		position: static;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.facility-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.location-full-wrap {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.location-map {
		height: 320px;
	}

	.directions-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contact-wrap {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
	.nav-links, .nav-cta {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.section-pad {
		padding: 4rem 0;
	}

	.hero-content {
		padding: 3rem 1.5rem 4rem;
	}

	.hero-title {
		font-size: clamp(3.2rem, 16vw, 5rem);
	}

	.hero-sub {
		font-size: 0.95rem;
	}

	.hero-btns {
		flex-direction: column;
	}

	.btn-primary, .btn-outline {
		text-align: center;
		width: 100%;
		padding: 1rem;
	}

	.hero-scroll {
		display: none;
	}

	.page-hero {
		padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
	}

	#stats {
		padding: 1.5rem 1rem;
	}

	.stat {
		padding: 0 0.75rem;
	}

	.stat-num {
		font-size: 2.2rem;
	}

	.stat-text {
		font-size: 1.8rem;
	}

	.stat-divider {
		height: 36px;
	}

	.programs-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.pcard-img-wrap {
		height: 180px;
	}

	.gallery-strip {
		grid-template-columns: repeat(2, 1fr);
		height: 180px;
	}

	.gstrip-item:nth-child(5) {
		display: none;
	}

	.values-grid {
		grid-template-columns: 1fr;
	}

	.facility-grid {
		grid-template-columns: 1fr;
	}

	.facility-img {
		height: 200px;
	}

	.facility-features {
		grid-template-columns: 1fr;
	}

	.loc-actions {
		flex-direction: column;
	}

	.loc-actions a {
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	#cta {
		padding: 5rem 1.5rem;
	}

	.trial-actions {
		flex-direction: column;
	}

	.trial-actions a {
		text-align: center;
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0 1.5rem 2rem;
	}

	.footer-bottom {
		padding: 1rem 1.5rem;
	}
}

@media (max-width: 380px) {
	.hero-title {
		font-size: 3rem;
	}

	.stats-wrap {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.stat-divider {
		width: 48px;
		height: 1px;
	}

	.stat {
		padding: 0;
	}
}

/* =========================================
   SUMMER CAMP SECTION
   ========================================= */

#summer-camp {
	background: var(--accent);
	padding: 0;
	overflow: hidden;
}

.sc-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
}

.sc-left {
	padding: 5rem 4rem 5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sc-left .eyebrow {
	color: rgba(255,255,255,0.6);
	margin-bottom: 0.75rem;
	display: block;
}

.sc-left h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(3rem, 5vw, 5rem);
	line-height: 0.95;
	color: #fff;
	margin-bottom: 1.25rem;
	letter-spacing: 0.02em;
}

.sc-left p {
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.75);
	max-width: 420px;
	margin-bottom: 2rem;
}

.sc-details {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: rgba(0,0,0,0.2);
	border-left: 3px solid rgba(255,255,255,0.3);
}

.sc-detail-item {
	display: flex;
	align-items: baseline;
	gap: 1rem;
}

.sc-detail-label {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,0.5);
	min-width: 80px;
	text-transform: uppercase;
}

.sc-detail-val {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sc-badge {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(255,255,255,0.2);
	color: #fff;
	padding: 0.2rem 0.5rem;
}

.sc-left .btn-primary {
	background: #fff;
	color: var(--accent);
	display: inline-block;
	width: fit-content;
}

.sc-left .btn-primary:hover {
	background: rgba(255,255,255,0.88);
}

/* Right side */
.sc-right {
	background: rgba(0,0,0,0.25);
	padding: 5rem 2rem 5rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sc-dates-label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: rgba(255,255,255,0.5);
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.sc-dates-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
	margin-bottom: 2rem;
}

.sc-date {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.75rem 1rem;
	transition: background 0.2s;
}

.sc-date:hover {
	background: rgba(255,255,255,0.18);
}

.sc-cta-small {
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
	letter-spacing: 0.04em;
}

.sc-cta-small:hover {
	color: #fff;
}

@media (max-width: 900px) {
	.sc-inner {
		grid-template-columns: 1fr;
	}

	.sc-left {
		padding: 4rem 1.5rem 2rem;
	}

	.sc-right {
		padding: 2rem 1.5rem 4rem;
	}

	.sc-left h2 {
		font-size: clamp(2.5rem, 10vw, 4rem);
	}
}
/* =========================================
   DEDICATED SCHEDULE PAGE
   ========================================= */

.full-schedule {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1rem;
}

.sched-day-block {
	background: #0d0d0d;
	border: 1px solid #2d2d2d;
	overflow: hidden;
}

.sched-day-title {
	background: var(--accent);
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	padding: 1rem 1.5rem;
}

.sched-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.85rem 1.5rem;
	border-bottom: 1px solid #1a1a1a;
	transition: background 0.15s;
}

.sched-row:last-child {
	border-bottom: none;
}

.sched-row:hover {
	background: #141414;
}

.sched-row.sched-beginner {
	background: rgba(180,30,30,0.1);
}

.sched-row.sched-beginner:hover {
	background: rgba(180,30,30,0.18);
}

.sched-time {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--accent);
	white-space: nowrap;
	flex-shrink: 0;
	padding-top: 0.15rem;
	letter-spacing: 0.03em;
	min-width: 100px;
}

.sched-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.sched-name {
	font-size: 0.875rem;
	font-weight: 600;
	color: #e8e8e8;
	line-height: 1.3;
}

.sched-level {
	font-size: 0.72rem;
	color: #555;
	font-weight: 400;
}

/* LEGEND */
.sched-legend {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	background: #0d0d0d;
	border: 1px solid #2d2d2d;
	width: fit-content;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.78rem;
	color: #666;
}

.legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	background: #2d2d2d;
	flex-shrink: 0;
}

.legend-dot.beginner-dot {
	background: rgba(180,30,30,0.5);
}

@media (max-width: 1100px) {
	.full-schedule {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.full-schedule {
		grid-template-columns: 1fr;
	}

	.sched-row {
		flex-direction: column;
		gap: 0.2rem;
	}

	.sched-time {
		min-width: unset;
	}
}
/*======== blog area start  ==========*/
.blog_area{
    padding: 50px 0 60px;
    position: relative;
}
/* inner blog area css */
.inner_blog_area {
    overflow: hidden;
    position: relative;
    /* box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1); */
    margin-bottom: 20px;
}
/* inner blog thumb css */
.wblogovermeta {
    position: absolute;
    z-index: 999;
}
.wblogovermeta span {
    display: inline-block;
    color: var(--whitec);
    background: var(--bgcolor);
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
}
.inner_blog_thumb{
    position: relative;
    overflow: hidden;
}
.inner_blog_img_con img{
    width: auto;
	margin:20px auto;
    transition: .5s;
	max-width:100%;
}
.inner_blog_img img{
    transition: .5s;
}
.inner_blog_img a{
    display: block;
    border: 2px solid var(--bgcolor);
}
.inner_blog_area:hover .inner_blog_img img{
    transform: scale(1.2);
}
.inner_single_page_content{
	padding-top:40px;
}
.inner_single_page_content a{
	color:#fff;
}
.inner_single_page_content a:hover{
	color:var(--accent);
}
/* blog overlay css */
.blog_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    transform: scale(0);
    transition: .5s;
}
.inner_blog_area:hover .blog_overlay{
    transform: scale(1.2);
}
/* inner blog absolute css */
.inner_blog_absolute {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
    color: var(--whitec);
    background: var(--brcolor);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}
/* inner blog text css */
.single_blog_title {
    padding: 20px 0 20px;
    position: relative;
	
}
.inner_blog_text span a{
    font-weight: 400;
	color:#fff;
}
.inner_blog_text span {
    font-size: 16px;
    margin-right: 10px;
    color: var(--whitec);
}
.inner_blog_text span i{
    margin-right: 3px;
    color: var(--bgcolor);
}
/*inner blog content css */
.inner_blog_content {
    padding: 0px 0px 0px;
}
.inner_blog_content h2 a {
	color:#fff;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 22px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: var(--bgcolor);
    padding: 0px 0px 15px 0px;
	width:100%;
}
.inner_blog_content h2 a:hover{
    color: var(--bgcolor);
}
.inner_blog_content p{
	color:#fff;
    font-size: 14px;
}

/* inner blog btn css */
.witr_btn_sinner a{
    font-size: 16px;
    font-weight: 600;
    padding: 0px 0px 20px 0px;
	color:#fff;
}
.inner_blog_btn a {
    font-size: 16px;
    color: var(--bgcolor);
    font-weight: 600;
    background-color: #F1F1F1;
    border-style: none;
    transition: .5s;
    border-radius: 0px 30px 0px 30px;
    padding: 12px 30px 12px 30px;
    text-transform: uppercase;
}
.inner_blog_btn a:hover{
    color: var(--whitec);
    background: var(--brcolor);
}
.inner_blog_btn a i{
    font-weight: 700;
    margin-left: 4px;
}
.csingle_contant input {
    width: 100% !important;
    margin-bottom: 20px;
}
.csingle_contant textarea {
    width: 100% !important;
}
.product_meta {
    margin-top: 30px;
}
.prdc-lft {
    position: relative;
}
.gy_scren{
    padding-top: 15px;
}
.single_blog_btn button{
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    transition: .5s;
    color: var(--whitec);
    background: var(--paracolor);
}
.single_blog_btn button:hover{
    background: var(--bgcolor);
    color: var(--whitec);
}

/*======== blog area end  ==========*/

/*======= team area start =====*/
.team_area{
    padding: 120px 0 60px;
}
.main_team{
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
	display: block;
}
.team_img img{
    width: 100%;
}
.team_title{
    background-color: #FFFFFF00;
    left: 0;
    background: var(--whitec);
    width: 100%;
    margin: auto;
    bottom: -60px;
    right: 0;
    height: auto;
    z-index: 99999;
    content: "";
    position: absolute;
    transition: .5s;
    text-align: center;
    padding: 18px 10px 23px;
}
.main_team:hover .team_title{
    bottom: 20px;
    background-color: #000717;
}
.team_title h2 a{
    color: var(--titlecolor);
    margin: 0 0 5px;
}
.main_team:hover .team_title h2 a{
    color: var(--whitec);
}
.team_title span{
    color: var(--paracolor);
    margin: 10px 0;
}
.main_team:hover .team_title span{
    color: var(--whitec);
}
.team_thumb:before {
    content: '';
    display: block;
    position: absolute;
    top: 72%;
    left: -4px;
    width: 112%;
    background: var(--whitec);
    right: 0;
    height: 100%;
    border-radius: 0 15px 0 0;
    transform: rotate(-14deg);
    transition: .5s;
    box-shadow: -20px -4px 0 10px rgb(181 31 36 / 50%);
}
.main_team:hover .team_thumb:before{
    top: 50%;
    background-color: #000717;
}
.inner_teacher_img img{
	margin:20px 0;
	width:auto;
	max-width:100%;
}
/* team social icon */
.tteamsocial a{
    background-color: #00000000;
    font-size: 22px;
    width: 25px;
    border-style: none;
    margin: 0px 5px 0px 5px;
	color:var(--accent);
}
.tteamsocial{
    margin-top: 10px;
}
/* team social icon */

/*======= team area end =====*/


/*======= port area end =====*/
.shcedul_area {
    padding: 50px 0 50px;
    background-size: cover;
    background-position: center center;
}
.shcedul_area .col-lg-12{
	overflow-x: auto;
}
.br_shcedul {
    background: transparent;
    margin-top: -65px;
}
/* section title */
.section_title{
    position: relative;
    text-align: center;
}
.section_title h2{
    font-size: 50px;
    line-height: 1;
    font-weight: 300;
	margin-bottom: 30px;
}
.section_title p{
    width: 100%;
    margin: 0 auto 80px;
	font-size:20px;
}
.schedule-con{
	margin-top:40px;
	border: 1px solid var(--whitec);
	padding:30px 50px;
}
.schedule-con .section_title p{
	text-align: left;
	margin-bottom:20px;
	letter-spacing: 0.1em;
}
.main_shedul{
	min-width:1000px;
}
/* section title */
.single_weak.weak_logo{
    background: #000717;
}
.single_weak img{
	width:auto;
}
.shedul_weak{
    display: flex;
}
.single_weak {
    text-align: center;
    margin: 5px 2px 5px 3px;
    padding: 15px 0px 10px 0px;
   /* background-color: #222222; */
    width: 100%;
}
.weak_time_fixed{
    border: 1px solid var(--whitec);
    background: #FF00094D;
}
.weak_time_content{
    border: 1px solid var(--whitec);
    transition: .5s;
}
.weak_time_content:hover{
    border: 1px solid var(--bgcolor);
}
.single_weak h2{
    font-size: 17px;
    font-weight: 300;
	min-height:50px;
}
.single_weak p{
    color: var(--bgcolor);
}

/*======== port area start ======*/

/*======= cal to area start =====*/
.cal_to_action {
    padding: 20px 0 95px;
    position: relative;
}
.cal_title h2 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}
.cal_title p span, .cal_content p span{
    color: var(--bgcolor);
}
.service_section{
    padding: 115px 0 40px;
}
.service_section2{
    margin-top: -60px;
}
/*======= cal to area end =====*/
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.s1{
	position: relative;
	display: block;
	padding:80px 0 60px;
	background-image: url(../image/s1bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.s1-left{
	width:calc(50% - 15px);
}
.s1-right{
	width:calc(50% - 15px);
}
.s1-p1{
	font-size:30px;
	color:#fff;
	font-weight:600;
	line-height: 1;
	margin-bottom:0;
}
.s1-line{
	margin-top:20px;
	margin-bottom:30px;
	width:200px;
	height:2px;
	background: #c0392b;
	transition:0.3s;
	
}
.s1-p2{
	font-size:16px;
	color:#999999;
	font-weight:400;
	line-height: 1.6;
	margin-bottom:20px;
}
.s1-p3{
	margin-top:40px;
}
.s1-p3-tab{
	width:50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.s1-p3-tab i{
	width:20px;
	height:20px;
	background: #df251d;
	color:#000;
	border-radius: 50%;
	margin-right:10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.s1-right img{
	width:100%;
	height:auto;
	max-width: 100%;
	display:block;
}
.s1-p4{
	margin-top:40px;
}
.s1-p4-left{
	width:calc(50% - 15px);
	background: #fff;
	padding:20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.s1-p4-right{
	width:calc(50% - 15px);
	padding:20px 0;
	background-image: url(../image/s1bg2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.s1-p4 span{
	display: block;
	text-align: center;
	width:100%;
}
.s1-p4-1{
	font-size:30px;
	color:#c0392b;
	font-weight:600;
	line-height: 1;
}
.s1-p4-2{
	font-size:24px;
	color:#000000;
	font-weight:400;
	line-height: 1;
	margin-bottom:0;
}

.s1-p4-3{
	font-size:30px;
	color:#fff;
	font-weight:600;
	line-height: 1;
	margin-bottom:15px;
	width:100%;
}
.s1-p4-4{
	font-size:16px;
	color:#fff;
	font-weight:400;
	line-height: 1;
	padding:15px 30px;
	margin:0 auto;
	display: inline-block;
	border: 1px solid #fff;
	background: #535353;
}
@media(max-width:999px){
	.s1-left{
		width:100%;
	}
	.s1-right{
		width:100%;
		margin-top:20px;
	}
	.s1-p3-tab{
		font-size: 12px;
		margin-bottom:10px;
	}
	.s1-p4-left{
		width:100%;
	}
	.s1-p4-right{
		width:100%;
	}
}
.s2{
	padding:50px 0;
	background: #c0392b;
}
.s2-p1{
	font-size:76px;
	font-weight:800;
	color:#fff;
	text-align: center;
	line-height: 1.2;
	margin-bottom:0;
}
.s2-p2{
	font-size:30px;
	font-weight:800;
	color:#fff;
	text-align: center;
	line-height: 1;
	margin-bottom:0;
	justify-content: center;
	margin-top:50px;
}
.s2-p2 span{
	font-size:24px;
	font-weight:400;
	color:#fff;
	text-align: center;
	line-height: 1;
	margin-bottom:0;
	padding-left:50px;
}
.s2-p3{
	margin-top:30px;
	justify-content: center;
}
.s2-p3-tab{
	font-size:30px;
	font-weight:800;
	color:#fff;
	text-align: center;
	line-height: 1;
	margin-bottom:0;
	justify-content: center;
	padding:0 20px;
}
.s2-p3-tab span{
	font-size:24px;
	font-weight:400;
	color:#fff;
	text-align: center;
	line-height: 1;
	margin-bottom:0;
	padding-left:5px;
}
.s2-p4{
	margin-top:30px;
	justify-content: center;
	width:180px;
	height:50px;
	background: #fff;
	color:#c0392b;
	font-size:18px;
	font-weight:600;
	text-align: center;
	line-height: 50px;
	margin-left:auto;
	margin-right:auto;
}
.s2-p5{
	text-align: center;
	font-size:36px;
	font-weight:800;
	margin-top:50px;
	color:#fff;
	line-height: 1;
	margin-bottom:0;
	justify-content: center;
}
.s2-p6{
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
	width:530px;
	max-width:100%;
}
.s2-p6-tab{
	border:1px solid #dd9790;
	background: #ca746b;
	color:#fff;
	width:calc(50% - 10px);
	font-size:18px;
	font-weight:400;
	padding:10px 15px;
	box-sizing: border-box;
	margin-bottom:20px;
}
.s2-p7{
	font-size:18px;
	color:#d4aeaa;
	font-weight:400;
	justify-content: center;
	align-items: center;
}
@media(max-width:999px){
	.s2-p1{
		font-size:36px;
	}
	.s2-p2{
		margin-top:20px;
		font-size: 18px;
	}
	.s2-p2 span{
		font-size:16px;
		padding-left: 10px;
	}
	.s2-p3-tab{
		font-size: 18px;
		width:100%;
	}
	.s2-p3-tab span{
		font-size:16px;
		padding-left: 10px;
	}
}
.s3{
	background-image: url(../image/s3bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	padding:50px 0;
}
.vidcontainer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    background-color: rgba(0,0,0,0.8);
    cursor: pointer;
    z-index: 999999999;
}
.vidcontainer .closevid{
    width: 40px;
    height: 40px;
    background: url(../image/close-vid2.png) no-repeat center/100% auto;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index:999;
    cursor: pointer;
}
.vidcontainer iframe{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    bottom: 0;
    right: 0;
    margin: auto;
}
.index-p1{
	text-align: center;
	font-size:48px;
	font-weight:800;
	margin-top:0px;
	color:#fff;
	line-height: 1;
	margin-bottom:0;
	text-transform: uppercase;
}
.index-p2{
	text-align: center;
	font-size:24px;
	font-weight:800;
	margin-top:0px;
	color:#fff;
	line-height: 1;
	margin-top:35px;
	text-transform: uppercase;
}
.index-p3{
	text-align: center;
	font-size:18px;
	font-weight:400;
	margin-top:0px;
	color:#fff;
	line-height: 2;
	margin-top:15px;
}
.s3-con{
	margin-top:45px;
	margin-bottom:50px;
}
.s3-con a{
	display: block;
	width:calc((100% - 40px) / 3);
	margin-bottom:20px;
	position: relative;
}
.s3-con a .icon{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.s3-con a img{
	width:100%;
}
.s3-container{
	max-width:1360px;
	position: relative;
}
.s3swiper img{
	width:100%;
	display: block;
}
.s3-prev{
	left: 0 !important;
}
.s3-prev:after{
	font-size:30px;
	color: var(--accent) !important;
}
.s3-next{
	right: 0 !important;
}
.s3-next:after{
	font-size:30px;
	color: var(--accent) !important;
}
.s3-more{
	display: block;
	margin-top: 30px;
	justify-content: center;
	width: 180px;
	height: 50px;
	background: #c0392b;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width:999px){
	.s3-con a{
		width:calc((100% - 10px) / 2);
	}
}
.s4{
	padding: 80px 0;
	background:#c0392b;
}
.s4icon{
	margin:0 auto;
	width:auto;
}
.s4-p1{
	text-align: center;
	font-size:36px;
	font-weight:600;
	margin-top:0px;
	color:#fff;
	line-height: 1;
	margin-top:30px;
}
.s4-con{
	margin-top:40px;
}
.s4-tab{
	background: #fff;
	width:calc((100% - 40px) / 3);
	padding:20px;
	box-sizing: border-box;
}
.s4-1-left img{
	width:40px;
	height:40px;
	border-radius: 50%;
}
.s4-1{
	justify-content: flex-start;
}
.s4-1-right{
	margin-left:20px;
} 
.s4-p2{
	font-size:18px;
	font-weight:600;
	color:#000000;
	line-height: 1;
}
.s4-p3{
	font-size:14px;
	font-weight:400;
	color:#000000;
	line-height: 1;
	margin-top:5px;
}
.s4-2{
	font-size:16px;
	font-weight:400;
	color:#000000;
	line-height: 1.6;
	margin-top:10px;
	display:-webkit-box;
	-webkit-line-clamp:5;
	-webkit-box-orient:vertical;
	overflow: hidden;
}
.s4-3{
	color:#df251d;
	margin-top:10px;
}
@media(max-width:999px){
	.s4-tab{
		width:100%;
		margin-bottom:10px;
	}
}
.s5{
	padding: 80px 0;
	background-image: url(../image/s5bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.s5-con{
	margin-top:50px;
}
.s5-left{
	width:calc(50% - 10px);
}
.s5-left a{
	display: block;
	width:100%;
}
.s5-left a img{
	display: block;
	width:100%;
}
.s5-left .s5-text{
	background: #fff;
	padding:20px;
	box-sizing: border-box;
}
.s5-p1{
	font-size:16px;
	font-weight:600;
	color:#999999;
	line-height: 1;
}
.s5-p2{
	font-size:26px;
	font-weight:600;
	color:#000000;
	line-height: 1.2;
	margin-top:20px;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow: hidden;
}
.s5-p3{
	font-size:18px;
	font-weight:400;
	color:#414141;
	line-height: 1.6;
	margin-top:20px;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow: hidden;
}
.s5-right{
	width:calc(50% - 10px);
}
.s5-right a{
	display: block;
	width:calc(50% - 10px);
}
.s5-right a img{
	display: block;
	width:100%;
	height:auto;
}
.s5-right .s5-text{
	display: block;
	width:100%;
	padding:20px 0;
	box-sizing: border-box;
}
.s5-p4{
	font-size:16px;
	font-weight:400;
	color:#fff;
	line-height: 1.2;
	margin-top:20px;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow: hidden;
}
@media(max-width:999px){
	.s5-left{
		width:100%;
	}
	.s5-right{
		width:100%;
		margin-top:10px;
	}
}
.page1{
	background-image: url(../image/page1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page2{
	background-image: url(../image/page2.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page3{
	background-image: url(../image/page3.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page4{
	background-image: url(../image/page4.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page5{
	background-image: url(../image/page5.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page6{
	background-image: url(../image/page6.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}
.page7{
	background-image: url(../image/page7.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
}