@charset "utf-8";
/* CSS Document */

/*
font-family: "Montserrat", sans-serif;
font-family: "Poppins", sans-serif;
font-family: "Roboto", sans-serif;
*/

 
/*=================== // fonts // ====================*/

:root {
	--theme-color: #003883;
	--title-color: #000000;
	--title-color02: #003883;
	--title-color04: #000000;
	--title-ftr: #fff;
	--menu: #000;
	--menu-hover: #002C66;
	--para-color01: #003883;
	--para-color02: #444445;
	--para-color03: #8C8C8E;
	--bg-color01: #fff;
	--bg-color02: #E6E6E6;
	--btn-color: #003883;
	--btn-hover: #002C66;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box !important;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

html {
	scroll-behavior: smooth;
	font-size: 100%;
}

body {
	padding: 0;
	margin: 0;
	background: #fff;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	font-family: "Montserrat", sans-serif;
}

::selection {
	background-color: #003883;
	color: #fff;
	text-shadow: none;
}

/*a {
	color: #ed1c24 !important;
	text-decoration: none;
	background-color: transparent;
}*/

a:hover, a:focus, a:visited {
	text-decoration: none;
	outline: none;
	color: inherit;
}
/* a:hover {
    color: #ff7800; 
} */

/*  */
/* a, a:focus{
	color: inherit;
	outline: none;
}
a, a:hover, a:focus{
	outline:none;
	text-decoration:none;
	color:inherit;
} */

:focus {
	outline: none;
}

.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none !important;
	text-decoration: none;
}

li {
	list-style: none;
}

.img-responsive {
	display: block;
	height: auto;
}

.clearfix {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.container-fluid {
	width: 90%;
	margin: 0 auto;
	padding-right: 100px;
	padding-left: 100px;
}

img {
	max-width: 100%;
	height: 0 auto;
}

ol, dl, ul, li, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", sans-serif;
	word-wrap: break-word;
	margin-bottom: 1rem !important;
	color: var(--title-color);
	line-height: normal;
	margin-top: 0 !important;
}

p {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	color: var(--para-color);
	line-height: 1.6;
	font-weight: 500;
	padding: 0;
	margin-top: 0 !important;
}

hr {
	float: left;
	display: block;
	height: 0.1rem;
	width: 100%;
	background-color: #dadada;
	margin: 1rem 0;
}

.dropdown:hover .dropdown-menu {
	display: block;
	-webkit-animation: fadeInUp 400ms;
	animation: fadeInUp 400ms;
	margin-top: .-1rem;
}

::-webkit-input-placeholder {
	color: #919191;
}

:-ms-input-placeholder {
	color: #919191;
}

::-moz-placeholder {
	color: #919191;
	opacity: 1;
}

:-moz-placeholder {
	color: #919191;
	opacity: 1;
}
/* // helping css // */

.heading01 {
	font-size: 98px;
	color: var(--title-color);
	font-weight: 800;
	line-height: 110px;
}

.heading02 {
	font-size: 60px;
	color: var(--title-color);
	font-weight: 800;
}

.heading03 {
	font-size: 50px;
	color: var(--title-color02);
	font-weight: 800;
}

.heading04 {
	font-size: 34px;
	color: var(--title-color04);
	font-weight: 700;
}

.heading05 {
	font-size: 30px;
	color: var(--title-color);
	font-weight: 700;
}

.small_title01 {
	font-size: 14px;
}

.small_title02 {
	font-size: 14px;
}

.small_title03 {
	font-size: 14px;
}

.para01 {
	font-size: 24px;
	color: var(--para-color01);
	line-height: 32px;
	font-weight: 500;
}

.para02 {
	font-size: 22px;
	color: var(--para-color02);
	line-height: 30px;
	font-weight: 500;
}

