/*--------------------------------------------------------------
  TABLE OF CONTENTS:
----------------------------------------------------------------

** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Project
** - Project Details
** - Video
** - Funfact
** - Team
** - Team Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map

--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --farmology-font: "Poppins", sans-serif;
  --farmology-font-two: "Outfit", sans-serif;
  --farmology-font-three: "Caveat", cursive;
  --farmology-gray: #68584b;
  --farmology-gray-rgb: 104, 88, 75;
  --farmology-base: #f5cb4b;
  --farmology-base-rgb: 245, 203, 75;
  --farmology-black: #190f06;
  --farmology-black-rgb: 25, 15, 6;
  --farmology-extra: #442c26;
  --farmology-extra-rgb: 68, 44, 38;
  --farmology-primary: #f6f2e4;
  --farmology-primary-rgb: 246, 242, 228;
  --farmology-secondary: #388E3C;
  --farmology-secondary-rgb: 56, 142, 60;
  --farmology-white: #ffffff;
  --farmology-white-rgb: 255, 255, 255;
  --farmology-bdr-radius: 5px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--farmology-font);
  color: var(--farmology-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--farmology-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--farmology-font-two);
  color: var(--farmology-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}

#particles-js-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.2;
  z-index: -1;
}



/*** chat popup ***/

.chat-popup {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 350px;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  background: var(--farmology-black);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(-100%);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.chat-popup.popup-visible {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.chat-popup .popup-inner {
  position: relative;
  display: block;
  padding: 40px 35px;
  padding-top: 32px;
}

.chat-popup .close-chat {
  position: absolute;
  display: flex;
  left: 0px;
  top: -55px;
  width: 60px;
  height: 55px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: var(--farmology-base);
  cursor: pointer;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chat-popup .popup-inner p {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .70);
}

.chat-popup .chat-form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.chat-popup .chat-form .form-group:last-child {
  margin-bottom: 0px;
}

.chat-popup .chat-form .form-group input[type='text'],
.chat-popup .chat-form .form-group input[type='email'],
.chat-popup .chat-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .70);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, .10);
  transition: all 500ms ease;
}

.chat-popup .chat-form .form-group textarea {
  height: 120px;
  resize: none;
}

.chat-popup .chat-form .form-group input:focus,
.chat-popup .chat-form .form-group textarea:focus {
  outline: none;
}

.chat-popup .chat-form .form-group button {
  border: none;
}

.chat-popup .chat-form .form-group .thm-btn:hover {
  color: var(--farmology-extra);
}

.chat-icon {
  position: fixed;
  display: inline-block;
  left: 30px;
  bottom: 45px;
  z-index: 99;
}

.chat-icon button {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 47px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--farmology-base);
  z-index: 1;
  border: none;
}

.chat-icon button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(var(--farmology-base-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}



/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  transform: translateX(0%);
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--farmology-base);
  border-color: var(--farmology-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--farmology-white-rgb), .50);
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  background-color: var(--farmology-black);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: rgba(var(--farmology-white-rgb), .70);
  border: none;
  border-radius: var(--farmology-bdr-radius);
  outline: none;
  transition: all 500ms ease;
  background-color: rgba(var(--farmology-white-rgb), .05);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  border: none;
  background-color: var(--farmology-base);
  color: var(--farmology-black);
}

.xs-sidebar-group .content-inner .form-inner .form-group button .hover-btn {
  background-color: var(--farmology-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--farmology-black);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--farmology-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--farmology-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--farmology-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--farmology-white-rgb), .10);
  border-radius: 50%;
  color: var(--farmology-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--farmology-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--farmology-white);
}


/*=============== scrollbar-Css =============*/

.xs-sidebar-widget {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.xs-sidebar-widget::-webkit-scrollbar {
  display: none;
}



.mobile-nav__content {
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  -ms-overflow-style: auto;
}

.mobile-nav__content::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav__content::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

.mobile-nav__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}




/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--farmology-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--farmology-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--farmology-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}

.preloader {
  width: 60px;
  height: 60px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--farmology-base);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*--- End of Preloader ---*/


/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--farmology-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--farmology-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--farmology-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}






/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--farmology-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--farmology-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--farmology-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--farmology-black);
  text-align: center;
  font-size: 20px;
  color: var(--farmology-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--farmology-secondary);
  color: var(--farmology-black);
}

.search-popup input::placeholder {
  color: var(--farmology-black);
}
















/* Section Title Css */
.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 49px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.section-title__tagline {
  position: relative;
  display: block;
  font-family: var(--farmology-font);
  color: var(--farmology-extra);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}

.section-title__shape-1 {
  position: relative;
  display: block;
  top: -1px;
}

.section-title__shape-1 img {
  width: auto;
}

.section-title__title {
  font-size: 44px;
  line-height: 1.2em;
  font-weight: 700;
}

.section-title__title span {
  color: var(--farmology-base);
}




/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--farmology-base);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  padding: 12px 30px 12px;
  overflow: hidden;
  font-family: var(--farmology-font);
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--farmology-extra);
}

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--farmology-base);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 26%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px 55px 5px;
  background-color: var(--farmology-extra);
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--farmology-white-rgb), .30);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 18px;
  color: var(--farmology-white);
  position: relative;
  display: inline-block;
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-white);
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--farmology-base);
}

.main-menu__top-welcome-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-white);
  text-transform: capitalize;
  font-family: var(--farmology-font-two);
  line-height: 1em;
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__social-title {
  font-size: 16px;
  color: var(--farmology-white);
  font-weight: 500;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--farmology-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--farmology-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--farmology-base);
  border: 1px solid var(--farmology-white);
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--farmology-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu__social a+a {
  margin-left: 5px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  background-color: rgba(var(--farmology-white-rgb), .05);
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 25px 0;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  color: var(--farmology-extra);
  font-size: 18px;
  top: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-content {
  position: relative;
  display: block;
  top: 3px;
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-gray);
  line-height: 16px;
  text-transform: capitalize;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu__call-number a {
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--farmology-base);
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7.5px 0;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--farmology-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--farmology-base);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 11px;
  height: 45px;
  width: 45px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 15px;
  height: 3px;
  background-color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
  width: 22px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--farmology-extra);
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 18px;
  height: 3px;
  background-color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
  width: 22px;
}

.main-menu__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}





.stricky-header.main-menu {
  background-color: var(--farmology-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--farmology-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 20px;
  font-family: var(--farmology-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--farmology-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--farmology-base);
  position: absolute;
  bottom: -3px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 60%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--farmology-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--farmology-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--farmology-white);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--farmology-black-rgb), 0.10);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--farmology-black-rgb), 1);
  font-size: 17px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--farmology-font-two);
  text-transform: capitalize;
  padding: 16px 0px 16px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li.current>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li.current>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a {
  color: rgba(var(--farmology-base-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--farmology-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li.current>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.current>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.current>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--farmology-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--farmology-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--farmology-extra);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--farmology-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--farmology-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--farmology-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--farmology-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--farmology-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--farmology-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--farmology-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--farmology-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--farmology-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--farmology-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--farmology-white-rgb), .10);
  border-radius: 50%;
  -webkit-transition: 500ms;
  transition: 500ms;
  z-index: 1;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--farmology-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.mobile-nav__social a:hover::after {
  transform: scale(1.0);
  opacity: 1;
}

.mobile-nav__social a:hover {
  color: var(--farmology-white);
  border: 1px solid rgba(var(--farmology-base-rgb), 1);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--farmology-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--farmology-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--farmology-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -25px;
  margin-bottom: -25px;
}

.home-showcase__inner {
  padding: 30px 30px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  justify-content: center;
}

.home-showcase .row .col-lg-3 {
  width: 20%;
}

.home-showcase__item {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--farmology-black-rgb), .15);
  padding: 10px 10px 18px;
  border-radius: var(--farmology-bdr-radius);
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 0, 0, 0.10);
  padding: 1px;
  border-radius: var(--farmology-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
  border-radius: var(--farmology-bdr-radius);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.70;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1.0;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -moz-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -o-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #222222), color-stop(100, #222222));
  background-image: -webkit-linear-gradient(left, #222222 0%, #222222 100%);
  background-image: linear-gradient(to right, #222222 0%, #222222 100%);

  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.90;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 12px 10px 12px;
  width: 150px;
  text-align: center;
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.home-showcase__buttons__item .hover-btn {
  background-color: var(--farmology-white);
}

.home-showcase__buttons__item:hover {
  color: var(--farmology-extra);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  color: var(--farmology-black);
  margin-top: 17px;
  text-transform: capitalize;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--farmology-white, #ffffff);
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__top {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 20px 7.5px;
  background-color: var(--farmology-base);
  z-index: 1;
}

.main-menu-two__top-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--farmology-white-rgb), .10);
  z-index: -1;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--farmology-black-rgb), .20);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 18px;
  color: var(--farmology-black);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--farmology-black);
  line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--farmology-black);
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--farmology-black);
}

.main-menu-two__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--farmology-black);
  line-height: 16px;
  margin-left: 10px;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--farmology-black-rgb), .40);
  border-radius: 50%;
  font-size: 14px;
  color: var(--farmology-extra);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--farmology-base);
  border: 1px solid var(--farmology-black);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--farmology-black);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 0;
  background-color: rgba(var(--farmology-white-rgb), 0.08);
}

.main-menu-two__left {
  position: relative;
  display: block;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 25px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px 0;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.main-menu-two__search:hover {
  color: var(--farmology-base);
}

.main-menu-two__cart {
  position: relative;
  display: block;
}

.main-menu-two__cart a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart a:hover {
  color: var(--farmology-base);
}

.main-menu-two__cart-count {
  position: absolute;
  top: -16px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart a:hover .main-menu-two__cart-count {
  color: var(--farmology-black);
}

.main-menu-two__user {
  position: relative;
  display: block;
}

.main-menu-two__user a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__user a:hover {
  color: var(--farmology-base);
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-menu-two__btn-box .thm-btn {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.main-menu-two__btn-box .thm-btn .hover-btn {
  background-color: var(--farmology-white);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--farmology-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--farmology-base);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--farmology-white);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--farmology-base);
}


.stricky-header.main-menu-two {
  background-color: var(--farmology-extra);
}

.stricky-header .main-menu-two__wrapper-inner {
  padding: 0 0px 0;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__top {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  z-index: 5;
}

.main-menu-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 7.5px 0px 7.5px;
  z-index: 1;
}

.main-menu-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__top-menu li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: -10px;
  bottom: 6px;
  width: 1px;
  background-color: var(--farmology-white);
  transform: rotate(15deg);
}

.main-menu-three__top-menu li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li+li {
  margin-left: 46px;
}

.main-menu-three__contact-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--farmology-white-rgb), .20);
}

.main-menu-three__contact-list li:first-child:before {
  display: none;
}

.main-menu-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__contact-list li .icon i {
  font-size: 16px;
  color: var(--farmology-white);
}

.main-menu-three__contact-list li .text {
  margin-left: 10px;
}

.main-menu-three__contact-list li .text p {
  font-size: 16px;
  color: var(--farmology-white);
}

.main-menu-three__contact-list li .text p a {
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__contact-list li .text p a:hover {
  color: var(--farmology-base);
}

.main-menu-three__top-text {
  color: var(--farmology-white);
}

.main-menu-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 19px;
  margin-right: 12px;
}

.main-menu-three__language-switcher::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: var(--farmology-white);
  content: "";
  opacity: .20;
}

.main-menu-three__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 12px;
}

.main-menu-three__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--farmology-white);
  font-size: 18px;
  line-height: 18px;
}

.main-menu-three__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 48px;
}

.main-menu-three__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-menu-three__language-switcher .nice-select {
  background-color: var(--farmology-extra);
  border-radius: 0px;
  color: var(--farmology-white);
  font-size: 16px;
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--farmology-font);
}

.main-menu-three__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -6px;
  border-bottom: 1px solid var(--farmology-white);
  border-right: 1px solid var(--farmology-white);
}

.main-menu-three__language-switcher .nice-select .list {
  width: 65px;
  background-color: var(--farmology-base);
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid rgba(var(--farmology-white-rgb), .20);
  border-radius: 50%;
  font-size: 14px;
  color: var(--farmology-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-three__social a:hover {
  color: var(--farmology-base);
  border: 1px solid var(--farmology-white);
}

.main-menu-three__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--farmology-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-three__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-three__social a+a {
  margin-left: 10px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__logo {
  display: block;
  padding: 25px 0;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-three__right-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0 18px;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--farmology-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--farmology-base);
}


.main-menu-three__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}


.stricky-header.main-menu-three {
  background-color: var(--farmology-white);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-four__top {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 5px 0;
  z-index: 5;
}

.main-header-four__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-header-four__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header-four__top-social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.main-header-four__top-social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--farmology-extra);
  border-radius: 50%;
  font-size: 17px;
  height: 38px;
  width: 38px;
  border: 1px solid rgba(var(--farmology-black-rgb), 1);
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-header-four__top-social a:hover {
  color: var(--farmology-extra);
  border: 1px solid var(--farmology-base);
}

.main-header-four__top-social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: scale(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.main-header-four__top-social a:hover:before {
  transform: scaleX(1.0);
}

.main-header-four__top-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 40px;
  margin-right: 40px;
}

.main-header-four__top-menu li {
  position: relative;
  display: block;
}

.main-header-four__top-menu li:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 4px;
  left: -14px;
  width: 1px;
  background-color: rgba(var(--farmology-extra-rgb), .30);
}

.main-header-four__top-menu li:first-child:before {
  display: none;
}

.main-header-four__top-menu li a {
  font-size: 16px;
  color: var(--farmology-extra);
  font-weight: 500;
}

.main-header-four__top-menu li a:hover {
  color: var(--farmology-base);
}

.header-logon-box {
  position: relative;
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
}

.header-logon-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-black);
  font-size: 18px;
  font-weight: 700;
}

.header-logon-box .select-box {
  position: relative;
  display: block;
  width: 60px;
}

.header-logon-box .nice-select {
  position: relative;
  display: block;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  width: 100%;
  height: 35px;
  color: var(--farmology-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  transition: all 0.2s ease-in-out;
  padding: 0px 0;
}

.header-logon-box .nice-select:after {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  color: var(--farmology-black);
  font-size: 14px;
  top: 0px;
  right: 0px;
  margin: 0px;
  font-weight: 600;
  border: none !important;
  transform: rotate(0deg) !important;
}

.header-logon-box .nice-select .list {
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 0px 0 0px;
  margin-top: 10px;
  width: 105px;
  left: auto !important;
}

.header-logon-box .nice-select .option {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  line-height: 35px;
  min-height: 35px;
  color: var(--farmology-base);
  font-weight: 500;
}

.header-logon-box .nice-select .option:hover,
.header-logon-box .nice-select .option.focus,
.header-logon-box .nice-select .option.selected.focus {
  color: var(--farmology-base);
  background-color: var(--farmology-black);
}

.main-header-four__contact-info-box {
  position: relative;
  display: block;
}

.main-header-four__contact-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  background-color: var(--farmology-white);
  padding-left: 28px;
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 1;
}

.main-header-four__contact-info:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: -1000000px;
  background-color: var(--farmology-white);
  z-index: -1;
}

.main-header-four__contact-info li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  z-index: 1;
}

.main-header-four__contact-info li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-four__contact-info li:hover .icon {
  background-color: var(--farmology-base);
}

.main-header-four__contact-info li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-four__contact-info li:hover .icon span {
  color: var(--farmology-white);
}

.main-header-four__contact-info li .content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 5px;
}

.main-header-four__contact-info li .content h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: var(--farmology-extra);
}

.main-header-four__contact-info li .content h5 a {
  color: var(--farmology-extra);
}

.main-header-four__contact-info li .content h5 a:hover {
  color: var(--farmology-base);
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-four__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--farmology-white);
  padding: 0 30px 0;
  margin-top: 5px;
}

.main-menu-four__left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-four__logo {
  display: block;
  padding: 25px 0;
}

.main-menu-four__main-menu-box {
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-four__right-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 18px 0 18px;
}

.main-menu-four__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-four__search-box {
  position: relative;
  display: block;
}

.main-menu-four__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__search:hover {
  color: var(--farmology-base);
}

.main-menu-four__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-four__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--farmology-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__cart-count {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__cart:hover {
  color: var(--farmology-base);
}


.main-menu-four__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}


.stricky-header.main-menu-four {
  background-color: var(--farmology-white);
}

.stricky-header .main-menu-four__wrapper-inner {
  padding: 0 0px 0;
  margin-top: 0;
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  background-color: var(--farmology-black);
  z-index: 5;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--farmology-black);
}

.main-slider__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1000ms ease-in;
  transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  z-index: -1;
}

.main-slider__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--farmology-black-rgb), .8);
  z-index: -1;
}

.main-slider .swiper-slide-active .main-slider__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.main-slider__img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.main-slider__img {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(0.9);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(100px) scale(0.9);
  transform: perspective(400px) rotateY(0deg) translateX(100px) scale(0.9);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  visibility: hidden;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider__img img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__img {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  transform: perspective(400px) rotateY(0deg) translateX(0px) scale(1);
  -webkit-transition-delay: 2600ms;
  -moz-transition-delay: 2600ms;
  -ms-transition-delay: 2600ms;
  -o-transition-delay: 2600ms;
  transition-delay: 2600ms;
}

.main-slider__img-shape {
  position: absolute;
  bottom: 140px;
  right: -120px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider__img-shape img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__img-shape {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 3200ms;
  -moz-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.main-slider__discount-box {
  position: absolute;
  top: 120px;
  left: 10px;
  height: 160px;
  width: 160px;
  background-color: var(--farmology-secondary);
  border: 5px solid var(--farmology-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__discount-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 3200ms;
  -moz-transition-delay: 3200ms;
  -ms-transition-delay: 3200ms;
  -o-transition-delay: 3200ms;
  transition-delay: 3200ms;
}

.main-slider__discount-box h3 {
  font-size: 35px;
  line-height: 1em;
  font-weight: 700;
  color: var(--farmology-white);
}

.main-slider__discount-box p {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-white);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.main-slider .container {
  position: relative;
  z-index: 30;
}

.main-slider__content {
  position: relative;
  display: block;
  padding-top: 367px;
  padding-bottom: 200px;
  z-index: 15;
}

.main-slider__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-base);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider__sub-title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider__title {
  position: relative;
  font-size: 60px;
  color: var(--farmology-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 3;
}

.main-slider__title span {
  color: var(--farmology-base);
}

.main-slider .swiper-slide-active .main-slider__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--farmology-white-rgb), .70);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .main-slider__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider__btn-and-review-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider__btn-and-review-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 2000ms;
  -moz-transition-delay: 2000ms;
  -ms-transition-delay: 2000ms;
  -o-transition-delay: 2000ms;
  transition-delay: 2000ms;
}

.main-slider__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-slider__btn-box .thm-btn {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.main-slider__btn-box .thm-btn .hover-btn {
  background-color: var(--farmology-white);
}

.main-slider__review-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-slider__review-box ul {
  position: relative;
  display: block;
}

.main-slider__review-box ul li {
  position: relative;
  display: block;
  float: left;
}

.main-slider__review-box ul li+li {
  margin-left: -20px;
}

.main-slider__review-box ul li .img-box {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--farmology-base);
}

.main-slider__review-box ul li .img-box img {
  width: 100%;
}

.main-slider__review-box .text-box {
  position: relative;
  display: block;
  margin-left: 10px;
  flex: 1;
}

.main-slider__review-box .text-box h2 {
  color: var(--farmology-white);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider__review-box .text-box p {
  color: var(--farmology-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}


#main-slider-pagination {
  position: absolute;
  left: 60px;
  right: auto;
  top: 55%;
  bottom: 0;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  height: 80px;
  width: auto;
  z-index: 100;
}

#main-slider-pagination::before {
  position: absolute;
  top: -105px;
  left: 50%;
  width: 4px;
  height: 85px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateX(-50%);
  opacity: 0.3;
  content: "";
}

#main-slider-pagination::after {
  position: absolute;
  bottom: -105px;
  left: 50%;
  width: 4px;
  height: 85px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateX(-50%);
  opacity: 0.3;
  content: "";
}

#main-slider-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  background: rgba(var(--farmology-white-rgb), 0.4);
  border-radius: 50%;
  opacity: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(var(--farmology-white-rgb), 1);
}

#main-slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border: 1px solid rgba(var(--farmology-white-rgb), 0.4);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#main-slider-pagination .swiper-pagination-bullet:hover {
  transform: scaleX(1.0);
  border: 1px solid rgba(var(--farmology-white-rgb), 1.0);
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 25px;
}


