@import url('https://fonts.googleapis.com/css2?family=Rubik+Maps&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
	--blue: #368CE7;
	--blue-dark: #1666BA;
	--blue-light: #7AB3EF;

	--red: #FF0000;
	--red-dark: #A70000;
	--red-light: #FF5252;

	--green: #76BA1B;
	--green-dark: #4C9A2A;
	--green-light: #ACDF87;

	--orange: #ff7400;
	--orange-dark: #ff4d00;
	--orange-light: #ff9a00;

	--black: #000;
	--dark: #333;
	--light: #666;

	--white: #fff;
	--white-dark: #ccc;
	--white-light: #eee;

	--primary-color: #f2ebc0;
	--primary-glow: rgba(242, 235, 192, 0.8);
	--secondary-color: #9c27b0;
	--text-color: #ffffff;
	--bg-color: #0a0a12;
	--nav-bg: rgba(16, 16, 26, 0.7);
	--dropdown-bg: rgba(20, 20, 35, 0.8);
	--hover-color: #3f51b5;
	--border-color: rgba(255, 255, 255, 0.08);
	--shadow-color: rgba(0, 0, 0, 0.3);
	--neon-glow: 0 0 10px rgba(242, 235, 192 0.5),
		0 0 20px rgba(242, 235, 192 0.3),
		0 0 30px rgba(242, 235, 192 0.1);
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--gradient-bg: linear-gradient(135deg, var(--bg-color), #151530);
	--glass-effect: saturate(180%) blur(10px);
	--border-radius: 12px;
	--text-description: rgba(255, 255, 255, 0.7);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
}

a,
button,
input,
textarea {
	outline: 0;
	transition: all .5s ease;
}

a {
	text-decoration: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Rubik", serif;
	font-weight: 400;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Rubik Maps", serif;
	font-weight: 700;
}


header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
	width: 100%;
	float: left;
}

.logo {
	color: #fff;
	font-family: "Rubik Maps";
}

.logo img {
	width: 200px;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background: var(--nav-bg);
	backdrop-filter: var(--glass-effect);
	-webkit-backdrop-filter: var(--glass-effect);
	border-bottom: 1px solid var(--border-color);
	box-shadow: 0 4px 30px var(--shadow-color);
	transition: var(--transition-medium);
}

/* Logo */
.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: var(--neon-glow);
	position: relative;
	display: inline-block;
	transition: var(--transition-medium);
	font-family: "Rubik Maps", serif;
}

.logo:hover {
	transform: translateY(-2px);
	text-shadow: 0 0 15px var(--primary-glow),
		0 0 30px var(--primary-glow);
}

.logo::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	bottom: -4px;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition-medium);
	box-shadow: var(--neon-glow);
}

.logo:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-list {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	transition: all var(--transition-medium);
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-2px);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	background-color: var(--primary-color);
	border-radius: 50%;
	box-shadow: var(--neon-glow);
}

/* Icons */
.icon {
	transition: var(--transition-medium);
	vertical-align: middle;
}

.chevron-icon {
	transition: transform var(--transition-medium);
}

.has-dropdown:hover .chevron-icon {
	transform: rotate(180deg);
}

.hidden {
	display: none;
}

/* Search Bar */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.search-container {
	position: relative;
	display: flex;
	align-items: center;
}

.search-input {
	padding: 0.6rem 1rem;
	border: none;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text-color);
	width: 180px;
	transition: all var(--transition-medium);
	font-size: 0.9rem;
}

.search-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.15);
	width: 240px;
	box-shadow: 0 0 0 2px rgba(242, 235, 192 0.3);
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-btn {
	background: none;
	border: none;
	color: var(--text-color);
	cursor: pointer;
	padding: 0.5rem;
	position: absolute;
	right: 5px;
	transition: var(--transition-fast);
}

.search-btn:hover {
	color: var(--primary-color);
	transform: scale(1.1);
}

/* Theme Toggle */
.theme-toggle {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-color);
	color: var(--text-color);
	cursor: pointer;
	padding: 0.6rem;
	font-size: 1.2rem;
	transition: all var(--transition-medium);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-toggle:hover {
	color: var(--primary-color);
	text-shadow: var(--neon-glow);
	background: rgba(255, 255, 255, 0.15);
	transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
	display: none;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 0.6rem;
	transition: var(--transition-medium);
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.15);
}

.hamburger {
	width: 24px;
	height: 20px;
	position: relative;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-color);
	position: absolute;
	transition: all var(--transition-medium);
	border-radius: 10px;
}

.hamburger span:first-child {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
	width: 70%;
}

