@import url('https://fonts.googleapis.com/css2?family=Anton&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: #0203cd;

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

	--green: #76BA1B;
	--green-dark: #0203cd;
	--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: "Rubik", serif;
	font-weight: 400;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Anton", serif;
}


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


header {
	padding: 10px 0;
	background-color: transparent;
	position: fixed;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
	z-index: 3;
	color: #fff;
}

header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav {
	background: transparent;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	z-index: 1000;
	width: 100%;
	padding: 5px 0;
}

.header {
	background-color: #000;
	position: relative;
}

nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 38px;
	font-weight: bold;
	font-family: "Anton", serif;
	color: #ffffff;
}

.dropbtn {
	color: white;
	font-size: 16px;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
	line-height: 40px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #0203cd;
	min-width: 300px;
	padding: 10px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	text-decoration: none;
	display: block;
	margin: 0 0 6px;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}

.menu {
	display: flex;
	gap: 5px;
}

.menu a {
	cursor: pointer;
	border: 0;
	text-align: center;
	letter-spacing: 1.5px;
	font-size: 16px;
	transition: all 0.5s ease;
	color: #fff;
	margin: 8px 0 0 0px;
}

.menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 3;
}

.menu a span {
	font-size: 10px;
	margin-left: 4px;
	margin-bottom: 3px;
}

.menu-btn span {
	height: 3px;
	width: 100%;
	background: #ffffff;
	border-radius: 2px;
	transition: 0.4s;
}

/* Cross Icon Animation */
.menu-btn.open span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.open span:nth-child(2) {
	opacity: 0;
}

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

.footlnk {
	color: #fff;
	text-decoration: underline !important;
	font-weight: bold !important;
}

/* Mobile */
.menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 220px;
	height: 100%;
	background: #0203cd;
	flex-direction: column;
	padding-top: 70px;
	transition: 0.3s;
	margin-right: 0;
	padding-right: 10px;
	align-items: flex-start;
}

.dropdown-content {
	left: -100px;
}

.menu a {
	padding: 5px 20px;
	font-size: 14px;

}

.menu.active {
	right: 0;
}

.menu-btn {
	display: flex;
}


.para-cu {
	font-size: 14px;
	font-weight: 400;
}

.btn-cu {
	padding: 17px 40px;
	border-radius: 50px;
	cursor: pointer;
	border: 0;
	background-color: rgb(255, 255, 255);
	box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 15px;
	transition: all 0.5s ease;
	color: #000;
	float: left;
	border: 1px solid #0203cd;
}

.btn-cu:hover {
	background-color: #0203cd;
	color: hsl(0, 0%, 100%);
	box-shadow: rgb(3, 3, 3) 0px 7px 29px 0px;
	border: 1px solid #ffffff;
}

.btn-cu:active {
	letter-spacing: 3px;
	background-color: #0203cd;
	color: hsl(0, 0%, 100%);
	box-shadow: rgb(2, 2, 2) 0px 0px 0px 0px;
	transform: translateY(10px);
	transition: 100ms;
}

small {
	font-size: 12px;
	background-color: #75849d;
	padding: 10px;
	border-radius: 5px;
	border: 2px solid #fff;
}

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

.color {
	color: #91a1ba;
}

