@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
		url('../fonts/Poppins-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
		url('../fonts/Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
		url('../fonts/Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
		url('../fonts/Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}



/* Reset css  */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

ul {
	list-style: none;
}

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

a {
	color: #000;
	text-decoration: none;
}

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

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

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

/* top header css here  */
.top-header {
	padding: 6px 0;
	background-color: #ffffff;
	border-bottom: 1px solid #bbbbbb;
}

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

.info-container {
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.5s ease;
}
.info-container:hover{
	scale: 1.1;
}
.info-container:hover .top-header-text{
	color: #ff8b00;
}
.top-header-text {
	font-size: 16px;
	color: #000;
	font-weight: 500;
}

.h-social-media-container {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: end;
}
.h-social-media-container img{
	transition: all 0.5s ease;
}

.h-social-media-container img:hover{
	scale: 1.3;
}


/* main header section css here  */
.main-header {
	background-color: #ffffff;
	transition: all 0.5s ease;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

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

.pos-fixed {
	position: sticky;
}

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

	to {
		transform: translateY(0);
	}
}

.main-header ul {
	padding-left: 30px;
	position: relative;
}

.main-header ul li a {
	padding-right: 22px !important;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	color: #0b1d3e;
	text-transform: capitalize;
	transition: all 0.5s ease;
}


.link-active a,
.main-header ul li a:hover {
	/* background-color: #ea0700; */
	color: #009688 !important;
}

.logo-container img {
	max-width: 100%;
	height: auto;
	width: 166px;
	transition: all 0.5s ease;
}

.pos-fixed .logo-container {
	margin-top: 0;
	margin-bottom: 0;
	overflow: hidden;
	transition: all 0.5s ease;
}

.pos-fixed .logo-container img {
	transition: all 0.5s ease;
	width: 110px;
}

.logo-container {
	margin-bottom: -45px;
	transition: all 0.5s linear;
}

.header-btn {
	padding: 10px 40px;
	cursor: pointer;
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 25px;
	transition: all 0.5s ease;
	background-color: #009688;
	width: fit-content;
	float: right;
}

.header-btn:hover {
	color: #fff;
	background-color: #ff8c00;
}
.header-btn a{
	color:#fff;
}
.header-btn a:hover{
	color:#fff !important;
}
/* banner css here  */
.banner {
	position: relative;
}

.banner-img{
	width: 100%;
}
.banner .banner-main-container {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translate(-50%);
	width: 100%;
	max-width: 850px;
  }
.banner-heading {
	font-size: 55px;
	text-transform: capitalize;
	color: #00539f;
	font-weight: bold;
	text-align: center;
	line-height: 1.1;
}

.banner-text {
	font-size: 16px;
	padding: 14px 0;
	text-align: center;
}

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

.banner-btn-1 {
	border-radius: 24px;
	background-color: #009688;
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease;
}

.banner-btn-1:hover {
	background-color: #ff8c00;
}

.banner-btn-2 {
	border-radius: 24px;
	background-color: #ff8c00;
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.5s ease;
}

.banner-btn-2:hover {
	color: #fff;
	background-color: #009688;
}

.shape-container-1 {
	margin-top: -100px;
	z-index: 1;
	position: relative;
}

.Shape-1{
	width: 100%;
}

/* about-us-sec css here */
.about-us-sec {
	background-color: #ffffff;
	padding-bottom: 90px;
	position: relative;
}

.about-heading {
	font-size: 36px;
	text-transform: capitalize;
	color: #00539f;
	text-align: center;
	font-weight: 600;
}

.about-text {
	font-size: 16px;
	line-height: 30px;
	color: #161616;
	font-weight: 400;
	text-align: center;
	padding: 20px 0;
	width: 90%;
	margin: 0 auto;
}

.about-btn {
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 28px;
	background-color: #009688;
	width: fit-content;
	padding: 10px 20px;
	margin: 0 auto;
	transition: all 0.5s ease;
}

.about-btn:hover {
	background-color: #ff8c00;
}

.fig-1 {
	position: absolute;
	bottom: 0;
}

.fig-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* about us page css  */

.about-page .inner-title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    color: #009688;
}
.about-page .inner_heading {
	font-size: 40px;
	padding-right: 17px;
	font-weight: 500;
	line-height: 1.2em;
	padding-top: 15px;
}
.about-page .inner_text_medium{
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 20px;
}

.value-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.value-text{
	font-size: 14px;
}

/* our services sec */

.our-services-sec {
	background-color: #ddfffc;
	padding: 70px 0;
}

.our-services-heading {
	font-size: 36px;
	text-transform: capitalize;
	color: #00539f;
	font-weight: 600;
	text-align: center;
}

.our-services-card-container {
	margin-top: 30px;
}

.our-services-card-1 {
	min-height: 100%;
	border-radius: 20px;
	background-color: #ffffff;
	border: 2px solid #ff8c00;
	padding: 20px 7px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.our-services-card-2 {
	min-height: 100%;
	border-radius: 20px;
	background-color: #ffffff;
	border: 2px solid #009688;
	padding: 20px 7px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.our-services-card-text {
	font-size: 18px;
	line-height: 1.1;
	text-transform: capitalize;
	color: #000000;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}

.our-services-card-link {
	font-size: 16px;
	text-decoration: underline;
	text-transform: capitalize;
	color: #009688;
	font-weight: bold;
	text-align: center;
	text-underline-offset: 5px;
	transition: all 0.5s ease;
}

.our-services-card-link:hover {
	color: #ff8c00;
	text-underline-offset: 2px;
}

/* why-choose-us-sec css here  */
.why-choose-us-sec {
	padding: 70px 0;
	background-color: #fff;
}

.why-choose-us-heading {
	font-size: 36px;
	text-transform: capitalize;
	color: #00539f;
	font-weight: bold;
}

.why-choose-us-text {
	font-size: 16px;
	line-height: 26px;
	color: #434343;
	padding: 10px 0 20px;
}

.why-choose-us-text ul{
	padding: 10px 0;
}

.why-choose-us-text ul li {
	background: url("../images/list-img.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;
}

.why-choose-us-btn {
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 28px;
	background-color: #009688;
	width: fit-content;
	padding: 10px 20px;
	transition: all 0.5s ease;
}

.why-choose-us-btn:hover {
	background-color: #ff8c00;
}

/* testimonial-sec css here  */

.testimonial-sec {
	background-color: #fff6eb;
	padding: 70px 0;
}

.testimonial-heading {
	font-size: 36px;
	letter-spacing: 1px;
	text-transform: capitalize;
	color: #00539f;
	font-weight: bold;
	text-align: center;
	padding-bottom: 35px;
}

.instagram-sec {
	background-color: #fff;
	padding: 70px 0;
}

/* news-letter css here  */
.news-letter-sec {
	background-color: #ffffff;
	padding: 70px;
	position: relative;
}

.news-letter-container {
	border-radius: 30px;
	background-color: #00539f;
	padding: 40px 0 95px;
	position: relative;
}

.news-letter-text {
	font-size: 33px;
	letter-spacing: 1px;
	line-height: 40px;
	text-transform: capitalize;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}

.news-letter-btn-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.news-letter-btn-1 {
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 29px;
	background-color: #009688;
	padding: 15px 30px;
	transition: all 0.5s ease;
}

.news-letter-btn-1:hover {
	color: #009688;
	background-color: #ffffff;
}

.news-letter-btn-2 {
	font-size: 16px;
	color: #009688;
	font-weight: bold;
	border-radius: 29px;
	background-color: #ffffff;
	padding: 15px 30px;
	transition: all 0.5s ease;
}

.news-letter-btn-2:hover {
	color: #ffffff;
	background-color: #009688;
}

.fig-3 {
	position: absolute;
	bottom: 0;
}

.fig-4 {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* footer */
footer {
	background-color: #051626;
}

.footer-heading {
	font-size: 20px;
	text-transform: capitalize;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 20px;
}

.footer-main-links {
	padding: 50px 0 30px;
}

.footer ul li {
	font-weight: normal;
	list-style: none;
	padding-bottom: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer ul li a {
	color: #ffffff;
	transition: all 0.2s ease;
}

.footer ul li a:hover {
	color: #009688;
}

.footer .pad-left {
	padding-left: 20px;
}

.footer .social-media-container {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
/* .contact-container {
	margin-top: 30px;
}
.services-container {
	margin-top: 10px;
} */

.quick-links {
	border-right: 1px solid #323232;
	padding-left: 40px;
	border-left: 1px solid #323232;
	margin-left: -15px;
}

.footer-service {
	padding-left: 20px;
	margin-left: 10px;
}

.footer-social {
	border-left: 1px solid #323232;
	padding-left: 30px;
	margin-left: 5px;
}

.mid-footer {
    border-top: 2px solid #fff;
    padding: 15px 0;
}
.mid-footer-container {
    display: flex;
    justify-content: space-between;
    color: #fff;
    align-items: flex-start;
}
.mid-footer-container a{
	transition: all 0.3s ease;
	color: #fff;
}
.gmb {
    border: 1px solid #e8eaeb;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 4px 9px;
}
.mid-footer-conditions{
	display: flex;
	align-items: center;
	gap: 15px;
}

.lower-footer {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	padding: 25px 0;
	border-top: 2px solid #fff;
	transition: all 0.5s ease;
	line-height: 1.8;
}

.lower-footer a {
	transition: all 0.3s ease;
	color: #fff;
}

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

.footer-social-media-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-social-media-links a:hover {
    background-color: #009688;
    border-radius: 50%;
}


/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
}


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

.page .entry-header,
.blog_page_header {
	background: url("../images/banner-img.jpg") #eee no-repeat center !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: #009688;
	position: relative;
	font-size: 15px;
}

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

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

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

.inner_title strong {
	color: #009688;
}

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

.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-img.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: #009688;
	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;
}
.reffer-form_title{
	color: #131313;
	font-size: 28px;
	text-align: center;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}
.reffer-form_title strong {
	color: #009688;
}
.reffer-form_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #009688;
}
.reffer-form-container a{
	text-decoration: none !important;
}
.careers_title {
	color: #131313;
	font-size: 30px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.careers_title strong {
	color: #009688;
}

.careers_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #009688;
}
.privacy-policy-page .inner_txt a{
	color: #fff;
	text-decoration: none !important;
}
.terms-conditions-page .inner_txt a{
	text-decoration: none !important;
}
.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: #194d87;
}

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

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

.m-top {
	margin-top: 20px;
}
.inner_bottm_sec-btn {
	padding: 10px 30px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	border-radius: 25px;
	transition: all 0.5s ease;
	background-color: #ff8b00;
	width: fit-content;
	margin: 25px auto 0;
}
.inner_bottm_sec-btn a {
	color: #ffffff;
	text-decoration: none !important;
}
.inner_bottm_sec-btn:hover{
	background-color: #fff;
}
.inner_bottm_sec-btn:hover a{
	color: #009688;
}
.Referral-Form-page .inner_txt a{
	text-decoration: none;
}
.reffer-form-label {
	font-size: 17px;
	font-weight: 500;
}
.reffer-form-label p{
	margin-bottom: 8px;
}
.referral-form-input input{
	width: 100%;
	border: 1px solid #009688;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}
.referral-form-textarea textarea{
	width: 100%;
	border: 1px solid #009688;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
	height: 100px;
}
.reffer-form-container {
	margin-top: 30px;
	padding: 40px 30px 0;
	border-radius: 20px;
	box-shadow: 0 0 5px #dfdfdf;
}
.referral-form-heading p{
	margin-bottom: 0;
}
.referral-form-heading {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 24px;
}
.referral-form-heading strong{
	color: #009688;
}
.referral-form-heading::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 12px;
	width: 30px;
	height: 3px;
	background: #009688;
}

.referral-form-radio .wpcf7-list-item{
	display: block;
	margin: 0;
}
.refer-form-text {
    font-size: 17px;
    text-align: center;
    font-weight: 600;
}
.refer-form-submit-btn {
    display: flex;
    justify-content: center;
}
.refer-form-submit-btn input[type="submit"] {
    width: fit-content;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 28px;
    background-color: #009688;
    padding: 10px 40px;
    transition: all 0.5s ease;
}
.refer-form-submit-btn input[type="submit"]:hover {
    background-color: #ff8b00;
}
.refer-form-submit-btn .wpcf7-spinner{
	display: none;
}

/* 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: #009688;
}

.contact_page_heading strong {
	color: #009688;
}

.contact_page_info {
	position: relative;
	color: #000;
	margin-top: 25px;
	padding-left: 60px;
}

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

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

.contact-img {
	position: absolute;
	top: 3px;
	left: 0;
	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 25px 0;
	border-radius: 5px;
}
.contact-page input {
	width: 100%;
	border: 1px solid #009688;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}
.contact-page textarea {
	width: 100%;
	border: 1px solid #009688;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
	height: 100px;
}

.contact-page input[type="submit"] {
	width: fit-content;
	font-size: 16px;
	color: #ffffff;
	font-weight: bold;
	border-radius: 28px;
	background-color: #009688;
	padding: 15px 30px;
	transition: all 0.5s ease;
}

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



.testimonial-sec .sp-testimonial-free-section .sp-testimonial-item {
	margin-top: 23px;
}

.testimonial-sec #sp-testimonial-free-wrapper-62 .sp-testimonial-free {
	background-color: #ffffff !important;
	padding: 70px 10px 20px;
	border-radius: 20px;
}

.testimonial-sec #sp-testimonial-free-wrapper-62 .sp-testimonial-free-section .sp-testimonial-client-name {
	position: absolute;
	top: 15px;
	left: 20px;
	width: 100%;
	text-align: start;

}

#sp-testimonial-free-wrapper-62 .sp-testimonial-free-section .sp-testimonial-client-name::before {
	content: url("../images/rating-img.png");
	position: absolute;
	top: 25px;
}

#sp-testimonial-free-wrapper-62 .sp-testimonial-free-section .sp-testimonial-client-name::after {
	content: url("../images/quotation-mark-img.png");
	position: absolute;
	top: -38px;
	right: 50px;
}

.testimonial-sec .sp-testimonial-free-section .sp-testimonial-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	text-align: start !important;
	margin: 0 !important;
}



/* tetimonial-page css here  */
.testimonial-page #sp-testimonial-free-wrapper-106 .sp-testimonial-free {
	background: #ffffff !important;
	border-radius: 20px !important;
	box-shadow: 0 0 5px #acacac;
	min-height: 100%;
	margin-top: 15px;
	margin-left: 7px;
	padding: 80px 10px 20px;
	position: relative;
}

.testimonial-page .sp-testimonial-free-section .sp-testimonial-client-testimonial,
.testimonial-page .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	margin: 0 !important;
}

.testimonial-page #sp-testimonial-free-wrapper-106 .sp-testimonial-free-section .sp-testimonial-client-name  {
	position: absolute;
	top: 25px;
	left: 20px;
	width: 100%;
	text-align: start;

}
.testimonial-page #sp-testimonial-free-wrapper-106 .sp-testimonial-free-section .sp-testimonial-client-name::before {
	content: url("../images/rating-img.png");
	position: absolute;
	top: 25px;
}
.testimonial-page #sp-testimonial-free-wrapper-106 .sp-testimonial-free-section .sp-testimonial-client-name::after {
	content: url("../images/quotation-mark-img.png");
	position: absolute;
	top: -38px;
	right: 50px;
}


/* How we Work page css*/
.our-work-sub-heading {
    text-align: center;
    text-transform: uppercase;
    color: #009688;
    letter-spacing: 1px;
}

.our-work-heading {
    color: #131313;
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
	text-align: center;
	position: relative;
	padding-bottom: 40px;
	padding-top: 10px;
}
.our-work-heading:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 3px;
    background: #fff;
}
.our-work-title {
	color: #131313;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.our-work-title:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 70px;
	height: 3px;
	background: #009688;
}
.our-work-text {
    font-size: 15px;
}
.our-work-left {
    padding-right: 50px;
	border-right: 1px solid #009688;
}
.our-work-right {
    padding-left: 55px;
}
.our-work-container {
    margin-bottom: 30px;
}

