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

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

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

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

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

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

ul {
	list-style: none;
}

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

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

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

.common-heading {
	font-size: 35px;
	letter-spacing: 1px;
	line-height: 27px;
	text-transform: uppercase;
	color: #0a1a2f;
	font-weight: 800;
}

.common-text {
	font-size: 14px;
	line-height: 25px;
	color: #343333;
	font-weight: 400;
}

.common-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 12px 35px;
	width: fit-content;
	border-radius: 28px;
	background-color: #db2323;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 27px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	text-decoration: none !important;
	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: #0a1a2f;
	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 {
	color: #000;
	background-color: #ffd262;
	font-weight: 700;
	font-size: 17px;
}

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

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

.common-btn-3 {
	color: #000;
	background-color: #ffffff;
}

.common-btn-3::before {
	background-color: #02e9b0;
}

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

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

	to {
		transform: translateY(0);
	}
}

.padding-0 {
	padding: 0;
}



/* main header section css here  */
.main-header {
	position: fixed;
	padding: 8px 0;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 999;
	transition: all 0.5s ease;
}

.main-header .container {
	max-width: 1290px;
}

.logo-container img {
	width: 216px;
}

.header-manu-container {
	margin-left: -15px;
}

.header-manu-container ul {

}

.main-header ul li {
	margin-right: 30px;
}

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

.main-header ul li a {
	font-size: 14px;
	line-height: 40px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 500;
	padding: 0;
}

.header-btn-container {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 25px;
	margin-left: -45px;
}

.header-btn-container .common-btn-2 {
	padding: 10px 20px;
	font-size: 16px;
}

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

.header-btn-icon {
	width: 45px;
	height: 45px;
	border-radius: 23px;
	background-color: #db2323;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-btn-icon img {
	width: 20px;
	animation: tilt-shaking .2s infinite;
}

.header-btn-text {
	font-size: 12px;
	letter-spacing: 0px;
	line-height: 30px;
	color: #ffd262;
	font-weight: 500;
}

.header-btn-number {
	font-size: 24px;
	letter-spacing: 1px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 700;
	animation: button-color-change .8s infinite;
}

@keyframes button-color-change {
    0% {
        color: #ffd262
    }

    50% {
        color: #db2323
    }

    100% {
        color: #ffd262
    }
}

.pos-fixed {
	top: 0;
	transition: all 0.5s ease;
	background: #0a1a2f;
}


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