/*--------------------------------------------------------------
  # Main Slider Two
  --------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  z-index: 10;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--farmology-primary);
}

.main-slider-two__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 50px;
  right: 975px;
  z-index: -1;
}

.main-slider-two__shape-1 img {
  width: auto !important;
}

.main-slider-two__shape-2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: -1;
}

.main-slider-two__shape-2 img {
  width: auto !important;
}

.main-slider-two__shape-3 {
  position: absolute;
  top: 50px;
  left: 30px;
  z-index: -1;
}

.main-slider-two__shape-3 img {
  width: auto !important;
}

.main-slider-two__bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 52.5%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1000' height='800' viewBox='0 0 1000 800'%3E%3Cimage xlink:href='data:image/png;base64,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ECBAgACBMQkI6MNt66QkJw7XTicCBAgQIECAAAECBAgQGJOAgD7ctj6Q5AHDtdOJAAECBAgQIECAAAECBMYkIKAPt63vJLnJcO10IkCAAAECBAgQIECAAIExCQjow2zrZkm+PUwrXQgQIECAAAECBAgQIEBgjAIC+jBb+6UkfzZMK10IECBAgAABAgQIECBAYIwCAvowW3tekhcP00oXAgQIECBAgAABAgQIEBijgIA+zNbOTHLUMK10IUCAAAECBAgQIECAAIExCgjow2ztkiT7D9NKFwIECBAgQIAAAQIECBAYo4CA3v/W9kny3f7b6ECAAAECBAgQINE5ZfgAABkGSURBVECAAAECYxYQ0Pvf3uFJzum/jQ4ECBAgQIAAAQIECBAgMGYBAb3/7T0nycn9t9GBAAECBAgQIECAAAECBMYsIKD3v733J3lg/210IECAAAECBAgQIECAAIExCwjo/W/v8iQ37b+NDgQIECBAgAABAgQIECAwZgEBvd/tdd/c3n2Du4MAAQIECBAgQIAAAQIECOxUQEDv9wE5OskZ/bZQnQABAgQIECBAgAABAgSmICCg97vFU5Ic328L1QkQIECAAAECBAgQIEBgCgICer9b/Iskv9BvC9UJECBAgAABAgQIECBAYAoCAnp/W9wlyZVJ9uivhcoECBAgQIAAAQIECBAgMBUBAb2/TR6a5Lz+yqtMgAABAgQIECBAgAABAlMSEND72+Zjk7y5v/IqEyBAgAABAgQIECBAgMCUBAT0/rb5B0l+vb/yKhMgQIAAAQIECBAgQIDAlAQE9P62+YUkd+ivvMoECBAgQIAAAQIECBAgMCUBAb2fbXZfDNd9QVz3RXEOAgQIECBAgAABAgQIECCwoYCAviHRUifcL8mHlrrSRQQIECBAgAABAgQIECAwSwEBvZ+1Pz/Ji/oprSoBAgQIECBAgAABAgQITFFAQO9nqx9I8oB+SqtKgAABAgQIECBAgAABAlMUENDLb3VLku8luVH50ioSIECAAAECBAgQIECAwFQFBPTymz0kyfnly6pIgAABAgQIECBAgAABAlMWENDLb/fxSU4rX1ZFAgQIECBAgAABAgQIEJiygIBefrt/mOSR5cuqSIAAAQIECBAgQIAAAQJTFhDQy2/3oiQHli+rIgECBAgQIECAAAECBAhMWUBAL7vdmyX5dtmSqhEgQIAAAQIECBAgQIDAHAQE9LJb/pUkf1K2pGoECBAgQIAAAQIECBAgMAcBAb3sll+f5EllS6pGgAABAgQIECBAgAABAnMQENDLbvmLSW5ftqRqBAgQIECAAAECBAgQIDAHAQG93Jb3SXJFEqblTFUiQIAAAQIECBAgQIDAbASEyXKrfkiS95QrpxIBAgQIECBAgAABAgQIzElAQC+37d9N8lvlyqlEgAABAgQIECBAgAABAnMSENDLbdvfn5ezVIkAAQIECBAgQIAAAQKzExDQy6z8xmvf3v5df39eBlMVAgQIECBAgAABAgQIzFFAQC+z9QcneW+ZUqoQIECAAAECBAgQIECAwBwFBPQyW/f352UcVSFAgAABAgQIECBAgMBsBQT0Mqv/QpI7lCmlCgECBAgQIECAAAECBAjMUUBAX33r3d+fd79/vmX1UioQIECAAAECBAgQIECAwFwFBPTVN3/U2tvzM1cvowIBAgQIECBAgAABAgQIzFlAQF99+69L8uTVy6hAgAABAgQIECBAgAABAnMWENBX3/75SQ5ZvYwKBAgQIECAAAECBAgQIDBnAQF9te3fPMmlq5VwNQECBAgQIECAAAECBAgQSAT01Z6CX0vyR6uVcDUBAgQIECBAgAABAgQIEBDQV30G/jjJr65axPUECBAgQIAAAQIECBAgQMAb9NWegcuS7LdaCVcTIECAAAECBAgQIECAAAFv0Fd5Bm6X5EurFHAtAQIECBAgQIAAAQIECBD4oYA36Ms/C09J8trlL3clAQIECBAgQIAAAQIECBC4SkBAX/5pODvJEctf7koCBAgQIECAAAECBAgQICCgr/oM7Jbk+0n2WLWQ6wkQIECAAAECBAgQIECAQCfgDfpyz8E9knxiuUtdRYAAAQIECBAgQIAAAQIE1gsI6Ms9FS9O8rzlLnUVAQIECBAgQIAAAQIECBAQ0Es9A59McvdSxdQhQIAAAQIECBAgQIAAAQLeoG/+Gdg7yRVJdtn8pa4gQIAAAQIECBAgQIAAAQI7FhDQN/9kHJvk9M1f5goCBAgQIECAAAECBAgQIHDtAgL65p+OP07yq5u/zBUECBAgQIAAAQIECBAgQEBAL/UMbElyeZJ9SxVUhwABAgQIECBAgAABAgQIdALeoG/uObhbkk9t7hJnEyBAgAABAgQIECBAgACBjQUE9I2Nrn7G89f+p8aLNneJswkQIECAAAECBAgQIECAwMYCAvrGRlc/o3t73r1FdxAgQIAAAQIECBAgQIAAgaICAvrinD+e5DtJur9DdxAgQIAAAQIECBAgQIAAgaICAvrinH5ebXErZxIgQIAAAQIECBAgQIDAJgUE9MXBut8+70K6gwABAgQIECBAgAABAgQIFBcQ0Bcj7T7W/vdJ9lnsdGcRIECAAAECBAgQIECAAIHNCQjoi3n5ebXFnJxFgAABAgQIECBAgAABAksKCOiLwb00ybMXO9VZBAgQIECAAAECBAgQIEBg8wIC+mJm5yc5ZLFTnUWAAAECBAgQIECAAAECBDYvIKBvbHZgkos2Ps0ZBAgQIECAAAECBAgQIEBgeQEBfWO7pyZ5zcanOYMAAQIECBAgQIAAAQIECCwvIKBvbPfRJPfe+DRnECBAgAABAgQIECBAgACB5QUE9J3b7Z3kiiS7LE/sSgIECBAgQIAAAQIECBAgsLGAgL5zo19N8scbMzqDAAECBAgQIECAAAECBAisJiCg79zv3UmOWY3Y1QQIECBAgAABAgQIECBAYGMBAf3ajXbf/vH2G27M6AwCBAgQIECAAAECBAgQILCagIB+7X6/mOTPV+N1NQECBAgQIECAAAECBAgQWExAQL92p1OTHLcYo7MIECBAgAABAgQIECBAgMBqAgL6jv06l28m+YnVeF1NgAABAgQIECBAgAABAgQWExDQd+x0tySfWozQWQQIECBAgAABAgQIECBAYHUBAX3Hhq9M8ozVeVUgQIAAAQIECBAgQIAAAQKLCQjoO3a6OMkBixE6iwABAgQIECBAgAABAgQIrC4goK83vHOSz65OqwIBAgQIECBAgAABAgQIEFhcQEBfb3VykucsTuhMAgQIECBAgAABAgQIECCwuoCAvt7wgiQHr06rAgECBAgQIECAAAECBAgQWFxAQL+m1e2SfGlxPmcSIECAAAECBAgQIECAAIEyAgL6NR1fmOQFZWhVIUCAAAECBAgQIECAAAECiwsI6Ne06t6ed2/RHQQIECBAgAABAgQIECBAYFABAf0q7u7vzru/P3cQIECAAAECBAgQIECAAIHBBQT0q8ifm+Qlg29AQwIECBAgQIAAAQIECBAgkERAv+ox6H77vPsNdAcBAgQIECBAgAABAgQIEBhcQEDfRn6bJH83uL6GBAgQIECAAAECBAgQIEBgu4CAvg2i++b27hvcHQQIECBAgAABAgQIECBAoIqAgL6NvXt73r1FdxAgQIAAAQIECBAgQIAAgSoCAnpypySfq6KvKQECBAgQIECAAAECBAgQ2C4goCenJDneE0GAAAECBAgQIECAAAECBGoKzD2gd/f/9SS3qLkEvQkQIECAAAECBAgQIECAwNwD+mFJzvUYECBAgAABAgQIECBAgACB2gJzD+i/l+Q3ay9BfwIECBAgQIAAAQIECBAgMOeAvkuSy5Ls6zEgQIAAAQIECBAgQIAAAQK1BeYc0A9Pck7tBehPgAABAgQIECBAgAABAgQ6gTkH9LckeYzHgAABAgQIECBAgAABAgQItCAw14C+e5LvJLlRC0swAwECBAgQIECAAAECBAgQmGtAf0iS91g/AQIECBAgQIAAAQIECBBoRWCuAf19SR7UyhLMQYAAAQIECBAgQIAAAQIE5hjQb7z929u3Wj8BAgQIECBAgAABAgQIEGhFYI4B/bi1n1Y7tZUFmIMAAQIECBAgQIAAAQIECHQCcwzof5Xk56yfAAECBAgQIECAAAECBAi0JDC3gH5Qkq/O9H9MtPTcmYUAAQIECBAgQIAAAQIEfkRgbgH9xUme5ykgQIAAAQIECBAgQIAAAQKtCcwpoG9J8rUkt2xtCeYhQIAAAQIECBAgQIAAAQJzCuj3SvIxKydAgAABAgQIECBAgAABAi0KzCmg/2GSR7a4BDMRIECAAAECBAgQIECAAIG5BPQ9klyepPvXQYAAAQIECBAgQIAAAQIEmhOYS0B/dJK3NqdvIAIECBAgQIAAAQIECBAgsF1gLgH9E0nuYesECBAgQIAAAQIECBAgQKBVgTkE9Nsk+YrfPm/1ETQXAQIECBAgQIAAAQIECHQCcwjoL0/yTOsmQIAAAQIECBAgQIAAAQItC0w9oO+a5NIkN2l5CWYjQIAAAQIECBAgQIAAAQJTD+hHJTnTmgkQIECAAAECBAgQIECAQOsCUw/oZyc5ovUlmI8AAQIECBAgQIAAAQIECEw5oN88yTeSdB9zdxAgQIAAAQIECBAgQIAAgaYFphzQn5Pk5Kb1DUeAAAECBAgQIECAAAECBLYLTDWgd/d1UZJb2TQBAgQIECBAgAABAgQIEBiDwFQD+n2SfGQMCzAjAQIECBAgQIAAAQIECBDoBKYa0E9PcqwVEyBAgAABAgQIECBAgACBsQhMMaDvleSyJNcZyxLMSYAAAQIECBAgQIAAAQIEphjQn5LktVZLgAABAgQIECBAgAABAgTGJDC1gN7dz1eS3GZMSzArAQIECBAgQIAAAQIECBCYWkC/b5IPWysBAgQIECBAgAABAgQIEBibwNQC+hlJjh7bEsxLgAABAgQIECBAgAABAgSmFND3S/LNJLtaKwECBAgQIECAAAECBAgQGJvAlAL689d+Nu5FY1uAeQkQIECAAAECBAgQIECAQCcwlYDevTW/OMlPWisBAgQIECBAgAABAgQIEBijwFQC+lFJzhzjAsxMgAABAgQIECBAgAABAgSm9Ab9z5P8opUSIECAAAECBAgQIECAAIGxCkzhDfpBSS5IsmWsSzA3AQIECBAgQIAAAQIECBCYQkB/ZZJnWCUBAgQIECBAgAABAgQIEBizwNgD+nW3/7TaPmNegtkJECBAgAABAgQIECBAgMDYA/qjkrzNGgkQIECAAAECBAgQIECAwNgFxh7QP5fkTmNfgvkJECBAgAABAgQIECBAgMCYA/q9knzMCgkQIECAAAECBAgQIECAwBQExhzQ35vkwVNYgnsgQIAAAQIECBAgQIAAAQJjDej7J/lakl2tkAABAgQIECBAgAABAgQITEFgrAHdT6tN4elzDwQIECBAgAABAgQIECDw/wXGGND3SPKtJDeyRwIECBAgQIAAAQIECBAgMBWBMQb030jy+1NZgPsgQIAAAQIECBAgQIAAAQKdwNgCejfv+Ulua30ECBAgQIAAAQIECBAgQGBKAmML6PdP8sEpLcC9ECBAgAABAgQIECBAgACBMb5B/x9J/qvVESBAgAABAgQIECBAgACBqQmM6Q36QUkuSLJlaktwPwQIECBAgAABAgQIECBAYEwB/XeT/JaVESBAgAABAgQIECBAgACBKQqMJaDvk+SSJNeb4hLcEwECBAgQIECAAAECBAgQGEtAPzHJSdZFgAABAgQIECBAgAABAgSmKjCGgL41yTeS7DfVJbgvAgQIECBAgAABAgQIECAwhoD+mCRvsSoCBAgQIECAAAECBAgQIDBlgdYDejff+UluO+UluDcCBAgQIECAAAECBAgQINB6QO9+87z77XMHAQIECBAgQIAAAQIECBCYtEDrAf1jSe416Q24OQIECBAgQIAAAQIECBAgkKTlgP6zSf7alggQIECAAAECBAgQIECAwBwEWg7oZ6z9/fnRc1iCeyRAgAABAgQIECBAgAABAq0G9IOSXJBkixURIECAAAECBAgQIECAAIE5CLQa0N+Y5AlzWIB7JECAAAECBAgQIECAAAECnUCLAX2/JF9Lcl0rIkCAAAECBAgQIECAAAECcxFoMaCfkuT4uSzAfRIgQIAAAQIECBAgQIAAgRbfoO+d5JIke1gPAQIECBAgQIAAAQIECBCYk0Brb9BfmOQFc1qAeyVAgAABAgQIECBAgAABAq29Qe/emndvz7u36A4CBAgQIECAAAECBAgQIDArgZbeoJ+w9sVwr5iVvpslQIAAAQIECBAgQIAAAQLbBVoJ6N03tl+c5KY2Q4AAAQIECBAgQIAAAQIE5ijQSkB/YpI3zHEB7pkAAQIECBAgQIAAAQIECHQCLQT03ZJcmOQWVkKAAAECBAgQIECAAAECBOYq0EJAf/RaOH/rXBfgvgkQIECAAAECBAgQIECAQAtv0Lck+fL/be/uXaS8ojgA/9AFJaAE/AgIdoGN+EEQC5sUSaFdSCFB0gQURSwsQtpgsBULCxElgTQhiIXYJUUCKdKIuGJsVPKniO7FEc2yHzO7M3Pv3H3eZmEZeM95ztv89ux7J8m8cRAgQIAAAQIECBAgQIAAgc0sUHuD/nWSO5t5AHonQIAAAQIECBAgQIAAAQK1N+jljwOPkxwxCgIECBAgQIAAAQIECBAgsNkFam7QTyW5u9kHoH8CBAgQIECAAAECBAgQIFBzg2577vkjQIAAAQIECBAgQIAAAQLvCdTaoNueewwJECBAgAABAgQIECBAgEDlgF5Obi/vnh82CQIECBAgQIAAAQIECBAgQOCNQI0NupPbPX0ECBAgQIAAAQIECBAgQGCJwLQDetmeP1k8HO6gSRAgQIAAAQIECBAgQIAAAQLvBKYd0E8n+c0ACBAgQIAAAQIECBAgQIAAgf8LTDOgl+350yQHDIEAAQIECBAgQIAAAQIECBCoF9Btzz19BAgQIECAAAECBAgQIEBgBYFpbdBtzz2CBAgQIECAAAECBAgQIEBgFYFpBfRvkvxqEgQIECBAgAABAgQIECBAgMDyAtMI6HODd8/nDYEAAQIECBAgQIAAAQIECBCoF9DPJvnJAAgQIECAAAECBAgQIECAAIGVBSa9Qd+e5HmS/YZAgAABAgQIECBAgAABAgQI1Avo3yW5ZgAECBAgQIAAAQIECBAgQIDA6gKT3KDvTPJfkt2GQIAAAQIECBAgQIAAAQIECNQL6JcXb/2jARAgQIAAAQIECBAgQIAAAQJrC0xqg1625mV7XrboLgIECBAgQIAAAQIECBAgQGANgUkF9PLeeXn/3EWAAAECBAgQIECAAAECBAgMITCJgF5ObC8nt5cT3F0ECBAgQIAAAQIECBAgQIDAEAKTCOjlO8/Ld5+7CBAgQIAAAQIECBAgQIAAgSEFxh3QP0nyb5K5Ie/vYwQIECBAgAABAgQIECBAgECScQf0u0lOkSVAgAABAgQIECBAgAABAgRGExhnQD+W5MEEQv9oHfk0AQIECBAgQIAAAQIECBCYQYFxBvS/knw+gwZKJkCAAAECBAgQIECAAAEC1QXGFdC/THK/ejcKIECAAAECBAgQIECAAAECMyowjoBeDoR7kuTAjBoomwABAgQIECBAgAABAgQIVBcYR0C/kORm9U4UQIAAAQIECBAgQIAAAQIEZlhgowF9R5IXiwH9oxk2UDoBAgQIECBAgAABAgQIEKgusNGAfiXJD9W7UAABAgQIECBAgAABAgQIEJhxgY0E9H2D7fkHM26gfAIECBAgQIAAAQIECBAgUF1gIwH95yRnqnegAAIECBAgQIAAAQIECBAg0IHAegP64SQLSbZ2YKAFAgQIECBAgAABAgQIECBQXWC9Af33JCerV68AAgQIECBAgAABAgQIECDQicB6AvqJJH900r82CBAgQIAAAQIECBAgQIBAEwKjBvTyL+2PkhxponpFECBAgAABAgQIECBAgACBTgRGDejnktzupHdtECBAgAABAgQIECBAgACBZgRGCeg7B1+rtreZ6hVCgAABAgQIECBAgAABAgQ6ERgloF9N8n0nfWuDAAECBAgQIECAAAECBAg0JTBsQP84ydMk25qqXjEECBAgQIAAAQIECBAgQKATgWED+r0kX3XSszYIECBAgAABAgQIECBAgEBzAsME9C+S/Nlc5QoiQIAAAQIECBAgQIAAAQIdCawV0OeSLCQ51FHPWiFAgAABAgQIECBAgAABAs0JrBXQLyW53lzVCiJAgAABAgQIECBAgAABAp0JrBbQ9yR5nuTDznrWDgECBAgQIECAAAECBAgQaE5gtYB+K8n55ipWEAECBAgQIECAAAECBAgQ6FBgpYD+aZKHSbZ22LOWCBAgQIAAAQIECBAgQIBAcwLLBfTyu78XT27/rLlqFUSAAAECBAgQIECAAAECBDoVWC6gf5vkl0771RYBAgQIECBAgAABAgQIEGhSYGlALwfCPUuyt8lqFUWAAAECBAgQIECAAAECBDoVWBrQbyS52Gmv2iJAgAABAgQIECBAgAABAs0KvB/QjyZ54GC4ZmelMAIECBAgQIAAAQIECBDoWOBtQN+S5J8kxzvuVWsECBAgQIAAAQIECBAgQKBZgbcB/VyS281WqTACBAgQIECAAAECBAgQINC5QAnouwYHw5WfLgIECBAgQIAAAQIECBAgQKCCQAnoZXNeNuguAgQIECBAgAABAgQIECBAoJJACegvk5R30F0ECBAgQIAAAQIECBAgQIBAJYES0F9VurfbEiBAgAABAgQIECBAgAABAgOB19g3IC7fZqITAAAAAElFTkSuQmCC' x='0' y='0' width='1000' height='800'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='1000' height='800' viewBox='0 0 1000 800'%3E%3Cimage xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+gAAAMgCAYAAACwGEg9AAAAAXNSR0IArs4c6QAAIABJREFUeF7s3WvYbWVZL/B/C1h4QBEkFC0UQSxRPJbWRvNEbjehmJCK5eHSNLTME3jCI+IBT1lKkl5qJWpiosR2G55Sdml5RElDEEURDNPodJV7X9duv2Ov5QZ8F+ud75zPGM8zxviND6wvY9z3PX73+PJnzHfOH0vyn3EQIECAAAECBAgQIECAAAECVQV+LMn/SrJb1Sk0J0CAAAECBAgQIECAAAECMxfoAvqpSY6buYPbJ0CAAAECBAgQIECAAAECVQW6gL5fkouSXK/qJJoTIECAAAECBAgQIECAAIEZC3QBvTteluRZM3Zw6wQIECBAgAABAgQIECBAoKrADwP6Xkm+lqT710GAAAECBAgQIECAAAECBAgMLPDDgN617d6gd2/SHQQIECBAgAABAgQIECBAgMDAAlcP6N3foHd/i979TbqDAAECBAgQIECAAAECBAgQGFDg6gG9a9t9m3v3re4OAgQIECBAgAABAgQIECBAYECBHw3ouyb5cpJbDziDVgQIECBAgAABAgQIECBAYPYCPxrQO5BHJHn77GUAECBAgAABAgQIECBAgACBAQV2FNB3SfK3SW4z4BxaESBAgAABAgQIECBAgACBWQvsKKB3IMeufcz99FnLuHkCBAgQIECAAAECBAgQIDCgwLUF9C3b/xbdW/QBl6EVAQIECBAgQIAAAQIECMxX4NoCurfo830m3DkBAgQIECBAgAABAgQIVBDYWUDv3qKfn+SnK8ylJQECBAgQIECAAAECBAgQmJXAzgJ6B/HwJO+YlYibJUCAAAECBAgQIECAAAECFQQ2CujeoldYipYECBAgQIAAAQIECBAgMD+BjQJ6J/KwtZ9ce+f8aNwxAQIECBAgQIAAAQIECBAYTmCRgN69Rf9ikkOGG0snAgQIECBAgAABAgQIECAwL4FFAnon4m/R5/VcuFsCBAgQIECAAAECBAgQGFhg0YC+y/bfRT944Pm0I0CAAAECBAgQIECAAAECsxBYNKB3GI9J8pZZqLhJAgQIECBAgAABAgQIECAwsMBmAvpuSS5McouBZ9SOAAECBAgQIECAAAECBAhMXmAzAb3DOC7JqZNXcYMECBAgQIAAAQIECBAgQGBggc0G9OskuTjJfgPPqR0BAgQIECBAgAABAgQIEJi0wGYDeofxtCSvnrSKmyNAgAABAgQIECBAgAABAgMLLBPQ91j7wrhLkuw98KzaESBAgAABAgQIECBAgACByQosE9A7jBclef5kVdwYAQIECBAgQIAAAQIECBAYWGDZgL5Pkm8kuf7A82pHgAABAgQIECBAgAABAgQmKbBsQO8wXpfkyZNUcVMECBAgQIAAAQIECBAgQGBggVUC+v5JLkrS/T66gwABAgQIECBAgAABAgQIEFhBYJWA3rV9W5JHrdDfpQQIECBAgAABAgQIECBAgMDal72tGtBvm+RLSbbQJECAAAECBAgQIECAAAECBJYXWDWgd53fl+RBy4/gSgIECBAgQIAAAQIECBAgQKBEQL9Hkk+gJECAAAECBAgQIECAAAECBJYXKBHQu+6fTHL35cdwJQECBAgQIECAAAECBAgQmLdAqYD+kCTvmTeluydAgAABAgQIECBAgAABAssLlAro3ZfEXZDkoOVHcSUBAgQIECBAgAABAgQIEJivQKmA3gkel+TU+VK6cwIECBAgQIAAAQIECBAgsLxAyYB+3STfTLLP8uO4kgABAgQIECBAgAABAgQIzFOgZEDvBF+w9p8XzpPSXRMgQIAAAQIECBAgQIAAgeUFSgf07u159xa9e5vuIECAAAECBAgQIECAAAECBBYUKB3Qu7Z/kOTXF+zvNAIECBAgQIAAAQIECBAgQCBJHwH9tknO76m2pREgQIAAAQIECBAgQIAAgUkK9BHQO6gPJrn/JMXcFAECBAgQIECAAAECBAgQ6EGgr4DehfMupDsIECBAgAABAgQIECBAgACBBQT6Cuhd3e5j7t3H3R0ECBAgQIAAAQIECBAgQIDABgJ9BfSubfdFcd0XxjkIECBAgAABAgQIECBAgACBigG9+6m17ifXup9ecxAgQIAAAQIECBAgQIAAAQI7EejzDXrX9qQkJ9oAAQIECBAgQIAAAQIECBAgsHOBvgP6fkm+kWSrRRAgQIAAAQIECBAgQIAAAQLXLtB3QO86/2GSR1oCAQIECBAgQIAAAQIECBAgUDeg/0ySv7EEAgQIECBAgAABAgQIECBAoG5A77p/cu130e9uEQQIECBAgAABAgQIECBAgMCOBYb4iHvX+WFJ3mkJBAgQIECAAAECBAgQIECAQN2A3n1JXPdlcd2XxjkIECBAgAABAgQIECBAgACBHxEY6g1617b7ubXuZ9ccBAgQIECAAAECBAgQIECAQMWA7ifXPH4ECBAgQIAAAQIECBAgQOBaBIZ8g96N4CfXPIoECBAgQIAAAQIECBAgQGAHAkMH9Lsl+ZRNECBAgAABAgQIECBAgAABAtcUGDqgd9395JqnkAABAgQIECBAgAABAgQI/IhAjYD+yO0fdbcMAgQIECBAgAABAgQIECBAYLtAjYB+nSTfSrKPLRAgQIAAAQIECBAgQIAAAQLbBGoE9K7vKUmOtwQCBAgQIECAAAECBAgQIECgbkA/MMlXk2yxCAIECBAgQIAAAQIECBAgQKDeG/TO/gNJHmAJBAgQIECAAAECBAgQIECAQN2AfmSSsyyBAAECBAgQIECAAAECBAgQqBvQu4+3fz3J/hZBgAABAgQIECBAgAABAgTmLlDrS+J+6P7sJC+d+xLcPwECBAgQIECAAAECBAgQqB3Q993+k2tbrYIAAQIECBAgQIAAAQIECMxZoHZA7+zfkeThc16CeydAgAABAgQIECBAgAABAi0E9MOSnGsVBAgQIECAAAECBAgQIEBgzgItBPTO/8tJfnrOi3DvBAgQIECAAAECBAgQIDBvgVYC+lOSvHbeq3D3BAgQIECAAAECBAgQIDBngVYC+o2TXJrkOnNehnsnQIAAAQIECBAgQIAAgfkKtBLQuw28Pckj5rsKd06AAAECBAgQIECAAAECcxZoKaDfM8nH57wM906AAAECBAgQIECAAAEC8xVoKaB3s3wlyW3muw53ToAAAQIECBAgQIAAAQJzFWgpoHc7eFqSV891Ge6bAAECBAgQIECAAAECBOYr0FpA3yfJt5Nsne9K3DkBAgQIECBAgAABAgQIzFGgtYDe7eAdSR4+x2W4ZwIECBAgQIAAAQIECBCYr0CLAf3eST4635W4cwIECBAgQIAAAQIECBCYo0CLAb2b6e/W3qQfPMeFuGcCBAgQIECAAAECBAgQmKdAiwG928QJSV4xz5W4awIECBAgQIAAAQIECBCYo0CrAX2/JN9Msuscl+KeCRAgQIAAAQIECBAgQGB+Aq0G9G4TZyU5cn4rcccECBAgQIAAAQIECBAgMEeBlgP6UUnOnONS3DMBAgQIECBAgAABAgQIzE+g5YC+W5JLk+w7v7W4YwIECBAgQIAAAQIECBCYm0DLAb3bxauSPH1uS3G/BAgQIECAAAECBAgQIDA/gdYD+iFJzp/fWtwxAQIECBAgQIAAAQIECMxNoPWA3u3jk0nuPrfFuF8CBAgQIECAAAECBAgQmJfAGAL6E5K8cV5rcbcECBAgQIAAAQIECBAgMDeBMQT0Gya5PMn15rYc90uAAAECBAgQIECAAAEC8xEYQ0DvtvFHSX5tPmtxpwQIECBAgAABAgQIECAwN4GxBPR7JfnY3JbjfgkQIECAAAECBAgQIEBgPgJjCejdnBetvUm/1XxW404JECBAgAABAgQIECBAYE4CYwno3U5emOQFc1qOeyVAgAABAgQIECBAgACB+QiMKaAfmOTCJGOaeT5PkjslQIAAAQIECBAgQIAAgZUExhZ2/2eS/7LSHbuYAAECBAgQIECAAAECBAg0KDC2gP74JKc16GgkAgQIECBAgAABAgQIECCwksDYAvpe238TffeV7trFBAgQIECAAAECBAgQIECgMYGxBfSO791JjmnM0TgECBAgQIAAAQIECBAgQGAlgTEG9COTnLXSXbuYAAECBAgQIECAAAECBAg0JjDGgL5bkkuT7NuYpXEIECBAgAABAgQIECBAgMDSAmMM6N3Nvi7Jk5e+axcSIECAAAECBAgQIECAAIHGBMYa0O+c5LONWRqHAAECBAgQIECAAAECBAgsLTDWgN7d8PlJDln6zl1IgAABAgQIECBAgAABAgQaEhhzQD8hySsasjQKAQIECBAgQIAAAQIECBBYWmDMAf3mSb6ZZMvSd+9CAgQIECBAgAABAgQIECDQiMCYA3pH+LEk92rE0hgECBAgQIAAAQIECBAgQGBpgbEH9McnOW3pu3chAQIECBAgQIAAAQIECBBoRGDsAX3vJJcn2dqIpzEIECBAgAABAgQIECBAgMBSAmMP6N1Nvz/JA5e6excRIECAAAECBAgQIECAAIFGBKYQ0B+a5F2NeBqDAAECBAgQIECAAAECBAgsJTCFgH69JFckuf5SAi4iQIAAAQIECBAgQIAAAQINCEwhoHeMpyc5tgFPIxAgQIAAAQIECBAgQIAAgaUEphLQj0hy9lICLiJAgAABAgQIECBAgAABAg0ITCWg75bksiT7NGBqBAIECBAgQIAAAQIECBAgsGmBqQT07sZPTXLcpgVcQIAAAQIECBAgQIAAAQIEGhCYUkC/Z5KPN2BqBAIECBAgQIAAAQIECBAgsGmBKQX0LUm+keQnN63gAgIECBAgQIAAAQIECBAgUFlgSgG9ozwlyfGVTbUnQIAAAQIECBAgQIAAAQKbFphaQL9zks9uWsEFBAgQIECAAAECBAgQIECgssDUAnrH+dW130W/dWVX7QkQIECAAAECBAgQIECAwKYEphjQX5rk2ZtScDIBAgQIECBAgAABAgQIEKgsMMWAfqckn6vsqj0BAgQIECBAgAABAgQIENiUwBQDegfgY+6begycTIAAAQIECBAgQIAAAQK1BaYa0E9O8pzauPoTIECAAAECBAgQIECAAIFFBaYa0O+Y5POLIjiPAAECBAgQIECAAAECBAjUFphqQO9cfcy99tOlPwECBAgQIECAAAECBAgsLDDlgP6SJM9dWMKJBAgQIECAAAECBAgQIECgosCUA/odknyhoq3WBAgQIECAAAECBAgQIEBgYYEpB/QO4YIkBy+s4UQCBAgQIECAAAECBAgQIFBJYOoB/aQkJ1ay1ZYAAQIECBAgQIAAAQIECCwsMPWAfmiS8xbWcCIBAgQIECBAgAABAgQIEKgkMPWA3rH6mHulh0tbAgQIECBAgAABAgQIEFhcYA4B/cVJnrc4iTMJECBAgAABAgQIECBAgMDwAnMI6HdK8rnhaXUkQIAAAQIECBAgQIAAAQKLC8whoHcaFyc5YHEWZxIgQIAAAQIECBAgQIAAgWEF5hLQX5PkqcPS6kaAAAECBAgQIECAAAECBBYXmEtAv2eSjy/O4kwCBAgQIECAAAECBAgQIDCswFwC+pYklyfZd1he3QgQIECAAAECBAgQIECAwGICcwnoncabkjxuMRZnESBAgAABAgQIECBAgACBYQXmFNAfkOQDw/LqRoAAAQIECBAgQIAAAQIEFhOYU0DfPckVSW64GI2zCBAgQIAAAQIECBAgQIDAcAJzCuid6ruSPHQ4Xp0IECBAgAABAgQIECBAgMBiAnML6L+S5E8Wo3EWAQIECBAgQIAAAQIECBAYTmBuAf0GSb6bpPu4u4MAAQIECBAgQIAAAQIECDQjMLeA3sGfneSIZjZgEAIECBAgQIAAAQIECBAgkGSOAf2xSd5s+wQIECBAgAABAgQIECBAoCWBOQb0fZNclmSXlhZhFgIECBAgQIAAAQIECBCYt8AcA3q38b9I8gvzXr27J0CAAAECBAgQIECAAIGWBOYa0J+e5FUtLcIsBAgQIECAAAECBAgQIDBvgbkG9IOTXDDv1bt7AgQIECBAgAABAgQIEGhJYK4BvdvBV5L8VEvLMAsBAgQIECBAgAABAgQIzFdgzgG9+4h791F3BwECBAgQIECAAAECBAgQqC4w54B+7yQfrb4BAxAgQIAAAQIECBAgQIAAgZn+DvoPF79bku8k2duTQIAAAQIECBAgQIAAAQIEagvM+Q16Z396kmNrL0F/AgQIECBAgAABAgQIECAw94DehfMupDsIECBAgAABAgQIECBAgEBVgbkH9O7j7Vck2aXqFjQnQIAAAQIECBAgQIAAgdkLzD2gdw9A90Vx3RfGOQgQIECAAAECBAgQIECAQDUBAX3bT611P7nmIECAAAECBAgQIECAAAEC1QQE9OSnknyl2gY0JkCAAAECBAgQIECAAAECM/+Ztas/ABcmOcgTQYAAAQIECBAgQIAAAQIEagl4g75NvvuIe/dRdwcBAgQIECBAgAABAgQIEKgiIKBvY+++JK77sjgHAQIECBAgQIAAAQIECBCoIiCgb2PfLcl3k+xZZQuaEiBAgAABAgQIECBAgMDsBQT0qx6Bdyc5ZvZPBAACBAgQIECAAAECBAgQqCIgoF/F/rgkb6qyBU0JECBAgAABAgQIECBAYPYCAvpVj8BPJPnW7J8IAAQIECBAgAABAgQIECBQRUBAvyb7F5PcvsomNCVAgAABAgQIECBAgACBWQsI6Ndc/yuTPGPWT4SbJ0CAAAECBAgQIECAAIEqAgL6Ndnvm+TDVTahKQECBAgQIECAAAECBAjMWkBAv+b6d0/yD0n2mPVT4eYJECBAgAABAgQIECBAYHABAX09+dlJjhh8ExoSIECAAAECBAgQIECAwKwFBPT1639SktfP+qlw8wQIECBAgAABAgQIECAwuICAvp78wCQXDb4JDQkQIECAAAECBAgQIEBg1gIC+o7Xf2GSg2b9ZLh5AgQIECBAgAABAgQIEBhUQEDfMffvrX1Z3G8OugnNCBAgQIAAAQIECBAgQGDWAgL6jtfffUlc92VxDgIECBAgQIAAAQIECBAgMIiAgL5j5usn+V6S7mfXHAQIECBAgAABAgQIECBAoHcBAf3aiT+U5H69b0ADAgQIECBAgAABAgQIECCQREC/9sfg6Ule5SkhQIAAAQIECBAgQIAAAQJDCAjo1658uyRfGmIJehAgQIAAAQIECBAgQIAAAQH92p+BzubyJDfxmBAgQIAAAQIECBAgQIAAgb4FBPSdC78jycP7XoL6BAgQIECAAAECBAgQIEBAQN/5M/DYJG/2mBAgQIAAAQIECBAgQIAAgb4FBPSdC98yydf7XoL6BAgQIECAAAECBAgQIEBAQN/4GbgoyYEbn+YMAgQIECBAgAABAgQIECCwvICAvrHdaUkev/FpziBAgAABAgQIECBAgAABAssLCOgb2z00ybs2Ps0ZBAgQIECAAAECBAgQIEBgeQEBfWO7fZJckYTVxlbOIECAAAECBAgQIECAAIElBYTOxeC+kOQOi53qLAIECBAgQIAAAQIECBAgsHkBAX0xs1clefpipzqLAAECBAgQIECAAAECBAhsXkBAX8zsvyX574ud6iwCBAgQIECAAAECBAgQILB5AQF9MbM9knw/yW6Lne4sAgQIECBAgAABAgQIECCwOQEBfXGvc5MctvjpziRAgAABAgQIECBAgAABAosLCOiLW70wyQsWP92ZBAgQIECAAAECBAgQIEBgcQEBfXGreyT5xOKnO5MAAQIECBAgQIAAAQIECCwuIKAvbrV1+9+hX3/xS5xJgAABAgQIECBAgAABAgQWExDQF3P64VkfTHL/zV3ibAIECBAgQIAAAQIECBAgsLGAgL6x0dXPeFaSl23uEmcTIECAAAECBAgQIECAAIGNBQT0jY2ufsbd196gf3JzlzibAAECBAgQIECAAAECBAhsLCCgb2x09TO630H/xyT+Dn1zbs4mQIAAAQIECBAgQIAAgQ0EBPTNPyL+Dn3zZq4gQIAAAQIECBAgQIAAAQG9+DPwnCQnF6+qIAECBAgQIECAAAECBAjMWsAb9M2v/+eT/OXmL3MFAQIECBAgQIAAAQIECBC4dgEBffNPR/d36Fcmud7mL3UFAQIECBAgQIAAAQIECBDYsYCAvtyTcc7aW/TDl7vUVQQIECBAgAABAgQIECBAYL2AgL7cU3FikpOWu9RVBAgQIECAAAECBAgQIEBAQC/1DNwrycdKFVOHAAECBAgQIECAAAECBAh4g77cM3Dd7X+HvnW5y11FgAABAgQIECBAgAABAgSuKSCgL/9EdN/k3n2ju4MAAQIECBAgQIAAAQIECKwsIKAvT/jyJM9c/nJXEiBAgAABAgQIECBAgACBqwQE9OWfhl9K8mfLX+5KAgQIECBAgAABAgQIECAgoJd4BvZK8g9JtpQopgYBAgQIECBAgAABAgQIzFvAG/TV9n9ekkNXK+FqAgQIECBAgAABAgQIECCQCOirPQVvSPLE1Uq4mgABAgQIECBAgAABAgQICOirPgOPSPL2VYu4ngABAgQIECBAgAABAgQIeIO+2jNwyyRfX62EqwkQIECAAAECBAgQIECAgDfoJZ6By5PctEQhNQgQIECAAAECBAgQIEBgvgLeoK+++/cmefDqZVQgQIAAAQIECBAgQIAAgTkLCOirb/+EJK9YvYwKBAgQIECAAAECBAgQIDBnAQF99e3fM8nHVy+jAgECBAgQIECAAAECBAjMWUBAX337101yZZKtq5dSgQABAgQIECBAgAABAgTmKiCgl9n8Xyf52TKlVCFAgAABAgQIECBAgACBOQoI6GW2/jtJfrtMKVUIECBAgAABAgQIECBAYI4CAnqZrT8syTvLlFKFAAECBAgQIECAAAECBOYoIKCX2fotk3y9TClVCBAgQIAAAQIECBAgQGCOAgJ6ua1flmS/cuVUIkCAAAECBAgQIECAAIE5CQjo5bZ9RpKjy5VTiQABAgQIECBAgAABAgTmJCCgl9v205K8ulw5lQgQIECAAAECBAgQIEBgTgICerlt/3ySvyxXTiUCBAgQIECAAAECBAgQmJOAgF5u29dJ8k9JtpYrqRIBAgQIECBAgAABAgQIzEVAQC+76b9O8rNlS6pGgAABAgQIECBAgAABAnMQENDLbvk1a2/Rn1q2pGoECBAgQIAAAQIECBAgMAcBAb3slh+a5F1lS6pGgAABAgQIECBAgAABAnMQENDLbvmgJBeWLakaAQIECBAgQIAAAQIECMxBQEAvu+XO83tJ9ipbVjUCBAgQIECAAAECBAgQmLqAgF5+wx9Kcr/yZVUkQIAAAQIECBAgQIAAgSkLCOjlt/vyJM8sX1ZFAgQIECBAgAABAgQIEJiygIBefrtHJzmjfFkVCRAgQIAAAQIECBAgQGDKAgJ6+e0ekOTi8mVVJECAAAECBAgQIECAAIEpCwjo/Wz3u0n26ae0qgQIECBAgAABAgQIECAwRQEBvZ+tfjDJ/fsprSoBAgQIECBAgAABAgQITFFAQO9nqyclObGf0qoSIECAAAECBAgQIECAwBQFBPR+tvrgJO/tp7SqBAgQIECAAAECBAgQIDBFAQG9n63+ZJJv9lNaVQIECBAgQIAAAQIECBCYooCA3t9Wv5PkJv2VV5kAAQIECBAgQIAAAQIEpiQgoPe3zbOTHNFfeZUJECBAgAABAgQIECBAYEoCAnp/23xhkhf0V15lAgQIECBAgAABAgQIEJiSgIDe3zaPTHJWf+VVJkCAAAECBAgQIECAAIEpCQjo/W1zvySX9VdeZQIECBAgQIAAAQIECBCYkoCA3u82v53kZv22UJ0AAQIECBAgQIAAAQIEpiAgoPe7xfcleVC/LVQnQIAAAQIECBAgQIAAgSkICOj9btEXxfXrqzoBAgQIECBAgAABAgQmIyCg97vKo5Kc2W8L1QkQIECAAAECBAgQIEBgCgICer9bPCDJxf22UJ0AAQIECBAgQIAAAQIEpiAgoPe/xX9McqP+2+hAgAABAgQIECBAgAABAmMWEND7395fJPmF/tvoQIAAAQIECBAgQIAAAQJjFhDQ+9/e7yT57f7b6ECAAAECBAgQIECAAAECYxYQ0Pvf3qOTvLX/NjoQIECAAAECBAgQIECAwJgFBPT+t3fHtd9C/3z/bXQgQIAAAQIECBAgQIAAgTELCOj9b29rkn9Nslv/rXQgQIAAAQIECBAgQIAAgbEKCOjDbO68JIcO00oXAgQIECBAgAABAgQIEBijgIA+zNZOT3LsMK10IUCAAAECBAgQIECAAIExCgjow2ztWUleNkwrXQgQIECAAAECBAgQIEBgjAIC+jBbOyLJ2cO00oUAAQIECBAgQIAAAQIExiggoA+ztf2TXDJMK10IECBAgAABAgQIECBAYIwCAvpwW7syyZ7DtdOJAAECBAgQIECAAAECBMYkIKAPt61zkxw2XDudCBAgQIAAAQIECBAgQGBMAgL6cNs6Nclxw7XTiQABAgQIECBAgAABAgTGJCCgD7etLpx3Id1BgAABAgQIECBAgAABAgTWCQjowz0U3cfbu4+5OwgQIECAAAECBAgQIECAgIBe8RnoviCu+6I4BwECBAgQIECAAAECBAgQENArPwOXJrl55Rm0J0CAAAECBAgQIECAAIEGBXzEfdilnJPk8GFb6kaAAAECBAgQIECAAAECYxAQ0Ifd0u8k+e1hW+pGgAABAgQIECBAgAABAmMQENCH3dLjk5w2bEvdCBAgQIAAAQIECBAgQGAMAgL6sFvyTe7DeutGgAABAgQIECBAgACB0QgI6MOuaq8k3x+2pW4ECBAgQIAAAQIECBAgMAYBAX34LV229jH3/YZvqyMBAgQIECBAgAABAgQItCwgoA+/nQ8lud/wbXUkQIAAAQIECBAgQIAAgZYFBPSMRNRYAAAgAElEQVTht/O6tY+5P3n4tjoSIECAAAECBAgQIECAQMsCAvrw23likjcM31ZHAgQIECBAgAABAgQIEGhZQEAffjv3SfKR4dvqSIAAAQIECBAgQIAAAQItCwjow2/n5kkuHb6tjgQIECBAgAABAgQIECDQsoCAXmc7/5zkBnVa60qAAAECBAgQIECAAAECLQoI6HW28ukkd63TWlcCBAgQIECAAAECBAgQaFFAQK+zlbcneUSd1roSIECAAAECBAgQIECAQIsCAnqdrZyY5KQ6rXUlQIAAAQIECBAgQIAAgRYFBPQ6WzkmybvrtNaVAAECBAgQIECAAAECBFoUENDrbOXQJOfVaa0rAQIECBAgQIAAAQIECLQoIKDX2cp1kvxbki112utKgAABAgQIECBAgAABAq0JCOj1NnJJkv3rtdeZAAECBAgQIECAAAECBFoSENDrbeMjSe5Tr73OBAgQIECAAAECBAgQINCSgIBebxu/n+Q36rXXmQABAgQIECBAgAABAgRaEhDQ623jGUleWa+9zgQIECBAgAABAgQIECDQkoCAXm8bD0zy/nrtdSZAgAABAgQIECBAgACBlgQE9HrbuG2Sv63XXmcCBAgQIECAAAECBAgQaElAQK+3ja1J/t1PrdVbgM4ECBAgQIAAAQIECBBoSUBAr7uNbyS5Rd0RdCdAgAABAgQIECBAgACBFgQE9LpbOCfJ4XVH0J0AAQIECBAgQIAAAQIEWhAQ0Otu4dQkx9UdQXcCBAgQIECAAAECBAgQaEFAQK+7heOTnFJ3BN0JECBAgAABAgQIECBAoAUBAb3uFh6S5D11R9CdAAECBAgQIECAAAECBFoQENDrbuFOST5XdwTdCRAgQIAAAQIECBAgQKAFAQG97hb2THJl3RF0J0CAAAECBAgQIECAAIEWBAT0+lv4XpK9649hAgIECBAgQIAAAQIECBCoKSCg19Tf1vszSe5SfwwTECBAgAABAgQIECBAgEBNAQG9pv623n+S5Ffqj2ECAgQIECBAgAABAgQIEKgpIKDX1N/W++VJnll/DBMQIECAAAECBAgQIECAQE0BAb2m/rbeT0jyxvpjmIAAAQIECBAgQIAAAQIEagoI6DX1t/U+PMk59ccwAQECBAgQIECAAAECBAjUFBDQa+pv633rJF+tP4YJCBAgQIAAAQIECBAgQKCmgIBeU39b793X/gb935PYRf1dmIAAAQIECBAgQIAAAQLVBITCavTXaPztJDdrYxRTECBAgAABAgQIECBAgEANAQG9hvr6nn+V5OfaGMUUBAgQIECAAAECBAgQIFBDQECvob6+5zuTPKyNUUxBgAABAgQIECBAgAABAjUEBPQa6ut7viLJCW2MYgoCBAgQIECAAAECBAgQqCEgoNdQX9/zSUle38YopiBAgAABAgQIECBAgACBGgICeg319T2PTHJWG6OYggABAgQIECBAgAABAgRqCAjoNdTX97xDki+0MYopCBAgQIAAAQIECBAgQKCGgIBeQ319z72SfL+NUUxBgAABAgQIECBAgAABAjUEBPQa6jvu+S9J9mhnHJMQIECAAAECBAgQIECAwJACAvqQ2jvvdUGSg9sZxyQECBAgQIAAAQIECBAgMKSAgD6k9s57fTjJfdsZxyQECBAgQIAAAQIECBAgMKSAgD6k9s57vS3Jo9oZxyQECBAgQIAAAQIECBAgMKSAgD6k9s57vSTJc9sZxyQECBAgQIAAAQIECBAgMKSAgD6k9s57HZfk1HbGMQkBAgQIECBAgAABAgQIDCkgoA+pvfNeD0zy/nbGMQkBAgQIECBAgAABAgQIDCkgoA+pvfNed07y2XbGMQkBAgQIECBAgAABAgQIDCkgoA+pvfNe+yb5+3bGMQkBAgQIECBAgAABAgQIDCkgoA+pvXGv/0iy+8anOYMAAQIECBAgQIAAAQIEpiYgoLe10a8nuWVbI5mGAAECBAgQIECAAAECBIYQENCHUF68xyeT3H3x051JgAABAgQIECBAgAABAlMRENDb2uSfJvnltkYyDQECBAgQIECAAAECBAgMISCgD6G8eI/XJ3nS4qc7kwABAgQIECBAgAABAgSmIiCgt7XJE5Oc1NZIpiFAgAABAgQIECBAgACBIQQE9CGUF+/x2CRvXvx0ZxIgQIAAAQIECBAgQIDAVAQE9LY2eUSSs9sayTQECBAgQIAAAQIECBAgMISAgD6E8uI97pLkM4uf7kwCBAgQIECAAAECBAgQmIqAgN7WJm+a5PK2RjINAQIECBAgQIAAAQIECAwhIKAPobx4j12S/GDti+K6fx0ECBAgQIAAAQIECBAgMCMBAb29ZXdv0Ls36Q4CBAgQIECAAAECBAgQmJGAgN7esj+f5I7tjWUiAgQIECBAgAABAgQIEOhTQEDvU3e52uckOXy5S11FgAABAgQIECBAgAABAmMVENDb29wfJfm19sYyEQECBAgQIECAAAECBAj0KSCg96m7XO1XJ3nacpe6igABAgQIECBAgAABAgTGKiCgt7e545Oc0t5YJiJAgAABAgQIECBAgACBPgUE9D51l6v9mCRvWe5SVxEgQIAAAQIECBAgQIDAWAUE9PY2d2SSs9oby0QECBAgQIAAAQIECBAg0KeAgN6n7nK175bkU8td6ioCBAgQIECAAAECBAgQGKuAgN7e5g5KcmF7Y5mIAAECBAgQIECAAAECBPoUEND71F2u9p5JrlzuUlcRIECAAAECBAgQIECAwFgFBPQ2N/eDJFvbHM1UBAgQIECAAAECBAgQINCHgIDeh+rqNb+T5Carl1GBAAECBAgQIECAAAECBMYiIKC3uakvJ/npNkczFQECBAgQIECAAAECBAj0ISCg96G6es1zkxy2ehkVCBAgQIAAAQIECBAgQGAsAgJ6m5t6X5IHtTmaqQgQIECAAAECBAgQIECgDwEBvQ/V1Wu+JcljVi+jAgECBAgQIECAAAECBAiMRUBAb3NTr0ry9DZHMxUBAgQIECBAgAABAgQI9CEgoPehunrN5yZ5yeplVCBAgAABAgQIECBAgACBsQgI6G1u6vFJTmtzNFMRIECAAAECBAgQIECAQB8CAnofqqvXPDrJGauXUYEAAQIECBAgQIAAAQIExiIgoLe5qfuu/czah9sczVQECBAgQIAAAQIECBAg0IeAgN6H6uo175LkM6uXUYEAAQIECBAgQIAAAQIExiIgoLe5qYOSXNjmaKYiQIAAAQIECBAgQIAAgT4EBPQ+VFev+eNJrli9jAoECBAgQIAAAQIECBAgMBYBAb3NTW1N8oM2RzMVAQIECBAgQIAAAQIECPQhIKD3oVqm5r8luV6ZUqoQIECAAAECBAgQIECAQOsCAnq7G7ps7bfQ92t3PJMRIECAAAECBAgQIECAQEkBAb2kZtlaX0nyU2VLqkaAAAECBAgQIECAAAECrQoI6K1uJvlUkru1O57JCBAgQIAAAQIECBAgQKCkgIBeUrNsrT9P8otlS6pGgAABAgQIECBAgAABAq0KCOitbiZ5d5Jj2h3PZAQIECBAgAABAgQIECBQUkBAL6lZttabkjyubEnVCBAgQIAAAQIECBAgQKBVAQG91c0kr03ylHbHMxkBAgQIECBAgAABAgQIlBQQ0Etqlq31kiTPLVtSNQIECBAgQIAAAQIECBBoVUBAb3UzybOSvKzd8UxGgAABAgQIECBAgAABAiUFBPSSmmVrPTHJG8qWVI0AAQIECBAgQIAAAQIEWhUQ0FvdTPKoJG9rdzyTESBAgAABAgQIECBAgEBJAQG9pGbZWkcnOaNsSdUIECBAgAABAgQIECBAoFUBAb3VzSQPSPKBdsczGQECBAgQIECAAAECBAiUFBDQS2qWrXVYknPLllSNAAECBAgQIECAAAECBFoVENBb3UxyaJLz2h3PZAQIECBAgAABAgQIECBQUkBAL6lZttaBSS4qW1I1AgQIECBAgAABAgQIEGhVQEBvdTPJzZNc2u54JiNAgAABAgQIECBAgACBkgICeknNsrX2THJl2ZKqESBAgAABAgQIECBAgECrAgJ6q5tJrpPk39sdz2QECBAgQIAAAQIECBAgUFJAQC+pWb7Wf5YvqSIBAgQIECBAgAABAgQItCggoLe4latm+tck1297RNMRIECAAAECBAgQIECAQAkBAb2EYn81ur9B7/4W3UGAAAECBAgQIECAAAECExcQ0Nte8CVJ9m97RNMRIECAAAECBAgQIECAQAkBAb2EYn81Lk5yQH/lVSZAgAABAgQIECBAgACBVgQE9FY2seM5vpjk9m2PaDoCBAgQIECAAAECBAgQKCEgoJdQ7K/Gp5Pctb/yKhMgQIAAAQIECBAgQIBAKwICeiub2PEc5yY5rO0RTUeAAAECBAgQIECAAAECJQQE9BKK/dX4UJL79VdeZQIECBAgQIAAAQIECBBoRUBAb2UTO57j7CRHtD2i6QgQIECAAAECBAgQIECghICAXkKxvxoCen+2KhMgQIAAAQIECBAgQKApAQG9qXWsG+bdSY5pe0TTESBAgAABAgQIECBAgEAJAQG9hGJ/NU5Pcmx/5VUmQIAAAQIECBAgQIAAgVYEBPRWNrHjOQT0tvdjOgIECBAgQIAAAQIECBQTENCLUfZS6A+S/HovlRUlQIAAAQIECBAgQIAAgaYEBPSm1rFumFOTHNf2iKYjQIAAAQIECBAgQIAAgRICAnoJxf5qCOj92apMgAABAgQIECBAgACBpgQE9KbWsW6YVyQ5oe0RTUeAAAECBAgQIECAAAECJQQE9BKK/dV4WZJn9VdeZQIECBAgQIAAAQIECBBoRUBAb2UTO55DQG97P6YjQIAAAQIECBAgQIBAMQEBvRhlL4UE9F5YFSVAgAABAgQIECBAgEB7AgJ6ezu5+kQCetv7MR0BAgQIECBAgAABAgSKCQjoxSh7KfScJCf3UllRAgQIECBAgAABAgQIEGhKQEBvah3rhum+IK57i+4gQIAAAQIECBAgQIAAgYkLCOhtL1hAb3s/piNAgAABAgQIECBAgEAxAQG9GGUvhQT0XlgVJUCAAAECBAgQIECAQHsCAnp7O7n6RAJ62/sxHQECBAgQIECAAAECBIoJCOjFKHspJKD3wqooAQIECBAgQIAAAQIE2hMQ0NvbiTfobe/EdAQIECBAgAABAgQIEOhFQEDvhbVYUW/Qi1EqRIAAAQIECBAgQIAAgbYFBPS29yOgt70f0xEgQIAAAQIECBAgQKCYgIBejLKXQgJ6L6yKEiBAgAABAgQIECBAoD0BAb29nVx9IgG97f2YjgABAgQIECBAgAABAsUEBPRilL0UEtB7YVWUAAECBAgQIECAAAEC7QkI6O3txBv0tndiOgIECBAgQIAAAQIECPQiIKD3wlqsqDfoxSgVIkCAAAECBAgQIECAQNsCAnrb+xHQ296P6QgQIECAAAECBAgQIFBMQEAvRtlLIQG9F1ZFCRAgQIAAAQIECBAg0J6AgN7eTq4+0clJntP2iKYjQIAAAQIECBAgQIAAgRICAnoJxf5qvCxJ9xbdQYAAAQIECBAgQIAAAQITFxDQ216wgN72fkxHgAABAgQIECBAgACBYgICejHKXgoJ6L2wKkqAAAECBAgQIECAAIH2BAT09nZy9YkE9Lb3YzoCBAgQIECAAAECBAgUExDQi1H2UugNSZ7YS2VFCRAgQIAAAQIECBAgQKApAQG9qXWsG+bUJMe1PaLpCBAgQIAAAQIECBAgQKCEgIBeQrG/GqcleXx/5VUmQIAAAQIECBAgQIAAgVYEBPRWNrHjOU5PcmzbI5qOAAECBAgQIECAAAECBEoICOglFPurIaD3Z6syAQIECBAgQIAAAQIEmhIQ0Jtax7phzkhydNsjmo4AAQIECBAgQIAAAQIESggI6CUU+6txdpIj+iuvMgECBAgQIECAAAECBAi0IiCgt7KJHc8hoLe9H9MRIECAAAECBAgQIECgmICAXoyyl0IfTXLvXiorSoAAAQIECBAgQIAAAQJNCQjoTa1j3TDnJjms7RFNR4AAAQIECBAgQIAAAQIlBAT0Eor91fibJD/TX3mVCRAgQIAAAQIECBAgQKAVAQG9lU3seI4vJrl92yOajgABAgQIECBAgAABAgRKCAjoJRT7q3FxkgP6K68yAQIECBAgQIAAAQIECLQiIKC3sokdz/GtJD/R9oimI0CAAAECBAgQIECAAIESAgJ6CcX+alyZZM/+yqtMgAABAgQIECBAgAABAq0ICOitbGLHc/xHkt3bHtF0BAgQIECAAAECBAgQIFBCQEAvodhfjf/sr7TKBAgQIECAAAECBAgQINCSgIDe0jauOcsNkvxzu+OZjAABAgQIECBAgAABAgRKCgjoJTXL1to7yffKllSNAAECBAgQIECAAAECBFoVENBb3Uyyf5JL2h3PZAQIECBAgAABAgQIECBQUkBAL6lZttbBSS4oW1I1AgQIECBAgAABAgQIEGhVQEBvdTPJHZN8vt3xTEaAAAECBAgQIECAAAECJQUE9JKaZWsdluTcsiVVI0CAAAECBAgQIECAAIFWBQT0VjeTHJHk7HbHMxkBAgQIECBAgAABAgQIlBQQ0Etqlq31sCTvLFtSNQIECBAgQIAAAQIECBBoVUBAb3UzyeOSvKnd8UxGgAABAgQIECBAgAABAiUFBPSSmmVrPTXJa8qWVI0AAQIECBAgQIAAAQIEWhUQ0FvdTPK8JC9udzyTESBAgAABAgQIECBAgEBJAQG9pGbZWq9IckLZkqoRIECAAAECBAgQIECAQKsCAnqrm0lOTXJcu+OZjAABAgQIECBAgAABAgRKCgjoJTXL1jo9ybFlS6pGgAABAgQIECBAgAABAq0KCOitbiZ5f5IHtjueyQgQIECAAAECBAgQIECgpICAXlKzbK2PJLlP2ZKqESBAgAABAgQIECBAgECrAgJ6q5tJPpfkTu2OZzICBAgQIECAAAECBAgQKCkgoJfULFvr4iQHlC2pGgECBAgQIECAAAECBAi0KiCgt7qZ5B+T3Kjd8UxGgAABAgQIECBAgAABAiUFBPSSmuVqdXv5P+XKqUSAAAECBAgQIECAAAECrQsI6G1uaO8k32tzNFMRIECAAAECBAgQIECAQB8CAnofqqvXvFWSr61eRgUCBAgQIECAAAECBAgQGIuAgN7mpu6S5DNtjmYqAgQIECBAgAABAgQIEOhDQEDvQ3X1mvdN8uHVy6hAgAABAgQIECBAgAABAmMRENDb3NRDkrynzdFMRYAAAQIECBAgQIAAAQJ9CAjofaiuXvNxSd60ehkVCBAgQIAAAQIECBAgQGAsAgJ6m5t6RpJXtjmaqQgQIECAAAECBAgQIECgDwEBvQ/V1Wu+LMmzVi+jAgECBAgQIECAAAECBAiMRUBAb3NTb07y2DZHMxUBAgQIECBAgAABAgQI9CEgoPehunrNM5MctXoZFQgQIECAAAECBAgQIEBgLAICepub+sskP9/maKYiQIAAAQIECBAgQIAAgT4EBPQ+VFeveUGSg1cvowIBAgQIECBAgAABAgQIjEVAQG9zU/+Q5MZtjmYqAgQIECBAgAABAgQIEOhDQEDvQ3W1mrsm+d+rlXA1AQIECBAgQIAAAQIECIxNQEBvb2M3SfKd9sYyEQECBAgQIECAAAECBAj0KSCg96m7XO1Dkpy/3KWuIkCAAAECBAgQIECAAIGxCgjo7W3u3kk+2t5YJiJAgAABAgQIECBAgACBPgUE9D51l6t9dJIzlrvUVQQIECBAgAABAgQIECAwVgEBvb3NPTHJG9oby0QECBAgQIAAAQIECBAg0KeAgN6n7nK1X5Tk+ctd6ioCBAgQIECAAAECBAgQGKuAgN7e5t6c5LHtjWUiAgQIECBAgAABAgQIEOhTQEDvU3e52n+W5JeWu9RVBAgQIECAAAECBAgQIDBWAQG9vc19Osld2xvLRAQIECBAgAABAgQIECDQp4CA3qfucrW/neRmy13qKgIECBAgQIAAAQIECBAYq4CA3tbmun38IMlubY1lGgIECBAgQIAAAQIECBDoW0BA71t4c/X3TfL3m7vE2QQIECBAgAABAgQIECAwBQEBva0tHprkvLZGMg0BAgQIECBAgAABAgQIDCEgoA+hvHiPw5Ocs/jpziRAgAABAgQIECBAgACBqQgI6G1t8tFJ3trWSKYhQIAAAQIECBAgQIAAgSEEBPQhlBfv8cwkL1/8dGcSIECAAAECBAgQIECAwFQEBPS2Nvm6JE9uayTTECBAgAABAgQIECBAgMAQAgL6EMqL9/jTJL+8+OnOJECAAAECBAgQIECAAIGpCAjobW3yb5L8TFsjmYYAAQIECBAgQIAAAQIEhhAQ0IdQXrzH5UluuvjpziRAgAABAgQIECBAgACBqQgI6O1scmuS/0hiJ+3sxCQECBAgQIAAAQIECBAYTEAYHIx6w0YHJLl4w7OcQIAAAQIECBAgQIAAAQKTFBDQ21nrPZJ8op1xTEKAAAECBAgQIECAAAECQwoI6ENq77zXw5O8o51xTEKAAAECBAgQIECAAAECQwoI6ENq77zX8UlOaWcckxAgQIAAAQIECBAgQIDAkAIC+pDaO+/1uiRPbmcckxAgQIAAAQIECBAgQIDAkAIC+pDaO+/13iQPbmcckxAgQIAAAQIECBAgQIDAkAIC+pDaO+/16SR3bWcckxAgQIAAAQIECBAgQIDAkAIC+pDaO+/13ST7tDOOSQgQIECAAAECBAgQIEBgSAEBfUjta+91gyT/3MYopiBAgAABAgQIECBAgACBGgICeg319T1vn+SLbYxiCgIECBAgQIAAAQIECBCoISCg11Bf3/PIJGe1MYopCBAgQIAAAQIECBAgQKCGgIBeQ319z99K8rttjGIKAgQIECBAgAABAgQIEKghIKDXUF/f89Vrf4P+tDZGMQUBAgQIECBAgAABAgQI1BAQ0Guor+95ZpKj2hjFFAQIECBAgAABAgQIECBQQ0BAr6G+vucXktyhjVFMQYAAAQIECBAgQIAAAQI1BAT0Gurre16ZZM82RjEFAQIECBAgQIAAAQIECNQQENBrqF+z515Jvl9/DBMQIECAAAECBAgQIECAQE0BAb2m/rbed0ryufpjmIAAAQIECBAgQIAAAQIEagoI6DX1t/V+SJL31B/DBAQIECBAgAABAgQIECBQU0BAr6m/rfczk7y8/hgmIECAAAECBAgQIECAAIGaAgJ6Tf1tvd+c5LH1xzABAQIECBAgQIAAAQIECNQUENBr6m/r/fEk96w/hgkIECBAgAABAgQIECBAoKaAgF5Tf1vvS5PcvP4YJiBAgAABAgQIECBAgACBmgICek39ZI8k/1J3BN0JECBAgAABAgQIECBAoAUBAb3uFg5Ncl7dEXQnQIAAAQIECBAgQIAAgRYEBPS6Wzg6yRl1R9CdAAECBAgQIECAAAECBFoQENDrbuHZSV5adwTdCRAgQIAAAQIECBAgQKAFAQG97hb8xFpdf90JECBAgAABAgQIECDQjICAXncVn0hyj7oj6E6AAAECBAgQIECAAAECLQgI6HW3cFmS/eqOoDsBAgQIECBAgAABAgQItCAgoNfbwg2T/FO99joTIECAAAECBAgQIECAQEsCAnq9bdwtyafqtdeZAAECBAgQIECAAAECBFoSENDrbeNRSd5Wr73OBAgQIECAAAECBAgQINCSgIBebxsvT/LMeu11JkCAAAECBAgQIECAAIGWBAT0ets4K8mR9drrTIAAAQIECBAgQIAAAQItCQjo9bbx1SS3rtdeZwIECBAgQIAAAQIECBBoSUBAr7ON3ZP8W5Jd6rTXlQABAgQIECBAgAABAgRaExDQ62zkdkm+VKe1rgQIECBAgAABAgQIECDQooCAXmcrxyR5d53WuhIgQIAAAQIECBAgQIBAiwICep2tPC/Ji+u01pUAAQIECBAgQIAAAQIEWhQQ0Ots5R1JHl6nta4ECBAgQIAAAQIECBAg0KKAgF5nK19Icoc6rXUlQIAAAQIECBAgQIAAgRYFBPTht7Jrkn9N0n2Tu4MAAQIECBAgQIAAAQIECPw/AQF9+Afhtkn+dvi2OhIgQIAAAQIECBAgQIBAywIC+vDbeWiSdw3fVkcCBAgQIECAAAECBAgQaFlAQB9+Oy9J8tzh2+pIgAABAgQIECBAgAABAi0LCOjDb+f9SR44fFsdCRAgQIAAAQIECBAgQKBlAQF9+O1cnOSA4dvqSIAAAQIECBAgQIAAAQItCwjow27nBkn+yZfzDYuuGwECBAgQIECAAAECBMYgIKAPu6WfS/JXw7bUjQABAgQIECBAgAABAgTGICCgD7ulJyR547AtdSNAgAABAgQIECBAgACBMQgI6MNu6dQkxw3bUjcCBAgQIECAAAECBAgQGIOAgD7sls5NctiwLXUjQIAAAQIECBAgQIAAgTEICOjDbunKJHsO21I3AgQIECBAgAABAgQIEBiDgIA+3JZuleRrw7XTiQABAgQIECBAgAABAgTGJCCgD7ethyR5z3DtdCJAgAABAgQIECBAgACBMQkI6MNt66QkJw7XTicCBAgQIECAAAECBAgQGJOAgD7ctj6Q5AHDtdOJAAECBAgQIECAAAECBMYkIKAPt63vJLnJcO10IkCAAAECBAgQIECAAIExCQjow2zrZkm+PUwrXQgQIECAAAECBAgQIEBgjAIC+jBb+6UkfzZMK10IECBAgAABAgQIECBAYIwCAvowW3tekhcP00oXAgQIECBAgAABAgQIEBijgIA+zNbOTHLUMK10IUCAAAECBAgQIECAAIExCgjow2ztkiT7D9NKFwIECBAgQIAAAQIECBAYo4CA3v/W9kny3f7b6ECAAAECBAgQINE5ZfgAABkGSURBVECAAAECYxYQ0Pvf3uFJzum/jQ4ECBAgQIAAAQIECBAgMGYBAb3/7T0nycn9t9GBAAECBAgQIECAAAECBMYsIKD3v733J3lg/210IECAAAECBAgQIECAAIExCwjo/W/v8iQ37b+NDgQIECBAgAABAgQIECAwZgEBvd/tdd/c3n2Du4MAAQIECBAgQIAAAQIECOxUQEDv9wE5OskZ/bZQnQABAgQIECBAgAABAgSmICCg97vFU5Ic328L1QkQIECAAAECBAgQIEBgCgICer9b/Iskv9BvC9UJECBAgAABAgQIECBAYAoCAnp/W9wlyZVJ9uivhcoECBAgQIAAAQIECBAgMBUBAb2/TR6a5Lz+yqtMgAABAgQIECBAgAABAlMSEND72+Zjk7y5v/IqEyBAgAABAgQIECBAgMCUBAT0/rb5B0l+vb/yKhMgQIAAAQIECBAgQIDAlAQE9P62+YUkd+ivvMoECBAgQIAAAQIECBAgMCUBAb2fbXZfDNd9QVz3RXEOAgQIECBAgAABAgQIECCwoYCAviHRUifcL8mHlrrSRQQIECBAgAABAgQIECAwSwEBvZ+1Pz/Ji/oprSoBAgQIECBAgAABAgQITFFAQO9nqx9I8oB+SqtKgAABAgQIECBAgAABAlMUENDLb3VLku8luVH50ioSIECAAAECBAgQIECAwFQFBPTymz0kyfnly6pIgAABAgQIECBAgAABAlMWENDLb/fxSU4rX1ZFAgQIECBAgAABAgQIEJiygIBefrt/mOSR5cuqSIAAAQIECBAgQIAAAQJTFhDQy2/3oiQHli+rIgECBAgQIECAAAECBAhMWUBAL7vdmyX5dtmSqhEgQIAAAQIECBAgQIDAHAQE9LJb/pUkf1K2pGoECBAgQIAAAQIECBAgMAcBAb3sll+f5EllS6pGgAABAgQIECBAgAABAnMQENDLbvmLSW5ftqRqBAgQIECAAAECBAgQIDAHAQG93Jb3SXJFEqblTFUiQIAAAQIECBAgQIDAbASEyXKrfkiS95QrpxIBAgQIECBAgAABAgQIzElAQC+37d9N8lvlyqlEgAABAgQIECBAgAABAnMSENDLbdvfn5ezVIkAAQIECBAgQIAAAQKzExDQy6z8xmvf3v5df39eBlMVAgQIECBAgAABAgQIzFFAQC+z9QcneW+ZUqoQIECAAAECBAgQIECAwBwFBPQyW/f352UcVSFAgAABAgQIECBAgMBsBQT0Mqv/QpI7lCmlCgECBAgQIECAAAECBAjMUUBAX33r3d+fd79/vmX1UioQIECAAAECBAgQIECAwFwFBPTVN3/U2tvzM1cvowIBAgQIECBAgAABAgQIzFlAQF99+69L8uTVy6hAgAABAgQIECBAgAABAnMWENBX3/75SQ5ZvYwKBAgQIECAAAECBAgQIDBnAQF9te3fPMmlq5VwNQECBAgQIECAAAECBAgQSAT01Z6CX0vyR6uVcDUBAgQIECBAgAABAgQIEBDQV30G/jjJr65axPUECBAgQIAAAQIECBAgQMAb9NWegcuS7LdaCVcTIECAAAECBAgQIECAAAFv0Fd5Bm6X5EurFHAtAQIECBAgQIAAAQIECBD4oYA36Ms/C09J8trlL3clAQIECBAgQIAAAQIECBC4SkBAX/5pODvJEctf7koCBAgQIECAAAECBAgQICCgr/oM7Jbk+0n2WLWQ6wkQIECAAAECBAgQIECAQCfgDfpyz8E9knxiuUtdRYAAAQIECBAgQIAAAQIE1gsI6Ms9FS9O8rzlLnUVAQIECBAgQIAAAQIECBAQ0Es9A59McvdSxdQhQIAAAQIECBAgQIAAAQLeoG/+Gdg7yRVJdtn8pa4gQIAAAQIECBAgQIAAAQI7FhDQN/9kHJvk9M1f5goCBAgQIECAAAECBAgQIHDtAgL65p+OP07yq5u/zBUECBAgQIAAAQIECBAgQEBAL/UMbElyeZJ9SxVUhwABAgQIECBAgAABAgQIdALeoG/uObhbkk9t7hJnEyBAgAABAgQIECBAgACBjQUE9I2Nrn7G89f+p8aLNneJswkQIECAAAECBAgQIECAwMYCAvrGRlc/o3t73r1FdxAgQIAAAQIECBAgQIAAgaICAvrinD+e5DtJur9DdxAgQIAAAQIECBAgQIAAgaICAvrinH5ebXErZxIgQIAAAQIECBAgQIDAJgUE9MXBut8+70K6gwABAgQIECBAgAABAgQIFBcQ0Bcj7T7W/vdJ9lnsdGcRIECAAAECBAgQIECAAIHNCQjoi3n5ebXFnJxFgAABAgQIECBAgAABAksKCOiLwb00ybMXO9VZBAgQIECAAAECBAgQIEBg8wIC+mJm5yc5ZLFTnUWAAAECBAgQIECAAAECBDYvIKBvbHZgkos2Ps0ZBAgQIECAAAECBAgQIEBgeQEBfWO7pyZ5zcanOYMAAQIECBAgQIAAAQIECCwvIKBvbPfRJPfe+DRnECBAgAABAgQIECBAgACB5QUE9J3b7Z3kiiS7LE/sSgIECBAgQIAAAQIECBAgsLGAgL5zo19N8scbMzqDAAECBAgQIECAAAECBAisJiCg79zv3UmOWY3Y1QQIECBAgAABAgQIECBAYGMBAf3ajXbf/vH2G27M6AwCBAgQIECAAAECBAgQILCagIB+7X6/mOTPV+N1NQECBAgQIECAAAECBAgQWExAQL92p1OTHLcYo7MIECBAgAABAgQIECBAgMBqAgL6jv06l28m+YnVeF1NgAABAgQIECBAgAABAgQWExDQd+x0tySfWozQWQQIECBAgAABAgQIECBAYHUBAX3Hhq9M8ozVeVUgQIAAAQIECBAgQIAAAQKLCQjoO3a6OMkBixE6iwABAgQIECBAgAABAgQIrC4goK83vHOSz65OqwIBAgQIECBAgAABAgQIEFhcQEBfb3VykucsTuhMAgQIECBAgAABAgQIECCwuoCAvt7wgiQHr06rAgECBAgQIECAAAECBAgQWFxAQL+m1e2SfGlxPmcSIECAAAECBAgQIECAAIEyAgL6NR1fmOQFZWhVIUCAAAECBAgQIECAAAECiwsI6Ne06t6ed2/RHQQIECBAgAABAgQIECBAYFABAf0q7u7vzru/P3cQIECAAAECBAgQIECAAIHBBQT0q8ifm+Qlg29AQwIECBAgQIAAAQIECBAgkERAv+ox6H77vPsNdAcBAgQIECBAgAABAgQIEBhcQEDfRn6bJH83uL6GBAgQIECAAAECBAgQIEBgu4CAvg2i++b27hvcHQQIECBAgAABAgQIECBAoIqAgL6NvXt73r1FdxAgQIAAAQIECBAgQIAAgSoCAnpypySfq6KvKQECBAgQIECAAAECBAgQ2C4goCenJDneE0GAAAECBAgQIECAAAECBGoKzD2gd/f/9SS3qLkEvQkQIECAAAECBAgQIECAwNwD+mFJzvUYECBAgAABAgQIECBAgACB2gJzD+i/l+Q3ay9BfwIECBAgQIAAAQIECBAgMOeAvkuSy5Ls6zEgQIAAAQIECBAgQIAAAQK1BeYc0A9Pck7tBehPgAABAgQIECBAgAABAgQ6gTkH9LckeYzHgAABAgQIECBAgAABAgQItCAw14C+e5LvJLlRC0swAwECBAgQIECAAAECBAgQmGtAf0iS91g/AQIECBAgQIAAAQIECBBoRWCuAf19SR7UyhLMQYAAAQIECBAgQIAAAQIE5hjQb7z929u3Wj8BAgQIECBAgAABAgQIEGhFYI4B/bi1n1Y7tZUFmIMAAQIECBAgQIAAAQIECHQCcwzof5Xk56yfAAECBAgQIECAAAECBAi0JDC3gH5Qkq/O9H9MtPTcmYUAAQIECBAgQIAAAQIEfkRgbgH9xUme5ykgQIAAAQIECBAgQIAAAQKtCcwpoG9J8rUkt2xtCeYhQIAAAQIECBAgQIAAAQJzCuj3SvIxKydAgAABAgQIECBAgAABAi0KzCmg/2GSR7a4BDMRIECAAAECBAgQIECAAIG5BPQ9klyepPvXQYAAAQIECBAgQIAAAQIEmhOYS0B/dJK3NqdvIAIECBAgQIAAAQIECBAgsF1gLgH9E0nuYesECBAgQIAAAQIECBAgQKBVgTkE9Nsk+YrfPm/1ETQXAQIECBAgQIAAAQIECHQCcwjoL0/yTOsmQIAAAQIECBAgQIAAAQItC0w9oO+a5NIkN2l5CWYjQIAAAQIECBAgQIAAAQJTD+hHJTnTmgkQIECAAAECBAgQIECAQOsCUw/oZyc5ovUlmI8AAQIECBAgQIAAAQIECEw5oN88yTeSdB9zdxAgQIAAAQIECBAgQIAAgaYFphzQn5Pk5Kb1DUeAAAECBAgQIECAAAECBLYLTDWgd/d1UZJb2TQBAgQIECBAgAABAgQIEBiDwFQD+n2SfGQMCzAjAQIECBAgQIAAAQIECBDoBKYa0E9PcqwVEyBAgAABAgQIECBAgACBsQhMMaDvleSyJNcZyxLMSYAAAQIECBAgQIAAAQIEphjQn5LktVZLgAABAgQIECBAgAABAgTGJDC1gN7dz1eS3GZMSzArAQIECBAgQIAAAQIECBCYWkC/b5IPWysBAgQIECBAgAABAgQIEBibwNQC+hlJjh7bEsxLgAABAgQIECBAgAABAgSmFND3S/LNJLtaKwECBAgQIECAAAECBAgQGJvAlAL689d+Nu5FY1uAeQkQIECAAAECBAgQIECAQCcwlYDevTW/OMlPWisBAgQIECBAgAABAgQIEBijwFQC+lFJzhzjAsxMgAABAgQIECBAgAABAgSm9Ab9z5P8opUSIECAAAECBAgQIECAAIGxCkzhDfpBSS5IsmWsSzA3AQIECBAgQIAAAQIECBCYQkB/ZZJnWCUBAgQIECBAgAABAgQIEBizwNgD+nW3/7TaPmNegtkJECBAgAABAgQIECBAgMDYA/qjkrzNGgkQIECAAAECBAgQIECAwNgFxh7QP5fkTmNfgvkJECBAgAABAgQIECBAgMCYA/q9knzMCgkQIECAAAECBAgQIECAwBQExhzQ35vkwVNYgnsgQIAAAQIECBAgQIAAAQJjDej7J/lakl2tkAABAgQIECBAgAABAgQITEFgrAHdT6tN4elzDwQIECBAgAABAgQIECDw/wXGGND3SPKtJDeyRwIECBAgQIAAAQIECBAgMBWBMQb030jy+1NZgPsgQIAAAQIECBAgQIAAAQKdwNgCejfv+Ulua30ECBAgQIAAAQIECBAgQGBKAmML6PdP8sEpLcC9ECBAgAABAgQIECBAgACBMb5B/x9J/qvVESBAgAABAgQIECBAgACBqQmM6Q36QUkuSLJlaktwPwQIECBAgAABAgQIECBAYEwB/XeT/JaVESBAgAABAgQIECBAgACBKQqMJaDvk+SSJNeb4hLcEwECBAgQIECAAAECBAgQGEtAPzHJSdZFgAABAgQIECBAgAABAgSmKjCGgL41yTeS7DfVJbgvAgQIECBAgAABAgQIECAwhoD+mCRvsSoCBAgQIECAAAECBAgQIDBlgdYDejff+UluO+UluDcCBAgQIECAAAECBAgQINB6QO9+87z77XMHAQIECBAgQIAAAQIECBCYtEDrAf1jSe416Q24OQIECBAgQIAAAQIECBAgkKTlgP6zSf7alggQIECAAAECBAgQIECAwBwEWg7oZ6z9/fnRc1iCeyRAgAABAgQIECBAgAABAq0G9IOSXJBkixURIECAAAECBAgQIECAAIE5CLQa0N+Y5AlzWIB7JECAAAECBAgQIECAAAECnUCLAX2/JF9Lcl0rIkCAAAECBAgQIECAAAECcxFoMaCfkuT4uSzAfRIgQIAAAQIECBAgQIAAgRbfoO+d5JIke1gPAQIECBAgQIAAAQIECBCYk0Brb9BfmOQFc1qAeyVAgAABAgQIECBAgAABAq29Qe/emndvz7u36A4CBAgQIECAAAECBAgQIDArgZbeoJ+w9sVwr5iVvpslQIAAAQIECBAgQIAAAQLbBVoJ6N03tl+c5KY2Q4AAAQIECBAgQIAAAQIE5ijQSkB/YpI3zHEB7pkAAQIECBAgQIAAAQIECHQCLQT03ZJcmOQWVkKAAAECBAgQIECAAAECBOYq0EJAf/RaOH/rXBfgvgkQIECAAAECBAgQIECAQAtv0Lck+fL/be/uXaS8ojgA/9AFJaAE/AgIdoGN+EEQC5sUSaFdSCFB0gQURSwsQtpgsBULCxElgTQhiIXYJUUCKdKIuGJsVPKniO7FEc2yHzO7M3Pv3H3eZmEZeM95ztv89ux7J8m8cRAgQIAAAQIECBAgQIAAgc0sUHuD/nWSO5t5AHonQIAAAQIECBAgQIAAAQK1N+jljwOPkxwxCgIECBAgQIAAAQIECBAgsNkFam7QTyW5u9kHoH8CBAgQIECAAAECBAgQIFBzg2577vkjQIAAAQIECBAgQIAAAQLvCdTaoNueewwJECBAgAABAgQIECBAgEDlgF5Obi/vnh82CQIECBAgQIAAAQIECBAgQOCNQI0NupPbPX0ECBAgQIAAAQIECBAgQGCJwLQDetmeP1k8HO6gSRAgQIAAAQIECBAgQIAAAQLvBKYd0E8n+c0ACBAgQIAAAQIECBAgQIAAgf8LTDOgl+350yQHDIEAAQIECBAgQIAAAQIECBCoF9Btzz19BAgQIECAAAECBAgQIEBgBYFpbdBtzz2CBAgQIECAAAECBAgQIEBgFYFpBfRvkvxqEgQIECBAgAABAgQIECBAgMDyAtMI6HODd8/nDYEAAQIECBAgQIAAAQIECBCoF9DPJvnJAAgQIECAAAECBAgQIECAAIGVBSa9Qd+e5HmS/YZAgAABAgQIECBAgAABAgQI1Avo3yW5ZgAECBAgQIAAAQIECBAgQIDA6gKT3KDvTPJfkt2GQIAAAQIECBAgQIAAAQIECNQL6JcXb/2jARAgQIAAAQIECBAgQIAAAQJrC0xqg1625mV7XrboLgIECBAgQIAAAQIECBAgQGANgUkF9PLeeXn/3EWAAAECBAgQIECAAAECBAgMITCJgF5ObC8nt5cT3F0ECBAgQIAAAQIECBAgQIDAEAKTCOjlO8/Ld5+7CBAgQIAAAQIECBAgQIAAgSEFxh3QP0nyb5K5Ie/vYwQIECBAgAABAgQIECBAgECScQf0u0lOkSVAgAABAgQIECBAgAABAgRGExhnQD+W5MEEQv9oHfk0AQIECBAgQIAAAQIECBCYQYFxBvS/knw+gwZKJkCAAAECBAgQIECAAAEC1QXGFdC/THK/ejcKIECAAAECBAgQIECAAAECMyowjoBeDoR7kuTAjBoomwABAgQIECBAgAABAgQIVBcYR0C/kORm9U4UQIAAAQIECBAgQIAAAQIEZlhgowF9R5IXiwH9oxk2UDoBAgQIECBAgAABAgQIEKgusNGAfiXJD9W7UAABAgQIECBAgAABAgQIEJhxgY0E9H2D7fkHM26gfAIECBAgQIAAAQIECBAgUF1gIwH95yRnqnegAAIECBAgQIAAAQIECBAg0IHAegP64SQLSbZ2YKAFAgQIECBAgAABAgQIECBQXWC9Af33JCerV68AAgQIECBAgAABAgQIECDQicB6AvqJJH900r82CBAgQIAAAQIECBAgQIBAEwKjBvTyL+2PkhxponpFECBAgAABAgQIECBAgACBTgRGDejnktzupHdtECBAgAABAgQIECBAgACBZgRGCeg7B1+rtreZ6hVCgAABAgQIECBAgAABAgQ6ERgloF9N8n0nfWuDAAECBAgQIECAAAECBAg0JTBsQP84ydMk25qqXjEECBAgQIAAAQIECBAgQKATgWED+r0kX3XSszYIECBAgAABAgQIECBAgEBzAsME9C+S/Nlc5QoiQIAAAQIECBAgQIAAAQIdCawV0OeSLCQ51FHPWiFAgAABAgQIECBAgAABAs0JrBXQLyW53lzVCiJAgAABAgQIECBAgAABAp0JrBbQ9yR5nuTDznrWDgECBAgQIECAAAECBAgQaE5gtYB+K8n55ipWEAECBAgQIECAAAECBAgQ6FBgpYD+aZKHSbZ22LOWCBAgQIAAAQIECBAgQIBAcwLLBfTyu78XT27/rLlqFUSAAAECBAgQIECAAAECBDoVWC6gf5vkl0771RYBAgQIECBAgAABAgQIEGhSYGlALwfCPUuyt8lqFUWAAAECBAgQIECAAAECBDoVWBrQbyS52Gmv2iJAgAABAgQIECBAgAABAs0KvB/QjyZ54GC4ZmelMAIECBAgQIAAAQIECBDoWOBtQN+S5J8kxzvuVWsECBAgQIAAAQIECBAgQKBZgbcB/VyS281WqTACBAgQIECAAAECBAgQINC5QAnouwYHw5WfLgIECBAgQIAAAQIECBAgQKCCQAnoZXNeNuguAgQIECBAgAABAgQIECBAoJJACegvk5R30F0ECBAgQIAAAQIECBAgQIBAJYES0F9VurfbEiBAgAABAgQIECBAgAABAgOB19g3IC7fZqITAAAAAElFTkSuQmCC' x='0' y='0' width='1000' height='800'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  z-index: -1;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1000ms ease-in;
  transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  z-index: -1;
}

.main-slider-two .swiper-slide-active .main-slider-two__bg {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-two__content {
  position: relative;
  display: block;
  padding-top: 225px;
  padding-bottom: 225px;
  z-index: 10;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-secondary);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}

.main-slider-two__sub-title-shape {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--farmology-secondary);
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 55px;
  color: var(--farmology-extra);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 23px;
  margin-bottom: 21px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two__title span {
  color: var(--farmology-secondary);
}

.main-slider-two .swiper-slide-active .main-slider-two__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-two__text {
  color: rgba(var(--farmology-black-rgb), 1);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-two__btn {
  position: relative;
  display: block;
  line-height: 0;
}

.main-slider-two__video-link {
  position: relative;
  display: block;
}

.main-slider-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--farmology-base);
  background-color: rgba(var(--farmology-extra-rgb), 1);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-two__video-icon:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-black);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

#main-slider-two-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  max-width: 100px;
  width: 100%;
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0 auto !important;
  height: auto;
  line-height: 0;
  counter-reset: count;
}

#main-slider-two-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 50px;
}

#main-slider-two-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  border-radius: 0;
  background-color: rgba(var(--farmology-white-rgb), .50);
  margin: 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

#main-slider-two-pagination .swiper-pagination-bullet::before {
  position: absolute;
  height: 40px;
  width: 40px;
  border: 1px solid transparent;
  background: rgba(var(--farmology-white-rgb), .20);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  counter-increment: count;
  content: ""counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -20px;
  left: -40px;
}

#main-slider-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-color: var(--farmology-extra);
  color: var(--farmology-base);
  border: 1px solid var(--farmology-extra);
}

#main-slider-two-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(var(--farmology-extra-rgb), 1);
  width: 60px;
}


/*--------------------------------------------------------------
  # Main Slider Three
  --------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--farmology-primary);
}

.main-slider-three__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1000ms ease-in;
  transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  z-index: -1;
}

.main-slider-three__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--farmology-extra-rgb), .9);
  z-index: -1;
}

.main-slider-three .swiper-slide-active .main-slider-three__bg {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-three__content {
  position: relative;
  display: block;
  padding-top: 389px;
  padding-bottom: 215px;
  z-index: 10;
}

.main-slider-three__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-three__sub-title {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-base);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}

.main-slider-three__sub-title-shape {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--farmology-base);
}

.main-slider-three__title {
  position: relative;
  display: block;
  font-size: 55px;
  color: var(--farmology-white);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 23px;
  margin-bottom: 21px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-three__title span {
  color: var(--farmology-base);
}

.main-slider-three .swiper-slide-active .main-slider-three__title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-slider-three__text {
  color: rgba(var(--farmology-white-rgb), .70);
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.main-slider-three__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.main-slider-three__btn {
  position: relative;
  display: block;
  line-height: 0;
}

.main-slider-three__btn .thm-btn {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.main-slider-three__btn .thm-btn .hover-btn {
  background-color: var(--farmology-white);
}

.main-slider-three__video-link {
  position: relative;
  display: block;
}

.main-slider-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--farmology-extra);
  background-color: rgba(var(--farmology-base-rgb), 1);
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.main-slider-three__video-icon:hover {
  background-color: var(--farmology-white);
  color: var(--farmology-black);
}

.main-slider-three__video-link .ripple,
.main-slider-three__video-icon .ripple:before,
.main-slider-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

#main-slider-three-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 40px;
  width: 100%;
  position: absolute;
  top: 56%;
  left: 30px;
  bottom: 0;
  padding: 0;
  margin: 0 auto !important;
  counter-reset: count;
  transform: translateY(-50%);
}

#main-slider-three-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-top: 10px;
}

#main-slider-three-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: transparent;
  margin: 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

#main-slider-three-pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 40px;
  width: 40px;
  border: 1px solid transparent;
  background: rgba(var(--farmology-white-rgb), .20);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-white);
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  counter-increment: count;
  content: ""counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#main-slider-three-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  border: 1px solid var(--farmology-extra);
}

#main-slider-three-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(var(--farmology-extra-rgb), 1);
}

.main-slider-three__form-box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto 0;
}

.main-slider-three__form {
  position: absolute;
  top: 59%;
  transform: translateY(-50%);
  right: 0;
  max-width: 500px;
  width: 100%;
  padding: 40px 50px 50px;
  z-index: 5;
}

.main-slider-three__form::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(var(--farmology-black-rgb), 0.7);
  clip-path: polygon(84% 0, 100% 14%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
  content: "";
  border-radius: var(--farmology-bdr-radius);
}

.main-slider-three__form .title-box {
  position: relative;
  display: block;
  margin-bottom: 27px;
}

.main-slider-three__form .title-box h2 {
  color: var(--farmology-white);
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider-three__form form {
  position: relative;
}

.main-slider-three__form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.main-slider-three__form form .form-group input[type="text"],
.main-slider-three__form form .form-group input[type="email"],
.main-slider-three__form form .form-group input[type="tel"],
.main-slider-three__form form .form-group input[type="url"],
.main-slider-three__form form .form-group textarea {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-white);
  font-weight: 400;
  text-transform: none;
  padding: 0px 25px 0px;
  width: 100%;
  height: 50px;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  outline: none;
  border: none;
  font-family: var(--farmology-font);
}

.main-slider-three__form form .form-group textarea {
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.main-slider-three__form form .form-group .nice-select {
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  color: var(--farmology-white);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 25px;
  padding-right: 25px;
}

.main-slider-three__form form .form-group .nice-select:after {
  right: 27px;
  border-bottom: 2px solid var(--farmology-white);
  border-right: 2px solid var(--farmology-white);
}

.main-slider-three__form form .form-group .button-box {
  position: relative;
  display: block;
}

.main-slider-three__form form .button-box button {
  border: none;
  width: 100%;
}





/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  display: block;
  padding: 200px 0 200px;
  background-color: var(--farmology-primary);
  overflow: hidden;
  z-index: 5;
}

.banner-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: .10;
  z-index: -1;
}

.banner-one__shape-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.banner-one__shape-4 img {
  width: auto;
}

.banner-one__shape-5 {
  position: absolute;
  bottom: 16px;
  right: 0;
  z-index: -1;
}

.banner-one__shape-5 img {
  width: auto;
}

.banner-one__shape-6 {
  position: absolute;
  top: 55px;
  left: 30px;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.banner-one__shape-6 img {
  width: auto;
}

.banner-one__shape-7 {
  position: absolute;
  bottom: 70px;
  left: 795px;
  z-index: -1;
}

.banner-one__shape-7 img {
  width: auto;
}

.banner-one__shape-8 {
  position: absolute;
  top: 100px;
  left: 845px;
  z-index: -1;
}

.banner-one__shape-8 img {
  width: auto;
}

.banner-one__inner {
  position: relative;
  display: block;
}

.banner-one__left {
  position: relative;
  display: block;
  margin-right: -50px;
  z-index: 3;
}

.banner-one__title-box {
  position: relative;
  display: block;
}

.banner-one__sub-title {
  position: relative;
  display: block;
}

.banner-one__sub-title p {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-secondary);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}

.banner-one__title {
  position: relative;
  font-size: 60px;
  color: var(--farmology-extra);
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  margin-top: 24px;
}

.banner-one__title span {
  color: var(--farmology-secondary);
}

.banner-one__text {
  position: relative;
  display: block;
  font-size: 18px;
  color: rgba(var(--farmology-black-rgb), 1);
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 44px;
}

.banner-one__thm-and-other-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.banner-one__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.banner-one__video-link {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
}

.banner-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--farmology-base);
  background-color: rgba(var(--farmology-extra-rgb), 1);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-one__video-icon:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-black);
}

.banner-one__video-link .ripple,
.banner-one__video-icon .ripple:before,
.banner-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-extra-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.banner-one__video-title {
  font-size: 20px;
  color: var(--farmology-extra);
  font-weight: 700;
  line-height: 1em;
}

.banner-one__right {
  position: absolute;
  bottom: -200px;
  right: 0;
}

.banner-one__img-box {
  position: relative;
  display: block;
}

.banner-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.banner-one__img>img {
  width: 100%;
  animation: topBottom 3s ease-in-out infinite;
}

.banner-one__img-shape-box {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  width: 552px;
  height: 552px;
  background: rgba(var(--farmology-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: -1;
}

.banner-one__img-shape-1 {
  position: relative;
  width: 451px;
  height: 451px;
  background: rgba(var(--farmology-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-one__img-shape-2 {
  position: relative;
  width: 368px;
  height: 368px;
  background: rgba(var(--farmology-base-rgb), .40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-one__shape-1 {
  position: absolute;
  top: 51px;
  left: 0;
}

.banner-one__shape-1 img {
  width: auto
}

.banner-one__shape-2 {
  position: absolute;
  top: 126px;
  left: 0;
}

.banner-one__shape-2 img {
  width: auto
}

.banner-one__shape-3 {
  position: absolute;
  top: 32px;
  right: 0;
}

.banner-one__shape-3 img {
  width: auto
}

.banner-one__discount-box {
  position: absolute;
  top: 150px;
  left: -65px;
  height: 160px;
  width: 160px;
  background-color: var(--farmology-white);
  border: 5px solid var(--farmology-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.banner-one__discount-box h3 {
  font-size: 35px;
  line-height: 1em;
  font-weight: 700;
  color: var(--farmology-extra);
}

.banner-one__discount-box p {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--farmology-black);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.banner-one__client-review {
  position: absolute;
  background-color: var(--farmology-white);
  border-radius: 16px;
  padding: 25px 15px 25px;
  max-width: 215px;
  width: 100%;
  top: 80px;
  right: -110px;
  border: 5px solid var(--farmology-base);
}

.banner-one__client-review-img {
  position: absolute;
  top: -16px;
  right: -12px;
  max-width: 56px;
  border-radius: 50%;
}

.banner-one__client-review-img img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--farmology-base);
}

.banner-one__client-review-text {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.banner-one__client-review-text h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
}

.banner-one__client-review-client-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner-one__client-review-client-name {
  font-size: 16px;
  color: var(--farmology-gray);
  font-weight: 600;
  line-height: 16px;
}

.banner-one__client-review-star {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
}

.banner-one__client-review-star span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--farmology-base);
}

.banner-one__happy-customer {
  position: absolute;
  background-color: var(--farmology-white);
  border-radius: 12px;
  padding: 15px 15px 15px;
  max-width: 200px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  bottom: 85px;
  right: -130px;
  border: 5px solid var(--farmology-base);
}

.banner-one__happy-customer-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-one__happy-customer-list li+li {
  margin-left: -10px;
}

.banner-one__happy-customer-img {
  position: relative;
  display: block;
  max-width: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.banner-one__happy-customer-img img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--farmology-base);
}

.banner-one__happy-customer-plus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
  z-index: -1;
}

.banner-one__happy-customer-count-box {
  position: relative;
  display: block;
  margin-top: 15px;
}

.banner-one__happy-customer-count-box-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.banner-one__happy-customer-count-box-inner p {
  font-size: 30px;
  color: var(--farmology-base);
  font-weight: 700;
  line-height: 30px;
}

.banner-one__happy-customer-count-box-inner span {
  font-size: 30px;
  color: var(--farmology-base);
  font-weight: 700;
  line-height: 30px;
}

.banner-one__happy-customer-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-black);
  margin-top: 3px;
}

/***=============================================
About One
=============================================***/
.about-one {
  position: relative;
  display: block;
  padding: 90px 0 120px;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 180px;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: 0;
}

