@font-face {
  font-family: 'Adobe Caslon Pro';
  src: url('../fonts/ACaslonPro-Bold.eot');
  src: url('../fonts/ACaslonPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ACaslonPro-Bold.woff2') format('woff2'),
    url('../fonts/ACaslonPro-Bold.woff') format('woff'),
    url('../fonts/ACaslonPro-Bold.ttf') format('truetype'),
    url('../fonts/ACaslonPro-Bold.svg#ACaslonPro-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-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;
}

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



/* 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: 20px;
  letter-spacing: 0px;
  line-height: 29px;
  text-transform: uppercase;
  color: #323232;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  padding-left: 100px;
}

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

.common-heading {
  font-size: 36px;
  line-height: 40px;
  color: #6f2c79;
  font-family: 'Adobe Caslon Pro';
}

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

.common-text {
  font-size: 16px;
  line-height: 30px;
  color: #292929;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 12px 30px;
  width: fit-content;
  text-transform: uppercase;
  background-color: #f98128;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease;
}

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

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

.common-btn:hover {
  color: #6e2b78;
}

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translateY(0);
  }
}

.padding-0 {
  padding: 0;
}

.top-header {
  background-color: #ffffff;
  padding: 5px 0;
  position: relative;
  z-index: 99999;
}

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

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

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

.header-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.top-header-info a {
  font-size: 18px;
  color: #191919;
  font-weight: 500;
}

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

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

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

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

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

.header-bottom {
  padding: 10px 0;
  background-color: #f3f3f3;
}

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

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

.header-manu-container ul {}

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

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

.main-header ul li a {
  font-size: 18px;
  color: #1b1b1b;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0;
}

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

.header-btn-container .common-btn {
  padding: 12px 50px;
}

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

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


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

.banner-sec::before {
  content: '';
  background: #16910b7a;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner-sec::after {
  content: '';
  background: url("../images/banner-shape.png") repeat-x;
  background-size: cover;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

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

.banner-container .common-heading {
  font-size: 65px;
  line-height: 70px;
  color: #ffffff;
}

.banner-container .common-text {
  color: #ffffff;
  padding: 5px 0 30px;
}

/* .banner-bottom */
.banner-bottom {
  padding: 60px 0 100px;
}

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

.banner-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background-color: #fff2e8;
  border: 1px solid #6e2b78;
  padding: 40px 60px;
}

.banner-bottom-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.banner-bottom-card img {
  width: 60px;
}

.banner-bottom-heading {
  font-size: 18px;
  color: #222222;
  font-weight: 600;
}

/* about-sec */
.about-sec {
  position: relative;
  padding: 0 0 150px;
}

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

.about-sec-left-img {
  position: relative;
  border-radius: 20px;
  width: fit-content;
}

.about-sec-left-img::before {
  content: '';
  width: 93%;
  height: 93%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 4px solid #fff;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.about-sec-left-img::after {
  content: '';
  width: 100%;
  height: 40%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(81, 183, 71, 1) 0%, rgba(81, 183, 71, 0) 100%);
}

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

.about-sec-right .common-text {
  padding: 20px 0 40px;
}

/* our-service-sec */
.our-service-sec {
  background: #fff2e8;
  padding: 80px 0 100px;
  position: relative;
}

.our-service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.our-service-card-heading {
  font-size: 20px;
  color: #1d1d1d;
  font-weight: 500;
  margin: 20px 0 5px;
}

.our-service-card-text {
  font-size: 16px;
  line-height: 30px;
  color: #1d1d1d;
  font-weight: 400;
  margin-bottom: 15px;
}

.our-service-card .common-btn {
  text-transform: uppercase;
  font-size: 16px;
  padding: 12px 40px;
}

.why-choose-sec {
  padding: 60px 0 0;
}

.why-choose-right img {
  float: right;
}

.why-choose-left .common-text {
  margin-right: -55px;
  margin-top: 10px;
}

.why-choose-card-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background-color: #dbffd8;
  border: 1px solid #51b747;
  padding: 13px 30px;
}

.why-choose-card img {
  width: 50px;
}

.why-choose-card-heading {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
}

/* testimonial-sec */
.testimonial-sec {
  padding: 70px 0 160px;
}

.testimonial-sec .common-text {
  margin: 0 auto;
  margin-top: 10px;
}

.testimonial-img {
  display: flex;
  justify-content: center;
  padding: 35px 0 40px;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  padding: 30px 0 0 !important;
  margin: 0 !important;
}
#sp-testimonial-free-wrapper-83 .sp-testimonial-free-section .sp-testimonial-client-rating i.fa {
    font-size: 25px !important;
}
#sp-testimonial-free-wrapper-83 .sp-testimonial-free-section .sp-testimonial-client-rating {
    display: flex;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* footer */

