@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap');
* {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
	width: 1rem;
}

html::-webkit-scrollbar-track {
	background: transparent;
}

html::-webkit-scrollbar-thumb {
	background: #0050d5;
}

section {
	padding: 5rem 9%;
}
main {
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

.btn {
	display: inline-block;
	margin-top: 1rem;
	background: #19164f;
	padding: 1rem 3rem;
	font-size: 1.7rem;
	cursor: pointer;
	color: #fff;
}

.btn:hover {
	color: #19164f;
	background: #fff;
	border: 1px solid #0050d5;
}

p {
	text-align: justify;
	word-spacing: 1px;
}

.heading {
	text-align: center;
	margin-bottom: 4rem;
}

.heading h1 {
	font-size: 3.5rem;
	color: #222;
}

.heading p {
	margin: 1rem auto;
	font-size: 1.5rem;
	color: #777;
	max-width: 50rem;
	line-height: 2;
	text-align: center;
}

@-webkit-keyframes fadeUp {
	0% {
		-webkit-transform: translateY(4rem);
		transform: translateY(4rem);
		opacity: 0;
	}
}

@keyframes fadeUp {
	0% {
		-webkit-transform: translateY(4rem);
		transform: translateY(4rem);
		opacity: 0;
	}
}

.header {
	padding: 1.5rem 9%;
	background: #fff;
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.header .logo img {
	height: 4rem;
}
.header div {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header h3 {
	color: #0050d5;
	font-size: 2rem;
}

.header .icons a,
.header .icons div {
	height: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	background: #f5f5f5;
	color: #0050d5;
	cursor: pointer;
	font-size: 1.8rem;
	margin-left: 0.3rem;
	border-radius: 0.5rem;
}

.header .icons a:hover,
.header .icons div:hover {
	background: #0050d5;
	color: #fff;
	padding: 0 1rem;
}

.navbar {
	position: fixed;
	top: 0;
	left: -110%;
	z-index: 1010;
	height: 100%;
	width: 60%;
	background-color: #fff;
	background-position: center;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: start;
	padding-top: 10%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding-right: 15%;
}

.navbar.active {
	left: 0;
}

.navbar #close-navbar {
	position: absolute;
	top: 3rem;
	right: 3rem;
	height: 5rem;
	width: 5rem;
	line-height: 5rem;
	text-align: center;
	color: #0050d5;
	cursor: pointer;
	font-size: 3rem;
}

.navbar #close-navbar:hover {
	color: #fff;
	background: #0050d5;
}

.navbar a {
	font-size: 4rem;
	text-transform: uppercase;
	color: #0050d5;
	font-weight: lighter;
}

.navbar a:hover {
	font-weight: 400;
	letter-spacing: 0.2rem;
}

.home {
	padding: 0;
}

.home .slide {
	display: none;
	height: calc(100vh - 8rem);
}

.home .slide.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.home .slide .content {
	width: 50%;
	padding: 2rem 7%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
	position: relative;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 80, 213, 0.85)),
		to(rgba(0, 80, 213, 0.95))
	);
	background: -o-linear-gradient(
		rgba(0, 80, 213, 0.85),
		rgba(0, 80, 213, 0.95)
	);
	background: linear-gradient(
		rgba(0, 80, 213, 0.85),
		rgba(0, 80, 213, 0.95)
	);
}

.home .slide .content img {
	margin-bottom: 2rem;
	-webkit-animation: fadeUp 0.2s linear backwards 0.2s;
	animation: fadeUp 0.2s linear backwards 0.2s;
	display: block;
}

.home .slide .content span {
	color: #fff;
	display: block;
	font-size: 1.5rem;
	padding-bottom: 0.5rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	-webkit-animation: fadeUp 0.2s linear backwards 0.4s;
	animation: fadeUp 0.2s linear backwards 0.4s;
}

.home .slide .content h3 {
	font-size: 4rem;
	text-transform: uppercase;
	color: #fff;
	-webkit-animation: fadeUp 0.2s linear backwards 0.6s;
	animation: fadeUp 0.2s linear backwards 0.6s;
}



.home .slide .image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: center top; /* Crop from the bottom */
}

.about {
	background-color: #f5f5f5;
	background-size: 500px 800px;
	background-position: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.about .content {
	width: 55rem;
	background: #fff;
	padding: 3rem;
}

.about .content span {
	color: #0050d5;
	font-size: 2rem;
}

#our-story {
	color: #0050d5;
	font-size: 3rem;
	text-align: center;
}

.about .content h3 {
	padding-top: 1rem;
	font-size: 3rem;
	color: #222;
}

.about .content p {
	font-size: 1.5rem;
	color: #777;
	line-height: 2;
	padding: 1rem 0;
}

