
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&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; 
}

*{
	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: "Raleway", serif;
	font-weight:400;
	font-style: normal;
	background:  url(../img/bg.jpg) center;
	background-attachment: fixed;
	color: #fff;
}
h1,h2,h3,h4,h5,h6{
	font-family: "Metal Mania", serif;
	font-weight: 700;
}


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

    /* top logo section */
    .top-bar {
      background: transparent; /* light yellow */
      padding: 15px 0;
    }

    .logo {
      font-size: 32px;
      font-weight: 900;
      color: rgb(255, 255, 255);
	  font-family: "Metal Mania", serif;
    }

    /* menu bar */
    .menu-bar {
      background: #0097e3; /* dark green */
      position: relative;
	  padding: 10px !important;
	  display: none;
    }

    /* hamburger */
    .menu-toggle {
      width: 35px;
      height: 25px;
      margin: auto;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .menu-toggle span {
      height: 4px;
      width: 100%;
      background: white;
      border-radius: 2px;
      transition: 0.4s;
    }

    /* hamburger active -> cross */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* nav hidden */
    nav {
      background: #0097e3;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    nav.open {
      max-height: 350px;
    }

    nav ul {
      list-style: none;
      padding: 7px;
      margin: 0;
    }

    nav ul li {
      border-top: 1px solid rgba(255,255,255,0.2);
    }

    nav ul li a {
      display: block;
      padding: 12px;
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    nav ul li a:hover {
      background: rgba(255,255,255,0.1);
    }
	nav .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	@media (min-width: 800px) {
		
      .menu-toggle {
        display: none;
      }

      nav {
        max-height: none;
      }

      nav ul {
        display: flex;
        justify-content: center;
      }

      nav ul li {
        border: none;
      }

      nav ul li a {
        padding: 15px 20px;
      }

    }
.btn-cu {
 padding: 10px 50px;
 border: 2px dashed #000;
 border-radius: 10em;
 background: #0097e3;
 font-size: 17px;
 color: #ffffff;
 font-family: inherit;
 font-weight: 500;
 float: left;
}

.btn-cu:hover {
 animation: shake3856 0.3s linear infinite both;
 background-color: #fff;
 color: #0097e3;
}

@keyframes shake3856 {
 0% {
  -webkit-transform: translate(0);
  transform: translate(0);
 }

 20% {
  -webkit-transform: translate(-2px, 2px);
  transform: translate(-2px, 2px);
 }

 40% {
  -webkit-transform: translate(-2px, -2px);
  transform: translate(-2px, -2px);
 }

 60% {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
 }

 80% {
  -webkit-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
 }

 100% {
  -webkit-transform: translate(0);
  transform: translate(0);
 }
}

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

.banner{
	background: radial-gradient(#0097e3 5%, #000000 60%);
	padding: 20px 0;
	border-bottom: 2px dashed #0097e3;
}
.banner .container{
	min-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	color: #fff;
}
.inner-banner .container{
	min-height: 250px;
}
.banner h1{font-size:40px; font-weight:800; margin:0 0 10px;}
.banner p{font-size:15px; line-height:24px;}

.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:50%;}
.section1{
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../img/img-1.jpg) center;
	color: #fff;
	background-attachment: fixed;
	padding: 40px 0;
}
.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: center;
	flex-wrap: wrap;
	gap: 5px;
}
.flexgroupbox{
	width:33%;
	padding:15px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	border: 2px dashed #000000;
	background-color: #0097e3;
	border-radius: 10px;
	margin: 0 0 20px;
}
.flexgroupbox img{
	width: 100%;
	float:left;
	height: 100%;
	border-radius: 10px;
	border: 2px dashed #fff;
}
.flexgroupbox h4{
	font-size:25px;
}
.ul{
	font-size: 14px;
}
.box2{
	width: 49%;
	justify-content: center;
}
.box3{
	padding: 0;
	background-color: transparent;
	border: none;
}
.group{
	justify-content: space-between;
}
.box4{
	width: 16%;
	background-color: #ffffff;
	text-align: center;
	align-items: center;
	box-shadow: rgba(0, 0, 0, .1) 2px 2px 2px 2px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	border: 5px solid #ffffff;
	justify-content: flex-start;
	position: relative;
	color: #000;
	margin: 0 0 50px;

}
.box4:after{
	content: '';
	position: absolute;
	width: 203px;
    background-color: #0097e3;
    height: 50%;
    top: -23px;
    left: -5px;
	z-index: -2;
	border-top-left-radius: 200px;
	border-top-right-radius: 200px;
}
.box4::before{
	content: '';
	position: absolute;
	width: 203px;
    background-color: #f78604;
    height: 50%;
    bottom: -23px;
    left: -5px;
	z-index: -2;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
}
.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:14px;
	line-height:1.5;
}

