@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body{
	margin:0;
	padding:0;
	overflow-x: hidden;
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
	font-family: 'Oswald', sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* navbar height */
}

/* section {
	padding: 100px 0;
} */

/*Header*/

header .nav ul li a.active {
	color: #c11325;
	font-weight: 600;
}
header.sticky {
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

header{
	position:fixed;
	left: 0px;
	top:0px;
	width: 100%;
	z-index: 10;
	background-color: #000000;
	padding:15px 15px;
}
header .container{
	-webkit-display: flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo img{
	width: 70px;
}
/* header .logo a{
	font-size: 30px;
	text-decoration: none;
	color:#ffffff;
	font-weight: 700;
}
header .logo a span{
	color:#c11325;
} */
header .nav{
	position: fixed;
	background-color: #c11325;
	width: 280px;
	top:0;
	right:0;
	height: 100%;
	z-index: 99;
	padding:100px 0px 15px; 
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}
header .nav.open{
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
header .nav ul{
	list-style: none;
	margin:0;
	padding:0px;
}
header .nav ul li{
display: block;
}
header .nav ul li a{
	text-decoration: none;
	font-size: 30px;
	font-weight: 400;
    color:#ffffff;
    display: block;
    position: relative;
    padding:10px 30px;
}
header .nav ul li a.active::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:100%;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a::before{
	content: '';
	position: absolute;
	left:0px;
	top:0px;
	height: 100%;
	width:0px;
	background-color:#000000;
	opacity:.2;
	-webkit-transition: width .5s ease;
	transition: width .5s ease;
	z-index: -1;
}
header .nav ul li a:hover::before{
	width: 100%;
}
header .ham-burger{
	display: inline-block;
	position: relative;
	z-index: 100;
}
header .ham-burger span{
	height: 3px;
	margin-bottom:8px;
	display: block;
	background-color:#ffffff;
	width:30px;
	-webkit-transition: transform .5s ease;
	transition: transform .5s ease;
}
header .ham-burger span:nth-child(1){
	transform-origin: left top;
}
header .ham-burger span:nth-child(2){
	transform-origin: left bottom;
}

header .ham-burger.active span:nth-child(1){
	-webkit-transform: rotate(45deg) translateY(-6px);
	transform: rotate(45deg) translateY(-6px);
}
header .ham-burger.active span:nth-child(2){
	-webkit-transform: rotate(-45deg) translateY(6px);
	transform: rotate(-45deg) translateY(6px)
}

.container{
	max-width: 1170px;
	margin: auto;
}

@media (min-width: 992px) {

    header .nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: translateX(0);
        padding: 0;
    }

    header .nav ul {
        display: flex;
        align-items: center;
    }

    header .nav ul li {
        display: inline-block;
    }

    header .nav ul li a {
        font-size: 16px;
        padding: 10px 15px;
    }

    header .ham-burger {
        display: none;
    }
}

/*Home section*/
.home{
	height: 100vh;
	background-image: url('../images/banner.png');
	background-size: cover;
	padding:15px;
	-webkit-display: flex;
	display: flex;
	position: relative;
}
.home .go-down{
  position: absolute;
  bottom: 50px;
  width: 26px;
  height:40px;
  border:1px solid #ffffff;
  display: block;
  border-radius:4px;
  text-align: center;
  left:50%;
  margin-left: -13px;
}
.home .go-down .fa{
	color:#ffffff;
	-webkit-animation: goDown 1s ease infinite;
	animation: goDown 1s ease infinite;
}
@-webkit-keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}
@keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}
.home .container{
  -webkit-display: flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home h1{
	color:#ffffff;
	font-size: 60px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
}

.home h1 span{
	color:#c11325;;
}

a.btn {
    background-color: #ffffff !important;
    color: #c11325 !important;
    /* border: 2px solid transparent !important; */
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content;
}

a.btn:hover {
    background-color: #c11325 !important;
    color: #ffffff !important;
}

/* about section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-section .small-title {
    text-align: center;
    color: #c11325;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-section .main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-box {
    background: #f8f8f8;
    padding: 50px;
    border-radius: 6px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-left {
    flex: 1;
}

.about-left h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.about-list li span {
    width: 28px;
    height: 28px;
    background: #ffe5e5;
    color: #c11325;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    border-radius: 6px;
}

/* ✅ Tablet */
@media (max-width: 992px) {
    .about-box {
        flex-direction: column;
    }
}

/* ✅ Mobile */
@media (max-width: 576px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-section .main-title {
        font-size: 28px;
    }

    .about-left h3 {
        font-size: 18px;
    }
}
/* end about */


/*Acheivement section*/
.achievement-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.achievement-section .small-title {
    color: #c11325;
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-section .main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* CAROUSEL LAYOUT */
.achievement-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;        
    scroll-behavior: smooth; 
}
/* hide scrollbar */
.achievement-carousel::-webkit-scrollbar {
    display: none;
}

/* CARD */
.achievement-card {
    position: relative;
    min-width: 280px;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    color: white;
    flex-shrink: 0;
}

/* BACKGROUND IMAGE */
.achievement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.achievement-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* YEAR TAG */
.achievement-card .year {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c11325;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
}

/* TEXT BOTTOM */
.achievement-card h4 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

/* Tablet */
@media (max-width: 992px) {
    .achievement-card {
        min-width: 240px;
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .achievement-section {
        padding: 60px 15px;
    }

    .achievement-section .main-title {
        font-size: 28px;
    }

    .achievement-card {
        min-width: 100%;
    }
}

.achievement-carousel {
    width: 100%;
}

.achievement-card {
    position: relative;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    color: white;
}


/*Program section*/

.program{
	padding:80px 0;
	background:#ffffff;
}

/* titles */
.program .small-title{
	text-align:center;
	color:#c11325;
	font-weight:600;
	margin-bottom:10px;
}

.program .main-title{
	text-align:center;
	font-size:36px;
	font-weight:700;
	margin-bottom:40px;
}

/* video */
.program-video{
	margin-bottom:40px;
	border-radius:8px;
	overflow:hidden;
}

.program-video video{
	width:100%;
	height:420px;
	object-fit:cover;
	background:#ffc9c9;
}

/* boxes */
.program .content{
	display:flex;
}

.program .content .box{
	flex:0 0 33.33%;
	max-width:33.33%;
	padding:15px;
}

.program .content .box .inner{
	background:#810915;
	border-radius:6px;
	overflow:hidden;
}

.program .content .box .inner .img img{
	width:100%;
	height:260px;
	object-fit:cover;
}

.program .content .box .inner .text{
	background:#c11325;
	padding:20px;
}

.program .content .box .inner .text h4{
	font-size:18px;
	margin:0 0 10px;
	color:#ffffff;
	font-weight:600;
}

.program .content .box .inner .text p{
	font-size:14px;
	color:#ebe6e6;
	margin:0;
	line-height:22px;
}

/* ✅ Tablet */
@media (max-width: 992px){
	.program .content{
		flex-wrap:wrap;
	}
	.program .content .box{
		flex:0 0 50%;
		max-width:50%;
	}
	.program-video video{
		height:300px;
	}
}

/* ✅ Mobile */
@media (max-width: 576px){
	.program{
		padding:60px 15px;
	}
	.program .content .box{
		flex:0 0 100%;
		max-width:100%;
	}
	.program .main-title{
		font-size:28px;
	}
	.program-video video{
		height:220px;
	}
}

/*Service Section*/
.service{
	padding:80px 0px;
	background-color: #c11325;
}

.service .content{
	-webkit-display:flex;
	display:flex;
}

.service .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.service .content .text h2{
	font-size: 30px;
	font-weight: 500;
	color:#ffffff;
	padding:0px 0px 20px;
}

.service .content .text p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0px 0px 20px;
	font-family: 'Open Sans', sans-serif;
}

.service .content .text .btn{
	padding:8px 30px;
	background-color: #222222;
	color:#ffffff;
	text-decoration: none;
	display: inline-block;
	border:1px solid transparent;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.service .content .text .btn:hover{
	border:1px solid #ffffff;
	color:#ffffff;
	background-color: transparent;
}
.service .content .accordian-container{
	margin-bottom: 5px;
}
.service .content .accordian-container .head{
	background-color:rgba(0,0,0,0.2);
	position: relative;
	padding:12px 15px;
	cursor: pointer;
}
.service .content .accordian-container .head .fa{
	position: absolute;
	right: 10px;
	top:13px;
	color:#ffffff;
	height:30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color:#ffffff;
	border-radius: 50%;
}
.service .content .accordian-container .head h4{
  font-size: 20px;
  margin:0;
  padding:0;
  font-weight: 500;
  color: #ffffff;
  text-transform: capitalize;
}
.service .content .accordian-container.active .head{
  background-color: #222222;	
}
.service .content .accordian-container .body{
	display: none;
	padding:15px;
	background-color: #222222;
	border-top:1px solid #333333;
}

.service .content .accordian-container:nth-child(1) .body{
	display: block;
}
.service .content .accordian-container .body p{
    font-size: 15px;
	line-height:20px;
	color:#ffffff;
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;	
}


/*Classes Section*/

.camps{
	padding:80px 0;
	background:#ffffff;
}

/* titles */
.camps .small-title{
	text-align:center;
	color:#c11325;
	font-weight:600;
	margin-bottom:10px;
}

.camps .main-title{
	text-align:center;
	font-size:36px;
	font-weight:700;
	margin-bottom:15px;
}

.camps .main-desc{
	text-align:center;
	max-width:800px;
	margin:0 auto 50px;
	color:#555;
	line-height:26px;
}

/* camp layout */
.camp-list{
	display:flex;
	flex-direction:column;
	gap:25px;
}

.camp-item{
	display:flex;
	align-items:center;
	border-radius:8px;
	overflow:hidden;
}

.camp-item.reverse{
	flex-direction:row-reverse;
}

.camp-img{
	flex:0 0 50%;
}

.camp-img img{
	width:100%;
	height:260px;
	object-fit:cover;
	display:block;
}

.camp-text{
	flex:0 0 50%;
		height:260px;
	background:#222222;
	color:#ffffff;
	padding:30px;
}

.camp-text span{
	color:#c11325;
	font-size:13px;
	font-weight:600;
	display:block;
	margin-bottom:10px;
}

.camp-text h3{
	font-size:24px;
	margin:0 0 15px;
	font-weight:700;
}

.camp-text p{
	margin:0;
	line-height:24px;
	color:#e0e0e0;
}

/* ✅ Tablet */
@media (max-width: 992px){
	.camp-item,
	.camp-item.reverse{
		flex-direction:column;
	}
	.camp-img,
	.camp-text{
		flex:0 0 100%;
		max-width:100%;
	}
}

/* ✅ Mobile */
@media (max-width: 576px){
	.camps{
		padding:60px 15px;
	}
	.camps .main-title{
		font-size:28px;
	}
	.camp-text{
		padding:20px;
	}
}
/* end camps section */


/*Start Today Section*/
.start-today{
	background-color: #222222;
}

.start-today .content{
	-webkit-display: flex;
	display: flex;
	align-items: center;
}

.start-today .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:0px 15px;
}

.start-today .content .img img{
	width: 100%;
	display: block;
}

.start-today .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    padding: 0px 0px 20px;
}