.shop,
.values {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 80, 213, 0.85)),
		to(rgba(0, 80, 213, 0.95))
	);
	background: -o-linear-gradient(
		rgba(0, 80, 213, 0.85),
		rgba(0, 80, 213, 0.95)
	);
	background: linear-gradient(
		rgba(0, 80, 213, 0.85),
		rgba(0, 80, 213, 0.95)
	);
}

.shop .heading h1,
.shop .heading p {
	color: #fff;
}

.shop .products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.shop .slide {
	background: #fff;
	width: 370px;
	border-radius: 20px;
}

.shop .slide .image {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
}

.shop .slide:hover .image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.shop .slide .image {
	height: 35rem;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.shop .slide .image .discount {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.5rem 1.5rem;
	font-size: 1.5rem;
	color: #fff;
	background: #0050d5;
	z-index: 10;
}

.shop .slide .image img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: center top;
}

.shop .slide .content {
	padding: 2rem;
	border-top: 0.2rem solid #222;
	height: 40rem;
}

.shop .slide .content p {
	font-size: 1.8rem;
	color: #0050d5;
	line-height: 2;
	font-weight: bold;
	text-align: left;
}

.shop .slide .content .price {
	font-size: 2rem;
	color: #0050d5;
}

.shop .slide .content .price span {
	font-size: 1.5rem;
	color: #777;
}
.gallery {
	background: #f5f5f5;
}

.gallery .heading h1 {
	color: #0050d5;
}

.gallery .lightbox {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(31rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
	gap: 2rem;
}

.gallery .lightbox a {
	height: 30rem;
	overflow: hidden;
	border: 1rem solid #fff;
	-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.gallery .lightbox a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.gallery .lightbox a img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.values .heading h1,
.values .heading p {
	color: #fff;
}
.service {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(31rem, 1fr)) [auto-fit];
	grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
	gap: 2rem;
}

.service .box {
	padding: 2rem;
	text-align: center;
	background: #fff;
}

.service .box:hover {
	background: #222;
}

.service .box:hover h3 {
	color: #fff;
}

.service .box:hover p {
	color: #fff;
}

.service .box span {
	font-size: 4rem;
	margin-bottom: 0.5rem;
	color: #0050d5;
}

.service .box h3 {
	padding: 0.7rem 0;
	font-size: 2rem;
	color: #222;
}

.service .box p {
	font-size: 1.5rem;
	color: #777;
	line-height: 2;
}

.newclass {
	display: flex;
	gap: 2rem;
}

.davidchorus {
	width: 50%;
}

.class-intro {
	font-size: 2rem;
	color: #777;
	line-height: 2;
}

.heading h1 {
	font-size: 3.5rem;
	color: #0050d5;
}

@media screen and (max-width: 768px) {
	.newclass {
		flex-direction: column;
	}
	.davidchorus {
		width: 100%;
	}

	.shop .slide .content {
		padding: 2rem;
		margin-left: 10px;
		border-top: 0.2rem solid #222;
		height: auto;
	}
}
.footer .box-container {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: (minmax(25rem, 1fr)) [auto-fit];
	grid-template-rows: repeat(auto-fit, minmax(25rem, 1fr));
	gap: 2rem;
}

.footer .box-container .box {
	justify-self: center;
}

.footer .box-container .box h3 {
	font-size: 2.2rem;
	color: #0050d5;
	padding: 1rem 0;
}

.footer .box-container .box .link {
	padding: 1rem 0;
	display: block;
	font-size: 1.5rem;
	color: #777;
}

.footer .box-container .box .link i {
	padding-right: 0.5rem;
	color: #0050d5;
}

.footer .box-container .box .link:hover {
	color: #0050d5;
}

.footer .box-container .box .link:hover i {
	padding-right: 2rem;
}

.footer .box-container .box p {
	font-size: 1.5rem;
	color: #777;
	padding: 1rem 0;
}

.footer .box-container .box p i {
	padding-right: 0.5rem;
	color: #0050d5;
}

.footer .box-container .box .share {
	margin-top: 2rem;
}

.footer .box-container .box .share a {
	height: 5rem;
	width: 5rem;
	background: #fff;
	font-size: 2rem;
	line-height: 4.5rem;
	color: #0050d5;
	border: 2px solid #0050d5;
	text-align: center;
	margin-right: 0.3rem;
}

.footer .box-container .box .share a:hover {
	background: #0050d5;
	color: #fff;
}

.footer .credit {
	text-align: center;
	font-size: 2rem;
	margin-top: 3rem;
	padding: 1rem;
	border-top: 0.2rem solid #0050d5;
	padding-top: 3rem;
	color: #777;
}

.footer .credit span {
	color: #0050d5;
}

@media (max-width: 991px) {
	html {
		font-size: 55%;
	}
	.header {
		padding: 1.5rem 2rem;
	}
	section {
		padding: 3rem 2rem;
	}
	.home .slide .content {
		padding: 2rem;
	}
	.home .slide .content span {
		font-size: 2rem;
	}
	.home .slide .content h3 {
		font-size: 4rem;
	}
}

#menu-btn {
	display: none;
}

