@import 'common.css';

/* new css add fot middle section */

/* Body Styles */
section.featurssectionnew {
	background-color: #38547D;
	padding: 0px 0px 0px;
	border-top: 4px solid #941D28;
}

.featurssectionnew header {
	min-height: 50px;
}

.featurssectionnew header.dark {
	background-color: #38547D;
}

.featurssectionnew ul.main-nav>li>a.mega-menu>span {
	color: rgba(var(--white-color), 1);
	font-weight: 600;
	margin-bottom: 0;
	font-size: 16px;
	text-align: center;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 0px;
}

/* Navigation Styles */
.featurssectionnew nav {
	position: relative;
}

.featurssectionnew ul.main-nav {
	list-style-type: none;
	display: block;
	padding: 0px;
	max-width: 100%;
	margin: 0;
}

.featurssectionnew ul.main-nav>li {
	display: inline-block;
	cursor: pointer;
	width: 20%;
	border-right: 0.5px solid rgb(255 255 255 / 16%);
}

.featurssectionnew ul.main-nav>li:first-child {
	display: inline-block;
	cursor: pointer;
	width: 15%;
	border-left: 0.5px solid rgb(255 255 255 / 16%);
}

.featurssectionnew ul.main-nav>li>a {
	display: flex;
	padding: 30px 30px;
	position: relative;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	align-items: center;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.featurssectionnew ul.main-nav>li ul.sub-menu-lists {
	margin: auto 0;
	padding: 1px 0;
	list-style-type: none;
	display: block;
}

.featurssectionnew ul.main-nav>li ul.sub-menu-lists>li {
	padding: auto;
	width: 100%;
	margin-top: 2px;
}

.featurssectionnew ul.main-nav>li ul.sub-menu-lists>li>a {
	font-size: 1em;
	font-weight: 500;
}

.mega-menu {
	height: 85px;
}

.mega-menu.dropmenu::after {
	display: none;
}

.mega-menu::after {
	content: '\f107';
	font-family: var(--font-awesome);
	font-weight: 600;
	border: none;
	margin-left: 0.45em;
	vertical-align: middle;
}

/* Menu Icons for Devices*/
@media only screen and (max-width: 768px) {
	.featurssectionnew nav {
		background-color: transparent;
	}

	/* Main Menu for Handheld Devices  */
	.featurssectionnew ul.main-nav {
		z-index: 2;
		padding: 50px 0;
		position: fixed;
		right: 0px;
		top: 0px;
		width: 0px;
		background-color: rgba(0, 0, 0, 1);
		height: 100%;
		overflow: auto;
		/*CSS animation applied : Slide from Right*/
		-webkit-transition-property: background, width;
		-moz-transition-property: background, width;
		-o-transition-property: background, width;
		transition-property: background, width;
		-webkit-transition-duration: 0.6s;
		-moz-transition-duration: 0.6s;
		-o-transition-duration: 0.6s;
		transition-duration: 0.6s;
	}

	.featurssectionnew .ic.menu:focus~.main-nav {
		width: 85%;
		background-color: #fff;
	}

	.featurssectionnew ul.main-nav>* {
		-webkit-transition-property: opacity;
		-moz-transition-property: opacity;
		-o-transition-property: opacity;
		transition-property: opacity;
		-webkit-transition-duration: 0.4s;
		-moz-transition-duration: 0.4s;
		-o-transition-duration: 0.4s;
		transition-duration: 0.4s;
		opacity: 0;
	}
}

@media only screen and (min-width: 769px) {

	/* Main Menu for Desktop Devices  */
	.featurssectionnew ul.main-nav {
		display: flex;
		align-items: self-start;
		/* gap: 20px; */
		position: relative;
		justify-content: space-between;
		z-index: 4;
		margin: 0;
		width: 100%;
	}

	.featurssectionnew .sub-menu-block {
		padding: 20px;
	}

	/* Sub Menu */
	.featurssectionnew ul.main-nav>li>div.sub-menu-block {
		visibility: hidden;
		background-color: #fff;
		position: absolute;
		margin-top: 0px;
		min-width: 100%;
		max-width: 100%;
		left: 0;
		opacity: 0;
		/*CSS animation applied for sub menu : Slide from Top */
		-webkit-transition: all 0.4s ease 0s;
		-o-transition: all 0.4s ease 0s;
		transition: all 0.4s ease 0s;
		-webkit-transform: rotateX(90deg);
		-moz-transform: rotateX(90deg);
		-ms-transform: rotateX(90deg);
		transform: rotateX(90deg);
		-webkit-transform-origin: top center;
		-ms-transform-origin: top center;
		transform-origin: top center;
	}

	.featurssectionnew #five-block {
		width: 100%;
	}

	.featurssectionnew ul.main-nav>li:hover>div.sub-menu-block {
		background-color: #364662;
		visibility: visible;
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}

	.featurssectionnew ul.main-nav>li>div.sub-menu-block>* {
		-webkit-transition-property: opacity;
		-moz-transition-property: opacity;
		-o-transition-property: opacity;
		transition-property: opacity;
		-webkit-transition-duration: 0.4s;
		-moz-transition-duration: 0.4s;
		-o-transition-duration: 0.4s;
		transition-duration: 0.4s;
		opacity: 0;
	}

	.featurssectionnew ul.main-nav>li:hover>div.sub-menu-block>* {
		opacity: 1;
	}
}

/**************Additions****************/
/* 5 Columns */
.featurssectionnew .col-xs-15,
.featurssectionnew .col-sm-15,
.featurssectionnew .col-md-15,
.featurssectionnew .col-lg-15 {
	position: relative;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}

.featurssectionnew .col-xs-15 {
	width: 20%;
	float: left;
}

@media (min-width: 768px) {
	.featurssectionnew .col-sm-15 {
		width: 20%;
		float: left;
	}
}

@media (min-width: 992px) {
	.featurssectionnew .col-md-15 {
		width: 20%;
		float: left;
	}
}

@media (min-width: 1200px) {
	.featurssectionnew .col-lg-15 {
		float: left;
	}
}

.navmenu-custom.open-top {
	top: auto;
	bottom: 100%;
	width: auto;
}

.navmenu-custom.open-bottom {
	bottom: auto;
	top: 100%;
}

.menu-title {
	color: #fff;
	font-size: 20px;
	line-height: 3rem;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1.8px;
}

.menu-title.submenutitle {
	font-size: 15px;
	height: 30px;
	display: flex;
	line-height: 1rem;
	align-items: center;
}

.newimg {
	display: block;
	position: relative;
	width: 100%;
	height: 10vw;
	border-radius: 30px;
	overflow: hidden;
}