.banner-sec:before{
	content:'';
	background: url("../images/discount-img.png") no-repeat;
	background-size: cover;
	width: 159px;
	height: 148px;
	position: absolute;
	right: 3%;
	bottom: 0;
	z-index: 1;
}
.banner-img img {
	width: 100%;
}
.ms-slide-info {
	position: absolute !important;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.banner-container {
	z-index: 1;
	/* 	  position: absolute;
	top: 50%;
	transform: translateY(-50%); */
}

.banner-sub-heading {
	font-size: 15px;
	line-height: 50px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 600;
	position: relative;
	padding-left: 20px;
/* 	animation: button-color-change .8s infinite; */
}

.banner-sub-heading::before {
	content: '';
	width: 15px;
	height: 15px;
	border-radius: 8px;
	background-color: #1bd003;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.banner-container .common-heading {
	font-size: 43px;
	color: #ffffff;
	text-align: left;
	line-height: 50px;
}

.banner-container .common-text {
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	text-align: center;
}

.banner-heading strong {
	color: #02e9b0;
	font-family: "Outfit";
	font-weight: normal !important;
}

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

.banner-btn-bottom {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    left: 8%;
    bottom: 10px;
    z-index: 1;
}

.banner-btn-bottom:after {
    content: '';
    background-color: #f3f3f3;
    width: 600px;
    height: 85px;
    position: absolute;
    left: -345px;
    bottom: -10px;
    z-index: -1;
}

.banner-btn-icon{
	width: 45px;
	height: 45px;
	border-radius: 22px;
	background-color: #db2323; 
	display: flex;
	align-items: center;
	justify-content: center;
}
.banner-btn-icon img{
	width: 20px;
}
.banner-btn-text{
	font-size: 11px;
	letter-spacing: 1px;
	line-height: 30px;
	color: #1b1b1b;
}
.banner-btn-number{
	font-size: 23px;
	letter-spacing: 1px;
	line-height: 30px;
	font-weight: 600;
	color: #080707;
/* 	animation: button-color-change .8s infinite; */
}

/* contact-sec */
.service-sec {
	padding: 80px 0px;
	overflow: hidden;
}

.service-sec .container{
	max-width: 1920px;
	padding: 0;
}

.service-sub-heading {
	font-size: 12px;
	letter-spacing: 0px;
	line-height: 27px;
	text-transform: uppercase;
	color: #020202;
	font-weight: 500;
	text-align: center;
	padding-bottom: 10px;
}

.service-slider {
	margin-top: 50px;
}

.owl-carousel .owl-stage-outer {
	padding-bottom: 30px;
}

.service-card {
	min-height: 100%;
}

.service-card img {
	border-radius: 5px 5px 0 0;
}

.service-card-container {
	border-radius: 5px;
	filter: drop-shadow(0px 1px 17.5px rgba(0, 0, 0, 0.15));
	background-color: #ffffff;
	border: 1px solid #ffd262;
	border-top: 0;
	min-height: 100%;
	padding: 20px 25px 30px;
}

.service-card-heading {
	font-size: 20px;
	line-height: 26px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 700;
	text-align: center;
}

.service-card-text {
	font-size: 14px;
	line-height: 21px;
	color: #272727;
	font-weight: 500;
	text-align: center;
	margin: 15px 0;
}

.service-card-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card-btn .common-btn {
	padding: 7px 25px;
}


/* .contact-sec */
.contact-sec {
	padding: 90px 0 150px;
	background: url("../images/contact-bg.jpg") no-repeat;
	background-size: cover;
	position: relative;
}


.contact-sec-left {
	border-radius: 5px;
	background-color: #0a1a2f;
	padding: 45px 25px 30px;
	min-height: 100%;
	margin: 0 25px 0 40px;
}

.contact-sec-left .common-heading {
	font-size: 30px;
	color: #ffffff;
	text-align: center;
}

.contact-sec-left .common-text {
	color: #ffffff;
	text-align: center;
	padding: 15px;
}

.contact-sec-right {
	padding: 0 80px 0 25px;
}

.contact-sec-right .common-heading {
	font-size: 40px;
}

.contact-right-sub-heading {
	font-size: 17px;
	letter-spacing: 1px;
	line-height: 27px;
	text-transform: uppercase;
	color: #0a1a2f;
	font-weight: 700;
	padding: 15px 0 60px;
	position: relative;
}

.contact-right-sub-heading::before {
	content: '';
	width: 43px;
	height: 4px;
	background-color: #0a1a2f;
	position: absolute;
	left: 0;
	bottom: 30px;
}

/* contact page  */
.contact-form input {
	width: 100%;
	padding: 12px 10px 12px 20px;
	border-radius: 2px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #efefef;
	background: #efefef;
	outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border: 1px solid #7db2f3;
}

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

.contact-form textarea {
	width: 100%;
	padding: 12px 12px 12px 20px;
	border-radius: 2px;
	color: #515151;
	font-size: 16px;
	height: 90px;
	border: 1px solid #efefef;
	background: #efefef;
}

.contact-form input[type="submit"] {
	font-size: 16px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 600;
	text-align: center;
	border-radius: 22px;
	width: fit-content;
	background-color: #fed55f;
	padding: 10px 30px;
	transition: all 0.5s ease;
}

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

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

/* contact-bottom-sec */
.contact-bottom-sec {
	padding: 0 0 100px;
	margin-top: -60px;
}

.contact-bottom-card {
	display: flex;
	align-items: center;
	justify-content: start;
	flex-direction: column;
	border-radius: 3px;
	filter: drop-shadow(0px 1px 17.5px rgba(0, 0, 0, 0.15));
	background-color: #ffffff;
	padding: 20px 35px;
	min-height: 100%;
}

.contact-bottom-card img {
	width: 46px;
}

.contact-bottom-card-heading {
	font-size: 17px;
	line-height: 24px;
	color: #0a1a2f;
	font-weight: 600;
	padding-top: 10px;
	text-align: center;
}

/* .map-sec */
.map-sec .container {
	max-width: 1920px;
	overflow: hidden;
}

.col-pad-l {
	padding: 0;
}

.col-pad-r {
	padding: 0;
}

.map-sec-left {
	height: 100%;
}

.map-sec-left iframe {
	width: 100%;
	height: 100%;
}

.map-sec-right {
	background: url("../images/map-sec-right-bg.jpg") no-repeat;
	background-size: cover;
	padding: 50px 0 50px 30px;
	width: 100%;
	height: 100%;
}

.map-sec-right .common-heading {
	color: #ffffff;
	line-height: 45px;
}

.map-sec-right .common-heading strong {
	color: #db2323;
}

.map-sec-right ul {
	margin: 0;
	list-style: none;
}

.map-sec-right ul li {
	font-size: 15px;
	line-height: 45px;
	text-transform: uppercase;
	color: #0c0c0c;
	font-weight: 700;
	position: relative;
	padding-left: 40px;
	z-index: 1;
	margin-bottom: 15px;
}

.map-sec-right ul li:last-child {
	margin-bottom: 0;
}

.map-sec-right ul li::before {
	content: '';
	background: url("../images/map-sec-icon.png") no-repeat;
	background-size: cover;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.map-sec-right ul li::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0;
	z-index: -1;
	border-radius: 24px 0 0 24px;
	background-color: #ffffff;
}

/* testimonial-sec */
.testimonial-sec {
	padding: 95px 0 60px;
}
.testimonial-content{
	margin-top: 30px;
}

.gallery-sec .container {
	max-width: 1920px;
}

/* footer-top */
.footer-top {
	background: url("../images/footer-top-bg.jpg") no-repeat;
	background-size: cover;
	padding: 40px 0;
	margin-top: 70px;
}

.footer-top .container {
	max-width: 1290px;
}

.footer-top-left .common-heading {
	color: #ffffff;
	line-height: 40px;
	margin-bottom: 30px;
}

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

.footer-top-mid ul li {
	font-size: 16px;
	line-height: 32px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 600;
	padding-left: 40px;
	position: relative;
}

.footer-top-mid ul li::before {
	content: '';
	background: url("../images/map-sec-icon.png") no-repeat;
	background-size: cover;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.footer-top-right .common-heading {
	color: #ffffff;
	font-size: 30px;
	text-align: center;
}

.partner-container {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 20px;
}

.footer-top-mid {
	margin-left: -20px;
}

.fu-br {
	position: relative;
}

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

.fu-br:nth-child(1)::before {
	right: 30px;
}

.fu-br:nth-child(2)::before {
	right: -20px;
}


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

/* footer */
.footer {
	position: relative;
	background-color: #fff5dc;
	padding: 40px 0 0;
	position: relative;
	z-index: 1;
}

.footer-logo {
	width: 173px;
	margin-bottom: 30px;
}

.f-info-img {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.footer-text {
	font-size: 15px;
	line-height: 28px;
	color: #ffffff;
	font-weight: 300;
	margin-top: 10px;
}

.footer-heading {
	font-size: 18px;
	line-height: 31px;
	text-transform: uppercase;
	color: #0a1a2f;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer ul {
	list-style: none;
	margin: 0;
	position: relative;
	z-index: 3;
}

.footer ul li {
	font-size: 14px;
	color: #0a1a2f;
	font-weight: 500;
	padding-bottom: 10px;
}

.footer ul li a {
	font-size: 14px;
	color: #0a1a2f;
	font-weight: 500;
}

.footer ul li a:hover {
	color: #0a1a2f;
	padding-left: 2px !important;
}

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

.f-icon {
	width: 35px;
	height: 35px;
	border-radius: 17px;
	background-color: #0a1a2f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-area-container ul li {
	padding-left: 25px;
	position: relative;
}


.f-icon img {
	width: 15px;
}

.f-menu-container {}

.f-service-container {
	margin-left: 50px;
	margin-right: -25px;
}

.f-media-container {
	margin-left: 90px;
}


.social-media-icon {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social-media-icon img {
	width: 34px;
}

.f-br {
	position: relative;
}

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

.f-br:nth-child(1)::before {
	right: 50px;
}

.f-br:nth-child(2)::before {
	right: -10px;
}

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

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

.lower-footer {
	font-size: 14px;
	line-height: 30px;
	text-transform: uppercase;
	color: #fff5dc;
	text-align: center;
	font-weight: 500;
	padding: 10px 0;
	margin-top: 50px;
	background-color: #0a1a2f;
}

.lower-footer a {
	color: #ffffff;
}

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

.lower-footer-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.lower-footer-text img {
	width: 134px;
}

/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 9999;
	width: 57px;
	height: 57px;
	border-radius: 28px;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease;
}

.scroll-top img {
	width: 23px;
	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: 150px 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_content p {
	margin-bottom: 0;
}

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

.inner_title strong {
	color: #0a1a2f;
}

.inner_sub_title{
	font-size: 20px;
	margin-top: 20px;
}

.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/map-sec-icon.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: #0a1a2f;
	padding: 30px 20px;
	text-align: center;
}

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

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

.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;
	position: relative;
}

.contact_page_heading strong {
	color: #0a1a2f;
}

.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-img img {
	width: 22px;
}

.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-container {
	display: flex;
	justify-content: center;
}

.thankyou-btn-container a {
	text-decoration: none !important;
}

.thankyou-text {
	font-size: 18px;
	font-weight: 500;
	padding-top: 20px;
}

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-radius: 20px 20px 0 0;
    background: #0a1a2fde;
}

.footer_fixed_new_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	gap: 15px;
}
.footer_button-icon{
	width: 45px;
	height: 45px;
	border-radius: 22px;
	background-color: #db2323;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer_button-icon img{
	width: 20px;
	animation: tilt-shaking .2s infinite;
}
@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(7deg)
    }

    50% {
        transform: rotate(0 eg)
    }

    75% {
        transform: rotate(-7deg)
    }

    100% {
        transform: rotate(0deg)
    }
}
.footer_button-text{
	font-size: 14px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #fff;
	text-align: start;
	animation: button-color-change .8s infinite;
}
.footer_button-number{
	font-size: 23px;
    letter-spacing: 1px;
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
	text-align: start;
}

