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

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

.sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-sub-heading {
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 29px;
  text-transform: uppercase;
  color: #323232;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  padding-left: 100px;
}

.common-sub-heading::before {
  content: '';
  width: 87px;
  height: 5px;
  background-color: #c7b495;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.common-heading {
  font-size: 40px;
  line-height: 48px;
  color: #393939;
  font-weight: 600;
}

.common-heading strong {
  color: #6b2875;
  font-weight: 600 !important;
}

.common-text {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 28px;
  color: #313131;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 15px 30px;
  width: fit-content;
  background-color: #6b2875;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  border-radius: 13px;
  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: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

.common-btn img {
  width: 26px;
}

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

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

.common-btn:hover {
  box-shadow: 0 0 5px #a5a5a5;
}

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

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

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

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

.common-btn-3:hover {
  color: #000000;
}

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

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

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

  to {
    transform: translateY(0);
  }
}

.padding-0 {
  padding: 0;
}

.top-header {
  background-color: #678e29;
  padding: 3px;
  position: relative;
  z-index: 99999;
}

.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 3px 0;
}

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

.top-header-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
  position: relative;
}

.top-header-info:last-child:before {
  display: none;
}

.top-header-info a {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
}

.top-header-info a:hover {
  color: #c7b495;
}

.top-header-info img {
  width: 20px;
  animation: tilt-shaking .5s 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)
  }
} */

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

.media-img {
  width: 30px;
  height: 30px;
  border-radius: 17px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-img img {
  width: 15px;
}



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

.logo-container {
  position: relative;
  transition: all 0.5s ease;
}

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

.header-manu-container {
  margin-right: -45px;
  transition: all 0.5s ease;
}

.header-manu-container ul {
/*   width: 100%;
  display: flex;
  align-items: center; */
  transition: all 0.5s ease;
}

.main-header ul li {
  transition: all 0.5s ease;
  margin-right: 40px;
}

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

.main-header ul li a {
	font-size: 17px;
	color: #43453e;
	line-height: 60px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0;
}

.header-btn-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  transition: all 0.5s ease;
}

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

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

.main-header li a:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 5px;
  background: #abd573;
  bottom: 12px;
  left: 0;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.main-header li a:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.primary-navigation li li a:hover:after {
  visibility: hidden;
  opacity: 0;
}

.site-navigation .current_page_item>a:after,
.site-navigation .current_page_ancestor>a:after,
.site-navigation .current-menu-item>a:after,
.site-navigation .current-menu-ancestor>a:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.site-navigation li .current_page_item>a:after,
.site-navigation li .current_page_ancestor>a:after,
.site-navigation li .current-menu-item>a:after,
.site-navigation li .current-menu-ancestor>a:after {
  visibility: hidden;
  opacity: 0;
}

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


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

.banner-container {
  max-width: 1140px;
  width: 100%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1;
}

.banner-sub-heading-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.banner-sub-heading {
  font-size: 22px;
  text-transform: uppercase;
  color: #8cc63f;
  font-weight: 500;
  padding: 6px 20px;
  background: #0000002f;
}

.banner-container .common-heading {
  font-size: 58px;
  line-height: 70px;
  color: #ffffff;
  font-weight: 500;
  margin: 15px 0;
}

.banner-container .common-text {
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  padding: 10px 0 30px;
  max-width: 676px;
}

.banner-btn-container {
  display: flex;
  align-items: start;
  gap: 15px;
}


/* banner-bottom-sec */
.banner-bottom-sec {
  margin-top: -155px;
  position: relative;
  z-index: 1;
}

.banner-bottom-inner {
  border-radius: 19px;
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 25px;
  background: #ffffff;
}

.banner-bottom-inner .common-heading {
  font-size: 30px;
  color: #678e29;
}

.form-input-container {
  position: relative;
}

.form-input-container br {
  display: none;
}

.form-icon {
  width: 36px;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  left: 10px;
  border-right: 2px solid #cccccc;
  padding-right: 6px;
}