.top-level-link:hover .new-menu .btsec .common-border-btn {
	--border-btn: rgba(var(--second-color), 1);
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.top-level-link:hover .new-menu .btsec .common-border-btn::after {
	border-color: rgb(255 255 255);
}

.sidenav a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.sidenav i {
	font-size: 25px;
	color: #ffffff;
}

.sidenav p {
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
	font-size: 14px;
	text-align: center;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 0px;
}

.featurssectionnew ul.main-nav>li:hover {
	background-color: #364662;
}

.featurssectionnew li.footer-box {
	height: 87px;
}

.featurssectionnew .footer-box a {
	padding: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.featurssectionnew li.footer-box img {
	height: 50px;
	object-fit: contain;
	object-position: center;
}

li.headlogo-box {
	height: 85px;
}

.headlogo-box a {
	padding: 10px !important;
}

.headlogo-box img {
	/* height: 65px; */
	object-fit: contain;
	object-position: top;
}

.featurssectionnew ul.main-nav>li.headlogo-box:hover {
	background-color: #38547d !important;
}

.footer-box .foot-logo img {
	height: 80px;
}

/* .footer-box .foot-logo img{
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(-100px);
    display: block;
}
.featurssectionnew.nheader-fixed .footer-box .foot-logo img, .featurssectionnew .footer-box .foot-logo img {
    transform: translateY(0px);
    opacity: 1;
    height: 100%;
} */
/* new css add fot middle section close */



.schedule_banner {
	padding: 10px 0;
	background: #941D28;
}

.schedule_banner p {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 0;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	font-style: italic;
	line-height: 1;
}

.schedule_banner .highlightedtext {
	color: #364662;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}



.top-menu {
	background: #eeeeee;
	padding: 12px 0px;
	color: rgb(0 0 0);
	text-align: center;
	font-size: 14px;
}

.top-nav-text {
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-right-nav-text {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 8px;
}

.highlightedtext img {
	height: auto;
	width: 60px;
	object-fit: contain;
}

em {
	font-size: 12.8px;
	font-weight: 400;
	color: #000;
	line-height: 1;
}

.Insurance-section .top-right-nav-text {
	justify-content: start;
	gap: 12px;
}

.Insurance-section .top-right-nav-text em {
	font-size: 20px;
	font-weight: 500;
}

.Insurance-section .top-right-nav-text .highlightedtext {
	font-size: 28px;
}

/* mega menu  */
.ico {
	height: 40px;
	width: 40px;
	margin-bottom: 10px;
}

.ico img {
	object-fit: contain;
	object-position: left;
}

.content .col .menu-title.submenutitle {
	font-size: 15px;
	height: 30px;
	display: flex;
	align-items: center;
}

.btsec {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.mega-links {
	list-style-type: none;
	margin-left: 8px;
}

.mega-links li {
	margin-bottom: 0px;
	margin-left: -5px;
	display: flex;
	height: 36px;
	align-items: center;
}

/* .mega-links li:before {
	color: transparent;
	font-size: 1px;
	content: " ";
	margin-left: -1.3em;
	margin-right: 9px;
	padding: 6px;
	background-color: #ffffff;
	-webkit-mask-image: url(../images/share-from-square-regular.svg);
	-webkit-mask-size: cover;
} */

.nav-item:hover .mega-menu {
	display: flex !important;
	overflow-y: auto;
	height: auto;
	background: #364662;
	-webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.nav-item:hover .mega-menu::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	cursor: pointer;
}

/* Track */
.nav-item:hover .mega-menu::-webkit-scrollbar-track {
	background: #ffffff;
}

/* Handle */
.nav-item:hover .mega-menu::-webkit-scrollbar-thumb {
	background: #941D28;
	transition: all ease-in-out 0.8s;
	border-radius: 10px;
}

.mega-menu .content.content1 {
	display: inline;
	width: 33%;
}

.mega-menu .content {
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	width: 100%;
	justify-content: space-between;
	/* box-shadow: 0 0px 5px 0 rgb(0 132 255); */
}

.blog .content {
	grid-template-columns: repeat(4, 1fr);
}

.content .col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	line-height: 3rem;
}

.content .col .img-wrapper {
	display: block;
	position: relative;
	width: 100%;
	height: 10vw;
	border-radius: 30px;
	overflow: hidden;
}

.content .col .img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.content .col img {
	width: 100%;
	transition: transform 0.3s ease-in-out;
}

.content .col .menu-title {
	color: #fff;
	font-size: 20px;
	line-height: 3rem;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1.8px;
}

.content .col p {
	line-height: 1.2rem;
	margin-top: 5px;
	color: #112f48;
}


.content .col .read-more {
	font-size: 16px;
	display: flex;
	padding-top: 1rem;
	color: #03a9f4;
	transition: color 0.3s ease;
	justify-content: flex-end;
	padding-right: 10px;
}



.menu-items li:hover .mega-menu {
	opacity: 1;
	visibility: visible;
}

.content .col .read-more:hover {
	color: #ff5722;
}


/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
	transform: translateX(1rem);
	background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
	transform: rotate(45deg) translate(-0.5rem, 0.5rem);
	background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
	transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
	background: #132f48;
}

.menu-item {
	transition: var(--transition-05s);
	color: #fff;
}

.menu-item:hover {
	color: #941D28;
}

.mega-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	z-index: 1000;
}

/* Show mega menu on hover for desktops */
.nav-item:hover .mega-menu {
	display: block;
}

.nav-item:hover .mega-menu .btsec .common-border-btn {
	--border-btn: rgba(var(--second-color), 1);
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.nav-item:hover .mega-menu .btsec .common-border-btn::after {
	border-color: rgb(255 255 255);
}

/* Toggle mega menu visibility for mobile */
.mega-menu.visible {
	display: block;
}

/* Responsive style */

@media screen and (max-width: 1024px) {


	.navbar .menu-items {
		position: fixed;
		height: 100%;
		max-height: initial;
		overflow-y: auto;
		width: 80%;
		top: 65px;
		left: 0;
		background: #fcfcfc;
		display: block;
		transform: translateX(-100vh);
		transition: 0.3s ease-out;
		padding-bottom: 100px;
	}

	.menu-items.open {
		transform: translateY(0);
	}

	.menu-items li:first-child {
		margin-top: 20px;
	}

	.menu-items li a {
		padding: 10px 1rem;
		display: block;
		font-size: 18px;
	}

	.menu-items .dropdown-right .right-arrow {
		transform: rotate(90deg);
	}

	.menu-item.first-item {
		padding: 1rem 1rem;
	}

	/* DROPDOWN, MEGA MENUS */
	.menu-items .dropdown-menu,
	.menu-items .menu-right,
	.menu-items .mega-menu {
		position: static;
		opacity: 1;
		top: 4rem;
		visibility: visible;
		margin-left: -18px;
		width: auto;
		max-height: 0;
		transform: scaleX(0);
		transform-origin: left;
		overflow: hidden;
		transition: all 0.5s ease;
	}

	.menu-items .dropdown-menu,
	.menu-items .menu-right {
		padding-left: 1rem;
		width: 102%;
		margin-left: -10px;
	}

	.menu-items .mega-menu .col {
		padding-left: 1rem;
	}

	.expand-btn.open+.sample {
		max-height: 100%;
		transform: scaleZ(1);
	}

	.expand-btn.open+.blog.sample {
		max-height: 100%;
		transform: scaleZ(1);
		max-width: fit-content;
	}

	.navbar .sample {
		border-top: none;
	}

	.sample li {
		margin: 0;
	}

	.sample li:last-child {
		border-bottom: none;
	}

	.sample li a {
		font-size: 1rem;
	}

	.mega-menu .content {
		grid-template-columns: repeat(2, 1fr);
		padding: 1rem 1rem 0 1rem;
		width: 80%;
	}

	.mega-menu .content.content1 {
		display: inline;
		width: 40%;
	}

	.mega-menu .content .col {
		width: 100%;
		padding-top: 1rem;
		margin-bottom: 0.5rem;
	}

	.col .mega-links li,
	.col .mega-links li a {
		padding: 0 0.5rem;
	}

	.content .col .mega-links {
		border-left: 0;
		padding-left: 0.5rem;
	}

	.col .mega-links li {
		margin: 0;
	}
}


header {
	background: rgba(var(--white-color), 1);
	top: 0;
	z-index: 999;
	width: 100%;
}

.navbar {
	top: 0;
	z-index: 999;
	width: 100%;
	padding: 0px 0px;
}

.navbar .container {
	position: relative;
	justify-content: center;
	width: 100%;
	padding: 0;
}

.navbar.header-fixed {
	position: fixed;
	background: rgba(var(--white-color), 1);
	border: none;
	animation: slideDown 0.35s ease-out;
	backdrop-filter: blur(5px);
	box-shadow: 0px 5px 20px -8px rgba(14, 13, 14, 0.08);
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.menu-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.navbar-brand {
	height: 80px;
	/* width: 145px; */
	margin: 0;
}

.navbar-brand img {
	object-fit: contain;
}

.navbar-toggler {
	padding: 6px;
	border: none;
}

.navbar-toggler .navbar-toggler-icon {
	background: rgba(var(--white-color), 1);
	width: 1.1em;
	height: 2px;
	position: relative;
	display: block;
}

.navbar-toggler-icon.bar-2 {
	margin: 4px 0px;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
	margin-right: 0px;
}

.navbar .navbar-nav .nav-item .nav-link {
	color: rgba(var(--main-color), 1);
	transition: var(--transition-05s);
	padding: 8px 8px;
	margin-right: 8px;
	display: flex;
	height: 85px;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	text-transform: uppercase;
}

.navbar .navbar-nav .nav-item.dropdown .nav-link.active,
.navbar .navbar-nav .nav-item.dropdown .nav-link:hover,
.navbar .navbar-nav .nav-item.dropdown .nav-link:focus,
.navbar .navbar-nav .nav-item.dropdown .nav-link[aria-current="page"] {
	color: #941D28;
}

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
	position: revert;
}

.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
	content: '\f107';
	font-family: var(--font-awesome);
	font-weight: 600;
	border: none;
	margin-left: 0.45em;
	vertical-align: middle;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
	padding: 0px;
	border: 0;
	border-radius: 0;
	margin: 0 !important;
	transition: var(--transition-05s);
}

.navbar .navbar-nav .nav-item .dropdown-menu li a {
	font-weight: 600;
	font-size: 13px;
	border-bottom: 1px solid rgba(var(--black-color), 0.175);
	padding: 10px 15px;
	color: rgba(var(--black-color), 0.6);
	transition: var(--transition-05s);
	background: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar .navbar-nav .nav-item .dropdown-menu li a:active,
.navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar .navbar-nav .nav-item .dropdown-item.active,
.navbar .navbar-nav .nav-item .dropdown-item:active {
	color: rgba(var(--white-color), 1);
	background-color: rgba(var(--second-color), 1);
	border-color: rgba(var(--second-color), 1);
}

.navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
	border-bottom: none;
}

.scub-box {
	display: flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	margin-left: 20px;
}

.scub-box>a {
	font-size: 19px;
	padding: 5px 5px;
	color: rgb(0 0 0);
	position: relative;
}

.navbar-expand-lg .navbar-collapse {
	display: flex !important;
	flex-basis: auto;
	justify-content: end;
}

.cart-dot {
	--ehw-cd: 18px;
	font-family: var(--inter-font);
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--ehw-cd);
	height: var(--ehw-cd);
	background: rgba(var(--third-color), 1);
	color: rgba(var(--white-color), 1);
	border: 1.5px solid rgba(var(--third-color), 1);
	overflow: hidden;
	border-radius: 50%;
	padding: 2px;
	right: -2px;
	top: 2px;
	font-weight: 500;
	font-size: 10px;
}

a.btn.common-border-btn.logbtn {
	color: white;
	background: #030839;
	padding: 3px 13px;
	border-radius: 5px;
	font-weight: 400;
	border: 0px solid;
	margin: 0;
	transition: var(--transition-05s);
}

a.btn.common-border-btn.logbtn::after {
	display: none;
}

a.btn.common-border-btn.logbtn:hover {
	color: #030839;
	padding: 3px 13px;
	border-radius: 5px;
	margin: 0;
	font-weight: 400;
	background: #ffffff;
	border: 2px solid #030839;
}

.featurssectionnew {
	position: relative;
	transition: all 0.1s ease-in-out;

}

.featurssectionnew.nheader-fixed {
	top: 0;
	z-index: 999;
	width: 100%;
	padding: 0px 0px;
	position: fixed;
	transition: all 0.1s ease-in-out;
}

.newdiv {
	display: flex;
	gap: 10px;
}

.offcanvas.new-offcanvas.offcanvas-top {
	top: 10%;
	position: absolute;
	bottom: auto;
	height: max-content;
}

.offcanvas-body.loan-section .loan_box .loan_list {
	justify-content: center;
}

/* banner section */
.banner-section {
	--banner-hvh: 60vh;
	--banner-hhp: 100%;
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}

.bannerimg-box img {
	height: 60vh;
	width: 100%;
}

.banner-section>*:first-child,
.banner-slider>*:first-child>*,
.banner-slider>*:first-child>*>*,
.banner-slider>*:first-child>*>*>*,
.banner-slider>*:first-child>*>*>*>* {
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}

.banner-inner-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: rgb(238 238 238) no-repeat center center / cover;
	width: 100%;
	overflow: hidden;
}