.footer_btn1 {
	background: #fed55f;
	width: 50%;
	float: left;
	color: #000 !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_btn2 img{
	width: 20px;
}

.footer_btn3 {
	background: #db2323;
	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: #ffd262;
	width: fit-content;
	margin: 15px 0;
	padding: 15px 25px;
	border-radius: 25px;
	color: #000;
	text-transform: capitalize;
	transition: all 0.5s ease;
	text-decoration: none !important;
}

.more-link:hover {
	background: #0a1a2f !important;
	color: #fff !important;
}

.post .entry-title {
	font-size: 30px !important;
	font-weight: 600 !important;
}

.widget_block {
	position: relative;
}

.widget_block::before {
	content: '';
	width: 100%;
	height: 3px;
	background: #000;
	position: absolute;
	left: 0;
	top: -15px;
}

#block-8::before {
	content: none;
}

#block-7 {
	margin-bottom: 10px;
}

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

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
	border: 1px solid #7db2f3;
}

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

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

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

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

.contact-form-sec p {
	margin-bottom: 0 !important;
}
.outer-box {
    box-shadow: 0 0 5px #b9b9b9;
    border-radius: 20px;
    padding: 30px 40px;
}
.back_btn {
	display: flex;
	justify-content: center;
	margin: 15px 0 60px;
}