.start-today .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}

.start-today .content .text .btn{
	padding: 8px 30px;
    background-color: #c11325;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.start-today .content .text .btn:hover{
	color:#ffffff;
	border-color: #ffffff;
	background-color: transparent;
}




/*Class Schedule Section*/
.schedule{
	padding:80px 0px;
}

.schedule .content{
	-webkit-display: flex;
	display: flex;
}

.schedule .content .box{
	flex:0 0 50%;
	max-width: 100%;
	padding:15px;
}

.schedule .content .text h2{
   font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
}

.schedule .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}
.schedule .content .text img{
	width: 100%;
	transform: rotateY(180deg);
}

.schedule .content .timing .table{
	width: 100%;
	border-collapse: collapse;
}

.schedule .content .timing .table td{
	border:1px solid #dfdfdf;
	padding: 8px;
	font-size: 15px;
	text-align: center;
	color:#222222;
}

.schedule .content .timing .table tr:nth-child(even) td.day{
	background-color: #222222;
}
.schedule .content .timing .table tr:nth-child(odd) td.day{
	background-color: #444444;
}
.schedule .content .timing .table tr:nth-child(1) td.day{
	background-color: #c11325;
}
.schedule .content .timing .table tr td.day{
	color:#ffffff;
	border-color:transparent;
}