/* // button css */
.common_btn01 {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 20px !important;
	min-width: 150px;
	text-align: center;
	color: #fff !important;
	background-color: var(--btn-color);
	border: 1px solid #131880;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	margin: 0 auto;
	transition: all .4s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.common_btn01:hover {
	background-color: var(--btn-hover);
	-webkit-transform: translate3d(0, -1px, 0);
	transform: translate3d(0, -1px, 0);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}




/* // input field css */
.field01 {
	font-family: "Montserrat", sans-serif;
	width: 100%;
	background-color: #FAFAFA;
	border: 1px solid #c5c5c5;
	font-size: 16px;
	font-weight: 500;
	color: var(--title-color04);
	padding: 5px 10px;
	height: 50px;
	border-radius: 0;
	position: relative;
}

.field01:focus {
	border-color: #003883;
	transition: 0.9s;
}

.field02 {
	font-family: "Poppins", sans-serif;
	background-color: transparent;
	border: 1px solid #c5c5c5;
	color: var(--title-color04);
	border-radius: 6px;
	letter-spacing: 1px;
}

.submit01 {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 15px;
	color: #fff !important;
	background-color: var(--theme-color);
	border: 1px solid var(--theme-color);
	position: relative;
	display: inline-block;
	margin: 0 auto;
	cursor: pointer;
	border-radius: 30px;
	transition: all 0.4s ease;
	margin-right: 0px;
	min-width: 150px;
}

.submit01:hover {
	background-color: var(--btn-hover);
}

b, strong {
	font-weight: 600 !important;
}

.dView01 {
	display: block;
}

.mView01 {
	display: none;
}




/* ============================================================================================ */

	/* body css start */

/* ============================================================================================ */

#sidenav {
	max-height: 100vh;
	height: 100vh;
	max-width: 70vw;
	min-width: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .3s ease-in-out;
	transform: translate(-150%, 0px);
	-webkit-transform: translate(-150%, 0px);
  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
	-ms-transform: translate(-150%, 0px);
}

#sidenav.active {
	transition: all .3s ease-in-out;
	transform: translate(0%, 0px);
	-webkit-transform: translate(0%, 0px);
	-ms-transform: translate(0%, 0px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, .4);
}

#overlay {
	width: 100vw;
	height: 100vh;
	display: none;
	animation: fade 5s;
	-webkit-animation: fade 500ms;
	-moz-animation: fade 500ms;
	-o-animation: fade 500ms;
}

#overlay.active {
	display: block;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.burger {
	height: 16px;
}

.burger span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 3px;
}

.pointer {
	cursor: pointer;
}

.close {
	width: 23px;
	height: 23px;
}

.cross {
	height: 23px;
	width: 2px;
	border-radius: 3px;
}

.cross.left {
	transform: rotate(45deg);
}

.cross.right {
	transform: rotate(-45deg);
}

.align-middle {
	vertical-align: middle;
}

.list-reset a {
	font-size: 18px;
	color: var(--menu);
	font-weight: 500;
	padding: 25px 20px;
	text-decoration: none;
}

/* my custom css */

