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

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


/* 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% !important;
  height: auto !important;
}

.pad-0 {
  padding: 0;
}

.pad-left-0 {
  padding-left: 0;
}

.pad-right-0 {
  padding-right: 0;
}


.common-heading {
  font-size: 36px;
  color: #010101;
  font-weight: 700;
  font-family: "Playfair Display";
}

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

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

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

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

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

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

.common-btn-2 {
  background-color: #91c232;
}

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

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

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

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

  to {
    transform: translateY(0);
  }
}

.line {
  position: absolute;
  width: 63%;
  height: 3px;
  top: 60%;
  right: 0;
  background: #d1d1d1;
  z-index: 1;
  transition: all 0.5s ease;
}

.line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #6d3671;
}


.top-sec {
  padding: 5px 0;
  background-color: #6d3671;
  display: flex;
  justify-content: center;
}

.top-sec-heading {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  position: relative;
}

.top-sec-heading::before {
  content: '';
  background: #b194b3;
  width: 80px;
  height: 2px;
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
}

.top-sec-heading::after {
  content: '';
  background: #b194b3;
  width: 80px;
  height: 2px;
  position: absolute;
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
}


/* .top-header */
.top-header {
  background-color: #ffffff;
  padding: 25px 0;
  position: relative;
  transition: all 0.5s ease;
}

.header-info-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
}

.header-info img {
  width: 34px;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #1a1b1c;
  font-weight: 600;
  position: relative;
}

.header-info a,
.header-info strong {
  font-size: 16px;
  color: #1a1b1c;
  font-weight: 500;
}

.header-info a:hover {
  color: #7ecfa6;
}


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

.header-container {
  position: relative;
}

.logo-container {
  position: relative;
}

.logo-container img {
  width: 180px;
  transition: all 0.5s ease;
  position: absolute;
  top: -115px;
  left: 0;
  z-index: 2;
}

.main-header-container {
  position: relative;
  padding: 10px 0 20px;
}

.header-manu-container {}

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

.main-header ul li {
  margin-right: 85px;
  position: relative;
}

.main-header ul li::before {
  content: '';
  width: 2px;
  height: 20px;
  background-color: #c3c3c3;
  /* border-right: 2px solid #1b1b1b; */
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}

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

.main-header ul li:last-child::before {
  content: none;
}

.main-header ul .sub-menu li::before {
  display: none;
}

.main-header ul li a {
  font-size: 16px;
  color: #1a1b1c;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0;
}

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



.pos-fixed {
  background-color: #ffffff;
  box-shadow: 0 0 5px #e1e1e1;
  top: 0;
  border-bottom: 0;
}

.pos-fixed .line {
  display: none;
}

.pos-fixed .top-header {
  height: 0;
  padding: 0;
}

.pos-fixed .top-header .container {
  display: none;
}

.pos-fixed ul li a {
  color: #2a2a2a;
}

.pos-fixed .logo-container img {
  position: relative;
  top: 0;
  width: 130px;
}

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

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

.banner-container {
  max-width: 550px;
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  display: flex;
  align-items: start;
  flex-direction: column;
  z-index: 10;
}

.banner-heading {
  font-size: 51px;
  line-height: 61px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Playfair Display";
}

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

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

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

.about-shape-img {
  width: 157px;
  height: 157px;
  border-radius: 78px;
  background-color: #fcd0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-shape-img::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #6d3671;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-shape-img img {
  width: 117px;
  animation: rotating 20s linear infinite;
}

.about-mid {
  padding-left: 32px;
}

.about-mid .common-heading {
  padding: 15px 0;
}

.about-mid .common-btn {
  margin-top: 20px;
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }

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


/* our-services-sec */
.our-services-sec {
  background-color: #eee7f7;
  padding: 100px 0;
}

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

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

.our-services-card {
  border-radius: 15px;
  box-shadow: inset 0 0 13.5px rgba(145, 194, 50, 0.59);
  background-color: #ffffff;
  border: 1px solid #91c232;
  padding: 35px 15px;
}

.our-services-card img {
  width: 46px !important;
}

.services-card-heading {
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  font-weight: 700;
  padding: 10px 0;
}

.services-card-text {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
}

.services-card-link {
  font-size: 16px;
  line-height: 27px;
  text-decoration: underline;
  color: #2e5795;
  font-weight: 700;
  display: block;
  margin-top: 10px;
  text-underline-offset: 5px;
}

.service-slider .owl-carousel .owl-stage-outer {
  margin: 0 -10px;
  padding: 100px 7px 0;
}

