* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  color: #1a1c18;
  font-weight: 400;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #1a1c18;
  margin: 0;
  padding: 0;
}
p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #1a1c18;
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}
a,
button {
  font-family: "Poppins", sans-serif;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
a,
a:hover {
  text-decoration: none;
}
button {
  outline: none;
  font-family: "Poppins", sans-serif;
}
input,
textarea,
select {
  filter: none;
  font-family: "Poppins", sans-serif;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
  font-family: "Poppins", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

/* Header Style */

.header {
  position: relative;
  width: 100%;
  z-index: 99;
  padding: 0px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  /* padding: 3px 0px !important; */
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
}
.header-fixed .header-block a.logo {
  width: 80px;
}
.header .header-top {
  background-color: #60981c;
  padding: 5px;
  min-height: 32px;
  position: relative;
  z-index: 2;
}
.header-top .contact-info a,
.header-top .location-info p {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.5s ease;
}
.header-top .contact-info a:hover {
  color: #1a1c18;
}
.header-top .contact-info a:first-of-type {
  margin-right: 32px;
}
.header-top .contact-info a img,
.header-top .location-info p img {
  margin-right: 9px;
}
.header-top .location-info {
  text-align: right;
  padding-top: 2px;
}

.header .header-bottom {
  padding: 7px 0px;
  background-color: #fff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.header .header-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-block a.logo {
  width: 106px;
  display: block;
}
.header .header-block a img {
  width: 100%;
}
.header nav ul {
  display: flex;
  align-items: center;
}
.header nav ul li {
  margin-right: 16px;
  line-height: 16px;
  position: relative;
}
.header nav > ul > li:last-of-type {
  margin-right: 0;
}
.header nav > ul > li:last-of-type > a {
  background-color: #60981c;
  color: #fff;
}
.header nav ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #1a1c18;
  padding: 13px 16px;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.header nav ul li a:before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 0;
  background-color: #60981c;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.header nav ul li a:hover,
.header nav ul li.active a {
  color: #fff;
}
.header nav ul li a:hover::before {
  width: 100%;
}
.header nav ul li.active a::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #60981c;
}
.header nav ul li a span {
  display: inline-block;
  width: 9px;
  margin-left: 12px;
  transition: all 0.5s ease-in-out;
}
.header nav ul li a:focus span {
  transform: rotate(180deg);
}
.header nav ul li a:hover span img {
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

.header nav ul li .dropdown-menu {
  position: absolute;
  top: 54px;
  left: 0;
  border-radius: 0 0 5px 5px;
  width: 200px;
  margin: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  background: #fff;
  z-index: 3;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: none;
}
.header nav ul li .dropdown-menu.dropdown-Menu-show {
  display: block;
  transition: all 0.5s ease-in-out;
}
.header nav ul li .dropdown-menu li {
  margin: 0;
}
.header nav ul li .dropdown-menu li:not(:last-of-type) {
  border-bottom: 1px solid #e4e4e4;
}
.header nav ul li .dropdown-menu li a {
  display: inline-block;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  color: #1a1c18;
  padding: 12px 16px;
}
.header nav ul li .dropdown-menu li a:hover,
.header nav ul li .dropdown-menu li.active a {
  color: #fff;
}

.mobile-menu {
  position: absolute;
  top: 16px;
  right: 0px;
  display: none;
  border-radius: 4px;
  padding: 2px 0px;
  cursor: pointer;
}
.mobile-menu span {
  width: 22px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 0 auto;
  margin-bottom: 4px;
}
.mobile-menu span:last-of-type {
  margin-bottom: 0px;
}

/* Home Banner Styles */
.home-banner-area {
  position: relative;
  background-image: url(../images/banner-photo.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* min-height: 755px; */
  min-height: 655px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-content {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.banner-content h1 {
  color: #f4f9eb;
  font-size: 48px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 30px;
}
.banner-content h6 {
  color: #f4f9eb;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 35px;
  padding: 0px 6px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.banner-content h6:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 200px;
  height: 1px;
  background-color: rgba(194, 197, 188, 0.5);
  z-index: -2;
}
.banner-content h6:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 200px;
  height: 1px;
  background-color: rgba(194, 197, 188, 0.5);
  z-index: -1;
}
.banner-content p {
  color: #f4f9eb;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  max-width: 720px;
  margin: 0px auto 50px;
}
.btn-banner {
  width: 287px;
  height: 58px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
}
.btn-banner:hover {
  background-color: #48790c;
}

/* Service Styles */
.service-wrap {
  background-color: #60981c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
  margin-top: -65px;
  position: relative;
}
.service-wrap .service-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 25%;
  padding: 0 30px;
  min-height: 130px;
}
.service-wrap .service-content:not(:last-of-type) {
  border-right: 1px solid #47780c;
}
.service-content .image-content {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #47780d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-content h4 {
  width: calc(100% - 88px);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
}
/* About Us Styles */
.about-us-area {
  padding: 60px 0 70px;
}
.about-us-area .about-us-cont-top {
  text-align: center;
  max-width: 1030px;
  margin: 0 auto 40px;
}
.about-us-area .about-us-cont-bottom {
  position: relative;
  padding: 50px;
}
.about-us-area .about-us-cont-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  min-width: 825px;
  max-width: 825px;
  height: 410px;
  background-color: #f4f9eb;
  z-index: -1;
}
.about-us-area h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.about-us-area h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
  margin-bottom: 14px;
}
.about-us-area p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4f4f4f;
}
.about-us-area .btn-about {
  width: 200px;
  height: 48px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.about-us-area .btn-about:hover {
  background-color: #48790c;
}
.about-us-area .image-wrap {
  margin-top: 50px;
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}
.about-us-area .image-wrap img {
  width: 100%;
  object-fit: cover;
}

/* Offer Area Styles */
.offer-area {
  text-align: center;
}
.offer-top-cont {
  margin-bottom: 40px;
}
.offer-area h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.offer-area h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
}
.offer-bottom-cont {
  margin-bottom: 70px;
}
.offer-cont {
  background-color: #f4f9eb;
  position: relative;
  min-height: 385px;
  padding: 45px 20px 20px;
  transition: all 0.5s ease-in-out;
}
.offer-cont:hover {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}