.banner-slider.owl-carousel .owl-dots .owl-dot.active {
	color: rgba(var(--main-color), 1);
	transform: scale(1);
}

.banner-slider.owl-carousel .owl-nav button.owl-prev,
.banner-slider.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	--erl: 8%;
	--cobtn-after: rgba(var(--main-color), 1);
}

.banner-inner-page .banner-sub-title,
.banner-inner-page .banner-box span {
	margin: 0;
	text-align: center;
}

.banner-box {
	padding-left: 30px;
}

.banner-title,
.banner-box h2 {
	color: rgba(var(--black-color), 1);
	line-height: 50px;
	margin-bottom: 15px;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 11px;
	text-transform: uppercase;
}

a.btn.common-border-btn.whitebacbtn {
	color: rgba(var(--second-color), 1);
	--border-btn: rgba(var(--second-color), 1);
}

a.btn.common-border-btn.whitebacbtn:hover {
	color: #941D28;
	--border-btn: #941D28;
}

.banner-title,
.banner-box h2 span {
	color: rgba(var(--main-color), 1);
	display: block;
}

.banner-para {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(var(--black-color), 1);
	margin-bottom: 30px;
	line-height: 24px;
	font-size: 16px;
}

.banner-para p {
	margin: 8px;
}

.banner-para p:last-child {
	margin: 0px;
}

.banner-section.inner-pages .banner-title,
.banner-section.inner-pages .banner-box h2 {
	margin-bottom: 0px;
}

.banner-box .common-border-btn {
	--border-btn: rgba(var(--white-color), 1);
}

.banner-box .common-border-btn:hover,
.banner-box .common-border-btn:first-child:active,
.banner-box .common-border-btn:active,
.banner-box .common-border-btn:focus,
.banner-box :not(.btn-check)+.common-border-btn:active,
.banner-box .common-border-btn:focus-visible,
.banner-box button.common-border-btn:focus:not(:focus-visible),
.banner-box .common-border-btn:first-child:hover {
	--border-btn: rgba(var(--second-color), 1);
}


/* loan section */

.loan-section {
	background: #0024582b;
	position: relative;
}

.loan_box {
	z-index: 1;
	padding: 30px 0px;
}

.loan_box .loan_list {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-bottom: 10px;
}

.loan_box .loan_list .loan_item {
	margin: 0 10px;
}

.loan_box .loan_list .loan_item:last-child {
	margin-right: 0;
}