.menus {
	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menus .dropdown-item {
	padding: 10px 15px;
	color: var(--menu);
	font-size: 16px;
}

.dropdown-menu {
	padding: 0;
	border-radius: 0;
	top: 95%;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	display: none;
}

.nav-link:focus, .nav-link:hover, .nav-link .active {
	text-decoration: none;
	color: var(--menu-hover);
}

header .bg-white {
	background-color: #003883 !important;
}

.topHead {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/*-// add menu accordion------------------------------------*/

.accordion {
	width: auto;
}

.accordion ul {
	margin: 0;
	padding: 0;
}

.accordion .pagenav {
	position: relative;
	margin-bottom: 10px;
	list-style: none;
}

.accordion .pagenav a {
	text-decoration: none;
	color: #fff;
}

.accordion .pagenav ul {
	display: none;
	padding: 0 15px;
	margin: 0;
}

.accordion .pagenav li {
	margin-bottom: 3px;
	list-style: none;
}

.accordion .pagenav h4 {
	padding: 0;
	margin: 0 0 1rem 0;
	cursor: pointer;
}

.accordion .pagenav h4 i {
	font-size: 15px;
	color: #fff;
	position: absolute;
	right: 0px;
	line-height: 24px;
	transition: .2s;
	-webkit-transition: .2s;
	-ms-transition: .2s;
}

.accordion .pagenav.open h4 i {
	transform: rotate(90deg);
}

.accordion a:hover, .accordion .pagenav li.current_page_item a {
	text-decoration: underline;
}

.accordion .pagenav li a {
	color: #fff;
	font-size: 16px;
}

.dropdown-item.active, .dropdown-item:active {
	color: #fff !important;
	text-decoration: none;
	background-color: var(--theme-color);
}

/*-// add menu accordion end ------------------------------------*/

@media only screen and (max-width: 1024px) {
	.menus .d-block {
		display: none !important;
	}

	.menus .d-none {
		display: block !important;
	}

	.list-reset a {
		color: #fff;
		padding: 0;
	}
}

@media only screen and (max-width: 768px) {
	.dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
}

@media only screen and (max-width: 767px) {
}


/* ============================================================================================ */

	/* banner css start */

/* ============================================================================================ */

.banner {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.banner .col-lg-5 a {
	font-size: 18px;
	color: var(--menu);
	font-weight: 500;
	margin-left: 25px;
}

.banner .col-lg-5 a:hover {
	color: var(--menu-hover);
}

/* ============================================================================================ */

	/* sec01 css start */

/* ============================================================================================ */

.sec01 {
	width: 100%;
	padding: 30px 0 80px;
	display: block;
	position: relative;
	text-align: center;
}

.brandRow {
	width: 75%;
	margin: 60px auto 0;
}

.brandRow ul.brands_list {
	margin: 0;
	font-size: 0;
	padding: 0;
	text-align: center;
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-around;
}

.brandRow li.brand_item {
	text-align: center;
	position: relative;
	width: calc(17% - 32px);
	vertical-align: middle;
	box-sizing: border-box;
	margin: 14px;
	display: inline-flex;
	justify-content: stretch;
	align-items: stretch;
	-webkit-transition: all 1s cubic-bezier(0.02, 0.01, 0.47, 1);
	-moz-transition: all 1s cubic-bezier(0.02, 0.01, 0.47, 1);
	transition: all 1s cubic-bezier(0.02, 0.01, 0.47, 1);
}

/* ============================================================================================ */

	/* sec02 css start */

/* ============================================================================================ */

.sec02 {
	width: 100%;
	background-color: #f9f9f9;
	padding: 80px 0;
	display: block;
	position: relative;
}

.p_l01 {
	padding-left: 150px;
}

/* ============================================================================================ */

	/* sec03 css start */

/* ============================================================================================ */

.sec03 {
	width: 100%;
	padding: 150px 0;
	display: block;
	position: relative;
}

.owl-carousel .item {
/*	height: 10rem;*/
	background-color: var(--theme-color);
	border-radius: 20px;
	padding: 50px;
	/*display: flex;
	justify-content: center;
	align-items: center;*/
	/*font-size: 70px;
	color: #fff;*/
	;
}

.owl-carousel .circle {
	width: 170px;
	height: 170px;
	border-radius: 50%;
	border: 2px solid #a2a2a2;
	overflow: hidden;
}

.owl-carousel .owl-item p {
	font-size: 30px;
	color: #fff;
	margin: 80px 0 60px !important;
	line-height: normal;
}

.owl-carousel .owl-item h6 {
	background-color: #fff;
	font-size: 18px;
	color: #000;
	font-weight: 600;
	display: inline-block;
	padding: 14px 15px;
	border-radius: 30px;
	min-width: 230px;
	text-align: center;
}

.owl-nav {
	position: absolute !important;
	left: -100% !important;
	top: 50%;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	background-color: #f9f9f9 !important;
	width: 65px !important;
	border: 1px solid #ececec !important;
	border-radius: 50% !important;
	height: 65px !important;
	font-size: 60px !important;
/*	line-height: 60px !important;*/
	margin: 10px !important;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
	line-height: 34px !important;
	height: 50px;
	display: block;
}

/*.owl-carousel .owl-nav:hover button.owl-next, .owl-carousel .owl-nav:hover button.owl-prev {
    background-color: red;
}*/

.owl-carousel .owl-nav [class*="owl-"]:hover {
	background-color: #E6E6E6 !important;
	color: #909090;
	text-decoration: none;
}

.owl-carousel .owl-dots {
	display: none;
}

.redColor {
	background-color: #ED0000 !important;
}

.m_t01 {
	margin-top: 75px !important;
}

/* ============================================================================================ */

	/* sec04 css start */

/* ============================================================================================ */

.sec04 {
	width: 100%;
	background-color: #f9f9f9;
	padding: 80px 0;
	display: block;
	position: relative;
}

.sec04 h3 {
	border-left: 4px solid #ED0000;
}

.sec04 .heading03 {
	padding-left: 22px;
}

.sec04 .col-12 {
	padding-right: 50px;
}

.sec04 .para02 {
	margin-bottom: 0;
	padding-left: 22px;
}

/* ============================================================================================ */

	/* sec05 css start */

/* ============================================================================================ */

.sec05 {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.sec05 .iconRow {
	width: 100%;
	margin-top: 100px;
	display: block;
}

.redCircle {
	width: 90px;
	height: 90px;
	background-color: #ED0000;
	text-align: center;
	padding: 10px;
	line-height: 70px;
	margin-bottom: 35px;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.35s;
}

.sec05 .iconRow .col-12 {
	padding-right: 70px;
}

/* ============================================================================================ */

	/* footer css start */

/* ============================================================================================ */

.ftr {
	width: 100%;
	background-color: var(--theme-color);
	padding: 80px 0;
	display: block;
	position: relative;
}

.ftr .para01 {
	font-family: "Poppins", sans-serif;
	color: #90a6dd;
	font-size: 18px;
	font-weight: 300;
	margin-top: 25px !important;
}

.ftr .social {
	width: 100%;
	margin-top: 35px;
	display: block;
}

.ftr .social a {
	margin-right: 15px;
}

.ftr h4 {
	font-size: 24px;
	color: var(--title-ftr);
	margin-bottom: 25px !important;
}

.ftr ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ftr ul li {
	width: 100%;
	display: block;
	font-size: 18px;
	color: var(--title-ftr);
	font-weight: 400;
}

.ftr ul li a {
	font-size: 18px;
	color: var(--title-ftr);
	text-decoration: none;
	padding-bottom: 15px;
	font-weight: 400;
	display: block;
}

.p_r01 {
	padding-right: 45px;
}

.p_l02 {
	padding-left: 40px;
}

.ftr_btm {
	width: 100%;
	background-color: var(--theme-color);
	padding: 30px 0;
	display: block;
	position: relative;
	border-top: 1px solid #fff;
	text-align: center;
}

.ftr_btm .para01 {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	margin-bottom: 0 !important;
	font-weight: 400;
}


/* ============================================================================================ */

	/* faq css start */

/* ============================================================================================ */

.faqRow {
	width: 100%;
	padding: 80px 0;
	text-align: center;
	display: block;
	position: relative;
}

.faqRow .para02 {
	width: 50%;
	margin: 0 auto;
	line-height: normal;
}

.faqRow .para02 a {
	font-weight: 600;
	color: var(--title-color02);
}

.accoRow {
	width: 100%;
	margin-top: 80px;
}

.accoRow .accordion-header {
	cursor: pointer;
	color: black;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 10px 1rem 5px;
	border-top: 1px solid #444445;
/*  border-bottom: 1px solid #444445;*/
	transition: all 0.4s ease-in-out;
}

.accoRow .accordion-header h4 {
	font-size: 24px;
	color: var(--title-color);
	font-weight: 600;
	margin: 0 !important;
}

.accoRow .accordion-body {
	transition: all 0.35s ease-in-out;
	max-height: 0;
	overflow: hidden;
/*  background-color: rgb(252, 252, 252);*/
	;
}

.accoRow .accordion-body p {
	padding: 5px 10px 5px 5px;
	font-size: 18px;
	color: var(--para-color02);
	line-height: 30px;
	font-weight: 500;
	text-align: left;
}

.accoRow .accordion + .accordion {
	margin-top: 0;
}

.accoRow .accordion-icon {
	transition: transform 0.4s ease-in-out;
}

.accoRow .accordion.active .accordion-header {
	background-color: transparent;
	color: white;
}

.accoRow .accordion.active .accordion-icon {
	transform: rotate(-180deg);
}

.accoRow .accordion .la, .accordion .las {
	font-family: 'Line Awesome Free';
	font-weight: bold;
	font-size: 25px;
	color: var(--theme-color);
}

/* ============================================================================================ */

	/* payment css start */

/* ============================================================================================ */

.payment {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.f_smll {
	font-size: 16px;
	font-weight: 500;
}

.accoCard {
	width: 100%;
	margin-top: 80px;
}

/*.accordion--container{
  width:100%;
  margin:auto;
  display:block;
}*/

.accoCard .accordion {
	width: 92%;
	margin: 0 auto;
}

.accoCard li.accordion ul {
	margin: 0;
	padding: 0;
	background: #fff;
	margin: 0 !important;
	border-top: 1px solid #fff;
	display: none;
	color: black;
}

.accoCard li.accordion ul .txt {
	padding: 12px;
	margin: 0;
	font-size: 18px;
}

.accoCard li.accordion span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	padding: 7px 12px;
	margin-bottom: 0;
	border: 1px solid #c5c5c5;
	border-radius: 6px;
	color: #4e4e4e;
	cursor: pointer;
	position: relative;
	text-align: left;
}

.accoCard li.accordion {
	border-left: none;
	list-style: none;
	margin-bottom: 15px;
}

.accoCard li.accordion span i {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	height: fit-content;
	margin: auto;
	color: #4e4e4e;
	transition: .3s;
}

.accoCard li.accordion.open span i {
	transform: rotate(180deg);
	transition: .3s;
}

.m_left {
	margin-left: 0 !important;
}

.m_right {
	margin-right: 0 !important;
}

.payNow {
	width: 100%;
	margin-top: 100px;
}

.accoCard li span img {
	margin-right: 10px;
}

/* button check start */

input[type=checkbox], input[type=radio] {
	margin: 4px 0 0;
	margin-top: 1px \9;
	line-height: normal;
}

.btn_check input {
	display: none;
}

.btn_check input:checked + label {
	color: #ffffff !important;
	background-color: #92aef2;
	border-color: ##92aef2;
}

.btn_check i {
	width: 14px;
	text-align: left;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700;
}

.btn {
	border: 1px solid #c5c5c5 !important;
	width: 100% !important;
	color: var(--para-color02) !important;
	font-weight: 500 !important;
	text-align: left !important;
	margin-bottom: 50px !important;
	line-height: 2rem !important;
}

.fa.fa-square-o {
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	font-size: 20px;
	margin-right: 15px;
	vertical-align: middle;
}

.fa.fa-square-o:before {
	content: "\f0c8";
	color: #c5c5c5;
}

.btn_check input:checked + label i:before {
	content: "";
	font-size: 20px;
	color: #fff;
}

/* button check end */

/* ============================================================================================ */

	/* who weare css start */

/* ============================================================================================ */

.mission {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.missionRow {
	width: 100%;
	margin-top: 80px;
}

.mission .f_smll {
	font-size: 16px;
	font-weight: 500;
	color: #79869F;
}

.missionRow .heading04 {
	color: var(--theme-color);
}

.vissionRow {
	width: 100%;
	margin: 100px 0;
	position: relative;
	min-height: 850px;
}

.vissionBox {
	width: 65%;
	background-color: var(--theme-color);
	padding: 80px 100px;
	margin-left: 12%;
}

.paraWidth01 {
	width: 60%;
}

.vissionPic {
	width: 45%;
	position: absolute;
	bottom: 50px;
	right: 20px;
}

.vissionPic img {
	width: 100%;
	position: relative;
}

.play-btn {
	width: 100px;
	height: 100px;
	background: radial-gradient(rgb(227 35 25) 60%, rgba(255, 255, 255, 1) 62%);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	margin: 0 auto;
	box-shadow: 0px 0px 25px 3px rgb(227 35 25);
}

/* triangle */
.play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	transform-origin: center center;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid #fff;
	z-index: 100;
	-webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate1 2s;
	animation: pulsate1 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, .75);
	top: -25%;
	left: -25%;
	background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 1;
		box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		box-shadow: none;
	}
}

@keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 1;
		box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
	}

	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1);
		opacity: 0;
		box-shadow: none;
	}
}