.offer-cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 163px;
  height: 3px;
  background-color: #60981c;
  border-radius: 0 0 5px 5px;
  z-index: 1;
}
.offer-cont::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 163px;
  height: 3px;
  background-color: #60981c;
  border-radius: 5px 5px 0 0;
  z-index: 1;
}
.offer-cont .image-content {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #47780d;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-cont h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #60981c;
  letter-spacing: 0px;
  margin-bottom: 16px;
}
.offer-cont p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #4f4f4f;
}
.offer-cont p:not(:last-of-type) {
  margin-bottom: 16px;
}

/* Looking Area Styles */
.looking-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #60981c;
  padding: 32px 40px;
  margin-bottom: 70px;
}
.looking-wrap .left-block {
  width: calc(100% - 115px);
  max-width: 700px;
}
.looking-wrap .left-block h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
  color: #fff;
  margin-bottom: 16px;
}
.looking-wrap .left-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
.looking-wrap .right-block {
  width: fit-content;
}
.looking-wrap .btn-looking {
  width: 195px;
  height: 51px;
  text-align: center;
  background-color: #fff;
  color: #60981c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.looking-wrap .btn-looking:hover {
  background-color: #f1f1f1;
}

/* Features Area Styles */
.features-area {
  background-color: #f4f9eb;
  padding: 60px 0;
}
.features-top-cont {
  margin-bottom: 40px;
}
.features-area h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.features-area h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
  text-align: center;
}
.features-bottom-cont {
  margin-bottom: 70px;
}
.features-cont {
  background-color: #fff;
  position: relative;
  min-height: 326px;
  padding: 32px 20px 20px;
  transition: all 0.5s ease-in-out;
}
.features-cont:hover {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}
.features-cont .image-content {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #47780d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-cont h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #1a1c18;
  letter-spacing: 0px;
  margin-bottom: 16px;
  text-align: left;
}
.features-cont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4f4f4f;
}
.btn-features {
  width: 287px;
  height: 59px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}
.btn-features:hover {
  background-color: #48790c;
}

/* Client Area Styles */
.client-area {
  padding: 70px 0;
}
.client-top-cont {
  margin-bottom: 40px;
}
.client-area h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.client-area h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
  text-align: center;
}
.client-cont {
  background-color: #f4f9eb;
  position: relative;
  min-height: 228px;
  padding: 20px;
  transition: all 0.5s ease-in-out;
}
.client-cont:hover {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}
.client-cont p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #4f4f4f;
  margin-bottom: 24px;
}
.client-cont .info-wrap {
  display: flex;
  align-items: center;
}
.client-cont .info-details {
  width: calc(100% - 48px);
}
.client-cont .image-content {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-cont h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  color: #1a1c18;
  letter-spacing: 0px;
  margin-bottom: 4px;
  text-align: left;
}
.client-cont h5 {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #60981c;
  text-align: left;
  margin-bottom: 0px;
}

/* Blog Area Styles */
.blog-area {
  padding-bottom: 155px;
}
.blog-top-cont {
  margin-bottom: 40px;
}
.blog-area h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.blog-area h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
  text-align: center;
}
.blog-cont {
  margin-bottom: 20px;
}
.blog-cont .image-content {
  margin-bottom: 4px;
  overflow: hidden;
}
.blog-cont .image-content img {
  width: 100%;
  object-fit: cover;
}
.blog-cont .image-content:hover img {
  transform: scale(1.2);
}
.blog-cont h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #1a1c18;
  letter-spacing: 0px;
  margin-bottom: 4px;
  text-align: left;
}
.blog-cont h5 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #60981c;
  text-align: left;
  margin-bottom: 0px;
}
.blog-cont-left h4 {
  font-size: 24px;
  line-height: 30px;
}

/* Footer Styles */
.footer-top {
  background-color: #1a1c18;
  padding-bottom: 75px;
  border-bottom: 1px solid rgba(194, 197, 188, 0.5);
}
.question-wrap {
  position: relative;
  top: -85px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f4f9eb;
  padding: 48px 40px;
}
.question-wrap .left-block {
  width: calc(100% - 380px);
  max-width: 620px;
}
.question-wrap .left-block h5 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #1e0233;
  margin-bottom: 8px;
}
.question-wrap .left-block p {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #4f4f4f;
}
.question-wrap .right-block {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}
.question-wrap .btn-book {
  width: 210px;
  height: 48px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.question-wrap .btn-book:hover {
  background-color: #48790c;
}
.question-wrap .btn-touch {
  width: 130px;
  height: 48px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #60981c;
  color: #60981c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.question-wrap .btn-touch:hover {
  background-color: #60981c;
  color: #fff;
}
.footer-top a.logo {
  width: 150px;
  display: block;
}
.footer-top a img {
  width: 100%;
}
.social-block h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 38px;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f4f9eb;
  cursor: pointer;
}
.social-item a img {
  width: fit-content;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.social-item a:hover img {
  transform: scale(1.1);
}
.footer-nav h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #60981c;
  margin-bottom: 30px;
}
.footer-nav p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-top ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top ul li {
  font-size: 0;
}
.footer-top ul li a {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.footer-top ul li a:hover {
  color: #60981c;
}
.footer-top form {
  position: relative;
}
.footer-top .form-group {
  position: relative;
}
.footer-top .formcontrol-wrapper {
  position: relative;
}
.footer-top form input {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border-radius: 0px;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  border: none;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1a1c18;
}
.footer-top form input:focus {
  outline: none;
  box-shadow: none;
}
.footer-top form input::placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #939393;
}
.footer-top form button {
  background-color: #60981c;
  width: 104px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9f2f9;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  margin-top: 16px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.footer-top form button:hover {
  color: #f9f2f9;
  background-color: #48790c;
}
.footer-bottom {
  text-align: center;
  padding: 38px 14px 34px;
  background-color: #1a1c18;
}
.footer-bottom p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}

/* Common Header style */
.common-header-cont {
  margin-bottom: 56px;
}
.common-header-cont h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #60981c;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.common-header-cont h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #1a1c18;
  text-align: center;
}

/* about us page style */
.about-us-container {
  border-top: 1px solid #c2c5bc;
}