/* about-sec */
.about-sec {
  padding: 80px 0;
}

.about-right {
  margin-left: 20px;
}

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

.Client-Satisfied {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Client-Satisfied img {
  width: 142px;
}

/* our-services-sec */
.our-services-sec {
  background: #f3f9eb;
  padding: 90px 0;
}

.our-services-sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-services-sub-heading {
  background-color: #e1e1e15b;
  font-size: 22px;
  text-transform: uppercase;
  color: #8cc63f;
  font-weight: 500;
  padding: 3px 25px;
  margin-bottom: 15px;
}

.service-img {
	border-radius: 10px;
	width: 100%;
}

.our-service-card:hover .service-card-img {
  background-color: #6b2875;
}

.service-card-img {
  width: 67px;
  height: 67px;
  border-radius: 34px;
  filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.22));
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -60px;
  transition: all 0.5s ease;
}

.our-service-card:hover .service-card-img img {
  filter: brightness(0) invert(100%);
}

.service-card-img img {
  width: 34px;
  transition: all 0.5s ease;
}

.our-service-card {
  position: relative;
}

.service-card-outer {
  background: #ffffff;
  width: 94%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0;
  height: 50px;
  transition: all 0.5s ease;
}

.our-service-card:hover .service-card-heading {
  color: #ffffff;
  padding-bottom: 10px;
}

.service-card-heading {
  font-size: 20px;
  line-height: 32px;
  color: #6b2875;
  font-weight: 600;
}

.service-card-text {
  max-width: 310px;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
}

.our-service-card:hover .service-card-outer {
  height: 250px;
  background-color: #678e29;
}

.service-card-inner {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  display: none;
}

.our-service-card:hover .service-card-inner {
  display: flex;
  transition-delay: 1s;
}

.service-card-inner .common-btn {
  text-transform: capitalize;
  font-size: 15px;
  line-height: 22px;
  padding: 12px 25px;
}



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

.contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 15px;
}

/* info-sec */
.info-sec {
  overflow: hidden;
}

.info-inner {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}

.info-sec .container {
  max-width: 1424px;
  padding: 0;
}

.info-inner img {
  margin: -5px 0;
}

.info-card {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 740px;
  border-radius: 25px;
  filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.16));
  background: url("../images/info-card-bg.jpg") no-repeat;
  background-size: cover;
  padding: 40px 40px 40px 120px;
}

.info-card-heading {
  font-size: 42px;
  line-height: 50px;
  color: #373737;
  font-weight: 600;
}

.info-card-heading strong {
  color: #678e29;
}

.info-card-text {
  font-size: 17px;
  line-height: 29px;
  color: #323232;
}

.info-card-text strong {
  font-size: 20px;
  color: #6b2875;
  font-weight: 600;
}

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

.why-choose-sec .container {
  max-width: 1624px;
}

.why-choose-sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-sub-heading {
  background-color: #e1e1e148;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  padding: 3px 20px;
  margin-bottom: 20px;
}


.why-choose-sec .common-heading {
  color: #ffffff;
}

.why-choose-sec .common-heading strong {
  color: #abd573;
}

.why-choose-card {
  border-radius: 10px;
  filter: drop-shadow(0px 6px 13.5px rgba(0, 0, 0, 0.27));
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 5px;
  margin-top: 35px;
}



.why-choose-img {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  filter: drop-shadow(0px 6px 3px rgba(0, 0, 0, 0.22));
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -65px;
}

.why-choose-img img {
  width: 33px;
}

.why-choose-card-heading {
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 29px;
  color: #6b2875;
  font-weight: 600;
  text-align: center;
  padding: 15px 0 8px;
}

.why-choose-card-text {
  font-size: 14px;
  line-height: 22px;
  color: #1c1c1c;
  text-align: center;
  max-width: 278px;
  height: 90px;
  overflow: auto;
}

.why-choose-card-text::-webkit-scrollbar {
  width: 5px;
}