/* // modal start */
.modal-dialog {
	max-width: 50%;
	margin: 0 auto;
	min-height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: auto;
	line-height: 0;
}

.modal-body iframe {
	width: 100%;
	height: 550px;
	line-height: 0;
}

.modal-body {
	padding: 5px;
}

.modal-header .close {
	padding: 0;
	margin: 5px 5px 5px auto;
}

.modal-header {
	padding: 0;
	border-bottom: none;
}

/* // modal end */

/* ============================================================================================ */

	/* contact css start */

/* ============================================================================================ */

.contact {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.formBox {
	width: 100%;
	padding: 80px 60px;
	border: 1px solid #c5c5c5;
}

.formBox .f_smll {
	font-size: 16px;
	font-weight: 500;
	color: #79869F;
}

.formBox label {
	font-family: "Montserrat", sans-serif;
	display: inline-block;
	margin-bottom: .5rem;
	font-weight: 500;
	color: #444445;
}

.fGroup {
	width: 100%;
	margin-bottom: 20px;
}

.field03 {
	min-height: 130px !important;
}

.condition {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.condition input[type=checkbox] {
	position: relative;
	border: 2px solid #003883;
	border-radius: 2px;
	background: none;
	cursor: pointer;
	line-height: 0;
	margin: 0 .6em 0 0;
	outline: 0;
	padding: 0 !important;
	vertical-align: text-top;
	height: 20px;
	width: 20px;
	-webkit-appearance: none;
	opacity: .5;
}

.condition input[type=checkbox]:hover {
	opacity: 1;
}

.condition input[type=checkbox]:checked {
	background-color: #003883;
	opacity: 1;
}

.condition input[type=checkbox]:before {
	content: '';
	position: absolute;
	right: 50%;
	top: 50%;
	width: 7px;
	height: 12px;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	margin: -1px -2px 0 -1px;
	transform: rotate(45deg) translate(-50%, -50%);
	z-index: 2;
}

.condition label {
	font-family: "Montserrat", sans-serif;
	display: inline-block;
	margin-bottom: 0;
	font-weight: 400;
	color: #79869F;
}

.address {
	width: 100%;
	padding-left: 100px;
}

.address ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.address ul li {
	width: 100%;
	display: flex;
	font-size: 22px;
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
}

.address ul li img {
	padding-right: 15px;
}

.iconWidth {
	width: 60px;
}

.address .social {
	width: 100%;
	margin-top: 50px;
	display: block;
}

.address .social a {
	margin-right: 15px;
}

.mapRow {
	width: 100%;
	display: block;
	line-height: 0;
}

.mapRow iframe {
	width: 100%;
	min-height: 700px;
	line-height: 0;
}

/* ============================================================================================ */

	/* login css start */

/* ============================================================================================ */

.loginHead {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	height: 93px;
	text-align: center;
	display: flex;
	align-items: center;
}

.login {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.loginBox {
	width: 82%;
	margin: 0 auto;
	padding: 60px 50px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	display: block;
	position: relative;
}

.loginTitle {
	font-family: "Poppins", sans-serif;
	font-size: 28px;
	color: #000000;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 !important;
}

.userAcnt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 25px 0;
}

.loginBox a {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: #000;
	text-decoration: underline;
	font-weight: 600;
	display: inline-block;
}

.loginBox a:hover {
	color: #003883;
}

.toggle-password {
	float: right;
	cursor: pointer;
	margin-right: 10px;
	margin-top: -35px;
}
/*.loginBox .form-control {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    border: 1px solid #c5c5c5;
    font-size: 16px;
    font-weight: 500;
    color: var(--title-color04);
    padding: 5px 10px;
    height: 50px;
    border-radius: 0;
    position: relative;
}*/

.form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 5px 10px;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	border: 1px solid #c5c5c5;
	font-weight: 500;
	line-height: 1.5;
	color: var(--title-color04);
	background-color: #fff;
	background-clip: padding-box;
	letter-spacing: 1px;
	border-radius: 6px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
	border-color: #003883;
	transition: 0.9s;
	box-shadow: none;
}

.loginBtn {
	width: 100%;
	border-radius: 6px !important;
	margin-top: 25px;
}

/* ============================================================================================ */

	/* blog css start */

/* ============================================================================================ */

.blog {
	width: 100%;
	padding: 80px 0;
	background: linear-gradient(to right, #E6E6E6, #E6E6E6) no-repeat, #ffffff;
	background-size: 100% 65%, 100% auto;
	display: inline-block;
	position: relative;
    /*background: linear-gradient(to right, #00b0b2, #48dcc0) no-repeat, #ffffff;
    background-size: 100% 50%, 100% auto;*/
	;
}

.slide_row {
	width: 70%;
	margin: 0 auto 25px;
	display: table;
	border-radius: 6px;
	background-color: #fff;
	position: relative;
	z-index: 111;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.slide_row_l {
	width: 60%;
	float: left;
	padding: 40px 40px;
	border-radius: 6px 0 0 6px;
}

.slide_row_r {
	width: 40%;
	float: left;
	border-radius: 0 6px 6px 0;
}

.slide_row_r img {
	border-radius: 0 6px 6px 0;
	width: 100%;
	height: 100%;
}

.slide_row .heading04 {
	font-family: "Roboto", sans-serif;
}

.slide_row .para02 {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
}

.slideslide_item {
	margin-bottom: 0;
}

.slideslide_content {
	position: relative;
	background: #fff;
	padding: 35px 30px;
	margin: -40px 20px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
}

.slideslide_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 90px;
	font-size: 50px;
	background: #fff;
	color: #659494;
	border-radius: 50%;
	margin: -85px 0 0;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1;
	position: relative;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.slideslide_title {
	margin-bottom: 10px;
	font-size: 22px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url(../images/next.png) !important;
	width: 18px !important;
	height: 30px !important;
	right: 18% !important;
	top: 50% !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background-image: url(../images/prev.png) !important;
	width: 18px !important;
	height: 30px !important;
	left: 18% !important;
	top: 50% !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom, 50px) !important;
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: var(--theme-color, var(--theme-color)) !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: "next";
	display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: "prev";
	display: none;
}

.slide_text {
	font-style: italic;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom,50px);
	top: var(--swiper-pagination-top,auto);
	left: 0;
	width: 100%;
}

/* ============================================================================================ */

	/* blog_panel css start */

/* ============================================================================================ */

.blog_panel {
	width: 100%;
	padding: 80px 0;
	display: block;
	position: relative;
}

.mel-nav ul {
	display: flex;
	flex-direction: row;
	padding: 0 0 15px 15px;
	border-bottom: 1px solid #bdbdbd;
}

.mel-nav li {
	font-family: "Roboto", sans-serif;
	padding-right: 35px;
	cursor: pointer;
	font-size: 20px;
	font-weight: 400;
	color: #58595A;
}

.is-checked {
	color: #003883 !important;
	font-weight: bold !important;
}

.mel-grid {
	max-width: 100%;
}

.mel-grid:after {
	content: '';
	display: block;
	clear: both;
}

.mel-grid-sizer,
.mel-grid-item {
	width: 33%;
}

.mel-grid-item {
	float: left;
}

.mel-item-wrapper {
	background-color: #f1f1f1;
	border-radius: 4px;
	margin: 15px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.mel-item-wrapper:hover {
	-webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

.mel-image-container {
	width: 100%;
}

.mel-image-container img {
	width: 100%;
}

.mel-content {
	background-color: #fff;
	padding: 25px 20px;
	min-height: 300px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

.mel-content h4 {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	color: #000;
	font-weight: 700;
	margin-bottom: 15px !important;
}

.mel-content .para02 {
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
}

.mel-content a {
	font-family: "Roboto", sans-serif;
	color: #003883;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.mel-content .fa-angle-right {
	color: #ED0000;
}

@media all and (min-width: 769px) and (max-width: 980px) {
	.mel-grid-item {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.mel-grid-item {
		width: 100%;
	}
}




































/*

https://codepen.io/w3codemasters/pen/qBOjppr {Stage Padding Owl Carousel}
https://codepen.io/elariri/pen/bGmyQeZ {Accordion payment page}
https://codepen.io/applepig/pen/pEaeZQ {button check}
https://codepen.io/b29/pen/jmNvJq {play btn}
https://codepen.io/brankocee/pen/QWwmrvM {check box}
https://codepen.io/butch182/pen/WKaJJv { Isotope blog gallery  }

*/