/* Палитра №2: Тёмная современная */
:root{
	--bg-primary: #1A1A1A;
	--bg-secondary: #2D2D2D;
	--text-primary: #FFFFFF;
	--text-secondary: #CCCCCC;
	--accent: #00D4FF;
	--accent-hover: #00B8E6;
	--button: #00D4FF;
	--button-hover: #00B8E6;
	--border: #2D2D2D;
	--shadow: rgba(0, 212, 255, 0.2);
	--shadow-hover: rgba(0, 212, 255, 0.4);
}

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

p{margin:0;}
a,
button,
input,
textarea{
	outline:0;
	transition: all 0.3s ease;
}
a{ text-decoration:none!important;}

html {
	scroll-behavior:smooth;
	overflow-x: hidden;
}

body{
	font-family: "Rubik", sans-serif;
	font-weight:400;
	font-style: normal;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
}

body.bg {
	background-color: var(--bg-primary);
}

h1,h2,h3,h4,h5,h6{
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

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

header{
	display: flex;
	align-items: center;
	justify-content: center;
	padding:10px 15px;
	font-size:30px;
	font-weight:800;
	background-color: var(--bg-primary);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	border-bottom: 1px solid var(--border);
}

.nav-container {
	max-width: 1300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none !important;
}

.nav-link{
    color: var(--text-primary);
    font-size: 15px;
    text-decoration: none;
	display: inline-block;
    font-weight: 500;
    padding: 10px 20px;
    margin-left: 5px;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover{
	color: var(--accent) !important;
	background-color: var(--bg-secondary);
	transform: translateY(-2px);
}

.nav-link.active-custom {
	color: var(--accent) !important;
	background-color: var(--bg-secondary);
}

.navbar-nav {
	justify-content: end;
	width: 100%;
	align-items: center;
}

.nav-item {
	margin: 0 5px;
}

.nav-icon img {
	width: 23px;
}

.navbar-brand {
	height: auto !important;
	color: var(--text-primary) !important;
	font-size: 28px;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	color: var(--accent) !important;
	transform: scale(1.05);
}

.navbar-brand img {
	height: 40px;
	margin-right: 10px;
}

.nav {
	display: none;
	background-color: var(--bg-primary);
	border-bottom: 1px solid var(--border);
}

nav {
	width: 100%;
	float: left;
	padding: 15px 0;
	background-color: var(--bg-primary);
	position: absolute;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.icon {
	font-size: 30px;
	cursor: pointer;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.icon:hover {
	color: var(--accent);
	transform: scale(1.1);
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	background-color: var(--bg-primary);
	border-left: 2px solid var(--accent);
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
}

.sidenav a {
	padding: 15px 30px;
	text-decoration: none;
	font-size: 16px;
	color: var(--text-primary);
	display: block;
	transition: 0.3s;
	font-weight: 500;
	width: 100%;
	border-radius: 0;
}

.sidenav .nav-link{
	margin-left: 0;
}

.sidenav a:hover {
	background-color: var(--bg-secondary);
	color: var(--accent) !important;
	padding-left: 40px;
}

.sidenav .closebtn {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 40px;
	color: var(--text-primary);
	transition: all 0.3s ease;
}

.sidenav .closebtn:hover {
	color: var(--accent);
	transform: rotate(90deg);
}

.navbar-cu {
	width: 100%;
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
}

.navbar-cu .logo {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.navbar-cu .logo:hover {
	color: var(--accent);
}

.navbar-cu img {
	height: 30px;
	margin-right: 8px;
}

.container{
	width:100%;
	max-width:1300px;
	padding:0 20px;
	margin: 0 auto;
}

.banner{
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	padding: 80px 0 60px 0;
	position: relative;
	overflow: hidden;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../images/banner-background.jpg") center/cover;
	opacity: 0.3;
	z-index: 0;
}

.div{
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0.5;
}

.banner .container{
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: var(--text-primary);
	text-align: center;
	position: relative;
	z-index: 1;
}

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

.content{
	background: rgba(26, 26, 26, 0.85);
	backdrop-filter: blur(10px);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid var(--border);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	max-width: 900px;
	margin: 0 auto;
}

.banner h1{
	font-size: 48px; 
	font-weight: 700; 
	margin: 0 0 20px;
	color: var(--accent);
	text-shadow: 0 0 20px var(--shadow);
}

.banner h5 {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.banner p{
	font-size: 16px; 
	line-height: 28px;
	color: var(--text-secondary);
}

.section{
	padding: 60px 0; 
	position: relative;
	background-color: var(--bg-primary);
}

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

.h2{
	font-size: 36px; 
	font-weight: 600;
	margin: 0 0 20px;
	color: var(--text-primary);
}

.para{
	font-size: 16px; 
	line-height: 26px;
	margin: 0 0 20px;
	color: var(--text-secondary);
}

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

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

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

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

.flexbox > img{
	width: 100%; 
	max-width: 45%;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.flexbox > img:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 40px var(--shadow);
}

.section1{
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	color: var(--text-primary);
	border-top: 2px solid var(--accent);
	border-bottom: 2px solid var(--accent);
}

.ul{
	text-align: left;
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	padding-left: 20px;
}

.ul li {
	margin-bottom: 10px;
}

.p-b{
	padding-bottom: 80px;
}

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

.container > img{
	width: 100%;
	float: left;
	margin: 0 0 30px;
	border-radius: 15px;
}

.flexgroup{
	width: 100%; 
	float: left;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

.flexgroupbox{
	width: 100%;
	max-width: 600px;
	padding: 40px 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	color: var(--text-primary);
	border-radius: 20px;
	border: 2px solid var(--border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.flexgroupbox:hover {
	transform: translateY(-10px);
	border-color: var(--accent);
	box-shadow: 0 15px 40px var(--shadow);
}

.flexgroupbox img{
	width: 200px;
	margin: 0 0 20px;
	border-radius: 15px;
}

.flexgroupbox h4{
	font-size: 28px;
	width: 100%;
	margin-bottom: 20px;
	color: var(--accent);
}

.flexgroupbox .para{
	padding: 0;
	font-size: 16px;
	line-height: 1.8;
}

.flex-img{
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
	padding: 20px;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	margin-bottom: 30px;
	border: 2px solid var(--accent);
	box-shadow: 0 10px 30px var(--shadow);
	transition: all 0.3s ease;
}

.flex-img:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 15px 40px var(--shadow-hover);
}

.flex-img img{
	width: 100%;
	border-radius: 10px;
}

.img-box{
	width: 50%;
}

.img-box img{
	width: 100%;
	border-radius: 15px;
}

.video{
	width: 100%;
	max-width: 900px;
	float: left;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
	border: 2px solid var(--border);
}

iframe{
	width: 100%;
	height: 600px;
	float: left;
	border: none;
	border-radius: 20px;
}

.img-size{
	margin: 0 0 30px;
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 16px 50px;
  border: 2px solid var(--accent);
  font-size: 16px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  background-color: var(--accent);
  border-radius: 50px;
  color: var(--bg-primary);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px var(--shadow);
}

.animated-button span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--bg-primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:first-child {
  position: relative;
  z-index: 1;
}

.animated-button:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.animated-button:active {
  transform: translateY(-1px) scale(0.98);
}

.animated-button:hover span:last-child {
  width: 300px;
  height: 300px;
  opacity: 0.1;
}

.img{
	width: 50%;
	margin: 0 0 30px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.img:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 40px var(--shadow);
}

.img img{
	width: 100%;
	display: block;
}

.formsection{
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	margin-top: 60px;
}

.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.8;
}

.formbox{
	width: 100%; 
	float: left;
	max-width: 800px;
	padding: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: var(--bg-secondary);
	border-radius: 20px;
	border: 2px solid var(--border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.formfield{
	width: 100%;
	height: 50px;
	margin: 0 0 20px;
	padding: 0 20px;
	border: 2px solid var(--border);
	background: var(--bg-primary);
	color: var(--text-primary);
	font-size: 16px;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-family: "Rubik", sans-serif;
}

.formfield:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--shadow);
}

.textarea-cu{
	width: 100%;
	height: 120px;
	margin: 0 0 20px;
	padding: 15px 20px;
	border: 2px solid var(--border);
	background: var(--bg-primary);
	color: var(--text-primary);
	font-size: 16px;
	border-radius: 10px;
	transition: all 0.3s ease;
	resize: vertical;
	font-family: "Rubik", sans-serif;
}

.textarea-cu:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--shadow);
}

.formfield::placeholder,
.textarea-cu::placeholder{
	color: var(--text-secondary);
	opacity: 0.7;
}

.formbutton{
	width: 100%; 
	float: left;
	height: 55px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: var(--accent);
	color: var(--bg-primary);
	cursor: pointer;
	outline: 0 !important;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px var(--shadow);
}

.formbutton:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px var(--shadow-hover);
}

footer{
	background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
	color: var(--text-primary);
	text-align: center;
	padding: 60px 0 40px;
	border-top: 2px solid var(--accent);
}

footer .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 30px;
}

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

.ssl-img{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.icon-style{
	background: var(--bg-secondary);
	width: 140px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 10px;
	border: 2px solid var(--border);
	transition: all 0.3s ease;
}

.icon-style:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px var(--shadow);
}

.icon-style img{
	width: 100%;
	height: auto;
	object-fit: contain;
}

.left{
	text-align: left;
}

.footerlinks a{
	font-size: 16px;
	color: var(--text-secondary);
	margin: 0;
	padding: 8px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.footerlinks a:hover{
	color: var(--accent) !important;
	background-color: var(--bg-secondary);
	text-decoration: none !important;
}

.copyrights{
	font-size: 14px;
	color: var(--text-secondary);
	margin-top: 20px;
}

.text-white{
	font-size: 16px;
	margin: 0 0 15px !important;
	color: var(--text-primary) !important;
}

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

.cookiesection h2{
	font-size: 32px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 20px;
}

.cookiesection p{
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-secondary);
}

.cookiesection p strong{
	font-weight: 600;
	color: var(--text-primary);
}

.cookiesection p .bolder{
	display: block;
	margin: 30px 0 15px;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	color: var(--accent);
}

.backbutton{
	float: left;
	display: inline-flex;
	align-items: center;
	margin: 30px 0 30px;
	padding: 12px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent) !important;
	border: 2px solid var(--accent);
	background: transparent;
	transition: all 0.3s ease;
}

.backbutton:hover{
	background: var(--accent);
	color: var(--bg-primary) !important;
	transform: translateX(-5px);
}

.backbutton img{
	width: 18px;
	margin: 0 8px 0 0;
	transition: all 0.3s ease;
}

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

.alert {
	background: rgba(26, 26, 26, 0.95) !important;
	backdrop-filter: blur(10px);
	color: var(--text-primary) !important;
	position: fixed !important;
	bottom: 20px;
	margin-bottom: 0 !important;
	left: 20px;
	max-width: 400px;
	text-align: left;
	width: auto;
	margin: auto;
	display: none;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px 25px;
	border-radius: 15px;
	border: 2px solid var(--accent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
	z-index: 9998;
}

.alert.show {
	display: flex;
}

.alert-dismissible {
	z-index: 9999;
}

.alert-close {
	border: 2px solid var(--accent);
	border-radius: 8px;
	background: var(--accent);
	color: var(--bg-primary);
	padding: 8px 20px !important;
	font-size: 14px;
	font-weight: 600;
	font-family: "Oswald", sans-serif;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-left: 15px;
}

.alert-close:hover {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: scale(1.05);
}

.hide {
	display: none !important;
}

.alert p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.alert p a {
	color: var(--accent) !important;
	text-decoration: underline !important;
}

.alert p a:hover {
	color: var(--accent-hover) !important;
}

.agebtn{
  width: auto;
  height: 56px;
  border-radius: 10px;
  padding: 0 65px 0 20px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg-primary) !important;
  position: relative;
  font: 600 18px "Oswald", sans-serif;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--accent);
}

.agebtn:before{
  content: '';
  width: 45px;
  height: 100%;
  background: var(--bg-primary);
  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(0, 212, 255, 0);
    border-left-color: var(--bg-primary);
    border-width: 12px;
    margin-top: -15px;
}

.agebtn:hover{ 
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	transform: translateY(-2px);
}

.modal-open .modal { 
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

#popupModal {
	display: none !important;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
	z-index: 10000 !important;
}

#popupModal.show {
	display: block !important;
}