.why-choose-card-text::-webkit-scrollbar-track {
  background: #678e29;
}

.why-choose-card-text::-webkit-scrollbar-thumb {
  background: #5d5d5d;
}

.why-choose-card-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}


/* testimonial-sec */
.testimonial-sec {
  background: url("../images/testimonial-bg.jpg") no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.testimonial-sub-heading {
  font-size: 26px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  background-color: #e1e1e14d;
  width: fit-content;
  padding: 3px 25px;
}

.quote-icon {
  width: 150px;
}

.testimonial-left .common-heading {
  color: #ffffff;
}

.testimonial-left .common-heading strong {
  color: #abd573;
}

#sp-testimonial-free-wrapper-80 .sp-testimonial-free,
#sp-testimonial-free-wrapper-48 .sp-testimonial-free {
  border-radius: 14px !important;
  filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.22));
  background-color: #ffffff !important;
  padding: 25px 20px 120px;
  margin: 10px;
}

#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-image img,
#sp-testimonial-free-wrapper-80 .sp-testimonial-free-section .sp-testimonial-client-image img {
  width: 90px !important;
}

#sp-testimonial-free-wrapper-80 .sp-testimonial-free-section .sp-testimonial-client-image,
#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-image {
  position: absolute;
  bottom: 0;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  font-size: 17px !important;
  letter-spacing: 0px !important;
  line-height: 28px !important;
  color: #3a3a3a !important;
  font-weight: 600 !important;
  text-align: start !important;
}

#sp-testimonial-free-wrapper-80 .sp-testimonial-free-section .sp-testimonial-client-name,
#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-name {
  font-size: 22px !important;
  line-height: 34px !important;
  color: #6b2875 !important;
  font-weight: 600 !important;
  position: absolute;
  bottom: 55px;
  left: 130px;
}

#sp-testimonial-free-wrapper-80 .sp-testimonial-free-section .sp-testimonial-client-designation,
#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-designation {
  font-size: 16px !important;
  line-height: 34px !important;
  color: #333333 !important;
  font-weight: 600 !important;
  position: absolute;
  bottom: 35px;
  left: 130px;
}

.sp-testimonial-free-section .testimonial-pagination .swiper-pagination-bullet {
  width: 21px !important;
  height: 21px !important;
  border-radius: 11px !important;
  background-color: transparent !important;
  border: 2px solid #8cc63f !important;
}

#sp-testimonial-free-wrapper-80 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active ,
#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  border: none !important;
}

/* area-we-serve-sec */
.area-we-serve-sec {
  padding: 80px 0 140px;
  background: url("../images/area-we-serve-sec.png") no-repeat;
  background-size: cover;
}

.area-we-serve-container {
  margin-top: 45px;
}

.area-we-serve-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-we-serve-container ul li {
  position: relative;
  padding-left: 45px;
}

.area-we-serve-container ul li::before {
  content: '';
  background: url("../images/f-loc-icon.png") no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.area-we-serve-container ul li a {
  font-size: 24px;
  line-height: 29px;
  color: #6b2875;
  font-weight: 600;
  transition: all 0.5s ease;
}

.area-we-serve-container ul li a:hover {
  color: #678e29;
}

/* footer-top */
.footer-top {
  margin: -70px 0;
  position: relative;
  z-index: 99;
}

.footer-top-inner {
  border-radius: 17px;
  background-color: #678e29;
}

.footer-top-left img {
	border-radius: 17px;
	width: 100%;
}

.footer-top-heading {
  font-size: 34px;
  line-height: 42px;
  color: #ffffff;
  font-weight: 600;
}

.footer-top-text {
  font-size: 18px;
  line-height: 42px;
  color: #ffffff;
  font-weight: 600;
}

.footer-top-mid {
  margin-right: -35px;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  padding-right: 25px;
  gap: 10px;
}

.footer-top-right .common-btn-2 {
  padding: 15px 45px;
}

/* footer */
.home .footer {
	padding: 140px 0 0;
}
.footer {
  position: relative;
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
  background: url("../images/footer-bg.jpg") no-repeat;
  background-size: cover;
}

.f-logo-container {
  display: flex;
  align-items: center;
  gap: 35px;
}

.f-logo {
  width: 200px;
  margin-bottom: 20px;
}

.f-ndis-logo {
  width: 124px;
}

.footer-text {
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 29px;
  color: #ffffff;
  margin: 15px 0;
}

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

.f-media a {
  width: 35px;
  height: 35px;
  border-radius: 17px;
  background-color: #6b2875;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-media a img {
  width: 15px;
}

.footer-heading {
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
}

.footer-heading::before {
  content: '';
  width: 118px;
  height: 2px;
  background-color: #8cc63f;
  position: absolute;
  bottom: -15px;
  left: 0;
}

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

.footer ul li {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 5px;
}

.footer ul li a {
  font-size: 16px;
  color: #ffffff;
}

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

.f-sec-4 ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
}