.loan_box .loan_list .loan_item .loan_link {
	font-weight: 500;
	color: rgba(var(--main-color), 1);
}

.loan_box .loan_list .loan_item .loan_link:hover {
	color: rgb(148, 29, 40);
}


.loan-section .form-control {
	border: 0;
	border-right: solid 1px #e6e7e8;
	background: #fff;
	padding: 0;
	text-align: center;
	color: #941D28;
	border-radius: 0;
	min-height: 56px;
	box-shadow: 0 0 8px rgb(98 98 98 / 25%);
	font-size: 16px;
	font-weight: 500;
}

.loan-section .form-control::placeholder {
	font-size: 16px;
	font-weight: 500;
}

.loan-section .Button {
	background: #364662;
	border: 0;
	padding: 10px 50px;
	width: 100%;
	height: 56px;
	display: block;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}

.loan-section input::placeholder {
	color: rgba(var(--main-color), 0.5);
	opacity: 1;
	/* Firefox */
}

.loan-section input::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: rgba(var(--main-color), 0.5);
}


/* featurssection */
.common-section.featurssection {
	background-color: #364662;
	padding: 0px 0px 0px;
	border-top: 4px solid #941D28;
}

.insurance-slider.owl-carousel .owl-dots .owl-dot.active {
	color: rgba(var(--main-color), 1);
	transform: scale(1);
}


.mainfe-box ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0px;
	flex-wrap: wrap;
	height: 60px;
}

.mainfe-box ul li {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0px;
	flex-grow: 1;
	flex-basis: auto;
	transition: var(--transition-05s);
	width: 12%;
	padding: 10px;
	border-left: 0.5px solid rgb(255 255 255 / 16%);
}

.mainfe-box ul li:last-child {
	background-color: rgba(var(--main-color), 1);
	border-right: 0.5px solid rgb(255 255 255 / 16%);
}

.mainfe-box ul li:last-child p {
	color: #ffff;
}

.mainfe-box ul li:last-child i {
	color: #ffffff;
}

.mainfe-box ul li:hover {
	transition: var(--transition-05s);
	/* border-bottom: 2px solid red; */
	box-shadow: rgba(var(--main-color), 1) 0px 2px 8px 0px;
}

.mainfe-box ul li a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

}

.mainfe-box ul li p {
	color: rgba(var(--white-color), 1);
	font-weight: 600;
	margin-bottom: 0;
	font-size: 14px;
	text-align: center;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 0px;
}


.mainfe-box ul li i {
	font-size: 25px;
	color: #ffffff;
}

.mainfe-box.newmain-box ul li a {
	gap: 13px;
}

.mainfe-box.newmain-box ul li:last-child {
	background-color: revert;
}

.mainfe-box.newmain-box ul li:last-child p {
	color: white;
}

.mainfe-box.newmain-box ul li:last-child i {
	color: rgba(var(--white-color), 1);
}



/* Insurance section */

section.common-section.Insurance-section {
	background: #ffffff;
}

section.common-section.Insurance-section.lastsec {
	background: #eeeeee;
}

.insurance-box {
	/* background: rgba(6, 19, 32, 0.9); */
	margin-bottom: 0px;
	padding: 50px;
}

