@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&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: "Barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.bg {
	background-color: #09103c;
	color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Oswald", sans-serif;
	font-weight: 800;
	text-shadow: 2px 2px 2px rgba(255, 0, 82, .9);
}


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


header {
	padding: 10px 0;
	background-color: #09103c;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
	z-index: 3;
	color: #ffffff;
}

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

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

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

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #09103c;
	min-width: 300px;
	padding: 10px;
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	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: 25px;
	background-color: #09103c;
	padding: 10px;
}

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

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

.logo {
	font-family: "Oswald", sans-serif;
	font-weight: 800;
	font-size: 30px;
	color: #ffffff;
}

/* Mobile */
@media (max-width: 991px) {
	.menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 220px;
		height: 100%;
		background: #09103c;
		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;
	}

	.logo {
		font-size: 25px;
		margin: 10px 0;
	}

	.menu-btn {
		display: flex;
	}

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

	.logo {
		font-size: 24px;
	}

}


.btn-cu {
	position: relative;
	transition: all 0.3s ease-in-out;
	padding-block: 0.5rem;
	padding-inline: 1.25rem;
	background-color: #09103c;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffff;
	gap: 10px;
	font-weight: bold;
	border: 3px solid #ffffff4d;
	outline: none;
	overflow: hidden;
	font-size: 15px;
	border-radius: 5px;
	width: 300px;
}

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

.icon {
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.btn-cu:hover {
	transform: scale(1.05);
	border-color: #fff9;
}

.btn-cu:hover .icon {
	transform: translate(4px);
}

.btn-cu:hover::before {
	animation: shine 1.5s ease-out infinite;
}

.btn-cu::before {
	content: "";
	position: absolute;
	width: 100px;
	height: 100%;
	background-image: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 30%,
			rgba(255, 255, 255, 0.8),
			rgba(255, 255, 255, 0) 70%);
	top: 0;
	left: -100px;
	opacity: 0.6;
}

@keyframes shine {
	0% {
		left: -100px;
	}

	60% {
		left: 100%;
	}

	to {
		left: 100%;
	}
}

small {
	font-size: 12px;
}

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

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

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

.b-content {
	width: 600px;
	max-width: 100%;
	float: left;
}

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

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

.ul-ul {
	width: 100%;
	float: left;
	font-size: 14px;
	margin: 0 0 20px;
}

.ul-ul li {
	color: #000 !important;
	margin: 0 0 5px;
}

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

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

.h2,
h2 {
	font-size: 30px;
	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;
	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: 35%;
	animation: lab_zoominout 15s linear infinite;
}

@keyframes lab_zoominout {
	0% {
		transform: scale(0.85);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.85);
	}
}

.img {
	width: 25%;
}

.img img {
	width: 100%;
}

.section1 {
	background-color: #09103c;
	color: #fff;
}

.section2 {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 100%), url(../img/casino-img-3.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}

.section3 {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 100%), url(../img/casino-img-4.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}

.image {
	width: 50%;
}

.image img {
	width: 100%;
}

.carousel-wrapper {
	max-width: 1500px;
	margin: auto;
	overflow: hidden;
	position: relative;
}


.carousel {
	display: flex;
	gap: 20px;
	animation: scroll 12s linear infinite;
}


.card {
	flex: 0 0 calc(33.333% - 13px);
	/* 3 cards visible */
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.card-content {
	padding: 20px;
	text-align: center;
}


/* infinite animation */
@keyframes scroll {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}


@media(max-width:992px) {
	.card {
		flex: 0 0 50%
	}
}


@media(max-width:576px) {
	.card {
		flex: 0 0 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;
}

.ul {
	flex-direction: column;
	float: left;
}

.ul li {
	font-size: 14px;
	color: #fff;
	background: url(../img/check.png) no-repeat 0 5px;
	background-size: auto;
	background-size: 14px auto;
	list-style-type: none;
}

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

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

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

.flexgroupbox {
	width: 32%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
	background-color: #212c62;
	align-items: center;
	position: relative;
	padding: 15px;
	margin: 0 0 20px;
	color: #fff;
	transition: 0.3s all linear;
}

.flexgroupbox:hover {
	transform: translateY(10px);
}

.flexgroupbox:after {
	content: "";
	width: 95%;
	height: 95%;
	border: 1px solid rgba(255, 255, 255, .04);
	bottom: -12px;
	left: 50%;
	position: absolute;
	z-index: -1;
	transform: translateX(-50%);
	transition: all .2s ease;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .1);
}

.flexgroupbox:hover::before {
	opacity: 0;
	bottom: 0;
	visibility: hidden;
}

.flexgroupbox::before {
	content: "";
	width: 90%;
	height: 90%;
	border: 1px solid rgba(255, 255, 255, .04);
	bottom: -22px;
	left: 50%;
	z-index: -2;
	position: absolute;
	transform: translateX(-50%);
	transition: all .2s ease;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .1);
}