.not_found-text {
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
}

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


/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.animate {
		animation: none;
	}
	.banner-sec .container{
		width: auto;
	}
	.banner-container .common-heading {
		font-size: 30px;
		line-height: 35px;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		object-fit: cover;
	}
	.banner-sec:before {
		width: 100px;
		height: 93px;
	}
	.banner-btn-bottom {
		gap: 10px;
	}
	.banner-btn-text {
		font-size: 10px;
		line-height: 25px;
	}
	.banner-btn-number {
		font-size: 18px;
		line-height: 10px;
	}
	.banner-btn-bottom:after {
		width: 560px;
	}
	.service-sec {
		padding: 50px 0px;
	}
	.service-sec .container {
		padding: 0 10px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.service-slider {
		margin-top: 20px;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left {
		margin: 0;
	}
	.contact-sec-right {
		padding: 0;
	}
	.contact-sec-right .common-heading {
		font-size: 26px;
	}
	.contact-right-sub-heading {
		font-size: 15px;
		padding: 15px 0 50px;
	}
	.contact-right-sub-heading::before {
		bottom: 25px;
	}
	.contact-bottom-sec {
		padding: 50px 0;
		margin-top: 0;
	}
	.map-sec-left iframe {
/* 		height: 250px; */
		margin-bottom: 0;
	}
	.map-sec-right {
		padding: 50px 0 50px 15px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.fu-br::before {
		content: none;
	}
	.partner-container {
		justify-content: center;
		flex-wrap: wrap;
	}
	.partner-container img{
		width: 110px;
	}
	.f-br::before {
		content: none;
	}
	.f-service-container {
		margin-left: 0;
		margin-right: 0;
	}
	.f-media-container {
		margin-left: 0;
	}
	.lower-footer-text {
		display: block;
	}
	.lower-footer {
		padding: 10px 0 80px;
	}
	.footer-top{
		overflow: hidden;
	}
	.footer{
		overflow: hidden;
	}
	.scroll-top {
		bottom: 4.5rem;
		right: 1rem;
	}
}

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

}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {


}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.contact-bottom-sec .col-sm-12 {
		width: 50%;
	}
	.map-sec-right .col-sm-12 {
		width: 50%;
	}
	.footer .col-sm-12 {
		width: 50%;
	}

}