.about-one__img-shape-1 {
  position: absolute;
  top: 0;
  right: -140px;
  z-index: -1;
}

.about-one__img-shape-1 img {
  width: auto;
}

.about-one__shape-1 {
  position: absolute;
  bottom: -250px;
  left: 77px;
  z-index: -1;
  transform: rotate(-25deg);
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__field-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--farmology-extra);
  margin-left: 200px;
  margin-right: -130px;
  gap: 20px;
  padding: 25px 30px 40px;
  border-bottom-left-radius: 175px;
  border-bottom-right-radius: 175px;
  border: 1px solid var(--farmology-base);
  border-top: 0;
}

.about-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__count-box h3 {
  font-size: 45px;
  font-weight: 700;
  font-family: var(--farmology-font-three) !important;
  line-height: 45px !important;
  color: var(--farmology-base);
}

.about-one__count-box span {
  font-size: 45px;
  font-weight: 700;
  font-family: var(--farmology-font-three) !important;
  line-height: 45px !important;
  color: var(--farmology-base);
}

.about-one__field-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--farmology-white);
}

.about-one__crop-harvest {
  position: absolute;
  bottom: 0;
  right: -130px;
  background-color: var(--farmology-primary);
  text-align: center;
  padding: 30px 30px 25px;
  border-top-right-radius: 100px;
  border-top: 1px solid var(--farmology-base);
  border-right: 1px solid var(--farmology-base);
  z-index: -1;
}