.common-sub-title,
.common-box>span {
	color: #030839;
	display: block;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.insurance-box.common-box h3 {
	color: rgba(var(--black-color), 1) !important;
	font-size: 40px;
	margin-bottom: 10px;
}

.insurance-box.common-box h3 span {
	color: rgba(var(--main-color), 1) !important;
	display: block;
}

.insurance-box .common-para,
.insurance-box .common-box P {
	color: #000000;
	font-size: 18px;
	margin-bottom: 10px;
	margin-bottom: 20px;
}

.insurance-list {
	color: #000000;
	margin: 30px 0px;
	font-size: 15px;
}

.insurance-list li {
	margin-bottom: 15px;
}

.insurance-list i {
	color: rgba(var(--main-color), 1);
	margin-right: 10px;
	font-size: 18px;
}

.about-img {
	width: 100%;
	height: 530px;
	overflow: hidden;
}

.about-img img {
	border-radius: 10px;
}



/* footer section */

.footer-section {
	/* background: #000a26; */
	background: rgba(var(--main-color), 1);
	padding-top: 60px;
}

.inner-footer {
	padding-bottom: 40px;
}

.foot-title {
	color: #ffffff;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 17px;
}

.foot-list li {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.foot-list li a {
	font-weight: 300;
	transition: var(--transition-05s);
	color: #B2B2B2;
	color: rgba(var(--white-color), 1);
	font-size: 15px;
}

.foot-list li a:hover,
.foot-list li a:focus {
	color: #fff;
}

.foot-list.contact-list li:nth-child(2) a {
	text-decoration: underline;
	color: rgba(var(--white-color), 0.9);
	font-size: 15px;
}

.foot-list.contact-list li:last-child a,
.foot-list.contact-list li:nth-child(3) a {
	color: rgba(var(--third-color), 1);
	font-size: 15px;
}

.footer-box .common-para {
	color: rgb(255 255 255);
	font-size: 15px;
	line-height: 18px;
}

.footer-box .common-para strong {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 18px;
	color: #ffffff;
}

.copy-box {
	padding: 18px 0;
	border-top: 1px solid rgba(var(--white-color), 0.2);
}

.copy-text {
	color: #7E7E7E;
	color: rgba(var(--white-color), 0.65);
	font-weight: 500;
	font-size: 13px;
	text-align: left;
}

.social-list {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: start;
}

.bottomfdiclogo img {
	height: 35px;
	object-fit: contain;
}

a.bottomfdiclogo2 {
	height: 35px;
	object-fit: contain;
}

li.fdiclogomain-box {
	display: flex;
	gap: 2px;
	align-items: center;
}

.social-list li a {
	color: #002036;
	color: rgba(var(--white-color), 0.95);
	font-size: 15px;
	transition: var(--transition-05s);
}

.social-list li a:hover,
.social-list li a:focus {
	color: #fff;
}

.newsocialfoot {
	justify-content: flex-end;
}




/* ******************************************innner pages design css start************************************************ */
.banner-section.banner-inner-page {
	--banner-hvh: 40vh;
	position: relative;
}

.banner-inner-section {
	background: rgb(238 238 238) no-repeat center center / cover;
	display: flex;
	align-items: center;
}

.banner-section.banner-inner-page::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0px;
	height: 100%;
	background: linear-gradient(to right, #000, #000000c2, #00000052);
	width: 100%;
	z-index: 0;
}

.inner-banner-box .banner-title {
	color: rgba(var(--white-color), 1);
}

.banner-inner-section .breadcrumb {
	display: flex;
	position: relative;
	z-index: 3;
}

.banner-inner-section .breadcrumb-links {
	display: flex;
	column-gap: 1rem;
	align-items: center;
}

.banner-inner-section .breadcrumb-links>li:nth-child(n + 4) {
	display: none;
}

.banner-inner-section .breadcrumb-box {
	display: flex;
	align-items: center;
}

.banner-inner-section .breadcrumb-link {
	color: #ffffff;
}

.banner-inner-section .breadcrumb-box:hover>*:not(.breadcrumb-icon) {
	color: #ffffff;
}

.banner-inner-section .breadcrumb-icon,
.banner-inner-section .breadcrumb-icon-home {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	color: #ffffff;
}

.banner-inner-section .breadcrumb-links li:first-child .breadcrumb-text {
	display: none;
}

.banner-inner-section .breadcrumb-text {
	margin-left: 0.5rem;
	font-size: 18px;
	line-height: 1.25rem;
	font-weight: 500;
	color: #ffffff;
	text-transform: capitalize;
}

@media (min-width: 640px) {
	.banner-inner-section .breadcrumb-links>li:nth-child(n + 4) {
		display: block;
	}

	.banner-inner-section .breadcrumb-links li:first-child .breadcrumb-text {
		display: block;
	}
}


.innerpagecommonheading {
	font-size: 40px;
	color: rgba(var(--main-color), 1) !important;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 1px;
}

.innerpageheading-box {
	position: relative;
}

.innerpageheading-box .common-title,
.innerpageheading-box .common-box>h3,
.innerpageheading-box .common-section .common-box>h3 {
	margin-bottom: 10px;
	font-size: 30px;
}

.innerpageheading-box .common-title span {
	color: #941D28;
}

.innerpagecommonheading::after {
	content: "";
	width: 40px;
	height: 46px;
	position: absolute;
	top: -6px;
	border-top: 8px solid #941D28;
	border-left: 8px solid #941D28;
	left: -15px;
	border-radius: 5px;
}

.innerpageheading-box p {
	color: #000000;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 0px;
}

.innerpageheading-box p a {
	font-weight: 500;
	font-style: italic;
	transition: var(--transition-05s);
}

.innerpageheading-box p a:hover {
	font-style: italic;
	text-decoration: underline;
	color: #ffffff;
}

.contactcard-box h4 {
	background: rgba(var(--main-color), 1);
	margin: 0;
	padding: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 9px;
	justify-content: start;
}

.contactcard-box h4 i {
	color: rgba(var(--white-color), 1);
}

.contactcard {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	gap: 10px;
	padding: 10px 10px;
	align-self: center;
	justify-self: center;
	background: #b0bcdf38;
}

.address-details {
	width: 100%;
}

.address-details li,
.address-details li a {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 5px;
	margin-bottom: 4px;
	color: #364662;
	font-size: 16px;
}

.address-details li a:hover {
	text-decoration: underline;
	color: #ffffff;
	transition: var(--transition-05s);
}

.address-details li i {
	font-size: 18px;
	color: rgba(var(--main-color), 1);
}

.address-details span {
	font-weight: 500;
	font-size: 18px;
	display: block;
	margin-bottom: 4px;
	color: rgba(var(--main-color), 1);
}

.contactcard-btn {
	width: 50%;
	margin-bottom: 5px;
}

@media (max-width: 768px) {
	.contactcard-btn {
		width: 100%;
	}

	.contact-card {
		min-height: auto;
	}
}

.contact-card {
	min-height: 686px;
	width: 100%;
	background-color: #eef0f8;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card .card-image {
	width: 100%;
	aspect-ratio: 4 / 4;
	object-fit: cover;
}

.contact-card .card-content {
	padding: 1.5rem;
	text-align: center;
}

.contact-card .card-name {
	font-size: 1.5rem;
	font-weight: bold;
	color: #030839;
	margin-bottom: 0.5rem;
}

.contact-card .card-details p {
	color: #364662;
	margin-bottom: 1rem;
}

.contact-card .card-details p:first-child {
	min-height: 60px;
}

a.card-button.btn.common-border-btn {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	gap: 7px;
}

a.card-button.btn.common-border-btn i {
	font-size: 16px;
}

.banner-slider.owl-carousel .owl-dots {
	font-family: var(--bellefair-font);
	counter-reset: dots;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: max-content;
	position: absolute;
	bottom: 30px;
	gap: 20px;
}

.landing-slider.owl-carousel .owl-dots .owl-dot {
	--banner-ehw-dot: max-content;
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: var(--banner-ehw-dot);
	height: var(--banner-ehw-dot);
	background: rgba(var(--main-color), 0);
	border-radius: 50%;
	transition: var(--transition-05s);
	color: rgba(var(--main-color), 0.6);
	font-size: 24px;
	line-height: 1;
	transform: scale(0.7);
}

.landing-slider.owl-carousel .owl-dots .owl-dot::before {
	counter-increment: dots;
	content: counter(dots);
	transition: var(--transition-05s);
}

.landing-slider.owl-carousel .owl-dots .owl-dot.active {
	color: rgba(var(--main-color), 1);
	transform: scale(1);
}

.landing-slider.owl-carousel .owl-nav button.owl-prev,
.landing-slider.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	--erl: 0%;
	top: 50%;
	--cobtn-after: rgb(148, 29, 40);
}


.contact-formsec.loan-section .form-control {
	text-align: start;
	padding: 10px;
	min-height: auto;
	color: rgba(var(--main-color), 1);
}

.contact-formsec.loan-section .form-select {
	text-align: start;
	padding: 10px;
	border: 0;
	border-right: solid 1px #e6e7e8;
	cursor: pointer;
	/* padding: 0; */
	/* text-align: center; */
	color: rgba(var(--main-color), 1);
	border-radius: 0;
	/* min-height: 56px; */
	box-shadow: 0 0 8px rgb(98 98 98 / 25%);
	font-size: 16px;
	font-weight: 500;
}

.showoption {
	color: rgba(var(--main-color), 0.5);
}

.form-select .selected-option {
	color: rgba(var(--main-color), 1);
}

.loan-section textarea::placeholder {
	color: rgba(var(--main-color), 0.5);
	opacity: 1;
	/* Firefox */
}

.loan-section textarea::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: rgba(var(--main-color), 0.5);
}

.contact-image img {
	width: 100%;
	height: 605px;
	border-radius: 10px;
}

.innerpageheading-box .common-para {
	font-size: 15px;
	color: #000000;
	margin-bottom: 1rem;
}

.common-Insurance-section {
	background-color: #eeeeee;
}

section.common-section.contact-formsec.loan-section {
	background-color: #fff;
}

/* default section  */

.defaultsec .common-box {
	margin-bottom: 1rem;
}

.defaultsec h3 {
	margin-bottom: 10px;
	font-size: 30px;
	text-transform: capitalize;
	color: rgba(var(--main-color), 1);
	font-weight: 600;
	line-height: 1.3;
}

.defaultsec h3 span {
	color: #941D28;
}

.defaultsec p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(var(--black-color), 1);
	margin-bottom: 10px;
	line-height: 1.5;
	font-size: 16px;
}

.defaultsec p a {
	font-weight: 500;
	font-style: italic;
	transition: var(--transition-05s);
}

.defaultsec p a:hover {
	font-style: italic;
	text-decoration: underline;
	color: #941D28;
}

.defaultsec h4 {
	margin-bottom: 0.2rem;
	font-size: 25px;
	text-transform: capitalize;
	color: #941D28;
	font-weight: 500;
	line-height: 1.3;
}

.defaultsec ul {
	padding-left: 2rem;
	margin-bottom: 1rem;
}

.defaultsec ul li {
	color: #000000;
	font-weight: 500;
	font-size: 16px;
}

.defaultsec ul li::marker {
	content: "▣ ";
	color: #941D28;
	font-size: 20px;
}

.defaultsec strong {
	font-size: 16px;
	color: rgba(var(--main-color), 1);
	margin-bottom: 1rem;
	display: block;
}

.defaultsec .download-btn-box {
	display: grid;
	align-items: center;
	justify-content: flex-start;
	grid-template-columns: auto auto;
	gap: 20px;
}

.defaultsec .download-btn-box img {
	pointer-events: none;
	user-select: none;
}

/* FAQ start */
.filterFAQ {
	margin-top: 10px;
}