.f-sec-4 ul li img {
  width: 20px;
  margin-top: 3px;
}

.f-sec-2 {
  padding-left: 30px;
}

.f-sec-3 {
  padding-left: 10px;
}

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

.media-container .media-img {
  width: 28px;
  height: 28px;
  background-color: #c7b495;
}

.media-container .media-img img {
  width: 15px;
  filter: brightness(0) saturate(100%)
}


.lower-footer {
  position: relative;
  font-size: 16px;
  color: #333333;
  background: #ffffff;
  padding: 10px 0;
  margin-top: 20px;
  text-align: center;
  z-index: 5;
  border-top: 2px solid #4d4d4d;
}

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

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



/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 41px;
  height: 41px;
  border-radius: 8px;
  background-color: #944da0;
  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: 95px 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: #6b2875;
}

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

.half-li ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.half-li ul li {
  width: 49%;
}

.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: #678e29;
  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: #6b2875;
}

.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: #6b2875;
}

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

/* 404 page */

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

.back_btn {
  display: flex;
  justify-content: center;
  margin: 15px 0 60px;
}

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

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}

.footer_btn1 {
  background: #6b2875;
  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_btn2 img {
  width: 18px;
}

.footer_btn3 {
  background: #678e29;
  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: #678e29;
  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: #6b2875 !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;
}

.home-form.contact-form-sec input {
  padding: 12px 10px 12px 55px;
}

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

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

.home-form .form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpcf7-spinner {
  display: none !important;
}

.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: 13px;
  background-color: #678e29;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.home-form.contact-form-sec input[type="submit"] {
  padding: 13px 60px;
}

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

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

/* inner form css here  */
.inner-form-container a {
  text-decoration: none !important;
}

.inner-form-page .inner_txt a {
  text-decoration: none;
}

.inner-form-label {
  font-size: 17px;
  font-weight: 500;
}

.inner-form-label p {
  margin-bottom: 8px;
}

.inner-form-input input {
  width: 100%;
  border: 1px solid #678e29;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

.inner-form-textarea textarea {
  width: 100%;
  border: 1px solid #678e29;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
  height: 100px;
}

.inner-form-container {
  margin-top: 30px;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 5px #dfdfdf;
}

.inner-form-heading p {
  margin-bottom: 0;
}

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

.inner-form-heading strong {
  color: #6b2875;
}

.inner-form-heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 12px;
  width: 30px;
  height: 3px;
  background: #6b2875;
}

.inner-form-radio .wpcf7-list-item {
  display: block;
  margin: 0;
}

.inner-form-text {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
}

.inner-form-submit-btn {
  display: flex;
  justify-content: center;
}

.inner-form-submit-btn input[type="submit"] {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 27px;
  padding: 15px 40px;
  text-align: center;
  background: #678e29;
  transition: all 0.5s ease;
}

.inner-form-submit-btn input[type="submit"]:hover {
  background: #6b2875;
}

.inner-form-submit-btn .wpcf7-spinner {
  display: none;
}

