@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');
@font-face {
	font-family: myfont;
	src: url(../img/futura-pt.ttf);
}
: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: "myfont", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #e9ecef;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}


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

.logo {
	color: #fff;
	font-family: "Poppins", sans-serif;
	margin: 0 0 15px;
}

.logo img {
	width: 200px;
}

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

header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	font-size: 30px;
	font-weight: 800;
	background-color: #000;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}

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

.navbar {
	background-color: transparent;
	position: absolute !important;
}

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

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

.nav-container {
	max-width: 1300px;
	width: 100%;
	margin: auto;
	display: flex;
}

.nav-link {
	color: #fff;
}

.nav-link:hover {
	color: #b3ddfa !important;
}

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

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

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

.navbar-brand img {
	width: 200px;
}

.show-none {
	display: none;
	align-items: center;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.nav-links a {
	margin: 20px;
	color: #fff;
	font-size: 14px;
	text-align: center;
}

.nav-links a:hover {
	text-decoration: underline !important;
	color: #fff;
}

.navbar-brand {
	font-size: 24px;
	font-family: "Black Ops One", system-ui;
	color: #fff !important;
	font-weight: 700;
}

.navbar-brand span {
	color: #ffd700;
	font-weight: 700;
}

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

.icn-holder {
	width: 100%;
	float: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-size: 17px;
	color: #fff;
	font-weight: 400;
	margin: 0 0 20px;
	position: relative;
	z-index: 2;
}

.icn-holder i {
	margin-right: 10px;
	color: #ffd700;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

form {
	width: 50%;
	float: left;
}

.h2 i {
	font-size: 27px;
}

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

.banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #218ec9;
	opacity: 0.7;
	z-index: 1;
	width: 100%;
	float: left;
	height: 100%;
}

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

.h-low .container {
	min-height: 200px;
}

.banner svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 80px;
	transform: rotateY(180deg);
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	fill: #e9ecef;
	overflow: hidden;
	z-index: 2;
}

.banner h1 {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 10px;
	position: relative;
	z-index: 2;
}

.banner p {
	font-size: 17px;
	line-height: 24px;
	position: relative;
	z-index: 2;
	margin: 0 0 20px;
}

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

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

.h2 {
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 15px;
}

.para {
	font-size: 16px;
	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: 25%;
}

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

.section2 {
	background-color: #218ec9;
	color: #fff;
}

.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;
	gap: 10px 1%;
	flex-wrap: wrap;
}