.about-one__crop-harvest-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.about-one__crop-harvest-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.about-one__crop-harvest-icon span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: var(--farmology-extra);
}

.about-one__crop-harvest-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--farmology-extra);
  text-transform: capitalize;
  margin: 5px 0 5px;
}

.about-one__crop-harvest-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__crop-harvest-count h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--farmology-font-three);
  line-height: 32px;
  color: var(--farmology-extra);
}

.about-one__crop-harvest-count span {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--farmology-font-three);
  line-height: 32px;
  color: var(--farmology-extra);
}

.about-one__right {
  position: relative;
  display: block;
}

.about-one__right .section-title {
  margin-bottom: 19px;
}

.about-one__title-1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin: 20px 0 12px;
}

.about-one__points-box-and-since {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-one__points {
  position: relative;
  display: block;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
  top: 7px;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--farmology-base);
}

.about-one__points li p {
  flex: 1;
}

.about-one__points li+li {
  margin-top: 7px;
}

.about-one__since-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: var(--farmology-primary);
  width: 200px;
  height: 200px;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--farmology-base);
}

.about-one__since-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.about-one__since-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-base);
  border-radius: 50%;
}

.about-one__since-icon span {
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: var(--farmology-base);
}

.about-one__since-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  margin-top: 8px;
}

.about-one__since-year {
  font-size: 34px;
  font-weight: 700;
  font-family: var(--farmology-font-three);
  line-height: 34px;
  color: var(--farmology-extra);
}


.about-one__btn-and-video {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
}

.about-one__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.about-one__video-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-one__video-link {
  position: relative;
  display: block;
}

.about-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.about-one__video-icon:hover {
  background-color: var(--farmology-extra);
  color: var(--farmology-base);
}

.about-one__video-link .ripple,
.about-one__video-icon .ripple:before,
.about-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-one__video-text {
  font-weight: 600;
  color: var(--farmology-black);
  font-family: var(--farmology-font-two);
}

/***=============================================
    Author One
=============================================***/
.author-one {
  position: relative;
  display: block;
  background: linear-gradient(0deg, rgba(247, 243, 229, 1) 0%, rgba(253, 187, 45, 0) 100%);
  counter-reset: count;
  z-index: 1;
}

.author-one__img-box {
  position: relative;
  display: block;
  margin-left: -32px;
  margin-right: -32px;
}

.author-one__img {
  position: relative;
  display: block;
  z-index: 2;
}

.author-one__img img {
  width: 100%;
}

.author-one__text-box {
  position: absolute;
  background-color: var(--farmology-extra);
  padding: 20px 30px 17px;
  border-radius: var(--farmology-bdr-radius);
  border-bottom-left-radius: 14px;
  bottom: 42px;
  right: 14px;
  max-width: 285px;
  width: 100%;
  z-index: 3;
}

.author-one__text {
  color: var(--farmology-primary);
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 24px;
}

.author-one__info {
  position: relative;
  display: block;
}

.author-one__info h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: var(--farmology-base);
}

.author-one__info p {
  color: var(--farmology-white);
  font-size: 14px;
}

.author-one__sign {
  position: absolute;
  bottom: 7px;
  right: 10px;
  max-width: 90px;
  width: 100%;
}

.author-one__sign img {
  width: 100%;
}

.author-one__Vission-mission {
  position: relative;
  display: block;
  margin-top: 100px;
  text-align: center;
}

.author-one__Vission-mission-title {
  position: relative;
  display: inline-block;
  background-color: var(--farmology-extra);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--farmology-base);
  padding: 5px 15px 5px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.author-one__Vission-mission-title::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 7px;
  background-color: var(--farmology-extra);
}

.author-one__Vission-mission-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--farmology-extra);
}

.author-one__Vission-mission-point {
  position: relative;
  display: block;
}

.author-one__Vission-mission-point li {
  position: relative;
  display: block;
}

.author-one__Vission-mission-point li+li {
  margin-top: 30px;
}

.author-one__Vission-mission-point li p {
  position: relative;
  display: inline-block;
  background-color: var(--farmology-primary);
  border: 1px solid var(--farmology-base);
  font-weight: 500;
  color: var(--farmology-extra);
  padding: 6px 15px 6px;
  border-radius: 20px;
  text-align: center;
}

.author-one__Vission-mission-point li p::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 7px;
  background-color: var(--farmology-extra);
}

.author-one__Vission-mission-point li p::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--farmology-extra);
}

.author-one__Vission-mission-point li:last-child p::before,
.author-one__Vission-mission-point li:last-child p::after {
  display: none;
}














.author-one__ratting-box-inner {
  position: absolute;
  bottom: 130px;
  left: 15px;
}

.author-one__ratting-box {
  position: absolute;
  bottom: 135px;
  left: 20px;
  width: 200px;
  height: 200px;
  background-color: var(--farmology-primary);
  border: 1px solid var(--farmology-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 1;
}

.author-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 3px 0 11px;
}

.author-one__ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--farmology-secondary);
}

.author-one__ratting-title {
  font-weight: 700;
  color: var(--farmology-extra);
  font-size: 14px;
}

.author-one__ratting-text {
  line-height: 22px;
}

.author-one__ratting-text-two {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  padding: 3px 5px 5px;
  width: 90px;
  margin: 10px auto 0;
  border-radius: 2px;
}

.author-one__ratting-text-two span {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  display: block;
  color: var(--farmology-base);
}

.author-one__ratting-box-content {
  position: relative;
  display: block;
}

.author-one__ratting-box-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}

.author-one__ratting-box-shape img {
  width: auto;
}

.author-one__img-shape {
  position: absolute;
  bottom: 155px;
  right: 95px;
  transform: rotate(-23deg);
  z-index: 1;
}

.author-one__img-shape img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.author-one__text-box-shape-1 {
  position: absolute;
  bottom: -42px;
  left: 5px;
}

.author-one__text-box-shape-1 img {
  width: auto;
}

/***=============================================
 Services One
=============================================***/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
  border-radius: var(--farmology-bdr-radius);
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 25px 34px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.services-one__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .20);
  border-radius: 5px;
  z-index: -1;
}

.services-one__single-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-one__single-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__single-bg {
  opacity: 1;
  transform: translateY(0px);
}

.services-one__btn-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.services-one__single:hover .services-one__btn-box {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 500ms;
}

.services-one__btn-box .thm-btn {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.services-one__btn-box .hover-btn {
  background-color: var(--farmology-white);
}

.services-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  margin: 0 auto;
}

.services-one__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-base);
  border-radius: 50%;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--farmology-base);
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin: 30px 0 12px;
}

.services-one__title a {
  color: var(--farmology-black);
}

.services-one__text {
  margin-bottom: 10px;
}

.services-one__read-more {
  position: relative;
  display: inline-block;
}

.services-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
  color: var(--farmology-extra);
}

.services-one__read-more a span {
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding: 158px 0 120px;
  background-color: var(--farmology-extra);
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.video-one__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 100px;
  text-align: center;
  font-size: 20px;
  color: var(--farmology-extra);
  background-color: var(--farmology-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 5;
}

.video-one__icon:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.video-one__link .ripple,
.video-one__icon .ripple:before,
.video-one__icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.video-one__icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-one__sub-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-base);
  margin: 20px 0 10px;
}

.video-one__title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: var(--farmology-white);
  line-height: 50px;
  text-transform: capitalize;
}

.video-one__round-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.video-one__curved-circle {
  position: relative;
  display: block;
  color: var(--farmology-white);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  top: -162px;
  left: -15px;
  bottom: 0;
  right: 0;
}

.video-one__round-text-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.video-one__curved-circle-2 {
  position: relative;
  display: block;
  color: var(--farmology-white);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  top: 183px;
  left: 0;
  bottom: 0;
  right: 0;
}


/***=============================================
    Feature One
=============================================***/
.feature-one {
  position: relative;
  display: block;
  padding: 170px 0 0;
  z-index: 10;
}

.feature-one__single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-primary);
  margin-bottom: 30px;
  padding: 32px 40px 32px;
  z-index: 2;
}

.feature-one__single:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .20);
  border-radius: var(--farmology-bdr-radius);
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.feature-one__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-base);
  border-radius: 50%;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--farmology-base);
}

.feature-one__content {
  position: relative;
  display: block;
  flex: 1;
}

.feature-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 13px;
}

.feature-one__single-two {
  position: relative;
  display: block;
  text-align: center;
  padding: 70px 50px 30px;
  margin-top: -50px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-one__icon-two {
  position: relative;
  display: inline-block;
}

.feature-one__icon-two span {
  position: relative;
  display: inline-block;
  font-size: 52px;
  color: var(--farmology-base);
}

.feature-one__award-year {
  position: relative;
  display: block;
  font-size: 40px;
  font-weight: 900;
  font-family: var(--farmology-font-three);
  margin: 8px 0 10px;
  color: var(--farmology-secondary);
}

.feature-one__title-two {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--farmology-white);
}

.feature-one__single-two-bg-color {
  position: absolute;
  top: 0;
  left: -60px;
  right: -60px;
  bottom: 0;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.feature-one__single-two-shape-1 {
  position: absolute;
  top: 35px;
  left: 30px;
  z-index: -1;
}

.feature-one__single-two-shape-1 img {
  width: auto;
}

.feature-one__single-two-shape-2 {
  position: absolute;
  top: 35px;
  right: 30px;
  z-index: -1;
}

.feature-one__single-two-shape-2 img {
  width: auto;
}

.feature-one__single-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.feature-one__ratting {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
}

.feature-one__ratting li {
  position: relative;
  display: inline-block;
}

.feature-one__ratting li:nth-child(2) span {
  font-size: 35px;
}

.feature-one__ratting li span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 165px 0 0;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.brand-one__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.brand-one__single a {
  position: relative;
  display: block;
  padding: 36px 20px 36px;
  z-index: 1;
}

.brand-one__single a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(var(--farmology-base-rgb), .40);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.brand-one__single img {
  width: auto;
}



/*--------------------------------------------------------------
# Products One
--------------------------------------------------------------*/
.products-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 2;
}

.products-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.products-one__img-box {
  position: relative;
  display: block;
}

.products-one__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  overflow: hidden;
}

.products-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--farmology-black-rgb), 0.6);
  opacity: 0;
  z-index: 1;
  content: "";
}

.products-one__single:hover .products-one__img::before {
  opacity: 1;
}

.products-one__img img {
  width: 100%;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.products-one__single:hover .products-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.products-one__content {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
}

.products-one__icon-and-title {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  padding: 25px 50px 31px;
  z-index: 1;
}

.products-one__icon-and-title::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px dashed rgba(var(--farmology-primary-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.products-one__icon-and-title::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 80px;
  height: 10px;
  background-color: var(--farmology-extra);
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 5px;
}

.products-one__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 56px;
  background-color: var(--farmology-extra);
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: 2;
}

.products-one__icon::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 80px;
  height: 47px;
  border-left: 1px dashed rgba(var(--farmology-primary-rgb), .50);
  border-right: 1px dashed rgba(var(--farmology-primary-rgb), .50);
  border-bottom: 1px dashed rgba(var(--farmology-primary-rgb), .50);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: -1;
}

.products-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--farmology-base);
  top: -15px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.products-one__single:hover .products-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.products-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.products-one__title a {
  color: var(--farmology-white);
}

.products-one__title a:hover {
  color: var(--farmology-base);
}

.products-one__text-and-read-more {
  position: relative;
  display: block;
  padding: 56px 30px 22px;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.products-one__text {
  margin-bottom: 8px;
}

.products-one__read-more {
  position: relative;
  display: inline-block;
}

.products-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--farmology-extra);
  font-weight: 500;
}

.products-one__read-more a:hover {
  color: var(--farmology-base);
}

.products-one__read-more a>span {
  color: var(--farmology-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.products-one__text-and-read-more-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/*==============================================
   Counter One
===============================================*/
.counter-one {
  position: relative;
  display: block;
  z-index: 1;
}

.counter-one__bg-color {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(247, 243, 229, 1) 0%, rgba(253, 187, 45, 0) 100%);
}

.counter-one__inner {
  position: relative;
  display: block;
}

.counter-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 25px;
  z-index: 1;
}

.counter-one__single-shape-1 {
  position: absolute;
  top: 62%;
  right: -15px;
  width: 1px;
  height: 70px;
  background-color: var(--farmology-base);
  transform: translateY(-50%);
}

.counter-one__icon {
  position: relative;
  display: inline-block;
  padding-top: 15px;
  z-index: 1;
}

.counter-one__icon::before {
  content: "";
  position: absolute;
  top: 63%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.counter-one__icon-shape-1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 40px;
  border: 1px dashed var(--farmology-extra);
  border-bottom: 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  transform: translateX(-50%);
}

.counter-one__icon-shape-2 {
  position: absolute;
  bottom: -23px;
  left: 50%;
  width: 80px;
  height: 40px;
  background-color: var(--farmology-extra);
  transform: translateX(-50%);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  z-index: -1;
}

.counter-one__icon-shape-2::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  top: 0;
  border: 1px dashed var(--farmology-white);
  border-top: 0;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 39px;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 35%, rgba(78, 52, 46, 1) 35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.counter-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--farmology-extra);
  text-transform: capitalize;
  margin: 36px 0 5px;
}

.counter-one__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-one__count-box h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-extra);
}

.counter-one__count-box span {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-extra);
}

/*==============================================
   Why Choose One
===============================================*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 90px 0 115px;
  z-index: 1;
}

.why-choose-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.why-choose-one__shape-1 {
  position: absolute;
  top: -100px;
  right: -63px;
  z-index: -1;
}

.why-choose-one__shape-1 img {
  width: auto;
}

.why-choose-one__shape-2 {
  position: absolute;
  bottom: 100px;
  left: -178px;
  z-index: -1;
}

.why-choose-one__shape-2 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.why-choose-one__inner .row {
  --bs-gutter-x: 10px;
}

.why-choose-one__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  margin-bottom: 10px;
  padding: 40px 25px 32px;
  z-index: 1;
}

.why-choose-one__single-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.why-choose-one__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.why-choose-one__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  margin: 17px 0 7px;
}

.why-choose-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  margin: 0 auto;
}

.why-choose-one__icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-base);
  border-radius: 50%;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--farmology-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__single:hover .why-choose-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.why-choose-one__img {
  position: absolute;
  right: -315px;
  bottom: -115px;
}

.why-choose-one__img img {
  width: auto;
}

/*==============================================
    Project One
===============================================*/
.project-one {
  position: relative;
  display: block;
  padding: 120px 0 135px;
  z-index: 1;
}

.project-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.project-one__img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: var(--farmology-bdr-radius);
  background: linear-gradient(0deg, rgba(68, 44, 38, 1) 13%, rgba(253, 187, 45, 0) 100%);
  z-index: 1;
}

.project-one__img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-primary-rgb), 80);
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.project-one__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale(1.0);
  transition: all 1000ms ease;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.project-one__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  text-align: center;
  z-index: 2;
}

.project-one__sub-title {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--farmology-font-three);
  color: var(--farmology-base);
  opacity: 1;
  transform: translateY(0);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__sub-title {
  opacity: 0;
  transform: translateY(50px);
  transition-delay: 100ms;
}

.project-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin: 3px 0 12px;
  opacity: 1;
  transform: translatey(0px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__title {
  opacity: 0;
  transform: translatey(-60px);
  transition-delay: 200ms;
}

.project-one__title a {
  color: var(--farmology-white);
}

.project-one__title a:hover {
  color: var(--farmology-base);
}

.project-one__arrow {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__arrow {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 900ms;
}

.project-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  font-size: 16px;
  color: var(--farmology-black);
}

.project-one__arrow a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.project-one__content-2 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  text-align: center;
  z-index: 2;
  padding: 30px 35px 30px;
}

.project-one__sub-title-2 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--farmology-font-three);
  color: var(--farmology-base);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__sub-title-2 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-one__title-2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin: 3px 0 10px;
  opacity: 0;
  transform: translateX(-60px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__title-2 {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 700ms;
}

.project-one__title-2 a {
  color: var(--farmology-white);
}

.project-one__title-2 a:hover {
  color: var(--farmology-base);
}

.project-one__text {
  color: var(--farmology-white);
  margin-bottom: 18px;
  opacity: 0;
  transform: translatex(60px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
}

.project-one__single:hover .project-one__text {
  opacity: 1;
  transform: translatex(0%);
  transition-delay: 700ms;
}

/*==============================================
    Do And Donts
===============================================*/
.do-and-donts {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  padding: 100px 0 100px;
  z-index: 1;
}

.do-and-donts__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.do-and-donts__left {
  position: relative;
  display: block;
}

.do-and-donts__right {
  position: relative;
  display: block;
}

.do-and-donts__right .do-and-donts__single-title {
  left: 40%;
}

.do-and-donts__single-title {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 120px;
  height: 120px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.do-and-donts__single-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--farmology-extra);
  border-radius: 50%;
  z-index: -1;
}

.do-and-donts__single-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--farmology-base-rgb), .50);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  z-index: -1;
}

.do-and-donts__single-title span {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--farmology-font-three);
  color: var(--farmology-black);
}

.do-and-donts__single {
  position: relative;
  display: block;
  text-align: center;
  max-width: 158px;
  background-color: var(--farmology-primary);
  padding: 28px 25px 28px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180' height='190' viewBox='0 0 180 190'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='180' height='190'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180' height='190' viewBox='0 0 180 190'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='180' height='190'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  z-index: 1;
}

.do-and-donts__single-one {
  position: relative;
  display: block;
  text-align: center;
  max-width: 158px;
  background-color: var(--farmology-primary);
  padding: 28px 25px 28px;
  margin-left: auto;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180' height='190' viewBox='0 0 180 190'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='180' height='190'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='180' height='190' viewBox='0 0 180 190'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='180' height='190'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  z-index: 1;
}

.do-and-donts__single-bg-shape {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  opacity: .15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
}

.do-and-donts__icon span {
  position: relative;
  display: inline-block;
}

.do-and-donts__icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--farmology-extra);
  font-weight: 600;
}

.do-and-donts__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 5px;
  text-transform: capitalize;
}

.do-and-donts__single-1 {
  margin-left: 90px;
}

.do-and-donts__single-2 {
  margin-top: -35px;
}

.do-and-donts__single-3 {
  margin-left: 90px;
  margin-top: -35px;
}

.do-and-donts__single-4 {
  position: absolute;
  top: 0px;
  right: -6px;
}

.do-and-donts__single-5 {
  position: absolute;
  bottom: 0;
  right: -6px;
}

.do-and-donts__single-6 {
  margin-right: 90px;
}

.do-and-donts__single-7 {
  margin-top: -35px;
}

.do-and-donts__single-8 {
  margin-right: 90px;
  margin-top: -35px;
}

.do-and-donts__single-9 {
  position: absolute;
  top: 0px;
  left: -6px;
}

.do-and-donts__single-10 {
  position: absolute;
  bottom: 0;
  left: -6px;
}

.do-and-donts__middle {
  position: relative;
  display: block;
  margin-top: 160px;
  margin-left: -100px;
  margin-right: -100px;
}

.do-and-donts__middle .section-title {
  margin-bottom: 26px;
}

.do-and-donts__middle .section-title__tagline {
  color: var(--farmology-primary);
}

.do-and-donts__middle .section-title__title {
  color: var(--farmology-white);
  font-size: 35px;
}

.do-and-donts__middle-text {
  position: relative;
  display: block;
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
  color: rgba(var(--farmology-white-rgb), .50);
}

.do-and-donts__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 21px;
}

.do-and-donts__btn-box .thm-btn {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.do-and-donts__btn-box .hover-btn {
  background-color: var(--farmology-white);
}

.do-and-donts__img {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
}

.do-and-donts__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(0deg, rgba(68, 44, 38, 1) 15%, rgba(253, 187, 45, 0) 100%);
  z-index: 2;
}

.do-and-donts__img img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.do-and-donts__single-shape-1 {
  position: absolute;
  top: 50%;
  width: 1px;
  left: 5px;
  height: 65px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: translateY(-50%);
}

.do-and-donts__single-shape-1::before {
  content: "";
  position: absolute;
  top: -65px;
  left: 34px;
  width: 1px;
  height: 82px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: rotate(60deg);
}

.do-and-donts__single-shape-1::after {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 34px;
  width: 1px;
  height: 82px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: rotate(-60deg);
}

.do-and-donts__single-shape-2 {
  position: absolute;
  top: 50%;
  width: 1px;
  right: 5px;
  height: 65px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: translateY(-50%);
}

.do-and-donts__single-shape-2::before {
  content: "";
  position: absolute;
  top: -65px;
  right: 36px;
  width: 1px;
  height: 82px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: rotate(-60deg);
}

.do-and-donts__single-shape-2::after {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 36px;
  width: 1px;
  height: 82px;
  border: 1px dashed rgba(var(--farmology-black-rgb), .40);
  transform: rotate(60deg);
}