.flexgroupbox:hover::after {
	opacity: 0;
	bottom: 0;
	visibility: hidden;
}

.m-top {
	margin-top: 100px;
}

.flexgroupbox img {
	width: 80%;
	height: 200px;
	object-fit: cover;
	margin: -100px 0 15px;
}

.box1 {
	width: 49%img;
}

.content {
	color: #000000;
	padding: 15px;
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

h4 {
	font-size: 26px;
	margin: 0 0 15px;
}


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

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

.formbox {
	width: 100%;
	float: left;
	max-width: 800px;
	background: #fff;
	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: #212c62;
	color: #fff;
	cursor: pointer;
	outline: 0 !important;
}

footer {
	background-color: #09103c;
	text-align: center;
	padding: 20px 0;
	color: #ffffff;
}

.flexgroup a img {
	width: 130px;
	margin-left: 30px;
}

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

.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 {
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	min-height: 50px;
	max-height: 50px;
}

.f-logo img {
	width: 100%;
	height: 100%;
}

.f-logo:hover {
	background-color: #130488;
	border-radius: 5px;
}

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

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

.ssl-img img {
	width: 50px;
	margin-left: 10px;
}

.social-icon {
	display: flex;
	gap: 5px;
	margin-left: 20px;
}

.social-icon img {
	width: 100%;
	max-width: 30px;
}

.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: 12px;
	margin: 0 0 10px !important;
}

.thumbListingGroup {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	float: left;
	width: 100%;
	margin: 10px 0 0 0;
}

.thumbListing {
	display: flex;
	align-items: center;
	font-size: 18px;
	padding: 15px;
	border-radius: 10px;
	width: 100%;
	max-width: 32%;
	position: relative;
	margin: 20px 0 20px 0;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

footer .para {
	font-size: 15px;
	margin: 0;
}

#year {
	font-weight: 400;
}

.thumbListing img {
	width: 70%;
	float: left;
	margin: 0 0 20px;
}

.thumbListing strong {
	font-weight: 500;
	font-size: 20px;
	display: block;
	margin: 0 0 10px;
}

.thumbListing1 {
	background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/format-img1.jpg) center !important;
	background-size: cover !important;
	padding: 40px 20px;
	color: #fff !important;
}

.thumbListing2 {
	background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/format-img2.jpg) center !important;
	background-size: cover !important;
	padding: 40px 20px;
	color: #fff !important;
}

.thumbListingcustom .thumbListingContent,
.thumbListingcustom .thumbListingContent strong {
	text-align: center;
	color: #fff;
}


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

.imgP img {
	width: 250px;
	margin: 0 50px 0 0;
}

.defaultPad {
	padding: 0 110px;
}

/*** slider ***/

.sliderBox {
	width: 100%;
	float: left;
}

.items {
	width: 100%;
}

.sliderBox .slick-track {
	display: flex;
	align-items: stretch;
}

.sliderBox .slick-dots li button {
	width: 20px;
	height: 20px;
	background: #3f5564;
	border-radius: 20px;
}

.sliderBox .slick-dots li.slick-active button {
	background: #FF5252;
}

.sliderBox .slick-dots li button:before {
	display: none;
}

.sliderBox .slick-prev,
.sliderBox .slick-next {
	display: none !important;
}

.itemBox {
	height: auto !important;
	background: #212c62;
	border-radius: 12px;
	margin: 20px;
	margin-top: 100px;
}

.itemBox img {
	width: 80%;
	margin: 0 auto;
	margin-top: -100px;
	height: 200px;
	object-fit: cover;
	border-radius: 20px;
}

.itemBox h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	margin: 10px 0 20px;
}

.itemBox p {
	font-size: 15px;
	line-height: 22px;
	color: #ffff;
	padding: 0 20px 25px;
}

.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: 20%;
	margin: auto;
	padding: 15px !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: 12px;
}

.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-cu {
	width: 49%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	background: #fff;
	margin: 0 0 20px;
	color: #000000;
	flex-wrap: wrap;
	position: relative;
	border-radius: 10px;
	background-color: #232a5c;
	transition: .3s all;
}

