@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-Bold.eot");
	src: url("../fonts/Outfit-Bold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Outfit-Bold.woff2") format("woff2"),
		url("../fonts/Outfit-Bold.woff") format("woff"),
		url("../fonts/Outfit-Bold.ttf") format("truetype"),
		url("../fonts/Outfit-Bold.svg#Outfit-Bold") format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-ExtraBold.eot");
	src: url("../fonts/Outfit-ExtraBold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Outfit-ExtraBold.woff2") format("woff2"),
		url("../fonts/Outfit-ExtraBold.woff") format("woff"),
		url("../fonts/Outfit-ExtraBold.ttf") format("truetype"),
		url("../fonts/Outfit-ExtraBold.svg#Outfit-ExtraBold") format("svg");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-Medium.eot");
	src: url("../fonts/Outfit-Medium.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Outfit-Medium.woff2") format("woff2"),
		url("../fonts/Outfit-Medium.woff") format("woff"),
		url("../fonts/Outfit-Medium.ttf") format("truetype"),
		url("../fonts/Outfit-Medium.svg#Outfit-Medium") format("svg");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-Regular.eot");
	src: url("../fonts/Outfit-Regular.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Outfit-Regular.woff2") format("woff2"),
		url("../fonts/Outfit-Regular.woff") format("woff"),
		url("../fonts/Outfit-Regular.ttf") format("truetype"),
		url("../fonts/Outfit-Regular.svg#Outfit-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Outfit";
	src: url("../fonts/Outfit-SemiBold.eot");
	src: url("../fonts/Outfit-SemiBold.eot?#iefix") format("embedded-opentype"),
		url("../fonts/Outfit-SemiBold.woff2") format("woff2"),
		url("../fonts/Outfit-SemiBold.woff") format("woff"),
		url("../fonts/Outfit-SemiBold.ttf") format("truetype"),
		url("../fonts/Outfit-SemiBold.svg#Outfit-SemiBold") format("svg");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

/* Reset css  */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Outfit";
}

ul {
	list-style: none;
}

ul,
li {
	margin: 0;
	padding: 0;
}

a {
	color: #000;
	transition: all 0.5s ease !important;
	text-decoration: none;
}

.pad-0 {
	padding: 0;
}

.pad-left-0 {
	padding-left: 0;
}

.pad-right-0 {
	padding-right: 0;
}

.common-sub-heading {
	font-size: 14px;
	color: #0c0c0c;
	font-weight: 600;
	border-radius: 3px;
	background-color: #dde4ff;
	width: fit-content;
	padding: 6px 30px;
}

.common-heading {
	font-size: 40px;
	line-height: 50px;
	color: #0c0c0c;
	font-weight: 700;
	text-align: center;
}

.common-btn {
	display: inline-block;
	position: relative;
	padding: 10px 20px;
	border-radius: 4px;
	background-color: #0b4df5;
	font-size: 17px;
	color: #ffffff;
	font-weight: 500;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
	transition: background-color 0.3s ease;
}

.common-btn::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: #f92828;
	transform: scaleX(0);
	transform-origin: left;
	z-index: -1;
	transition: transform 0.3s ease;
}

.common-btn:hover {
	color: #ffffff;
}

.common-btn:hover::before {
	transform: scaleX(1);
}

.common-btn-2 {
	background-color: #f92828;
}

.common-btn-2::before {
	background-color: #0b4df5;
}

.animate {
	animation: slideDown 0.7s ease-in-out;
}

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

	to {
		transform: translateY(0);
	}
}

/* top header  */
.top-header {
	background-color: #01081b;
	padding: 8px;
}

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

.top-header-left {
	display: flex;
	align-items: center;
	gap: 40px;
}

.top-header-info {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-header-info a {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
}

.top-header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-header-btn-container {
	border-radius: 4px;
	background-color: #f92828;
	margin-left: 10px;
	transition: all 0.5s ease;
}

.top-header-btn-container:hover {
	background-color: #0b4df5;
	color: #fff;
}

.top-header-btn-container:hover a {
	color: #fff;
}

.header-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	padding: 1px 10px;
}

