@import url(https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap);
body,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--Arabfont);
}
#header,
a {
	transition: 0.5s;
}
#header #intro h1,
.page-loader .txt,
.section-header h2 {
	font-weight: 700;
	text-transform: uppercase;
}
#header #intro h1,
#intro h1,
.page-loader .txt {
	font-family: var(--mainfont);
}
#about,
#gallery,
#intro,
#mobile-nav ul li a,
#schedule .schedule-item .new,
#subscribe,
#supporters .supporter-logo,
body.mobile-nav-active {
	overflow: hidden;
}
#mobile-nav ul li a,
.nav-menu a,
.top-banner,
a {
	text-decoration: none;
}
@font-face {
	font-family: RomanSD;
	src: url(/css/RomanSD.ttf);
}
:root {
	--sec-color: #b7ab95;
	--main-color: #8f7862;
	--dark-color: #302e2f;
	--white-color: #f1f2f3;
	--black: #232323;
	--mainfont: RomanSD;
	--Arabfont: "Cairo", sans-serif;
}
body {
	background: var(--white-color);
	color: var(--black);
	overflow-x: hidden;
}
a {
	color: var(--white-color);
}
a:active,
a:focus,
a:hover {
	color: var(--main-color);
	outline: 0;
	text-decoration: none;
}
#header #logo img,
p {
	padding: 0;
	margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin: 0 0 20px;
	padding: 0;
}
.nav-menu li.sfHover > ul,
.nav-menu li:hover > ul,
div {
	display: block;
}
.back-to-top,
.fixed-player {
	position: fixed;
	display: none;
	background: var(--main-color);
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 14px 14px 4px 4px;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s ease-in-out;
	z-index: 999;
	-webkit-border-radius: 14px 14px 4px 4px;
	-moz-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
}
#header,
.apple,
.fixed-player,
.google,
.tube {
	background-color: var(--dark-color);
	height: 70px;
}
.apple,
.fixed-player,
.google,
.tube {
	position: fixed;
	right: 2vw;
	bottom: 90px;
	width: 70px;
	z-index: 999;
	border-radius: 14px 14px 4px 4px;
	-webkit-border-radius: 14px 14px 4px 4px;
	-moz-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
}
#intro,
.page-loader {
	width: 100%;
	height: 100vh;
}
#contact,
.section-with-bg {
	background-color: var(--white-color);
}
.apple i,
.google i,
.tube i {
	font-size: 54px;
	margin: 9px;
	color: var(--sec-color);
}
#header #logo h1 span,
#mobile-nav ul .menu-has-children i.fa-chevron-up,
#mobile-nav ul .menu-item-active,
#mobile-nav ul li a:hover,
.apple i:hover,
.google i:hover,
.tube i:hover {
	color: var(--main-color);
}
.google {
	bottom: 240px;
}
.apple {
	bottom: 316px;
}
.tube {
	bottom: 165px;
}
.back-to-top i {
	font-size: 24px;
	padding-top: 6px;
}
.back-to-top:focus {
	background: var(--sec-color);
	color: #fff;
	outline: 0;
}
.back-to-top:hover,
.nav-menu ul li:hover > a {
	background: var(--main-color);
	color: #fff;
}
.section-header {
	margin: 10px 0 45px;
	position: relative;
	padding-bottom: 20px;
}
.section-header::before {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 5px;
	background: var(--main-color);
	bottom: 0;
	left: calc(50% - 25px);
}
.section-header h2 {
	font-size: 42px;
	text-align: center;
	margin-bottom: 10px;
	color: var(--dark-color);
}
#mobile-body-overly,
.contact-btn a :hover,
.page-loader {
	background: var(--dark-color);
}
#header {
	padding: 5px 0;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 997;
}
#header.header-fixed,
#header.header-scrolledintro {
	background: rgba(6, 12, 34, 0.98);
	height: 70px;
	padding: 15px 0;
	transition: 0.5s;
}
.page-loader {
	position: fixed;
	top: 0;
	z-index: 1000;
}
.page-loader .txt {
	color: var(--main-color);
	text-align: center;
	top: 40%;
	position: relative;
	letter-spacing: 0.3rem;
	line-height: 1.5;
	font-size: 32px;
}
.spinner {
	position: relative;
	top: 35%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background-color: var(--sec-color);
	border-radius: 100%;
	-webkit-animation: 1s ease-in-out infinite sk-scaleout;
	animation: 1s ease-in-out infinite sk-scaleout;
}
@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}
@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
#header #intro h1 {
	font-size: 36px;
	margin: 15vh 0 0;
	padding: 6px 0;
	line-height: 1;
	letter-spacing: 3px;
}
#contact .section-heading,
#header #logo h1 a,
#header #logo h1 a:hover,
#mobile-nav-toggle i,
.nav-menu .menu-active a,
.nav-menu a:hover,
body.mobile-nav-active #mobile-nav-toggle {
	color: #fff;
}
.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
#intro,
#mobile-nav ul li,
.nav-menu li {
	position: relative;
}
.nav-menu li {
	white-space: nowrap;
}
.nav-menu > li {
	float: left;
	margin-left: 8px;
}
#nav-menu-container {
	float: right;
	margin: 0;
}
.nav-menu a {
	padding: 13px 10px;
	display: inline-block;
	color: rgba(202, 206, 221, 0.8);
	font-weight: 800;
	font-size: 14px;
	outline: 0;
}
.nav-menu > li > a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--main-color);
	visibility: hidden;
	transition: 0.3s ease-in-out;
}
.nav-menu .menu-active > a:before,
.nav-menu a:hover:before,
.nav-menu li:hover > a:before {
	visibility: visible;
	width: 100%;
}
.contact-btn,
.nav-menu div,
li.buy-tickets a {
	color: #fff;
	background: var(--main-color);
	padding: 10px 30px;
	border-radius: 18px;
	border: 3px solid var(--dark-color);
	transition: 0.3s ease-in-out;
	font-weight: 700;
	margin: 8px 16px;
	line-height: 1;
	font-size: 14px;
}
.contact-btn {
	font-size: 21px !important;
}
.nav-menu div,
li.buy-tickets a:hover {
	background: 0 0;
	border: 3px solid var(--main-color);
	color: var(--main-color);
}
.nav-menu ul,
.nav-menu ul li a {
	padding: 10px;
	border-radius: 3px;
}
.nav-menu div,
.nav-menu li.buy-tickets.menu-active a:before,
.nav-menu li.buy-tickets:hover a:before,
li.buy-tickets.menu-active a:before,
li.buy-tickets:hover a:before {
	visibility: hidden;
}
.nav-menu ul {
	margin: 4px 0 0;
	box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
	background: #fff;
}
.nav-menu ul li {
	min-width: 180px;
	transition: 0.3s;
}
.nav-menu ul li a {
	color: var(--dark-color);
	transition: 0.3s;
	display: block;
	font-size: 13px;
	text-transform: none;
}
.nav-menu ul ul {
	top: 0;
	left: 100%;
	margin: 0;
}
#mobile-nav-toggle {
	position: fixed;
	left: 80vw;
	top: 1vh;
	z-index: 999;
	margin: 15px 0 0 15px;
	border: 0;
	background: 0 0;
	font-size: 30px;
	display: none;
	transition: 0.4s;
	outline: 0;
	cursor: pointer;
}
#mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(6, 12, 34, 0.9);
	left: -260px;
	width: 260px;
	overflow-y: auto;
	transition: 0.4s;
}
#mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#mobile-nav ul li a {
	color: #fff;
	font-size: 17px;
	padding: 10px 22px 10px 15px;
	position: relative;
	width: 100%;
	display: block;
	outline: 0;
}
#mobile-nav ul li li {
	padding-left: 30px;
}
#mobile-nav ul .menu-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 15px;
	cursor: pointer;
	color: #fff;
}
#mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	display: none;
	opacity: 0.8;
}
body.mobile-nav-active #mobile-nav {
	left: 0;
}
#intro {
	background: url(../img/intro-bg2.webp) center center/cover;
}
#intro:before {
	content: "";
	background: #2e2e30c4;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
