@font-face {
  font-family: 'Times New Roman';
  src: url('../fonts/TimesNewRomanPSMT.eot');
  src: url('../fonts/TimesNewRomanPSMT.eot') format('embedded-opentype'),
    url('../fonts/TimesNewRomanPSMT.woff2') format('woff2'),
    url('../fonts/TimesNewRomanPSMT.woff') format('woff'),
    url('../fonts/TimesNewRomanPSMT.ttf') format('truetype'),
    url('../fonts/TimesNewRomanPSMT.svg#TimesNewRomanPSMT') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot') 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-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot') 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') 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') 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% !important;
  height: auto !important;
}

.sub-heading-container {
  display: flex;
  justify-content: center;
}

.sub-heading_bg {
  background-color: #ffffff;
}

.common-sub-heading {
  width: fit-content;
  font-size: 14px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  border-radius: 17px;
  padding: 5px 25px;
  background-color: #f0ffe8;
  border: 1px solid #6FDA44;
  margin-bottom: 15px;
}

.common-heading {
  font-size: 38px;
  color: #000000;
  font-family: "Times New Roman";
}

.common-text {
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
}

.common-btn {
  display: inline-block !important;
  position: relative;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #6FDA44;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  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: #000000;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

.common-btn:hover {
  color: #fff;
}

.common-btn:hover::before {
  transform: scaleX(1);
}

.common-btn-2 {
  background-color: #000000;
}

.common-btn-2::before {
  background-color: #6FDA44;
}

.animate {
  animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-150%);
  }

  to {
    transform: translateY(0);
  }
}

.line {
  position: absolute;
  width: 56%;
  height: 1px;
  top: 35%;
  right: 0;
  background: #3d7a1e;
  z-index: 1;
  transition: all 0.5s ease;
}

.line::before {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 10px;
  background-color: #3d7a1e;
}

.top-header {
  background-color: #6FDA44;
  padding: 15px 0;
  position: relative;
  transition: all 0.5s ease;
}

.header-info-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 25px;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #1c1c1c;
  font-weight: 400;
  position: relative;
}

.header-info::before {
  content: '';
  background-color: #3d7a1e;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -13px;
}

.header-info:last-child::before {
  content: none;
}

.header-info a,
.header-info strong {
  font-size: 14px;
  color: #1c1c1c;
  font-weight: 400;
}

.header-info a:hover {
  color: #ffffff;
}

.header-info img {
  width: 14px;
}


/* main header section css here  */
.main-header {
  position: fixed;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #6FDA44;
  transition: all 0.5s ease;
}

.header-container {
  position: relative;
}

.logo-container {
  position: relative;
}

.logo-container img {
  width: 130px;
  position: absolute;
  top: -92px;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease;
}

.main-header-container {
  position: relative;
  padding: 20px 0;
}

.header-manu-container {
  margin-right: 30px;
}

.header-manu-container ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.main-header ul li {
  margin-right: 25px;
  position: relative;
}

.main-header ul li:last-child {
  margin-right: 0px;
}

.main-header ul li a {
  font-size: 14px;
  line-height: 48px;
  color: #1c1c1c;
  font-weight: 400;
  padding: 0;
}

.header-btn-container {
  display: flex;
  justify-content: end;
}

.header-btn-container .common-btn-2:hover {
  color: #000000;
}

.header-btn-container .common-btn-2::before {
  background-color: #ffffff;
}



.pos-fixed {
  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: 90px;
}

.pos-fixed .main-header-container {
  padding: 10px 0;
}

/* banner css here  */
.banner-sec {
  position: relative;
  margin-top: 140px;
}