.filterFAQ .accordion-header button {
	font-size: 15px;
	font-weight: 600;
}

.filterFAQ .accordion-item {
	border-radius: 0px !important;
	border: none;
	overflow: hidden;
	margin-bottom: 15px;
	background: rgba(var(--main-color), 1);
}

.filterFAQ .accordion-item .accordion-button {
	box-shadow: none !important;
	background: rgba(var(--white-color), 0);
	border-radius: 0px !important;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 1;
	color: rgba(var(--white-color), 1);
	border: 0px solid #941D28;
	min-height: 60px;
}

.filterFAQ .accordion-button:not(.collapsed) {
	background: rgba(var(--second-color), 0);
	box-shadow: none !important;
}

.filterFAQ .accordion-button::after {
	content: '\f106';
	font-family: var(--font-awesome);
	color: #941D28;
	transform: rotate(90deg);
	margin-top: 2px;
	background-image: none;
}

.filterFAQ .accordion-button:not(.collapsed)::after {
	background-image: none;
	/* filter: contrast(0) brightness(2); */
	transform: rotate(180deg);
}

.filterFAQ .accordion-body,
.filterFAQ .accordion-body .common-para {
	margin: 0;
}

.filterFAQ .accordion-body,
.filterFAQ .accordion-body .common-para p {
	font-size: 14px;
	color: #ffffff;
}

.common-section.faq-section>*>* {
	align-items: center;
}

.faq-img {
	width: calc(100% + 40%);
	margin-left: 20%;
}

.faq-AfterImg {
	position: absolute;
	right: 0px;
	bottom: 10px;
	height: 540px;
	z-index: 2;
}

.faq-box {
	padding: 0px 50px;
}

.faq-box.mycard-box {
	padding: 0;
}

.faq-box img {
	height: auto;
	width: 100%;
	border-radius: 10px;
}

/* FAQ end */



/* modal design */

.modal.csmodal {
	--bs-modal-bg: rgba(255, 255, 255, 0);
	/* background: radial-gradient(circle, rgba(0,43,255,1) 37%, rgba(0,0,0,1) 64%); */
	background-color: #00000099;
	outline: none;
	border: 0;
	--bs-modal-width: 60%;
}

.modal.csmodal .modal-header {
	border-bottom: 0px solid rgba(255, 255, 255, 0);
}

.modal.csmodal .modal-content {
	border: 0;
}

.btn-close {
	background-image: url(../images/btclose.png) !important;
	background-repeat: no-repeat;
	background-position: center;
}

.search-modal .input-box {
	border-radius: 0;
	border: 0;
	background: transparent;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: 300;
	width: 100%;
	display: inline-block;
	padding: 15px;
	font-size: 1.5625rem;
}

.search-modal .input-box {
	box-shadow: none;
}

.search-modal .form-control {
	position: relative;
	color: #941D28;
}

.search-modal .form-control {
	min-height: 50px;
}

.modal-body.search-modal {
	padding: 0;
}


#mobileheader {
	display: none;
}

#mobilenewsec {
	display: none;
}




/* responsive header design */
@media (max-width: 1599px) {
	.mega-menu {
		left: 0;
		width: 100%;
	}

	.banner-slider.owl-carousel .owl-nav button.owl-prev,
	.banner-slider.owl-carousel .owl-nav button.owl-next {
		position: absolute;
		--erl: 1%;
	}

	/* inner pages responsive */
	.banner-section.banner-inner-page {
		--banner-hvh: 25vh;
	}
}

@media (max-width: 1199px) {

	.banner-title,
	.banner-box h2 {
		line-height: 38px;
		font-size: 30px;
	}

	.banner-section {
		--banner-hvh: 40vh;
	}

	.bannerimg-box img {
		height: 42vh;
	}

	.insurance-box {
		padding: 0px;
	}

	.insurance-box.common-box h3 {
		font-size: 30px;
		line-height: 1.1;
	}

	.insurance-list {
		margin: 10px 0px;
	}

	.insurance-list li {
		margin-bottom: 10px;
	}

	#desk {
		display: none;
	}

	#mobilenewsec {
		display: block;
	}

	.clientfeaturs-slider.owl-carousel .owl-dots {
		font-family: var(--bellefair-font);
		counter-reset: dots;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: max-content;
		position: absolute;
		bottom: 30px;
		gap: 20px;
	}

	.clientfeaturs-slider.owl-carousel .owl-dots .owl-dot {
		--banner-ehw-dot: max-content;
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: var(--banner-ehw-dot);
		height: var(--banner-ehw-dot);
		background: rgba(var(--main-color), 0);
		border-radius: 50%;
		transition: var(--transition-05s);
		color: rgba(var(--main-color), 0.6);
		font-size: 24px;
		line-height: 1;
		transform: scale(0.7);
	}

	.clientfeaturs-slider.owl-carousel .owl-dots .owl-dot::before {
		counter-increment: dots;
		content: counter(dots);
		transition: var(--transition-05s);
	}

	.clientfeaturs-slider.owl-carousel .owl-dots .owl-dot.active {
		color: rgba(var(--main-color), 1);
		transform: scale(1);
	}

	.clientfeaturs-slider.owl-carousel .owl-nav button.owl-prev,
	.clientfeaturs-slider.owl-carousel .owl-nav button.owl-next {
		position: absolute;
		--erl: 0%;
		top: 30%;
		--cobtn-after: rgba(var(--white-color), 1);
	}

	.common-section {
		padding: 40px 0px;
	}

	.clientfeaturs-slider .item {
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0px;
		flex-grow: 1;
		flex-basis: auto;
		transition: var(--transition-05s);
		width: auto;
		padding: 20px;
	}

	.clientfeaturs-slider .item:hover {
		transition: var(--transition-05s);
		/* border-bottom: 2px solid red; */
		box-shadow: rgba(var(--main-color), 1) 0px 2px 8px 0px;
	}

	.clientfeaturs-slider .item a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.clientfeaturs-slider .item a p {
		color: rgba(var(--white-color), 1);
		font-weight: 600;
		margin-bottom: 0;
		font-size: 14px;
		text-align: center;
		line-height: 14px;
		text-transform: uppercase;
		letter-spacing: 0px;
	}

	.clientfeaturs-slider .item a i {
		font-size: 45px;
		color: #ffffff;
		height: 70px;
		display: flex;
		align-items: self-start;
	}

	.clientfeaturs-slider .item.lastitem {
		background-color: rgba(var(--main-color), 1);
	}

	.Insurance-section .top-right-nav-text .highlightedtext {
		font-size: 20px;
	}

	.faq-box {
		padding: 0px 0px;
	}

	.filterFAQ .accordion-item .accordion-button {
		font-size: 13px;
		text-transform: uppercase;
		line-height: 20px;
		min-height: 53px;
	}

}