.hamburger span:last-child {
	top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
	transform: rotate(45deg);
	top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
	opacity: 0;
	width: 0;
}

.nav-active .hamburger span:last-child {
	transform: rotate(-45deg);
	top: 9px;
}

/* Content Styling */
.content {
	margin-top: 70px;
	padding: 2rem;
}

.hero {
	height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 15px rgba(242, 235, 192 0.3);
}

.hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin-bottom: 2rem;
	color: var(--text-description);
}

.cta-button {
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition-medium);
	box-shadow: 0 5px 15px rgba(242, 235, 192 0.4);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(242, 235, 192 0.6);
}
.section1{
	background: url(../img/banner.jpg) center;
	background-size: cover;
}

.section1:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.feature {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
	transition: var(--transition-medium);
}

.feature:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-color: rgba(242, 235, 192 0.3);
}

.feature h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.feature p {
	color: var(--text-description);
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		right: -100%;
		flex-direction: column;
		align-items: flex-start;
		background: var(--nav-bg);
		backdrop-filter: var(--glass-effect);
		-webkit-backdrop-filter: var(--glass-effect);
		width: 80%;
		height: calc(100vh - 70px);
		padding: 2rem;
		transition: right var(--transition-slow);
		box-shadow: -10px 0 30px var(--shadow-color);
		border-left: 1px solid var(--border-color);
	}

	.nav-active .nav-menu {
		right: 0;
	}

	.nav-list {
		flex-direction: column;
		width: 100%;
		margin-bottom: 2rem;
	}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		width: 100%;
		padding: 1rem;
		border-bottom: 1px solid var(--border-color);
	}

	.nav-link.active::after {
		display: none;
	}

	.nav-link.active {
		background: rgba(242, 235, 192 0.15);
	}

	.dropdown {
		position: static;
		width: 100%;
		background: rgba(0, 0, 0, 0.2);
		border: none;
		padding: 0;
		padding-left: 1rem;
		margin-left: 1rem;
		display: none;
		box-shadow: none;
		border-left: 1px solid var(--border-color);
		transform: none;
		transition: all var(--transition-medium);
	}

	.dropdown::before {
		display: none;
	}

	.has-dropdown.active .dropdown {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	.dropdown a {
		padding: 0.8rem 1rem;
		border-bottom: 1px solid var(--border-color);
	}

	.nav-actions {
		width: 100%;
		flex-direction: column;
		gap: 1rem;
	}

	.search-container {
		width: 100%;
	}

	.search-input,
	.search-input:focus {
		width: 100%;
	}

	.search-input {
		padding: 0.8rem 1rem;
	}

	.theme-toggle {
		align-self: flex-start;
	}

	.chevron-icon {
		position: absolute;
		right: 1rem;
	}

	.has-dropdown.active .chevron-icon {
		transform: rotate(180deg);
	}
}