.header .icons a {
	background-color: #fff;
	margin-right: 1rem;
}

@media (max-width: 768px) {
	.header #search-btn {
		display: none;
	}

	.nav-link {
		display: none;
	}

	#menu-btn {
		display: block;
		padding: 0 1.5rem;
	}
	.home .slide {
		position: relative;
		height: calc(100vh - 6rem);
	}
	.home .slide .content {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(0, 80, 213, 0.9);
		height: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}

	.home .slide .image {
		width: 100%;
	}
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

.blog-post-title {
	font-size: 2.5rem;
	color: #333;
	margin-top: 0;
  }
  .blog-post-meta {
	color: #777;
	font-size: 1.1rem;
	margin-bottom: 20px;
  }
  .blog-post-content {
	font-size: 1.7rem;
	line-height: 1.6;
	color: #555;
  }
  .blog-post-content p {
	margin-bottom: 20px;
}
  .blog-post img {
	max-width: 100%;
	border-radius: 5px;
	margin-bottom: 20px;
  }

  .back-to-list {
	display: inline-block;
	margin-top: 20px;
	background-color: #0050d5;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.2rem;
  }
  .back-to-list:hover {
	background-color: #1f70f3;
  }
  .container {
	display: flex;
	justify-content: center;
	padding: 20px;
}
  .blog-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
	justify-items: center;
  }
  /* .blog-grid > .blog-card:nth-last-child(1):nth-child(even) {
	grid-column: 1 / -1;
	justify-self: center;
} */
  .blog-card {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	max-width: 400px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  .blog-card img {
	width: 100%;
	border-radius: 5px;
  }
  .blog-card h2 {
	margin: 10px 0 0;
	color: #333;
	font-size: 2.5rem;
  }
  .blog-card .meta {
	color: #777;
	font-size: 1.1rem;
	margin: 10px 0;
  }
  .blog-card p {
	color: #555;
	font-size: 1.5rem;
  }
  .read-more-btn {
	background-color: #0050d5;
	color: white;
	border: none;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 1.5rem;
  }
  .read-more-btn:hover {
	background-color: #1f70f3;
  }
  .blog-image img {
	width: 100%;
	height: auto;
	max-width: 800px;
	max-height: 400px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.centered-button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0;
	font-size: 1.2rem;
}
.centered-button {
	background-color: #0050d5;
	color: white;
	padding: 10px 20px;
	font-size: 1em;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
}
.centered-button:hover {
	background-color: #1f70f3;
}

.contact-form-section1 {
	margin: 0;
	padding: 0;
	align-items: center;
	width: 100%;
	background-color: #0050d5;
}
.contact-form-section1 {
	padding-top: 15px;
}

.contact-form-section1 .heading  h1 {
	color: #fff;
}

.contact-form-section1 .heading p{
	color: #fff;
}

.contact-form-section {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	height: 70vh;
	width: 100%;
	background-color: #0050d5;
}
.contact-form .error-message {
	color: rgb(203, 6, 6);
	font-size: 0.9em;
	margin-bottom: 2px;
	display: none;
}
.contact-form-container {
	background-color: white;
	border-radius: 5px;
	max-width: 600px;
	width: 100%;
	font-size: 18px;
	color: #fff;
	background-color: #0050d5;
}
.contact-form {
	display: flex;
	flex-direction: column;
}
.contact-form label {
	margin-bottom: 5px;
	font-weight: bold;
}
.contact-form input, .contact-form textarea {

	margin-bottom: 15px;
	padding: 10px;
	font-size: 1em;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.contact-form textarea {
	resize: vertical;
	height: 150px;
}
.contact-form button {
	padding: 10px 20px;
	background-color: #ccc;
	color: #0050d5;;
	border: none;
	border-radius: 5px;
	font-size: 1em;
	cursor: pointer;
}
.contact-form button:hover {
	background-color: #16c5ff;
}
.message-box {
	display: none;
	padding: 15px;
	margin-top: 20px;
	border-radius: 5px;
	background-color: #4CAF50;
	color: white;
	text-align: center;
}
@media (max-width: 600px) {
	.contact-form-container {
		padding: 15px;
	}
	.contact-form input, .contact-form textarea {
		font-size: 0.9em;
	}
	.contact-form button {
		font-size: 0.9em;
	}
}


@media (max-width: 800px) {
	.blog-image img {
		width: 100%;
		height: auto;
		max-width: 100%;
		max-height: none;
	}
}

@media (max-width: 600px) {
	.blog-post-title {
		font-size: 2em;
	}
	.blog-post-content {
		font-size: 1.5em;
	}
}

@media (max-width: 450px) {
	html {
		font-size: 50%;
	}
}

.youtube-button {
    display: inline-block;
    background-color: #FF0000;
    color: white;
    padding: 5px 10px 5px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.youtube-button:hover {
    background-color: #cc0000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}