/* 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) {
	.map-sec .col-md-6 {
		width: 100%;
	}
	.map-sec-right .col-md-6{
		width: 50%;
	}
}

/* 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) {
	.map-sec .col-md-6 {
		width: 100%;
	}
	.map-sec-right .col-md-6{
		width: 50%;
	}
}

/* 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) {
	.map-sec .col-md-6 {
		width: 100%;
	}
	.map-sec-right .col-md-6{
		width: 50%;
	}
	.partner-container img {
		width: auto;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.animate {
		animation: none;
	}
	.banner-container {
		margin-left: 60px;
	}
	.contact-sec-right .common-heading {
		font-size: 40px;
		line-height: 40px;
	}
	.map-sec-right .common-heading {
		font-size: 24px;
	}
	.partner-container {
		justify-content: center;
		flex-wrap: wrap;
	}
	.partner-container img{
		width: 125px;
	}
}
/* 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) {

}

@media screen and (min-width: 1424px) {
	.banner-container {
		margin-left: 60px;
	}
}

@media screen and (min-width: 1624px) {
	.banner-sec:before {
		right: 13%;
	}
}

@media screen and (min-width: 1920px) {
	.banner-sec:before {
		right: 14%;
	}
}

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

}

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

}



@media (min-width: 1025px) and (max-width: 1199px){

}