#intro .intro-container {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 90px;
	right: 0;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	padding: 0 15px;
}
#intro h1 {
	color: #fff;
	font-size: 48px;
	font-weight: 550;
	margin-bottom: 35px;
}
#about h2,
#about h4,
#intro p {
	font-weight: 700;
}
#intro h1 span {
	color: var(--main-color);
	font-weight: 750;
}
#intro p {
	color: #ebebeb;
	font-size: 20px;
}
#header .cta,
#mobile-nav .cta {
	position: relative;
	margin: auto;
	padding: 12px 18px;
	transition: 0.2s;
	border: none;
	background: 0 0;
	cursor: pointer;
}
#header .cta:before,
#mobile-nav .cta {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border-radius: 14px 14px 4px 4px;
	background: var(--white-color);
	width: 34px;
	height: 45px;
	transition: 0.3s;
}
#header .cta span,
#mobile-nav .cta {
	position: relative;
	font-family: var(--Arabfont);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--sec-color);
}
#about h2,
#about h4,
#header .cta span:hover,
#mobile-nav .cta,
.top-banner {
	color: var(--white-color);
}
#header .cta svg,
#mobile-nav .cta {
	position: relative;
	top: 0;
	margin-left: 10px;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: var(--main-color);
	stroke-width: 2;
	transform: translateX(-5px);
	transition: 0.3s;
}
#header .cta:hover:before,
#mobile-nav .cta {
	width: 100%;
	background: #e7e3b1;
}
#gallery .owl-dot,
#schedule .nav-tabs a,
.top-banner span:hover {
	background-color: var(--dark-color);
}
#gallery .owl-dot:active {
	color: #d06909;
}
#header .cta:hover svg,
#mobile-nav .cta {
	transform: translateX(0);
	stroke: var(--main-color);
}
#header .cta:active,
#mobile-nav .cta {
	transform: scale(0.95);
}
#about {
	background: url("../img/about-bg-hro.webp") 0 0 / cover;
	position: relative;
	color: #fff;
	padding: 60px 0 40px;
	height: 100%;
}
#about h2 {
	font-size: 48px;
	margin-bottom: 45px;
	text-align: center;
	padding-right: 10px;
}
#about h4 {
	margin-bottom: 30px;
}
#about p {
	font-size: 21px;
	margin: 20px 450px 20px 0;
	color: #232323;
	padding-right: 42px;
	font-weight: 550;
	text-align: left;
	font-family: var(--Arabfont);
}
#about img {
	height: 80vh;
}
@media (max-width: 760px) {
	#about p {
		font-size: 21px;
		color: var(--black);
		font-weight: 550;
		text-align: right;
		font-family: var(--Arabfont);
		margin: 0;
		padding: 0 15px;
	}
}
#schedule {
	padding: 45px 0;
}
#schedule .nav-tabs {
	text-align: center;
	margin: auto auto 30px;
	display: block;
	border-bottom: 0;
}
#gallery .owl-dot,
#schedule .nav-tabs li,
.top-banner a,
.top-banner span {
	display: inline-block;
}
#schedule .nav-tabs li {
	margin-bottom: 0;
	padding: 10px;
}
#schedule .nav-tabs a {
	border: none;
	border-radius: 14px 14px 4px 4px;
	font-weight: 650;
	color: #fff;
	padding: 10px 30px;
	-webkit-border-radius: 14px 14px 4px 4px;
	-moz-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
	font-family: var(--mainfont);
	font-size: small;
}
#schedule .nav-tabs a.active {
	background-color: var(--main-color);
	color: #fff;
}
#schedule .tab-pane {
	transition: 0.2s ease-in-out;
}
#schedule .schedule-item {
	border-bottom: 2px solid var(--main-color);
	margin-top: 25px;
	padding: 10px;
	transition: background-color 0.3s ease-in-out;
	border-radius: 14px 14px 4px 4px;
	text-align: right;
	-webkit-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
}
#schedule .schedule-item:hover {
	background-color: #fff;
	border: 2px solid var(--main-color);
}
#schedule .schedule-item span {
	font-weight: 750;
	display: grid;
	place-items: center;
	height: 62px;
	color: var(--main-color);
}
#schedule .schedule-item .new {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	float: left;
	margin: 0 10px 10px 0;
}
#schedule .schedule-item .news {
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-radius: 14px 14px 4px 4px;
	float: left;
	margin: 0 10px;
	-webkit-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
}
#schedule .schedule-item .new img {
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: 50%;
	transition: 0.3s ease-in-out;
}
#schedule .schedule-item .news img {
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-left: 50%;
	transition: 0.3s ease-in-out;
	float: left;
}
#schedule .schedule-item h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	text-align: left;
}
#schedule .schedule-item p {
	font-style: italic;
	color: var(--main-color);
	margin-bottom: 0;
	text-align: left;
}
#gallery {
	padding: 60px;
}
#gallery .owl-dots,
#gallery .owl-nav {
	margin-top: 25px;
	text-align: center;
}
#gallery .owl-item {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}
#gallery .owl-carousel .owl-item img {
	height: 35vh;
	overflow: visible;
}
#gallery .owl-dot {
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
#gallery .owl-dot .active {
	background-color: var(--main-color);
	width: 45px;
	border-radius: 14px;
	border: 1px solid var(--dark-color);
}
#gallery .gallery-carousel .owl-stage-outer {
	overflow: visible;
}
#gallery .gallery-carousel .center {
	border: 6px solid var(--main-color);
	margin: -10px;
	box-sizing: content-box;
	padding: 2px;
	background: #fff;
	z-index: 1;
}
.vbox-container img {
	width: 100vh !important;
}
#supporters {
	padding: 60px 0;
}
#supporters .supporter-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	height: 160px;
	border-radius: 9px;
	margin: 9px;
}
#supporters .supporter-logo:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
#supporters img {
	transition: 0.4s ease-in-out;
	height: 20vh;
}
#subscribe {
	background: url(../img/subscribe-bg.webp) center center/cover no-repeat;
}
.top-banner {
	width: 100%;
	padding: 15px 0;
	font-size: 32px;
	font-family: var(--Arabfont);
	font-weight: 600;
	margin: 0 30px;
	text-align: center;
}
.top-banner span {
	width: 195px;
	line-height: 71px;
	background-color: var(--sec-color);
	border-radius: 14px 14px 4px 4px;
	margin: 32px;
	border: 3px solid var(--w);
	color: var(--bs-gray-100);
	font-weight: 900;
}
.top-banner span:hover {
	border: 3px solid var(--main-color);
	color: var(--main-color);
}
#contact {
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	padding: 35px 0;
}
#comentForm .form-group,
#contactForm .form-group {
	margin-bottom: 1.5rem;
}
#comentForm .form-group input,
#comentForm .form-group textarea,
#contactForm .form-group input,
#contactForm .form-group textarea {
	padding: 3px;
	text-align: left;
	color: var(--main-color);
}
#contactForm .form-group input .form-control,
#contactForm .form-group input.form-control {
	height: auto;
	border: 2px solid var(--sec-color);
	color: var(--main-color);
	padding: 3px;
}
#contactForm .form-group input,
#contactForm .form-group-textarea {
	height: 100%;
}
.form-group-textarea textarea {
	height: 100%;
	min-height: 10rem;
	border: 2px solid var(--sec-color);
	color: var(--main-color);
}
#contactForm p.help-block {
	margin: 0;
}
#contactForm .form-control:focus,
#contactForm .form-group input.form-control:focus {
	border-color: var(--primary);
	box-shadow: none;
}
#contactForm ::-webkit-input-placeholder {
	font-family: var(--font-text);
	font-weight: 700;
	color: var(--main-color);
	padding: 0 15px;
}
#contactForm :-moz-placeholder {
	font-family: var(--font-text);
	font-weight: 700;
	color: var(--main-color);
}
#contactForm ::-moz-placeholder {
	font-family: var(--font-text);
	font-weight: 700;
	color: var(--main-color);
}
#contactForm :-ms-input-placeholder {
	font-family: var(--font-text);
	font-weight: 700;
	color: var(--main-color);
	text-align: right;
}
#footer {
	background: var(--sec-color);
	padding: 0 0 25px;
	color: #eee;
	font-size: 14px;
}
#footer .footer-top {
	background: var(--dark-color);
	padding: 24px 0 0;
}
#footer .footer-top .footer-info h2 {
	margin-bottom: 18px;
	text-align: center;
	font-family: var(--Arabfont);
	font-weight: 700;
	color: var(--white-color);
}
#footer .footer-top .footer-info h3 {
	font-size: 26px;
	margin: 0 0 20px;
	padding: 2px 0;
	line-height: 1;
	font-family: var(--Arabfont);
	font-weight: 700;
	color: #fff;
}
#footer .footer-top .footer-info img {
	height: 100px;
	margin: 18px 8vw;
}
#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--Arabfont);
	color: #fff;
}
.list-unstyled {
	padding-left: 0;
	list-style: none;
	text-align: center;
}
.list-inline li {
	display: inline;
	padding-right: 5px auto;
	margin: auto 5px;
}
.social-icons .bx {
	font-size: 2.8em;
	text-align: center;
	color: var(--white-color);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	margin: 12px 0 0 20px;
	background-color: var(--main-color);
	border: 2px solid var(--white-color);
	padding: 4px;
	border-radius: 14px 14px 4px 4px;
}
#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #222636;
	color: #eee;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}