.banner {
	background: linear-gradient(rgba(0, 0, 0, 0.7) 100%), url(../img/hero-bg-image.jpg) center;
	padding: 100px 0 20px 0;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.inner-p {
	padding: 100px 0 140px 0;
}

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

.banner-cock-one {
	width: 100%;
	float: left;
	position: absolute;
	bottom: 0;
	left: 0;
}

.content {
	width: 1200px;
	max-width: 100%;
	float: left;
	display: flex;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	flex-direction: column;
	padding: 20px;
	background-color: #fff;
	margin-top: -120px;
	margin-bottom: -120px;
}

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

.banner h1 {
	font-size: 40px;
	margin: 0 0 10px;
}

.banner p {
	font-size: 15px;
	line-height: 24px;
	margin: 0 0 20px;
}

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

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

.left {
	background: linear-gradient(rgba(0, 0, 0, .4)), url(../img/bonuses-05.jpg) fixed center;
	background-size: cover;
	color: #fff;
	width: 100%;
	float: left;
	padding: 20px;
	border-radius: 20px;
}

.image {
	width: 100%;
	float: left;
	display: flex;
	justify-content: flex-end;
}

.image img {
	width: 30%;
	float: left;
	border-radius: 20px;
}

.h2 {
	font-size: 25px;
	margin: 0 0 15px;
}

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

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

.flexbox {
	display: flex;
	align-items: center;
	justify-content: 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: 45%;
}

.flexbody {
	text-align: left;
}

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

.inner-p2 {
	padding: 120px 0 120px 0;
}

.inner-p1 {
	padding: 120px 0 20px 0;
}

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

.flexgroup>a {
	width: 32%;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flexgroup>a img {
	width: auto;
	max-width: 100%;
}

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

.flexgroupbox {
	width: 49%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color: #000;
	color: #fff;
	background-color: transparent;
	transition-delay: 200ms;
	position: relative;
	background-color: #000;
	border-radius: 0 50% 0 50%;
}

.text {
	width: 100%;
	background-color: #0203cd;
	padding: 15px;
	border-radius: 50% 0 50% 0;
}

.flexgroupbox .para {
	position: relative;
	z-index: 3;
}

table {
	width: 100%;
	float: left;
	border: 1px solid #000;
	border-collapse: collapse;
	margin: 0 0 20px;
}

tr {
	width: 100%;
}

th,
td {
	border: 1px solid #000;
	padding: 10px;
}

th {
	font-weight: 600;
	font-size: 19px;
}

td {
	font-size: 14px;
}

.ul-list {
	width: 100%;
	list-style-type: circle;
	margin: 0;
}

.ul-list li {
	margin: 0 0 5px;
	font-size: 14px;
}

.flexgroupbox img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.box {
	width: 32%;
}

.box1 {
	text-align: left;
	align-items: flex-start;
	width: 18%;
}

.box2 {
	width: 23%;
	text-align: center;
}

.flexgroupbox>img {
	width: 100%;
	float: left;
	margin: 0 0 15px;
}


.center>img {
	width: auto;
	max-width: 100%;
}

.formsection {
	background: url(../img/img7.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
}

.formsection: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;
}

.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: 28px;
	line-height: 1.5;
}

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

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

.formfield2 {
	width: 100%;
}

.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 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: #0203cd;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	background-color: #0203cd;
	text-align: center;
	padding: 16px 0;
	color: #fff;
}

footer .para {
	font-weight: 100;
	font-size: 16px;
}

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

.f-logo {
	width: 110px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	padding: 10px;
	border-radius: 5px;
}

.f-logo img {
	width: 100%;
	object-fit: contain;
}

footer .container {
	display: flex;
	flex-direction: column;
}

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

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

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

.copyrights {
	font-size: 14px;
}


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

.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: 10px !important;
	display: flex;
	justify-content: center;
	border-radius: 0 !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;
}

/* table-start */

.table-cu {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	background: #0203cd;
	border-left: #0203cd 4px solid;
	box-shadow: 0 0 7px rgba(0, 0, 0, .4);
	color: #ffffff;
	flex-wrap: wrap;
	position: relative;
	border-radius: 50% 0 0;
}

.table-inner {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	padding: 15px;
	background-color: #000;
	justify-content: space-between;
	position: relative;
	border-radius: 0 0 50%;
	border-right: #FFF 4px solid;
}

.section2 {
	background: linear-gradient(rgba(0, 0, 0, 0.7) 100%), url(../img/hero-bg-image.jpg) center;
	background-size: cover;
	color: #fff;
}

.table-cu .btn-cu {
	width: 100%;
}

.rating {
	color: #ffffff;
	display: flex;
	width: 35%;
	align-items: center;
	justify-content: center;
	z-index: 3;
	flex-direction: column;
	text-align: center;
}

.rating img {
	width: 100px !important;
	margin: 5px 0;
}

.rating h5 {
	margin: 0;
	font-size: 25px;
	color: #fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	margin: 0 0 10px;
}

h4 {
	font-size: 20px;
	margin: 0 0 10px;
}

.small {
	font-size: 12px;
}

.table-logo {
	width: 15%;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	flex-direction: column;

}

.table-logo img {
	width: 160px;
}

.table-logo p {
	font-size: 13px;
	background-color: rgba(0, 0, 0, .6);
	padding: 5px 15px;
	border-radius: 30px;
}

h6 {
	font-size: 30px;
	line-height: 18px;
	color: #000000;
	text-align: center;
}

.ul li {
	margin: 0 0 5px;
}

.table-cu li {
	width: auto;
	font-size: 14px;
	display: flex;
	align-items: center;
	color: #ffffff;
	background: url(../img/tick.png) no-repeat 0 5px;
	background-size: auto;
	background-size: 14px auto;
}

.table-cu li:before {
	content: '';
	min-width: 12px;
	height: 22px;
	border-radius: 12px;
	/*background:#000c2f;
    border:solid 1px #000;*/
	margin: 0 10px 0 0;
}