.home .footer {
  margin-top: 0;
}

.footer {
  position: relative;
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  background: #2d0b32;
}

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


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

.f-logo {
  width: 267px;
}

.f-ndis-logo {
  width: 170px;
  margin: 30px 0 20px;
}

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

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

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

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

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


.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: #f98128;
  padding-left: 2px !important;
}

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

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

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

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

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

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

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

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

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


.lower-footer {
  position: relative;
  font-size: 14px;
  color: #ffffff;
  padding: 15px 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: #f98128;
}



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


.scroll-top img {
  width: 30px;
  animation: bounce2 2s ease infinite;
}


@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}


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

.page .entry-header,
.blog_page_header {
  background: url("../images/banner-img.jpg") #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 150px 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: #6e2b78;
}

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

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

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

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

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

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

.contact-img img {
  width: 22px;
}

.contact_right {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 25px;
  border-radius: 5px;
}

/* thank you page   */
.thankyou-btn-container {
  display: flex;
  justify-content: center;
}

.thankyou-btn-container a {
  text-decoration: none !important;
}

.thankyou-text {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

/* 404 page */

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

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

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

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

.footer_btn1 {
  background: #f98128;
  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: #6e2b78;
  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: #f98128;
  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: #6f2c79 !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: #f98128;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

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

.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%;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  color: #2b2b2b;
  padding: 10px 20px;
}

.inner-form-textarea textarea {
  width: 100%;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  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: #6f2c79;
}

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

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

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

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

.about-page .inner_bottm_sec .inner_txt {
  margin-top: 0;
}




.rmp-container .rmp-menu-title .rmp-menu-title-image {
    width: 180px;
}

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

    .banner-sec .container {
        width: auto;
    }
	.logo-container img {
		width: 160px;
	}
	.banner-img img {
		height: 430px;
		object-fit: cover;
	}
	.banner-container .common-heading {
		font-size: 30px;
		line-height: 45px;
	}
	.banner-container .common-text {
		padding: 5px 15px 30px;
		line-height: 26px;
	}
	.banner-btn-container {
		gap: 10px;
	}
	.common-btn {
		padding: 10px 20px;
	}
	.banner-sec {
		margin-top: 68px;
	}
	.banner-bottom {
		padding: 50px 0;
	}
	.banner-bottom-inner{
		flex-wrap: wrap;
	}
	.banner-bottom-inner {
		justify-content: center;
		padding: 30px;
		gap: 25px;
	}
	.common-heading {
		font-size: 30px;
	}
	.about-sec {
		padding: 0 0 100px;
	}
	.about-sec-right .common-text {
		padding: 5px 0 20px;
	}
	.our-service-sec {
		padding: 40px 0 50px;
	}
	.why-choose-sec {
		padding: 50px 0 0;
	}
	.why-choose-left .common-text {
		margin-right: 0;
	}
	.testimonial-sec {
		padding: 25px 0 100px;
	}
	.footer {
		padding: 50px 0 0;
	}
	.f-logo {
		width: 200px;
	}
	.f-sec-2 {
		margin-left: 0;
	}
	.f-sec-4 {
		margin-left: 0;
	}
	.f-sec-3 {
		margin-left: 0;
	}
	.lower-footer {
		padding: 15px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
		width: 50px;
		height: 50px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 68px 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-bottom-inner {
		justify-content: space-around;
	}
}

/* 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-bottom-inner {
		justify-content: space-around;
	}
}

/* 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) {
	.banner-bottom-inner {
		justify-content: space-around;
	}
}

/* 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;
	}
	.banner-sec {
		margin-top: 65px;
	}
    .banner-sec .container {
        width: auto;
    }
	.logo-container img {
		width: 160px;
	}
	.banner-img img {
		height: 430px;
		object-fit: cover;
	}
	.banner-container .common-heading {
		font-size: 30px;
		line-height: 45px;
	}
	.banner-container .common-text {
		padding: 5px 15px 30px;
		line-height: 26px;
	}
	.banner-btn-container {
		gap: 10px;
	}
	.common-btn {
		padding: 10px 20px;
	}
	.page .entry-header, .blog_page_header {
		margin: 65px 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: 1025px) {
	.main-logo{
		display: none;
	}
	.main-header ul li {
		margin-right: 40px;
	}
}

@media screen and (min-width: 1200px) {
	.main-header ul li {
		margin-right: 70px;
	}
}

@media screen and (min-width: 1424px) {
	.main-logo{
		display: none;
	}
	.main-header ul li {
		margin-right: 70px;
	}
}

@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-logo{
		display: none;
	}
	.main-header ul li {
		margin-right: 40px;
	}
}