/* thank you page   */
.thankyou-btn {
    border-radius: 27px;
    background-color: #009688;
    transition: all 0.8s ease !important;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding: 15px 30px;
}
.thankyou-btn:hover{
	background-color: #ff8b00;
}
.thankyou-text {
    font-size: 18px;
    font-weight: 500;
    padding-top: 20px;
}
.common_paragraph {
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
}

.back_btn {
	margin: 35px 0;
}

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

.common-btn1 {
	background-color: #009688;
	padding: 18px 25px !important;
	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;
	border-radius: 27px;
}
.common-btn1:hover{
	color: #ffffff !important;
	background-color: #ff8b00;
}
/* footer_fixed_buttons css  */
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}

.footer_btn1 {
    background: #ff8b00;
    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: #009688;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important;
    text-transform: capitalize;
}
#rmp-menu-wrap-231 .rmp-menu-current-item .rmp-menu-item-link:hover {
    color: #fff !important;
}

.blog-page-content .margin-top {
    margin-top: 20px;
}

.blog-page-content ul li{
	list-style: disc !important;
	margin-left: 20px;
}
.blog-page-content .container{
	padding: 0;
}
.privacy-policy-page .margin-top {
    margin-top: 20px;
}
.terms-conditions-page .margin-top {
    margin-top: 20px;
}
.accordion {
    margin-top: 30px;
}
.accordion-header br{
	display: none;
}
.accordion-button {
    background-color: #009688 !important;
    color: #fff !important;
	outline: none !important;
}
.accordion-button:focus{
	outline: none !important;
	box-shadow: none;
}