@media (max-width: 576px) {
	.navbar {
		padding: 1rem;
	}

	.nav-menu {
		width: 100%;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.content {
		padding: 1rem;
	}

	.section {
		padding: 3rem 1rem;
	}
}

.container {
	width: 100%;
	max-width: 1300px;
	padding: 0 15px;
}

.banner {
	background: url(../img/banner.jpg) center;
	background-size: cover;
	padding: 80px 0 20px 0;
	overflow: hidden;
	position: relative;
}

.banner:before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.banner .container {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	text-align: center;
	align-items: center;
}

.div {
	width: 100%;
	bottom: -1px;
	left: 0;
	position: absolute;
	z-index: 2;
}

iframe {
	width: 100%;
	height: 500px;
	scrollbar-width: 0;
	border: 0;
}

.inner-banner .container {
	min-height: 200px;
}

.c-button {
	background: linear-gradient(140deg, #5b3012 0%, #5b3012 100%);
	border-radius: 45px;
	font-size: 20px;
	text-align: left;
	padding: 10px 20px 10px 0;
	border: 4px solid #5b3012 !important;
	border-style: outset;
	box-shadow: -6px -5px 18px rgba(255, 255, 255, 0.1);
	cursor: pointer;
	color: #fff;
}

.c-button .c-main {
	border-radius: 45px;
	color: rgba(255, 255, 255, 1);
	padding: 11px 25px 11px 2px;
	box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0);
	transition: all 0.5s ease-in-out;
	border: 1px solid transparent;
}

.c-ico .c-blur {
	background: linear-gradient(318deg, #926341 0%, #5b3012 100%);
	border-radius: 100%;
	margin-left: 0;
	padding: 8px 23px;
	filter: blur(1px);
	text-align: center;
}

.c-ico {
	position: relative;
	margin-right: 20px;
}

.c-ico .ico-text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* Hovering */

.c-button .c-main:hover {
	box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0.6);
	border: 1px solid rgba(26, 26, 26, 0.5);
	color: rgba(255, 255, 255, 0.5);
}


.image {
	width: 60%;
}

.image img {
	width: 100%;
}

.banner h1 {
	font-size: 55px;
	font-weight: 800;
	margin: 0 0 10px;
	z-index: 2;
}

.banner p {
	font-size: 15px;
	line-height: 24px;
	z-index: 2;
}

.section {
	padding: 20px 0;
	position: relative;
}

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

.h2 {
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 10px;
}

.para {
	font-size: 14px;
	line-height: 23px;
	margin: 0 0 20px;
}

.para:last-child {
	margin: 0;
}

.flexbox {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
}

.flexbox:last-child {
	margin: 0;
}

.flexbox>p,
.flexbody {
	flex: 1;
}

.flexbox>p:first-child,
.flexbody:first-child {
	padding: 0 30px 0 0;
}

.flexbox>p:last-child,
.flexbody:last-child {
	padding: 0 0 0 30px;
}

.flexbox>img {
	width: 100%;
	max-width: 30%;
}

.section1 {
	background-color: #5b3012;
	color: #fff;
}

.flex {
	width: 50%;

}

.flex img {
	width: 100%;
}

.center {
	width: 100%;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 0 0 20px;
}

.center:last-child {
	margin: 0 !important;
}

.container>img {
	width: 100%;
	float: left;
	margin: 0 0 20px;
}

.flexgroup {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}

.flexgroupbox {
	width: 24%;
	display: flex;
	flex-direction: column;
	float: left;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	background-color: #5b3012;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
	color: #fff;
	padding: 20px;
	border-radius: 10px;
}

.flexgroupbox h4 {
	font-size: 20px;
	background-color: #ffffff;
	color: #5b3012;
	width: 100%;
	padding: 10px;
}

.img {
	background-color: #fff;
	width: 150px;
	height: 150px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	float: left;
	margin: 0 0 20px;
	border: 2px solid #ebebeb;
	box-shadow: 2px 2px 6px #171717, -2px -2px 6px #5e5e5e;
	border-radius: 50%;
	margin-top: -80px;
}

.img img {
	width: 70%;
}

.video {
	width: 700px;
	max-width: 100%;
	height: 400px;
	float: left;
	margin: 0 0 20px;
	position: relative;
}

iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	float: left;
	top: 0;
	left: 0;
}

footer .para>a {
	color: #fff;
	text-decoration: underline !;
}