.service-slider .owl-item .item {
  transition: all 0.5s ease;
}

.service-slider .owl-prev span {
  display: none;
}

.service-slider .owl-prev {
  position: relative;
  float: left;
}

.service-slider .owl-prev::before {
  content: "";
  background: url("../images/t-left-arrow.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -70px;
  top: -240px;
}

.service-slider .owl-next span {
  display: none;
}

.service-slider .owl-next {
  position: relative;
  float: right;
}

.service-slider .owl-next::before {
  content: "";
  background: url("../images/t-righ-arrow.png") no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  position: absolute;
  right: -70px;
  top: -240px;
}

/* 1st */
.owl-item.pos1 .item {
  margin-top: 0;
}

/* 2nd */
.owl-item.pos2 .item {
  margin-top: -45px;
}

/* center (3rd) */
.owl-item.pos3 .item {
  margin-top: -90px;
}

/* 4th */
.owl-item.pos4 .item {
  margin-top: -45px;
}

/* 5th */
.owl-item.pos5 .item {
  margin-top: 0;
}

.our-services-bottom {
  position: relative;
}

.our-services-bottom::before {
  content: '';
  background: url("../images/service-shape.png") no-repeat;
  background-size: cover;
  width: 66px;
  height: 66px;
  position: absolute;
  right: -30px;
  bottom: -20px;
}


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

.why-choose-left {
  position: relative;
}

.experience-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 264px;
  border-radius: 15px;
  background-color: #e7ffb7;
  padding: 35px;
  position: absolute;
  right: 0;
  bottom: 20px;
}

.experience-card img {
  width: 64px;
}

.experience-card-heading {
  font-size: 23px;
  color: #1d1d1d;
  font-weight: 600;
}

.why-choose-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-choose-card-img {
  width: 63px;
  min-width: 63px;
  height: 63px;
  border-radius: 32px;
  background-color: #f5cdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.why-choose-card-img::before {
  content: '';
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(138, 176, 68, 1) 100%);
  width: 3px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
}

.why-choose-card:last-child .why-choose-card-img:before {
  display: none;
}

.why-choose-card-heading {
  font-size: 20px;
  color: #1d1d1d;
  font-weight: 500;
}

.why-choose-card-text {
  font-size: 14px;
  line-height: 25px;
  color: #1d1d1d;
  font-weight: 400;
}

.why-choose-right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
  margin-left: 35px;
}



/* .testimonial-sec  */
.testimonial-sec {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(238, 231, 247, 1) 100%);
}

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

.testimonial-sec::after {
  content: '';
  background: url("../images/testimonial-shape-2.png") no-repeat;
  background-size: cover;
  width: 201px;
  height: 281px;
  position: absolute;
  right: 0;
  top: 0;
}

.testimonial-content {
  margin-top: 50px;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free,
#sp-testimonial-free-wrapper-81 .sp-testimonial-free {
  background: transparent;
  border: 1px dashed #000000 !important;
  border-radius: 20px !important;
  padding: 70px 30px 30px;
}

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

#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-name,
#sp-testimonial-free-wrapper-81 .sp-testimonial-free-section .sp-testimonial-client-name {
  color: #303030 !important;
  text-align: end !important;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-rating,
#sp-testimonial-free-wrapper-81 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  top: 40px;
}

#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000000 !important;
}

/* footer */
.footer {
  position: relative;
}

.footer-outer {
  background-color: #250927;
  padding: 90px 0 0;
  position: relative;
}

.footer-outer::before {
  content: '';
  background: url("../images/footer-shape-1.png") repeat-x 0 0;
  width: 311px;
  height: 423px;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.footer-outer::after {
  content: '';
  background: url("../images/footer-shape-2.png") repeat-x 0 0;
  width: 313px;
  height: 427px;
  position: absolute;
  top: 0px;
  right: 0;
}

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

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

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

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

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

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

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

.footer ul li a:hover {
  color: #91c232;
  padding-left: 2px;
}

.f-contact-container {
  padding-left: 85px;
  position: relative;
  z-index: 1;
}

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

.f-contact-img img {
  width: 15px;
}

.f-contact-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.f-service-container {
  padding-left: 35px;
  position: relative;
}

.f-menu-container ul li {
  margin-bottom: 10px;
}

.f-menu-container {
  margin-left: 60px;
}




.lower-footer {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff;
}

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

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


/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1000;
  width: 57px;
  height: 57px;
  border-radius: 29px;
  background: #91c232;
  align-items: center;
  justify-content: center;
}

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