/* About Us Area style */
.about-us-container .about-us-block {
  padding: 50px 0 62px;
}
.about-us-container .about-us-block .row {
  align-items: flex-start;
}
.about-us-container .about-us-block .about-us-cont h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #1a1c18;
  letter-spacing: normal;
  max-width: 460px;
  margin-bottom: 20px;
}
.about-us-container .about-us-block .about-us-cont h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #60981c;
  letter-spacing: normal;
  max-width: 392px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
.about-us-container .about-us-block .about-us-cont h5:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #60981c;
}
.about-us-container .about-us-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4f4f4f;
}
.about-us-container .about-us-block .image-wrap {
  margin-top: 0px;
  box-shadow: rgba(100, 100, 111, 0.4) 0px 25px 25px 0px;
}
.about-us-container .about-us-block .image-wrap img {
  width: 100%;
  object-fit: cover;
}

/* Features Area Styles */
.about-us-container .features-area {
  background-color: transparent;
}
.about-us-container .features-cont {
  background-color: #f4f9eb;
  position: relative;
  min-height: 345px;
  padding: 32px 20px 20px;
  transition: all 0.5s ease-in-out;
}
.about-us-container .features-cont:hover {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}
.about-us-container .features-cont .image-content {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #47780d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-container .features-cont h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #1a1c18;
  letter-spacing: 0px;
  margin-bottom: 16px;
  text-align: left;
}
.about-us-container .features-cont p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4f4f4f;
}

/* How it works style */
.about-us-container .how-works-area {
  padding: 62px 0 155px;
}
.about-us-container .how-works-area .row {
  align-items: flex-start;
}
.about-us-container .how-works-area p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4f4f4f;
}
.about-us-container .how-works-area .image-wrap img {
  width: 100%;
  object-fit: cover;
}

/* Blog Styles */
.blog-container {
  border-top: 1px solid #c2c5bc;
}
.blog-container .blog-wrapper {
  padding: 50px 0px 155px;
}
.blog-container .single-blog-item {
  margin-bottom: 22px;
  cursor: pointer;
}
.blog-container .single-blog-photo {
  width: 100%;
  height: 132px;
  overflow: hidden;
}
.blog-container .single-blog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.blog-container .single-blog-item:hover img {
  transform: scale(1.2);
}
.blog-container .single-blog-content h5 {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  padding: 14px 0px 10px;
}
.blog-container .single-blog-content p {
  color: #60981c;
  font-size: 14px;
  font-weight: 500;
}
.blog-container .blog-button-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
}
.blog-container .blog-button-block .load-more {
  background-color: #60981c;
  width: 204px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.blog-container .blog-button-block .load-more:hover {
  background-color: #48790c;
}

/* Blog page style */
.blog-details-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 155px;
}
.blog-details-container .blog-page-left .blog-left-top-block h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #000;
  letter-spacing: normal;
  margin-bottom: 8px;
}
.blog-details-container .blog-page-left .blog-left-top-block h6 {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #60981c;
  letter-spacing: normal;
  margin-bottom: 12px;
}
.blog-details-container .blog-page-left .blog-left-top-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #4f4f4f;
  margin-bottom: 12px;
}
.blog-details-container .blog-page-left .blog-left-top-block h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #1a1c18;
  letter-spacing: normal;
  padding-left: 28px;
  position: relative;
  margin: 12px 0 20px;
}
.blog-details-container .blog-page-left .blog-left-top-block h5:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #60981c;
}
.blog-details-container .blog-page-left .blog-left-top-block .image-wrap {
  margin-bottom: 24px;
}
.blog-details-container .blog-page-left .blog-left-top-block .image-wrap img {
  width: 100%;
  object-fit: cover;
}
.blog-details-container .blog-page-left .social-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details-container .blog-page-left .social-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-details-container .blog-page-left .social-left p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #4f4f4f;
  border: 1px solid #ccceca;
  background-color: #f4f9eb;
  margin: 0;
  padding: 0 12px;
}
.blog-details-container .blog-page-left .social-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-details-container .blog-page-left .related-post-block h6 {
  color: #1a1c18;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin: 34px 0 24px;
  padding: 0px 6px;
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.blog-details-container .blog-page-left .related-post-block h6:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: calc(50% - 76px);
  height: 1px;
  background-color: #ccceca;
  z-index: -2;
}
.blog-details-container .blog-page-left .related-post-block h6:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: calc(50% - 76px);
  height: 1px;
  background-color: #ccceca;
  z-index: -1;
}
.blog-details-container .blog-page-left .related-post-block .image-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
}
.blog-details-container
  .blog-page-left
  .related-post-block
  .image-wrap:hover
  img {
  transform: scale(1.2);
}
.blog-details-container .blog-page-left .related-post-block .image-wrap img {
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.blog-details-container .blog-page-left .related-post-block h5 {
  color: #1a1c18;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  position: static;
  padding: 0;
}
.blog-details-container .blog-page-left .related-post-block p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #60981c;
  margin: 0;
}