/*Gallery Section*/

.gallery {
    padding: 60px 20px;
    background: #fff;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* GRID */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

/* NORMAL BOX */
.gallery-item {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    cursor: pointer;
    overflow: hidden;
}

/* FULL WIDTH BOX */
.gallery-item.full {
    flex: 0 0 100%;
    max-width: 100%;
}

.gallery-item img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: 0.5s;
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* PLAY ICON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #c11325;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* VIDEO POPUP */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

/* 👇 HEIGHT REDUCED HERE */
.video-modal video {
    width: 70%;
    max-width: 750px;
    max-height: 70vh;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

/* TABLET */
@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .gallery-item.full {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*end galelry Section*/

/*Price Section*/

.highlights-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

/* OUR VISION */
.vision .small-title {
    color: #c11325;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vision h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.vision-text {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    line-height: 26px;
    color: #555;
}

.vision-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 30px;
    border: 2px solid #c11325;
    color: #c11325;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.vision-btn:hover {
    background: #c11325;
    color: #fff;
}

/* SECTION WRAPPER */
.highlights-section {
    padding: 80px 0;
    background: #fff;
}

.highlight-title {
	margin-top: 60px;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
}

/* GRID CONTAINER */
.highlight-content {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.highlight-box {
    background: #8b0000;
    color: #fff;
    padding: 90px 35px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
    .highlight-content {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;   /* 🔥 center fix */
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .highlight-content {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}
/* TAG */
.highlight-box .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff8c42;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

/* TEXT */
.highlight-box h3 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
}

.highlight-box p {
    margin: 15px 0 25px;
    line-height: 24px;
}

/* BUTTON */
.btn-light {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    color: #8b0000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

/* TABLET */
@media (max-width: 991px) {
    /* .highlight-box {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    } */

    .vision h2 {
        font-size: 30px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    /* .highlight-box {
        flex: 0 0 100%;
        max-width: 100%;
    } */

    .vision h2 {
        font-size: 24px;
    }

    .highlight-title {
        font-size: 26px;
    }
}


/*Contact Section*/

.contact{
	padding:80px 0px;
	background-color: #222222;
}

.contact .content{
	-webkit-display: flex;
	display: flex;
}

.contact .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding: 15px;
}

.contact .content .form input,
.contact .content .form textarea{
 height: 45px;
 width: 100%;
 padding:6px 12px;
 margin-bottom: 25px;
 background-color: transparent;
 border:1px solid #ffffff;
 font-family: 'Open-sans',sans-serif;
 color:#ffffff;
}
.contact .content .form input:focus,
.contact .content .form textarea:focus{
 outline: none;
}
.contact .content .form input::placeholder,
.contact .content .form textarea::placeholder{
	color:#ffffff;
}
.contact .content .form textarea{
	height: 100px;
}

.contact .content .form button{
	border:none;
	outline: none;
	box-shadow: none;
	height: 45px;
	padding:0px 50px;
	border:1px solid transparent;
	background-color: #c11325;
	color:#ffffff;
	font-size: 15px;
	transition: all .5s ease;
	cursor: pointer;
}
.contact .content .form button:hover{
	background-color:transparent;
	color:#ffffff; 
    border-color:#ffffff;
}

.contact .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: #c11325;
    padding: 0px 0px 20px;
}
.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open-sans', sans-serif;
}

.contact .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contact .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:#ffffff;
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans',sans-serif;
}
.contact .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 20px;
	color:#c11325;
}
.contact .content .text .social {
	padding-top: 30px;
}
.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #c11325;
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contact .content .text .social a:hover{
	background-color: transparent;
    border-color: #ffffff;
}

.contact .content .text .social a span{
	color:#ffffff;
	font-size: 20px;
}

.contact .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}