.btn-box {
	width: 25%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 10px;
	color: #fff;
	z-index: 2;
}

.btn-box p {
	font-size: 12px;
}

.btn-box .para {
	margin: 0;
}

.btn2 {
	background-color: #000;
	border: 3px solid #fff;
	color: #FFF !important;
}

.table-cu .ul {
	font-size: 14px;
	margin: 0;
	padding-left: 0;
}

.list-style {
	width: 30%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	padding: 20px;
	z-index: 2;
}

.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: rgb(255, 255, 255);
	font-size: 2rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 10px #ffd70080, 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;
	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, #661806, #e90d0d);
	color: #ffffff;
}

.no-btn {
	background: #ffffff1a;
	border: 1px solid #ffd70033;
	color: #fff;
}

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

.modal-content {
	background: url(../img/img-4.jpg) center no-repeat;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 2px solid #953540;
	padding: 20px 30px 40px;
	color: #fff;
	text-align: center;
	box-shadow: 0 0 10px #953540, 0 0 20px #661806, 0 0 30px #862041;
}

.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 #ffd70080, 0 0 20px #ffd7004d, 0 0 30px #ffd7001a;
	transform: translateY(-2px);
}

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

.modal-custom {
	padding: 50px !important;
}

.pb-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 24px;
}

.pb-h1 {
	font-size: 34px;
	line-height: 1.15;
	margin: 0 0 10px;
}

.pb-lead {
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 18px;
	opacity: .9;
}

.pb-h2 {
	font-size: 18px;
	margin: 0 0 12px;
}

.pb-h3 {
	font-size: 15px;
	margin: 0 0 8px;
	opacity: .95;
}

.pb-contact__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1.2fr .8fr;
}

@media (max-width: 900px) {
	.pb-contact__grid {
		grid-template-columns: 1fr;
	}
}

.pb-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 14px;
	padding: 16px;
}

.pb-card--soft {
	background: rgba(0, 0, 0, .02);
}

.pb-form {
	margin-top: 6px;
}

.pb-row {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
	.pb-row {
		grid-template-columns: 1fr;
	}
}

.pb-field {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
}

.pb-field label {
	font-size: 13px;
	opacity: .85;
}

.pb-field input,
.pb-field select,
.pb-field textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, .14);
	border-radius: 10px;
	padding: 10px 11px;
	font-size: 14px;
	background: #fff;
	outline: none;
}

.pb-field textarea {
	resize: vertical;
	min-height: 140px;
}

.pb-actions {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.pb-btn {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 11px 14px;
	font-weight: 600;
	cursor: pointer;
	background: #111;
	color: #fff;
}

.pb-btn:hover {
	opacity: .92;
}

.pb-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	opacity: .8;
}

.pb-note a {
	color: inherit;
	text-decoration: underline;
}

.pb-list {
	margin: 0;
	padding-left: 18px;
}

.pb-list li {
	margin: 6px 0;
	opacity: .92;
}

.pb-meta {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	opacity: .9;
}

.pb-footnote {
	margin: 10px 0 0;
	font-size: 12px;
	opacity: .8;
}

.pb-hr {
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, .08);
	margin: 14px 0;
}

/* Honeypot hidden from real users */
.pb-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.pb-success {
	margin-top: 14px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, .12);
	background: rgba(0, 0, 0, .02);
	font-size: 13px;
}

@media (max-width:800px) {
	.h2 {
		font-size: 20px;
	}

	.banner h1,
	.banner .para {
		text-align: center;
		width: 100%;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

	.alert {
		width: 100%;
	}

	.age-buttons {
		flex-direction: column;
	}

	.alert p {
		font-size: 12px;
	}

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

	.flex-img {
		width: 100%;
		margin: 0 0 15px;
	}

	.banner .flexbox>img {
		display: none;
	}

	.box {
		width: 100%;
	}

	.content {
		width: 100% !important;
	}

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

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

	.flexgroupbox {
		width: 100%;
	}

	.formfield {
		width: 100%;
	}

	.rating {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.table-cu .ul {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.table-cu .btn-cu {
		width: 100%;
	}

	.table-cu::after,
	.table-cu::before {
		width: 80%;
	}

	.table-inner {
		flex-direction: column;
	}

	.table-logo,
	.table-cu h2,
	.btn-box {
		width: 100%;
	}

	.table-cu h2 {
		margin: 20px 0;
	}

	.list-style {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		padding: 20px 0;

	}

	.footerlinks {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}

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

	.btn-cu {
		padding: 17px 25px;
	}

	.table-cu {
		width: 100%;
	}
}