.blog-details-container .blog-page-right {
  border: 1px solid #ccceca;
  padding: 20px;
  padding-bottom: 30px;
}
.blog-details-container .blog-page-right .form-block {
  position: relative;
  margin-bottom: 42px;
}
.blog-details-container .blog-page-right input {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border-radius: 0px;
  height: 48px;
  padding: 8px 16px;
  padding-right: 60px;
  border: 1px solid #ccceca;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1a1c18;
}
.blog-details-container .blog-page-right input:focus {
  outline: none;
  box-shadow: none;
}
.blog-details-container .blog-page-right input::placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #939393;
}
.blog-details-container .blog-page-right span {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #60981c;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.blog-details-container .blog-page-right span:hover {
  background-color: #48790c;
}
.blog-details-container .blog-page-right .latest-post-block {
  border-bottom: 1px solid #ccceca;
}
.blog-details-container .blog-page-right .latest-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.blog-details-container .blog-page-right .latest-post-header h5 {
  position: static;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
}
.blog-details-container .blog-page-right .latest-post-header a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #60981c;
}
.blog-details-container .blog-page-right .latest-post-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.blog-details-container .blog-page-right .latest-post-item .image-wrap {
  width: 64px;
  height: 64px;
}
.blog-details-container .blog-page-right .latest-post-item .image-wrap img {
  width: 100%;
  object-fit: cover;
}
.blog-details-container .blog-page-right .latest-post-item .right-block {
  width: calc(100% - 80px);
}
.blog-details-container .blog-page-right .latest-post-item .right-block h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #1a1c18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.blog-details-container .blog-page-right .latest-post-item .right-block p {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #4f4f4f;
}
.blog-details-container .blog-page-right .facebook-block {
  padding-bottom: 24px;
  border-bottom: 1px solid #ccceca;
}
.blog-details-container .blog-page-right .facebook-block h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
  margin: 24px 0 16px;
}
.blog-details-container .blog-page-right .facebook-block .image-cont {
  position: relative;
}
.blog-details-container .blog-page-right .facebook-block .image-wrap img {
  width: 100%;
  object-fit: cover;
}
.blog-details-container .blog-page-right .facebook-block .facebook-cont {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper
  .image-wrap {
  width: 56px;
  height: 56px;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper
  .image-wrap
  img {
  width: 100%;
  object-fit: cover;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper
  .right-block {
  width: calc(100% - 64px);
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper
  .right-block
  h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  .facebook-cont-upper
  .right-block
  p {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
}
.blog-details-container .blog-page-right .facebook-block .facebook-cont button {
  width: 106px;
  height: 28px;
  text-align: center;
  background-color: #1877f2;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.blog-details-container .blog-page-right .insta-block .btn-insta:hover {
  background-color: #0c5dc7;
}
.blog-details-container
  .blog-page-right
  .facebook-block
  .facebook-cont
  button
  img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.blog-details-container .blog-page-right .insta-block h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
  margin: 24px 0 16px;
}
.blog-details-container .blog-page-right .insta-block .row {
  margin: 0 -3px;
  gap: 6px 0;
}
.blog-details-container .blog-page-right .insta-block .col-4 {
  padding: 0 3px;
}
.blog-details-container .blog-page-right .insta-block .image-wrap img {
  width: 100%;
  object-fit: cover;
}
.blog-details-container .blog-page-right .insta-block .btn-insta {
  width: 200px;
  height: 45px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 0;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.blog-details-container .blog-page-right .insta-block .btn-insta:hover {
  background-color: #48790c;
}

/* Service page style */
.service-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 155px;
}
.service-container .service-block {
  padding-bottom: 60px;
}
.service-container .service-item {
  border: 1px dashed #c2c5bc;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.service-container .service-item p {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 600;
}
.service-container .service-repair-box {
  width: 100%;
  margin: 0 auto;
  background-color: #f4f9eb;
  padding: 40px 40px;
}
.service-container .service-repair-box h3 {
  color: #1a1c18;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 11px;
}
.service-container .service-repair-box p {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 34px;
}
.service-container .repait-form-group {
  position: relative;
  margin-bottom: 24px;
  /* max-width: 350px;
  width: 100%; */
}
.service-container .repait-form-group label {
  display: block;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.service-container .repait-form-group input {
  height: 43px;
  width: 100%;
  border: 1px solid #ccceca;
  background-color: #fff;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
}
.service-container .repait-form-group select {
  height: 43px;
  width: 100%;
  border: 1px solid #ccceca;
  background-color: #fff;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icons/dropdown-icon.svg);
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
}
.service-container .repait-form-group textarea {
  height: 120px;
  width: 100%;
  border: 1px solid #ccceca;
  background-color: #fff;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
  resize: none;
}
.service-container .repait-form-group input[type="password"] {
  padding-right: 42px;
}
.service-container .repait-form-group input::placeholder,
.service-container .repait-form-group textarea::placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.service-container .repait-form-group input::-webkit-placeholder,
.service-container .repait-form-group textarea::-webkit-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.service-container .repait-form-group input::-moz-placeholder,
.service-container .repait-form-group textarea::-moz-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.service-container .repait-form-group input::-ms-placeholder,
.service-container .repait-form-group textarea::-ms-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.service-container .repait-form-group a {
  position: absolute;
  right: 16px;
  top: 33px;
  cursor: pointer;
}
.service-container .service-button-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-container .service-button-block .btn-service {
  width: 85px;
  height: 43px;
  background-color: #60981c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.service-container .service-button-block .btn-service:hover {
  background-color: #48790c;
}
.service-container .service-button-block a {
  color: #60981c !important;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.service-container .service-button-block a:hover {
  color: #48790c !important;
}
/* .service-container .service-track-wrapper {
  padding: 0px 120px;
} */
.service-container .service-touch-box {
  border: 1px solid #ccceca;
  padding: 24px 20px;
}
.service-container .service-touch-box h3 {
  color: #1a1c18;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
}
.service-container .service-touch-item {
  background-color: #f4f9eb;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
}
.service-container .service-touch-item:not(:first-of-type) {
  margin-top: 16px;
}
.service-container .service-touch-item a {
  margin-right: 11px;
}
.service-container .service-touch-item h5 {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-top: 2px;
}
.service-container .service-touch-item p {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 400;
}
.service-container .service-touch-item p strong {
  font-weight: 600;
  margin-left: 4px;
}
.service-container .service-touch-item p:not(:first-of-type) {
  margin-top: 4px;
}
.modal-content {
  width: 480px;
  height: 445px;
  border: none;
  border-radius: 0px;
}
.modal-body {
  padding: 40px 54px;
}
.modal-body img {
  display: block;
  margin: 0 auto 20px;
}
.modal-body h4 {
  color: #1a1c18;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.modal-body p {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
}
.modal-body .tag-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f4f9eb;
  padding: 12px 24px;
  width: fit-content;
  margin: 20px auto 30px;
}
.modal-body .tag-copy p {
  color: #60981c;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
.modal-body .tag-copy .tag-img {
  cursor: pointer;
}
.modal-body .tag-copy .tag-img img {
  margin: 0;
}
.modal-body .btn-track {
  width: 138px;
  height: 43px;
  background-color: #60981c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}
.modal-body .btn-track:hover {
  background-color: #48790c;
}

/* Success Stories page style */
.stories-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 135px;
}
.stories-container .stories-item {
  background-color: #f4f9eb;
  padding: 24px 20px 20px 20px;
  margin-bottom: 24px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.stories-container .stories-item:hover {
  box-shadow: rgba(100, 100, 111, 0.3) 0px 10px 15px 0px;
}
.stories-container .stories-item h6 {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.stories-container .author-block {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stories-container .author-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.stories-container .author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stories-container .author-content p {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 600;
}
.stories-container .author-content span {
  display: block;
  color: #60981c;
  font-size: 12px;
  font-weight: 400;
}

/* Conatact Us page style */
.contact-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 135px;
}
.contact-container .map-block {
  width: 100%;
  height: 340px;
  margin-bottom: 32px;
}
.contact-container .map-block img {
  width: 100%;
  height: 100%;
}
.contact-container .contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-container .info-item {
  width: 47%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-container .info-item img {
  width: 40px;
}
.contact-container .info-item p {
  color: #1a1c18;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  word-break: break-all;
}
.contact-container .contact-form-group {
  position: relative;
  margin-bottom: 24px;
}
.contact-container .contact-form-group label {
  display: block;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-container .contact-form-group .formcontrol {
  height: 43px;
  width: 100%;
  border: 1px solid #ccceca;
  background-color: #fff;
  color: #1a1c18;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 10px;
}
.contact-container .contact-form-group textarea.formcontrol {
  height: 130px;
  resize: none;
  padding-top: 10px;
}
.contact-container .contact-form-group .formcontrol:focus {
  outline: none;
}
.contact-container .contact-form-group .formcontrol::placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.contact-container .contact-form-group .formcontrol::-webkit-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.contact-container .contact-form-group .formcontrol::-moz-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.contact-container .contact-form-group .formcontrol::-ms-placeholder {
  color: #939393;
  font-size: 14px;
  font-weight: 400;
}
.combind-group {
  display: flex;
}
.combind-group .contact-select-block {
  width: 60px;
}
.combind-group .contact-select-block select {
  border-right: 0px !important;
}
.combind-group .contact-input-block {
  width: calc(100% - 60px);
}
.combind-group .contact-input-block input {
  border-left: 0px !important;
}
.contact-container .contact-button-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-container .contact-button-block .btn-contact {
  width: 152px;
  height: 48px;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.contact-container .contact-button-block .btn-contact:hover {
  background-color: #48790c;
}

/* Track page style */
.track-order-container {
  border-top: 1px solid #c2c5bc;
}
.track-order-container .track-details {
  padding: 40px 0 50px;
}
.track-order-container .track-info {
  padding: 40px;
  background-color: #f4f9eb;
}
.track-info .image-wrap {
  position: relative;
}
.track-info .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track-info .productImageSlider .swiper-button-prev,
.track-info .productImageSlider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #60981c;
}
.track-info .productImageSlider .swiper-button-prev.swiper-button-disabled,
.track-info .productImageSlider .swiper-button-next.swiper-button-disabled {
  background-color: #ccceca;
}
.track-info .productImageSlider .swiper-button-prev:after,
.track-info .productImageSlider .swiper-button-next:after {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}
.track-info .image-wrap .top-block {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(79, 79, 79, 0.4);
  padding: 8px 13px;
  z-index: 2;
}
.track-info .image-wrap .bottom-block {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: rgba(79, 79, 79, 0.4);
  padding: 8px 13px;
  z-index: 2;
  display: flex;
  align-items: center;
}
.track-info .image-wrap .top-block p {
  color: #f4f9eb;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.track-info .image-wrap .bottom-block img {
  width: 20px;
}
.track-info .image-wrap .bottom-block h6 {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 5px;
}
.track-info .image-wrap .bottom-block span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1a1c18;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 8px;
}
.track-order-container .work-order-wrap {
  position: relative;
}
.track-order-container .progressbar-block {
  position: absolute;
  top: 0;
  right: 0;
}
.track-order-container .progress-bar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(closest-side, white 76%, transparent 76% 100%),
    conic-gradient(#60981c 56%, #d6e6c2 0);
}
.track-order-container .progress-bar progress {
  visibility: hidden;
  height: 0;
  width: 0;
}
.track-order-container .progress-bar p {
  color: #60981c;
  font-size: 13px;
  font-weight: 700;
  padding-top: 2px;
}
.track-order-container .work-order-wrap h4 {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.track-order-container .work-id {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.track-order-container .work-id h5 {
  color: #1e0233;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.track-order-container .work-id span {
  display: inline-block;
  color: #60981c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background-color: rgb(96, 152, 28, 0.2);
  padding: 8px 12px;
}
.track-order-container .work-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.track-order-container .work-item h6 {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.track-order-container .issue-text {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin: 30px 0 20px;
}
.track-order-container .issue-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-right: 60px;
}
.track-order-container .issue-items {
  display: flex;
  align-items: center;
  gap: 8px;
}
.track-order-container .issue-items p {
  color: #1a1c18;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.track-order-container .track-order {
  padding-bottom: 50px;
}
.track-order-container .track-wrap ul {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.track-order-container .track-wrap ul li {
  width: 0;
  flex-grow: 1;
  position: relative;
}
.track-order-container .track-wrap ul li:last-of-type {
  max-width: fit-content;
}
.track-order-container .track-wrap ul li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 100%;
  height: 1px;
  width: 1250px;
  background-color: #c2c5bc;
  z-index: -1;
}
.track-order-container .track-wrap ul li.active::before {
  background-color: #60981c;
  z-index: 1;
}
.track-order-container .track-wrap ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c2c5bc;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.track-order-container .track-wrap ul li.active span {
  font-size: 0;
  background-color: #60981c;
  background-image: url(../images/icons/icon-tick-order.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.track-order-container .track-wrap ul li h6 {
  color: #1a1c18;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.track-order-container .track-wrap ul li p {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.track-order-container .work-details {
  padding-bottom: 155px;
}
.track-order-container .work-details-wrap h5 {
  color: #1a1c18;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.track-order-container .work-details-wrap p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.track-order-container .btn-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.track-order-container .btn-edit {
  width: 219px;
  height: 48px;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.track-order-container .btn-edit:hover {
  background-color: #48790c;
}
.track-order-container .btn-cancel {
  width: 217px;
  height: 46px;
  background-color: #fff;
  color: #c70606;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c70606;
  cursor: pointer;
}
.track-order-container .btn-cancel:hover {
  color: #fff;
  background-color: #c70606;
}
.track-order-container .price-breakup-wrap {
  padding: 40px;
  background-color: #f4f9eb;
}
.track-order-container .price-breakup-wrap h5 {
  color: #1e0233;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}
.track-order-container .deatils-table-upper {
  width: 100%;
  border-bottom: 1px dashed #ccceca;
  padding-bottom: 8px;
}
.track-order-container .deatils-table-middle {
  width: 100%;
  border-bottom: 1px solid #ccceca;
}
.track-order-container .deatils-table-bottom {
  width: 100%;
}
.track-order-container .deatils-table-upper thead tr th:first-of-type,
.track-order-container .deatils-table-upper tbody tr td:first-of-type {
  width: 40%;
}
.track-order-container .deatils-table-upper thead tr th:nth-of-type(2),
.track-order-container .deatils-table-upper tbody tr td:nth-of-type(2) {
  width: 40%;
}
.track-order-container .deatils-table-upper thead tr th:last-of-type,
.track-order-container .deatils-table-upper tbody tr td:last-of-type {
  width: 20%;
}
.track-order-container .deatils-table-middle tbody tr td:first-of-type {
  width: 80%;
}
.track-order-container .deatils-table-middle tbody tr td:last-of-type {
  width: 20%;
}

.track-order-container .deatils-table-upper h6 {
  color: #1a1c18;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.track-order-container .deatils-table-upper p,
.track-order-container .deatils-table-middle p {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.track-order-container .deatils-table-upper tbody tr:last-of-type p,
.track-order-container .deatils-table-middle tbody tr:last-of-type p {
  margin-bottom: 20px;
}
.track-order-container .deatils-table-middle tbody tr:first-of-type p {
  margin-top: 20px;
}
.track-order-container .deatils-table-bottom tbody tr td p {
  color: #60981c;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding-right: 70px;
  text-align: right;
  margin-top: 20px;
}
.track-order-container .total-order-wrap {
  padding: 16px 20px;
  background-color: #60981c;
  margin-top: 30px;
}
.track-order-container .total-order-wrap p {
  color: #f4f9eb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
.track-order-container .total-order-wrap h6 {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #ccceca;
}
.track-order-container .total-order-wrap h6 span {
  font-size: 14px;
}
.track-order-container .estimate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.track-order-container .estimate-item h6 {
  color: #f4f9eb;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0;
  border: none;
}
.track-order-container .estimate-item h6 span {
  font-weight: 600;
}

/* Data Recovery Styles */
.data-recovery-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 155px;
}
.data-recovery-container .storage-block {
  text-align: center;
}
.data-recovery-container .storage-block .storage-image {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-recovery-container .storage-block h6 {
  color: #1a1c18;
  font-size: 16px;
  font-weight: 600;
}
.data-recovery-container .storage-area .swiper-button-prev,
.data-recovery-container .storage-area .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #60981c;
}
.data-recovery-container
  .storage-area
  .swiper-button-prev.swiper-button-disabled,
.data-recovery-container
  .storage-area
  .swiper-button-next.swiper-button-disabled {
  background-color: #ccceca;
}
.data-recovery-container .storage-area .swiper-button-prev:after,
.data-recovery-container .storage-area .swiper-button-next:after {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.data-recovery-container .hard-drive-wrapper {
  padding: 75px 0px;
}
.data-recovery-container .hard-drive-photo-block {
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-recovery-container .hard-drive-content-block h3 {
  color: #1a1c18;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 20px;
}
.data-recovery-container .hard-drive-content-block h3 span {
  display: block;
}
.data-recovery-container .hard-drive-content-block p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}
.data-recovery-container .hard-drive-button {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}
.data-recovery-container .btn-quote {
  width: 185px;
  height: 48px;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.data-recovery-container .btn-quote:hover {
  background-color: #48790c;
}
.data-recovery-container .btn-find-more {
  width: calc(100% - 200px);
  height: 48px;
  border: 2px solid #60981c;
  background-color: transparent;
  color: #60981c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.data-recovery-container .btn-find-more:hover {
  background-color: #48790c;
  color: #fff;
}
.data-recovery-container .manufacture-wrapper {
  padding-top: 140px;
}
.data-recovery-container .manufacture-content h3 {
  color: #1a1c18;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.data-recovery-container .manufacture-content p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}
.data-recovery-container .manufacture-block .manufacture-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
}
.data-recovery-container .manufacture-area .swiper-button-prev,
.data-recovery-container .manufacture-area .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #60981c;
}
.data-recovery-container
  .manufacture-area
  .swiper-button-prev.swiper-button-disabled,
.data-recovery-container
  .manufacture-area
  .swiper-button-next.swiper-button-disabled {
  background-color: #ccceca;
}
.data-recovery-container .manufacture-area .swiper-button-prev:after,
.data-recovery-container .manufacture-area .swiper-button-next:after {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.data-recovery-container .cleanmoon-content h4 {
  color: #1a1c18;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.data-recovery-container .cleanmoon-content p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 45px;
}
.data-recovery-container .cleanmoon-photo img {
  width: 100%;
}
.data-recovery-container .cleanmoon-content-below {
  margin-top: 45px;
}
.data-recovery-container .cleanmoon-content-below p {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
}

/* Categories page style */
.product-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 135px;
}
.categories-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 135px;
}
.categories-container .sidenav {
  padding: 20px;
  border: 1px solid #ccceca;
}
.categories-container .sidenav .form-block {
  position: relative;
  margin-bottom: 25px;
}
.categories-container .sidenav input {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border-radius: 0px;
  height: 48px;
  padding: 8px 16px;
  padding-right: 60px;
  border: 1px solid #ccceca;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #1a1c18;
}
.categories-container .sidenav input:focus {
  outline: none;
  box-shadow: none;
}
.categories-container .sidenav input::placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #939393;
}
.categories-container .sidenav span {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #60981c;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.categories-container .sidenav span:hover {
  background-color: #48790c;
}
.categories-container .list-categories .list-categories-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-right: 9px;
}
.categories-container .list-categories li {
  padding: 17px 0;
}
.categories-container .list-categories li:not(:last-of-type) {
  border-bottom: 1px solid #ccceca;
}
.categories-container .list-categories .list-categories-item h6 {
  width: calc(100% - 12px);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1a1c18;
  padding-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.categories-container .list-categories .list-categories-item:hover h6 {
  color: #60981c;
}
.categories-container .list-categories .list-categories-item h6:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 17px;
  background-color: #60981c;
}
.categories-container .category-slider {
  margin-bottom: 30px;
}
.categories-container .category-slider figure {
  margin: 0;
  padding: 0;
}
.categories-container .category-slider figure img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
}
.categories-container .swiper-horizontal > .swiper-pagination-bullets,
.categories-container .swiper-pagination-bullets.swiper-pagination-horizontal,
.categories-container .swiper-pagination-custom,
.categories-container .swiper-pagination-fraction {
  bottom: 12px !important;
}
.categories-container .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  opacity: 1;
  margin: 0 7px !important;
  position: relative;
}
.categories-container .swiper-pagination-bullet-active {
  background: #fff;
}
.categories-container .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.categories-container .categories-content-area .top-deals-row {
  margin-bottom: 56px;
}
.categories-container
  .categories-content-area
  .top-deals-row
  .top-deals-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  color: #1a1c18;
  margin-bottom: 40px;
}
.categories-container .categories-content-area .row {
  gap: 20px 0;
  justify-content: center;
}
.categories-container .product-items {
  padding: 16px;
  padding-bottom: 26px;
  border: 1px solid #ccceca;
}
.categories-container .product-items .image-content {
  overflow: hidden;
  background-color: #f3f3f3;
  margin-bottom: 11px;
}
.categories-container .product-items .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories-container .product-items h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1a1c18;
  margin-bottom: 4px;
}
.categories-container .product-items p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 10px;
}
.categories-container .product-items .star-block {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.categories-container .product-items .star-block ul {
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.categories-container .product-items .star-block ul li {
  cursor: pointer;
  font-size: 0;
}
.categories-container .product-items .star-block p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 0px;
  padding-top: 2px;
}
.categories-container .product-items .price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.categories-container .product-items .price-block h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #60981c;
  margin-bottom: 0px;
}
.categories-container .product-items .price-block h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4f4f4f;
  text-decoration: line-through;
  margin: 0;
}
.categories-container .product-items .button-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.categories-container .product-items .button-block .btn-quick {
  width: 106px;
  height: 48px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.categories-container .product-items .button-block .btn-quick:hover {
  background-color: #48790c;
}
.categories-container .product-items .button-block .btn-cart {
  width: 109px;
  height: 48px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #60981c;
  color: #60981c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.categories-container .product-items .button-block .btn-cart:hover {
  background-color: #60981c;
  color: #fff;
}
.categories-container .todays-deal {
  border: 1px solid #ccceca;
  margin-bottom: 70px;
}
.categories-container .topblock {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.categories-container .topblock .image-content {
  width: 362px;
  overflow: hidden;
  position: relative;
}
.categories-container .topblock .image-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.categories-container .topblock .image-content .badge-block {
  position: absolute;
  top: 0;
  left: 10px;
  background-color: #4f4f4f;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #fff;
  padding: 11px 13px;
  z-index: 1;
}
.categories-container .topblock .item-description {
  width: calc(100% - 392px);
  padding-left: 68px;
  padding-right: 46px;
  position: relative;
}
.categories-container .topblock .item-description .discount-block {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #60981c;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories-container .topblock .item-description .discount-block h6 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #fff;
}
.categories-container .item-description h4 {
  padding-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1a1c18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}
.categories-container .item-description .star-block {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.categories-container .item-description .star-block ul {
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.categories-container .item-description .star-block ul li {
  cursor: pointer;
  font-size: 0;
}
.categories-container .item-description .star-block p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 0px;
  padding-top: 2px;
}
.categories-container .item-description .price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.categories-container .item-description .price-block h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #60981c;
  padding: 0;
  margin-bottom: 0px;
}
.categories-container .item-description .price-block h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4f4f4f;
  text-decoration: line-through;
}
.categories-container .item-description .counter-block {
  display: flex;
  align-items: center;
  gap: 18px;
}
.categories-container .item-description .counter-items span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #ccceca;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  color: #1a1c18;
  margin-bottom: 8px;
}
.categories-container .item-description .counter-items p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  text-align: center;
}
.categories-container .bottomblock {
  padding: 0 4px 34px;
}
.categories-container .discount-items-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 0;
}
.categories-container .discount-items {
  padding: 0 18px;
  width: 20%;
}
.categories-container .discount-items-block .image-content {
  overflow: hidden;
  position: relative;
  border: 1px solid #ccceca;
  padding: 12px 24px;
  margin-bottom: 16px;
}
.categories-container .discount-items-block .image-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.categories-container .discount-items-block .image-content .discount-info {
  position: absolute;
  top: 13px;
  left: 13px;
  background-color: #60981c;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories-container .discount-items-block .image-content .discount-info h6 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #fff;
}
.categories-container .discount-items-block p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #4f4f4f;
  text-align: center;
}
.categories-container .bottom-deals-row h5 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  color: #1a1c18;
  margin-bottom: 40px;
  text-align: center;
}
.categories-container .deals-box {
  border: 1px solid #ccceca;
}
.categories-container .deals-box .image-content {
  overflow: hidden;
  padding: 15px 26px 11px;
}
.categories-container .deals-box .image-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.categories-container .deals-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1a1c18;
  text-align: center;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Product Listing page style */
.product-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 135px;
}
.product-container .sidenav {
  padding: 20px;
  border: 1px solid #ccceca;
}
.product-container .sidenav .sidenav-item-block {
  margin-bottom: 17px;
}
.product-container .sidenav .sidenav-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1a1c18;
  margin-bottom: 10px;
}
.product-container .sidenav .sidenav-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #4f4f4f;
}
.product-container .sidenav .sidenav-text:not(:first-of-type) {
  margin-top: 6px;
}
.product-container .sidenav .star-block {
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-container .sidenav .star-block ul {
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.product-container .sidenav .star-block ul li {
  cursor: pointer;
  font-size: 0;
}
.product-container .sidenav .star-block p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 0px;
  padding-top: 2px;
}
.product-container .sidenav .custom-checkbox {
  user-select: none;
}
.product-container .sidenav .custom-checkbox:not(:first-of-type) {
  margin-top: 12px;
}
.product-container .sidenav input[type="checkbox"] {
  position: relative;
  border: 1px solid #4f4f4f;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
}
.product-container .sidenav input[type="checkbox"]:checked {
  background-color: #60981c;
  border-color: #60981c;
}
.product-container .sidenav input[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 7px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.product-container .sidenav label {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #4f4f4f;
  cursor: pointer;
  width: fit-content;
}
.product-container .sidenav .see-more-block {
  margin-top: 20px;
}
.product-container .sidenav .see-more-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #60981c;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.product-container .sidenav .see-more-block a:hover {
  color: #47780c;
}
.product-container .sidenav .see-more-block a img {
  margin-right: 10px;
}
.product-container .sidenav .price-range-block h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1a1c18;
  margin-bottom: 15px;
}
.product-container .product-top-content {
  display: flex;
  align-items: stretch;
  margin-bottom: 38px;
}
.product-container .product-top-content .big-image-content,
.product-container .product-top-content .product-items {
  width: 50%;
}
.product-container .product-top-content .big-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-container .product-top-content .product-items {
  border: none;
  padding: 0;
  box-shadow: 4px 3px 12px 0px rgb(0 0 0 / 10%);
}
.product-container .product-top-content .product-items .image-content {
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f3f3f3;
  width: 100%;
  height: calc(100% - 100px);
  margin: 0;
}
.product-container .product-top-content .product-items .image-content img {
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.product-container .product-top-content .product-items .product-details {
  padding: 14px 17px;
}
.product-container .product-top-content .product-items p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-container .product-top-content .product-items .star-block {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.product-container .product-top-content .product-items .star-block ul {
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.product-container .product-top-content .product-items .star-block ul li {
  cursor: pointer;
  font-size: 0;
}
.product-container .product-top-content .product-items .star-block p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 0px;
  padding-top: 2px;
}
.product-container .product-content-area .product-row .product-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  color: #1a1c18;
  margin-bottom: 8px;
}
.product-container .product-content-area .product-row .product-heading-deatils {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #4f4f4f;
  margin-bottom: 50px;
}
.product-container .product-content-area .row {
  gap: 20px 0;
  justify-content: center;
}
.product-container .product-items {
  padding: 16px;
  padding-bottom: 26px;
  border: 1px solid #ccceca;
}
.product-container .product-items .image-content {
  overflow: hidden;
  background-color: #f3f3f3;
  margin-bottom: 20px;
  position: relative;
}
.product-container .product-items .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-container .product-items .image-content .badge-block {
  position: absolute;
  top: 12px;
  left: 10px;
  background-color: #4f4f4f;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #fff;
  padding: 3px 8px;
  z-index: 1;
}
.product-container .product-items h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #1a1c18;
  margin-bottom: 4px;
}
.product-container .product-items p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 10px;
}
.product-container .product-items .star-block {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.product-container .product-items .star-block ul {
  display: flex;
  align-items: center;
  gap: 1.5px;
}
.product-container .product-items .star-block ul li {
  cursor: pointer;
  font-size: 0;
}
.product-container .product-items .star-block p {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #4f4f4f;
  margin-bottom: 0px;
  padding-top: 2px;
}
.product-container .product-items .price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding-top: 6px;
}
.product-container .product-items .price-block h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #60981c;
  margin-bottom: 0px;
}
.product-container .product-items .price-block h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4f4f4f;
  text-decoration: line-through;
  margin: 0;
}
.product-container .product-items .button-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-container .product-items .button-block .btn-quick {
  width: 106px;
  height: 48px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.product-container .product-items .button-block .btn-quick:hover {
  background-color: #48790c;
}
.product-container .product-items .button-block .btn-cart {
  width: 109px;
  height: 48px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #60981c;
  color: #60981c;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.product-container .product-items .button-block .btn-cart:hover {
  background-color: #60981c;
  color: #fff;
}
.product-container .pagination-area ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: fit-content;
  margin: 95px auto 20px;
}
.product-container .pagination-area ul .navigate-btn {
  width: 40px;
  height: 40px;
  background-color: #60981c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.product-container .pagination-area ul .navigate-btn:hover {
  background-color: #47780c;
}
.product-container .pagination-area ul .navigate-btn.disabled {
  cursor: default;
  pointer-events: none;
  background-color: #ccceca;
}
.product-container .pagination-area ul .pagination-btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4f4f4f;
  transition: all 0.5s ease-in-out;
}
.product-container .pagination-area ul .pagination-btn:hover {
  color: #1e0233;
}
.product-container .pagination-area ul .pgnt-num {
  padding: 7px 17px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
}
.product-container .pagination-area ul .pgnt-num:hover,
.product-container .pagination-area ul .pgnt-num.active {
  color: #4f4f4f;
  border-color: #4f4f4f;
}
.product-container .pagination-area ul .pagination-btn.more-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #939393;
  padding: 1px 21px 1px 5px;
  transition: all 0.5s ease-in-out;
}
.product-container .pagination-area ul .pagination-btn.more-pages:hover {
  color: #1e0233;
}
.product-container .pagination-area ul .pagination-btn.more-pages svg {
  margin-right: 10px;
}
.product-container .pagination-area ul .pagination-btn.more-pages::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-right: 1px solid #ccceca;
}

