h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
}
* {
	margin: 0;
	padding: 0;
}
a, a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
body {
	font-family: 'Poppins', sans-serif;
	/*font-family: 'Alegreya', serif;
	font-family: 'Montserrat', sans-serif;
	font-family: 'Oswald', sans-serif;*/
	overflow-x: hidden;
	background-image: url("../images/img2-scaled.jpg");
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-1);
}
/*************GENRAL CLASSES START*************/
@font-face {
	font-family: 'BattlesbridgeDemoRegular';
	src: url(../fonts/BattlesbridgeDemoRegular.ttf);
}
.relClass {
	position: relative;
}
.absClass {
	position: absolute;
}
.xy-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.xy-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.boxRadius {
	border-radius: 5px;
}
.marginAuto {
	margin: 0 auto;
}
:root {
	--color-1 : rgb(111, 0, 21);
	--white : #fff;
	--black : #000;	
}
.genBtn {
	font-family: 'Montserrat', sans-serif;
	width: fit-content;
	height: 55px;
	background: #DE9623;
	color: var(--black);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	border: 0;
	padding: 18px 30px 18px 30px;
}
.scrollTop {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: var(--white);
	position: fixed;
	bottom: 15px;
	right: 15px;
	background: #B78700;
}
.scrollTop:hover {
	color: var(--white);
}
/*************GENRAL CLASSES END*************/
/*HEADER START*/
#headerMain {
	transition: all 0.25s;
}
.header {
	background: var(--color-1);
	background: transparent;
	padding: 18px 0px 25px 0px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.logoBox {
	font-family: 'Alegreya', serif;
	font-size: 44px;
	font-weight: 600;
	color: var(--white);
	text-align: center; 
	display: block;
	line-height: 1;
}
.logoBox:hover {
	color: var(--white);
}
.navBar ul li {
	padding: 10px 20px;
}
.navItem {
	font-size: 16px;
	color: var(--white);
	position: relative;
	padding-bottom: 5px
}
.navItem::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-bottom: 2px solid transparent;
	transition: all 0.5s;
}
.navItem::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	border-bottom: 2px solid transparent;
	transition: all 0.5s;
}
.navItem:hover:before {
	border-color: var(--white);
	width: 50%;
}
.navItem:hover:after {
	border-color: var(--white);
	width: 50%;
}
.navItem:hover {
	color: var(--white);
}
/*HEADER END*/