.core-box .inner_title{
	font-size: 20px;
}

.rmp-container .rmp-menu-title .rmp-menu-title-image {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 160px;
}

/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
    .top-header {
        display: none;
    }

    .header-mid {
        display: none;
    }

    .header-right {
        display: none;
    }

    .animate {
        animation: none;
    }
	.main-header{
		top: 0;
		padding: 15px 0;
	}
	.logo-container img {
		width: 160px;
	}
	.banner-sub-heading-container {
		align-items: start;
		gap: 20px;
		flex-direction: column;
	}
    .banner-sec .container {
        width: auto;
    }
	.banner-sec{
		overflow: hidden;
	}
	.banner-img img {
		width: 100%;
		height: 600px;
		object-fit: cover;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.common-btn {
		padding: 12px 20px;
	}
	.banner-sub-heading {
		font-size: 16px;
	}
	.banner-container {
		top: 50%;
	}
	.banner-bottom-sec {
		margin-top: 50px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.about-btn{
		flex-direction: column;
		align-items: start;
	}
	.about-right {
		margin-left: 0px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.our-services-sec {
		padding: 50px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.info-card {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		padding: 30px 10px 50px;
		margin: -10px 15px 15px;
	}
	.info-inner{
		flex-direction: column;
	}
	.info-sec{
		margin-bottom: 50px;
	}
	.info-card-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.area-we-serve-sec{
		padding: 80px 0 140px;
	}
	.footer-top-mid {
		margin-right: 0;
		text-align: center;
	}
	.footer-top-right {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding-right: 0;
	}
	.footer-top-inner {
		padding: 10px;
	}
	.footer-top-text {
		font-size: 16px;
		line-height: 26px;
		margin-top: 15px;
	}
	.footer-top-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.footer-top-right .common-btn {
    padding: 12px 15px;
}
	.footer-top-right .common-btn-2 {
		padding: 12px 15px;
	}
	.footer-top{
		overflow: hidden;	
	}
	.home .footer {
		padding: 120px 0 0;
	}
	.f-logo {
		width: 150px;
		margin-bottom: 0;
	}
	.f-ndis-logo {
		width: 100px;
	}
	.f-sec-2 {
		padding-left: 0;
	}
	.f-sec-3 {
		padding-left: 0;
	}
	.lower-footer {
		padding: 10px 0 60px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.inner-form-container {
		padding: 20px 10px;
		border-radius: 10px;
	}
}

@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) {
	.banner-container{
		max-width: 560px;
	}
}

/* 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) {
	.testimonial-right {
		margin-left: -50px;
	}
	
}

/* 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) {}

/* 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) {}

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

    .animate {
        animation: none;
    }
	.main-header{
		top: 0;
		padding: 15px 0;
	}
	.logo-container img {
		width: 160px;
	}
	.banner-container {
		max-width: 925px;
	}
	.banner-container .common-heading {
		font-size: 36px;
		line-height: 40px;
	}
	.banner-bottom-sec {
		margin-top: -110px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 40px;
	}
	.common-btn {
		padding: 12px 20px;
	}
	.about-btn {
		gap: 15px;
	}
	.Client-Satisfied img {
		width: 115px;
	}
	.about-sec {
		padding: 80px 0 60px;
	}
	.our-services-sec {
		padding: 80px 0 60px;
	}
	.service-card-heading {
		font-size: 16px;
	}
	.info-card{
		padding: 40px 40px 40px 50px;
	}
	.footer-top-heading {
		font-size: 30px;
		line-height: 35px;
	}
	.footer-top-text {
		font-size: 18px;
		line-height: 25px;
		margin-top: 10px;
	}
	.footer-top-right .common-btn-2 {
		padding: 15px 32px;
	}
	.f-logo {
		width: 150px;
		margin-bottom: 0;
	}
	.f-ndis-logo {
		width: 100px;
	}
	.f-sec-2 {
		padding-left: 0;
	}
}

/* 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) {}

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

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

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

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



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