/* range slider */
.product-container .slider {
  position: relative;
}
.product-container .slider .slide {
  background: #60981c;
  height: 4px;
  width: 80px;
  position: absolute;
  left: 0;
  top: 13px;
  z-index: 2;
}
.product-container .slider input[type="range"] {
  position: relative;
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #ccceca;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.product-container .slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border: 6px solid #60981c;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.product-container .slider input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 6px solid #60981c;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

/* Order Work List */
.order-list-container {
  border-top: 1px solid #c2c5bc;
  padding: 50px 0 155px;
}

.work-list-button {
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-list-container .btn-yes {
  width: 60px;
  height: 30px;
  text-align: center;
  background-color: #60981c;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.order-list-container .btn-yes:hover {
  background-color: #48790c;
}
.order-list-container .btn-no {
  width: 60px;
  height: 30px;
  text-align: center;
  background-color: transparent;
  border: 2px solid #60981c;
  color: #60981c;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.order-list-container .btn-no:hover {
  background-color: #60981c;
  color: #fff;
}

.order-list-container .pagination {
  margin-top: 20px;
  display: inline-block;
  float: right;
  clear: both;
}
.order-list-container .pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
}
.order-list-container .pagination a.active {
  background-color: #60981c;
  color: white;
  border: 1px solid #60981c;
}
.order-list-container .pagination a:hover:not(.active) {
  background-color: #60981c;
  color: white;
}
.order-list-container .pagination a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.order-list-container .pagination a:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