.copy a{
	color:#c11325;
	text-decoration: none;
	font-weight: 600;
}


/*Responsive*/

/*if screen width is less than or equal to 991px then*/
@media(max-width: 991px){
   .home{
   	background-position: center;
   }
  .classes .content{
  	flex-wrap: wrap;
  }
 .classes .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.classes .content .img{
	display: none;
}
.start-today .content .box{
	padding:15px;
}
}

/*if screen width is less than or equal to 767px then*/
@media(max-width: 767px){
  .home h1{
      font-size: 40px;
  }
  .about .content{
  	 flex-wrap: wrap;
  }
  .about .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.service .content{
	flex-wrap: wrap;
}
.service .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.classes .content .class-items .item{
	flex-wrap: wrap;
}
.classes .content .class-items .item .item-text, 
.classes .content .class-items .item .item-img {
    flex: 0 0 100%;
    max-width: 100%;
}
.schedule .content{
	flex-wrap: wrap;
}
.schedule .content .box{
flex: 0 0 100%;
    max-width: 100%;	
}
.start-today .content{
	flex-wrap: wrap;
}
.start-today .content .box {
    flex: 0 0 100%;
    max-width: 100%;
  }
 .gallery .content{
  flex-wrap: wrap;
 }
.gallery .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.price-package .content{
	flex-wrap: wrap;
}
.price-package .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .content{
	flex-wrap: wrap;
}
.contact .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
}

/*if screen width is less than or equal to 550px then*/
@media(max-width: 550px){
  .home h1{
      font-size: 30px;
  }
}