.modal-custom{
  padding: 40px;
  max-width: 600px !important;
}

.modal-content h3{
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Oswald", sans-serif;
    text-shadow: 0 0 20px var(--shadow);
}

.age-icon {
    font-size: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--shadow));
}

.age-text {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.age-buttons {
    gap: 15px;
    margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.age-btn {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex: 1 1;
    min-width: 200px;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    transition: all 0.3s ease;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yes-btn {
    background: var(--accent);
    color: var(--bg-primary);
	border: 2px solid var(--accent);
	box-shadow: 0 5px 20px var(--shadow);
}

.yes-btn:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 10px 30px var(--shadow-hover);
	color: var(--bg-primary);
}

.no-btn {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
}

.no-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.age-disclaimer {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.modal-content{
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); 
	border-radius: 20px;
	backdrop-filter: blur(10px); 
    border: 2px solid var(--accent); 
	padding: 40px; 
	color: var(--text-primary);
	text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--shadow);
}

.modal-content h2{ 
	font: 600 28px "Oswald", sans-serif;
	color: var(--accent);
}

.modal-content h2 span{ 
	font-size: 18px; 
	font-weight: 400; 
	display: block; 
	margin: 10px 0 0;
	color: var(--text-secondary);
}

@media (max-width: 991px) {
	.navbar {
		display: none;
	}

	.banner .container {
		margin-top: 0;
		padding: 40px 20px;
	}

	.nav {
		display: block;
	}

	.logo {
		font-weight: 700;
		font-size: 20px;
		font-family: "Oswald", sans-serif;
		color: var(--text-primary);
	}

	.content {
		padding: 30px 20px;
	}

	.banner h1 {
		font-size: 32px;
	}

	.banner h5 {
		font-size: 14px;
	}
}

@media (max-width: 800px){
	.banner h1{
		font-size: 28px;
	}
	
	.h2{
		font-size: 24px;
	}
	
	.para{
		font-size: 15px;
		line-height: 24px;
	}
	
	.flexbox{
		flex-direction: column;
		gap: 30px;
	}
	
	.flexbox > img{
		max-width: 100%; 
		order: 1; 
		margin: 0 0 20px;
	}
	
	.flexbody, .flexbox > .para{
		padding: 0 !important; 
		order: 2;
	}
	
	footer .container{
		flex-direction: column; 
		align-items: center; 
		text-align: center;
		gap: 20px;
	}
	
	.flexgroupbox{
		width: 100%;
		margin: 0 0 20px;
		padding: 30px 20px;
	}
	
	.formfield{
		width: 100%;
	}
	
	.formbutton{
		width: 100%;
	}
	
	.img-size{
		width: 100%;
	}
	
	.footerlinks{
		justify-content: center;
		margin: 10px 0;
		gap: 10px;
	}
	
	.nav-icon img{
		width: 30px;
	}
	
	.flexbody{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		text-align: center;
	}
	
	.img{
		width: 100%;
	}
	
	.banner p{
		font-size: 14px;
		line-height: 22px;
	}
	
	.img-box{
		width: 100%;
		margin: 0 0 20px;
	}
	
	.video{
		width: 100%;
	}
	
	iframe{
		height: 400px;
	}
	
	.center{
		margin: 0;
	}
	
	.modal-custom{
		padding: 20px;
	}
	
	.banner .container{
		min-height: 300px;
	}
	
	.alert{
		left: 10px;
		right: 10px;
		width: auto;
		bottom: 10px;
		max-width: none;
	}
	
	.banner{
		margin-top: 64px;
		padding-bottom: 40px;
	}
	
	.p-b{
		padding-bottom: 40px;
	}

	.section {
		padding: 40px 0;
	}

	.content {
		padding: 25px 20px;
	}

	.modal-content {
		padding: 30px 20px;
	}

	.age-btn {
		min-width: 100%;
		margin-bottom: 10px;
	}
}
