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

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

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

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


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

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-sub-heading {
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #0d5aa8;
  font-weight: bold;
}

.common-heading {
  font-size: 45px;
  line-height: 55px;
  color: #363636;
  font-weight: bold;
}

.common-heading strong {
  color: #149d49;
}

.common-text {
  font-size: 17px;
  line-height: 29px;
  color: #353535;
  font-weight: 400;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 14px 35px;
  width: fit-content;
  background-color: #0d5aa8;
  font-size: 16px;
  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: #149d49;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

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

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

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

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

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

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

  to {
    transform: translateY(0);
  }
}



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

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

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

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

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

.main-header ul li a {
  font-size: 16px;
  color: #0e0e13;
  font-weight: 500;
  padding: 60px 0;
  text-transform: capitalize;
}

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


.pos-fixed {
  top: 0;
  transition: all 0.5s ease;
  box-shadow: 0 0 5px #dddddd;
}

.pos-fixed .logo-container img {
  width: 75px;
}

.pos-fixed.main-header ul li a {
  padding: 40px 0;
}
.pos-fixed .primary-navigation .menu-item-has-children>a:after, .primary-navigation .page_item_has_children>a:after {
    top: 50px;
    transition: all 0.5s ease;
}


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

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

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

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

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

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

.banner-img {
  position: relative;
}

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

.ms-slide-info {
  position: absolute !important;
  top: 45%;
  transform: translateY(-50%);
}

.banner-container {

  max-width: 600px;
}

.banner-container::before {
  content: '';
  background: url("../images/banner-leaf.png") no-repeat;
  background-size: contain;
  width: 94px;
  height: 110px;
  position: absolute;
  bottom: -80px;
  left: -80px;
}

.banner-sub-heading {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
}

.banner-heading {
  font-size: 60px;
  line-height: 70px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 20px;
}

.banner-heading strong {
  color: #00ff63;
}

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

.banner-btn-container .common-btn {
  padding: 14px 45px;
}

.satisfied-client {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 19px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 55px;
}

.satisfied-client img {
  width: 200px;
}

.ms-skin-light-6 .ms-bullets.ms-dir-h {
  right: 5% !important;
  top: 35%;
  z-index: 99;
}

.ms-skin-light-6 .ms-bullet {
  width: 20px !important;
  height: 20px !important;
  border-radius: 15px !important;
  background: transparent !important;
  border: 2px solid #ffffff !important;
}

.ms-skin-light-6 .ms-bullet-selected {
  background-color: #149d49 !important;
}

.ms-skin-light-6 .ms-bullets.ms-dir-h .ms-bullets-count {
  display: flex;
  flex-direction: column;
}

/* .banner-bottom-sec */

.banner-bottom-sec {
  margin-top: -140px;
  position: relative;
  z-index: 1;
  padding-bottom: 57px;
}

.banner-bottom {
  border-top: 2px solid #55625a;
  padding-top: 25px;
}

.banner-bottom-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-bottom-card-icon {
  width: 45px;
}

.banner-bottom-card-heading {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  padding-bottom: 5px;
}

.banner-bottom-card-text {
  font-size: 14px;
  letter-spacing: 0px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
}


/* about-sec */
.about-sec {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.about-sec-right {
  margin-left: 30px;
}

.about-sec-right .common-heading {
  padding-top: 15px;
  font-size: 45px;
}

.about-sec-right .common-text {
  margin: 20px 10px 30px 0;
}

.about-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.about-bottom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  color: #0d5aa8;
  font-weight: bold;
  position: relative;
  width: 100%;
}

.about-bottom-card img {
  width: 39px;
}

.about-bottom-card::before {
  content: '';
  width: 2px;
  height: 100%;
  background: #0d5aa8;
  position: absolute;
  right: -10px;
  top: 0;
}

.about-bottom-card:last-child:before {
  content: none;
}

.about-inner-sec {
  position: relative;
}

.about-inner-sec::before {
  content: '';
  background: url("../images/about-shape-2.png") no-repeat;
  background-size: cover;
  width: 158px;
  height: 353px;
  position: absolute;
  left: -150px;
  bottom: -12px;
}

.about-inner-sec::after {
  content: '';
  background: url("../images/about-shape-1.png") no-repeat;
  background-size: cover;
  width: 126px;
  height: 182px;
  position: absolute;
  right: -167px;
  top: 0;
}