.blog-page-content {
    overflow: hidden;
}

.accordion-button::after {
    background-image: url("../images/up-arrow.png") !important;
}
.single .entry-content ul {
  list-style: square;
	margin: 0 0 24px 20px;
}
/* media query start here*/
@media only screen and (min-width : 320px) and (max-width : 1023px) {
	a[href="/book-a-call"] {
		padding: 5px 15px;
		border-radius: 100px;
		background-color: orange;
		color: #fff;
	}
	
	a[href="/staff-login"] {
		padding: 5px 15px;
		border-radius: 100px;
		background-color: #fff;
		color: #2a2a2a;
	}
}
@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) {

}
/* mobile screen  */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	/* 	top header css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	.main-header-mid {
		display: none;
	}
	.main-header-right {
		display: none;
	}

	/* 	banner css  */
	.banner {
		margin-top: 90px;
		overflow: hidden;
	}
	
	
	.logo-container {
		margin-top: 0;
		margin-bottom: 0;
		overflow: hidden;
	}
	.logo-container img {
		max-width: 100%;
		height: auto;
		width: 110px;
		transition: all 0.5s ease;
	}
	.banner-img {
		width: 100%;
		min-height: 770px;
		object-fit: cover;
	}
	.banner .banner-main-container {
		top: 10px;
	}
	.banner-heading {
		font-size: 20px;
	}

	.shape-container-1 {
		margin-top: -40px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 200px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
		padding-left: 0 150px;
	}
	.news-letter-container {
		padding: 40px 0 190px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 89px !important;
		margin: 92px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.inner-mt{
		margin-top: 30px;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
	
	.reffer-form_title {
		font-size: 26px;
	}
	.reffer-form-container {
		padding: 25px 5px 0;
	}
}
/* mobile rotate screen  */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	/* 	top header css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	.main-header-mid {
		display: none;
	}
	.main-header-right {
		display: none;
	}

	/* 	banner css  */
	.banner {
		margin-top: 110px;
		overflow: hidden;
	}
	.logo-container {
		margin-top: 0;
		margin-bottom: 0;
		overflow: hidden;
	}
	.logo-container img {
		max-width: 100%;
		height: auto;
		width: 110px;
		transition: all 0.5s ease;
	}
	.banner-img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		object-position: center;
	}
	.banner .banner-main-container {
		top: 50px;
		left: 50%;
		transform: translatex(-50%);
	}
	.banner-heading {
		font-size: 35px;
	}

	.shape-container-1 {
		margin-top: -103px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 100px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
		padding: 0 150px;
	}
	.news-letter-container {
		padding: 40px 0 190px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 89px !important;
		margin: 111px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.inner-mt{
		margin-top: 30px !important;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
}
/* 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) {

}

/* iPhone 12 Pro */
@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
/* 	top header css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	.main-header-mid {
		display: none;
	}
	.main-header-right {
		display: none;
	}
	#rmp_menu_trigger-231 {
		top: 13px !important;
	}
	/* 	banner css  */
	.banner {
		margin-top: 79px;
		overflow: hidden;
	}
	.logo-container {
		margin-bottom: 0;
	}
	.banner-img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		object-position: center;
	}
	.banner .banner-main-container {
		top: 50px;
		left: 50%;
		transform: translatex(-50%);
	}
	.banner-heading {
		font-size: 35px;
	}

	.shape-container-1 {
		margin-top: -103px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 100px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
		padding: 0 150px;
	}
	.news-letter-container {
		padding: 40px 0 90px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.footer-left {
		width: 50%;
	}
	.footer-mid {
		width: 50%;
	}
	.footer-right {
		width: 100%;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 100px 0 100px !important;
		margin: 79px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.about-page .inner_heading br{
		display: none;
	}
	.inner-mt{
		margin-top: 0px;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
	.shape-container-1 {
		margin-top: -102px;
	}
}
/* iPhone XR totate*/
@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 css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	.main-header-mid {
		display: none;
	}
	.main-header-right {
		display: none;
	}
	#rmp_menu_trigger-231 {
		top: 13px !important;
	}
	/* 	banner css  */
	.banner {
		margin-top: 79px;
		overflow: hidden;
	}
	.logo-container {
		margin-bottom: 0;
	}
	.banner-img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		object-position: center;
	}
	.banner .banner-main-container {
		top: 50px;
		left: 50%;
		transform: translatex(-50%);
	}
	.banner-heading {
		font-size: 35px;
	}

	.shape-container-1 {
		margin-top: -103px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 100px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
	}
	.news-letter-container {
		padding: 40px 0 90px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.footer-left {
		width: 50%;
	}
	.footer-mid {
		width: 50%;
	}
	.footer-right {
		width: 100%;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 100px 0 100px !important;
		margin: 79px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.about-page .inner_heading br{
		display: none;
	}
	.inner-mt{
		margin-top: 0px;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
}
/* iPhone 14 Pro Max */
@media only screen and (min-device-width: 430px) and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	/* 	top header css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	.main-header-mid {
		display: none !important;
	}
	.main-header-right {
		display: none !important;
	}
	#rmp_menu_trigger-231 {
		top: 13px !important;
	}
	/* 	banner css  */
	.banner {
		margin-top: 79px;
		overflow: hidden;
	}
	.logo-container {
		margin-bottom: 0;
	}
	.banner-img {
		width: 100%;
		height: 500px;
		object-fit: cover;
		object-position: center;
	}
	.banner .banner-main-container {
		top: 50px;
		left: 220px;
	}
	.banner-heading {
		font-size: 35px;
	}

	.shape-container-1 {
		margin-top: -103px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 100px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
	}
	.news-letter-container {
		padding: 40px 0 90px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.footer-left {
		width: 50%;
	}
	.footer-mid {
		width: 50%;
	}
	.footer-right {
		width: 100%;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 100px 0 100px !important;
		margin: 79px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.about-page .inner_heading br{
		display: none;
	}
	.inner-mt{
		margin-top: 0px;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
}
/* tab screen  */

@media only screen and (min-width: 768px) and (max-width : 1200px) and (orientation: portrait) {
	.main-header-mid {
		display: none;
	}
	.main-header-right {
		display: none;
	}

}
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
		/* 	top header css  */
	.main-header {
		position: fixed;
	}
	.animate {
		animation: none;
	}
	#rmp_menu_trigger-231 {
		top: 13px !important;
	}
	/* 	banner css  */
	.banner {
		margin-top: 79px;
		overflow: hidden;
	}
	.logo-container {
		margin-bottom: 0;
	}
	.banner-img {
		width: 100%;
		height: 100vh;
		object-fit: cover;
		object-position: center;
	}
	.banner .banner-main-container {
		top: 50px;
		left: 50%;
		transform: tanslatex(-50%);
	}
	.banner-heading {
		font-size: 35px;
	}

	.shape-container-1 {
		margin-top: -103px;
	}

	/* 	about css here  */
	.about-us-sec {
		padding-bottom: 100px;
	}
	.about-heading {
		font-size: 26px;
	}
	.about-text {
		width: 100%;
	}
	.fig-1,.fig-2 {
		width: 170px;
	}
	
	/* 	our-services-sec css here */ 
	.our-services-card-container {
		margin-top: 0;
	}
	.our-services-sec-mt {
		margin-top: 25px;
	}
	.our-services-heading {
		font-size: 26px;
	}
	
	/* 	why-choose-us-sec css here  */
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.why-choose-us-heading {
		font-size: 26px;
	}
	.why-choose-us-text {
		font-size: 15px;
	}
	.why-choose-us-text ul li {
		font-size: 15px;
	}
	
	/* 	testimonial-sec css here  */
	.testimonial-sec {
		padding: 50px 0;
	}
	.sp-testimonial-free-section.swiper-initialized, .sp-testimonial-free-section:not(.swiper-initialized,.tfree-layout-grid) {
		margin: 0 5px !important;
		margin-bottom: 0px !important;
	}
	.testimonial-heading {
		font-size: 26px;
	}
	/* 	news-letter-sec css here */
	.news-letter-sec {
		padding: 50px 0;
	}
	.news-letter-text {
		font-size: 20px;
		line-height: 26px;
	}
	.news-letter-container {
		padding: 40px 0 90px;
	}
	.fig-3{
		width: 120px;	
	}
	.fig-4 {
		width: 170px;
	}

	.shape-container-2 {
		margin-bottom: -5px;
	}
	
		
	/* 	footer css here  */
	.footer{
		overflow: hidden;
	}
	.footer-left {
		width: 50%;
	}
	.footer-mid {
		width: 50%;
	}
	.footer-right {
		width: 100%;
	}
	.mid-footer-container {
		flex-direction: column;
		gap: 5px;
	}
	.services-container {
		margin-top: 0px;
		margin-bottom: 20px;
	}
	.footer ul li {
		padding-bottom: 10px;
	}
	.lower-footer {
		padding: 25px 0 60px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 0.5rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 100px 0 100px !important;
		margin: 79px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.about-page .inner_heading {
		font-size: 26px;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.about-page .inner_text_medium {
		font-size: 17px;
	}
	.about-page .inner_heading br{
		display: none;
	}
	.inner-mt{
		margin-top: 0px;
	}
	.value-title {
		text-align: start;
		padding-bottom: 10px;
	}
	.value-text {
		margin-bottom: 20px;
	}
	.inner_title {
		margin-top: 15px;
	}
	.our-work-right {
		padding-left: 15px;
	}
	.contact_right {
		margin-top: 30px;
	}
	.list-view .site-content .post-thumbnail img {
		float: none;
		margin: 0 10px 20px 0 !important;
		width: 100% !important;
	}
	.post .entry-title {
		font-size: 26px !important;
		font-weight: 600 !important;
	}
	.content-sidebar {
		margin-top: 20px !important;
	}
	.widget h2 {
		margin-top: 10px !important;
	}
	.our-work-left {
		padding-right: 10px;
		border-right: 0;
	}
	.links_tools_page .inner_title {
		margin-top: 0;
	}
	.links_tools_page .margin-top {
		margin-top: 30px;
	}
	.careers_page .inner_title {
		margin-top: 0;
	}
	.careers_page .margin-top {
		margin-top: 30px;
	}
}
/* tab rotate screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.main-header ul li a {
		padding-right: 18px !important;
		font-size: 14px;
	}
	.main-header ul {
		padding-left: 0px;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		right: 4px !important;
		top: 20px;
	}
	.banner-heading {
		font-size: 40px;
	}
	.banner .banner-main-container {
		left: 50%;
		transform: translatex(-50%);
	}
	
}


/* iPad */
@media only screen and (min-width : 810px) and (max-width : 1080px) and (orientation : portrait) {

}
/* iPad rotate*/
@media only screen and (min-width : 810px) and (max-width : 1080px) and (orientation : landscape) {
	.main-header ul li a {
		padding-right: 18px !important;
		font-size: 14px;
	}
	.main-header ul {
		padding-left: 0px;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		right: 4px !important;
		top: 20px;
	}
	.banner-heading {
		font-size: 40px;
	}
	.banner .banner-main-container {
		left: 220px;
	}
}

/* iPad Air */
@media only screen and (min-width : 820px) and (max-width : 1180px) and (orientation : landscape) {
	.main-header ul li a {
		padding-right: 18px !important;
		font-size: 14px;
	}
	.main-header ul {
		padding-left: 0px;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		right: 4px !important;
		top: 18px !important;
	}
	.banner-heading {
		font-size: 40px;
	}
	.banner .banner-main-container {
		left: 300px;
	}
}

/* iPad Pro */
@media only screen and (min-width : 1024px) and (max-width : 1366px) and (orientation : portrait) {
		.main-header ul li a {
		padding-right: 20px !important;
		font-size: 15px;
	}
	.main-header ul {
		padding-left: 20px;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		right: 4px !important;
	}
	.banner-heading {
		font-size: 40px;
	}
	.banner .banner-main-container {
		left: 50%;
		transform: translatex(-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 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) {
	.main-header ul li a {
		padding-right: 39px !important;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		font: normal 15px/1 Genericons !important;
		right: 24px !important;
		top: 21px !important;
	}
	.banner-heading {
		font-size: 44px;
	}
	.Shape-2{
		width: 100%;
		margin-bottom: -70px;
	}
}
@media screen and (min-width: 1624px) {
	.main-header ul li a {
		padding-right: 39px !important;
	}
	.primary-navigation .menu-item-has-children > a:after, .primary-navigation .page_item_has_children > a:after {
		font: normal 15px/1 Genericons !important;
		right: 24px !important;
		top: 21px !important;
	}
	.Shape-2{
		width: 100%;
		margin-bottom: -70px;
	}
}

/* blog page css  */
.more-link {
    display: block;
    background: #009688;
    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: #ff8b00 !important;
	color: #fff !important;
}

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

.site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content {
	max-width: 100%;
	background-color: transparent;
}

.content-sidebar .widget a {
	color: #000;
}

.site-navigation .current_page_item > a, .site-navigation .current_page_ancestor > a, .site-navigation .current-menu-item > a, .site-navigation .current-menu-ancestor > a {
	color: #009688;
	font-weight: 500;
}

@media screen and (min-width: 1040px) {
    .site-content .has-post-thumbnail .entry-header {
        margin-top: 0;
    }
}

@media screen and (min-width: 783px) {
    .primary-navigation ul ul {
        background-color: #fff;
        top: 100%;
        z-index: 99999;
        box-shadow: 0px 0px 5px 0px #747474bf;
        transition: all 0.5s ease;
    }
	
	.primary-navigation ul ul a {
		padding: 10px 12px;
	}
	
	.primary-navigation li:hover > a, .primary-navigation li.focus > a {
        background-color: transparent;
        color: inherit;
    }
	
	.primary-navigation ul li:hover > ul, .primary-navigation ul li.focus > ul {
        left: auto;
        padding-left: 0;
    }
	
	.primary-navigation ul ul a:hover, .primary-navigation ul ul li.focus > a, .primary-navigation ul ul .current_page_item a {
        background-color: #009688;
        color: #fff !important;
    }
	
	
	.sub-menu {
		min-width: 250px;
	}
	
	.sub-menu li, .primary-navigation ul ul a {
		width: 100%;
		line-height: 1.5;
	}
	
	
}


.call-btn-container {
	text-align: right;
}

.call-btn {
	padding: 5px 15px;
	border-radius: 100px;
	background-color: orange;
	color: #fff;
}

.call-btn:hover {
	color: #fff;
}

.elementor-widget-container ul {
	list-style-type: disc;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
}

@media screen and (min-width: 673px) {
	.full-width .site-content .has-post-thumbnail .entry-header, .full-width .site-content .hentry.has-post-thumbnail:first-child {
        margin-top: 0;
    }
	
	.news-letter-btn-container {
		flex-direction: row;
	}
}

@media screen and (min-width: 783px) {
  .site-navigation li .active-link-no-hash > a {
    color: #fff;
  }
}

#popup-wrapper {
	background-color: #EDFDFA;
} 