/* main header section css here  */
.main-header {
	background-color: #ffffff;
	transition: all 0.5s ease;
	position: fixed;
	padding: 0;
	top: 43px;
	left: 0;
	right: 0;
	z-index: 999;
	box-shadow: 0 0 5px #e1e1e1;
}

.pos-fixed {
	top: 0;
}

.logo-container img {
	max-width: 100%;
	height: auto;
}

.main-header-container {
	position: relative;
}

.header-manu-container ul {
}

/* .main-header ul li {
margin-right: 35px;
}

.main-header ul li:last-child {
margin-right: 0px;
} */

.main-header ul li a {
	font-size: 18px;
	color: #141414;
	font-weight: 500;
	padding: 35px 17px;
	display: inline-block;
	text-transform: capitalize;
}

.active-link {
	background-color: #e7eeff;
}

.header-btn-container {
	display: flex;
	justify-content: end;
}

/* banner css here  */
.banner-sec {
	position: relative;
	margin-top: 96px;
}

.banner-img {
	width: 100%;
	position: relative;
}

.ms-slide::before {
	content: "";
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg,
		rgba(11, 77, 245, 1) 50%,
		rgba(255, 255, 255, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.banner-sec::after {
	content: "";
	background: url("../images/banner-shape.png");
	position: absolute;
	left: 0;
	bottom: 0;
	width: 167px;
	height: 115px;
	z-index: 1;
}

.ms-slide-info {
	position: absolute !important;
	top: 50%;
	transform: translateY(-50%);
	max-width: 100%;
	z-index: 2;
}

.ms-skin-light-6 .ms-nav-next {
	background: url("../images/b-right-arrow.png") no-repeat !important;
	border: 0 !important;
}

.ms-skin-light-6 .ms-nav-prev {
	background: url("../images/b-left-arrow.png") no-repeat !important;
	border: 0 !important;
}

.ms-skin-light-6.round-skin .ms-nav-next,
.ms-skin-light-6.round-skin .ms-nav-prev,
.ms-skin-light-6.round-skin .ms-slide .ms-slide-vpbtn,
.ms-skin-light-6.round-skin .ms-video-btn {
	border-radius: 0 !important;
}

.banner-container {
	width: 450px;
	max-width: 100%;
	margin-left: 12px;
}

.banner-sub-heading {
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 50px;
	color: #eaeaea;
	font-weight: 700;
}

.banner-heading {
	font-size: 36px;
	line-height: 46px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 800;
}

.banner-btn-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.banner-btn-container .common-btn-2 {
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 30px;
}

.banner-btn-container .common-btn-2:hover {
	color: #000;
}

.banner-btn-container .common-btn-2:hover::before {
	background-color: #ffffff;
}

.banner-btn-container .common-btn-3 {
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 30px;
	color: #1442ab;
	background-color: #ffffff;
}

.banner-btn-container .common-btn-3:hover {
	color: #fff;
}

.banner-btn-container .common-btn-3:hover::before {
	background-color: #f92828;
}

.we-offer-sec {
	padding: 100px 0;
}

.sub-heading-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.sub-heading-shape-container {
	border-radius: 3px;
	background-color: #f92828;
	padding: 4px 7px;
}

.we-offer-slider {
	margin-top: 40px;
}

.we-offer-card-heading {
	font-size: 22px;
	line-height: 50px;
	color: #0c0c0c;
	font-weight: 600;
	text-align: center;
}

.we-offer-card-text {
	text-align: center;
	padding: 0 33px;
}

.we-offer-card-btn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.we-offer-card-btn .common-btn-2 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.we-offer-card-btn .common-btn-2 img {
	width: fit-content;
}

.we-offer-slider .owl-next span,
.we-offer-slider .owl-prev span {
	display: none;
}

.we-offer-slider .owl-next {
	position: absolute;
	right: -30px;
	top: 40%;
	transform: translateY(-50%);
}

.we-offer-slider .owl-next::before {
	content: "";
	background: url("../images/right-arrow.png") no-repeat;
	position: absolute;
	width: 54px;
	height: 53px;
}

.we-offer-slider .owl-prev {
	position: absolute;
	left: -50px;
	top: 40%;
	transform: translateY(-50%);
}

.we-offer-slider .owl-prev::before {
	content: "";
	background: url("../images/left-arrow.png") no-repeat;
	position: absolute;
	width: 54px;
	height: 53px;
}

.about-sec {
	padding: 90px 0 180px;
	background-color: #e2eaff;
}

.about-text {
	padding: 15px 130px 30px;
	text-align: center;
}

.about-sec .common-heading {
	font-size: 30px;
	font-weight: 800;
}

.about-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.about-card-sec {
	margin-top: -95px;
}

.about-card {
	text-align: center;
	padding: 20px 20px 30px;
	background: url("../images/about-us-card-bg.jpg") no-repeat;
	background-size: cover;
	position: relative;
	border-radius: 5px;
	transition: all 0.5s ease;
	min-height: 100%;
}

.about-card:hover {
	background: url("../images/about-us-card-bg-2.jpg") no-repeat;
	background-size: cover;
}

.about-card-icon-container {
	width: 73px;
	height: 73px;
	border-radius: 37px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.about-card-heading {
	font-size: 21px;
	line-height: 28px;
	color: #ffffff;
	font-weight: 600;
	padding: 15px 0 10px;
}

.about-card-text {
	font-size: 16px;
	line-height: 23px;
	color: #ffffff;
	font-weight: 400;
	font-family: "Outfit";
}

.contact-sec {
	background-color: #f4f4f4;
	padding: 230px 0 90px;
	margin-top: -150px;
}

.contact-left-sec {
	position: relative;
}

.contact-left-sec::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 1px;
	right: 0;
	top: 0;
	background: #e3e3e3;
}

.contact-sec .common-heading {
	font-size: 50px;
	text-align: left;
}

.contact-sec-text {
	font-size: 17px;
	line-height: 26px;
	color: #080808;
	font-weight: 400;
	padding: 25px 0;
	padding-right: 70px;
}

.contact-btn-icon-container {
	width: 31px;
	height: 31px;
	border-radius: 15px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-btn-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.contact-btn-container .common-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.contact-right-sec .common-heading {
	font-size: 35px;
	padding-bottom: 25px;
}

.contact-right-sec {
	padding-left: 40px;
}

.contact-form-sec p {
	margin-bottom: 0;
}

.contact-form-sec input {
	width: 100%;
	padding: 12px 10px 12px 20px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	background-color: #e6edfe;
	border: 2px solid #383838;
	outline: none;
}

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
	border: 2px solid #0b4df5;
}

.contact-form-sec select {
	width: 100%;
	padding: 12px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	background-color: #e6edfe;
	border: 2px solid #383838;
	outline: none;
}

.contact-form-sec textarea {
	width: 100%;
	padding: 12px 12px 12px 20px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	height: 80px;
	background-color: #e6edfe;
	border: 2px solid #383838;
}

.contact-form-sec input[type="submit"] {
	font-size: 16px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	width: fit-content;
	border-radius: 4px;
	background-color: #081821;
	padding: 13px 50px;
	transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
	background-color: #0b4df5;
}

.lenders-sec {
	padding: 45px 0 70px;
	background: url("../images/lenders-bg.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.lenders-sec .common-heading {
	color: #ffffff;
	font-size: 35px;
	margin-bottom: 45px;
}

.lenders-img-container {
	background-color: #ffffff;
	text-align: center;
	padding: 20px 10px;
	border-radius: 3px;
	filter: drop-shadow(0px 6px 8px rgba(0, 0, 0, 0.09));
	height: 68px;
	display: flex;
	justify-content: center;
}
.lenders-img-container img{
	width: fit-content;
}
.testimonial-sec {
	padding: 80px 0;
}

.testimonial-container {
	margin-top: 40px;
}

.sp-testimonial-free-wrapper {
	overflow: visible !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow {
	transform: translateY(50%) !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next i {
	display: none;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next::before {
	content: '';
	background: url('../images/right-arrow.png') no-repeat;
	height: 39px;
	width: 21px;
	position: absolute;
	right: -50px;
	top: 0;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev i {
	display: none;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev::before {
	content: '';
	background: url('../images/left-arrow.png') no-repeat;
	height: 39px;
	width: 21px;
	position: absolute;
	left: -50px;
	top: 0;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free {
	background: #e7eeff !important;
	border-radius: 5px !important;
	padding: 40px 25px 105px;
	position: relative;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free::before,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free::before{
	content: '';
	background: url("../images/testimonial-card-bg.png") no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	mix-blend-mode: luminosity;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-image,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-image {
	margin: 0 !important;
	position: absolute;
	bottom: 35px;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section {
	margin: 0 !important;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-testimonial p,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	font-size: 18px !important;
	line-height: 27px !important;
	color: #393939;
	text-align: start !important;
}

#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-name,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-name {
	font-size: 17px !important;
	line-height: 27px !important;
	text-transform: uppercase !important;
	color: #0b4df5 !important;
	font-weight: 600 !important;
	position: absolute;
	bottom: 62px;
	left: 105px;
}
 
#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-designation,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-designation {
	font-size: 17px !important;
	line-height: 27px !important;
	color: #1b1b1b !important;
	position: absolute;
	bottom: 50px;
	left: 105px;
}
#sp-testimonial-free-wrapper-151 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-41 .sp-testimonial-free-section .sp-testimonial-client-testimonial {
    height: 270px;
    overflow: auto;
	position: relative;
    z-index: 1;
}

/* footer */
.footer {
	position: relative;
	background: #081821;
	padding: 70px 0 0;
}

.footer::before {
	content: '';
	background: url('../images/footer_shape_1.png') no-repeat;
	width: 101px;
	height: 97px;
	position: absolute;
	right: 0;
	top: 0;
	mix-blend-mode: luminosity;
}

.footer::after {
	content: '';
	background: url('../images/footer_shape_2.png') no-repeat;
	width: 113px;
	height: 107px;
	position: absolute;
	left: 0;
	bottom: 0;
	mix-blend-mode: luminosity;
}

.footer-heading {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 25px;
}

.footer ul {
	list-style: none;
	margin: 0;
}

.footer ul li {
	font-size: 16px;
	line-height: 31px;
	color: #ffffff;
	font-weight: 500;
}

.footer ul li a {
	font-size: 16px;
	line-height: 31px;
	color: #ffffff;
	font-weight: 500;
	transition: all 0.5s ease;
}

.footer ul li a:hover {
	color: #f73f27;
	padding-left: 5px;
}

.f-contact-container ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.f-about-text {
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 400;
	padding-right: 50px;
}

.f-logo-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.f-br {
	position: relative;
}

.f-br::before {
	content: '';
	width: 1px;
	height: 100%;
	background: #202e36;
	position: absolute;
	right: 0;
	top: 0;
}

.f-br:first-child::before {
	right: 30px;
}

.f-br:nth-child(3):before {
	right: 20px;
}

.f-br:last-child::before {
	content: none;
}

.f-menu-container {
	padding-left: 15px;
}

.f-media-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.lower-footer {
	font-size: 15px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	padding: 40px 0;
	border-top: 1px solid #202e36;
	margin-top: 25px;
}

.lower-footer a {
	color: #ffffff;
	transition: all 0.5s ease;
}

.lower-footer a:hover {
	color: #f92828;
}

/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
	width: 50px;
	height: 50px;
	border-radius: 34px;
	background: #f92828;
	align-items: center;
	justify-content: center;
}

.scroll-top img {
	animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}


/* banner css here */
.site-content,
.site-main .widecolumn {
	margin-left: 0px !important;
}

.page .entry-header,
.blog_page_header {
	background: url("../images/banner-img.jpg") #eee no-repeat !important;
	background-size: cover !important;
	max-width: 100% !important;
	padding: 230px 0 150px !important;
	margin: 0 0 50px !important;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.page .entry-header:before,
.blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}

.content-area,
.content-sidebar {
	padding-top: 0px !important;
}

.page .entry-title,
.blog_page_title {
	color: #fff;
	position: relative;
	font-size: 32px;
	font-weight: 600;
	text-transform: none;
	z-index: 99;
	margin-bottom: 3px;
}

.breadcrumb-container {
	width: 100%;
	color: #ea0700;
	position: relative;
	font-size: 15px;
}

.breadcrumb-container a {
	color: #ea0700;
}

.page {
	margin-top: 0 !important;
}

/* inner page css  */
.inner_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.inner_title strong {
	color: #0b4df5;
}
.inner_title .red-color{
	color: #f92828;
}

.inner_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: #0b4df5;
}

.inner_mid_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.inner_mid_title strong {
	color: #0b4df5;
}

.inner_mid_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #0b4df5;
}

.inner_txt {
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}

.margin-top {
	margin-top: 48px;
}

.inner_list_txt {
	margin-top: 20px;
}

.inner_list_txt ul {
	padding: 0;
	margin: 0;
}

.inner_list_txt ul li {
	background: url("../images/list-icon-img-1.png");
	background-position: top 4px left;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-size: 18px;
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	list-style: none;
	padding-bottom: 6px;
}

.inner_bottm_sec {
	background: #0b4df5;
	padding: 30px 20px;
	text-align: center;
}

.inner_bottm_sec .inner_title:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #fff;
}

.core-box {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 30px 20px;
	background: #fff;
	border-radius: 5px;
	min-height: 100%;
}

.core-box img {
	width: 80px;
	padding-bottom: 20px;
}

.core-box_title {
	color: #131313;
	font-size: 20px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.core-box_title strong {
	color: #0b4df5;
}

.core-box_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: #0b4df5;
}

.core-box_txt {
	font-size: 14px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}

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

/* contact page css  */

.contact_page_heading {
	color: #131313;
	font-size: 26px;
	text-transform: capitalize;
	font-weight: bold;
	padding-bottom: 15px;
	position: relative;
}

.contact_page_heading::before {
	position: absolute;
	content: "";
	bottom: 8px;
	left: 0;
	width: 30px;
	height: 3px;
	background: #154acc;
}

.contact_page_heading strong {
	color: #154acc;
}

.contact_page_info {
	position: relative;
	color: #000;
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.contact-text a {
	transition: all 0.5s ease;
	text-decoration: none !important;
}

.contact-text strong {
	color: #000000;
	font-weight: 600;
}

.contact-img {
	background: #ffffff;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	text-align: center;
	padding-top: 10px;
}

.contact_right {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 25px;
	border-radius: 5px;
}
/* thank you page   */
.thankyou-btn {
	border-radius: 4px;
	background-color: #0b4df5;
	padding: 13px 50px;
	transition: all 0.8s ease !important;
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	position: relative;
	display: inline-block;
	white-space: nowrap;
}
.thankyou-btn:hover{
	background: #000000;
}
.thankyou-text {
	font-size: 18px;
	font-weight: 500;
	padding-top: 20px;
}
.not_found-text {
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
}

.back_btn {
	margin: 35px 0 60px;
}

.back_btn a {
	text-decoration: none !important;
}

.not_found-btn {
	border-radius: 4px;
	background-color: #0b4df5;
	padding: 13px 50px;
	color: white !important;
	outline: 0;
	border: none;
	transition: all 0.5s ease;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
}
.not_found-btn:hover{
	background-color: #000000;
}
/* footer_fixed_buttons css  */
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 999;
}

.footer_btn1 {
	background: #f92828;
	width: 50%;
	float: left;
	color: #fff !important;
	padding: 10px 0;
	text-decoration: none !important;
	text-transform: capitalize;
}

.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding-top: 9px;
}

.footer_btn3 {
	background: #0b4df5;
	width: 50%;
	float: left;
	color: #fff !important;
	padding: 10px 0;
	text-decoration: none !important;
	text-transform: capitalize;
}

/* blog page css  */
.more-link {
    display: block;
    background: #0b4df5;
    width: fit-content;
    margin: 15px 0;
    padding: 15px 25px;
    border-radius: 15px;
    color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
    text-decoration: none !important;
}
.more-link:hover{
	background: #f92828 !important;
	color: #fff !important;
}

.post .entry-title{
	font-size: 30px !important;
	font-weight: 600 !important;
}
.outer-box {
	background: #ffffff;
	padding: 60px;
	width: fit-content;
	box-shadow: 0 0 5px #b9b9b9;
	border-radius: 10px;
}
.rmp-menu-title-image {
  height: 100%;
  width: 60%;
}
/* mediaquery start here */

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

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

}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.banner-container {
		margin-left: 0px;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.logo-container img {
		width: 180px;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 77px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.banner-sec::after {
		content: none;
	}
	.ms-skin-light-6 .ms-nav-next {
		top: auto !important;
		bottom: 30px !important;
		left: 70px !important;
	}
	.ms-skin-light-6 .ms-nav-prev {
		top: auto !important;
		bottom: 30px !important;
	}
	.ms-slide-info {
		transform: translateY(-60%);
	}
	.we-offer-sec {
		padding: 50px 0;
	}
	.about-sec {
		padding: 50px 0 150px;
	}
	.about-text {
		padding: 20px 12px;
		text-align: center;
	}
	.contact-sec {
		padding: 50px 0;
		margin-top: 0;
	}
	.contact-left-sec::before {
		content: none;
	}
	.contact-sec .common-heading {
		font-size: 30px;
		text-align: left;
	}
	.contact-sec-text {
		padding: 15px 0;
		padding-right: 0;
	}
	.contact-btn-container .common-btn {
		padding: 10px 16px;
	}
	.contact-right-sec {
		padding-left: 0;
	}
	.lenders-sec {
		padding: 50px 0;
	}
	.lenders-sec .common-heading {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.footer {
		padding: 50px 0 0;
	}
	.f-br::before {
		content: none;
	}
	.footer-heading {
		margin-bottom: 10px;
	}
	.f-menu-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 40px 0 70px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 150px 0 90px !important;
	}
}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.logo-container img {
		width: 180px;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 77px;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.ms-slide-info {
		transform: translateY(-60%);
	}
	.we-offer-sec {
		padding: 50px 0;
	}
	.about-sec {
		padding: 50px 0 150px;
	}
	.about-text {
		padding: 20px 12px;
		text-align: center;
	}
	.about-card-sec .col-sm-12 {
		width: 50%;
	}
	.contact-sec {
		padding: 50px 0;
		margin-top: 0;
	}
	.contact-left-sec::before {
		content: none;
	}
	.contact-sec .common-heading {
		font-size: 30px;
		text-align: left;
	}
	.contact-sec-text {
		padding: 15px 0;
		padding-right: 0;
	}
	.contact-btn-container .common-btn {
		padding: 10px 16px;
	}
	.contact-right-sec {
		padding-left: 0;
	}
	.lenders-sec {
		padding: 50px 0;
	}
	.lenders-sec .common-heading {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.lenders-sec .col-sm-12 {
		width: 33.33%;
	}
	.footer {
		padding: 50px 0 0;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-br::before {
		content: none;
	}
	.footer-heading {
		margin-bottom: 10px;
	}
	.f-menu-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 40px 0 70px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 150px 0 90px !important;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 77px;
	}
	.banner-container {
		margin-left: 15px !important;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.ms-slide-info {
		transform: translateY(-60%);
	}
	.we-offer-sec {
		padding: 50px 0;
	}
	.about-sec {
		padding: 50px 0 150px;
	}
	.about-text {
		padding: 20px 12px;
		text-align: center;
	}
	.contact-sec {
		padding: 50px 0;
		margin-top: 0;
	}
	.contact-left-sec::before {
		content: none;
	}
	.contact-sec .common-heading {
		font-size: 30px;
		text-align: left;
	}
	.contact-sec-text {
		padding: 15px 0;
		padding-right: 0;
	}
	.contact-btn-container .common-btn {
		padding: 10px 16px;
		font-size: 15px;
	}
	.contact-right-sec {
		padding-left: 0;
	}
	.lenders-sec {
		padding: 50px 0;
	}
	.lenders-sec .common-heading {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.footer {
		padding: 50px 0 0;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-br::before {
		content: none;
	}
	.footer-heading {
		margin-bottom: 10px;
	}
	.f-menu-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 40px 0 70px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 200px 0 120px !important;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 77px;
	}
	.banner-container {
		margin-left: 15px !important;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.ms-slide-info {
		transform: translateY(-60%);
	}
	.we-offer-sec {
		padding: 50px 0;
	}
	.about-sec {
		padding: 50px 0 150px;
	}
	.about-text {
		padding: 20px 12px;
		text-align: center;
	}
	.contact-sec {
		padding: 50px 0;
		margin-top: 0;
	}
	.contact-left-sec::before {
		content: none;
	}
	.contact-sec .common-heading {
		font-size: 30px;
		text-align: left;
	}
	.contact-sec-text {
		padding: 15px 0;
		padding-right: 0;
	}
	.contact-btn-container .common-btn {
		padding: 10px 16px;
		font-size: 15px;
	}
	.contact-right-sec {
		padding-left: 0;
	}
	.lenders-sec {
		padding: 50px 0;
	}
	.lenders-sec .common-heading {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.footer {
		padding: 50px 0 0;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-br::before {
		content: none;
	}
	.footer-heading {
		margin-bottom: 10px;
	}
	.f-menu-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 40px 0 70px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 200px 0 120px !important;
	}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}
/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 90px;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.banner-sec .banner-container {
		margin-left: 50px;
	}
	.we-offer-sec {
		padding: 60px 0;
	}
	.about-sec {
		padding: 60px 0 160px;
	}
	.about-text {
		padding: 20px 12px;
	}
	.contact-sec .common-heading {
		font-size: 30px;
	}
	.contact-sec-text {
		padding-right: 0;
	}
	.contact-left-sec {
		position: relative;
		min-height: 100%;
	}
	.contact-left-sec::before {
		right: -30px;
	}
	.contact-btn-container .common-btn {
		padding: 10px 17px;
		font-size: 15px;
	}
	.contact-right-sec .common-heading {
		font-size: 30px;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		display: none;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		display: none;
	}
	.f-br::before {
		content: none;
	}
	.lower-footer {
		padding: 40px 0 80px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 20px 0;
		top: 0;
	}
	.animate {
		animation: none;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 90px;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.banner-container {
		margin-left: 50px;
	}
	.we-offer-sec {
		padding: 60px 0;
	}
	.we-offer-slider .owl-next {
		display: none !important;
	}
	.we-offer-slider .owl-prev {
		display: none !important;
	}
	.about-sec {
		padding: 60px 0 160px;
	}
	.about-text {
		padding: 20px 12px;
	}
	.contact-sec .common-heading {
		font-size: 30px;
	}
	.contact-sec-text {
		padding-right: 0;
	}
	.contact-left-sec {
		position: relative;
		min-height: 100%;
	}
	.contact-left-sec::before {
		right: -30px;
	}
	.contact-btn-container .common-btn {
		padding: 10px 17px;
		font-size: 15px;
	}
	.contact-right-sec .common-heading {
		font-size: 30px;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		display: none;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		display: none;
	}
	.f-br::before {
		content: none;
	}
	.f-service-container {
		margin-left: -20px;
	}
	.f-menu-container {
		margin-left: -30px;
	}
	.f-contact-container {
		margin-left: -30px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
}
/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
	.we-offer-slider .owl-next {
		display: none !important;
	}
	.we-offer-slider .owl-prev {
		display: none !important;
	}
	.f-service-container {
		margin-left: -20px;
	}
	.f-menu-container {
		margin-left: -30px;
	}
	.f-contact-container {
		margin-left: -30px;
	}
	.lower-footer {
		padding: 40px 0;
	}
}

@media screen and (min-width: 1424px) {
	.we-offer-slider .owl-next {
		right: -12px;
	}
}

@media screen and (min-width: 1624px) {
	.we-offer-slider .owl-next {
		right: -30px;
	}
}

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

}

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

}

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

}