.social-icons .bx:hover {
	background: var(--sec-color);
	color: var(--main-color);
}
#footer .footer-top h4 {
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 6px;
	border-bottom: 3px solid var(--main-color);
	text-align: left;
	letter-spacing: 0.1rem;
}
#footer .footer-top .footer-contact {
	text-align: left;
	text-align: -webkit-center;
	font-family: var(--Arabfont);
	font-weight: 700;
	color: var(--white-color);
	margin: 20px 0;
}
#footer .footer-top .footer-contact .back-icon {
	padding: 10px;
	border-radius: 14px 14px 4px 4px;
	-webkit-border-radius: 14px 14px 4px 4px;
	-moz-border-radius: 14px 14px 4px 4px;
	-ms-border-radius: 14px 14px 4px 4px;
	-o-border-radius: 14px 14px 4px 4px;
	background-color: var(--sec-color);
}
#footer .footer-top .footer-contact h3 {
	text-align: center;
	color: var(--main-color);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 24px;
}
#footer .footer-top .footer-contact p {
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 550;
	text-align: left;
}
#footer .copyright {
	text-align: center;
	padding-top: 8px;
	font-size: 14px;
	color: var(--dark-color);
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
#footer .credits {
	text-align: center;
	font-size: 13px;
	color: #ddd;
}
@media (min-width: 768px) {
	#contact .contact-address,
	#contact .contact-email,
	#contact .contact-phone {
		padding: 20px 0;
	}
	#contact .contact-phone {
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
	}
}
@media (min-width: 991px) {
	#schedule .sub-heading {
		width: 75%;
	}
}
@media (min-width: 1024px) {
	#about,
	#intro,
	#subscribe {
		background-attachment: fixed;
	}
}
@media (max-width: 1199px) {
	#header .container {
		max-width: 100%;
	}
	.nav-menu a {
		padding: 8px 4px;
	}
}
@media (max-width: 991px) {
	#header {
		background: var(--dark-color);
		height: 70px;
		padding: 15px 0;
		transition: 0.5s;
	}
	#nav-menu-container {
		display: none;
	}
	#mobile-nav-toggle {
		display: inline;
	}
	#intro .intro-container {
		top: 70px;
	}
	#intro h1 {
		font-size: 34px;
	}
	#intro p {
		font-size: 16px;
	}
	#schedule .nav-tabs a {
		padding: 8px 60px;
	}
}
@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
}
@media (max-width: 767px) {
	#schedule .nav-tabs a {
		padding: 8px 50px;
	}
}
@media (max-width: 574px) {
	#venue .venue-info h3 {
		font-size: 24px;
	}
}
@media (max-width: 480px) {
	#schedule .nav-tabs a {
		padding: 8px 30px;
	}
}
@media (max-width: 460px) {
	#subscribe button {
		margin-top: 10px;
	}
}