.formsection {
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.formsection .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.formsection .para {
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
}

.formsection h3 {
	margin-top: 20px;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 600px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 0 0 10px;
}

.logo-box img {
	height: 70px;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
	border-radius: 40px;
}

.textarea-cu {
	width: 49%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

.formfield::placeholder,
.textarea-cu::placeholder {
	color: #333;
}

.formbutton {
	width: 100%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: #c53970;
	color: #fff;
	cursor: pointer;
	border: 1px solid #fff;
	outline: 0 !important;
}

footer {
	background: #5b3012;
	text-align: center;
	padding: 30px 0;
	color: #fff;
}

footer .container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.footerlinks {
	flex: 1;
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	margin: 0 0 20px;
}

.ssl-img img {
	width: 100px;
	margin: 20px;
}

.footerlinks a {
	font-size: 14px;
	color: #ffffff;
	margin: 0 6px;
}

.footerlinks a:hover {
	text-decoration: underline !important;
}

.copyrights {
	font-size: 14px;
	color: #fff;
}

.text-white {
	font-size: 14px;
	margin: 0 0 10px !important;
}

.cookiesection {
	width: 100%;
	float: left;
	min-height: calc(100vh - 126px);
	padding: 40px 0;
}

.cookiesection h2 {
	font-size: 22px;
	font-weight: 600;
}

.cookiesection p {
	font-size: 14px;
	line-height: 20px;
}

.cookiesection p strong {
	font-weight: 600;
}

.cookiesection p .bolder {
	display: block;
	margin: 30px 0 10px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
}

.backbutton {
	float: left;
	display: inline-flex;
	align-items: center;
	margin: 30px 0 20px;
	padding: 6px 8px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--blue-dark) !important;
	border: solid 1px var(--blue-dark);
	;
}

.backbutton img {
	width: 15px;
	margin: 0 5px 0 0;
	transition: all .3s ease;
}

.backbutton:hover {
	background: var(--blue-dark);
	;
	color: #fff !important;
}

.backbutton:hover img {
	filter: saturate(0) brightness(10);
}

.alert {
	background: rgba(0, 0, 0, 0.7) !important;
	color: #ffffff !important;
	position: fixed !important;
	bottom: 10px;
	margin-bottom: 0 !important;
	left: 26px;
	max-width: 100%;
	text-align: center;
	width: 300px;
	margin: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	align-items: center;
	border-radius: 20px;
}

.alert-dismissible {
	z-index: +3;
}

.alert-close {
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	padding: 0px !important;
	width: 3rem;
	height: 2rem;
	font-size: 14px;
}

.hide {
	display: none;
}

span {
	font-weight: bold;
}

.alert p {
	font-size: 14px;
	margin: 0 0 20px !important;
	width: 100%;
	float: left;
}

.hide {
	display: none;
}

.alert-close {
	padding: 0px 9px !important;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #862041;
	color: white;
	margin: 0 !important;
	font-size: 14px;
}

.agebtn {
	width: auto;
	height: 56px;
	border-radius: 4px;
	padding: 0 65px 0 20px;
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	background: #397482;
	color: #fff !important;
	position: relative;
	font: 600 18px 'Roboto', sans-serif;
	text-transform: uppercase;
	overflow: hidden;
	transition: all .3s ease;
	text-decoration: none;

}

.agebtn:before {
	content: '';
	width: 45px;
	height: 100%;
	background: #397482;
	position: absolute;
	right: 0;
	top: 0;
}

.agebtn:after {
	content: '';
	top: 30px;
	right: 4px;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #fff;
	border-width: 12px;
	margin-top: -15px;
}

.agebtn:hover {
	background: #2a5f6b;
}

.modal-open .modal {
	background: #000;
}

.modal-custom {
	padding: 80px;
	max-width: 780px !important;
}

.modal-content h3 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 10px #57575780, 0 0 20px #d4d4d44d, 0 0 30px #ffd7001a;
}

.age-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
}

.age-text {
	color: #ffffff;
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.age-buttons {
	gap: 1rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.age-btn {
	border: none;
	border-radius: 12px;
	cursor: pointer;
	flex: 1 1;
	font-size: 1rem;
	font-weight: 600;
	padding: 1rem;
	transition: all .3s ease;
}

.yes-btn {
	background: linear-gradient(135deg, #5b3012, #5b3012);
	color: #ffffff;
	padding: 15px 30px;
	border-radius: 40px;

}

.no-btn {
	background: #fff;
	border: 1px solid #ffffff33;
	color: #000000;
	padding: 15px 30px;
}

.age-disclaimer {
	color: #ffffff;
	font-size: .9rem;
	line-height: 1.5;
}

.modal-content {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/img-1.jpg);
	background-size: cover;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 2px solid #000000;
	padding: 20px 30px 40px;
	color: #fff;
	text-align: center;
	box-shadow: 0 0 10px #000, 0 0 20px #713208, 0 0 30px #713208;
}

.modal-content h2 {
	font: 600 22px 'Roboto', sans-serif;
}

.modal-content h2 span {
	font-size: 18px;
	font-weight: 400;
	display: block;
	margin: 10px 0 0;
}

.yes-btn:hover {
	box-shadow: 0 0 10px #343434, 0 0 20px #080808, 0 0 30px #f3f3f31a;
	transform: translateY(-2px);
}

.no-btn:hover {
	background: #e0e0e0;
}

@media (max-width:800px) {
	.banner h1 {
		font-size: 28px;
	}

	.h2 {
		font-size: 20px;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox>img {
		max-width: 100%;
		order: 1;
		margin: 0 0 15px;
	}

	.flexbody,
	.flexbox>.para {
		padding: 0 !important;
		order: 2;
	}

	footer .container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.flexgroupbox {
		width: 100%;
		margin: 0 0 70px;
	}

	.flexgroupbox:last-child {
		margin: 0;
	}

	.image,
	.flex {
		width: 100%;
		margin: 0 0 20px;
	}

	.formfield {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.img-size {
		width: 100%;
	}

	.footerlinks {
		justify-content: center;
		margin: 10px 0;
	}

	.accordion {
		width: 100% !important;
	}

	.logo-box {
		flex-direction: column;
	}

	.image img {
		width: 100%;
	}

	.alert {
		left: 0;
		width: 100%;
		bottom: 0;
	}

	.modal-custom {
		padding: 20px;
	}

	.banner .container{
		min-height: 150px;
	}

}