@media (max-width: 991px) {

	#deskheader,
	#deskheader1,
	#deskheader2 {
		display: none;
	}

	.navbar .container {
		position: relative;
		justify-content: space-between;
		padding-right: calc(var(--bs-gutter-x)* .5);
		padding-left: calc(var(--bs-gutter-x)* .5);
	}

	.faq-box img {
		height: 355px;
	}

	#mobileheader {
		display: block;
	}

	.insurance-slider.owl-carousel .owl-dots .owl-dot.active {
		color: rgba(var(--main-color), 1);
		transform: scale(1);
	}

	.insurance-slider.owl-carousel .owl-nav button.owl-prev,
	.insurance-slider.owl-carousel .owl-nav button.owl-next {
		position: absolute;
		--erl: -6%;
		top: 40%;
		--cobtn-after: rgb(250 20 47);
	}

	button.btn-close.nebtclose {
		background-image: url(../images/blackbtn.png) !important;
		opacity: 3;
	}

	.banner-box {
		padding-left: 0px;
	}

	.offcanvas-backdrop {
		background-color: #ffffff00 !important;
	}

	.form-control.new-input {
		border: 0;
		/* border-right: solid 1px #e6e7e8; */
		background: #fff;
		padding: 0;
		text-align: left;
		color: #941D28;
		border-radius: 0;
		padding: 10px;
		/* height: 48px; */
		box-shadow: 0 0 8px rgb(0 36 88 / 40%);
		font-size: 16px;
		font-weight: 500;
	}

	.my-offcanvas .offcanvas-backdrop.show {
		opacity: 0;
	}

	.my-offcanvas .offcanvas-header {
		background: #eeeeee;
	}

	.my-offcanvas .offcanvas-body {
		background-color: #0024582b;
	}

	.navbar-brand.mob-logo {
		height: 40px;
	}

	.navbar-toggler {
		padding: 6px;
		border: none;
		background: rgba(var(--main-color), 1);
		border-radius: 0px;
	}

	.navbar-toggler .navbar-toggler-icon {
		background: rgba(var(--white-color), 1);
		width: 1.1em;
		height: 2px;
		position: relative;
		display: block;
	}

	.top-menu {
		background: transparent;
	}

	.navbar-toggler-icon.bar-1 {
		width: 0.6em;
	}

	.navbar-toggler-icon.bar-2 {
		width: 0.9em;
	}

	.navbar-toggler-icon.bar-2 {
		margin: 4px 0px;
	}

	.customedropdown .dropdown-menu {
		position: static !important;
		inset: auto;
		margin: auto;
		transform: initial !important;
		max-height: 500px;
		overflow-x: scroll;
	}

	.top-nav-text {
		justify-content: start;
	}

	.top-right-nav-text {
		justify-content: start;
	}

	.btn-close:hover {
		color: #000;
		text-decoration: none;
		opacity: 10.75;
	}

	span.sub-menu-title {
		padding: 0px 10px;
		font-size: 18px;
		font-weight: 700;
		color: #0e2678;
	}

	.dropdown-divider {
		border-top: 3px solid rgb(0 36 88 / 23%);
	}

	.customedropdown .dropdown-item {
		font-weight: 600;
		font-size: 14px;
		/* border-bottom: 1px solid rgba(var(--black-color), 0.175); */
		padding: 8px 10px;
		color: rgba(var(--black-color), 1);
		transition: var(--transition-05s);
		/* background: none; */
	}

	.customedropdown .dropdown-item:hover {
		color: rgb(148, 29, 40);
		background-color: rgba(var(--main-color), 1);
		/* border-color: rgba(var(--main-color), 1); */
	}

	.customedropdown a.nav-link.dropdown-toggle,
	.newlist li a.nav-link {
		display: flex;
		align-items: center;
		justify-content: start;
		gap: 6px;
		font-size: 20px;
		text-transform: uppercase;
		font-weight: 600;
		color: rgba(var(--main-color), 1);
	}

	.navbar-nav .nav-link.active,
	.navbar-nav .show>.nav-link {
		color: rgb(148, 29, 40);
	}

	.customimg-section {
		width: 100%;
		height: 30vw;
		overflow: hidden;
		border-radius: 30px;
	}

	.insurance-list li {
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 0px;
	}

	/* innerpages responsive */
	.innerpageheading-box .common-title,
	.innerpageheading-box .common-box>h3,
	.innerpageheading-box .common-section .common-box>h3 {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.faq-box {
		padding: 0px;
	}
}

@media (max-width: 767px) {
	.banner-inner-slider .row {
		flex-direction: column-reverse;
		margin-bottom: 10px;
	}

	.contact-card .card-details p:first-child {
		min-height: auto;
	}

	.faq-box img {
		height: auto;
	}

	.contactcard-box {
		height: 300px;
	}

	.insurance-list li {
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 0px;
	}

	.contact-card {
		min-height: auto;
	}

	.contact-card .card-image {
		aspect-ratio: 5 / 3;
	}

	.insurance-slider.owl-carousel .owl-dots {
		position: absolute;
		bottom: -15px;
		left: 0px;
		right: 0px;
		margin-top: 0px;
		gap: 8px;
	}

	.insurance-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 10px;
		background: rgba(var(--black-color), 0.5);
	}

	.insurance-slider.owl-carousel button.owl-dot.active {
		background: rgba(var(--main-color), 1);
	}

	.insurance-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 12px;
		width: var(--ehw-ocbd);
		height: var(--ehw-ocbd);
		background: rgba(var(--black-color), 0.5);
		border-radius: 50%;
		transition: var(--transition-05s);
	}

	.insurance-slider.owl-carousel .owl-dots {
		display: flex;
		gap: 8px;
		justify-content: center;
		/* margin-top: 20px; */
	}

	.insurance-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 12px;
		width: var(--ehw-ocbd);
		height: var(--ehw-ocbd);
		background: rgba(var(--black-color), 0.5);
		border-radius: 50%;
		transition: var(--transition-05s);
	}

	.insurance-slider.owl-carousel button.owl-dot.active {
		background: rgba(var(--main-color), 1);
	}

	.insurance-slider .owl-nav {
		display: none !important;
	}




	.banner-slider.owl-carousel .owl-dots {
		position: absolute;
		bottom: 20px;
		left: 0px;
		right: 0px;
		margin-top: 0px;
		gap: 8px;
	}

	.banner-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 10px;
		background: rgba(var(--black-color), 0.5);
	}

	.banner-slider.owl-carousel button.owl-dot.active {
		background: rgba(var(--main-color), 1);
	}

	.banner-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 12px;
		width: var(--ehw-ocbd);
		height: var(--ehw-ocbd);
		background: rgba(var(--black-color), 0.5);
		border-radius: 50%;
		transition: var(--transition-05s);
	}

	.banner-slider.owl-carousel .owl-dots {
		display: flex;
		gap: 8px;
		justify-content: center;
		margin-top: 20px;
	}

	.banner-slider.owl-carousel button.owl-dot {
		--ehw-ocbd: 12px;
		width: var(--ehw-ocbd);
		height: var(--ehw-ocbd);
		background: rgba(var(--black-color), 0.5);
		border-radius: 50%;
		transition: var(--transition-05s);
	}

	.banner-slider.owl-carousel button.owl-dot.active {
		background: rgba(var(--main-color), 1);
	}

	.banner-slider .owl-nav {
		display: none !important;
	}

	.bannerimg-box img {
		height: 330px;
		object-position: top;
	}

	.banner-section {
		--banner-hvh: 60vh;
	}

	.banner-inner-slider {
		align-items: self-start;

	}

	.top-nav-text {
		align-items: self-start;
		text-align: left;
	}

	.top-nav-text em {
		text-align: left;
	}

	.customedropdown a.nav-link.dropdown-toggle,
	.newlist li a.nav-link {
		font-size: 15px;
	}

	.defaultsec h3 {
		font-size: 20px;
	}

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

	.faq-box {
		padding: 0px;
	}
}