/* service-sec */
.service-sec {
  padding: 90px 0;
  background-color: #f1fff9;
}

.service-sec-right {
  display: flex;
  align-items: end;
  min-height: 100%;
}

.service-sec-right .common-text {
  padding-left: 28px;
}

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

.service-card {
  display: block;
  width: 100%;
  height: 452px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, #073d73e6 0%, #fdbb2d00 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card-heading {
  font-size: 26px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 700;
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
  transition: all 0.5s ease;
}

.service-card:hover .service-card-heading {
  bottom: 30px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 25px !important;
}


.owl-theme .owl-dots .owl-dot span {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 3px solid #083d73;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #149d49;
  border: 3px solid #149d49;
}


.service-marquee-sec {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  margin-top: 35px;
}

.marquee-inner {
  display: flex;
  width: fit-content;
  animation: marquee 20s linear infinite;
}

.service-marquee-sec:hover .marquee-inner {
  animation-play-state: paused;
  /* ✅ pauses on hover */
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 300px;
  font-size: 74px;
  line-height: 55px;
  text-transform: uppercase;
  color: #f1fff9;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 2px #000;
}

.marquee-text img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* choose-us-sec */
.choose-us-sec {
  background: url("../images/choose-us-bg.png") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.choose-us-sec .container-fluid {
  max-width: 1424px;
}

.choose-us-sec::before {
  content: '';
  background: #033115;
  opacity: 0.678;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.choose-us-line {
  position: relative;
  padding: 0;
}

.choose-us-line::before {
  content: '';
  background: #ffffff;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 99;
}

.choose-us-line:last-child:before {
  content: none;
}

.choose-us-card {
  position: relative;
  padding: 260px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s ease;
  overflow: hidden;
}

.choose-us-card-hover {
  opacity: 0;
  background: #0d5aa7;
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: all 0.5s ease;
}

.choose-us-card:hover .choose-us-card-hover {
  opacity: 1;
}

.choose-us-card>* {
  position: relative;
  z-index: 1;
  color: white;
}

.choose-us-number {
  width: 61px;
  height: 61px;
  border-radius: 9px;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 54px;
  color: #f1fff9;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.choose-us-card:hover .choose-us-number {
  background: #0d5aa7;
}

.choose-us-heading {
  font-size: 24px;
  line-height: 30px;
  color: #f1fff9;
  font-weight: 700;
  text-align: center;
  padding: 20px 0 10px;
}

.choose-us-text {
  font-size: 17px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  max-width: 303px;
}

/* special-sec */
.special-sec {
  padding: 90px 0 190px;
  position: relative;
  background-color: #f1fff9;
  overflow: hidden;
}

.special-sec::before {
  content: '';
  background: url("../images/features-shape.png") repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 135px;
}

.special-sec .common-heading {
  text-transform: capitalize;
  font-size: 45px;
}

.special-sec-right {
  display: flex;
  align-items: end;
  min-height: 100%;
}

.special-sec .common-text {
  padding-left: 28px;
}

.special-card-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
  margin-top: 50px;
}

.special-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 20%;
}

.special-card img {
  width: 50px;
  transition: all 0.5s ease;
}

.special-card:hover img {
  transform: rotateY(180deg);
}

.special-card-text {
  font-size: 19px;
  line-height: 30px;
  color: #363636;
  font-weight: bold;
}

.special-sec-inner {
  position: relative;
}

.special-sec-inner::before {
  content: '';
  background: url("../images/features-shape-2.png");
  background-size: cover;
  width: 132px;
  height: 218px;
  position: absolute;
  bottom: -140px;
  left: -118px;
}

.special-sec-inner::after {
  content: '';
  background: url("../images/features-shape-1.png");
  background-size: cover;
  width: 158px;
  height: 353px;
  position: absolute;
  top: 195px;
  right: -165px;
}

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