/*INDEX BANNER START*/
.index-banner {
	background-image: url(../images/banner-bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	/*min-height: 950px;*/
	padding-top: 160px;
	padding-bottom: 70px;
}
.slideBox {
	max-width: 985px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slideBox .slideContent {
	width: 100%;
}
.sliderWrap {
	position: relative;
	margin-bottom: 20px;
}
.slideArrow {
	font-size: 35px;
	color: var(--white);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -20px;
	cursor: pointer;
}
.arrowRight {
	right: -20px;
	left: auto;
}
.styledHeading {
	font-family: 'BattlesbridgeDemoRegular';
	font-size: 45px;
	color: var(--white);
}
.styledHeading .blinkText {
	color: #ffb600;
	animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}
.desc {
	font-size: 14px;
	color: var(--white);
	line-height: 32px;
}
.expBtn {
	position: relative;
	margin: 0 auto;
	margin-top: 35px;
	transition: all 0.25s;
	border: 1px solid transparent;
}
.expBtn:hover {
	background: var(--black);
	color: var(--white);
	animation: scale 0.7s linear infinite;
	border-color: #ffb600;
}
@keyframes scale {
	50% {
		transform: scale(1.1);
	}
}
/*INDEX BANNER END*/

/*INDEX SEC 2 START*/
.index-sec-2 {
	background: url(../images/sec-1-bg.jpg);
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 60% auto;
	padding: 130px 0px;
}
.subHeading {
	font-size: 28px;
	font-weight: 500;
	color: var(--white);
}
.styledHeading.type2 {
	color: #E6A500;
	animation: blinker 1.5s linear infinite;
	text-shadow: 4px 4px #000000;
}

.playCard .title {
	font-family: 'BattlesbridgeDemoRegular';
	font-size: 16px;
	color: var(--white);
}
.playRow {
	margin-top: 50px;
}
.playCard img {
	max-width: 70px;
	margin-bottom: 30px;
}
/*INDEX SEC 2 END*/

/*INDEX SEC 3 START*/
.index-sec-3 {
	padding: 95px 0px;
	position: relative;
	background: #4B0014;
}
.topText .desc {
	max-width: 890px;
	margin: 0 auto;
	padding-top: 40px;
}
.sec3abs {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 350px;
}
.genCard {
	border: 4px solid var(--white);
	padding: 20px;
	margin: 24px 0px;
	background: #4b0014;
}
.cardGif {
	max-width: 220px;
}
.genCard .price {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
}
.btnWrap {
	display: flex;
	align-items: center;
	gap: 15px;
}
.cdBtn {
	font-family: "Oswald", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	max-width: 110px;
	width: 100%;
	height: 44px;
	transition: all 0.25s;
}
.cdBtn:hover {
	color: var(--white);
	background: var(--black);
	animation: scale 0.7s linear infinite;
} 
.cdBtn.type1 {
	background: #B78700;
	border-color: #B78700;
}
.cdBtn.type1:hover {
	background: var(--black);
	border-color: var(--black);
}
/*INDEX SEC 3 END*/

/*INDEX SEC 4 START*/
.index-sec-4 {
	background-image: url(../images/sec-4-bg.png);
	background-size: cover;
	background-position: center;
	padding: 95px 0px;
}
.index-sec-4 .genCard {
	background: transparent;
}
/*INDEX SEC 4 END*/

/*INDEX SEC 5 START*/
.index-sec-5 {
	padding: 95px 0px 40px 0px;
	position: relative;
}
.genCard.type1 {
	background: #5B0118;
	border: 1px solid #6E6E6E;
	padding: 70px 20px 40px 20px;
	position: relative;
	transition: all 0.25s;
}
.genCard.type1:hover {
	background: #8E0125;
	border-color: var(--white);
}
.genCard.type1 .absGif {
	position: absolute;
	top: -50px;
	right: 15px;
}
.genCard.type1 .cardGif {
	max-width: 145px;
}
.genCard.type1 .price {
	font-size: 18px;
}
.sec5row {
	padding-top: 60px;
}
.ballAbs {
	position: absolute;
	top: -205px;
	left: 40px;
	z-index: -1;
}
.genAccordian .accordion-item:first-of-type .accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.genAccordian .accordion-item {
	background-color: transparent;
	border: 1px solid rgba(0,0,0,.125);
}
.genAccordian .accordion-button {
	font-size: 15px;
	color: var(--white);
	background-color: transparent;
	border: 2px solid #6E6E6E !important;
	margin-bottom: 15px;
	border-radius: 0;
}
.genAccordian .accordion-button::after {
	display: none
}
.genAccordian .accordion-button:not(.collapsed) {
	color: var(--white);
	background-color: #8E0125 !important;
	box-shadow: none;
	border: 1px solid #fff!important;
}
.genAccordian .accordion-button:focus {
	box-shadow: none;
}
.genAccordian .accordion-body {
	font-size: 16px;
	color: var(--white);
	border: 1px solid #fff;
	margin-bottom: 15px;
}
/*INDEX SEC 5 END*/

/*INDEX SEC 6 START*/
.index-sec-6 {
	padding-bottom: 95px;
	position: relative;
}
.sec6Abs {
	position: absolute;
	bottom: 0;
	left: 0;
}
/*INDEX SEC 6 END*/

/*FOOTER START*/
footer {
	background: #580117;
	padding: 70px 0px 70px 0px;
}
.socialLink {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 20px;
}
.socialLink a, 
.footerCol a {
	line-height: 1;
	display: block;
}
.socialLink a:hover,
.footerCol a:hover {
	color: var(--white);
	text-decoration: underline;
}
.footerNavRow ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 20px 0px;
	border-bottom: 2px solid var(--white);
	gap: 45px;
}
.footerCol.leftCol {
	max-width: 610px;
	margin-left: auto;
}
.copyright {
	text-align: end;
	padding: 20px 0px
}
/*FOOTER END*/