/*==============================================
   Faq One
===============================================*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 50px;
}

.faq-one__contact-box {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  text-align: center;
  padding: 60px 60px 60px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.faq-one__contact-box-bg-shape {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  top: 15px;
  opacity: 0.06;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.faq-one__contact-box::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .20);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.faq-one__contact-shape-1 {
  position: absolute;
  bottom: 0;
  right: -20px;
  z-index: -1;
}

.faq-one__contact-shape-1 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.faq-one__author-box-inner {
  position: relative;
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.faq-one__author-box {
  position: relative;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  z-index: 1;
}

.faq-one__author-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .50);
  border-radius: 50%;
  z-index: -1;
}

.faq-one__author-shape-1 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: -1;
  transform: rotate(5deg);
}

.faq-one__author-shape-1>img {
  width: auto;
}

.faq-one__author-img {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.faq-one__author-img img {
  width: 100%;
}

.faq-one__author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  text-transform: capitalize;
  margin: 3px 0 0;
}

.faq-one__author-name a {
  color: var(--farmology-black);
}

.faq-one__author-name a:hover {
  color: var(--farmology-secondary);
}

.faq-one__author-sub-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--farmology-secondary);
}

.faq-one__contact-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 35px 0 11px;
  text-transform: capitalize;
}

.faq-one__contact-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 10px;
}

.faq-one__contact-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  font-size: 16px;
  color: var(--farmology-extra);
  border: 1px solid var(--farmology-base);
}

.faq-one__contact-social a:hover {
  border: 1px solid var(--farmology-extra);
  background-color: var(--farmology-extra);
  color: var(--farmology-base);
}

.faq-one__contact-number {
  position: relative;
  display: inline-block;
}

.faq-one__contact-number a {
  font-weight: 500;
  color: var(--farmology-black);
}

.faq-one__contact-number a:hover {
  color: var(--farmology-secondary);
}

.faq-one__contact-btn {
  position: relative;
  display: block;
  margin-top: 20px;
  line-height: 0;
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion.active {
  background: var(--farmology-primary);
}

.faq-one__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 18px 30px 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--farmology-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 10px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  font-size: 17px;
  color: var(--farmology-white);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--farmology-extra-rgb), 1);
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--farmology-white);
  background-color: var(--farmology-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 35px;
  border-radius: var(--farmology-bdr-radius);
  margin-top: -5px;
}

.faq-one__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-one__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(68, 44, 38, 1) 6%, rgba(253, 187, 45, 0) 100%);
}

.testimonial-one__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__inner {
  position: relative;
  display: block;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
}

.testimonial-one__client-info {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  padding: 0 30px 0;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
  max-width: 100px;
  width: 100%;
  border-radius: 50%;
}

.testimonial-one__client-img img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--farmology-primary);
}

.testimonial-one__client-content {
  position: relative;
  display: block;
  text-align: right;
}

.testimonial-one__client-name-box {
  position: relative;
  display: block;
}

.testimonial-one__client-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.testimonial-one__client-name a {
  color: var(--farmology-white);
}

.testimonial-one__client-name a:hover {
  color: var(--farmology-base);
}

.testimonial-one__client-sub-title {
  font-size: 15px;
  line-height: 20px;
  color: var(--farmology-secondary);
}

.testimonial-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 5px;
}

.testimonial-one__ratting span {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--farmology-base);
}

.testimonial-one__text-box {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 100px 50px 32px;
  margin-top: -85px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.testimonial-one__text-box-bg {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__text-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--farmology-bdr-radius);
  border: 1px dashed rgba(var(--farmology-primary-rgb), 10);
  z-index: -1;
  background-color: var(--farmology-extra);
}

.testimonial-one__text {
  color: rgba(var(--farmology-white-rgb), .50);
  margin-top: 5px;
}

.testimonial-one__text span {
  font-size: 18px;
  color: rgba(var(--farmology-primary-rgb), .40);
}

.testimonial-one__text .quote-two {
  position: relative;
  top: 5px;
}

.testimonial-one__single-shape-1 {
  position: absolute;
  bottom: 4px;
  right: 7px;
  z-index: -1;
  transform: rotate(-18deg);
  width: 50px;
}

.testimonial-one__single-shape-1 img {
  width: 100%;
}

.testimonial-one__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-one__nav .swiper-button-prev1,
.testimonial-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
  border: 1px solid var(--farmology-base);
  font-size: 16px;
  border-radius: 50%;
  margin: 50px 0px 0;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-one__nav .swiper-button-prev1:hover,
.testimonial-one__nav .swiper-button-next1:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.testimonial-one__nav .swiper-button-next1 {
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border-radius: var(--farmology-bdr-radius);
}

.blog-one__single-inner {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  overflow: hidden;
}

.blog-one__img-box {
  position: relative;
  display: block;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-one__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(var(--farmology-black-rgb), .70);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(100%);
  transform-origin: left;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-one__img:after {
  position: absolute;
  content: '';
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(var(--farmology-black-rgb), .70);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) translateY(-100%);
  transform-origin: top;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img:after {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) translateY(0%);
}

.blog-one__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-one__plus {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg) scale(0);
  transition: all 600ms ease;
  z-index: 3;
}

.blog-one__single:hover .blog-one__plus {
  transform: rotate(0deg) scale(1);
  transition-delay: 700ms;
}

.blog-one__plus a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__plus a:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-white);
}

.blog-one__tag {
  position: absolute;
  bottom: 5px;
  right: 65px;
  z-index: 4;
}

.blog-one__tag a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--farmology-primary);
  font-size: 16px;
  color: var(--farmology-extra);
  font-weight: 600;
  padding: 7px 25px 10px;
  border-radius: var(--farmology-bdr-radius);
  text-transform: capitalize;
  z-index: 1;
}

.blog-one__tag a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.blog-one__date {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--farmology-extra);
  width: 52px;
  height: 52px;
  border-radius: var(--farmology-bdr-radius);
  border: 1px solid rgba(var(--farmology-primary-rgb), .90);
}

.blog-one__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  line-height: 18px;
  color: var(--farmology-base);
  font-weight: 700;
}

.blog-one__date span {
  font-size: 14px;
  font-weight: 600;
}

.blog-one__content {
  position: relative;
  display: block;
  padding: 25px 30px 25px;
  z-index: 1;
}

.blog-one__content-bg-shape {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  opacity: 0.09;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--farmology-gray);
}

.blog-one__meta li a span {
  position: relative;
  font-size: 16px;
  color: var(--farmology-base);
}

.blog-one__meta li a:hover {
  color: var(--farmology-base);
}

.blog-one__title {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 9px 0 9px;
}

.blog-one__title a {
  color: var(--farmology-extra);
}

.blog-one__title a:hover {
  color: var(--farmology-base);
}

.blog-one__read-more {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--farmology-extra);
}

.blog-one__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: var(--farmology-white);
  justify-content: center;
  padding: 10px 30px 10px;
}

.blog-one__read-more a:hover {
  color: var(--farmology-base);
}

/***
=============================================
Cta One
=============================================
***/
.cta-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 2;
}

.cta-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-one__img {
  position: absolute;
  right: 100px;
  bottom: 0;
  animation: leftRight 4s ease-in-out infinite;
  z-index: 2;
}

.cta-one__img img {
  width: auto;
}

.cta-one__content {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--farmology-primary);
  padding: 37px 95px 50px;
  padding-left: 60px;
  border-radius: 20px;
  z-index: 1;
}

.cta-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 465px;
  opacity: .60;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.cta-one__shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  z-index: -1;
}

.cta-one__shape-2 {
  position: absolute;
  bottom: 60px;
  left: 580px;
  z-index: -1;
}

.cta-one__shape-2 img {
  width: auto;
}

.cta-one__content h2 {
  color: var(--farmology-extra);
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.cta-one__content h2 span {
  color: var(--farmology-secondary);
}

.cta-one__text-2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--farmology-extra);
  margin-bottom: 15px;
  margin-top: 13px;
  position: relative;
  display: flex;
  align-items: center;
}

.cta-one__text-2 span {
  font-size: 26px;
  font-weight: 800;
  line-height: 20px !important;
  color: var(--farmology-extra);
  font-family: var(--farmology-font-three) !important;
}

.cta-one__text-2 .count-text-plus {
  position: relative;
  margin-right: 5px;
}

.cta-one__app-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-one__app-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-one__app-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--farmology-white);
  border: 1px solid var(--farmology-base);
  border-radius: 50%;
}

.cta-one__app-list li .icon img {
  width: auto;
}

.cta-one__app-list li .content {
  position: relative;
  display: block;
  flex: 1;
}

.cta-one__app-list li .content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--farmology-extra);
}

.cta-one__app-list li .content span {
  font-weight: 500;
}

.cta-one__btn-box {
  position: relative;
  display: block;
  margin-top: 25px;
}

/*==============================================
    Site Footer
===============================================*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
}

.site-footer__top-inner {
  position: relative;
  display: block;
  padding: 111px 0 100px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 50px;
  margin-top: 9px;
}

.footer-widget__about-logo {
  position: relative;
  display: inline-block;
}

.footer-widget__about-text {
  margin: 0;
  color: rgba(var(--farmology-white-rgb), .70);
  padding-top: 24px;
  padding-bottom: 17px;
}

.footer-widget__social {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--farmology-white-rgb), .40);
  border-radius: 50%;
  font-size: 15px;
  color: var(--farmology-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-widget__social a:hover {
  color: var(--farmology-extra);
  border: 1px solid var(--farmology-base);
}

.footer-widget__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--farmology-base);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.footer-widget__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-widget__social a+a {
  margin-left: 5px;
}

.footer-widget__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--farmology-white);
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 32px;
  text-transform: capitalize;
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget__links-list li+li {
  margin-top: 16px;
}

.footer-widget__links-list li a {
  color: rgba(var(--farmology-white-rgb), .70);
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--farmology-base);
}

.footer-widget__links-list li span {
  position: relative;
  color: var(--farmology-base);
  font-size: 16px;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: -24px;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-widget__contact-list li+li {
  margin-top: 20px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--farmology-white-rgb), .20);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .icon:hover {
  background-color: var(--farmology-base);
  border: 1px solid var(--farmology-base);
}

.footer-widget__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li p {
  position: relative;
  display: block;
  flex: 1;
  color: rgba(var(--farmology-white-rgb), .70);
}

.footer-widget__contact-list li p a {
  color: rgba(var(--farmology-white-rgb), .70);
  position: relative;
  display: block;
  line-height: 0;
}

.footer-widget__contact-list li p a:hover {
  color: var(--farmology-base);
}

.footer-widget__services {
  position: relative;
  display: block;
  margin-left: 30px;
}

.footer-widget__payment {
  position: relative;
  display: block;
  z-index: 1;
}

.footer-widget__payment h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--farmology-white);
  margin-bottom: 12px;
}

.footer-widget__payment-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-widget__payment-card a {
  position: relative;
  display: inline-block;
}

.footer-widget__payment-card a img {
  width: 100%;
  border-radius: 3px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--farmology-white-rgb), .20);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 28px;
}

.site-footer__copyright {
  position: relative;
  display: block;
}

.site-footer__copyright-text {
  color: rgba(var(--farmology-white-rgb), .70);
}

.site-footer__copyright-text a {
  color: var(--farmology-base);
}

.site-footer__copyright-text a:hover {
  color: var(--farmology-white);
}

.site-footer__bottom-menu-box {
  position: relative;
  display: block;
}

.site-footer__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer__bottom-menu li+li {
  margin-left: 20px;
}

.site-footer__bottom-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(var(--farmology-white-rgb), .70);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.services-two__inner {
  position: relative;
  display: block;
}

.services-two__carousel {
  position: relative;
  display: block;
}

.services-two__single {
  position: relative;
  display: block;
}

.services-two__img-box {
  position: relative;
  display: block;
}

.services-two__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  overflow: hidden;
}

.services-two__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--farmology-black-rgb), .65);
  border-radius: var(--farmology-bdr-radius);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.services-two__single:hover .services-two__img::before {
  opacity: 1;
  transform: translateY(0px);
}

.services-two__img img {
  width: 100%;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.services-two__single:hover .services-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.services-two__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  padding: 20px 25px 28px;
  z-index: 1;
}

.services-two__content-bg-shape {
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.services-two__content::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  top: 0;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .20);
  border-top: 0;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.services-two__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 1;
}

.services-two__icon::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.services-two__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--farmology-white);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: -1;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 42px;
  color: var(--farmology-extra);
  top: -10px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.services-two__single:hover .services-two__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.services-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 15px 0 7px;
}

.services-two__title a {
  color: var(--farmology-extra);
}

.services-two__title a:hover {
  color: var(--farmology-base);
}

.services-two__read-more {
  position: relative;
  display: block;
  margin-top: 11px;
}

.services-two__read-more a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--farmology-extra);
  font-weight: 500;
}

.services-two__read-more a:hover {
  color: var(--farmology-base);
}

.services-two__read-more a span {
  color: var(--farmology-base);
}

.services-two__carousel.owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px !important;
  max-width: 80px;
  margin-left: auto;
  margin-right: auto;
}

.services-two__carousel.owl-carousel .owl-dots::before {
  position: absolute;
  top: 50%;
  left: -95px;
  width: 85px;
  height: 4px;
  background: rgb(68, 44, 38);
  background: linear-gradient(-90deg, rgba(68, 44, 38, 1) 14%, rgba(68, 44, 38, 0.7595413165266106) 35%, rgba(68, 44, 38, 0.5746673669467788) 57%, rgba(68, 44, 38, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}

.services-two__carousel.owl-carousel .owl-dots::after {
  position: absolute;
  top: 50%;
  right: -95px;
  width: 85px;
  height: 4px;
  background: rgb(68, 44, 38);
  background: linear-gradient(90deg, rgba(68, 44, 38, 1) 14%, rgba(68, 44, 38, 0.7595413165266106) 35%, rgba(68, 44, 38, 0.5746673669467788) 57%, rgba(68, 44, 38, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}

.services-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--farmology-extra);
  margin: 0px 6px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.services-two__carousel.owl-carousel .owl-dot.active {
  background-color: var(--farmology-base);
}

.services-two__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
  content: "";
  border: 1px solid var(--farmology-extra);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-two__carousel.owl-carousel .owl-dot.active:before {
  transform: scaleX(1.0);
  border: 1px solid var(--farmology-base);
}

.services-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.services-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.services-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.services-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 116px 0 120px;
  background: linear-gradient(0deg, rgba(247, 243, 229, 1) 0%, rgba(253, 187, 45, 0) 100%);
  z-index: 1;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 180px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.about-two__img-2 {
  position: absolute;
  bottom: -156px;
  right: -145px;
  border-top: 5px solid var(--farmology-white);
  border-left: 5px solid var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
}

.about-two__img-2 img {
  width: auto;
  border-radius: var(--farmology-bdr-radius);
}

.about-two__shape-1 {
  position: absolute;
  right: -127px;
  top: 64px;
  z-index: -1;
}

.about-two__shape-1 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.about-two__shape-2 {
  position: absolute;
  left: -151px;
  bottom: -187px;
  z-index: -1;
  transform: rotate(5deg);
}

.about-two__shape-2 img {
  width: auto;
}

.about-two__shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.about-two__shape-3 img {
  width: auto;
}

.about-two__experience {
  position: absolute;
  bottom: -108px;
  left: 35px;
  background-color: var(--farmology-extra);
  padding: 18px 35px 22px;
  max-width: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.about-two__experience::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-primary-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
}

.about-two__experience-count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two__experience-count-box h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: var(--farmology-font-three) !important;
  color: var(--farmology-base);
}

.about-two__experience-count-box span {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: var(--farmology-font-three) !important;
  color: var(--farmology-base);
}

.about-two__experience-count-text {
  color: var(--farmology-white);
  position: relative;
  margin-top: 9px;
  line-height: 24px;
}

.about-two__right {
  position: relative;
  display: block;
}

.about-two__right .section-title {
  margin-bottom: 25px;
}

.about-two__text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--farmology-base);
}

.about-two__text-2 {
  margin: 12px 0 20px;
}

.about-two__tab {
  position: relative;
  display: block;
}

.about-two__tab .tabs-button-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 24px;
  z-index: 1;
}

.about-two__tab .tabs-button-box li:last-child {
  margin-right: 0px;
}

.about-two__tab .tabs-button-box .tab-btn-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 20px 12px;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border-radius: var(--farmology-bdr-radius);
  cursor: pointer;
  z-index: 1;
}

.about-two__tab .tabs-button-box .tab-btn-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  transition: all 0.3s ease;
  z-index: -1;
}

.about-two__tab .tabs-button-box .tab-btn-item.active-btn:after {
  height: 100%;
}

.about-two__tab .tabs-button-box .tab-btn-item h3 {
  color: var(--farmology-extra);
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-two__tab .tabs-button-box .tab-btn-item.active-btn h3 {
  color: var(--farmology-base);
}

.about-two__tab .tabs-content {
  position: relative;
  display: block;
}

.about-two__tab .tabs-content .tab {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.about-two__tab .tabs-content .tab.tab-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.about-two__single-tab {
  transition: all 0.7s ease;
  opacity: 0;
  transform: scaleY(0.9);
  transform-origin: top bottom;
}

.about-two__tab .tabs-content .tab.tab-active .about-two__single-tab {
  opacity: 1.0;
  transform: scaleY(1);
  transform-origin: bottom top;
}

.about-two__single-tab-inner {
  position: relative;
  display: block;
}

.about-two__single-tab-text {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.about-two__single-tab-text p {
  margin: 0;
}

.about-two__single-tab-bottom-list {
  position: relative;
  display: block;
}

.about-two__single-tab-bottom-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-two__single-tab-bottom-list li+li {
  margin-top: 5px;
}

.about-two__single-tab-bottom-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.about-two__single-tab-bottom-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 10px;
  color: var(--farmology-base);
}

.about-two__single-tab-bottom-list li p {
  position: relative;
  display: block;
  flex: 1;
}

.about-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 25px;
}

/*--------------------------------------------------------------
# Products Two
--------------------------------------------------------------*/
.products-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.products-two__single {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border: 1px solid rgba(var(--farmology-extra-rgb), 0.10);
  padding: 30px 30px 30px;
  margin-bottom: 30px;
  border-radius: var(--farmology-bdr-radius);
  text-align: center;
  z-index: 1;
}

.products-two__single-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.products-two__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.products-two__img-box {
  position: relative;
  display: block;
}

.products-two__img {
  position: relative;
  display: flex;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  min-height: 220px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--farmology-base);
  overflow: hidden;
}

.products-two__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.products-two__single:hover .products-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.products-two__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.products-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.products-two__title a {
  color: var(--farmology-extra);
}

.products-two__title a:hover {
  color: var(--farmology-base);
}

.products-two__text {
  margin: 6px 0 15px;
}

.products-two__arrow {
  position: relative;
  display: inline-block;
}

.products-two__arrow a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  font-size: 16px;
  color: var(--farmology-base);
}

.products-two__arrow a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.products-two__bottom {
  position: relative;
  display: block;
  text-align: center;
}

.products-two__bottom-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--farmology-extra);
  text-transform: capitalize;
}

.products-two__bottom-call {
  position: relative;
  display: inline-block;
  margin: 6px 0 12px;
}

.products-two__bottom-call span {
  font-size: 20px;
  font-weight: 600;
  color: var(--farmology-extra);
}

.products-two__bottom-call a {
  color: var(--farmology-extra);
  font-weight: 800;
  font-family: var(--farmology-font-three);
  font-size: 25px;
}

.products-two__bottom-call a:hover {
  color: var(--farmology-base);
}

.products-two__bottom-btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/*==============================================
    Video Two
===============================================*/
.video-two {
  position: relative;
  display: block;
  padding: 120px 0px 151px;
  background-color: var(--farmology-extra);
  z-index: 1;
}

.video-two__inner {
  position: relative;
  display: block;
  text-align: center;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .10;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.video-two__box {
  position: relative;
  display: inline-block;
}

.video-two__box a {
  position: relative;
  display: inline-block;
}

.video-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--farmology-base);
  background-color: var(--farmology-white);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.video-two__icon:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.video-two__icon::before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--farmology-white);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.video-two__box .border-animation {
  position: absolute;
  top: -15px;
  left: -15px;
  bottom: -15px;
  right: -15px;
  border: 1px solid var(--farmology-white);
  animation: squares 2.9s linear 0s infinite;
  -webkit-animation: squares 2.9s linear 0s infinite;
  -ms-animation: squares 2.9s linear 0s infinite;
  -o-animation: squares 2.9s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
  border-radius: 50%;
}

.video-two__box .border-animation.border-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.video-two__box .border-animation.border-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-two__sub-title {
  font-size: 25px;
  font-weight: 800;
  font-family: var(--farmology-font-three);
  color: var(--farmology-base);
  margin: 80px 0 10px;
}

.video-two__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: var(--farmology-white);
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.project-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 49px;
}

.project-two__top .section-title {
  margin-bottom: 0px;
}

.project-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.project-two__bottom .container {
  max-width: 1730px;
}

.project-two__single {
  position: relative;
  display: block;
}

.project-two__img-box {
  position: relative;
  display: block;
}

.project-two__img {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
}

.project-two__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.project-two__content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  right: 15px;
  text-align: right;
  background: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  padding: 80px 30px 45px;
  overflow: hidden;
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.project-two__content-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.project-two__single:hover .project-two__content {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.project-two__content::before {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 2px;
  background: var(--farmology-extra);
  content: "";
  transition: -webkit-transform 2.0s ease;
  transition: transform 2.0s ease;
  transition: transform 2.0s ease, -webkit-transform 2.0s ease;
  transform-origin: top center;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.project-two__single:hover .project-two__content::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.project-two__content::after {
  position: absolute;
  left: 0px;
  bottom: 20px;
  right: 60%;
  height: 2px;
  background: var(--farmology-extra);
  content: "";
  transition: transform 2000ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.project-two__single:hover .project-two__content::after {
  transform: scale(1, 1);
  transform-origin: left center;
}

.project-two__content .text-box {
  position: relative;
  display: block;
  text-align: right;
}

.project-two__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 700ms ease;
  margin-bottom: 5px;
}

.project-two__single:hover .project-two__content h3 {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 700ms;
}

.project-two__content h3 a {
  color: var(--farmology-extra);
}

.project-two__content h3 a:hover {
  color: var(--farmology-base);
}

.project-two__content p {
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
}

.project-two__single:hover .project-two__content p {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-two__icon-box {
  position: absolute;
  top: 25px;
  right: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 700ms ease;
  z-index: 2;
}

.project-two__single:hover .project-two__icon-box {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 500ms;
}

.project-two__icon-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-base);
  width: 45px;
  height: 45px;
  background: var(--farmology-extra);
  border-radius: 50%;
}

.project-two__icon-box a:hover {
  background: var(--farmology-base);
  color: var(--farmology-extra);
}

.project-two__icon-box a span {
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.project-two__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px 0 !important;
}

.project-two__nav .swiper-button-prev1,
.project-two__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--farmology-base);
  background-color: var(--farmology-extra);
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.project-two__nav .swiper-button-prev1:hover,
.project-two__nav .swiper-button-next1:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.project-two__nav .swiper-button-next1 {
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Progress One
--------------------------------------------------------------*/
.progress-one {
  position: relative;
  display: block;
  padding: 120px 0 100px;
  z-index: 1;
}

.progress-one__bg {
  position: absolute;
  top: 120px;
  left: 0;
  bottom: 0;
  width: calc((100% - 110px) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.progress-one__bg::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0;
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  background: linear-gradient(90deg, rgba(68, 44, 38, 0) 0%, rgba(68, 44, 38, 1) 100%);
}

.progress-one__left {
  position: relative;
  display: block;
}

.progress-one__right {
  position: relative;
  display: block;
}

.progress-one__right .section-title {
  margin-bottom: 25px;
}

.progress-one__progress-box-title-inner {
  position: absolute;
  top: 50%;
  left: -300px;
  transform: translateY(-50%);
  z-index: 1;
}

.progress-one__progress-box-title {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.progress-one__progress-box-title-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .15;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.progress-one__progress-box-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .50);
  z-index: -1;
}

.progress-one__progress-box-title-shape-1 {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 26px;
  height: 36px;
  background-color: var(--farmology-primary);
  transform: translateY(-50%);
}

.progress-one__progress-box-title-shape-1::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid var(--farmology-primary);
  transform: translateY(-50%);
}

.progress-one__progress-box-title h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--farmology-extra);
}

.progress-one__progress-box {
  position: relative;
  display: block;
  margin-top: 40px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 55px 60px 55px;
  margin-left: -120px;
  z-index: 1;
}

.progress-one__progress-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.progress-one__shape-1 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: -1;
}

.progress-one__shape-1 img {
  width: auto;
}

.progress-one__progress-box-single {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.progress-one__progress-box-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px dashed var(--farmology-extra);
  border-radius: 50%;
  z-index: 1;
}

.progress-one__progress-box-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  z-index: -1;
}

.progress-one__progress-box-icon span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--farmology-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.progress-one__progress-box-single:hover .progress-one__progress-box-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.progress-one__progress-title {
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 25px;
  margin-bottom: 22px;
}

.progress-one__progress-box .progress-box {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}

.progress-one__progress-box-single+.progress-one__progress-box-single {
  margin-top: 20px;
}

.progress-one__progress-box .progress-box .bar-title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 9px;
  font-family: var(--farmology-font-two);
  color: var(--farmology-extra);
}

.progress-one__progress-box .progress-box .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--farmology-white);
  border-radius: 5px;
}

.progress-one__progress-box .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  background: var(--farmology-extra);
  border-radius: 5px;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.progress-one__progress-box .progress-box .count-box {
  position: absolute;
  right: 0px;
  margin-right: -35px;
  bottom: 18px;
  width: 40px;
  height: 22px;
  background: var(--farmology-extra);
  color: var(--farmology-base);
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0;
  opacity: 0;
  font-family: var(--farmology-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.progress-one__progress-box .progress-box .counted .count-box {
  opacity: 1;
}

.progress-one__progress-box .progress-box .count-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-top: 5px solid var(--farmology-extra);
  border-left: 5px solid var(--farmology-extra);
}



/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.team-one__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-extra-rgb), .50);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.team-one__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale(1.0);
  transition: all 1000ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-one__content {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -50px;
  border-radius: var(--farmology-bdr-radius);
  text-align: center;
  padding: 21px 20px 30px;
  z-index: 2;
}

.team-one__content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--farmology-bdr-radius);
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  z-index: -1;
}

.team-one__content-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .15;
  border-radius: var(--farmology-bdr-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.team-one__title a {
  color: var(--farmology-extra);
}

.team-one__title a:hover {
  color: var(--farmology-base);
}

.team-one__sub-title {
  margin: 0 0 10px;
}

.team-one__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.team-one__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  color: var(--farmology-base);
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.team-one__social a:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
  padding: 90px 0 120px;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-two .section-title__tagline {
  color: var(--farmology-white);
}

.testimonial-two .section-title__title {
  color: var(--farmology-white);
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding: 20px 0 20px;
  z-index: 1;
}

.testimonial-two__single-shape-1 {
  position: absolute;
  top: 0;
  left: 60px;
  bottom: 0;
  right: 100px;
  border: 2px solid var(--farmology-primary);
  border-radius: 10px;
  opacity: .50;
}

.testimonial-two__single-shape-1:before {
  content: "";
  position: absolute;
  top: 80px;
  left: -2px;
  width: 2px;
  bottom: 80px;
  background-color: var(--farmology-extra);
  opacity: .90;
  z-index: 1;
}

.testimonial-two__single-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.testimonial-two__client-info {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-two__client-info-shape-1 {
  position: absolute;
  top: -20px;
  left: 58px;
  right: 58px;
  bottom: -20px;
  background-color: rgba(var(--farmology-extra-rgb), .80);
}

.testimonial-two__client-info-shape-1::before {
  content: "";
  position: absolute;
  left: 51.5%;
  top: -3px;
  width: 10px;
  height: 10px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: translateX(-50%);
}

.testimonial-two__client-info-shape-1::after {
  content: "";
  position: absolute;
  left: 51.5%;
  bottom: -3px;
  width: 10px;
  height: 10px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  transform: translateX(-50%);
}

.testimonial-two__client-img {
  position: relative;
  display: block;
  max-width: 120px;
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.testimonial-two__client-img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.testimonial-two__client-content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.testimonial-two__client-name {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-two__client-name a {
  color: var(--farmology-white);
}

.testimonial-two__client-name a:hover {
  color: var(--farmology-base);
}

.testimonial-two__sub-title {
  font-weight: 500;
  color: var(--farmology-base);
  font-size: 14px;
}

.testimonial-two__content-box {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  padding: 30px 30px 30px;
  flex: 1;
  z-index: 1;
}

.testimonial-two__content-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.testimonial-two__content-box-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.testimonial-two__content-box-shape-1 {
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: -10px;
  background-color: var(--farmology-white);
  width: 20px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  z-index: -1;
}

.testimonial-two__content-box-shape-1:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 0px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-right: 0;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.testimonial-two__content-box-shape-1:after {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  right: -1px;
  width: 5px;
  background-color: var(--farmology-white);
}

.testimonial-two__content-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--farmology-extra);
}

.testimonial-two__content-title span {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--farmology-extra);
  text-transform: capitalize;
}

.testimonial-two__text {
  margin: 18px 0 20px;
  margin-left: -10px;
}

.testimonial-two__ratting {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-two__ratting span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--farmology-extra);
}

.testimonial-two__days {
  position: relative;
  display: block;
  margin-top: 2px;
}

.testimonial-two__quote {
  position: absolute;
  bottom: 25px;
  right: 30px;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: rgba(var(--farmology-extra-rgb), .15);
}

.testimonial-two__inner {
  position: relative;
  display: block;
}

.testimonial-two__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 50%;
  left: -80px;
  right: -80px;
  transform: translateY(-50%);
  line-height: 0;
  height: 0;
  z-index: 2;
}

.testimonial-two__nav .swiper-button-prev1,
.testimonial-two__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
  border: 1px solid var(--farmology-base);
  font-size: 16px;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-two__nav .swiper-button-prev1:hover,
.testimonial-two__nav .swiper-button-next1:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.testimonial-two__nav .swiper-button-next1 {
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Pricing One
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 1;
}

.pricing-one__single {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border-radius: var(--farmology-bdr-radius);
  margin-bottom: 30px;
  z-index: 1;
}

.pricing-one__single-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.06;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
}

.pricing-one__single:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.pricing-one__top-inner {
  position: relative;
  display: flex;
  background-color: var(--farmology-extra);
  border-top-right-radius: var(--farmology-bdr-radius);
  border-top-left-radius: var(--farmology-bdr-radius);
  padding: 23px 30px 19px;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.pricing-one__top-inner:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 0;
  border: 1px dashed rgba(var(--farmology-primary-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
  border-bottom: 0;
}

.pricing-one__sub-title-and-price {
  position: relative;
  display: block;
}

.pricing-one__sub-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--farmology-primary);
  text-transform: capitalize;
}

.pricing-one__price {
  font-size: 45px;
  font-weight: 500;
  line-height: 45px;
  color: var(--farmology-base);
  margin-top: 8px;
}

.pricing-one__price span {
  font-size: 18px;
  font-family: var(--farmology-font);
  font-weight: 500;
  color: var(--farmology-white);
}

.pricing-one__top-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60px;
  width: 100%;
  height: 60px;
  flex: 1;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  z-index: 1;
}

.pricing-one__top-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-extra);
  border-radius: 50%;
  z-index: -1;
}

.pricing-one__top-icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--farmology-extra);
}

.pricing-one__point-and-btn {
  position: relative;
  display: block;
  padding: 30px 30px 30px;
  z-index: 1;
}

.pricing-one__points {
  position: relative;
  display: block;
}

.pricing-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  padding-bottom: 7px;
}

.pricing-one__points li+li {
  margin-top: 12px;
}

.pricing-one__points li:last-child {
  border-bottom: none;
}

.pricing-one__points-text-box {
  position: relative;
  display: block;
}

.pricing-one__points-text-box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  color: var(--farmology-extra);
  margin-bottom: 2px;
}

.pricing-one__points li .icon {
  position: relative;
  display: inline-block;
}

.pricing-one__points li .icon-two {
  position: relative;
  display: inline-block;
}

.pricing-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-secondary);
}

.pricing-one__points li .icon-two span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #c31324
}

.pricing-one__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 11px;
}

.pricing-one__btn-box .thm-btn {
  width: 100%;
}

/*==============================================
    Blog Two  
===============================================*/
.blog-two {
  position: relative;
  display: block;
  padding: 90px 0 90px;
  z-index: 1;
}

.blog-two__single {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: -10px 0px 60px 0px rgba(0, 0, 0, 0.09);
  border-radius: var(--farmology-bdr-radius);
  padding: 20px 20px 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.blog-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-two__single:hover .blog-two__img:before {
  opacity: .50;
}

.blog-two__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-two__tags {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 5;
}

.blog-two__tags span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--farmology-extra);
  font-weight: 500;
  line-height: 14px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 7px 14px 7px;
}

.blog-two__content {
  position: relative;
  display: block;
  margin-top: 18px;
  padding-left: 60px;
}

.blog-two__user {
  position: absolute;
  top: 50px;
  left: -58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px;
  padding-right: 15px;
  transform: rotate(90deg);
}

.blog-two__user:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 40px;
  border: 1px solid rgba(var(--farmology-extra-rgb), .60);
  z-index: -1;
}

.blog-two__user-img {
  position: relative;
  display: block;
  width: 32px;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-90deg);
}

.blog-two__user-img img {
  width: 100%;
  border-radius: 50%;
}

.blog-two__user-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--farmology-extra);
  font-family: var(--farmology-font-two);
  text-transform: capitalize;
}

.blog-two__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.blog-two__meta li {
  position: relative;
  display: block;
}

.blog-two__meta li+li {
  margin-left: 26px;
}

.blog-two__meta li::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -13px;
  border: 1px solid var(--farmology-extra);
}

.blog-two__meta li:first-child::before {
  display: none;
}

.blog-two__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--farmology-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__meta li a:hover {
  color: var(--farmology-base);
}

.blog-two__meta li a span {
  position: relative;
  font-size: 14px;
  margin-right: 6px;
  color: var(--farmology-extra);
}

.blog-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 11px;
  text-transform: capitalize;
}

.blog-two__title a {
  color: var(--farmology-black);
}

.blog-two__title a:hover {
  color: var(--farmology-base);
}

.blog-two__text {
  font-size: 16px;
  margin-bottom: 18px;
}

.blog-two__btn-box {
  position: relative;
  display: block;
}

.blog-two__btn-box .thm-btn {
  padding: 8px 20px 8px;
}

.blog-two__single-two {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--farmology-white);
  box-shadow: -10px 0px 60px 0px rgba(0, 0, 0, 0.09);
  border-radius: var(--farmology-bdr-radius);
  padding: 20px 20px 20px;
  margin-bottom: 30px;
}

.blog-two__img-two {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  max-width: 250px;
  z-index: 1;
}

.blog-two__img-two:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-two__single-two:hover .blog-two__img-two:before {
  opacity: .50;
}

.blog-two__img-two img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-two__single-two:hover .blog-two__img-two img {
  transform: scale(1.05) rotate(0deg);
}

.blog-two__content-two {
  position: relative;
  display: block;
  flex: 1;
  padding-left: 70px;
  top: 3px;
}

.blog-two__user-two {
  position: absolute;
  top: 53px;
  left: -36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px;
  padding-right: 15px;
  transform: rotate(90deg);
}

.blog-two__user-three {
  top: 47px;
  left: -32px;
}

.blog-two__user-two:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 40px;
  border: 1px solid rgba(var(--farmology-extra-rgb), .60);
  z-index: -1;
}

.blog-two__user-two-img {
  position: relative;
  display: block;
  width: 32px;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-90deg);
}

.blog-two__user-two-img img {
  width: 100%;
  border-radius: 50%;
}

.blog-two__user-two-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--farmology-extra);
  font-family: var(--farmology-font-two);
  text-transform: capitalize;
}

.blog-two__tags-two {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.blog-two__tags-two span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--farmology-extra);
  font-weight: 500;
  line-height: 14px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 7px 14px 7px;
}

.blog-two__title-two {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 7px;
  margin-top: 7px;
}

.blog-two__title-two a {
  color: var(--farmology-black);
}

.blog-two__title-two a:hover {
  color: var(--farmology-base);
}

.blog-two__meta-two {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-two__meta-two li {
  position: relative;
  display: block;
}

.blog-two__meta-two li+li {
  margin-left: 26px;
}

.blog-two__meta-two li::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -13px;
  border: 1px solid var(--farmology-extra);
}

.blog-two__meta-two li:first-child::before {
  display: none;
}

.blog-two__meta-two li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--farmology-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__meta-two li a:hover {
  color: var(--farmology-base);
}

.blog-two__meta-two li a span {
  position: relative;
  font-size: 14px;
  margin-right: 6px;
  color: var(--farmology-extra);
}

.blog-two__text-two {
  font-size: 16px;
  margin-bottom: 14px;
}

.blog-two__btn-box-two {
  position: relative;
  display: block;
}

.blog-two__btn-box-two .thm-btn {
  padding: 8px 20px 8px;
}

/*==============================================
    Site Footer Two
===============================================*/
.site-footer-two {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer-two__top {
  position: relative;
  display: block;
  z-index: 2;
}

.site-footer-two__middle {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  padding: 219px 0 0px;
  margin-top: -160px;
}

.footer-widget-two__working-box {
  position: relative;
  display: block;
  background-color: var(--farmology-base);
  margin-right: -70px;
  border-radius: var(--farmology-bdr-radius);
  padding: 21px 30px 22px;
}

.footer-widget-two__working-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--farmology-extra);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.footer-widget-two__working-hour {
  position: relative;
  display: block;
}

.footer-widget-two__working-hour li {
  position: relative;
  display: block;
}

.footer-widget-two__working-hour li+li {
  margin-top: 18px;
  border-top: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  padding-top: 18px;
}

.footer-widget-two__working-hour li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--farmology-extra);
}

.footer-widget-two__title-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.footer-widget-two__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--farmology-white);
  text-transform: capitalize;
}

.footer-widget-two__usefull-link {
  position: relative;
  display: block;
  margin-left: 123px;
}

.footer-widget-two__link-box {
  position: relative;
  display: block;
}

.footer-widget-two__link {
  position: relative;
  display: block;
}

.footer-widget-two__link li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget-two__link li span {
  position: relative;
  color: var(--farmology-base);
  font-size: 16px;
}

.footer-widget-two__link li+li {
  margin-top: 12px;
}

.footer-widget-two__link li a {
  color: rgba(var(--farmology-white-rgb), .80);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget-two__link li a:hover {
  color: var(--farmology-base);
}

.footer-widget-two__link-2 {
  margin-left: 55px;
}

.footer-widget-two__products {
  position: relative;
  display: block;
  margin-left: 50px;
}

.footer-widget-two__newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 75px 80px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.footer-widget-two__newsletter:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
}

