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

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

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

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




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

ul {
  list-style: none;
}

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

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

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

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

.common-sub-heading {
  font-size: 12px;
  text-transform: uppercase;
  color: #0c8b8d;
  font-weight: 700;
  border-radius: 12px;
  background-color: #ecf5f9;
  padding: 3px 20px;
  width: fit-content;
  margin-bottom: 25px;
}


.common-heading {
  font-size: 30px;
  line-height: 21px;
  color: #012358;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.common-heading::before {
  content: '';
  background: #068a8e;
  width: 40px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.common-text {
  font-size: 14px;
  line-height: 24px;
  color: #373737;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 10px 35px;
  width: fit-content;
  border-radius: 30px;
  background: #068a8e;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  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: #051f59;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

.common-btn img {
  width: 13px;
  transition: all 0.5s ease;
}

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

.common-btn:hover .btn-icon {
  background-color: #6c9e00;
}

.common-btn:hover .btn-icon img {
  rotate: 0deg;
}

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

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

.common-btn-2 {
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  padding: 10px 20px;
}

.common-btn-2:hover {
  color: #ffffff;
  border: 2px solid #051f59;
}

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

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

/* main header section css here  */

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

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

.logo-container {
  position: relative;
  transition: all 0.5s ease;
  margin-right: -30px;
}

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

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


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

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

.main-header ul li a {
  font-size: 14px;
  color: #000000;
  padding: 0;
  line-height: 50px;
  text-transform: capitalize;
}

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

.header-btn-container .common-btn {
  padding: 10px 40px;
}

.pos-fixed {
  top: 0;
  background: #fff;
  padding: 10px 0;
  transition: all 0.5s ease;
  box-shadow: 0 0 5px #c7c7c7;
}

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

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


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

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

.banner-sec .container {
  max-width: 1270px;
}

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


.banner-container .common-heading {
  font-size: 49px;
  line-height: 63px;
}

.banner-container .common-heading strong {
  color: #017e7b;
}

.banner-container .common-text {
  padding: 20px 0;
}

.banner-container .common-heading {
  padding: 0;
}

.banner-container .common-heading::before {
  display: none;
}

.banner-list {
  margin-bottom: 40px;
}

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

.banner-list ul li {
  font-size: 14px;
  line-height: 24px;
  color: #373737;
  padding-left: 35px;
  margin-bottom: 10px;
  position: relative;
}

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

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

.banner-btn-container .common-btn-2 {
  border: 2px solid #01225c;
  color: #072e70;
  box-shadow: none;
}

.banner-btn-container .common-btn-2:hover {
  border: 2px solid #01225c;
  color: #ffffff;
}

.ndis-logo-container {
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 0 15px #d8d8d8;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  position: absolute;
  padding: 15px 20px;
  left: 34%;
  top: 10%;
}

.ndis-logo-container img {
  width: 74px;
}

.ndis-logo-heading {
  font-size: 16px;
  line-height: 25px;
  color: #042454;
  font-weight: 700;
}

/* info-sec */
.info-sec {
  margin-top: -60px;
}

.info-sec .container {
  max-width: 1270px;
}

.info-sec-inner {
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 10px #b6b6b6;
  padding: 35px 70px;
  position: relative;
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.info-card-icon {
  width: 63px;
  min-width: 63px;
  height: 63px;
  border-radius: 31px;
  background-color: #068a8e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon img {
  width: 40px;
}

.info-card-heading {
  font-size: 16px;
  line-height: 21px;
  color: #000c43;
  font-weight: 700;
}

.info-card-text {
  font-size: 12px;
  line-height: 21px;
  color: #3f3f3f;
  margin-top: 5px;
  max-width: 150px;
}

/* service-sec */
.service-sec {
  padding: 90px 0;
}

.service-sec .container {
  max-width: 1270px;
}

.service-top-right {
  display: flex;
  align-items: center;
  justify-content: end;
}

.service-top-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 21px;
  color: #068a8e;
  font-weight: 700;
}

.service-top-right a img {
  width: 25px;
}

.service-top-right a:hover {
  color: #000c43;
}

.service-row .col-lg-4 {
  width: 20%;
  padding: 0 8px;
}

.service-card {
  /* max-width: 237px; */
  border-radius: 20px;
  background-color: #fefdfd;
  box-shadow: 0 0 15px #b4b4b4;
  min-height: 100%;
}

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

.service-card-inner {
  padding: 0 15px 30px;
  margin-top: -35px;
}

.service-card-icon {
  width: 63px;
  height: 63px;
  border-radius: 32px;
  background-color: #012358;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-card-icon img {
  width: 40px;
}

.service-card-heading {
  font-size: 18px;
  line-height: 23px;
  color: #000c43;
  font-weight: 700;
  padding: 20px 0 5px;
}

.service-card-sub-heading {
  font-size: 12px;
  line-height: 18px;
  color: #068a8e;
  font-weight: 600;
  padding-bottom: 5px;
}

.service-card-text {
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 20px;
  color: #2a2a2a;
  font-weight: 400;
}

.service-card-link {
  font-size: 12px;
  line-height: 21px;
  color: #068a8e;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.service-card-link img {
  width: 18px;
}

/* about_choose-us-sec */
.about_choose-us-sec {
	padding: 70px 0;
	background-color: #e6f2ff;
	position: relative;
}

.about_choose-us-sec:before{
	content: '';
	background: url("../images/why-choose-shape.png") no-repeat;
	background-size: cover;
	width: 269px;
	height: 261px;
	position: absolute;
	right: 0;
	top: 0;
}

.about_choose-us-sec .container {
	max-width: 1270px;
}

.about_choose-us-sec .common-text {
  max-width: 325px;
  padding: 15px 0 15px;
}

.about-left {
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}

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

.about-list ul li {
  font-size: 14px;
  line-height: 24px;
  color: #373737;
  padding-left: 35px;
  margin-bottom: 6px;
  position: relative;
}

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

.about-left .common-btn {
  padding: 10px 50px;
  margin-top: 25px;
}

.about-img {
  margin-right: -30px;
}

.about-img img {
  border-radius: 20px;
}

.about-right {
  padding-left: 80px;
  position: relative;
}

.about-right::before {
  content: '';
  background: #bbcbe0;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 35px;
  top: 0;
}

.about-right-list {
  margin-top: 25px;
}

.about-right-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 15px;
  list-style: none;
  margin: 0;
}

.about-right-list ul li {
  width: 48%;
  border-radius: 10px;
  background-color: #fefdfd;
  font-size: 14px;
  color: #02204a;
  font-weight: 700;
  padding: 13px 25px 13px 60px;
  position: relative;
  align-content: center;
}

.about-right-list ul li::before {
  content: '';
  background: url("../images/list-img-2.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* get-started-sec */
.get-started-sec {
  padding: 60px 0;
}

.get-started-sec .common-heading {
  text-align: center;
  margin-bottom: 50px;
}

.get-started-sec .common-heading::before {
  left: 50%;
  transform: translateX(-50%);
}

.get-started-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.get-started-icon {
  width: 104px;
  height: 104px;
  border-radius: 52px;
  background-color: #ffffff;
  box-shadow: 0 0 15px #858585;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.get-started-icon::after {
  content: '';
  width: 140px;
  height: 2px;
  border: 1px dashed #068a8e;
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
}

.get-started-sec .col-lg-3:last-child .get-started-icon::after {
  display: none;
}


.get-started-icon img {
  width: 40px;
}

.get-started-number {
  font-size: 30px;
  line-height: 21px;
  color: #012358;
  font-weight: 700;
  padding: 30px 0 20px;
}

.get-started-heading {
  font-size: 16px;
  line-height: 23px;
  color: #02204a;
  font-weight: 700;
  text-align: center;
}

.get-started-text {
  font-size: 14px;
  line-height: 24px;
  color: #373737;
  font-weight: 400;
  text-align: center;
  padding-top: 10px;
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  background-color: #002459;
}

.footer-top-sec {
  padding: 20px 0;
  border-bottom: 2px solid #3c5780;
}

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

.footer-top-icon {
  width: 63px;
  height: 63px;
  border-radius: 32px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top-icon img {
  width: 24px;
}

.footer-top-heading {
  font-size: 30px;
  line-height: 21px;
  color: #ffffff;
  font-weight: 700;
}

.footer-top-text {
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  padding-top: 10px;
}

.footer-top-sec-right {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}

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

.footer-outer {
  padding-top: 40px;
}

.f-logo {
  width: 200px;
}

.footer-text {
  font-size: 14px;
  line-height: 27px;
  color: #19a99d;
  font-weight: 400;
  margin: 30px 0 20px;
}

.footer-text strong {
  font-weight: 400;
  color: #ffffff;
}

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

.f-media a {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: #19a99d;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.footer-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

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

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

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

.all-service-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}

.all-service-link img {
  width: 25px;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}

.all-service-link:hover img {
  filter: none;
}

.f-contact-img {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: #19a99d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-sec-4 ul li img {
  width: 12px;
}

.f-contact-heading {
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  font-weight: 600;
}

.f-sec-1 {
  margin-right: -30px;
}

.f-sec-2 {
  margin-left: 30px;
  margin-right: 0;
}


.f-sec-4 {
  margin-left: 120px;
}

.f-sec-3 {
  margin-left: 85px;
  margin-right: -40px;
}

.media-container .footer-heading {
  margin: 0;
}

.lower-footer {
  position: relative;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 0;
  margin-top: 30px;
  text-align: center;
  z-index: 5;
  border-top: 2px solid #3c5780;
}

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

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



/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 0 5px #cccccc;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}


.scroll-top img {
  width: 25px;
  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/inner-banner.jpg") #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 90px 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: #042454;
}

.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-2.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: #068a8e;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
}

.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 .inner_title {
  font-size: 20px;
}

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

.core-box_title strong {
  color: #042454;
}

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

.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: #068a8e;
  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: #042454;
  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: #068a8e;
  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: #042454;
  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: #068a8e !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 #068a8e;
}

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

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

.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 #068a8e;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

.inner-form-textarea textarea {
  width: 100%;
  border: 1px solid #068a8e;
  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: #042454;
}

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

.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: #042454;
  transition: all 0.5s ease;
}

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

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

.registration-box {
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 5px #cacaca;
  padding: 20px 30px;
  min-height: 100%;
  border-radius: 10px;
}

.registration-box-icon {}

.registration-box-icon img {
  width: 50px;
}

.registration-box .inner_txt {
  font-size: 14px;
  margin-top: 0;
}

.registration-box .inner_title {
  font-size: 16px;
  padding-top: 5px;
  font-weight: 600;
}


.service-page-container.container {
  max-width: 1270px;
}

.funding-information-container {
  border: 2px solid #042454;
  border-radius: 15px;
  position: relative;
}

.funding-information-container::before {
  content: '';
  background-color: #042454;
  width: 2px;
  height: 89%;
  position: absolute;
  left: 47%;
  bottom: 0;
  transform: translateX(-50%);
}

.funding-information-title {
  text-align: center;
  background: #042454;
  color: #ffffff;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 600;
  border-radius: 15px 15px 0 0;
}

.information-content-left {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 50%;
}

.information-content-right {
  width: 50%;
}

.information-content-left img {
  width: 30px;
}

.information-content-left p {
  display: none;
}

.information-content {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  /* border-bottom: 2px solid #042454; */
}

.information-content::before {
  content: '';
  background: #042454;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.information-content:last-child:before {
  display: none;
}

.information-content-heading {
  font-size: 16px;
  font-weight: 600;
}

.information-content-text {
  font-size: 14px;
}


.inner_cta_sec {
  background: #068a8e;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  border-radius: 15px;
  position: relative;
}

.inner_cta_sec::before {
  content: '';
  background: url("../images/inner_cta_arrow.png") no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
}

.inner_cta_sec::after {
  content: '';
  background: url("../images/inner_cta_after.png") no-repeat;
  background-size: cover;
  width: 130px;
  height: 126px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.inner_cta_icon {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner_cta_icon img {
  width: 50px;
}

.inner_cta_heading {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 26px;
}

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

.inner_content .img-fluid{
  border-radius: 15px;
}

.form-radio-sec input{
  width: fit-content;
}

.form-radio-sec .wpcf7-radio{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 5px;
}

.form-radio-sec .wpcf7-list-item {
    margin: 0 !important;
}

.form-radio-sec strong{
  font-size: 14px;
  font-weight: 600 !important;
  padding-bottom: 10px;
}

.inner_btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.inner_btns br{
  display: none;
}

.policy-page .inner_txt{
  margin: 0;
}
.policy-page .inner_list_txt{
  margin: 7px 0 0;
}


/* 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;
	}
	.logo-container img {
		width: 150px;
	}
	.pos-fixed .logo-container img {
		width: 150px;
	}
    .banner-sec .container {
        width: auto;
    }
	.banner-sec {
		margin-top: 65px;
	}
	.banner-sec:before{
		content: '';
		background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(252, 252, 252, 1) 50%, rgba(237, 221, 83, 0) 100%);
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
	.banner-img img {
		width: 100%;
		height: 530px;
		object-fit: cover;
		object-position: 75%;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 36px;
		max-width: 215px;
	}
	.common-sub-heading {
		margin-bottom: 10px;
	}
	.ndis-logo-container img {
		width: 50px;
	}
	.ndis-logo-container {
		gap: 10px;
		padding: 10px 15px;
		left: 64%;
		top: 7%;
	}
	.ndis-logo-heading {
		font-size: 14px;
		line-height: 22px;
	}
	.info-sec-inner {
		padding: 30px 20px;
	}
	.info-card {
		justify-content: start;
		gap: 20px;
	}
	.service-sec-top .col-12 {
		width: 50%;
	}
	.common-heading {
		font-size: 26px;
	}
	.service-sec-top .common-heading{
		margin-right: -20px;
	}
	.service-top-right a img {
		width: 16px;
	}
	.service-row{
		margin-top: 40px;
	}
	
	.info-sec {
		margin-top: -15px;
	}
	.banner-container {
		max-width: 340px;
	}
	.common-btn {
		padding: 10px 25px;
	}
	.about-left {
		align-items: normal;
		gap: 30px;
		flex-direction: column-reverse;
	}
	.about-img {
		margin-right: 0;
	}
	.about-img img{
		width: 100%;
	}
	.about-right::before{
		display: none;
	}
	.about-right {
		padding-left: 0;
	}
	.about-right-list ul li {
		width: 100%;
	}
	.service-row .col-lg-4 {
		width: 100%;
	}
	.about_choose-us-sec {
		overflow: hidden;
	}
	.get-started-sec{
		overflow: hidden
	}
	.get-started-icon::after{
		display: none;
	}
	.footer-top-sec-left {
		align-items: start;
		flex-direction: column;
		gap: 20px;
	}
	.footer-top-sec-right {
		justify-content: start;
	}
	.footer {
		overflow: hidden;
	}
	.f-sec-2 {
		margin-left: 0;
	}
	.f-sec-3 {
		margin-left: 0;
		margin-right: 0;
	}
	.f-sec-4 {
		margin-left: 0;
	}
	.lower-footer {
		padding: 10px 0 60px;
		margin-top: 5px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner_cta_icon {
		min-width: 90px;
	}
	.inner_cta_sec {
		align-items: start;
		padding: 20px 20px;
		flex-direction: column;
	}
	.inner_cta_sec::before {
		top: 20px;
		transform: none;
	}
	.inner_cta_sec::after {
		right: 5px;
		top: auto;
		bottom: 0;
		transform: none;
	}
	.information-content {
		flex-direction: column;
        align-items: start;
        gap: 10px;
	}
	.funding-information-container::before{
		display: none;
	}
	.information-content-left {
		width: 100%;
	}
	.information-content-right {
		width: 100%;
	}
	.contact-img{
		min-width: 45px;
	}
	.inner_btns {
		flex-wrap: wrap;
	}
	.inner-form-container {
		padding: 30px 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) {
	.info-sec-inner .col-sm-12 {
		width: 50%;
	}
	.about-left {
		align-items: center;
		flex-direction: row;
	}
	.get-started-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) {
	.service-row .col-lg-4 {
		width: 50%;
	}
	.footer-top-sec-left {
		align-items: center;
		flex-direction: row;
		gap: 20px;
	}
	.footer-top-icon {
		min-width: 63px;
	}
	.footer-top-sec-right {
		justify-content: end;
	}
	.footer-top-heading {
		line-height: 36px;
	}
}

/* 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) {
	.service-row .col-lg-4 {
		width: 50%;
	}
	.footer-top-sec-left {
		align-items: center;
		flex-direction: row;
		gap: 20px;
	}
	.footer-top-icon {
		min-width: 63px;
	}
	.footer-top-sec-right {
		justify-content: end;
	}
	.footer-top-heading {
		line-height: 36px;
	}
}

/* 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) {
	.service-row .col-lg-4 {
		width: 50%;
	}
	.footer-top-sec-left {
		align-items: center;
		flex-direction: row;
		gap: 20px;
	}
	.footer-top-icon {
		min-width: 63px;
	}
	.footer-top-sec-right {
		justify-content: end;
	}
	.footer-top-heading {
		line-height: 36px;
	}
}

/* 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;
	}
	.logo-container img {
		width: 150px;
	}
	.pos-fixed .logo-container img {
		width: 150px;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-list {
		margin-bottom: 15px;
	}
	.banner-container .common-text {
		padding: 10px 0;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 36px;
		max-width: 215px;
	}
	.common-sub-heading {
		margin-bottom: 10px;
	}
	.common-heading {
		font-size: 26px;
	}
	.ndis-logo-container {
		left: 30%;
		top: 3%;
	}
	.info-sec-inner {
		padding: 20px;
	}
	.info-card {
		gap: 15px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.service-row .col-lg-4 {
		width: 25%;
	}
	.get-started-icon::after {
		width: 100px;
		right: -120px;
	}
	.f-logo {
		width: 160px;
	}
	.f-sec-2 {
		margin-left: 0px;
	}
	.f-sec-3 {
		margin-left: 10px;
		margin-right: 0;
	}
	.f-sec-4 {
		margin-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) {
	.get-started-icon::after {
		width: 172px;
		right: -200px;
	}
	
}

@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) {
	.main-header ul li {
		margin-right: 10px;
	}
	.main-header.pos-fixed ul li {
		margin-right: 10px;
	}
	.animate {
		animation: none;
	}
	.logo-container img {
		width: 150px;
	}
	.pos-fixed .logo-container img {
		width: 150px;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-list {
		margin-bottom: 15px;
	}
	.banner-container .common-text {
		padding: 10px 0;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 36px;
		max-width: 215px;
	}
	.common-sub-heading {
		margin-bottom: 10px;
	}
	.common-heading {
		font-size: 26px;
	}
	.ndis-logo-container {
		left: 30%;
		top: 3%;
	}
	.info-sec-inner {
		padding: 20px;
	}
	.info-card {
		gap: 15px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.service-row .col-lg-4 {
		width: 25%;
	}
	.get-started-icon::after {
		width: 100px;
		right: -120px;
	}
	.f-logo {
		width: 160px;
	}
	.f-sec-2 {
		margin-left: 0px;
	}
	.f-sec-3 {
		margin-left: 10px;
		margin-right: 0;
	}
	.f-sec-4 {
		margin-left: 0;
	}
}

