@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&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: "Open Sans", serif;
	font-weight: 400;
	font-style: normal;
}

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


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: #1f2937;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
}

.logo {
	font-size: 30px;
	color: #fff;
}

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

nav {
	position: absolute !important;
	top: 0 !important;
	width: 100%;
	float: left;
	left: 0;
	z-index: +5;
}

.navbar {
	background: #b52335 !important;
	padding: 5px;
	margin: 0 !important;
}

.navbar-toggler {
	border: none !important;
}

.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: #b52335;
	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: #fff;
	text-decoration: none;
	display: block;
	margin: 0 0 6px;
	font-size: 14px;
}

.navbar-expand-lg .navbar-nav {
	align-items: center;
}

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

.dropdown a span {
	font-size: 10px;
	margin-left: 4px;
}

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

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

.nav-link {
	color: #fff !important;
	font-weight: 400;
	background-color: transparent;
	padding: 10px;
	border-radius: 5px;
	transition: 0.5s;
	font-size: 15px;
	display: flex;
	align-items: center;
}

.nav-link:hover {
	transform: scale(1.03);
	background-color: #000;
}

.navbar-nav {
	justify-content: flex-end !important;
	width: 100%;

}

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

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

.navbar-brand {
	font-family: "Righteous";
	color: #fff !important;
	font-size: 30px;
}

.navbar-brand {
	height: auto !important;
}

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

.color {
	color: #b52335;
}

.section1{
	background-color: #b52335;
	color: #fff;
}

.banner {
	background: linear-gradient(rgba(0, 0, 0, 0.5)), url(../img/banner.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	padding: 20px 0;
	margin-top: 65px;
	position: relative;
	color: #fff;
}

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

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

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

.heading {
	font-size: 40px;
	text-align: left;
}

.rot-img {
	width: 25%;
	float: left;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.rot-img img {
	width: 49%;
	position: relative;
}

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

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

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

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

.paracenter {
	text-align: center;
}

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

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

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

.flexgroup>a img {
	width: 165px;
	max-width: 100%;
	background: #fff;
	border: 1px solid #dfdfdf;
	padding: 10px;
}

.flexgroupbox {
	width: 32%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 15px;
	border: 1px #dfdfdf solid;
}
.flexgroupbox img{
	width: 150px;
	margin: 0 0 15px;
}
.flex {
	width: 100%;
	background: transparent;
	margin: 0 0 20px;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex-cus {
	width: 24%;
}

.flexgroupbox h4 {
	font-size: 20px;
	margin: 0 0 10px;
	background-color: #000;
	color: #fff;
	padding: 10px;
	border-radius: 10px;
	border-top: 2px solid #b52335;
}

.flex-custom {
	margin: 0;
	background-color: #1f2937;
}

.flex-custom h4 {
	margin: 0;
}

.content {
	background-color: rgba(0, 0, 0, 0.5);
	float: left;
	padding: 20px;
	text-align: center;
}

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

.group {
	justify-content: center;
	gap: 5px;
}

.box {
	width: 19%;
}

.box h4 {
	font-size: 17px;
}

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

.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: 49%;
	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 {
	color: #fff;
	text-align: center;
	padding: 20px 0;
	background-color: #b52335;
}

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

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

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

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

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

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

.f-logo {
	width: 120px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000000;
	padding: 10px;
}

.f-logo img {
	width: 80%;
}

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

.copyrights {
	font-size: 14px;
}

.text-white {
	font-size: 14px;
}

.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;
	right: 0;
	border-radius: 0;
	text-align: center;
	width: 100%;
	margin: auto;
	padding: 7px 30px !important;
	display: flex;
	justify-content: space-between;
	border-radius: 0px !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;
}
.section2{
	background: linear-gradient(rgba(0, 0, 0, 0.5)), url(../img/banner.jpg) center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
@media (max-width:800px) {

	.h2 {
		font-size: 20px;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

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

	.flexgroupbox img {
		margin: 0 20px 0 0;
	}

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

	.img-size {
		width: 100%;
	}

	.footerlinks {
		justify-content: center;
	}
}

.promo-section {
	display: flex;
	justify-content: center;
	background: #b52335;
	width: 32%;
	margin: 0 0 15px;
	align-items: center;
	flex-direction: column;
}

.promo-card {
	width: 100%;
	color: white;
	display: flex;
	padding: 15px;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}

.rating {
	background: #fff;
	color: #000;
	padding: 6px 14px;
	font-size: 14px;
	width: 100%;
	float: left;
}

.promo-top {
	width: 100%;
	text-align: center;
	border-left: 2px solid #b52335;
	border-right: 2px solid #b52335;
}

/* main */

.promo-main {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}

.promo-brand {
	background-color: #fff;
	width: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
}

.promo-brand img {
	width: 180px;
	max-width: 100%;
}

.promo-offer {
	font-size: 28px;
	font-weight: bold;
	color: #000;
	margin: 0 0 10px;
	background: #fff;
	padding: 10px;
	width: 100%;
	border-radius: 50px;
	text-align: center;
}

/* features */

.promo-features ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.promo-features li {
	margin: 8px 0;
	color: #cbd5e1;
}

.payments {
	background: #ffffff;
	padding: 5px;
	border-radius: 6px;
	margin-right: 6px;
	font-size: 13px;
	width: 300px;
	max-width: 100%;
}

.payments img {
	width: 100%;
}

.promo-btn {
	background: #b52335;
	padding: 14px 35px;
	border-radius: 30px;
	text-decoration: none;
	width: 300px;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin: 0 0 10px 0;
}

.promo-section .promo-btn {
	width: 100%;
}

.promo-btn:hover {
	background: #000;
}

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

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

.bg {
	background: none;
	color: #000;
}

@media (max-width:992px) {
	.show-desktop {
		display: none;
	}

	.show-mbl {
		display: block;
	}

	.banner h1 {
		margin: 0;
		font-size: 20px;
		width: 100%;
		text-align: center;
		float: left;
		padding: 5px;
	}

	.banner .container {
		min-height: auto;
		text-align: center;
	}

	.promo-section,
	.promo-card {
		width: 100%;
		flex-direction: column;
	}

	.footerlinks {
		flex-wrap: wrap;
	}

	.promo-offer {
		font-size: 19px;
	}
}