.footer-widget-two__newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.footer-widget-two__newsletter-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--farmology-extra);
  text-transform: capitalize;
}

.footer-widget-two__newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  width: 100%;
}

.footer-widget-two__newsletter-form-input-box {
  position: relative;
  display: block;
  max-width: 296px;
  width: 100%;
}

.footer-widget-two__newsletter-form-input-box input[type="email"] {
  font-size: 16px;
  height: 54px;
  width: 100%;
  background-color: var(--farmology-extra);
  outline: none;
  border: none;
  color: rgba(var(--farmology-white-rgb), .80);
  font-weight: 400;
  border-radius: 0;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: var(--farmology-bdr-radius);
}

.footer-widget-two__newsletter-form .thm-btn {
  border: none;
  padding: 14px 35px 14px;
}

.footer-widget-two__instagram {
  position: relative;
  display: block;
  margin-left: -5px;
}

.footer-widget-two__instagram-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  padding-top: 5px;
}

.footer-widget-two__instagram-list li {
  position: relative;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.footer-widget-two__instagram-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.footer-widget-two__instagram-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--farmology-base-rgb), .50);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img:before {
  transform: translateY(0%);
}

.footer-widget-two__instagram-img img {
  width: 100%;
  border-radius: 4px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img img {
  transform: scale(1.05) rotate(0deg);
}

.footer-widget-two__instagram-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--farmology-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.footer-widget-two__instagram-list li .footer-widget-two__instagram-img a:hover {
  color: var(--farmology-white);
}

.footer-widget-two__logo {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 30px;
}

.footer-widget-two__logo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  border: 1px dashed rgba(var(--farmology-base-rgb), .50);
  transform: translateY(-50%);
}

.footer-widget-two__logo a {
  background-color: var(--farmology-extra);
  padding: 5px 20px 5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer-two__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.site-footer-two__social a {
  position: relative;
  height: 35px;
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--farmology-primary);
  background-color: var(--farmology-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer-two__social a:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
}

.site-footer-two__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--farmology-primary);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer-two__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer-two__social a+a {
  margin-left: 10px;
}

.site-footer-two__bottom {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
}

.site-footer-two__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px 0 25px;
}

.site-footer-two__bottom-text {
  color: rgba(var(--farmology-white-rgb), .80);
}

.site-footer-two__bottom-text a {
  color: var(--farmology-base);
}

.site-footer-two__bottom-text a:hover {
  color: var(--farmology-white);
}

.site-footer-two__bottom-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-two__bottom-menu li {
  position: relative;
  display: block;
}

.site-footer-two__bottom-menu li+li {
  margin-left: 30px;
}

.site-footer-two__bottom-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: rgba(var(--farmology-white-rgb), .80);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-two__bottom-menu li a:hover {
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  counter-reset: count;
  z-index: 5;
}

.process-one__inner {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: 10px;
  padding: 80px 80px 50px;
  z-index: 1;
}

.process-one__shape-four {
  position: absolute;
  top: -57px;
  left: -86px;
  z-index: -1;
}

.process-one__shape-four img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.process-one__inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: 10px;
  z-index: -1;
}

.process-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.process-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.process-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 49.51px 22.49px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.process-one__icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  z-index: -1;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--farmology-primary);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.process-one__single:hover .process-one__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.process-one__content {
  position: relative;
  display: block;
  border: 1px solid rgba(var(--farmology-extra-rgb), .50);
  border-radius: var(--farmology-bdr-radius);
  padding: 15px 20px 15px;
  max-width: 230px;
  margin: 0 auto;
  width: 100%;
  margin-top: -1px;
}

.process-one__count {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-one ul li:nth-child(2) .process-one__count {
  bottom: -20px;
  top: inherit;
}

.process-one ul li:nth-child(4) .process-one__count {
  bottom: -20px;
  top: inherit;
}

.process-one__count::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--farmology-extra);
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.process-one__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--farmology-extra);
  text-transform: capitalize;
  margin-bottom: 8px;
}

.process-one__shape-1 {
  position: relative;
  display: block;
  width: 25px;
  border: 1px solid rgba(var(--farmology-extra-rgb), .50);
  height: 15px;
  margin: 0 auto;
  border-bottom: 0;
  border-top: 0;
  background-color: rgba(var(--farmology-primary-rgb), 10);
  margin-top: 15px;
  z-index: 1;
}

.process-one__shape-2 {
  position: absolute;
  left: -59px;
  top: -29px;
  transform: rotate(9deg);
}

.process-one__shape-2:before {
  content: "";
  position: absolute;
  top: -12px;
  left: -11px;
  width: 15px;
  height: 15px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.process-one__shape-2 img {
  width: auto;
}

.process-one__shape-3 {
  position: absolute;
  right: -59px;
  top: -29px;
  transform: rotate(-9deg);
}

.process-one__shape-3:before {
  content: "";
  position: absolute;
  top: -10px;
  right: -13px;
  width: 15px;
  height: 15px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
}

.process-one__shape-3 img {
  width: auto;
}

.process-one ul li:nth-child(2) .process-one__shape-1 {
  margin-top: 0;
  margin-bottom: 15px;
}

.process-one ul li:nth-child(2) .process-one__shape-2 {
  bottom: -28px;
  top: inherit;
  left: -58px;
  transform: rotate(-9deg);
}

.process-one ul li:nth-child(2) .process-one__shape-2:before {
  bottom: -12px;
  top: inherit;
}

.process-one ul li:nth-child(2) .process-one__content {
  margin-top: 0;
  margin-bottom: -1px;
}

.process-one ul li:nth-child(2) .process-one__shape-3 {
  position: absolute;
  right: -59px;
  bottom: -27px;
  top: inherit;
  transform: rotate(9deg);
}

.process-one ul li:nth-child(2) .process-one__shape-3:before {
  bottom: -10px;
  top: inherit;
}

.process-one ul li:nth-child(4) .process-one__shape-1 {
  margin-top: 0;
  margin-bottom: 15px;
}

.process-one ul li:nth-child(4) .process-one__shape-2 {
  bottom: -28px;
  top: inherit;
  left: -58px;
  transform: rotate(-9deg);
}

.process-one ul li:nth-child(4) .process-one__shape-2:before {
  bottom: -12px;
  top: inherit;
}

.process-one ul li:nth-child(4) .process-one__content {
  margin-top: 0;
  margin-bottom: -1px;
}

.process-one ul li:nth-child(4) .process-one__shape-3 {
  position: absolute;
  right: -59px;
  bottom: -27px;
  top: inherit;
  transform: rotate(9deg);
}

.process-one ul li:nth-child(4) .process-one__shape-3:before {
  bottom: -10px;
  top: inherit;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 2;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 130px;
}

.about-three__img {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  top: 20px;
  border: 1px dashed var(--farmology-primary);
  border-radius: 50%;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.about-three__img>img {
  width: 100%;
  border-radius: 50%;
  border-bottom-right-radius: 0;
}

.about-three__img-shape-1 {
  position: absolute;
  bottom: -33px;
  right: -100px;
  width: 500px;
  height: 300px;
  background-color: var(--farmology-primary);
  border-bottom-left-radius: 120px;
  border-top-right-radius: 100px;
  z-index: -1;
}

.about-three__img-shape-2 {
  position: absolute;
  top: 0;
  right: -96px;
  transform: rotate(-20deg);
  z-index: -1;
}

.about-three__img-shape-2>img {
  width: auto;
}

.about-three__img-shape-3 {
  position: absolute;
  bottom: -79px;
  left: -94px;
  z-index: -1;
  transform: rotate(6deg);
}

.about-three__img-shape-3>img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.about-three__text-1 {
  position: absolute;
  bottom: 84px;
  right: -174px;
  transform: rotate(-90deg);
  z-index: 1;
}

.about-three__text-1 p {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  background-color: var(--farmology-white);
  color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  background-position: center center;
  background-attachment: fixed;
}

.about-three__text-bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about-three__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.about-three__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--farmology-base);
  background-color: var(--farmology-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  margin: 0 auto;
  z-index: 1;
}

.about-three__video-icon:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
}

.about-three__video-icon:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 5px solid rgba(var(--farmology-white-rgb), .30);
  border-radius: 50%;
  z-index: -1;
}

.about-three__video-link .ripple,
.about-three__video-icon .ripple:before,
.about-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--farmology-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--farmology-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--farmology-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--farmology-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three__right .section-title {
  margin-bottom: 22px;
}

.about-three__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.about-three__points-1 {
  position: relative;
  display: block;
}

.about-three__points-1 li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-three__points-1 li+li {
  margin-top: 12px;
}

.about-three__points-1 li .icon {
  position: relative;
  display: inline-block;
}

.about-three__points-1 li .icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--farmology-base);
}

.about-three__points-1 li h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--farmology-extra);
}

.about-three__points-and-experience {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 26px;
}

.about-three__points {
  position: relative;
  display: block;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-three__points li .icon {
  position: relative;
  display: inline-block;
}

.about-three__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-base);
}

.about-three__points li+li {
  margin-top: 5px;
}

.about-three__experience {
  position: relative;
  display: flex;
  background-color: var(--farmology-primary);
  text-align: center;
  border-top: 5px solid var(--farmology-base);
  max-width: 180px;
  width: 100%;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 20px 45px;
}

.about-three__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__count-box h3 {
  font-size: 45px;
  font-family: var(--farmology-font-three);
  font-weight: 900;
  color: var(--farmology-extra);
}

.about-three__count-box span {
  font-size: 45px;
  font-family: var(--farmology-font-three);
  font-weight: 900;
  color: var(--farmology-base);
}

.about-three__experience-text {
  font-weight: 600;
  color: var(--farmology-extra);
  line-height: 22px;
  margin-top: 3px;
}

.about-three__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

/*--------------------------------------------------------------
# Products Three
--------------------------------------------------------------*/
.products-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.products-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.products-three__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 72%, rgba(255, 255, 255, 1) 73%);
}

.products-three__bg-color {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 450px;
  background: linear-gradient(0deg, rgba(68, 44, 38, 1) 0%, rgba(68, 44, 38, 0) 100%);
  z-index: -1;
}

.products-three__carousel {
  position: relative;
  display: block;
  padding: 0 0 120px;
}

.products-three__single {
  position: relative;
  display: block;
}

.products-three__content {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  text-align: center;
  padding: 30px 30px 45px;
  margin-top: -50px;
  z-index: 1;
}

.products-three__content-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
}

.products-three__content:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--farmology-gray);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.products-three__content:after {
  content: "";
  position: absolute;
  top: 10px;
  height: 3px;
  width: 65px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--farmology-extra);
  z-index: -1;
}

.products-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 50%;
  z-index: 2;
}

.products-three__icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40px;
  background-color: var(--farmology-extra);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: -1;
}

.products-three__icon:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 37%;
  border: 1px dashed var(--farmology-gray);
  border-bottom: 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: -1;
}

.products-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--farmology-base);
  top: -4px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.products-three__single:hover .products-three__icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.products-three__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 5px 0 12px;
}

.products-three__title a {
  color: var(--farmology-primary);
}

.products-three__title a:hover {
  color: var(--farmology-base);
}

.products-three__text {
  font-size: 15px;
  line-height: 25px;
  color: rgba(var(--farmology-white-rgb), .50);
}

.products-three__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
  z-index: 2;
}

.products-three__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--farmology-primary);
  border-radius: 50%;
  font-size: 16px;
  color: var(--farmology-extra);
}

.products-three__arrow a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.products-three__carousel .swiper-nav-style-one {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.products-three__carousel .swiper-dot-style1 {
  position: relative;
  display: inline-flex;
  line-height: 0;
}

.products-three__carousel .swiper-dot-style1::before {
  position: absolute;
  top: 50%;
  left: -95px;
  width: 85px;
  height: 4px;
  background: rgb(255, 255, 255);
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}

.products-three__carousel .swiper-dot-style1::after {
  position: absolute;
  top: 50%;
  right: -95px;
  width: 85px;
  height: 4px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}


.products-three__carousel .swiper-dot-style1 .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0px 6px;
  opacity: 1;
  background: var(--farmology-white);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.products-three__carousel .swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--farmology-base);
}

.products-three__carousel .swiper-dot-style1 .swiper-pagination-bullet::before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
  border: 1px solid var(--farmology-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.products-three__carousel .swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.products-three__carousel .swiper-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1.0);
}

/*--------------------------------------------------------------
# Farm Activities
--------------------------------------------------------------*/
.farm-activities {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.farm-activities__left {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-right: 80px;
}

.farm-activities__left-img {
  position: relative;
  display: block;
}

.farm-activities__left-img:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed var(--farmology-base);
  border-radius: var(--farmology-bdr-radius);
}

.farm-activities__left-img>img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.farm-activities__content {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--farmology-extra);
  left: 180px;
  padding: 50px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.farm-activities__content-shape-1 {
  position: absolute;
  bottom: -48px;
  right: -110px;
  z-index: -1;
}

.farm-activities__content-shape-1 img {
  width: auto;
  animation: leftRight 4s ease-in-out infinite;
}

.farm-activities__left-img-shape-1 {
  position: absolute;
  bottom: 110px;
  right: -110px;
  z-index: -1;
}

.farm-activities__left-img-shape-1 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.farm-activities__content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed rgba(var(--farmology-primary-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.farm-activities__content-text-1 {
  color: var(--farmology-primary);
  margin-bottom: 20px;
}

.farm-activities__content-text-2 {
  font-weight: 500;
  font-style: italic;
  color: var(--farmology-base);
}

.farm-activities__right {
  position: relative;
  display: block;
}

.farm-activities__right-inner {
  position: relative;
  display: block;
}

.farm-activities__text-box {
  position: absolute;
  top: 48.5%;
  left: 42%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 150px;
  height: 150px;
  background-color: var(--farmology-extra);
  border-radius: 27px;
}

.farm-activities__text-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--farmology-primary);
  border-radius: 15px;
}

.farm-activities__text-box span {
  transform: rotate(-45deg);
  font-size: 18px;
  font-weight: 700;
  color: var(--farmology-base);
}

.farm-activities__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.farm-activities__img-box {
  position: relative;
  display: flex;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='242' height='200' viewBox='0 0 242 200'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='242' height='200'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='242' height='200' viewBox='0 0 242 200'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='242' height='200'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  align-items: center;
  justify-content: flex-start;
  width: 242px;
  height: 200px;
}

.farm-activities__img {
  position: relative;
  display: block;
  max-width: 242px;
  width: 100%;
}

.farm-activities__img img {
  width: 100%;
}

.farm-activities__right-inner ul li:nth-child(2) .farm-activities__img-box,
.farm-activities__right-inner ul li:nth-child(4) .farm-activities__img-box {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='242' height='200' viewBox='0 0 242 200'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='242' height='200'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='242' height='200' viewBox='0 0 242 200'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='242' height='200'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-left: -45px;
}

.farm-activities__single-title {
  position: absolute;
  transform: rotate(45deg);
  right: 26px;
  top: -1px;
}

.farm-activities__single-title h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  padding: 15px 35px 28px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: var(--farmology-secondary);
  z-index: 2;
}

.farm-activities__single-title a {
  color: var(--farmology-white);
}

.farm-activities__single-title a:hover {
  color: var(--farmology-primary);
}

.farm-activities__right-inner ul li:nth-child(2) .farm-activities__single-title {
  transform: rotate(-45deg);
  left: -77px;
  top: -3px;
  right: inherit;
}

.farm-activities__right-inner ul li:nth-child(3) .farm-activities__single-title {
  transform: rotate(133deg);
  right: 23px;
  bottom: 1px;
  top: inherit;
}

.farm-activities__right-inner ul li:nth-child(4) .farm-activities__single-title {
  transform: rotate(-132deg);
  left: -80px;
  bottom: -2px;
  right: inherit;
  top: inherit;
}

.farm-activities__right-inner ul li:nth-child(4) .farm-activities__single-title a {
  position: relative;
  display: block;
  transform: rotate(180deg);
}

.farm-activities__right-inner ul li:nth-child(3) .farm-activities__single-title a {
  position: relative;
  display: block;
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Farm For You
--------------------------------------------------------------*/
.farm-for-you {
  position: relative;
  display: block;
  padding: 110px 0 0px;
  z-index: 1;
}

.farm-for-you .swiper-container {
  overflow: visible;
}

.farm-for-you__carousel {
  position: relative;
  display: block;
}

.farm-for-you__single {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  padding: 30px 30px 30px;
  text-align: center;
  z-index: 1;
}

.farm-for-you__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: var(--farmology-bdr-radius);
  border: 1px dashed rgba(var(--farmology-extra-rgb), .20);
  z-index: -1;
}

.farm-for-you__single-bg-shape {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.08;
  border-radius: var(--farmology-bdr-radius);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.farm-for-you__img {
  position: relative;
  display: flex;
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--farmology-base);
  background: var(--farmology-primary);
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.farm-for-you__img img {
  width: 100%;
  border-radius: 50%;
}

.farm-for-you__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 10px 0 8px;
}

.farm-for-you__title a {
  color: var(--farmology-extra);
}

.farm-for-you__title a:hover {
  color: var(--farmology-base);
}

.farm-for-you__read-more {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}

.farm-for-you__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--farmology-extra);
  font-weight: 600;
  font-size: 15px;
}

.farm-for-you__read-more a:hover {
  color: var(--farmology-base);
}

.farm-for-you__read-more a span {
  color: var(--farmology-base);
  font-size: 14px;
}

.farm-for-you__carousel .swiper-nav-style-one {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.farm-for-you__carousel .farm-for-you-dot-style1 {
  position: relative;
  display: inline-flex;
  line-height: 0;
}

.farm-for-you__carousel .farm-for-you-dot-style1::before {
  position: absolute;
  top: 50%;
  left: -95px;
  width: 85px;
  height: 4px;
  background: rgb(25, 15, 6);
  background: linear-gradient(-90deg, rgba(25, 15, 6, 1) 14%, rgba(25, 15, 6, 0.7595413165266106) 35%, rgba(25, 15, 6, 0.5746673669467788) 57%, rgba(25, 15, 6, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}

.farm-for-you__carousel .farm-for-you-dot-style1::after {
  position: absolute;
  top: 50%;
  right: -95px;
  width: 85px;
  height: 4px;
  background: rgb(25, 15, 6);
  background: linear-gradient(90deg, rgba(25, 15, 6, 1) 14%, rgba(25, 15, 6, 0.7595413165266106) 35%, rgba(25, 15, 6, 0.5746673669467788) 57%, rgba(25, 15, 6, 0.19371498599439774) 95%);
  transform: translateY(-50%);
  opacity: 0.3;
  content: "";
}


.farm-for-you__carousel .farm-for-you-dot-style1 .swiper-pagination-bullet {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0px 6px;
  opacity: 1;
  background: var(--farmology-extra);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.farm-for-you__carousel .farm-for-you-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--farmology-base);
}

.farm-for-you__carousel .farm-for-you-dot-style1 .swiper-pagination-bullet::before {
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
  border: 1px solid var(--farmology-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

.farm-for-you__carousel .farm-for-you-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.farm-for-you__carousel .farm-for-you-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1.0);
}

/*--------------------------------------------------------------
# Our Story
--------------------------------------------------------------*/
.our-story {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.our-story .container {
  max-width: 1420px;
}

.our-story__inner {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: 10px;
  padding: 100px 50px 100px;
  overflow: hidden;
  z-index: 1;
}

.our-story__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 49%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
}

.our-story__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 51%;
  opacity: 0.08;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
}

.our-story__left {
  position: relative;
  display: block;
}

.our-story__left .section-title {
  margin-bottom: 24px;
}

.our-story__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.our-story__points {
  position: relative;
  display: block;
}

.our-story__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-story__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  z-index: 1;
}

.our-story__points li .icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px dashed var(--farmology-base);
  border-radius: 50%;
  z-index: -1;
}

.our-story__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--farmology-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.our-story__points li:hover .icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.our-story__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.our-story__points li .content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--farmology-extra);
  margin-bottom: 3px;
}

.our-story__points li+li {
  margin-top: 10px;
}

.our-story__right {
  position: relative;
  display: block;
  min-height: 343px;
}

.our-story__right-text {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 100px;
  z-index: 1;
}

.our-story__right-text h2 {
  font-size: 50px;
  font-weight: 700;
  font-family: var(--farmology-font-three);
  color: var(--farmology-primary);
  line-height: 55px;
}

.our-story__right-inner .row {
  --bs-gutter-x: 10px;
}

.our-story__right-inner {
  position: absolute;
  bottom: -100px;
  left: 50px;
}

.our-story__counter-single {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  padding: 30px 15px 30px;
  border-radius: var(--farmology-bdr-radius);
  margin-bottom: 10px;
  text-align: center;
  z-index: 1;
}

.our-story__counter-single-bg-shape {
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.our-story__counter-single:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.our-story__counter-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.our-story__counter-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--farmology-base);
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

.our-story__counter-icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--farmology-extra);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.our-story__counter-single:hover .our-story__counter-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.our-story__count-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 6px;
}

.our-story__count-box h3 {
  font-size: 45px;
  font-weight: 700;
  line-height: 45px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-extra);
}

.our-story__count-box span {
  font-size: 45px;
  font-weight: 700;
  line-height: 45px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-base);
}

.our-story__count-box-letter {
  color: var(--farmology-extra) !important;
}

.our-story__counter-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 26px;
}

/*--------------------------------------------------------------
# Shop Now
--------------------------------------------------------------*/
.shop-now {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.shop-now__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--farmology-extra-rgb), .20);
  background-color: var(--farmology-white);
  padding: 0 20px 30px;
  border-radius: var(--farmology-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.shop-now__single:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.shop-now__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.shop-now__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.shop-now__single:hover .shop-now__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.shop-now__single:hover .shop-now__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.shop-now__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-now__review {
  position: absolute;
  left: 0px;
  top: 20px;
  display: flex;
  align-items: center;
  background-color: var(--farmology-primary);
  padding: 3.5px 5px 3.5px;
  z-index: 2;
}

.shop-now__review i {
  color: var(--farmology-base);
  font-size: 14px;
  margin-right: 5px;
}

.shop-now__review p {
  color: var(--farmology-black);
  font-weight: 500;
}

.shop-now__info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.shop-now__info li {
  position: relative;
  display: block;
}

.shop-now__info li+li {
  margin-left: 8px;
}

.shop-now__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--farmology-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-now__info li a:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.shop-now__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 23px 15px 0px;
  border-top: 1px dashed var(--farmology-base);
}

.shop-now__content-left {
  position: relative;
  display: block;
}

.shop-now__content-left h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
  margin-top: 2px;
}

.shop-now__content-left h4 a {
  color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-now__content-left h4 a:hover {
  color: var(--farmology-base);
}

.shop-now__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-gray);
}

.shop-now__content-left p del {
  color: var(--farmology-base);
  margin-right: 5px;
}

.shop-now__btn-box {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.team-two__img::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--farmology-base);
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: 150px;
  z-index: 1;
}

.team-two__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: 150px;
  overflow: hidden;
  z-index: 1;
}

.team-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-extra-rgb), .20);
  opacity: 0;
  transform: translateY(50px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.team-two__single:hover .team-two__img:before {
  opacity: 1;
  transform: translateY(0px);
}

.team-two__img img {
  width: 100%;
  border-top-left-radius: var(--farmology-bdr-radius);
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: 150px;
  transform: scale(1.0);
  transition: all 1000ms ease;
}

.team-two__single:hover .team-two__img img {
  transform: scale(1.05) rotate(0deg);
}

.team-two__content {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  padding: 180px 30px 27px;
  margin-top: -159px;
  text-align: center;
}

.team-two__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}

.team-two__title a {
  color: var(--farmology-extra);
}

.team-two__title a:hover {
  color: var(--farmology-base);
}

.team-two__social-and-share {
  position: absolute;
  bottom: 25px;
  right: 10px;
  z-index: 2;
}

.team-two__share {
  position: relative;
  display: block;
}

.team-two__share p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--farmology-base);
  background-color: var(--farmology-white);
  border-radius: 50%;
  border: 1px solid var(--farmology-base);
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__share p:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.team-two__social {
  position: absolute;
  bottom: 36px;
  right: -21px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-27deg);
}

.team-two__social li {
  position: relative;
  display: block;
}

.team-two__social li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--farmology-white);
  font-size: 16px;
  color: var(--farmology-base);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateY(10px) rotate(28deg);
  transform: translateY(10px) rotate(28deg);
}

.team-two__social-and-share:hover .team-two__social li a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px) rotate(28deg);
  transform: translateY(0px) rotate(28deg);
}

.team-two__social li a:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.team-two__social-and-share:hover .team-two__social li:nth-child(1) a {
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.team-two__social-and-share:hover .team-two__social li:nth-child(2) a {
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.team-two__social-and-share:hover .team-two__social li:nth-child(3) a {
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.team-two__social-and-share:hover .team-two__social li:nth-child(4) a {
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}

.team-two__social li:nth-child(1) {
  margin-bottom: -39px;
}

.team-two__social li:nth-child(2) {
  margin-right: -5px;
  margin-bottom: -34px;
}

.team-two__social li:nth-child(4) {
  margin-top: -62px;
  margin-left: -13px;
}

.team-two__single-shape-1 {
  position: absolute;
  bottom: -13px;
  right: -19px;
  z-index: 1;
}

.team-two__single-shape-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  overflow: hidden;
  padding: 120px 0 120px;
  z-index: 1;
}

.testimonial-three__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-three__left {
  position: relative;
  display: block;
}

.testimonial-three__left .section-title {
  margin-bottom: 28px;
}

.testimonial-three__btn-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.testimonial-three__right {
  position: relative;
  display: block;
  margin-left: 48px;
  margin-right: 327px;
}

.testimonial-three__carousel {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
}

.testimonial-three__content {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--farmology-white);
  padding: 40px 40px 39px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.testimonial-three__content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.testimonial-three__content:after {
  content: "";
  position: absolute;
  left: 223px;
  height: 2px;
  width: 44px;
  background-color: var(--farmology-white);
  bottom: 10px;
}

.testimonial-three__quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  margin: 0 auto;
}

.testimonial-three__quote span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--farmology-white);
}

.testimonial-three__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
  margin-top: 14px;
  margin-bottom: 26px;
}

.testimonial-three__client-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-three__client-info h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.testimonial-three__client-info h3 a {
  color: var(--farmology-extra);
}

.testimonial-three__client-info h3 a:hover {
  color: var(--farmology-base);
}

.testimonial-three__client-info p {
  font-weight: 500;
  color: var(--farmology-base);
  position: relative;
  top: 2px;
}

.testimonial-three__img {
  position: relative;
  display: block;
  max-width: 90px;
  width: 100%;
  margin-top: 20px;
  margin-left: 82px;
}

.testimonial-three__img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-three__shape-1 {
  position: absolute;
  bottom: -48px;
  left: 190px;
}

.testimonial-three__shape-1 img {
  width: auto;
}

.testimonial-three__shape-1::before {
  content: "";
  position: absolute;
  left: 29px;
  height: 32px;
  width: 1px;
  border-left: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  transform: rotate(17deg);
  top: -10px;
}

.testimonial-three__shape-1::after {
  content: "";
  position: absolute;
  right: 41px;
  height: 60px;
  width: 1px;
  border-left: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  transform: rotate(60deg);
  top: -23px;
}

.testimonial-three__img-1 {
  position: absolute;
  top: 0;
  right: -327px;
}

.testimonial-three__img-1 img {
  width: auto;
  border-radius: 50%;
}

.testimonial-three__shape-2 {
  position: absolute;
  top: -100px;
  left: -143px;
  z-index: 2;
}

.testimonial-three__shape-2 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.testimonial-three__nav {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 110px;
  flex-direction: column;
  left: -70px;
  gap: 5px;
}

.testimonial-three__nav .swiper-button-prev1,
.testimonial-three__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
  border: 1px solid var(--farmology-base);
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.testimonial-three__nav .swiper-button-prev1:hover,
.testimonial-three__nav .swiper-button-next1:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-three__img-box {
  position: relative;
  display: block;
}

.blog-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.blog-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-three__single:hover .blog-three__img:before {
  opacity: .50;
}

.blog-three__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-three__single:hover .blog-three__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-three__date {
  position: absolute;
  top: -50px;
  right: 0;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 2;
}

.blog-three__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  background-color: var(--farmology-base);
  color: var(--farmology-white);
  font-weight: 700;
  font-size: 30px;
  font-family: var(--farmology-font-three);
}

.blog-three__date span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 60px;
  background-color: var(--farmology-extra);
  color: var(--farmology-base);
  font-weight: 700;
  font-size: 26px;
  font-family: var(--farmology-font-three);
}

.blog-three__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 25px 20px 25px;
  background-color: var(--farmology-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  border-radius: var(--farmology-bdr-radius);
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -80px;
  z-index: 2;
}

.blog-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.blog-three__meta li {
  position: relative;
  display: block;
}

.blog-three__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--farmology-gray);
}

.blog-three__meta li a span {
  position: relative;
  font-size: 16px;
  color: var(--farmology-base);
}

.blog-three__meta li a:hover {
  color: var(--farmology-base);
}

.blog-three__title {
  font-size: 24px;
  line-height: 34px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 12px 0 11px;
}

.blog-three__title a {
  color: var(--farmology-extra);
}

.blog-three__title a:hover {
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-three__top {
  position: relative;
  display: block;
  z-index: 2;
}

.site-footer-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer-three__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .50;
  z-index: -1;
}

.site-footer-three__shape-1 img {
  width: auto;
}

.site-footer-three__top-inner-wrap {
  position: relative;
  display: block;
  max-width: 700px;
  margin: 0 auto;
}

.site-footer-three__top-inner {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid var(--farmology-base);
  background-color: var(--farmology-primary);
  border-radius: 150px;
  padding: 31px 60px 30px;
  z-index: 1;
}

.site-footer-three__shape-2 {
  position: absolute;
  top: -87px;
  right: -94px;
  z-index: -1;
  transform: rotate(1deg);
}

.site-footer-three__shape-2 img {
  width: auto;
  animation: topBottom 3s ease-in-out infinite;
}

.site-footer-three__shape-3 {
  position: absolute;
  top: 10px;
  right: 0px;
  opacity: .20;
  z-index: -1;
}

.site-footer-three__shape-3 img {
  width: auto;
}

.site-footer-three__contact {
  position: relative;
  display: block;
}

.site-footer-three__contact-title-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--farmology-base);
  padding-bottom: 10px;
}

.site-footer-three__contact-title-box span {
  font-weight: 500;
  margin-top: 5px;
  position: relative;
  display: block;
}

.site-footer-three__contact-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 35px;
  color: var(--farmology-extra);
}

.site-footer-three__social-and-call {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer-three__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-footer-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  font-size: 16px;
  color: var(--farmology-base);
}

.site-footer-three__social a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.site-footer-three__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer-three__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--farmology-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer-three__call-icon:hover {
  background-color: var(--farmology-extra);
}

.site-footer-three__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-white);
}

.site-footer-three__call-content {
  position: relative;
  display: block;
  text-align: left;
}

.site-footer-three__call-content p {
  margin-bottom: 4px;
  font-weight: 500;
}

.site-footer-three__call-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.site-footer-three__call-content h4 a {
  color: var(--farmology-extra);
}

.site-footer-three__call-content h4 a:hover {
  color: var(--farmology-base);
}

.site-footer-three .site-footer-two__middle {
  padding: 194px 0 0px;
  margin-top: -102px;
  z-index: 1;
}

.site-footer-three__newsletter {
  position: relative;
  display: block;
}

.site-footer-three__text {
  color: rgba(var(--farmology-white-rgb), .80);
}

.site-footer-three__newsletter-form {
  position: relative;
  display: block;
}

.site-footer-three__newsletter-input {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-bottom: 19px;
}

.site-footer-three__newsletter-input input[type="email"] {
  font-size: 16px;
  color: var(--farmology-white);
  font-weight: 400;
  height: 54px;
  width: 100%;
  background: #664a44;
  border: none;
  border-radius: 5px;
  outline: none;
  padding: 0 50px 0;
  padding-right: 20px;
}

.site-footer-three__newsletter-input-icon {
  position: absolute;
  top: 17px;
  left: 20px;
}

.site-footer-three__newsletter-input-icon span {
  font-size: 19px;
  color: var(--farmology-base);
}

.site-footer-three__newsletter-form .checked-box {
  position: relative;
  display: block;
  margin-top: -4px;
}

.site-footer-three__newsletter-form .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: rgba(var(--farmology-white-rgb), .80);
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--farmology-font);
}

.site-footer-three__newsletter-form .checked-box input[type="checkbox"] {
  display: none;
}

.site-footer-three__newsletter-form .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #664a44;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.site-footer-three__newsletter-form .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 5px;
  display: block;
  border-bottom: 2px solid var(--farmology-white);
  border-right: 2px solid var(--farmology-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.site-footer-three__newsletter-form.checked-box input[type="checkbox"]:checked+label span {
  border-color: var(--farmology-white);
}

.site-footer-three__newsletter-form .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.site-footer-three__newsletter-btn {
  position: relative;
  display: block;
  margin-top: 27px;
}

.site-footer-three__newsletter-btn .thm-btn {
  border: none;
  background-color: var(--farmology-white);
  color: var(--farmology-extra);
}

.site-footer-three .footer-widget-two__usefull-link {
  margin-left: 100px;
}

/*--------------------------------------------------------------
# Offer One
--------------------------------------------------------------*/
.offer-one {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  z-index: 1;
}

.offer-one__single {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  padding: 55px 55px 55px;
  margin-bottom: 30px;
  z-index: 1;
}

.offer-one__single::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
}

.offer-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.offer-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(245, 203, 75, 1) 20%, rgba(245, 203, 75, 0) 100%);
  border-radius: var(--farmology-bdr-radius);
}

.offer-one__left {
  position: relative;
  display: block;
}

.offer-one__price {
  font-size: 34px;
  font-weight: 900;
  line-height: 30px;
  font-family: var(--farmology-font-three);
  color: var(--farmology-secondary);
}

.offer-one__price span {
  font-size: 28px;
}

.offer-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--farmology-extra);
  margin: 3px 0 21px;
}

.offer-one__btn-box {
  position: relative;
  display: block;
}

.offer-one__btn-box .thm-btn .hover-btn {
  background-color: var(--farmology-white);
}

.offer-one__right-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.offer-one__inner {
  position: relative;
  display: block;
}

.offer-one__carousel {
  position: relative;
  display: block;
}

.offer-one__carousel::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
}

.offer-one__single-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.offer-one__single-two-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(245, 203, 75, 1) 20%, rgba(245, 203, 75, 0) 100%);
  border-radius: var(--farmology-bdr-radius);
}

.offer-one__single-two {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 55px 60px 55px;
}

.offer-one__single-two-content {
  position: relative;
  display: block;
  flex: 1;
}

.offer-one__sub-title {
  font-size: 25px;
  font-weight: 900;
  line-height: 35px;
  color: var(--farmology-black);
  font-family: var(--farmology-font-three);
}

.offer-one__title-two {
  font-size: 30px;
  font-weight: 700;
  line-height: 20px;
  color: var(--farmology-extra);
  margin: 8px 0 7px;
}

.offer-one__title-two span {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.offer-one__code {
  color: var(--farmology-secondary);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.offer-one__img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--farmology-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 90px 90px;
  border-radius: 50%;
  max-width: 190px;
  width: 100%;
  height: 190px;
}

.offer-one__img-box:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .70);
  border-radius: 50%;
}