.testimonial-sec .common-heading {
  text-transform: capitalize;
}

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

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section {
  padding: 20px 5px !important;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free {
  border-radius: 20px !important;
  background-color: #ffffff !important;
  filter: drop-shadow(0px 3px 3.5px rgba(0, 0, 0, 0.35));
  padding: 90px 20px 120px;
  position: relative;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free::before {
  content: '';
  background: url("../images/quote-icon.png") no-repeat;
  background-size: contain;
  width: 47px;
  height: 35px;
  position: absolute;
  top: 40px;
  left: 20px;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section .sp-testimonial-client-image {
  position: absolute;
  bottom: 10px;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section .sp-testimonial-client-image img {
  width: 62px;
  filter: drop-shadow(0px 3px 3.5px rgba(0, 0, 0, 0.35));
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  padding: 0 !important;
  color: #383838 !important;
  text-align: left !important;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section .sp-testimonial-client-name {
  position: absolute;
  bottom: 45px;
  left: 95px;
  font-size: 18px !important;
  line-height: 26px !important;
  color: #149d49 !important;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  bottom: 102px;
}

.sp-testimonial-free-section .testimonial-pagination .swiper-pagination-bullet {
  width: 24px !important;
  height: 24px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: 3px solid #083d73 !important;
}

#sp-testimonial-free-wrapper-56 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #149d49 !important;
  border: 3px solid #149d49 !important;
}

/* contact-sec */
.contact-sec-inner {
  padding: 70px 0 50px;
  border-radius: 34px;
  background: url("../images/contact-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.contact-sec-left {
  padding-left: 50px;
}

.contact-sub-heading {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.contact-sec .common-heading {
  color: #ffffff;
  padding: 5px 0 35px;
}

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

.contact-btn .common-btn-2 {
  background: #ffffff;
  color: #149d49;
}

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

.contact-sec-right {
  margin: -160px 20px -50px 0;
}

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

.footer-heading {
  font-size: 24px;
  line-height: 28px;
  color: #0d5aa8;
  font-weight: 600;
  padding-bottom: 40px;
  position: relative;
  width: fit-content;
}

.footer-heading::before {
  content: '';
  background: #149d49;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 27px;
  left: 0;
}

.footer-heading::after {
  content: '';
  background: #149d49;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 30px;
  left: 0;
}

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

.footer ul li {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.footer ul li::before {
  content: '';
  background: url("../images/list-img.png") no-repeat;
  background-size: contain;
  width: 16px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer ul li a {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 400;
}

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

.f-menu-container {
  margin-left: 55px;
  margin-right: -40px;
}

.f-service-container {
  margin-right: -55px;
  margin-left: 45px;
}

.f-info-container {
  margin-right: -35px;
}

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

.f-logo {
  width: 126px;
}

.ndis-logo {
  width: 114px;
}

.f-contact-container {
  padding-left: 65px;
}

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

.f-contact-container ul li::before {
  content: none;
}

.f-icon img {
  min-width: 22px;
  width: 22px;
}

.f-media {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.f-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 20px;
  background-color: #149d49;
}

.f-media img {
  width: 18px;
}

.lower-footer {
  position: relative;
  background-color: #149d49;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  padding: 15px 0;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff;
  z-index: 5;
}

.lower-footer span {
  text-transform: uppercase;
}

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

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


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

.scroll-top img {
  width: 26px;
  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-1.jpg") #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 130px 0 50px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

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

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

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

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

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

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

.inner_title strong {
  color: #194d87;
}

.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 5px left;
  padding-left: 28px;
  background-repeat: no-repeat;
  background-size: 14px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  list-style: none;
  padding-bottom: 6px;
}

.inner_bottm_sec {
  background: #194d87;
  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;
  padding-bottom: 12px;
}

.core-box_title strong {
  color: #194d87;
}

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

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

/* contact page css  */

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

.contact_page_heading strong {
  color: #154acc;
}

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

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

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

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

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

.footer_btn1 {
  background: #033465;
  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: 22px;
}

.footer_btn3 {
  background: #149d49;
  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: #0d5aa8;
    width: fit-content;
    margin: 15px 0;
    padding: 15px 25px;
    color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
    text-decoration: none !important;
}
.more-link:hover{
	background: #149d49 !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: #ffffff;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  width: fit-content;
  background-color: #149d49;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

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

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

.outer-box {
    box-shadow: 0 0 5px #b9b9b9;
    border-radius: 20px;
    padding: 30px 40px;
}

.thankyou-btn-container {
    display: flex;
    justify-content: center;
}

.thankyou-btn-container a {
	text-decoration: none !important;
}
.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;
}


.whatsapp_link {
  width: 52px;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 55;	
}
.whatsapp_link img {
  max-width: 100%;
}

/* 2) Subtle pulse (scale in/out) */
.pulse {
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}


.fixed_buttons {
  position: fixed;
  right: -90px;
  top: 50%;
  z-index: 55555;
  transform: rotate(-90deg);
  width: auto;
}
.fixed_buttons li {
  float: left;
  margin: 0 2px;
  list-style: none;
  color: #fff;
  font-weight: normal;
  font-size: 13px;
}
.fixed_buttons li a {
    padding: 12px 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.3s;
}
.fixed_buttons li.contact_btn a{ background:#0d5aa8; border-radius: 10px 10px 0 0;}
.fixed_buttons li.contact_btn a:hover{background:#149d49;}

.header_top {
  position: relative;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #d2d2d2;
}
.top_contact ul li{ margin: 0 18px 0 0; color:#0e0e13; font-family: 'DM Sans'; font-size: 16px; line-height: 20px; font-weight: normal; float: left; padding: 0 18px 0 0; position: relative; }
.top_contact ul li:after{ width: 1px; height: 16px; background: #d2d2d2; position: absolute; right: 0; top: 3px; content: ""; }
.top_contact ul li a{ color:#0e0e13; }
.top_contact ul li a:hover{ color:#149d49; }
.top_contact ul li img{ margin: -2px 1px 0 0; max-width: 100%; }
.top_contact ul li:last-child{ margin-right: 0px; padding-right: 0px; }
.top_contact ul li:last-child:after{ display: none; }

.top_contact ul {
  margin: 0;
  display: flex;
  list-style: none;
}
.main-header {
  top: 46px;
}
.banner-sec {
  margin-top: 140px;
}
.main-header.pos-fixed {
  top: 0;
}
.popup-form .row-gap-3 {
  row-gap: inherit !important;
}
.get_frm {
  margin-top: 15px;
}
.get_frm p{ margin: 0px;}
.get_frm textarea {
  height: 150px;
  resize: none;
}
.get_frm select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  color: #2b2b2b;
  padding: 8px 10px 7px;
  background: #fff;
  width: 100%;
}
.get_frm input, textarea{width: 100%;}
.get_frm input[type="submit"]{width: auto;}


.area_serve ul{ display: flex; justify-content: flex-start; column-gap: 15px; flex-wrap: wrap; padding: 15px 0 0; margin: 0px;}
.area_serve ul li{ width: 31%; display: inline-block; margin: 10px 0; font-size: 15px; }
.area_serve ul li a{ padding: 8px 20px; color:#000; border: 1px solid #149d49; border-radius: 0 10px 0 10px; display: block; }
.area_serve ul li a:hover{ background:#149d49; color:#fff; }

.home_area {
  padding: 0 0 90px !important;
}
.area_serve {
  padding: 45px 0 0;
}
/* .homerow{ align-items: center; } */
.contact_right select{background: rgb(239, 239, 239); width: 100%;
    padding: 12px;
    border-radius: 7px;
    color: #515151;
    font-size: 16px;
    text-transform: capitalize;
    border: 1px solid #efefef;
    background: #efefef;
    outline: none;}

.area_rt .contact-form-sec.mt-3{ margin: 0px !important; }
.area_rt .row-gap-3 {
    row-gap: inherit !important;
}

.top_sec .common-btn{ margin: 10px auto 0;}
.inner_bottm_sec .common-btn-2{ margin: 15px auto 0; }

.faq_sec .common-heading{ margin-bottom: 25px; }
.faq_sec .sp-easy-accordion > .sp-ea-single { background: #fff !important; border-color: #0d5aa8 !important;}
.faq_sec .sp-easy-accordion > .sp-ea-single > .ea-header a {color: #000 !important; font-size: 15px !important;}
.faq_sec .sp-easy-accordion > .sp-ea-single > .sp-collapse > .ea-body { font-size: 14px !important; line-height: 24px !important;}
.faq_sec .sp-easy-accordion > .sp-ea-single.ea-expand{ background:#0d5aa8 !important; }
.faq_sec .sp-easy-accordion > .sp-ea-single.ea-expand > .ea-header a{ color:#fff !important; }
.faq_sec .sp-easy-accordion > .sp-ea-single.ea-expand > .ea-header a .ea-expand-icon{ color:#fff !important; }
.faq_sec .sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a { padding: 12px; font-size: 16px !important; }
.faq_sec .sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body p{font-size: 15px !important;}

.btn_link {
  display: flex;
  column-gap: 5px;
}
.inner_bottm_sec .inner_txt a{color:#149d49; }
.mid_sec{ padding-bottom: 65px !important;}
.faq_home{padding-bottom:50px;}

/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.header-mid {
		display: none;
	}
	.header-right{
		display: none;
	}
	.main-header {
		padding: 10px 0;
	}
	.logo-container img {
		width: 75px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
	}
	.banner-heading {
		margin-top: 10px;
		font-size: 30px;
		line-height: 35px;
	}
	.banner-btn-container .common-btn {
		padding: 10px 15px;
	}
	.banner-sec {
		margin-top: 99px;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		object-fit: cover;
	}
	.satisfied-client {
		gap: 10px;
		font-size: 16px;
		margin-top: 30px;
	}
	.banner-btn-container {
		margin-top: 15px;
	}
	.satisfied-client img {
		width: 130px;
	}
	.banner-bottom-sec {
		margin-top: 20px;
		padding-bottom: 0;
	}

	.banner-bottom {
		border-top: 0;
	}
	.banner-bottom-card-icon img{
		filter: brightness(0) saturate(100%)	
	}
	.banner-bottom-card-heading {
		color: #000000;
	}
	.banner-bottom-card-text {
		color: #000000;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-inner-sec::before {
		content: none;
	}
	.about-inner-sec::after{
		content: none;
	}
	.about-sec-right {
		margin-left: 0;
	}
	.about-sec-right .common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		margin: 10px 0;
	}
	.about-bottom {
		margin: 20px 0;
	}
	.about-bottom-card::before {
		content: none;
	}
	.about-bottom-card {
		font-size: 18px;
	}
	.common-btn {
		padding: 10px 25px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.service-sec {
		padding: 0px 0 50px;
	}
	.service-sec-right .common-text {
		padding-left: 0;
	}
	.choose-us-sec {
		padding: 40px 0;
	}
	.choose-us-card {
		padding: 20px 0;
	}
	.choose-us-line::before{
		content: none;
	}
	.special-sec {
		padding: 50px 0;
	}
	.special-sec .common-heading {
		text-transform: capitalize;
		font-size: 26px;
	}
	.special-sec .common-text {
		padding-left: 0;
	}
	.special-card {
		gap: 10px;
		width: 47%;
	}
	.special-card-container {
		row-gap: 25px;
		margin-top: 40px;
	}
	.special-sec-inner::before{
		content: none;
	}
	.special-sec-inner::after{
		content: none;
	}
	.testimonial-sec {
		padding: 0 0 50px;
	}
	.contact-sec-inner {
		padding: 50px 0 0;
	}
	.contact-sec-left {
		padding: 0 15px;
	}
	.contact-btn {
		align-items: start;
		gap: 10px;
		flex-direction: column;
	}
	.contact-sec-right {
		margin: 30px 0 0px ;
	}

	.footer {
		padding: 50px 0 0;
	}
	.f-info-container {
		margin-right: 0;
	}
	.f-menu-container {
		margin-left: 0;
		margin-right: 0;
	}
	.f-service-container {
		margin-right: 0;
		margin-left: 0;
	}
	.f-contact-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 15px 0 60px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.contact-sec-right img{
		width: 300px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 !important;
		margin: 100px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	.outer-box {
		padding: 20px;
	}
}

@media only screen and (max-width: 1024px) {
.desk_btn{ display: none; }
.header_top{ display: none; }
.main-header {
  top: 0;
}	
.area_serve ul li {
  width: 31.333%;
}	
.area_rt {
  margin-top: 25px;
}	
		
}

@media only screen and (max-width: 767px) {
.area_serve ul li {
  width: 48.333%;
}
.home_area {
  padding: 0 0 50px !important;
}	

	
}

@media only screen and (max-width: 576px) {
.area_serve ul li {
  width: 45.333%;
}
	
}

@media only screen and (max-width: 400px) {
.area_serve ul li {
  width: 100%;
}
.area_serve ul li {
  margin: 7px 0;
}	
	
}

@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-bottom .col-sm-12 {
		width: 50%;
	}
	.contact-sec .contact-sec-right {
		margin: 30px 0 0px !important;
	}
	.choose-us-sec .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) {
	.special-card {
		width: 32%;
	}
	.contact-sec-right {
		margin: -150px 0 0px;
	}
	.contact-btn {
		align-items: center;
		gap: 10px;
		flex-direction: row;
		margin-right: -50px;
	}
	.contact-sec .common-heading {
		color: #ffffff;
		padding: 5px 0 15px;
	}
	.contact-sec-left {
		padding: 0 15px 0 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: landscape) {
	.special-card {
		width: 32%;
	}
	.contact-sec .contact-sec-right {
		margin: -150px 0 0px;
	}
	.contact-btn {
		align-items: center;
		gap: 10px;
		flex-direction: row;
		margin-right: -50px;
	}
	.contact-sec .common-heading {
		color: #ffffff;
		padding: 5px 0 15px;
	}
	.contact-sec-left {
		padding: 0 15px 0 30px;
	}
}

/* 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) {
	.special-card {
		width: 32%;
	}
	.contact-sec-right {
		margin: -150px 0 0px;
	}
	.contact-btn {
		align-items: center;
		gap: 10px;
		flex-direction: row;
		margin-right: -50px;
	}
	.contact-sec .common-heading {
		color: #ffffff;
		padding: 5px 0 15px;
	}
	.contact-sec-left {
		padding: 0 15px 0 30px;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-mid {
		display: none;
	}
	.header-right {
		position: absolute;
		right: 110px;
	}
	.header-btn-container {
		margin-left: -50px;
	}
	.main-header {
		padding: 10px 0;
	}
	.logo-container img {
		width: 75px;
	}
	.animate {
		animation: none;
	}
	.satisfied-client {
		gap: 10px;
		font-size: 16px;
		margin-top: 30px;
	}
	.banner-btn-container {
		margin-top: 15px;
	}
	.satisfied-client img {
		width: 130px;
	}
	.banner-heading {
		margin-top: 10px;
        font-size: 40px;
		line-height: 45px;
	}
	.banner-sec {
		margin-top: 100px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-inner-sec::after {
		right: -90px;
	}
	.about-inner-sec::before {
		left: -80px;
	}
	.about-sec-right .common-heading {
		font-size: 26px;
	}
	.about-bottom-card {
		font-size: 18px;
		line-height: 18px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.special-sec .common-heading {
		font-size: 30px;
	}
	.special-sec-inner::after {
		right: -100px;
	}
	.special-sec-inner::before {
		bottom: -190px;
		left: -50px;
	}
	.f-logo {
		width: 90px;
	}
	.ndis-logo {
		width: 90px;
	}
	.f-menu-container {
		margin-left: 10px;
		margin-right: -25px;
	}
	.f-service-container {
		margin-right: -40px;
		margin-left: 10px;
	}
	.f-contact-container {
		padding-left: 0;
	}
	.page .entry-header, .blog_page_header {
		margin: 100px 0 50px !important;
	}
}

/* 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){
	.f-logo {
		width: 90px;
	}
	.ndis-logo {
		width: 90px;
	}
	.f-menu-container {
		margin-left: 10px;
		margin-right: -25px;
	}
	.f-service-container {
		margin-right: -40px;
		margin-left: 10px;
	}
	.f-contact-container {
		padding-left: 0;
	}
		.banner-heading {
		margin-top: 10px;
        font-size: 40px;
		line-height: 45px;
	}
	.about-sec-right .common-heading {
		font-size: 26px;
	}
	.special-sec .common-heading {
		font-size: 30px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.about-sec-right .common-heading {
		font-size: 26px;
	}
	.main-header ul li {
		margin-right: 20px;
	}
	.main-header ul li a {
		font-size: 15px;
	}
	.header-btn-container {
		margin-left: -60px;
	}
	.header-btn-container .common-btn {
		padding: 14px 22px;
	}
	.satisfied-client {
		margin-top: 20px;
	}
	.satisfied-client img {
		width: 160px;
	}
	.banner-btn-container {
		margin-top: 20px;
	}
}
