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


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

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-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: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #001e40;
  font-weight: 600;
  padding: 0 40px;
  position: relative;
}

.common-heading {
  font-size: 36px;
  line-height: 50px;
  color: #001e40;
  font-weight: 700;
  font-family: 'Playfair Display';
}

.common-heading strong {
  color: #f22c61;
  font-family: 'Playfair Display';
}

.common-text {
  font-size: 18px;
  line-height: 30px;
  color: #030303;
  font-weight: 400;
}

.common-btn-shape {
  position: relative;
  width: fit-content;
}

.common-btn-shape::before {
  content: '';
  background: url("../images/btn-shape.png") no-repeat;
  background-size: cover;
  width: 9px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.common-btn-shape::after {
  content: '';
  background: url("../images/btn-shape.png") no-repeat;
  background-size: cover;
  width: 9px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 15px 35px;
  width: fit-content;
  border-radius: 10px;
  background-color: #f22c61;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.common-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #001e40;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

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

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

.common-btn:hover img {
  filter: brightness(0) invert(1);
}

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

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

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

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

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

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

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

.common-btn-3:hover {
  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: #001e40;
}

.top-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

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

.top-header-info {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.top-header-info::before {
  content: '';
  background: #8694a3;
  width: 2px;
  height: 18px;
  position: absolute;
  right: -20px;
  top: 0;
}

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

/* .top-header-info-icon {
  width: 29px;
  min-width: 29px;
  height: 29px;
  border-radius: 14px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.top-header-info-icon img {
  width: 12px;
}

.top-header-info a {
  font-size: 14px;
  color: #ffffff;
}

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

.top-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-header-right strong {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

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

.header-media img {
  width: 14px;
}


/* main header section css here  */
.main-header {
  position: fixed;
  padding: 12px 0;
  top: 44px;
  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: 172px;
  transition: all 0.5s ease;
}


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

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

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

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

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

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


.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: 120px;
  position: relative;
  transition: all 0.5s ease;
}

.pos-fixed .header-manu-container {
  margin-left: -100px;
}

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

.pos-fixed .header-manu-container {
  margin-top: 0px;
}

.pos-fixed .header-btn-container {
  margin-top: 0px;
}



/* banner css here  */
.banner-sec {
  position: relative;
  margin-top: 85px;
  border-bottom: 2px dashed #f22c61;
}

.banner-sec::before {
  content: '';
  background: linear-gradient(90deg, rgba(255, 245, 248, 1) 10%, rgba(255, 245, 248, 0) 100%);
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 30px 30px 0;
}

.banner-sec::after {
  content: '';
  background: url("../images/banner-shape.png");
  width: 163px;
  height: 163px;
  position: absolute;
  top: 2px;
  right: 0;
}

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

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

.banner-container .common-sub-heading {
  margin-bottom: 20px;
}

.banner-container .common-sub-heading::before {
  content: '';
  background: url("../images/banner-bottom-icon-1.png") no-repeat;
  background-size: cover;
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.banner-container .common-heading {
  font-size: 45px;
  color: #000000;
}

.banner-container .common-text {
  font-size: 16px;
  max-width: 470px;
  color: #131313;
  padding: 35px 0px;
}

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

.banner-btn-container .common-btn-2 {
  padding: 15px 25px;
}


/* banner-bottom-sec */
.banner-bottom-sec {
  padding: 75px 0;
}

.banner-bottom-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
  filter: drop-shadow(4.243px 4.243px 0.5px #f22c61);
  background-color: #ffffff;
  border: 1px solid #f22c61;
  padding: 15px 18px;
}

.banner-bottom-card-2 {
  filter: drop-shadow(4.243px 4.243px 0.5px #001e40);
  border: 1px solid #001e40;
}

.banner-bottom-card-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
}


/* about-sec */
.about-sec {
  background-color: #001e40;
  padding: 90px 0;
  position: relative;
}

.about-sec::before {
  content: '';
  background: url("../images/about-shape.png") no-repeat;
  background-size: cover;
  width: 270px;
  height: 270px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-sec::after {
  content: '';
  background: url("../images/about-shape.png") no-repeat;
  background-size: cover;
  width: 270px;
  height: 270px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-sec .sub-heading-container {
  width: fit-content;
  margin: 0 auto;
}

.about-sec .common-sub-heading {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.about-sec .common-sub-heading::before {
  content: '';
  background: url("../images/common-heading-shape.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-sec .common-sub-heading::after {
  content: '';
  background: url("../images/common-heading-shape.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-sec .common-heading {
  color: #ffffff;
  text-align: center;
}

.about-sec .common-text {
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
}

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

/* .choose-us-sec */
.choose-us-sec {
  padding: 0 0 180px;
  overflow: hidden;
  position: relative;
}

.choose-us-sec::before {
  content: '';
  background: url("../images/leaf-shape.png") no-repeat;
  width: 213px;
  height: 171px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.choose-us-sec-inner {
  position: relative;
  padding: 200px 0 0;
}

.choose-us-sec-inner::before {
  content: '';
  background: transparent;
  border: 1px solid #001e40;
  width: 246px;
  height: 246px;
  border-radius: 123px;
  position: absolute;
  top: -100px;
  left: -100px;
}

.choose-us-sec-inner::after {
  content: '';
  background: transparent;
  border: 1px solid #f22c61;
  width: 246px;
  height: 246px;
  border-radius: 123px;
  position: absolute;
  top: -100px;
  left: 50px;
}

.choose-us-left-icon {
  width: 50px;
  margin-bottom: 30px;
}

.choose-us-left .common-text {
  padding: 30px 0;
}

.choose-us-right {
  display: flex;
  /* align-items: center; */
  justify-content: end;
  gap: 30px;
  position: relative;
}

.choose-us-right ul {
  margin: 0;
  padding: 20px 15px;
  list-style: none;
  min-height: 100%;
}

.choose-us-right ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #001e40;
}

.choose-us-right ul li:last-child {
  margin-bottom: 0;
}

.choose-us-right ul li img {
  width: 30px;
  object-fit: cover;
}

.choose-us-right-card-1 {
  border-radius: 15px;
  /* filter: drop-shadow(4.243px 4.243px 0.5px #f22c61); */
  background-color: #ffffff;
  border: 1px solid #f22c61;
  position: relative;
}

.choose-us-right-card-1::after {
  content: '';
  background: #f22c61;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -5px;
  top: 5px;
  filter: none;
  border-radius: 15px;
  z-index: -1;
}

.choose-us-right-card-2 {
  border-radius: 15px;
  /* filter: drop-shadow(4.243px 4.243px 0.5px #001e40); */
  background-color: #ffffff;
  border: 1px solid #001e40;
  position: relative;
}

.choose-us-right-card-2 li {
  margin-bottom: 30px;
}

.choose-us-right-card-2::after {
  content: '';
  background: #001e40;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -5px;
  top: 5px;
  filter: none;
  border-radius: 15px;
  z-index: -1;
}

.choose-us-right-card-2::before {
  content: '';
  background: url("../images/mobile.png") no-repeat;
  background-size: contain;
  width: 241px;
  height: 504px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.brand-name {
  font-size: 20px;
  line-height: 22px;
  color: #f22c61;
  font-weight: 600;
  position: absolute;
  top: -72px;
  right: 140px;
}

.choose-us-ndis-logo {
  position: absolute;
  right: 66px;
  bottom: -78px;
}

.premium_tag {
  width: 116px;
  position: absolute;
  top: -150px;
  right: 10px;
  animation: adRotate 8s linear infinite;
}

@keyframes adRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* service-sec */
.service-sec .container {
  max-width: 1340px;
  margin: 0 auto 120px;
}

.service-sec-inner {
  border-radius: 20px;
  background-color: #ffffff;
  border: 2px solid #001e40;
  padding: 90px 30px 0;
}

.service-sec-inner .sub-heading-container {
  margin: 0 auto;
  width: fit-content;
}


.service-sec-inner .common-sub-heading::before {
  content: '';
  background: url("../images/common-heading-shape.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-sec-inner .common-sub-heading::after {
  content: '';
  background: url("../images/common-heading-shape.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-sec-inner .common-heading {
  text-align: center;
  margin-bottom: 15px;
}

.service-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

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

.service-card-heading {
  font-size: 20px;
  color: #001e40;
  font-weight: 700;
}

.service-card-text {
  font-size: 18px;
  line-height: 30px;
  color: #030303;
}

.service-card-link {
  font-size: 18px;
  line-height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #f22c61;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 5px;
  transition: all 0.5s ease;
}

.service-card-link:hover {
  text-underline-offset: 3px;
}

.service-sec-btn {
  margin: 70px 0 -26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.testimonial-sec .sub-heading-container {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}

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


.testimonial-sec .common-sub-heading::before {
  content: '';
  background: url("../images/banner-bottom-icon-2.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-sec .common-sub-heading::after {
  content: '';
  background: url("../images/banner-bottom-icon-2.png") no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-sec .common-heading {
  text-align: center;
  color: #ffffff;
}

.testimonial-content {
  margin-top: 55px;
  position: relative;
}

.testimonial-content::before {
  content: '';
  background: url("../images/testimonial-shape-1.png") no-repeat;
  background-size: cover;
  width: 115px;
  height: 115px;
  position: absolute;
  top: -115px;
  left: 150px;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free {
  border: 2px solid #001e40 !important;
  border-radius: 15px !important;
  padding: 50px !important;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  font-size: 18px !important;
  line-height: 30px !important;
  color: #ffffff !important;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-name {
  font-size: 16px;
  color: #ffffff !important;
  font-weight: 600;
  text-align: end !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow {
  top: 50%;
  font-size: 45px !important;
  transform: translateY(20%) !important;
}

/* .contact-sec */
.contact-sec {
  padding: 90px 0;
  position: relative;
}

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

.contact-sec-inner::before {
  content: '';
  background: url("../images/contact-shape.png") no-repeat;
  background-size: cover;
  width: 161px;
  height: 161px;
  position: absolute;
  right: -100px;
  top: -65px;
}

.contact-sec-inner::after {
  content: '';
  background: url("../images/contact-shape.png") no-repeat;
  background-size: cover;
  width: 161px;
  height: 161px;
  position: absolute;
  left: -100px;
  bottom: -15px;
}


.contact-sec-inner .common-heading {
  font-size: 48px;
  color: #000000;
  text-align: center;
}

.contact-sec-inner .common-text {
  font-size: 20px;
  color: #703a67;
  text-align: center;
  padding: 25px 0;
}




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

.f-logo {
  width: 190px;
}

.f-ndis-logo {
  width: 160px;
  padding: 30px 0 40px;
}


.footer-outer {
  position: relative;
  border-top: 1px solid #ffffff;
  padding: 90px 0 0;
}

.footer-text {
  font-size: 15px;
  line-height: 24px;
  color: #313131;
  margin: 15px 0;
}

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

.f-media a {
  width: 31px;
  height: 31px;
  border-radius: 16px;
  background-color: #f22c61;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.f-contact-img {
  width: 31px;
  min-width: 31px;
  height: 31px;
  border-radius: 16px;
  background-color: #f22c61;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-sec-1 {
  margin-right: 0;
}

.f-sec-2 {
  margin-left: 40px;
}

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

.f-sec-3 {
  margin-left: 45px;
}


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

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

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



/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 34px;
  background-color: #f22c61;
  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/banner-img.jpg") #eee no-repeat center !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 85px 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: #001e40;
}

.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: #f22c61;
  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: #194d87;
}

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

.core-box .inner_title {
  font-size: 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: #f22c61;
}

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


.review-page .hentry {
  margin: 0 !important;
}

/* 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: #f22c61;
  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: #001e40;
  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: #009688;
  width: fit-content;
  margin: 15px 0;
  padding: 15px 25px;
  border-radius: 15px;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

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

.post .entry-title {
  font-size: 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 #eaebff;
  background: #eaebff;
  outline: none;
}

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

.contact-form-sec select {
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #eaebff;
  background: #eaebff;
  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 #eaebff;
  background: #eaebff;
}

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

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

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


#sp-testimonial-free-wrapper-96 .sp-testimonial-free {
  background: #f22c61 !important;
  border-radius: 15px !important;
  padding: 30px;
}

#sp-testimonial-free-wrapper-96 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  padding: 0 !important;
  text-align: left !important;
  font-size: 16px !important;
}

#sp-testimonial-free-wrapper-96 .sp-testimonial-free-section .sp-testimonial-client-name {
  color: #ffffff !important;
  text-align: right !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 #001e40;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

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

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

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

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

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

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


/* 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;
	}
	.logo-container img {
		width: 140px;
	}
	.pos-fixed .logo-container img {
		width: 140px;
	}
	.pos-fixed {
		padding: 12px 0;
	}
	.banner-img img {
		height: 400px;
		object-fit: cover;
	}
    .banner-sec .container {
        width: auto;
    }
	.banner-sec::before {
		width: 100%;
	}
	.banner-sec{
		overflow: hidden;
		margin-top: 75px;
	}
	.banner-container .common-sub-heading {
		font-size: 16px;
		letter-spacing: 1px;
	}
	.banner-container .common-heading {
		font-size: 30px;
		color: #000000;
		line-height: 36px;
	}
	.banner-container .common-text {
		padding: 25px 0px;
	}
	
	.banner-bottom-sec {
		padding: 50px 0;
	}
	.about-sec::before {
		width: 80px;
		height: 80px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec .common-sub-heading {
		margin-bottom: 10px;
	}
	.about-sec .common-text {
		padding: 20px 0;
	}
	.about-sec::after {
		width: 80px;
		height: 80px;
	}
	.about-btn {
		gap: 10px;
	}
	.common-btn {
		padding: 15px 25px;
	}

	.choose-us-sec-inner::after {
		width: 180px;
		height: 180px;
	}
	.choose-us-sec-inner::before {
		width: 180px;
		height: 180px;
	}
	.choose-us-sec-inner {
		padding: 130px 0 0;
	}
	.choose-us-sec {
		padding: 0 0 300px;
	}
	.choose-us-right {
		flex-direction: column;
	}
	.choose-us-right-card-2 {
		margin-top: 140px !important;
	}
	.choose-us-right-card-2::before {
		width: 265px;
		height: 504px;
	}
	.premium_tag {
		top: 290px;
	}
	.brand-name {
		top: 365px;
		right: 160px;
	}
	.choose-us-ndis-logo {
		right: 90px;
		bottom: -84px;
	}
	.service-sec-inner {
		padding: 50px 15px 0;
	}
	.service-sec .common-sub-heading {
		margin-bottom: 15px;
	}
	.service-sec .container {
		margin: 0 auto 50px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec .sub-heading-container {
		margin-bottom: 0;
	}
	.testimonial-content {
		margin-top: 105px;
	}
	.testimonial-content::before {
		width: 80px;
		height: 80px;
		top: -80px;
	}
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section {
		margin: 0 !important;
	}
	#sp-testimonial-free-wrapper-33 .sp-testimonial-free {
		padding: 20px !important;
	}
	.contact-sec {
		overflow: hidden;
	}
	.contact-sec-inner .common-heading {
		font-size: 30px;
	}
	.contact-sec-inner::before{
		display: none;
	}
	.contact-sec-inner::after{
		display: none;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-sec-3 {
		margin-left: 0;
	}
	.f-sec-2 {
		margin-left: 0;
	}
	.lower-footer {
		padding: 20px 0 60px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.inner-form-container {
		padding: 30px 10px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 75px 0 50px !important;
	}
}

@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) {}

/* 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) {
	.banner-sec {
		overflow: hidden;
		margin-top: 58px;
	}
	.service-sec .col-sm-12 {
		width: 50%;
	}
	.contact-form-sec input[type="submit"] {
		padding: 13px 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) {
	.banner-sec {
		overflow: hidden;
		margin-top: 58px;
	}
	.service-sec .col-sm-12 {
		width: 50%;
	}
	.contact-form-sec input[type="submit"] {
		padding: 13px 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) {}

/* 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;
	}
	.logo-container img {
		width: 140px;
	}
	.pos-fixed .logo-container img {
		width: 140px;
	}
	.pos-fixed {
		padding: 12px 0;
	}
	.banner-sec{
		overflow: hidden;
		margin-top: 75px;
	}
	.banner-container .common-sub-heading {
		font-size: 16px;
		letter-spacing: 1px;
	}
	.banner-container .common-heading {
		font-size: 30px;
		color: #000000;
		line-height: 36px;
	}
	.banner-container .common-text {
		padding: 25px 0px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.contact-sec-inner::before {
		right: -30px;
	}
	.contact-sec-inner::after {
		left: -35px;
	}
	.contact-sec-inner .common-heading {
		line-height: 56px;
	}
	.contact-form-sec input[type="submit"] {
		padding: 13px 34px;
	}
	.choose-us-right-card-2::before {
		width: 241px;
		height: 480px;
		right: 2px;
	}
	.choose-us-ndis-logo {
		width: 112px;
		position: absolute;
		right: 70px;
		bottom: -52px;
	}
	.brand-name {
		font-size: 16px;
		top: -52px;
	}
}

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

