@font-face {
	font-family: 'neo_tech_stdregular';
	src: url('../fonts/neo_tech_std_regular-webfont.woff2') format('woff2'),
		url('../fonts/neo_tech_std_regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'neo_tech_stdregular';
}

body {
	font-family: "Lora", serif;
	color: #000;
}

a {
	color: #000;
}

.btn-primary {
	border: 0;
	font-size: 18px;
	padding: 10px 20px;
	background: #000;
	color: #fff;
	transition: 0.3s;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid #000;
	font-weight: bold;
}

.btn-primary:hover,
.btn-primary:focus {
	background: #fff;
	color: #000;
	border-color: #000;
	box-shadow: none;
}

.btn-secondary {
	border: 0;
	font-size: 18px;
	padding: 10px 20px;
	background: transparent;
	color: #000;
	transition: 0.3s;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid #000;
	font-weight: bold;
	box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background: #000;
	color: #fff;
	border-color: #000;
	box-shadow: none;
}

section {
	padding: 88px 0;
}

@media (min-width: 992px) {
	section {
		padding: 128px 0;
	}

}

.feature-icon {
	font-size: 36px;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 0;
}

.hero-banner {
	position: relative;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 0;
}

.hero-banner::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1;
}

.hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.hero-banner .container {
	position: relative;
	z-index: 2;
}

.about-us {
	background: url(../images/page-pattern-backround.jpg) repeat center center;
}

.about-us h5 {
	color: #000;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}

.about-us img {
	border-radius: 8px;
}

.amenities {
	background: #000;
	color: #fff;
}

.amwnities-col {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 8px;
	padding: 20px;
	gap: 10px;
	transition: all 0.3s ease-in-out;
}

.amwnities-col:hover {
	background-color: #fff;
	color: #000;
	transform: translateY(-8px);
}

.pulsating-play-btn {
	width: 94px;
	height: 94px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	position: relative;
	overflow: hidden;
	top: 55%;
	left: 50%;
	transform: translate(-50%);
}

.pulsating-play-btn:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	animation-delay: 0s;
	animation: pulsate-play-btn 2s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(0, 0, 0, 0.5);
	top: -15%;
	left: -15%;
	background: rgba(0, 0, 0, 0.5);
}

.pulsating-play-btn:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #000;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #000;
	z-index: 200;
	animation: none;
	border-radius: 0;
	background: none;
}

.pulsating-play-btn:hover:after {
	border-left: 15px solid #fff;
	transform: scale(20);
}

@keyframes pulsate-play-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

.video-banner {
	position: relative;
	background: url(../images/img-03.jpg) no-repeat bottom center;
	background-size: cover;
	background-attachment: fixed;
}

.video-banner::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.video-banner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.video-banner .container {
	position: relative;
	z-index: 2;
}

.video-link {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.video-link::after {
	content: '▶';
	font-size: 3rem;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.8;
}

.popup-gallery {
	row-gap: 30px;
}

.popup-gallery a {
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.popup-gallery a:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.popup-gallery a:hover:before {
	visibility: visible;
	opacity: 1;
}

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

.popup-gallery a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.contact {
	background: url(../images/gal-13.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	color: #fff;
}

.contact .column {
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	color: #000;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.contact .container {
	position: relative;
	z-index: 2;
}

.contact .info-item {
	margin-bottom: 15px;
	;
}

.contact .info-item i {
	color: #fff;
	background: #000;
	font-size: 20px;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin-right: 15px;
	border: 1px solid #000;
}

.contact .info-item h3 {
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #000;
}

.contact .info-item p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
}

.contact .info-item p a {
	color: #000;
}

.contact .info-item:hover i {
	background: #fff;
	color: #000;
}

.contact [type=submit] {
	border: 0;
	font-size: 18px;
	padding: 10px 20px;
	background: #000;
	color: #fff;
	transition: 0.3s;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid #000;
	font-weight: bold;
}

.contact [type=submit]:hover {
	background: #fff;
	color: #000;
}

iframe {
	display: block;
	width: 100%;
}

.footer {
	background: #000;
	color: #fff;
	padding: 40px 0;
}

.footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #fff;
	font-size: 16px;
	color: #000;
	margin-right: 10px;
	transition: 0.3s;
	background: #fff;
}

.footer .social-links a:hover {
	color: #fff;
	background-color: #000;
}

.footer .credits a {
	color: #fff;
}

.events {
	background: url(../images/page-pattern-backround.jpg) repeat center center;
	position: relative;
	background-attachment: fixed;
}

.events .container {
	position: relative;
	z-index: 2;
}

.events h5 {
	color: #000;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}

.card {
	border-radius: 16px;
	overflow: hidden;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
}

.card:hover {
	transform: translateY(-8px);
}

.card .card-title a {
	color: #000;
}

.card:hover .card-title a {
	text-decoration: underline;
}

.card .img-wrapper {
	overflow: hidden;
	overflow: hidden;
	padding: 10px 10px 0;
	position: relative;
}

.card .img-wrapper a {
	display: block;
}

.card .img-wrapper a::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.card:hover .img-wrapper a::after {
	opacity: 1;
	visibility: visible
}

.card img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
	transition: all 1.5s ease-out;
}

.card:hover img {
	transform: scale(1.2);
}

.card-body {
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.card-info {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.card-body p {
	font-size: 14px;
}

.card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #000;
}

.card-body .card-text {
	font-size: 16px;
	color: #000;
}

.card i.bi {
	margin-right: 4px;
}

.card .btn {
	margin-top: auto;
}
.card .notice {
    margin-top: auto;
    color: #f00;
    padding: 10px 20px;
}
.shootout-section {
	position: relative;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.shootout-section:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1;
}
.shootout-section .pulsating-play-btn {
	position: absolute;
	top: 70%;
	z-index: 2;
}
.video-thumbnail-wrapper {
	position: absolute;
	overflow: hidden;
	cursor: pointer;
	width: 100%;
	height: 100%;
	top: 0;
}

.video-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.shootout-content {
	position: relative;
	z-index: 999;
	color: #fff;
	text-align: center;
	padding: 0 10px;
}

.shootout-title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.shootout-date {
	font-size: 1.25rem;
	color: #fff;
	margin-top: 10px;
}

@media (min-width: 768px) {
	.shootout-title {
		font-size: 2.5rem;
	}
}