.inner_txt {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  margin-top: 20px;
}

.margin-top {
  margin-top: 48px;
}

.inner_list_txt {
  margin-top: 20px;
}

.inner_list_txt ul {
  padding: 0;
  margin: 0;
}

.inner_list_txt ul li {
  background: url("../images/list-img.png");
  background-position: top 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: #91c232;
  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: #194d87;
}

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

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

/* contact page css  */

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

.contact_page_heading strong {
  color: #6d3671;
}

.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: #91c232;
  width: 50%;
  float: left;
  color: #000 !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: #99729c;
  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: #91c232;
  width: fit-content;
  margin: 15px 0;
  padding: 15px 25px;
  border-radius: 15px;
  color: #000;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.more-link:hover {
  background: #99729c !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: #91c232;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

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

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

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

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

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

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

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

.serparator_sec {
  background: #91c232;
  margin: 48px 0 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.inner_sub_title {
  color: #131313;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
}

.rmp-container .rmp-menu-title .rmp-menu-title-image {
    margin-bottom: 0px !important;
    border-radius: 15px;
    padding: 20px;
    width: 180px;
    background: #fff;
}

/* mediaquery start here */

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

    .header-right {
        display: none;
    }

	.logo-container img {
		position: relative;
		width: 130px;
		top: 0;
	}
	.main-header-container {
		padding: 10px;
	}
	.animate {
        animation: none;
	}
	.banner-sec {
		position: relative;
		margin-top: 120px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-img img {
		height: 500px !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 35px;
	}
	.banner-container .common-text {
		padding: 10px 0 20px;
		line-height: 26px;
	}
	.banner-btn {
		gap: 10px;
	}
	.common-btn {
		padding: 12px 20px;
		font-size: 15px;
	}
	.banner-container {
		top: 50%;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-mid {
		padding-left: 0;
	}
	.common-heading {
		font-size: 26px;
	}
	.our-services-sec {
		padding: 50px 0;
	}
	.service-slider .owl-carousel .owl-stage-outer {
		margin: 0 -10px;
		padding: 10px 7px 0;
	}
	.service-bottom-btn {
		gap: 15px;
		flex-direction: column;
	}
	.our-services-bottom::before {
		gap: 7px;
		right: 0;
		bottom: -80px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-right {
		gap: 20px;
		margin-left: 0;
	}
	.why-choose-card-img::before {
		bottom: -55px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-content {
		margin-top: 30px;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-logo {
		width: 200px;
	}
	.f-media {
		justify-content: start;
		gap: 15px;
		margin-top: 20px;
	}
	.footer .pad-0 {
		padding: 0px 15px;
	}
	.f-menu-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-contact-container {
		padding-left: 0;
	}
	.lower-footer {
		margin-top: 20px;
		padding: 20px 0 60px;
	}
	.scroll-top {
		width: 45px;
		height: 45px;
	}
	.scroll-top {
		bottom: 2rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 120px 0 50px !important;
	}
	.reviews-page .hentry {
		margin: 0 !important;
	}
	.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) {
	.service-bottom-btn {
		flex-direction: row;
	}
	.why-choose-card-img::before {
		height: 25px;
		bottom: -31px;
	}
}

/* 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-slider .owl-next::before {
		right: -55px;
	}
	.service-slider .owl-prev::before {
		left: -55px;
	}
	.service-bottom-btn {
		flex-direction: row;
	}
}

/* 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-slider .owl-next::before {
		right: -55px;
	}
	.service-slider .owl-prev::before {
		left: -55px;
	}
	.service-bottom-btn {
		flex-direction: row;
	}
}

/* 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-slider .owl-next::before{
		display: none;
	}
		.service-bottom-btn {
		flex-direction: row;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-sec{
		display: none;
	}
    .top-header {
        display: none;
    }
	.line{
		display: none;
	}
	.main-header {
		top: 0;
	}
	.header-mid {
        display: none;
    }

    .header-right {
        display: none;
    }

	.logo-container img {
		position: relative;
		width: 130px;
		top: 0;
	}
	.main-header-container {
		padding: 10px;
	}
	.animate {
        animation: none;
	}
	.banner-sec {
		margin-top: 120px;
	}
	.service-slider .owl-next::before{
		display: none;
	}
	.service-slider .owl-prev::before{
		display: none;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 36px;
	}
	.common-heading {
		font-size: 30px;
	}
	
}

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