.flexgroupbox {
	width: 32%;
	padding: 15px;
	background: #fff;
	margin: 0 0 20px;
	text-align: left;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	border-radius: 10px;

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

.box1 {
	width: 49%;
}

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

.flex-u {
	width: 32%;
	padding: 60px 0 0 0;
	background: #fff;
	margin: 0 0 20px;
	border-radius: 10px;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	overflow: hidden;
}

.flex-u .para {
	color: #000;
}

.btn-cu {
	min-width: 170px;
	min-height: 54px;
	padding: 0 15px;
	border-radius: 300px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff !important;
	font: 800 18px 'Poppins', sans-serif;
	background: rgb(19, 132, 193);
	background: linear-gradient(0deg, rgba(19, 132, 193, 1) 0%, rgba(20, 182, 229, 1) 100%);
	transition: all 0s ease;
	border: none;
	outline: 0;
	cursor: pointer;
}

.btn-cu:hover {
	background: none;
	color: #1384C1 !important;
	box-shadow: inset 0 0 0 3px #1384C1 !important;
}

.flex-u:nth-child(1) {
	background: url(../img/img-1.jpg);
	background-size: cover;
}

.flexbody {
	text-align: left;
}

.flex-u:nth-child(2) {
	background: url(../img/img-2.jpg);
	background-size: cover;
}

.flex-u:nth-child(3) {
	background: url(../img/img-3.jpg);
	background-size: cover;
}

.flex-u:nth-child(4) {
	background: url(../img/img-4.jpg);
	background-size: cover;
}

.flex-u:nth-child(5) {
	background: url(../img/img-5.jpg);
	background-size: cover;
}

.flex-u:nth-child(6) {
	background: url(../img/img-6.jpg);
	background-size: cover;
}

.flexgroupbox h4 {
	background-color: #218ec9;
	color: #fff;
	padding: 10px;
	margin: 0 0 15px;
	width: 100%;
	float: left;
	text-align: center;
}
.book-img{
	width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid #218ec9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px;
}
.book-img img{
	width: 100%;	
}
.content {
	width: 100%;
	float: left;
	padding: 15px;
	background: rgba(255, 255, 255, 0.6)
}

.s-f {
	font-size: 14px;
}

.flexgroupbox .i {
	font-size: 3rem;
	color: #000;
	margin-bottom: 20px;
}

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

.img img {
	width: 70px;
}

.flex-cu {
	width: 100%;
	border: 20px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px var(--shadow-color);
	float: left;
	display: flex;
	margin: 0 0 20px;
}

.flex-cu>img {
	width: 15%;
	object-fit: cover;
	margin-right: 30px;
}

.flex-cus {
	width: 49%;
	padding: 15px;
	background: #fff;
	margin: 0 0 20px;
	border-radius: 5px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: hidden;
}

.list-group {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	width: 100%;
	float: left;
}

.list-group-item {
	position: relative;
	display: block;
	padding: 1rem 0;
	color: #212529;
	text-decoration: none;
	border: 1px solid #dee2e6;
}

.text-primary {
	color: #ffd700 !important;
}

.card-cu {
	width: 100%;
	float: left;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	margin: 0 0 20px;
}

.d-flex {
	display: flex !important;
}

.section1 {
	background-color: #fff;
}

.contract {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	padding: 20px 0;
}

.newcontact {
	justify-content: flex-start;
	gap: 1%;
}

.card-title {
	color: #218ec9;
}

.text-muted {
	width: 100%;
	float: left;
	font-size: .875em;
	color: rgba(33, 37, 41, 0.75);
}

.flex-custom {
	width: 32%;
	background-color: #fff;
	color: #000;
	transform: none;
	text-align: center;
}

h6 {
	width: 100%;
	float: left;
	color: #218ec9;
	font-size: 18px;
	font-weight: 500;
}

.span {
	color: #6c757d;
	font-weight: 500;
}

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

.flexgroupbox h4 {
	font-size: 20px;
}


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

.new {
	align-items: center;
}

.formbox {
	width: 100%;
	float: left;
	max-width: 400px;
	background: #fff;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-radius: 10px;
}

.formfield {
	width: 100%;
	height: 50px;
	margin: 0 0 10px;
	padding: 0 10px;
	border: none;
	background: transparent;
	border: solid 1px rgba(0, 0, 0, .5);
	color: #000;
	font-size: 15px;
}

.textarea-cu {
	width: 100%;
	height: 100px;
	margin: 0 0 10px;
	padding: 10px;
	border: none;
	background: transparent;
	border: solid 1px #333;
	color: #000;
	font-size: 15px;
}

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

.contact-sec {
	width: 40%;
	float: left;
	background-color: #fff;
	color: #000;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.formbutton {
	width: 200px;
	float: left;
	height: 50px;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	justify-content: center;
	text-align: center;
	border: none;
	background: #218ec9;
	color: #fff;
	cursor: pointer;
	text-align: center;
	outline: 0 !important;
}

.footer-flex {
	width: 32%;
	background: transparent;
	margin: 0 0 20px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	padding: 10px;
}

.footer-flex:first-child {
	border-right: 2px solid #fff;
}

.footer-flex:last-child {
	justify-content: space-between;
	align-items: flex-end;
	text-align: right;
}

.footer-flex .para img {
	width: 30px;
}

h5 {
	color: #ffd700;
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0 0 20px;
}

.footer-flex .para {
	color: #fff;
}

.footer-flex a {
	font-size: 16px;
	color: #fff;
	margin: 0 0 10px;
}

footer {
	background: #218ec9;
	text-align: center;
	padding: 20px 0;
}

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

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

.ssl-img img {
	width: 90px;
}

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

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

.copyrights {
	font-size: 14px;
	color: #fff;
	padding-top: 20px;
	border-top: 1px solid #fff;
	width: 100%;
	float: left;
	text-align: center;
}

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

.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;
}
.clr{
	color: #218ec9;
}
.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;
}

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

.accordion-button:not(.collapsed) {
	color: #000;
	background-color: #e9ecf0;
}

.accordion-body {
	background: #f8f9fa;
}

.accordion-button {
	background-color: #e9ecf0;
}

.formnew {
	width: auto !important;
}

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

	.h2 {
		font-size: 20px;
	}

	.para {
		font-size: 14px;
	}

	.flexbox {
		flex-direction: column;
	}

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

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

	.footer-flex:nth-child(2) {
		border-right: 1px solid #fff;
	}

	.footer-flex:nth-child(2),
	.footer-flex:last-child {
		width: 49%;
		align-items: flex-start !important;
		text-align: left !important;
	}

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

	.flexgroupbox {
		width: 100%;
	}

	.formfield {
		width: 100%;
	}

	.flex-cus {
		width: 100%;
	}

	.formbutton {
		width: 100%;
	}

	.img-size {
		width: 100%;
	}

	.footerlinks {
		justify-content: center;
		margin: 10px 0;
	}

	form {
		width: 100%;
		order: 2;
	}

	.footer-flex {
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.h-low .container {
		min-height: 100px;
	}

	.contact-sec {
		width: 100%;
		margin: 0 0 20px;
	}

	.flexgroupbox:nth-child(1) {
		transform: rotate(0) translateY(0);
	}

	.flexgroupbox:nth-child(3) {
		transform: rotate(0) translateY(0);
	}

	.flex-u {
		width: 100%;
	}

	.navbar-collapse {
		background: #218ec9;
	}
}