.table-cu:hover {
	transform: translateY(10px);
}

.table-cu:after {
	content: "";
	width: 95%;
	height: 95%;
	border: 1px solid rgba(255, 255, 255, .04);
	bottom: -12px;
	left: 50%;
	position: absolute;
	z-index: -1;
	transform: translateX(-50%);
	transition: all .2s ease;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .1);
}

.table-cu:hover::before {
	opacity: 0;
	bottom: 0;
	visibility: hidden;
}

.table-cu::before {
	content: "";
	width: 90%;
	height: 90%;
	border: 1px solid rgba(255, 255, 255, .04);
	bottom: -22px;
	left: 50%;
	z-index: -2;
	position: absolute;
	transform: translateX(-50%);
	transition: all .2s ease;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .1);
}

.table-cu:hover::after {
	opacity: 0;
	bottom: 0;
	visibility: hidden;
}

.title {
	width: auto;
}

.title h3 {
	margin: 0;
}

.table-inner {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rating {
	color: #fff;
	background-color: #092d41;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	text-align: center;
	float: left;
	width: 100%;
	margin: 0 0 15px;
}

.rating img {
	width: 100px;
	margin: 0 10px;
}

.rating .para {
	font-weight: bold;
	margin: 0;
	font-size: 25px;
	width: auto;
}

.rating h2 {
	font-size: 20px;
}

.small {
	font-size: 12px;
}

.table-logo {
	width: 180px;
	z-index: 3;
}

.table-logo img {
	width: 100%;
}

.flex {
	width: 100%;
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 0 0 10px;
	justify-content: space-between;
	background-color: #fff;
	padding: 10px;
}

.table-cu li {
	width: auto;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	color: #000b2e;
	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: 49%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 10px;
}

.btn-box img {
	width: 50%;
}

.num {
	background-color: #09103c;
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	font-weight: bold;
	z-index: 3;
	font-size: 25px;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
}

.show-mob {
	display: none;
}

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

tr {
	width: 100%;
}

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

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

td {
	font-size: 14px;
}

.contact-sec {
	margin-top: 130px;
}

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

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

.table-logo {
	width: auto;
	align-items: center;
	justify-content: center;
	display: flex;
}

.table-cu .ul {
	width: auto;
	padding-top: 20px;
}

.btn-box {
	width: 100%;
}

.accordion {
	width: 100%;
	margin: auto;
	overflow: hidden;
	font-weight: bold;
	float: left;
}

.accordion-item {
	border: none;
	background-color: transparent;
}

.accordion-title {
	background: #09103c !important;
	color: rgb(255, 255, 255);
	cursor: pointer;
	padding: 10px 20px;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	margin: 0 0 10px;
	border-radius: 5px;
	border: 1px solid transparent;
	border-radius: 5px;
	transition: 0.5s;
}

.accordion-title:hover {
	background: #09103c !important;
}

.accordion-title span {
	font-size: 24px;
	transition: transform 0.3s ease;
}

.accordion-title.active span {
	transform: rotate(45deg);
}

.accordion-content {
	color: #000;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding: 0 20px;
	text-align: left;
}

.accordion-content p {
	margin: 15px 0 !important;
	font-weight: 300;
}

.accordion-content.open {
	max-height: 250px;
	font-weight: 300;
}

.accordion a {
	color: #000;
}

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

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

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

	.flex-img {
		display: none;
	}

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

	.formbutton {
		width: 100%;
	}

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

	.flex {
		flex-direction: column;
	}

	h3 {
		font-size: 26px;
	}

	.table-cu {
		width: 100%;
	}

	.logo-cu {
		margin: 0;
	}

	h6 {
		color: #ffffff;
		margin: 0;
	}

	ul {
		padding-left: 0;
	}

	.footer-flex {
		gap: 5px;
	}

	.alert {
		width: 100%;
	}

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

	.show-desk {
		display: none;
	}

	.show-mob {
		display: block;
	}

	.head-box {
		display: none;
	}

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

	.banner {
		background: linear-gradient(rgba(0,0,0,0.7) 100%),url(../img/banner.jpg) center fixed;
		background-size: cover;
		text-align: center;
	}

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

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

	.rating {
		width: 100%;
		margin: 20px 0;
	}

	.flex {
		width: 100%;
	}

	.num {
		top: 20%;
	}

	.image {
		margin: 0 0 20px;
		width: 80%;
	}
}