.banner-sec::before {
  content: '';
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(237, 221, 83, 0) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.banner-img img {
  width: 100%;
}

.banner-container {
  width: 560px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: start;
  flex-direction: column;
  z-index: 10;
}

.banner-heading {
  font-size: 50px;
  line-height: 55px;
  text-transform: uppercase;
  color: #004056;
  font-weight: 700;
  filter: drop-shadow(0px 4px 6.5px #ffffff);
}

.banner-container .common-heading {
  font-size: 50px;
  line-height: 60px;
}

.banner-container .common-text {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  padding: 20px 0 30px;
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* .about-sec */
.about-sec {
  position: relative;
  padding: 90px 0;
}

.about-sec::before {
  content: '';
  background: url("../images/about-shape.png") no-repeat;
  width: 475px;
  height: 508px;
  position: absolute;
  top: 0;
  left: 0;
}

.about-left {
  position: relative;
}

.about-left .common-text {
  padding: 15px 15px 30px 0;
}

/* about-bottom-sec */
.about-bottom-sec {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.about-bottom-sec::before {
  content: '';
  background: #e6e6e6;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about-bottom-container {
  width: fit-content;
  border-radius: 38px;
  background-color: #6FDA44;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 40px;
  position: relative;
}

.about-bottom-container img {
  width: 37px;
}

.about-bottom-text {
  font-size: 22px;
  color: #000000;
  font-weight: 400;
}

/* our-service-sec */
.our-service-sec {
  position: relative;
  padding: 100px 0;
  background-color: #6FDA44;
}

.our-service-sec::before {
  content: '';
  background: url("../images/our-service-sahpe.png") repeat-x 0 0;
  width: 100%;
  height: 19px;
  position: absolute;
  left: 0;
  top: -10px;
}

.our-service-sec .common-heading {
  margin-bottom: 40px;
}

.our-service-card {
  border-radius: 20px;
  padding: 8px 8px 26px;
  background-color: #6FDA44;
  border: 1px solid #ffffff;
  min-height: 100%;
}

.our-service-card img {
  width: 100%;
  border-radius: 20px;
}

.service-card-heading {
  font-size: 21px;
  color: #ffffff;
  font-family: "Times New Roman";
  padding: 20px 8px 5px;
}

.service-card-text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  font-weight: 400;
  padding: 0 8px 10px;
}

.service-card-link {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 21px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  text-underline-offset: 5px;
  padding: 0px 8px 0;
  transition: all 0.5s ease;
}

.service-card-link:hover {
  text-underline-offset: 3px;
}

/* why-choose-sec */
.why-choose-sec {
  padding: 90px 0 100px;
  position: relative;
}

.why-choose-sec::before {
  content: '';
  background: url("../images/why-choose-shape-1.png") no-repeat;
  width: 226px;
  height: 230px;
  position: absolute;
  left: 0;
  top: 0;
}

.why-choose-sec::after {
  content: '';
  background: url("../images/why-choose-shape-1.png") no-repeat;
  width: 233px;
  height: 237px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.why-choose-sec .common-heading {
  margin-bottom: 40px;
}

.why-choose-card {
  border-radius: 30px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 15px;
  min-height: 100%;
  position: relative;
}

.choose-card-icon {
  width: 83px;
  min-width: 83px;
  height: 83px;
  border-radius: 41px;
  background-color: #f0ffe8;
  border: 1px solid #6FDA44;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.choose-card-number {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #6FDA44;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.choose-card-icon img {
  width: 36px;
}

.choose-card-heading {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  font-family: "Times New Roman";
  padding-bottom: 5px;
}

.choose-card-text {
  font-size: 14px;
  line-height: 21px;
  color: #000000;
  font-weight: 400;
}

.why-choose-card-last {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 30px;
  background-color: #6FDA44;
  min-height: 100%;
  padding: 30px 10px 30px 50px;
  position: relative;
  z-index: 1;
}

.why-choose-card-last img {
  width: 74px;
}

.choose-card-last-heading {
  font-size: 26px;
  color: #000000;
  font-family: "Times New Roman";
}

.choose-card-last-text {
  font-size: 28px;
  color: #000000;
  font-weight: bold;
  font-family: "Times New Roman";
}

.choose-card-last-text:hover {
  color: #fff;
}


/* .contact-sec */
.contact-sec {
  padding: 100px 0;
  background-color: #6FDA44;
  position: relative;
}

.contact-sec::before {
  content: '';
  background: url("../images/our-service-sahpe.png") repeat-x 0 0;
  width: 100%;
  height: 19px;
  position: absolute;
  left: 0;
  top: -10px;
}

.contact-sec::after {
  content: '';
  background: url("../images/contact-Shape.png") no-repeat;
  width: 597px;
  height: 516px;
  position: absolute;
  left: 0;
  top: 0px;
}

.contact-left {
  position: relative;
  z-index: 1;
}

.contact-right .common-heading {
  margin-bottom: 25px;
}

.contact-right input {
  width: 100%;
  padding: 12px 10px 12px 20px;
  border-radius: 10px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {
  border: 1px solid #000000;
}

.contact-right select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-right textarea {
  width: 100%;
  padding: 12px 12px 12px 20px;
  border-radius: 10px;
  color: #515151;
  font-size: 16px;
  height: 90px;
  border: 1px solid #efefef;
  background: #efefef;
}

.contact-right input[type="submit"] {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  border-radius: 25px;
  width: fit-content;
  background-color: #000000;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.contact-right input[type="submit"]:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact-right p {
  margin-bottom: 0 !important;
}


/* testimonial sec  */
.testimonial-sec {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

.testimonial-sec::before {
  content: '';
  background: url("../images/testimonial-shape-1.png") no-repeat;
  background-size: cover;
  width: 358px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
}

.testimonial-sec::after {
  content: '';
  background: url("../images/testimonial-shape-2.png") no-repeat;
  background-size: cover;
  width: 400px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0px;
}

.testimonial-sec .common-heading {
  margin-bottom: 50px;
}

#sp-testimonial-free-wrapper-75 .sp-testimonial-free-section {
  margin: 0 !important;
}

#sp-testimonial-free-wrapper-75 .sp-testimonial-free {
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 0 5px #c5c5c5;
  margin: 4px;
  padding: 60px 20px 30px;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  font-size: 14px !important;
  line-height: 24px !important;
  color: #000000 !important;
  padding: 0 !important;
  text-align: left !important;
  margin-bottom: 10px !important;
}

#sp-testimonial-free-wrapper-75 .sp-testimonial-free-section .sp-testimonial-client-name {
  font-size: 14px !important;
  line-height: 24px !important;
  color: #000000 !important;
  text-align: right !important;
}

#sp-testimonial-free-wrapper-75 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  top: 35px;
}

.sp-testimonial-free-section .testimonial-nav-arrow {
  font-size: 50px !important;
  transform: translateY(45%) !important;
}

.sp-testimonial-free-wrapper {
  overflow: visible !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
  right: -60px !important;
}

.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
  left: -60px !important;
}


/* footer */
.footer {
  position: relative;
}

.footer-outer {
  background-color: #191919;
  padding: 80px 0 0;
  position: relative;
}

.footer-heading {
  font-size: 20px;
  color: #6FDA44;
  font-weight: 700;
  padding-bottom: 25px;
}

.footer ul {
  list-style: none;
  margin: 0;
}

.footer ul li {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

.footer ul li a:hover {
  color: #6FDA44;
  padding-left: 2px;
}

.f-contact-img {
  min-width: 31px;
  width: 31px;
  height: 31px;
  border-radius: 16px;
  background-color: #6FDA44;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-contact-img img {
  width: 14px;
}

.f-contact-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.f-info-container {
  width: 127px;
}

.f-media-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.f-media-container a {
  width: 31px;
  height: 31px;
  border-radius: 15px;
  background-color: #6FDA44;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-media-container img {
  width: 14px;
}

.f-contact-container {
  padding-left: 10px;
}

.f-service-container {
  padding-left: 35px;
}

.f-service-container-2 {
  padding-left: 60px;
}



.lower-footer {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  padding: 15px 0;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid #e2e2e2;
}

.lower-footer a {
  color: #ffffff;
}

.lower-footer a:hover {
  color: #6FDA44;
}


/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1000;
  width: 57px;
  height: 57px;
  border-radius: 28px;
  background-color: #6FDA44;
  align-items: center;
  justify-content: center;
}

.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 center !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 140px 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: #6FDA44;
}