@media (max-width: 580px) {
	.customimg-section {
		width: 100%;
		height: 50vw;
		overflow: hidden;
		border-radius: 30px;
	}

	.copy-text {
		text-align: center;
	}

	.social-list {
		justify-content: center;
	}

	.navbar-brand {
		height: 60px;
	}

	.my-offcanvas {
		width: 100% !important;
	}

	.banner-section.banner-inner-page {
		--banner-hvh: 20vh;
	}


	.banner-section .row,
	.common-section .row,
	.footer-section .row,
	.quote-box .row {
		justify-content: center !important;
	}

	.inner-banner-box {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.contactcard-box {
		height: auto;
	}

	.contactcard {
		grid-template-columns: repeat(1, 1fr);
	}

	.insurance-slider.owl-carousel .owl-dots {
		position: absolute;
		bottom: -26px;
	}

	.schedule_banner p {
		font-size: 10px;
	}

	.highlightedtext {
		font-size: 12px;
	}

	.top-menu {
		font-size: 12px;
	}

	.banner-title,
	.banner-box h2 {
		line-height: 22px;
		font-size: 18px;
	}

	.insurance-box .common-para,
	.insurance-box .common-box P {
		margin: 10px 0px;
	}

	.insurance-box.common-box h2 {
		font-size: 18px;
		line-height: 20px;
	}

	.insurance-box.common-box h2 span {
		display: inline;
	}

	.Insurance-section .top-right-nav-text em {
		font-size: 18px;
		font-weight: 500;
	}

	.Insurance-section .top-right-nav-text .highlightedtext {
		font-size: 16px;
	}

	.banner-para {
		margin-bottom: 10px;
		line-height: 18px;
		font-size: 14px;
	}

	.about-img {
		height: auto;
	}

	.banner-inner-section .breadcrumb {
		margin-top: 0 !important;
	}

	/* .top-menu {
		display: none;
	} */

	.innerpageheading-box p {
		font-size: 15px;
	}

	.contactcard-box h4 {
		font-size: 15px;
	}

	.footer-section {
		padding-top: 20px;
	}

	.footer-box .common-para strong {
		margin-bottom: 3px;
		font-size: 15px;
	}

	.footer-box .common-para {
		color: rgb(114 114 114);
		font-size: 12px;
		line-height: 16px;
	}

	.contact-image img {
		width: 100%;
		height: auto;
	}
}


/* new css add 25.11.2024 */

.button {
	background-color: #364662;
	/* Dark red color */
	color: white;
	/* Text color */
	padding: 7px 10px;
	font-size: 12px;
	/* Font size */
	border: none;
	/* No border */
	border-radius: 0px;
	/* Rounded corners */
	cursor: pointer;
	/* Pointer cursor on hover */
	text-align: center;
	/* Center text */
}

.button:hover {
	background-color: #364662;
	/* Slightly lighter red on hover */
}


/* new css add 09.01.2025 */

.featurssectionnew ul.main-nav>li:nth-child(2) {
	border-left: 0.5px solid rgb(255 255 255 / 16%) !important;
}

.featurssectionnew.nheader-fixed ul.main-nav>li:nth-child(2) {
	border-left: 0px solid rgb(255 255 255 / 16%) !important;
}

/* .bottomfdiclogo {
	height: 20px;
	object-fit: cover;
} */
/* 
.bottomfdiclogo2 {
	height: 24px;
	object-fit: cover;
} */

.featurssectionnew.NNFEASEC.nheader-fixed {
	display: block;
}

.featurssectionnew.NNFEASEC {
	display: none;
}

.headlogo-box img {
	height: 70px;
	object-fit: contain;
	object-position: center;
}

@media (max-width:1366px) {
	.featurssectionnew ul.main-nav>li>a.mega-menu>span {
		color: rgba(var(--white-color), 1);
		font-weight: 600;
		margin-bottom: 0;
		font-size: 12px;
		text-align: center;
		line-height: normal;
	}

	.navbar-brand {
		height: 65px;
	}

	.landing-slider.owl-carousel .owl-nav button.owl-prev,
	.landing-slider.owl-carousel .owl-nav button.owl-next {
		position: absolute;
		--erl: -5%;
	}
}

@media (max-width: 991px) {
	header {
		background: rgba(var(--white-color), 1);
		top: 0;
		z-index: 999;
		width: 100%;
		position: sticky;
		top: 0;
		padding: 0px 0px 10px 0px;
	}

}

.table-container {
	background-color: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin-top: 50px;
}

.custom-table {
	border-collapse: separate;
	border-spacing: 0 15px;
}

.custom-table thead th {
	background-color: #38547d;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 15px;
	font-weight: 600;
}

.custom-table tbody tr {
	background-color: #f8f9fa;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.custom-table tbody tr:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-table td {
	padding: 15px;
	vertical-align: middle;
}


@media (max-width: 767px) {
	.custom-table thead {
		display: none;
	}

	.custom-table tbody tr {
		display: block;
		margin-bottom: 20px;
		border-bottom: 2px solid #38547d;
	}

	.custom-table tbody td {
		display: flex;
		text-align: left;
		padding: 10px;
		position: relative;
		align-items: self-start;
		justify-content: space-between;
		width: 100%;
		flex-wrap: wrap;
		flex-direction: column;
	}

	.custom-table tbody td::before {
		content: attr(data-label);
		font-weight: 600;
		text-align: left;
		color: rgba(var(--black-color), 1);
	}
}

[data-label="Feature"] {
	font-weight: 700;
	color: #941D28
}

.innerpageheading-box p.common-para a:hover {
	text-decoration: underline;
	color: #000000;
}

.paralink p a:hover {
	text-decoration: underline;
	color: #000000;

}

/* new css for disclosuresec */

.defaultsec ul.pdfsec {
	list-style: none !important;
	padding-left: 0rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	display: flex;
	justify-content: start;
	gap: 20px;
	flex-wrap: wrap;

}

.pdfimgsec {
	width: 40px;
	height: 40px;
}

.defaultsec ul.pdfsec li {
	padding: 10px 20px;
	background: #fff;
	border: 0px solid;
	border-radius: 0px;
	width: 309px;
	box-shadow: 0px 6px 12px rgba(30, 10, 58, 0.04);
	border-bottom: 5px solid transparent;
	transition: var(--transition-05s);
}

.defaultsec ul.pdfsec li:hover {
	border-bottom: 5px solid rgba(var(--main-color), 1);
	transition: var(--transition-05s);
}

.defaultsec ul.pdfsec li::marker {
	display: none !important;
	content: "";
}

.defaultsec ul.pdfsec li a i {
	color: #941D28;
	font-size: 35px;
	padding: 5px;
}

.defaultsec ul.pdfsec li a {
	display: flex;
	align-items: self-start;
	flex-direction: column;
	justify-content: start;
	gap: 10px;
	margin-bottom: 0rem;
	transition: var(--transition-05s);
}

.defaultsec ul.pdfsec li a:hover {
	transition: var(--transition-05s);
	color: #941D28;
}

.table th {
	position: sticky;
	top: -1px;
	background-color: #38547d;
	z-index: 1;
	color: #fff;
	border: none;
}

.small-text {
	font-size: 0.8rem;
}

.table-secondary {
	border: 1px solid #eee !important;
}

.table-secondary strong {
	margin-bottom: 0 !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>*,
.table-striped>tbody>tr:nth-of-type(even)>* {
	background-color: #fff;
}

.note {
	font-size: 0.8rem;
	text-align: left;
}


.category-header {
	font-weight: bold;
}

.specials-row {
	height: 100px;
}

.stampimg img {
	height: 100px;
	object-fit: contain;
}

@media(max-width:768px) {
	.defaultsec ul.pdfsec li {
		width: 100%;
	}
}