.formbox{
	width: 100%; float: left;
	max-width:800px;
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #000;
	color: #000;
	font-size: 15px;
}
.form-w{
	width: 100% !important;
}
.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;
}
.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 10px;
	border: none;
	background: #f3f3f3;
	border: solid 1px #000;
	color: #000;
	font-size: 15px;
}

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

.formbutton {
	width: 49%;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: none;
	background: #eb4b43;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}
footer{
	background: #0097e3;
	padding:30px 0;
}
footer .container{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: 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: 90px;
}
iframe{
	width: 100%;
	height: 300px;
	margin: 0 0 20px;
}
.footerlinks a{
	font-size:14px;
	color: #ffffff;
	margin:0 6px;
}
.footerlinks a:hover{
	text-decoration: underline!important;
}
.copyrights{
	font-size:14px;
	color: #ffffff;
}
.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: 0px;
	margin-bottom: 0 !important;
	left: 0;
	border-radius: 0;
	text-align: center;
	width: 25%;
	margin: auto;
	padding: 20px 30px !important;
	display: flex;
	justify-content: center;
	border-radius: 10px !important;
	flex-wrap: wrap;
	align-items: center;
}
.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;
}

.hide {
	display: none;
}
.alert-close {
	padding: 0px 9px;
	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: #3ea810;
    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:#49c214;
  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:#50cb19;}
.modal-open .modal { background: #000;}
.modal-custom{
  padding: 80px;
  max-width: 780px !important;
}
.modal-content h3{
    color: #0097e3;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #0097e3, 0 0 20px #ffd7004d, 0 0 30px #ffd7001a;
}
.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.age-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.age-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.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, #1666BA, #0097e3);
    color: #ffffff;
}
.no-btn {
    background: #ffffff1a;
    border: 1px solid #0097e3;
    color: #fff;
}
.age-disclaimer {
    color: #9e9e9e;
    font-size: .9rem;
    line-height: 1.5;
}
.modal-content{background: radial-gradient(#0097e3 5%, #000000 60%); border-radius: 12px;backdrop-filter: blur(10px); 
    border: 2px solid #0097e3; padding:20px 30px 40px; color: #fff;text-align: center;
    box-shadow: 0 0 10px #0097e3, 0 0 20px #0097e3, 0 0 30px #ffd7001a;}
.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 #1666BA, 0 0 20px #0097e3, 0 0 30px #ffd7001a;
    transform: translateY(-2px);
}
.no-btn:hover {
    background: #fff3;
}
.modal-custom{ padding: 50px !important;}
@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 10px;
	}
	.formfield{
		width: 100%;
	}
	.formbutton{
		width: 100%;
	}
	.footerlinks{
		justify-content: center;
		flex-direction: column;
		gap: 10px;
		margin: 10px 0;}
		.alert{
			width: 100%;
		}
	header .container{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.logo{
		font-size: 25px;
		margin: 0 0 10px;
	}
	.content img{
		width: 100%;
	}
	.footer-style{
		flex-direction: column;
	}
	.btn-cu{
		display: flex;
		align-items: center;
		text-align: center;
	}
	iframe{
		height: 200px;
	}
	.menu-bar{
			display: block;
		}
	.alert p{
		font-size: 12px;
	}
	.age-buttons{
		flex-direction: column;
	}
	.modal-content{
		padding: 10px;
	}
	.box4:after, .box4::before {
    width: 295px;
    left: -1px;
	}
	.box4{
		margin: 0 0 40px;
	}
	.video{
		height: 190px;
	}
	nav.open{
			padding-bottom: 20px !important;
		}
	.inner-banner .container{
		min-height: 150px;
	}
}