.inner_title_sub {
  font-size: 20px;
  margin-top: 20px;
}

.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: #6FDA44;
  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: #6FDA44;
}

.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: #6FDA44;
}

.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;
}

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}

.footer_btn1 {
  background: #3d7a1e;
  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: 20px;
}

.footer_btn3 {
  background: #000000;
  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: #000000;
  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: #6FDA44 !important;
  color: #000 !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 #6FDA44;
}

.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: #000000;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
  background-color: #6FDA44;
}

.contact-form-sec p {
  margin-bottom: 0 !important;
}


#sp-testimonial-free-wrapper-129 .sp-testimonial-free {
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 0 5px #c5c5c5;
  margin: 4px;
  padding: 60px 20px 30px;
}

#sp-testimonial-free-wrapper-129 .sp-testimonial-free-section .sp-testimonial-client-name {
  font-size: 14px !important;
  line-height: 24px !important;
  color: #000000 !important;
  text-align: right !important;
}

#sp-testimonial-free-wrapper-129 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  top: 35px;
}

.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;
}


/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
	.top-header {
		display: none;
	}
	.main-header-container {
		padding: 10px 0;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.animate {
		animation: none;
	}
	.line{
		display: none;
	}
	.logo-container img {
		position: relative;
		width: 80px;
		top: 0;
	}
	.pos-fixed  .logo-container img {
		width: 80px;
	}
	.banner-sec .container{
		width: auto;
	}
	.banner-container {
		width: auto;
	}
	.banner-sec {
		margin-top: 100px;
	}
	.banner-img img {
		width: 100%;
		height: 400px !important;
		object-fit: cover;
		object-position: right;
	}
	.banner-container .common-heading {
		font-size: 32px;
		line-height: 40px;
	}
	.banner-container .common-text {
		font-size: 16px;
		padding: 15px 0 20px;
	}
	.banner-btn {
		align-items: start;
		gap: 10px;
		flex-direction: column;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-sec::before {
		width: 300px;
		height: 250px;
	}
	.common-heading {
		font-size: 28px;
		line-height: 30px;
	}
	.about-left .common-text {
		padding: 20px 0;
	}
	.about-bottom-container{
		flex-direction: column;
		gap: 10px;
		padding: 20px 30px;
		margin: 0 15px;
	}
	.about-bottom-text {
		font-size: 18px;
		text-align: center;
	}
	.about-bottom-sec {
		margin-bottom: 50px;
	}
	.our-service-sec {
		padding: 50px 0;
	}
	.our-service-sec .common-heading {
		margin-bottom: 30px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-card {
		flex-direction: column;
		align-items: start;
		gap: 15px;
	}
	.choose-card-last-heading {
		font-size: 22px;
		line-height: 26px;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec::after{
		display: none;
	}
	.testimonial-sec::before{
		width: 200px;
	}
	.testimonial-sec::after{
		width: 200px;
	}
	.testimonial-sec .sub-heading-container{
		position: relative;
		z-index: 1;
	}
	.testimonial-sec .common-heading{
		position: relative;
		z-index: 1;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.lower-footer {
		padding: 15px 0 60px;
		margin-top: 30px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 100px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.scroll-top {
		bottom: 1rem;
		right: 0.5rem;
		width: 45px;
		height: 45px;
	}
	.scroll-top img {
		width: 20px;
	}
	.page-id-21 .hentry {
		margin: 0 auto 0 !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) {
	.banner-container {
		width: 450px;
	}
	.banner-btn {
		flex-direction: row;
	}
	.about-bottom-container {
		flex-direction: row;
	}
	.our-service-sec .col-sm-12{
		width: 50%;
	}
	.why-choose-card {
		flex-direction: row;
		align-items: center;
		gap: 40px;
	}
	.footer-outer .col-sm-12{
		width: 50%;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.banner-container {
		width: 450px;
	}
	.banner-btn {
		flex-direction: row;
	}
	.about-bottom-container {
		flex-direction: row;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -40px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -40px !important;
	}
	
}

/* 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-container {
		width: 450px;
	}
	.banner-btn {
		flex-direction: row;
	}
	.about-bottom-container {
		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) {
	.banner-container {
		width: 450px;
	}
	.banner-btn {
		flex-direction: row;
	}
	.about-bottom-container {
		flex-direction: row;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -30px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -30px !important;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header {
		display: none;
	}
	.main-header-container {
		padding: 10px 0;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.animate {
		animation: none;
	}
	.line{
		display: none;
	}
	.logo-container img {
		position: relative;
		width: 80px;
		top: 0;
	}
	.pos-fixed  .logo-container img {
		width: 80px;
	}
		.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -35px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -35px !important;
	}
	.banner-sec {
		margin-top: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin: 100px 0 50px !important;
	}
	
}
/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}

@media screen and (min-width: 1424px) {

}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {

}

@media screen and (min-width: 2048px) {

}

@media screen and (min-width: 2550px) {

}



@media (min-width: 1025px) and (max-width: 1199px){

}