.offer-one__img {
  position: relative;
  display: block;
  max-width: 150px;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.offer-one__img img {
  width: 100%;
  border-radius: 50%;
}

.offer-one__price-2 {
  position: absolute;
  left: -30px;
  top: 10%;
  width: 65px;
  height: 65px;
  background-color: var(--farmology-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-one__price-2 span {
  font-weight: 600;
  color: var(--farmology-white);
  line-height: 23px;
  font-family: var(--farmology-font-three);
  font-size: 22px;
}

.offer-one__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  gap: 5px;
  z-index: 2;
}

.offer-one__nav .swiper-button-prev1,
.offer-one__nav .swiper-button-next1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
  z-index: 100;
}

.offer-one__nav .swiper-button-prev1:hover,
.offer-one__nav .swiper-button-next1:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.offer-one__nav .swiper-button-next1 {
  margin-top: 0px;
}

/*--------------------------------------------------------------
# About Four
--------------------------------------------------------------*/
.about-four {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

.about-four__bg-color {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(246, 242, 228, 1) 0, rgba(246, 242, 228, 0) 100%);
  z-index: -1;
}

.about-four__bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.about-four__left {
  position: relative;
  display: block;
  margin-right: 100px;
  margin-left: 52px;
}

.about-four__img-box {
  position: relative;
  display: block;
}

.about-four__img {
  position: relative;
  display: block;
}

.about-four__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(0deg, rgba(246, 242, 228, 1) 5%, rgba(246, 242, 228, 0) 100%);
}

.about-four__img img {
  width: 100%;
}

.about-four__experience {
  position: absolute;
  top: 18px;
  right: -56px;
  display: flex;
  background-color: var(--farmology-primary);
  text-align: center;
  border: 1px solid var(--farmology-base);
  max-width: 160px;
  height: 160px;
  width: 100%;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-four__shape-1 {
  position: absolute;
  top: -30px;
  left: -48px;
  transform: rotate(-1deg);
}

.about-four__shape-1 img {
  width: auto;
  animation: leftRight 4s ease-in-out infinite;
}

.about-four__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-four__count-box h3 {
  font-size: 45px;
  font-family: var(--farmology-font-three);
  font-weight: 900;
  color: var(--farmology-extra);
}

.about-four__count-box span {
  font-size: 45px;
  font-family: var(--farmology-font-three);
  font-weight: 900;
  color: var(--farmology-base);
}

.about-four__experience-text {
  font-weight: 600;
  color: var(--farmology-extra);
  line-height: 22px;
  margin-top: 3px;
}

.about-four__right {
  position: relative;
  display: block;
}

.about-four__right .section-title {
  margin-bottom: 25px;
}

.about-four__text-2 {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--farmology-secondary);
  margin-top: 14px;
}

.about-four__points-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
  margin: 23px 0 10px;
}

.about-four__points-box li {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 19px;
}

.about-four__points-box li:before {
  content: "";
  position: absolute;
  top: 59%;
  left: -35px;
  width: 1px;
  height: 60px;
  background-color: var(--farmology-base);
  transform: translateY(-50%);
}

.about-four__points-box li:first-child:before {
  display: none;
}

.about-four__points-box li .icon {
  position: relative;
  display: inline-block;
}

.about-four__points-box li .icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--farmology-base);
}

.about-four__points-box li h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--farmology-extra);
}

.about-four__btn-and-author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about-four__btn-box {
  position: relative;
  display: block;
}

.about-four__author-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-four__author-details {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.about-four__author-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  border: 1px dashed var(--farmology-extra);
  border-radius: 50%;
}

.about-four__author-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.about-four__author-img img {
  width: 100%;
  border-radius: 50%;
}

.about-four__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.about-four__author-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 4px;
}

.about-four__author-sign {
  position: relative;
  display: block;
  margin-left: 25px;
  padding-left: 25px;
}

.about-four__author-sign:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background-color: var(--farmology-base);
}

.about-four__author-sign img {
  width: auto;
}

/*--------------------------------------------------------------
# About Five
--------------------------------------------------------------*/
.about-five {
  padding: 120px 0 120px;
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  padding: 120px 0 120px;
  z-index: 1;
}

.feature-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.feature-two__inner {
  position: relative;
  display: block;
}

.feature-two__img-box {
  position: relative;
  max-width: 120px;
  width: 100%;
  height: 120px;
  border: 5px solid var(--farmology-base);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-two__img {
  position: relative;
  display: block;
  max-width: 100px;
  width: 100%;
}

.feature-two__img-box:before {
  content: "";
  position: absolute;
  bottom: -35px;
  width: 1px;
  height: 35px;
  background-color: rgba(var(--farmology-primary-rgb), .20);
  left: 52%;
}

.feature-two__img-box:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 53%;
  width: 10px;
  height: 10px;
  background-color: rgba(var(--farmology-base-rgb), 1);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.feature-two__img img {
  width: 100%;
  border-radius: 50%;
}

.feature-two__bdr {
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  background-color: rgba(var(--farmology-primary-rgb), .20);
  max-width: 1102px;
  margin: 30px auto 50px;
}

.feature-two__list-box {
  position: relative;
  display: block;
}

.feature-two__single-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 30px 25px 30px;
  margin-bottom: 30px;
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

.feature-two__single-inner:hover {
  background-color: var(--farmology-base);
}

.feature-two__single {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  transform: translateY(0px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.feature-two__single-inner:hover .feature-two__single {
  opacity: 0;
  transform: translateY(170px);
}

.feature-two__single-inner-wrap {
  position: relative;
  display: block;
}

.feature-two__single-inner-wrap:after {
  content: "'";
  position: absolute;
  top: -50px;
  left: 50%;
  width: 1px;
  height: 50px;
  background-color: rgba(var(--farmology-primary-rgb), .20);
  z-index: 1;
}

.feature-two__single-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.feature-two__icon {
  position: relative;
  display: inline-block;
}

.feature-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: var(--farmology-base);
}

.feature-two__title-box {
  position: relative;
  display: block;
  margin-top: 5px;
}

.feature-two__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--farmology-extra);
  text-transform: capitalize;
}

.feature-two__bottom {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.feature-two__title-two {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--farmology-primary);
  margin-bottom: 20px;
}

.feature-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.feature-two__btn-box .thm-btn {
  color: var(--farmology-extra);
  background-color: var(--farmology-base);
}

.feature-two__btn-box .hover-btn {
  background-color: var(--farmology-white);
}

.feature-two__content {
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-50%);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}

.feature-two__single-inner:hover .feature-two__content {
  opacity: 1;
  transform: translateY(0);
}

.feature-two__content p {
  color: var(--farmology-white);
}

/*==============================================
    Blog Four
===============================================*/
.blog-four {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-four__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-four__img-box {
  position: relative;
  display: block;
}

.blog-four__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-four__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--farmology-black-rgb), 1);
  opacity: 0;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-four__single:hover .blog-four__img:before {
  opacity: .50;
}

.blog-four__img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  border-radius: var(--farmology-bdr-radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.blog-four__single:hover .blog-four__img img {
  transform: scale(1.05) rotate(0deg);
}

.blog-four__content {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 30px;
  border-bottom-left-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
}

.blog-four__list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}

.blog-four__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-four__list li .icon {
  position: relative;
  display: inline-block;
}

.blog-four__list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-base);
}

.blog-four__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
  border-bottom: 1px dashed var(--farmology-base);
  padding-bottom: 16px;
  margin-bottom: 20px;
  margin-top: 5px;
}

.blog-four__title a {
  color: var(--farmology-extra);
}

.blog-four__title a:hover {
  color: var(--farmology-base);
}

.blog-four__author-and-read-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-four__author-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-four__author-img {
  position: relative;
  display: block;
  max-width: 60px;
  width: 100%;
}

.blog-four__author-img>img {
  width: 100%;
  border-radius: 50%;
}

.blog-four__author-content {
  position: relative;
  display: block;
  flex: 1;
}

.blog-four__author-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 2px;
  color: var(--farmology-extra);
}

.blog-four__read-more {
  position: relative;
  display: block;
}

.blog-four__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--farmology-base);
}

.blog-four__read-more a:hover {
  color: var(--farmology-black);
}

.blog-four__read-more a span {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Five
--------------------------------------------------------------*/
.blog-five {
  padding: 120px 0 90px;
}


/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(78, 52, 46, 1) 8%, rgba(78, 52, 46, 0) 95%);
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 331px 0 173px;
  text-align: center;
  z-index: 1;
}

.page-header__img-1 {
  position: absolute;
  bottom: 0;
  right: 100px;
}

.page-header__img-1 img {
  width: auto;
}

.page-header__inner h3 {
  font-size: 60px;
  color: var(--farmology-white);
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 14px;
}

.thm-breadcrumb__inner {
  position: relative;
  display: block;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--farmology-base);
  font-family: var(--farmology-font-two);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 5px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--farmology-white);
  font-family: var(--farmology-font-two);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--farmology-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 16px;
  color: var(--farmology-base);
  font-weight: 700;
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.blog-details__tag-1 {
  position: absolute;
  bottom: 5px;
  right: 65px;
  z-index: 4;
}

.blog-details__tag-1 a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--farmology-primary);
  font-size: 16px;
  color: var(--farmology-extra);
  font-weight: 600;
  padding: 9px 25px 8px;
  border-radius: var(--farmology-bdr-radius);
  text-transform: capitalize;
  z-index: 1;
}

.blog-details__tag-1 a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.blog-details__date {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--farmology-extra);
  width: 52px;
  height: 52px;
  border-radius: var(--farmology-bdr-radius);
  border: 1px solid rgba(var(--farmology-primary-rgb), .90);
}

.blog-details__date p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  line-height: 18px;
  color: var(--farmology-base);
  font-weight: 700;
}

.blog-details__date span {
  font-size: 14px;
  font-weight: 600;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-details__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--farmology-base);
  border-radius: 16px;
}

.blog-details__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--farmology-font-two);
  color: var(--farmology-white);
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--farmology-extra);
}

.blog-details__meta li a:hover {
  color: var(--farmology-base);
}

.blog-details__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 30px;
  margin-bottom: 19px;
  color: var(--farmology-extra);
}

.blog-details__text-2 {
  margin-top: 21px;
  margin-bottom: 40px;
}

.blog-details__author-box {
  position: relative;
  display: block;
  background-color: rgba(var(--farmology-base-rgb), .20);
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 40px 37px;
}

.blog-details__author-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: var(--farmology-extra);
  margin-bottom: 20px;
}

.blog-details__author-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: right;
  color: var(--farmology-black);
  font-family: var(--farmology-font-two);
}

.blog-details__author-name span {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--farmology-font);
}

.blog-details__title-2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  margin-top: 41px;
  margin-bottom: 19px;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.blog-details__img-box {
  position: relative;
  display: block;
  margin-top: 29px;
}

.blog-details__img-box-img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details__img-box-img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.blog-details__tag-and-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 30px 40px 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.blog-details__tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__tag-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.blog-details__tag-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-details__tag-list li {
  position: relative;
  display: block;
}

.blog-details__tag-list li a {
  position: relative;
  background-color: var(--farmology-white);
  color: var(--farmology-extra);
  padding: 7px 15px 7px;
  border-radius: var(--farmology-bdr-radius);
  display: inline-block;
}

.blog-details__tag-list li a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
}

.blog-details__share-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

.blog-details__share-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}

.blog-details__share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details__share a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 14px;
  color: var(--farmology-black);
  background-color: var(--farmology-white);
  border-radius: 50%;
}

.blog-details__share a:hover {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
}

.comment-one {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 40px 40px;
}

.comment-one__single {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  padding: 29px 29px 30px;
}

.comment-one__single+.comment-one__single {
  margin-top: 30px;
}

.comment-one__image {
  position: relative;
  display: block;
  max-width: 70px;
  width: 100%;
}

.comment-one__image img {
  width: 100%;
  border-radius: 50%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content span {
  color: var(--farmology-extra);
}

.comment-one__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--farmology-extra);
  margin-bottom: 3px;
}

.comment-one__content p {
  margin-top: 14px;
}

.comment-one__btn-box {
  position: absolute;
  top: 28px;
  right: 0px;
}

.comment-one__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
  font-family: var(--farmology-font-two);
  color: var(--farmology-black);
}

.comment-one__btn span {
  font-size: 14px;
  color: var(--farmology-base);
}

.comment-one__btn:hover {
  color: var(--farmology-base);
}

.comment-form {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 40px 40px;
  margin-top: 60px;
}

.comment-form__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--farmology-extra);
}

.comment-form__text {
  margin-top: 23px;
  margin-bottom: 38px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-white);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--farmology-gray);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 16px;
  color: var(--farmology-gray);
  height: 140px;
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-white);
  border: none;
  padding: 20px 20px 30px;
  outline: none;
  font-weight: 400;
}

.comment-form__input-box.text-message-box {
  height: 140px;
}

.comment-form__btn-box {
  position: relative;
  display: block;
}

.comment-form__btn-box .thm-btn {
  border: none;
}

/***
=====================================================
    Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
  padding-left: 40px;
  color: var(--farmology-extra);
}

.sidebar__title::before {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  width: 30px;
  background: var(--farmology-extra);
  content: "";
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 30px 30px 30px;
  border-radius: var(--farmology-bdr-radius);
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--farmology-white);
  color: var(--farmology-gray);
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: var(--farmology-bdr-radius);
  border: none;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--farmology-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--farmology-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--farmology-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--farmology-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--farmology-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--farmology-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--farmology-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: var(--farmology-extra);
  color: var(--farmology-white);
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 42px 30px 50px;
}

.sidebar__category-list {
  position: relative;
  display: block;
  margin: 0;
}

.sidebar__category-list li+li {
  position: relative;
  margin-top: 15px;
}

.sidebar__category-list li a {
  position: relative;
  display: block;
  color: var(--farmology-extra);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 20px 16px;
  background-color: var(--farmology-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--farmology-font-two);
  border-radius: var(--farmology-bdr-radius);
  text-transform: capitalize;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--farmology-base);
  z-index: -1;
  transform: scaleY(0.0);
  transform-origin: left;
  transform-style: preserve-3d;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__category-list li a:hover:before {
  transform: scaleY(1.0);
}

.sidebar__category-list li a:hover {
  color: var(--farmology-white);
}

.sidebar__category-list li.active a {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  right: 0;
  color: var(--farmology-primary);
  font-size: 15px;
  font-weight: 500;
  background-color: var(--farmology-extra);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--farmology-font);
  border-top-right-radius: var(--farmology-bdr-radius);
  border-bottom-right-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.sidebar__category-list li a:hover span,
.sidebar__category-list li.active a span {
  background: rgba(255, 255, 255, 0.6);
  color: var(--farmology-extra);
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 42px 30px 42px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
}

.sidebar__post-box {
  position: relative;
  display: block;
}

.sidebar__post-single {
  position: relative;
  display: block;
}

.sidebar__post-single+.sidebar__post-single {
  margin-top: 27px;
}

.sidebar-post__img {
  position: relative;
  display: block;
  background: var(--farmology-black);
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
}

.sidebar-post__img::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 100%;
  background-color: rgba(var(--farmology-base-rgb), .80);
  border-radius: var(--farmology-bdr-radius);
  -webkit-transform: translateX(90%, 90%);
  transform: translateX(90%, 90%);
  opacity: 0.70;
  z-index: 1;
}

.sidebar__post-single:hover .sidebar-post__img::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
  opacity: 1.0;
}

.sidebar-post__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale(1.0);
  transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.sidebar__post-single:hover .sidebar-post__img img {
  opacity: 0.70;
  transform: scale(1.1) rotate(1deg);
}

.sidebar__post-content-box {
  position: relative;
  margin-top: 18px;
}

.sidebar__post-content-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.sidebar__post-content-box h3 a {
  color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-single:hover .sidebar__post-content-box h3 a {
  color: var(--farmology-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 41px 30px 40px;
  overflow: hidden;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: block;
  color: var(--farmology-extra);
  font-size: 15px;
  font-weight: 400;
  background: var(--farmology-white);
  padding: 6px 18px;
  border-radius: 5px;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__tags-list li a:hover {
  color: var(--farmology-white);
  background: var(--farmology-base);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-list__left {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 56px;
}

.blog-list__img {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.blog-list__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-list__single:hover .blog-list__img:before {
  opacity: 0.2;
}

.blog-list__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
}

.blog-list__single:hover .blog-list__img img {
  transform: scale(1.06) rotate(0deg);
}

.blog-list__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.blog-list__user-and-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 31px;
  background-color: var(--farmology-base);
  border-radius: 16px;
}

.blog-list__user p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--farmology-font-two);
  color: var(--farmology-white);
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--farmology-extra);
}

.blog-list__meta li a:hover {
  color: var(--farmology-base);
}

.blog-list__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.blog-list__title a {
  color: var(--farmology-extra);
}

.blog-list__title a:hover {
  color: var(--farmology-base);
}

.blog-list__read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--farmology-font-two);
  color: var(--farmology-black);
  margin-top: 27px;
}

.blog-list__read-more:hover {
  color: var(--farmology-base);
}

.blog-list__read-more span {
  color: var(--farmology-base);
}

.blog-list__read-more::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #6E777D;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__read-more:hover::before {
  background-color: var(--farmology-base);
}

.blog-listing__pagination {
  position: relative;
  display: block;
  text-align: center;
}

.blog-listing__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 10px;
}

.blog-listing__pagination .pg-pagination li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  color: var(--farmology-black);
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  font-family: var(--farmology-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-listing__pagination .pg-pagination li:hover a,
.blog-listing__pagination .pg-pagination li.active a {
  border: 1px solid var(--farmology-extra);
  color: var(--farmology-white);
  background-color: var(--farmology-extra);
}

/*--------------------------------------------------------------
# Blog Left Sidebar
--------------------------------------------------------------*/
.blog-left-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Blog Right Sidebar
--------------------------------------------------------------*/
.blog-right-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.contact-info__single {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  background-color: var(--farmology-primary);
  text-align: center;
  padding: 40px 40px 41px;
  margin-bottom: 30px;
}

.contact-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.contact-info__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: 50%;
  background-color: var(--farmology-base);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
  transform: scaleX(1);
}

.contact-info__icon span {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: var(--farmology-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
  transform: scale(0.9);
  color: var(--farmology-white);
}

.contact-info__single p {
  margin-top: 20px;
  margin-bottom: 5px;
}

.contact-info__single h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--farmology-extra);
}

.contact-info__single h3 a {
  color: var(--farmology-extra);
}

.contact-info__single h3 a:hover {
  color: var(--farmology-base)
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.contact-page__inner {
  position: relative;
  display: block;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  padding: 60px 0 60px;
}

.contact-page__left {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 10px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 523px;
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.contact-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
  margin-right: 40px;
}

.contact-page__form-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--farmology-white);
  margin-bottom: 26px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="number"] {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--farmology-white-rgb), 0.05);
  border: 1px solid rgba(var(--farmology-white-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--farmology-primary-rgb), .60);
  display: block;
  border-radius: var(--farmology-bdr-radius);
}

.contact-page__input-box .select-box {
  width: 100%;
}

.contact-page__input-box .nice-select {
  height: 57px;
  width: 100%;
  background-color: rgba(var(--farmology-white-rgb), 0.05);
  border: 1px solid rgba(var(--farmology-white-rgb), .10);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--farmology-gray);
  display: block;
  font-weight: 400;
  border-radius: 20px;
  line-height: 57px;
  float: none;
}

.contact-page__input-box textarea {
  font-size: 16px;
  color: rgba(var(--farmology-primary-rgb), .60);
  height: 175px;
  width: 100%;
  background-color: rgba(var(--farmology-white-rgb), 0.05);
  border: 1px solid rgba(var(--farmology-white-rgb), .10);
  padding: 15px 20px 30px;
  border-radius: var(--farmology-bdr-radius);
  outline: none;
  font-weight: 400;
  position: relative;
  display: block;
}

.contact-page__input-box.text-message-box {
  height: 175px;
}


.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn-box .thm-btn {
  border: none;
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.contact-page__btn-box .hover-btn {
  background-color: var(--farmology-primary);
}

/***
=============================================
Error Page
=============================================
***/
.error-page {
  position: relative;
  display: block;
  background: var(--farmology-white);
  padding: 120px 0px 120px;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  display: block;
}

.error-page__img {
  position: relative;
  display: block;
}

.error-page__img img {
  width: auto;
}

.error-page__content {
  position: relative;
  display: block;
  margin-top: 20px;
}

.error-page__content h2 {
  color: var(--farmology-base);
  font-size: 40px;
  line-height: 1.5em;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.error-page__content p {
  color: var(--farmology-extra);
  margin: 0;
}

.error-page__content .btn-box {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 21px;
}

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Pricing Page
--------------------------------------------------------------*/
.pricing-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonials-page .testimonial-one__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
  position: relative;
  display: block;
  padding: 120px 0 108px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  margin-bottom: 37px;
}

.team-details__top-left {
  position: relative;
  display: block;
}

.team-details__img-1 {
  position: relative;
  display: block;
}

.team-details__img-1 img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -12px;
}

.team-details__client-box {
  position: relative;
  display: block;
}

.team-details__client-name {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.team-details__client-sub-title {
  position: relative;
  display: block;
  margin-top: 3px;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 30px;
}

.team-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--farmology-base);
  font-size: 16px;
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid var(--farmology-base);
  z-index: 1;
}

.team-details__social a:hover {
  color: var(--farmology-white);
  border: 1px solid var(--farmology-base);
}

.team-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--farmology-base);
  border-radius: 0%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-details__social a:hover:before {
  transform: scaleX(1);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__client-address {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  margin-top: 19px;
  padding-top: 20px;
}

.team-details__client-address li {
  position: relative;
  display: block;
}

.team-details__client-address li+li {
  margin-top: 16px;
}

.team-details__client-address li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--farmology-extra);
}

.team-details__client-address li p span {
  color: var(--farmology-black);
}

.team-details__client-address li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 5px;
  font-family: var(--farmology-font);
  color: var(--farmology-extra);
}

.team-details__client-address li h5 a {
  color: var(--farmology-extra);
}

.team-details__client-address li h5 a:hover {
  color: var(--farmology-base);
}

.team-details__bottom {
  position: relative;
  display: block;
}

.team-details__bottom-left {
  position: relative;
  display: block;
}

.team-details__bottom-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 13px;
  color: var(--farmology-extra);
}

.team-details__practice-area {
  position: relative;
  display: block;
  margin-top: 15px;
}

.team-details__practice-area-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--farmology-extra);
}

.team-details__practice-area-list-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-details__practice-area-list {
  position: relative;
  display: block;
}

.team-details__practice-area-list li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.team-details__practice-area-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  background-color: var(--farmology-base);
}

.team-details__practice-area-list li .text {
  position: relative;
  display: block;
  flex: 1;
}

.team-details__practice-area-list li .text p {
  font-weight: 500;
  color: var(--farmology-base);
}


.team-details__bottom-right {
  position: relative;
  display: block;
}

.team-details__progress-title-1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  margin-bottom: 23px;
  color: var(--farmology-extra);
}

.team-details__progress-list {
  position: relative;
  display: block;
}

.team-details__progress-list li {
  position: relative;
  display: block;
}

.team-details__progress-list li+li {
  margin-top: 20px;
}

.team-details__progress {
  position: relative;
  display: block;
}

.team-details__progress-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--farmology-extra);
  margin-bottom: 11px;
}

.team-details__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--farmology-extra);
  border-radius: 6px;
}

.team-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--farmology-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details__progress .count-text {
  position: absolute;
  right: -18px;
  bottom: 22px;
  color: var(--farmology-extra);
  line-height: 26px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: var(--farmology-font);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.team-details__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.team-details-contact {
  position: relative;
  display: block;
  padding: 0px 0 120px;
  z-index: 1;
}

.team-details-contact .container {
  max-width: 830px;
}

.team-details-contact__inner {
  position: relative;
  display: block;
  text-align: center;
}

.team-details-contact__form {
  position: relative;
  display: block;
}

.team-details-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-details-contact__input-box input[type="text"],
.team-details-contact__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--farmology-gray);
  display: block;
  border-radius: var(--farmology-bdr-radius);
}

.team-details-contact__input-box .select-box {
  width: 100%;
}

.team-details-contact__input-box .nice-select {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--farmology-gray);
  font-weight: 400;
  border-radius: var(--farmology-bdr-radius);
  line-height: 60px;
  display: block;
  float: none;
}

.team-details-contact__input-box .nice-select:after {
  position: absolute;
  top: 22px;
  right: 30px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--farmology-gray);
  border-right: 2px solid var(--farmology-gray);
  margin-top: 0px;
  z-index: 10;
}

.team-details-contact__input-box textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 15px 30px 30px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--farmology-gray);
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
}

.team-details-contact__input-box.text-message-box {
  height: 200px;
}

.team-details-contact__btn-box {
  position: relative;
  display: block;
}

.team-details-contact__btn-box .thm-btn {
  border: none;
}

.team-details-contact__btn-box .thm-btn:hover {
  border: none;
}

/***
=============================================
Contact Info One
=============================================
***/
.contact-info-one {
  position: relative;
  display: block;
  margin-bottom: -92px;
  z-index: 5;
}

.contact-info-one__inner {
  position: relative;
  display: block;
  padding: 60px 80px 60px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--farmology-primary);
  z-index: 1;
}

.contact-info-one__inner:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed rgba(var(--farmology-extra-rgb), .30);
  border-radius: var(--farmology-bdr-radius);
}

.contact-info-one__inner .row {
  --bs-gutter-x: 100px;
}

.contact-info-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: .10;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.contact-info-one__single {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-info-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70px;
  width: 100%;
  height: 70px;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  overflow: hidden;
}

.contact-info-one__single-icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed rgba(var(--farmology-base-rgb), .70);
  border-radius: 50%;
}

.contact-info-one__single-icon span {
  position: relative;
  display: inline-block;
  color: var(--farmology-base);
  font-size: 24px;
  line-height: 24px;
  transition: all 500ms ease;
}

.contact-info-one__single:hover .contact-info-one__single-icon span {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.contact-info-one__single-content {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.contact-info-one__single-content h3 {
  color: var(--farmology-extra);
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-info-one__single-content p {
  color: var(--farmology-gray);
}

.contact-info-one__single-content p a {
  color: var(--farmology-gray);
}

.contact-info-one__single-content p a:hover {
  color: var(--farmology-extra);
}

/***=============================================
Site Footer 
=============================================***/
.site-footer-four {
  position: relative;
  display: block;
  background: var(--farmology-extra);
  padding: 212px 0px 0px;
  z-index: 1;
}

.site-footer-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer-four__top {
  position: relative;
  display: block;
  padding: 0px 0px 93px;
}

.site-footer-four__about {
  position: relative;
  display: block;
}

.footer-widget-four__about-text {
  color: rgba(var(--farmology-white-rgb), .80);
  margin: 20px 0 20px;
}

.footer-widget-four__social-links {
  position: relative;
  display: block;
}

.footer-widget-four__social-links {
  position: relative;
  display: block;
}

.footer-widget-four__social-links ul {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget-four__social-links ul li {
  position: relative;
  display: block;
}

.footer-widget-four__social-links ul li+li {
  margin-left: 10px;
}

.footer-widget-four__social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 15px;
  background: var(--farmology-base);
  color: var(--farmology-extra);
  border-radius: 50%;
  overflow: hidden;
}

.footer-widget-four__social-links ul li a:hover {
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
}

.site-footer-four__apps {
  position: relative;
  display: block;
  margin-top: 16px;
}

.site-footer-four__apps .title {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.site-footer-four__apps .title h3 {
  color: var(--farmology-white);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.site-footer-four__apps-box {
  position: relative;
  display: block;
}

.site-footer-four__apps-box a {
  position: relative;
  display: inline-block;
}

.site-footer-four__apps-box a+a {
  margin-left: 13px;
}

.site-footer-four__apps-box a img {
  width: 100%;
}

.site-footer-four .footer-widget-two__usefull-link {
  margin-left: 50px;
}

.site-footer-four .footer-widget-two__products {
  margin-left: -30px;
}

.footer-widget-four__twitter-feed {
  position: relative;
  display: block;
  margin-left: -80px;
}

.footer-widget-four__twitter-feed-inner {
  position: relative;
  display: block;
  background: rgba(var(--farmology-white-rgb), 0.05);
  padding: 30px 40px 30px;
  border-radius: var(--farmology-bdr-radius);
}

.footer-widget-four__twitter-feed-single {
  position: relative;
  display: block;
}

.footer-widget-four__twitter-feed-single p {
  color: rgba(var(--farmology-white-rgb), 0.80);
}

.footer-widget-four__twitter-feed-single p a {
  color: rgba(var(--farmology-white-rgb), 0.80);
}

.footer-widget-four__twitter-feed-single p a:hover {
  color: var(--farmology-base);
}

.footer-widget-four__twitter-feed-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 27px;
}

.footer-widget-four__twitter-feed-icon {
  position: relative;
  display: block;
}

.footer-widget-four__twitter-feed-icon span {
  position: relative;
  display: inline-block;
  color: rgba(var(--farmology-white-rgb), 0.40);
  font-size: 50px;
}

.footer-widget-four__twitter-feed-details {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.footer-widget-four__twitter-feed-details h5 {
  color: var(--farmology-base);
  font-size: 18px;
  margin-bottom: 2px;
}

.footer-widget-four__twitter-feed-details p {
  color: rgba(var(--farmology-white-rgb), 0.80);
}


.footer-widget-four__twitter-feed-carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 25px;
}

.footer-widget-four__twitter-feed-carousel.owl-carousel .owl-dots {
  text-align: left;
  margin: 0;
  line-height: 0;
}

.footer-widget-four__twitter-feed-carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--farmology-white);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.footer-widget-four__twitter-feed-carousel.owl-carousel .owl-dot.active {
  background-color: var(--farmology-base);
}

.footer-widget-four__twitter-feed-carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.footer-widget-four__twitter-feed-carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.site-footer-four__shape-1 {
  position: absolute;
  bottom: 68px;
  right: 50px;
  opacity: .60;
}

.site-footer-four__shape-1 img {
  width: auto;
}

.site-footer-four__bottom {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--farmology-primary-rgb), .10);
  z-index: 5;
}

.site-footer-four__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px 22px;
}

.site-footer-four__copyright {
  position: relative;
  display: block;
}

.site-footer-four__copyright p {
  color: rgba(var(--farmology-white-rgb), 0.80);
}

.site-footer-four__copyright p a {
  color: rgba(var(--farmology-white-rgb), 0.80);
}

.site-footer-four__copyright p a:hover {
  color: var(--farmology-base);
}

.site-footer-four__payment {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer-four__payment li {
  position: relative;
  display: block;
  margin-right: 5px;
}

.site-footer-four__payment li:last-child {
  margin-right: 0px;
}

.site-footer-four__payment li a {
  position: relative;
  display: block;
}

.site-footer-four__payment li a img {
  width: 100%;
}

/*==============================================
    Services Page
===============================================*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.service-details__left {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
}

.service-details__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.service-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
  color: var(--farmology-extra);
}

.service-details__text-1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--farmology-extra);
}

.service-details__text-2 {
  margin-top: 20px;
  margin-bottom: 41px;
}

.service-details__points-list {
  position: relative;
  display: block;
}

.service-details__points-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details__points-list li+li {
  margin-top: 16px;
}

.service-details__points-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--farmology-base);
}

.service-details__points-list li p {
  color: var(--farmology-black);
}

.service-details__img-box {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 31px;
}

.service-details__img-box-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-img {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.service-details__img-box-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.service-details__img-box-img:hover:before {
  opacity: 0.2;
}

.service-details__img-box-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transition: transform 1s ease-in-out;
  border-radius: var(--farmology-bdr-radius);
}

.service-details__img-box-img:hover img {
  transform: scale(1.06) rotate(0deg);
}

.service-details__img-box-content-single {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.service-details__img-box-content-icon-and-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details__img-box-content-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__img-box-content-icon span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--farmology-base);
}

.service-details__img-box-content-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: var(--farmology-extra);
}

.service-details__img-box-content-text {
  margin-top: 17px;
}

.service-details__faq-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__services-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
}

.service-details__services-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 28px;
  color: var(--farmology-extra);
}

.service-details__services-list {
  position: relative;
  display: block;
}

.service-details__services-list li {
  position: relative;
  display: block;
}

.service-details__services-list li+li {
  margin-top: 12px;
}

.service-details__services-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--farmology-white);
  padding: 13px 20px 14px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--farmology-gray);
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  z-index: 1;
}

.service-details__services-list li:hover a {
  color: var(--farmology-white);
}

.service-details__services-list li.active a {
  color: var(--farmology-white);
}

.service-details__services-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--farmology-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.service-details__services-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.service-details__services-list li a span {
  color: var(--farmology-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 14px;
}

.service-details__services-list li:hover a span {
  color: var(--farmology-white);
}

.service-details__services-list li.active a span {
  color: var(--farmology-white);
}

.service-details__sidebar-contact {
  position: relative;
  display: block;
  margin: 30px 0 30px;
  padding: 50px 40px 50px;
  background-color: var(--farmology-extra);
  border-radius: var(--farmology-bdr-radius);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.service-details__sidebar-contact:before {
  content: "'";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(var(--farmology-base-rgb), .50);
  border-radius: var(--farmology-bdr-radius);
  z-index: -1;
}

.service-details__sidebar-contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.service-details__sidebar-contact-content {
  position: relative;
  display: block;
}

.service-details__sidebar-contact-content .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: var(--farmology-base);
  border-radius: 50%;
  overflow: hidden;
}

.service-details__sidebar-contact-content .icon span {
  position: relative;
  display: inline-block;
  color: var(--farmology-white);
  font-size: 20px;
  line-height: 20px;
}

.service-details__sidebar-contact-content h2 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 20px 0 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-details__sidebar-contact-content h2 a {
  color: var(--farmology-white);
}

.service-details__sidebar-contact-content h2 a:hover {
  color: var(--farmology-base);
}

.service-details__sidebar-contact-content p {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--farmology-base);
}

.service-details__sidebar-contact-btn-box {
  position: relative;
  display: block;
  margin-top: 20px;
}

.service-details__sidebar-contact-btn-box .thm-btn {
  background-color: var(--farmology-base);
  color: var(--farmology-extra);
}

.service-details__sidebar-contact-btn-box .hover-btn {
  background-color: var(--farmology-primary);
}

.service-details__sidebar-download-box {
  position: relative;
  display: block;
  padding: 31px 35px 40px;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
}

.service-details__sidebar-single-download {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 14px 0px 14px;
  line-height: 0;
}

.service-details__sidebar-single-download ul li:first-child {
  padding-top: 0px;
}

.service-details__sidebar-single-download ul li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.service-details__sidebar-single-download ul li .content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__sidebar-single-download ul li .content-box .icon {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .content-box .icon span {
  position: relative;
  display: inline-block;
  color: var(--farmology-black);
  font-size: 45px;
  line-height: 45px;
}

.service-details__sidebar-single-download ul li .content-box .text-box {
  position: relative;
  display: block;
  margin-left: 17px;
  flex: 1;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a {
  color: var(--farmology-extra);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
  color: var(--farmology-base);
}

.service-details__sidebar-single-download ul li .content-box .text-box p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.service-details__sidebar-single-download ul li .content-box .text-box p a {
  color: var(--farmology-gray);
}

.service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
  color: var(--farmology-base);
}

.service-details__sidebar-single-download ul li .btn-box {
  position: relative;
  display: block;
}

.service-details__sidebar-single-download ul li .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--farmology-base);
  border-radius: 2px;
  overflow: hidden;
}

.service-details__sidebar-single-download ul li .btn-box a:hover {
  background: var(--farmology-extra);
}

.service-details__sidebar-single-download ul li .btn-box a span {
  position: relative;
  display: inline-block;
  color: var(--farmology-white);
  font-size: 20px;
  line-height: 20px;
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.project-details__left {
  position: relative;
  display: block;
}

.project-details__img {
  position: relative;
  display: block;
}

.project-details__img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.project-details__title-1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 19px;
  color: var(--farmology-extra);
}

.project-details__title-2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 42px;
  margin-bottom: 19px;
  color: var(--farmology-extra);
}

.project-details__text-and-img {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 31px;
  margin-bottom: 51px;
}

.project-details__text-img {
  position: relative;
  display: block;
}

.project-details__text-img img {
  width: auto;
  border-radius: var(--farmology-bdr-radius);
}

.project-details__title-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.project-details__text-4 {
  margin-top: 19px;
  margin-bottom: 31px;
}

.project-details__img-and-points {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-details__points-img {
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
}

.project-details__points-img img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.project-details__points {
  position: relative;
  display: block;
}

.project-details__points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__points li+li {
  margin-top: 16px;
}

.project-details__points li .icon {
  position: relative;
  display: inline-block;
}

.project-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--farmology-base);
}

.project-details__points li p {
  color: var(--farmology-gray);
}

.project-details__sidebar {
  position: relative;
  display: block;
}

.project-details__information {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 40px 40px;
  margin-bottom: 30px;
}

.project-details__information-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 30px;
  color: var(--farmology-extra);
}

.project-details__information-list {
  position: relative;
  display: block;
}

.project-details__information-list li {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  padding: 18px 30px 19px;
}

.project-details__information-list li+li {
  margin-top: 12px;
}

.project-details__information-list li h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--farmology-extra);
  margin-bottom: 4px;
}


.project-details__get-started {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
  padding: 40px 40px 40px;
}

.project-details__get-started-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--farmology-extra);
}

.project-details__get-started-text {
  margin-top: 18px;
  margin-bottom: 29px;
}

.project-details__get-started-points {
  position: relative;
  display: block;
}

.project-details__get-started-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-details__get-started-points li+li {
  margin-top: 11px;
}

.project-details__get-started-points li .icon {
  position: relative;
  display: inline-block;
  top: 5px;
}

.project-details__get-started-points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--farmology-extra);
}

.project-details__get-started-points li p {
  color: var(--farmology-extra);
}

.project-details__get-started-points li p a {
  color: var(--farmology-extra);
}

.project-details__get-started-points li p a:hover {
  color: var(--farmology-base);
}

.project-details__get-started-btn-box {
  position: relative;
  display: block;
  margin-top: 30px;
}

.project-details__previous-next {
  position: relative;
  display: block;
  margin-top: 60px;
}

.project-details__previous-next ul {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 15px 20px 15px;
  border-radius: var(--farmology-bdr-radius);
}

.project-details__previous-next ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
}

.project-details__previous-next ul li::before {
  position: absolute;
  top: -16px;
  right: 0;
  bottom: -16px;
  width: 1px;
  background: rgba(var(--farmology-black-rgb), .10);
  content: "";
}

.project-details__previous-next ul li:last-child:before {
  display: none;
}

.project-details__previous-next ul li:nth-child(2) {
  float: right;
  text-align: right;
}

.project-details__previous-next ul li:nth-child(2) .text-box {
  margin-left: 0px;
  margin-right: 20px;
}

.project-details__previous-next ul li:nth-child(2) .icon a {
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon {
  position: relative;
  display: block;
}

.project-details__previous-next ul li .icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  background: var(--farmology-base);
  color: var(--farmology-white);
  clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
}

.project-details__previous-next ul li .icon a:hover {
  background: var(--farmology-extra);
}

.project-details__previous-next ul li .icon a span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
}

.project-details__previous-next ul li:nth-child(1) .icon a span {
  transform: rotate(-180deg);
}

.project-details__previous-next ul li .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.project-details__previous-next ul li .text-box a {
  color: var(--farmology-extra);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-details__previous-next ul li .text-box a:hover {
  color: var(--farmology-base);
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.project-page .project-two__single {
  margin-bottom: 30px;
}

/***
=============================================
History Page
=============================================
***/
.history-page {
  position: relative;
  display: block;
  padding: 120px 0px 42px;
  z-index: 1;
}

.history-page__line {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 119px;
  width: 1px;
  background-color: rgba(var(--farmology-black-rgb), .15);
}

.history-page__single {
  position: relative;
  display: block;
  margin-bottom: 70px;
}

.history-page__single .year-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--farmology-extra);
  border-radius: 50%;
  color: var(--farmology-white);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}

.history-page__single .year-box::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px solid var(--farmology-base);
  border-radius: 50%;
  content: "";
}

.history-page__single-img {
  position: relative;
  display: block;
  padding-right: 85px;
}

.history-page__single-img-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.history-page__single-img-inner img {
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
}

.history-page__single-content {
  position: relative;
  display: block;
  padding-left: 85px;
  margin-top: -8px;
}

.history-page__single.style2 .history-page__single-content {
  padding-left: 0px;
  padding-right: 85px;
  text-align: right;
}

.history-page__single.style2 .history-page__single-img {
  padding-right: 0px;
  padding-left: 85px;
}

.history-page__single-content h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 23px;
  color: var(--farmology-extra);
}

.history-page__single-content p {
  margin: 0;
}

/***
=============================================
Product
=============================================
***/
.product {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.product__sidebar {
  position: relative;
  display: block;
}

.product__sidebar-single+.product__sidebar-single {
  margin-top: 30px;
}

.product__sidebar-title {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  margin-bottom: 22px;
  padding-left: 27px;
  color: var(--farmology-extra);
}

.product__sidebar-title::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: var(--farmology-base);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.shop-search {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 30px 30px 30px;
  border-radius: var(--farmology-bdr-radius);
}

.shop-search form {
  position: relative;
}

.shop-search form input[type=search],
.shop-search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--farmology-white);
  padding-left: 30px;
  padding-right: 60px;
  font-size: 16px;
  color: var(--farmology-gray);
  font-family: var(--farmology-font);
  border: none;
  outline: none;
  font-weight: 500;
}

.shop-search form ::placeholder {
  color: inherit;
  opacity: 1;
}

.shop-search form button[type="submit"] {
  background-color: var(--farmology-base);
  color: var(--farmology-white);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.shop-search form button:hover[type="submit"] {
  background-color: var(--farmology-extra);
  color: var(--farmology-white);
}

.product__price-ranger {
  position: relative;
  padding: 27px 30px 30px;
  margin: 0;
  background-color: var(--farmology-primary);
  border-radius: var(--farmology-bdr-radius);
}

.product__price-ranger.price-ranger {
  margin-top: 7px;
  margin-bottom: 0px;
}

.product__price-ranger .price-ranger .ui-widget-content {
  background: var(--farmology-white);
  border: none;
  height: 5px;
}

.product__price-ranger .price-ranger .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--farmology-base);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-range {
  background: var(--farmology-base);
}

.product__price-ranger .price-ranger #slider-range {
  margin-left: 3px;
  margin-right: 0;
  margin-top: 0;
}

.product__price-ranger .price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 17px;
}

.product__price-ranger .price-ranger .ranger-min-max-block input {
  display: inline-block;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
  position: relative;
  display: block;
  background: var(--farmology-extra);
  float: right;
  text-align: center;
  border: none;
  color: var(--farmology-white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
  position: relative;
  display: inline-block;
  color: var(--farmology-gray);
  font-size: 14px;
  font-weight: 400;
  width: 40px;
  line-height: 30px;
  border: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--farmology-gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  left: -2px;
}


.shop-category {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 29px 30px 30px;
  border-radius: var(--farmology-bdr-radius);
}

.shop-category ul {
  position: relative;
  display: block;
}

.shop-category ul li {
  position: relative;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--farmology-gray);
  margin-bottom: 15px;
}

.shop-category ul li:last-child {
  margin-bottom: 0;
}

.shop-category ul li a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--farmology-gray);
  font-weight: 500;
  border-radius: 10px;
  background-color: var(--farmology-white);
  padding: 13px 15px 13px;
  transition: all 0.3s ease;
  z-index: 1;
}

.shop-category ul li:hover a {
  color: var(--farmology-base);
}

.shop-category ul li a:after {
  position: absolute;
  right: 5px;
  top: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  background-color: var(--farmology-base);
  font-family: 'icomoon' !important;
  content: "\e90f";
  opacity: 1;
  font-size: 12px;
  color: var(--farmology-white);
  line-height: 30px;
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.shop-product-tags {
  position: relative;
  display: block;
  background: var(--farmology-primary);
  padding: 25px 30px 30px;
  border-radius: var(--farmology-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.shop-product__tags-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product__tags-list a {
  font-size: 12px;
  color: var(--farmology-extra);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--farmology-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px 5px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-product__tags-list a:hover {
  color: var(--farmology-white);
  background: var(--farmology-base);
}


.sidebar-rating-box {
  position: relative;
  display: block;
}

.sidebar-rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-rating-box ul li {
  position: relative;
  display: block;
}

.sidebar-rating-box ul li+li {
  margin-top: 30px;
}

.sidebar-rating-box ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.sidebar-rating-box ul li label {
  position: relative;
  display: block;
  padding-left: 30px;
  color: #ffc009;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label span.gray {
  color: #dddbdb;
}

.sidebar-rating-box ul li input[type=radio]+label i {
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--farmology-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--farmology-base);
  border-radius: 0%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-rating-box ul li input[type=radio]:checked+label i {
  border-color: var(--farmology-base);
}

.sidebar-rating-box ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}

.shop-product-recent-products {
  position: relative;
  display: block;
  background-color: var(--farmology-primary);
  padding: 29px 30px 27px;
  border-radius: var(--farmology-bdr-radius);
}

.shop-product-recent-products ul {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dddbdb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.shop-product-recent-products ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.shop-product-recent-products ul li .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.shop-product-recent-products ul li .img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--farmology-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.shop-product-recent-products ul li:hover .img::before {
  opacity: 1;
}

.shop-product-recent-products ul li .img img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.shop-product-recent-products ul li:hover .img img {
  transform: scale(1);
}

.shop-product-recent-products ul li .img a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-white);
  font-size: 16px;
  line-height: 0;
  transform: translateY(10px) scale(0);
  z-index: 5;
}

.shop-product-recent-products ul li:hover .img a {
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .img a:hover {
  color: var(--farmology-base);
  transform: translateY(0) scale(1);
}

.shop-product-recent-products ul li .content {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.shop-product-recent-products ul li .content .title {
  position: relative;
  display: block;
}

.shop-product-recent-products ul li .content .title h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-product-recent-products ul li .content .title h5 a {
  color: var(--farmology-extra);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.shop-product-recent-products ul li .content .title h5 a:hover {
  color: var(--farmology-base);
}

.shop-product-recent-products ul li .content .price {
  position: relative;
  display: block;
  padding: 5px 0px 5px;
}

.shop-product-recent-products ul li .content .price p {
  color: var(--farmology-base);
}

.shop-product-recent-products ul li .content .review {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-product-recent-products ul li .content .review i {
  color: #ffc009;
  font-size: 12px;
}

.shop-product-recent-products ul li .content .review i.color {
  color: #dddbdb;
}

.shop-product-recent-products ul li .content .review i+i {
  margin-left: 5px;
}

.product__items {
  position: relative;
  display: block;
}

.product__showing-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-right: 130px;
}

.product__showing-text-box {
  position: relative;
  display: block;
}

.product__showing-text {
  font-size: 16px;
  font-weight: 400;
}

.product__showing-sort {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.product__showing-sort .select-box .nice-select {
  background-color: var(--farmology-primary);
  color: var(--farmology-gray);
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  border-radius: var(--farmology-bdr-radius);
  margin-bottom: 0px;
}

.product__showing-sort .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.product__all {
  position: relative;
  display: block;
}

.product__all-tab {
  position: relative;
  display: block;
}

.product__all-tab-button {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 5;
}

.product__all-tab-button ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--farmology-primary);
  padding: 15px 15px 15px;
  border-radius: var(--farmology-bdr-radius);
}

.product__all-tab-button ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button ul li:hover,
.product__all-tab-button ul li.active-btn-item {
  background-color: var(--farmology-base);
}

.product__all-tab-button ul li+li {
  margin-left: 10px;
}

.product__all-tab-button-icon {
  position: relative;
  display: block;
  color: var(--farmology-base);
  font-size: 18px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product__all-tab-button-icon.one {
  transform: rotate(90deg);
}

.product__all-tab-button ul li:hover .product__all-tab-button-icon,
.product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
  color: var(--farmology-white);
}

.product__all-tab .tabs-content-box {
  position: relative;
  display: block;
}

.product__all-tab .tab-content-box-item {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
  transition: all 0.7s ease;
  opacity: 0;
  transform: translateY(5px);
  transform-origin: top bottom;
}

.product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
  opacity: 1.0;
  transform: translateY(0px);
  transform-origin: bottom top;
}

.product__all-tab-single {
  position: relative;
  display: block;
}

.single-product-style1 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  padding: 0 0 30px;
  border-radius: var(--farmology-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style1:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style1__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style1__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1:hover .single-product-style1__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style1:hover .single-product-style1__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style1__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}

.single-product-style1__overlay li {
  position: relative;
  display: block;
}

.single-product-style1__overlay li+li {
  margin-top: 8px;
}

.single-product-style1__overlay li p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--farmology-base);
  line-height: 35px;
  font-weight: 600;
}

.single-product-style1__info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s linear 0s;
  z-index: 5;
}

.single-product-style1:hover .single-product-style1__info {
  opacity: 1;
  transform: translateY(0);
}

.single-product-style1__info li {
  position: relative;
  display: block;
}

.single-product-style1__info li+li {
  margin-left: 8px;
}

.single-product-style1__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--farmology-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style1__info li a:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.single-product-style1__content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 23px 15px 0px;
}

.single-product-style1__content-left {
  position: relative;
  display: block;
}

.single-product-style1__content-left h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 12px;
}

.single-product-style1__content-left h4 a {
  color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style1__content-left h4 a:hover {
  color: var(--farmology-base);
}

.single-product-style1__content-left p {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-gray);
  margin-top: 4px;
}

.single-product-style1__content-left p del {
  color: var(--farmology-base);
  margin-right: 5px;
}

.single-product-style1__content-right {
  position: relative;
  display: block;
}

.single-product-style1__review {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--farmology-primary);
  padding: 3.5px 5px 3.5px;
  top: -9px;
}

.single-product-style1__review i {
  color: var(--farmology-base);
  font-size: 14px;
  margin-right: 5px;
}

.single-product-style1__review p {
  color: var(--farmology-black);
  font-weight: 500;
}


.single-product-style2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  border-radius: var(--farmology-bdr-radius);
  transition: all 500ms ease;
  z-index: 1;
}

.single-product-style2:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-product-style2 .row {
  --bs-gutter-x: 0px;
  align-items: center;
}

.single-product-style2__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--farmology-bdr-radius);
  border-right: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.single-product-style2__img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
  transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2:hover .single-product-style2__img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.single-product-style2:hover .single-product-style2__img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.single-product-style2__img img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__content {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.single-product-style2__review {
  position: relative;
  display: flex;
  align-items: center;
}

.single-product-style2__review i {
  color: var(--farmology-base);
  font-size: 16px;
}

.single-product-style2__review i+i {
  margin-left: 5px;
}

.single-product-style2__text {
  position: relative;
  display: block;
  padding-top: 17px;
}

.single-product-style2__text h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 1px;
}

.single-product-style2__text h4 a {
  color: var(--farmology-extra);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.single-product-style2__text h4 a:hover {
  color: var(--farmology-base);
}

.single-product-style2__text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--farmology-gray);
  margin-top: 4px;
}

.single-product-style2__text p del {
  color: var(--farmology-base);
  margin-right: 5px;
}

.single-product-style2__info {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-left: 0;
}

.single-product-style2__info li {
  position: relative;
  display: block;
}

.single-product-style2__info li+li {
  margin-left: 8px;
}

.single-product-style2__info li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
  color: var(--farmology-base);
  font-size: 15px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-product-style2__info li a:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}



/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 30px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: rgba(var(--farmology-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--farmology-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--farmology-font);
  z-index: 1;
}

.styled-pagination li a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--farmology-white);
  background: var(--farmology-base);
  border-color: var(--farmology-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 50%;
  color: rgba(var(--farmology-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--farmology-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--farmology-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--farmology-white);
}




/***
=============================================
Product Details
=============================================
***/
.product-details {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}


.product-details__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.product-details__left-inner {
  position: relative;
  display: block;
}

.product-details__thumb-box {
  position: relative;
  display: block;
  max-width: 400px;
  margin-top: 20px;
}

#shop-details-one__thumb {
  z-index: 10;
}

.product-details__thumb-img {
  position: relative;
  display: block;
  width: 125px !important;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.product-details__thumb-img img {
  width: 100%;
  border-radius: 10px;
}

.product-details__thumb-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--farmology-base);
  opacity: 0;
  transition: all 500ms ease;
}


#shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
  opacity: 1;
}

.product-details__content-box {
  position: relative;
  display: block;
}

.product-details__img {
  position: relative;
  display: block;
}

.product-details__img img {
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-radius: 15px;
}


.product-details__nav {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 100;
}

.product-details__nav .swiper-button-next,
.product-details__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--farmology-black);
  background-color: var(--farmology-primary);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.product-details__nav .swiper-button-next:hover,
.product-details__nav .swiper-button-prev:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

.product-details__nav .swiper-button-next {
  margin-top: 0px;
}

.product-details__nav .swiper-button-next i,
.product-details__nav .swiper-button-prev i {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__nav .swiper-button-next::after,
.product-details__nav .swiper-button-prev::after {
  display: none;
}


.product-details__right {
  position: relative;
  display: block;
  margin-top: -9px;
}

.product-details__top {
  position: relative;
  display: block;
}

.product-details__title {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  margin: 0;
  color: var(--farmology-extra);
}

.product-details__title span {
  position: relative;
  display: inline-block;
  color: var(--farmology-base);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-left: 25px;
  letter-spacing: 0;
}

.product-details__reveiw {
  display: flex;
  align-items: center;
  margin-top: 26px;
  padding-bottom: 37px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.product-details__reveiw i {
  font-size: 16px;
  color: var(--farmology-base);
}

.product-details__reveiw i+i {
  margin-left: 4px;
}

.product-details__reveiw span {
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 16px;
  color: var(--farmology-gray);
  margin-left: 18px;
}

.product-details__content {
  position: relative;
  display: block;
}

.product-details__content-text1 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 31px;
}

.product-details__content-text2 {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.product-details__select {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-details__select-size {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__select-size h3 {
  font-size: 20px;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 600;
  color: var(--farmology-extra);
}

.product-details__select-size ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.product-details__select-size ul li {
  position: relative;
  display: block;
  width: 45px;
  height: 35px;
}

.product-details__select-size ul li input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-details__select-size ul li label {
  position: relative;
  width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-extra);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label {
  color: var(--farmology-white);
  font-weight: 500;
}

.product-details__select-size ul li input[type=radio]+label i {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 35px;
  overflow: hidden;
  border: 1px solid var(--farmology-gray);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.product-details__select-size ul li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0.3);
  opacity: 0;
  background-color: var(--farmology-base);
  border-radius: 5px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.product-details__select-size ul li input[type=radio]:checked+label i {
  border-color: var(--farmology-base);
}

.product-details__select-size ul li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
  opacity: 1;
}


.product-details__inner {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 25px;
}

.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}

.product-details__quantity-title {
  margin: 0;
  color: var(--farmology-extra);
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 20px;
}

.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.product-details__quantity .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--farmology-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--farmology-gray);
}

.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--farmology-gray);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border: none;
  border-left: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.product-details__buttons-boxes {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.product-details__buttons-1 {
  position: relative;
  display: block;
}

.product-details__buttons-2 {
  position: relative;
  display: block;
}

.product-details__social {
  position: relative;
  display: block;
}

.product-details__social .title {
  position: relative;
  display: block;
}

.product-details__social .title h3 {
  color: var(--farmology-extra);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.product-details__social-link {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.product-details__social-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--farmology-white);
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background-color: var(--farmology-extra);
  border-radius: 50%;
  height: 45px;
  width: 45px;
}

.product-details__social-link a+a {
  margin-left: 10px;
}

.product-details__social-link a:hover {
  color: var(--farmology-white);
  background-color: var(--farmology-base);
}

/***
=============================================
Product Description
=====***/
.product-description {
  position: relative;
  display: block;
  padding: 0 0 110px;
  z-index: 1;
}

.product-details__description {
  position: relative;
  display: block;
}

.product-details__main-tab-box {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 0;
}

.product-details__main-tab-box .tab-buttons .tab-btn {
  position: relative;
  display: inline-block;
}

.product-details__main-tab-box .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 18px;
  line-height: 18px;
  color: var(--farmology-extra);
  background-color: var(--farmology-primary);
  padding: 16px 25px 16px;
  text-transform: capitalize;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
  color: var(--farmology-white);
}

.product-details__main-tab-box .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--farmology-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.product-details__main-tab-box .tabs-content {
  position: relative;
  display: block;
}

.product-details__main-tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.product-details__main-tab-box .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.product-details__tab-content-inner {
  position: relative;
  display: block;
  padding: 40px 40px 50px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.product-details__description-content {
  position: relative;
  display: block;
}

.product-description__list {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-description__list ul {
  position: relative;
  display: block;
}

.product-description__list ul li {
  position: relative;
  display: block;
  margin-bottom: 2px;
}

.product-description__list ul li:last-child {
  margin-bottom: 0px;
}

.product-description__list ul li p {
  color: var(--farmology-extra);
  margin: 0;
  font-weight: 500;
}

.product-description__list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--farmology-base);
  font-size: 17px;
  line-height: 17px;
  margin-right: 11px;
  top: 2px;
  font-weight: 700;
}

.product-details__additional-information-content {
  position: relative;
  display: block;
}

.product-details__additional-information-text-1 {
  padding-bottom: 24px;
}

/*--------------------------------------------------------------
  # Review One
  --------------------------------------------------------------*/
.review-one {
  position: relative;
  display: block;
}

.comments-area {
  position: relative;
  display: block;
}

.review-one__title {
  position: relative;
  display: block;
  margin-bottom: 36px;
}

.review-one__title h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
  color: var(--farmology-extra);
}


.comments-area .comment-box {
  position: relative;
  display: block;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.comments-area .comment {
  position: relative;
  display: flex;
  align-items: center;
}

.comments-area .comment-box .author-thumb {
  position: relative;
  display: block;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
}

.comments-area .comment-box .author-thumb img {
  width: 100%;
}

.comments-area .comment-box .author-thumb figure {
  margin: 0;
}

.review-one__content {
  position: relative;
  display: block;
  padding-left: 45px;
  flex: 1;
}

.review-one__content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review-one__content-top .info {
  position: relative;
  display: block;
}

.review-one__content-top .info h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.review-one__content-top .info h2 span {
  color: var(--farmology-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: capitalize;
  font-family: var(--farmology-font);
}

.review-one__content-top .reply-btn {
  position: relative;
  display: block;
}

.review-one__content-top .reply-btn i:before {
  color: var(--farmology-base);
  font-size: 15px;
}

.review-one__content-bottom {
  position: relative;
  display: block;
}

.review-one__content-bottom p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

/*--------------------------------------------------------------
  # Review Form One
  --------------------------------------------------------------*/
.review-form-one {
  position: relative;
  display: block;
  padding: 16px 0px 0px;
}

.review-form-one__inner {
  position: relative;
  display: block;
}

.review-form-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.review-form-one__rate-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 37px;
}

.review-form-one__rate-text {
  font-size: 18px;
  font-weight: 400;
}

.review-form-one__rate {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.review-form-one__rate i {
  font-size: 16px;
  color: var(--farmology-base);
}

.review-form-one__rate i+i {
  margin-left: 5px;
}

.review-form-one__form {
  position: relative;
  display: block;
}

.review-form-one__form .row {
  --bs-gutter-x: 20px;
}

.review-form-one__input-box textarea {
  font-size: 14px;
  color: var(--farmology-gray);
  height: 160px;
  width: 100%;
  background-color: var(--farmology-white);
  padding: 20px 30px 30px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--farmology-bdr-radius);
}

.review-form-one__input-box.text-message-box {
  height: 160px;
}

.review-form-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.review-form-one__input-box input[type="text"],
.review-form-one__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--farmology-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--farmology-bdr-radius);
}

.review-form-one__form .thm-btn {
  border: none;
}


/*--------------------------------------------------------------
  # Related Products
  --------------------------------------------------------------*/
.related-products {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.related-products__title {
  position: relative;
  display: block;
  padding-bottom: 52px;
}

.related-products__title h3 {
  font-size: 40px;
  line-height: 1.0em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.related-products__title p {
  margin: 0;
}

.single-product-style1.instyle--2 {
  margin-bottom: 0px;
}


/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.cart-page {
  position: relative;
  display: block;
  background: var(--farmology-white);
  padding: 112px 0px 112px;
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .cart-table {
    min-width: 1170px;
  }
}

.cart-table {
  margin-bottom: 0px;
}

.cart-table thead th {
  color: var(--farmology-extra);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  padding-bottom: 22px;
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody tr {
  vertical-align: middle;
}

.cart-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.cart-table tbody td {
  font-size: 18px;
  color: var(--farmology-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.cart-table tbody td:last-child {
  text-align: right;
}

.cart-table .product-box {
  display: flex;
  align-items: center;
}

.cart-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-right: 35px;
}

.cart-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-radius: 10px;
}

.cart-table h3 {
  color: var(--farmology-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-table h3 a {
  color: var(--farmology-extra);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.cart-table h3 a:hover {
  color: var(--farmology-base);
}

.cart-table .quantity-box {
  position: relative;
  width: 98px;
  border-radius: 0px;
  height: 50px;
}

.cart-table .quantity-box input {
  width: 98px;
  border-radius: 10px;
  height: 50px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: var(--farmology-font);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  color: var(--farmology-gray);
  font-weight: 700;
}

.cart-table .quantity-box button {
  width: 24px;
  height: 24px;
  background-color: transparent;
  color: var(--thm-black);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #fff;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-left: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.cart-table .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 10px;
}

.cart-table .cross-icon {
  position: relative;
  display: block;
}

.cart-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--farmology-black);
  font-size: 16px;
}

.cart-page__right {
  position: relative;
  display: block;
  margin-left: 20px;
}

.cart-page__sidebar {
  position: relative;
  display: block;
  padding: 28px 20px 30px;
  background-color: var(--farmology-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  border-radius: var(--farmology-bdr-radius);
}

.cart-page__shipping {
  position: relative;
  display: block;
}

.cart-page__shipping-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
  color: var(--farmology-extra);
}

.cart-page__shipping-form {
  position: relative;
  display: block;
}

.cart-page__shipping-form .row {
  --bs-gutter-x: 20px;
}

.cart-page__shipping-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-page__shipping-input-box .select-box .nice-select {
  background-color: var(--farmology-primary);
  color: var(--farmology-gray);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0px;
}

.cart-page__shipping-input-box .select-box .nice-select:after {
  position: absolute;
  right: 20px;
}

.cart-page__shipping-input-box input[type=email],
.cart-page__shipping-input-box input[type=text] {
  width: 100%;
  height: 50px;
  background-color: var(--farmology-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--farmology-gray);
  font-family: var(--farmology-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__btn-box {
  position: relative;
  display: block;
}

.cart-page__btn-box .thm-btn {
  width: 100%;
  border: none;
}

.cart-page__coupon-code {
  position: relative;
  display: block;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 23px;
  padding-bottom: 30px;
}

.cart-page__coupon-code-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 20px;
  color: var(--farmology-extra);
}

.cart-page__coupon-code-text {
  margin-bottom: 16px;
}

.cart-page__coupon-code-form {
  position: relative;
  display: block;
}

.cart-page__coupon-code-form input[type=email],
.cart-page__coupon-code-form input[type=text] {
  width: 100%;
  height: 50px;
  background-color: var(--farmology-primary);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: var(--farmology-gray);
  font-family: var(--farmology-font);
  border-radius: 8px;
  border: none;
  outline: none;
  font-weight: 400;
}

.cart-page__coupon-code-form .thm-btn {
  width: 100%;
  padding-right: 8px;
  border: none;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-total {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.cart-total li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--farmology-gray);
  font-size: 18px;
  font-weight: 500;
}

.cart-total li+li {
  margin-top: 15px;
}

.cart-total li span:first-child {
  display: block;
  color: var(--farmology-extra);
  font-size: 18px;
  margin-right: 60px;
  font-weight: 700;
  width: 140px;
  text-align: right;
}

.cart-total-amount {
  color: var(--farmology-base);
}

.cart-page__buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cart-page__buttons-1 {
  position: relative;
  display: block;
  line-height: 0;
}

.cart-page__buttons-1 .thm-btn {
  padding: 12px 20px 12px;
}


.cart-page__buttons-2 {
  position: relative;
  display: block;
  line-height: 0;
}

.cart-page__buttons-2 .thm-btn {
  padding: 12px 20px 12px;
}


/*--------------------------------------------------------------
  # Checkout
  --------------------------------------------------------------*/
.checkout-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.checkout-page .billing_details {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 53px 50px 60px;
}

.billing_title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.billing_title p {
  font-size: 16px;
  margin: 0;
}

.billing_title a {
  color: var(--farmology-base);
}

.billing_title h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  margin-top: 16px;
  color: var(--farmology-extra);
}

.billing_details_form {
  position: relative;
  display: block;
}

.billing_details_form .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.billing_details_form .btn-light {
  border: none;
}

.billing_details_form .btn-light:hover {
  border: none;
}

.billing_input_box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="tel"] {
  height: 60px;
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  color: var(--farmology-gray);
  display: block;
  font-weight: 400;
}

.billing_input_box textarea {
  display: block;
  color: var(--farmology-gray);
  font-size: 16px;
  font-weight: 400;
  height: 140px;
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.billing_input_box textarea:focus {
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.billing_details .checked-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.billing_details .checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--farmology-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--farmology-font);
}

.billing_details .checked-box input[type="checkbox"] {
  display: none;
}

.billing_details .checked-box input[type="checkbox"]+label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--farmology-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.billing_details .checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--farmology-white);
  border-right: 2px solid var(--farmology-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.billing_details.checked-box input[type="checkbox"]:checked+label span {
  border-color: var(--farmology-white);
}

.billing_details .checked-box input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.billing_details_form .select-box .nice-select {
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-white);
  border-radius: 10px;
  color: var(--farmology-gray);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.billing_details_form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.billing_details_form-btns {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.billing_details_form-btn-1 {
  position: relative;
  display: block;
}

.billing_details_form-btn-1 .thm-btn {
  border: none;
}

.billing_details_form-btn-2 {
  position: relative;
  display: block;
}

.billing_details_form-btn-2 .thm-btn {
  border: none;
}


.sidebar-order-summary {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 37px 30px 45px;
  z-index: 1;
}

.sidebar-order-summary .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
}

.sidebar-order-summary .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--farmology-base);
  content: "";
}

.sidebar-order-summary .title-box::after {
  position: absolute;
  left: 37px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--farmology-white);
  content: "";
}

.sidebar-order-summary .title-box h3 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--farmology-extra);
}

.sidebar-order-summary__list {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding: 13px 0px 12px;
}

.sidebar-order-summary__list>li:last-child {
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.sidebar-order-summary__list>li>.left-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.left-text p {
  font-size: 18px;
  margin: 0px;
}

.sidebar-order-summary__list>li>.right-text {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text p {
  font-size: 18px;
  margin: 0px;
}


.sidebar-order-summary__list>li>.right-text>ul {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li {
  position: relative;
  display: block;
}

.sidebar-order-summary__list>li>.right-text>ul>li+li {
  margin-top: 5px;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.sidebar-order-summary__list>li>.right-text>ul>li label {
  position: relative;
  display: block;
  padding-right: 24px;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
  position: absolute;
  top: 6px;
  right: 0;
  width: 15px;
  height: 15px;
  overflow: hidden;
  border: 1px solid var(--farmology-gray);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li label i::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  transform: scale(0);
  background-color: var(--farmology-base);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
  border-color: var(--farmology-base);
}

.sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
  transform: scale(1.0);
}


.sidebar-order-summary__Payment {
  position: relative;
  display: block;
  margin-top: 37px;
}

.checkout__payment {
  position: relative;
  margin-bottom: 30px;
}

.checkout__payment__item+.checkout__payment__item {
  margin-top: 23px;
}

.checkout__payment__title {
  display: flex;
  color: var(--farmology-extra);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  align-items: center;
  cursor: pointer;
}

.checkout__payment__title::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--farmology-white);
  border: 2px solid rgba(var(--farmology-black-rgb), .10);
  border-radius: 50%;
  margin-right: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 10px;
  color: var(--farmology-white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  position: relative;
  top: 0px;
  transition: all 500ms ease;
}

.checkout__payment__item--active .checkout__payment__title::before {
  background-color: var(--farmology-base);
  border-color: var(--farmology-base);
  content: '\f00c';
}

.checkout__payment__content {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: var(--farmology-gray);
  font-weight: 400;
  margin-top: 15px;
}

.sidebar-order-summary__bottom {
  position: relative;
  display: block;
}

.sidebar-order-summary__bottom .text1 {
  margin-bottom: 0;
}

.sidebar-order-summary__bottom .text1 a {
  color: var(--farmology-base);
  text-decoration: underline;
}







.sidebar-order-summary__checked {
  position: relative;
  display: block;
  margin-top: 20px;
  ;
}

.sidebar-order-summary__checked label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--farmology-gray);
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
  font-family: var(--farmology-font);
}

.sidebar-order-summary__checked label a {
  color: var(--farmology-base);
}

.sidebar-order-summary__checked input[type="checkbox"] {
  display: none;
}

.sidebar-order-summary__checked input[type="checkbox"]+label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  background: var(--farmology-base);
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 0;
}

.sidebar-order-summary__checked label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--farmology-white);
  border-right: 2px solid var(--farmology-white);
  content: '';
  width: 6px;
  height: 9px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
  border-color: var(--farmology-white);
}

.sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
  opacity: 1;
}

.sidebar-order-summary__btn {
  position: relative;
  display: block;
  margin-top: 27px;
  line-height: 0px;
}



/*--------------------------------------------------------------
# Wishlist Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  # Cart Page
  --------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  display: block;
  background: var(--farmology-white);
  padding: 120px 0px 120px;
}

.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media(max-width: 1199px) {
  .wishlist-table {
    min-width: 1170px;
  }
}

.wishlist-table {
  margin-bottom: 0px;
}

.wishlist-table thead th {
  color: var(--farmology-extra);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
}

.wishlist-table tbody tr {
  vertical-align: middle;
}

.wishlist-table tbody tr:last-child {
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
}

.wishlist-table tbody td {
  font-size: 18px;
  color: var(--farmology-gray);
  vertical-align: middle;
  border-top: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-bottom: 1px solid rgba(var(--farmology-black-rgb), .10);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.wishlist-table .product-box {
  display: flex;
  align-items: center;
}

.wishlist-table .cross-icon {
  position: relative;
  display: block;
}

.wishlist-table .cross-icon i:before {
  position: relative;
  display: inline-block;
  color: var(--farmology-extra);
  font-size: 16px;
}

.wishlist-table .product-box .img-box {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 0;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}

.wishlist-table .product-box .img-box img {
  width: 100%;
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  border-radius: 10px;
}

.wishlist-table h3 {
  color: var(--farmology-black);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.wishlist-table h3 a {
  color: var(--farmology-extra);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.wishlist-table h3 a:hover {
  color: var(--farmology-base);
}


.product-details__social.two {
  margin-top: 42px;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.sign-up-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
  border-radius: var(--farmology-bdr-radius);
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-primary);
  width: 100%;
  height: 60px;
  color: var(--farmology-black);
  font-size: 16px;
  font-family: var(--farmology-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--farmology-base);
  background-color: var(--farmology-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--farmology-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--farmology-gray);
  background-color: var(--farmology-white);
  color: var(--farmology-black);
  font-size: 16px;
  line-height: 28px;
  font-family: var(--farmology-font);
  font-weight: 500;
  padding: 10px 10px 10px;
  border-radius: 5px;
  letter-spacing: -0.01em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--farmology-base);
  background-color: var(--farmology-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}

.sign-up-one__form form .google-facebook a .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 10px;
}

.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 22px;
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--farmology-base);
}



/*--------------------------------------------------------------
# Login One
--------------------------------------------------------------*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  padding-bottom: 60px;
}

.login-one__form .inner-title h2 {
  font-size: 60px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--farmology-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 60px 50px 52px;
  border-radius: var(--farmology-bdr-radius);
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: var(--farmology-bdr-radius);
  border: 1px solid rgba(var(--farmology-black-rgb), .10);
  background-color: var(--farmology-primary);
  width: 100%;
  height: 60px;
  color: var(--farmology-black);
  font-size: 16px;
  font-family: var(--farmology-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus {
  border-color: var(--farmology-base);
  background-color: var(--farmology-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--farmology-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: space-between;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--farmology-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--farmology-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--farmology-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--farmology-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--farmology-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--farmology-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--farmology-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--farmology-black);
}

.login-one__form form .create-account p a {
  color: var(--farmology-base);
  font-weight: 500;
}








/*--------------------------------------------------------------
# End All Css
--------------------------------------------------------------*/