@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #ff8c00;
  --secondary-color: #FFB200;
  --heading-color: #333333;
  --primary-black-color: #333333;
  --black-dark-color: #0E1712;
  --gray-color: #666666;
  --white-color: #ffffff;
  --text-color: #454545;
  --border-color: #DDDDDD;
  --rating-color: #FF9F1A;
  --accent-font: "Handlee", cursive;
  --body-font: "Montserrat", sans-serif;
  /* Updated Font */
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--body-font);
}

h1 {
  font-size: 56px;
  line-height: 64px;
}

h2 {
  font-size: 48px;
  line-height: 52px;
}

h3 {
  font-size: 46px;
  line-height: 117%;
  margin: 8px 0px;
  font-weight: 800;
}

h4 {
  font-size: 22px;
  line-height: 34px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 18px;
  line-height: 27px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
}

input,
textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}

main {
  width: 100%;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
#smooth-wrapper {
  overflow: hidden;
  z-index: 1;
}

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

@media (min-width: 1200px) and (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }
}

.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  background-position: center;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
}

label {
  margin-bottom: 0;
}

.form_control {
  width: 100%;
}

.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2,
.text-white h1 {
  color: #fff;
}

.text-white .sub-heading {
  background-color: #fff;
  color: var(--heading-color);
  border-color: transparent;
}

.thin-200 {
  font-weight: 200;
}

.sub-title {
  padding: 8px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 12px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.sub-title i {
  color: var(--secondary-color);
  margin-right: 10px;
}


.section-title h2 {
  font-weight: 800;
}

@media (max-width: 1399.98px) {
  .section-title h2 {
    font-size: 38px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 1199.98px) {
  .section-title h2 {
    font-size: 36px;
    line-height: 1.3;
  }
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 28px;
  }

  .header-navigation .site-branding {
    max-width: 137px;
    padding: 0px 0px;
  }
}

.title-white h2 {
  color: #fff;
}

.title-white p {
  color: #fff;
}

.check-list.style-one li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* align-items: center; */
  line-height: 1;
  gap: 5px;
}

.check-list.style-one li:not(:last-child) {
  margin-bottom: 13px;
}

.check-list.style-one li i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 7px;
}

.check-list.style-two li {
  position: relative;
  padding-left: 15px;
}

.check-list.style-two li:not(:last-child) {
  margin-bottom: 10px;
}

.check-list.style-two li:before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* Search Modal */
.search-modal {
  background-color: rgba(13, 18, 23, 0.95);
}

.search-modal .modal-content {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
}

.search-modal .modal-content .form_control {
  border: none;
  padding: 15px 30px 15px 0;
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.search-modal .modal-content .form_control::-webkit-input-placeholder {
  color: #fff;
}

.search-modal .modal-content .form_control::-moz-placeholder {
  color: #fff;
}

.search-modal .modal-content .form_control:-ms-input-placeholder {
  color: #fff;
}

.search-modal .modal-content .form_control::-ms-input-placeholder {
  color: #fff;
}

.search-modal .modal-content .form_control::placeholder {
  color: #fff;
}

.search-modal .modal-content .form_control:focus {
  background-color: transparent;
}

.search-modal .modal-content label {
  position: absolute;
  top: 17px;
  right: 0;
  color: #fff;
}

/* Nice Select */
.nice-select:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
}

/* Pagination */
.som-pagination ul li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.som-pagination ul li a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  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;
  border: 1px solid var(--border-color);
  color: var(--heading-color);
}

.som-pagination ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Form Check & Radio */
.form-check {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.form-check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}

.form-input-radio {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  margin-right: 10px;
}

.form-input-radio:checked {
  border-color: var(--secondary-color);
}

.form-input-radio:checked:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-black-color);
}

/*===  Back To top  ====*/
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  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;
  background-color: var(--primary-color);
  font-size: 16px;
  z-index: 2;
  cursor: pointer;
  color: #fff;
}

.back-to-top:hover {
  color: var(--primary-black-color);
  color: #fff;
}

/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  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;
  background-color: #fff;
}

.preloader .loader {
  position: relative;
  overflow: hidden;
}

.loader {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: var(--primary-black-color) var(--primary-black-color) transparent transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent var(--primary-color) var(--primary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: rotationBack 0.5s linear infinite;
  animation: rotationBack 0.5s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.loader::before {
  width: 50px;
  height: 50px;
  border-color: var(--secondary-color) var(--primary-black-color) transparent transparent;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotationBack {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.sidebar-btn {
  margin-left: 15px;
  cursor: pointer;
  text-align: right;
}

.sidebar-btn span {
  width: 30px;
  display: block;
  height: 2px;
  background-color: var(--heading-color);
}

.sidebar-btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 25px;
  margin-left: auto;
}

.spin {
  -webkit-animation: spin linear infinite 10s;
  animation: spin linear infinite 10s;
}

@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

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

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

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

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }

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

@keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }

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

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 19px;
  font-family: var(--body-font);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.theme-btn.style-one {
  position: relative;
  z-index: 1;
  background-color: var(--primary-color);
  color: #fff;
  overflow: hidden;
  padding: 18px 30px;
}

.theme-btn.style-one:after {
  position: absolute;
  content: "";
  bottom: -70%;
  right: -90%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 20px 20px 0 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.theme-btn.style-one i {
  margin-left: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.theme-btn.style-one:hover {
  background-color: var(--primary-black-color);
  color: var(--heading-color);
}

.theme-btn.style-one:hover:after {
  bottom: 0;
  right: 0;
  border-radius: 0;
}

.theme-btn.style-two {
  padding: 17px 22px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.theme-btn.style-two:hover {
  background-color: var(--primary-color);
  border-color: transparent;
  color: #fff;
}

.read-more.style-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
}

.read-more.style-one:hover {
  color: var(--primary-color);
}

/* Header Area */
.header-area {
  position: relative;
  z-index: 999;
}

.transparent-header {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Header Navigation */
@media screen and (max-width: 1199.98px) {
  .header-navigation {
    padding: 6px 0;
  }
}

.header-navigation .primary-menu {
  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;
}

.header-navigation .site-branding {
  max-width: 300px;
  padding: 7px 0px;
}

.header-navigation .main-menu ul>li {
  display: inline-block;
  position: relative;
  margin-left: 17px;
  margin-right: 17px;
}

@media screen and (max-width: 1199.98px) {
  .header-navigation .main-menu ul>li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.header-navigation .main-menu ul>li>a {
  position: relative;
  display: block;
  font: 600 18px var(--body-font);
  text-transform: uppercase;
  line-height: 1;
  color: var(--heading-color);
  padding: 36px 0;
}

@media screen and (max-width: 1199.98px) {
  .header-navigation .main-menu ul>li>a {
    font-size: 18px;
  }
}

.header-navigation .main-menu ul>li>a:after {
  position: absolute;
  bottom: 35%;
  right: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.header-navigation .main-menu ul>li>a span.dd-trigger {
  margin-left: 5px;
}

.header-navigation .main-menu ul>li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 350px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 10px 0;
  background-color: #fff;
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  border-radius: 7px;
}

.header-navigation .main-menu ul>li .sub-menu li {
  display: block;
  margin: 0;
}

.header-navigation .main-menu ul>li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 30px;
  position: relative;
  font-size: 15px;
  line-height: 34px;
  margin: 0;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom: 1px solid #0000000d;
}

.header-navigation .main-menu ul>li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}

.header-navigation .main-menu ul>li .sub-menu li a::after {
  display: none;
}

.header-navigation .main-menu ul>li .sub-menu li a:hover {
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}

.header-navigation .main-menu ul>li .sub-menu li:hover .sub-menu {
  top: 0%;
}

.header-navigation .main-menu ul>li .sub-menu li:hover>a {
  margin-left: 5px;
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li:hover>a {
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li:hover>a:after {
  left: 0;
  right: auto;
  width: 100%;
}

.header-navigation .main-menu ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-navigation .navbar-toggler {
  padding: 11px 7px;
  border: 1px solid var(--heading-color);
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 5px;
  margin-left: 20px;
}

.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 3px;
  display: block;
  height: 2px;
  padding: 0;
  width: 30px;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: var(--heading-color);
}

.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}

.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}

@media screen and (max-width: 1199.98px) {
  .header-navigation .theme-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 20px 20px 30px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    background-color: #fff;
  }

  .header-navigation .theme-nav-menu.menu-on {
    left: 0;
  }

  .header-navigation .theme-nav-menu .site-branding {
    max-width: 100%;
    width: 100%;
  }

  .header-navigation .theme-nav-menu .main-menu {
    margin-top: 30px;
  }

  .header-navigation .theme-nav-menu .main-menu ul li {
    display: block;
    margin: 0;
  }

  .header-navigation .theme-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .header-navigation .theme-nav-menu .main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }

  .header-navigation .theme-nav-menu .main-menu ul li a:after {
    display: none;
  }

  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }

  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu>li>a {
    padding: 5px 20px;
  }

  .header-navigation .theme-nav-menu .main-menu ul li .sub-menu>li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 30px;
  }

  .header-navigation .theme-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    right: 0;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
  }

  .header-navigation .navbar-close {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    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;
    border: 1px solid var(--border-color);
    font-size: 16px;
  }

  .header-navigation .navbar-toggler {
    display: block;
  }

  .header-navigation .theme-nav-button .theme-btn.style-one {
    padding: 17px 24px;
  }

  .header-navigation .theme-menu-bottom h5 {
    margin-bottom: 25px;
  }

  .header-navigation .theme-menu-bottom .social-link li {
    display: inline-block;
    margin-right: 10px;
  }

  .header-navigation .theme-menu-bottom .social-link li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    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;
  }

  .header-navigation .theme-menu-bottom .social-link li a:hover {
    background-color: var(--primary-color);
    color: #fff;
  }
}

.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-right-item .nav-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-right: 30px;
}

@media (max-width: 767.98px) {
  .nav-right-item .nav-action {
    margin-right: 0;
  }
}

.nav-right-item .nav-action .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
  color: #fff;
  font-size: 20px;
  background-color: var(--heading-color);
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .nav-right-item .nav-action .action-btn.search-btn {
    display: none;
  }
}

.header-one .container-fluid {
  padding-left: 70px;
  padding-right: 70px;
}

@media (max-width: 1650px) {
  .header-one .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1199.98px) {
  .header-one .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header .header-navigation .main-menu ul>li>a {
  color: #fff;
}

@media screen and (max-width: 991.98px) {
  .header .header-navigation .main-menu ul>li>a {
    color: var(--heading-color);
  }
}

.header .header-navigation .main-menu ul>li .sub-menu {
  background-color: var(--heading-color);
}

@media screen and (max-width: 991.98px) {
  .header .header-navigation .main-menu ul>li .sub-menu {
    background-color: #fff;
  }
}

.header .header-navigation .main-menu ul>li .sub-menu li a {
  color: #fff;
}

@media screen and (max-width: 991.98px) {
  .header .header-navigation .main-menu ul>li .sub-menu li a {
    color: var(--heading-color);
  }
}

.header .header-navigation .main-menu ul>li .sub-menu li a:hover {
  color: var(--primary-color);
}

.header .header-navigation .main-menu ul>li .sub-menu li:hover>a {
  color: var(--primary-color);
}

.header .header-navigation .main-menu ul>li:hover>a {
  color: var(--primary-color);
}

.header .nav-right-item .nav-button .theme-btn.style-one:hover {
  background-color: #fff;
  color: var(--heading-color);
}

.header .nav-right-item .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.header .nav-right-item .navbar-toggler span {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Header Sticky */
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-color: transparent;
  background-color: #fff;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
}

.header-area.sticky.header-one {
  /* background-color: var(--primary-black-color); */
}

.header-area.sticky.header-two {
  background-color: var(--primary-black-color);
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

.footer-widget h4.widget-title {
  color: #fff;
  margin-bottom: 25px;
}

.footer-widget .widget-content>p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.footer-widget .widget-content .social-box a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-widget .widget-content .social-box a:not(:last-child) {
  margin-right: 5px;
}

.footer-nav-widget .widget-content .widget-nav li {
  color: #fff;
  /* padding-left: 27px; */
  position: relative;
}


.footer-nav-widget .widget-content .widget-nav li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  /* solid */
  margin-right: 9px;
  font-size: 15px;
  margin-top: -3px;
}

.footer-nav-widget .widget-content .widget-nav li:not(:last-child) {
  margin-bottom: 8px;
}

.footer-contact-info-widget .widget-content .som-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* align-items: center; */
}

.footer-contact-info-widget .widget-content .som-info-box .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  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;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  color: #fff;
  margin-right: 20px;
}

.footer-contact-info-widget .widget-content .som-info-box .content span {
  color: #fff;
  font-weight: 600;
}

.footer-contact-info-widget .widget-content .som-info-box .content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 28px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.footer-recent-post-widget .recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-recent-post-widget .recent-post-item:not(:last-child) {
  margin-bottom: 30px;
}

.footer-recent-post-widget .recent-post-item .thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 80px;
  margin-right: 15px;
}

.footer-recent-post-widget .recent-post-item .thumbnail img {
  border-radius: 5px;
}

.footer-recent-post-widget .recent-post-item .content span {
  font-size: 14px;
  color: var(--secondary-color);
}

.footer-recent-post-widget .recent-post-item .content h6 {
  color: #fff;
}

.copyright-area {
  padding: 12px 0;
}

@media (max-width: 767.98px) {
  .copyright-area .copyright-text {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .copyright-area .copyright-link {
    text-align: center;
  }
}

.copyright-area .copyright-link a:not(:last-child):after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--secondary-color);
  margin-left: 25px;
  margin-right: 25px;
}

@media screen and (max-width: 991.98px) {
  .copyright-area .copyright-link a:not(:last-child):after {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.copyright-area .copyright-link a:hover {
  color: var(--primary-color);
}

.footer-newsletter {
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 10px;
}

.footer-newsletter .newsletter-inner-wrap {
  padding: 35px 60px 40px;
  border-top: 2px dashed var(--heading-color);
  border-bottom: 2px dashed var(--heading-color);
}

@media screen and (max-width: 991.98px) {
  .footer-newsletter .newsletter-inner-wrap {
    padding: 35px 20px 40px;
  }
}

.footer-newsletter .section-title h3 {
  font-size: 32px;
  line-height: 45px;
}

@media screen and (max-width: 1199.98px) {
  .footer-newsletter .section-title h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

@media screen and (max-width: 991.98px) {
  .footer-newsletter .section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}

.footer-newsletter .newsletter-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 991.98px) {
  .footer-newsletter .newsletter-form .form-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer-newsletter .newsletter-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-newsletter .newsletter-form .form_control {
  max-width: 300px;
  width: 100%;
  background-color: #fff;
  padding: 15px 22px;
  line-height: 1;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #454545;
  border-radius: 10px 0 0 10px;
}

.footer-newsletter .newsletter-form .form_control::-webkit-input-placeholder {
  color: #454545;
}

.footer-newsletter .newsletter-form .form_control::-moz-placeholder {
  color: #454545;
}

.footer-newsletter .newsletter-form .form_control:-ms-input-placeholder {
  color: #454545;
}

.footer-newsletter .newsletter-form .form_control::-ms-input-placeholder {
  color: #454545;
}

.footer-newsletter .newsletter-form .form_control::placeholder {
  color: #454545;
}

@media (max-width: 767.98px) {
  .footer-newsletter .newsletter-form .form_control {
    border-radius: 10px;
  }
}

.footer-newsletter .newsletter-form .submit-btn {
  padding: 18px 35px;
  line-height: 17px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 767.98px) {
  .footer-newsletter .newsletter-form .submit-btn {
    border-radius: 10px;
    margin-top: 20px;
  }
}

/* Footer CSS */
.footer-one {
  padding-top: 68px;
}

.default-footer {
  position: relative;
  background-color: var(--heading-color);
}

.default-footer .footer-newsletter {
  position: relative;
  z-index: 1;
  margin-top: -200px;
}

.default-footer .footer-widget h4.widget-title {
  color: #fff;
}

.default-footer .footer-widget .widget-content p {
  color: rgba(255, 255, 255, 0.8);
}

.default-footer .footer-widget .widget-content .social-box a {
  border: 1px solid #fff;
  color: #fff;
}

.default-footer .footer-widget .widget-content .social-box a:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.default-footer .copyright-area {
  background-color: #212121a6;
}

.default-footer .copyright-area .copyright-text p {
  color: #fff;
  margin: 0px !important;
}

.default-footer .copyright-area .copyright-link a {
  color: #fff;
}

.default-footer .copyright-area .copyright-link a:hover {
  color: var(--primary-color);
}




.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 75px 5px;
  background-color: #FF8C00;
}

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

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

.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: #ffff;
  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: #ffff;
  line-height: 16px;
}

.main-menu__contact-list li .text p a {
  color: #ffff;
  -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: #ffff;
  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: #ffff;
  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: 30px;
  width: 30px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 15px;
  color: #ffff;
  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#ffff;
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffff;
  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;
}

.som-about-sec {
  background-image: url(../image/about-bootom-bg.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}

.som-service-sec {
  background-image: url(../image/our-products.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.som-service-sec::after {
  content: "";
  background-color: #ffffff08;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}


.butnreed {
  display: initial;
  padding: 10px 28px;
  background: #264796;
  border-radius: 0 0 25px 0;
  color: #fff;
  font-size: 17px;
  margin-top: 15px;
  text-align: center;
  font-weight: 400
}

.butnreed:hover {
  background-color: #000;
  color: #fff
}

.line {
  display: inline-block;
  position: relative;
  width: 120px;
  height: 6px;
  margin-top: .16rem;
  overflow: hidden;
  background: #f2941d;
  border-radius: 30px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.line:after {
  content: '';
  width: 8px;
  height: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ffffff;
  -webkit-animation: animborder 3s linear infinite;
  animation: animborder 3s linear infinite
}

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px)
  }
}

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px)
  }
}

.we-industry-heading {
  text-align: center;
}

.we-industry-heading h2 {
  font-weight: 800;
  color: #02437a;
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 70px 0 83px;
  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: -109px;
  left: 29px;
  background-color: #fd8b00;
  padding: 18px 35px 22px;
  max-width: 251px;
  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;
  color: #ffffff;
}

.about-two__experience-count-box span {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px !important;
  font-family: var(--farmology-font-three) !important;
  color: #ffffff;
}

.about-two__experience-count-text {
  color: #ffffff;
  position: relative;
  margin-top: 9px;
  line-height: 24px;
}

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


.about-two__text {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--farmology-base);
}

.about-two__text-2 {
  margin: 2px 0 20px;
  font-weight: 500;
  text-align: justify;
}

.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: 6px 19px 6px;
  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: #474442;
  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: #545457;
  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: #ffffff;
}

.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;
  font-weight: 500;
}

.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(--primary-color);
  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;
  font-weight: 500;
}

.about-two__btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 25px;
}

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  background-color: #fd8b00;
  border-radius: var(--farmology-bdr-radius);
  padding: 12px 30px 12px;
  overflow: hidden;
  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);
}

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


/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  padding: 42px 0 60px;
  counter-reset: count;
  z-index: 5;
  background-image: url(../image/why-chouse-us.png);
  background-size: cover;
}


.process-one::after {
  content: "";
  background-color: #ffffffa8;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.process-one__inner {
  position: relative;
  display: block;
  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: #057bb0;
  border-radius: 50%;
  z-index: -1;
}

.process-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 38px;
  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 rgb(68 44 38 / 2%);
  border-radius: var(--farmology-bdr-radius);
  padding: 15px 20px 15px;
  max-width: 90%;
  margin: 0 auto;
  width: 100%;
  margin-top: -1px;
  background: #f1f1f1;
}

.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: 21px;
  font-weight: 700;
  line-height: 30px;
  color: #363636;
  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: #555557;
  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;
}

.process-one__text {
  line-height: 28px;
  font-weight: 500;
}

.we-industry-heading2 h2 {
  text-transform: uppercase;
}


.expoert-section {
  /* background: #f1f1f15c; */
  padding: 51px 0px;
}

.we-industry-heading2 h3 {
  text-transform: uppercase;
}

/* Title Animation Setup */
.section-title__title {
  overflow: hidden;
  display: inline-block;
  line-height: 1.1;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Title Animation Setup */
.section-title__title {
  overflow: hidden;
  display: inline-block;
  line-height: 1.2;
  font-size: 46px;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--primary-color);
  margin-bottom: 0;
}

/* Word-level animation: left to right */
.section-title__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-50%);
  animation: slideInRight 0.6s ease-out forwards;
  white-space: nowrap;
}

.section-title__title .word+.word {
  margin-left: 0.35rem;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-tagline {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0;
  animation: slideIn 1.5s ease forwards;
  color: #fd8b00;
}

/* Animation keyframes */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    letter-spacing: 10px;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: 2px;
  }
}

.industry-we-serve {
  background-image: url(../image/industry-we-serve.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
  padding: 50px 0px 50px;
}

.industry-we-serve::after {
  content: "";
  background-color: #fbfbfb6e;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.som-feature-item .icon img {
  filter: brightness(0) invert(1);
  width: 50px;
}

/* Counter Section CSS */
.som-counter-sec {
  background-attachment: fixed;
  background-image: url(../image/counter-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.copyright-text p a {
  text-decoration: none;
}

.service-section-4 {
  position: relative;
  z-index: 9;
  background-image: url(../image/our-products.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0px 175px;
}

/* ----------------------------------
   ROUND DOT STYLE for .service-slider
---------------------------------- */
.service-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #1e2023 !important;
  border-radius: 0%;
  transition: all 0.4s ease-in-out;
  opacity: inherit !important;
}

.service-slider .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.service-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.4);
  position: relative;
}

.service-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}


.service-slider .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 0%;
  border: 1px solid var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.service-box {
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, .03);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, .03);
  border-radius: 30px;
  padding: 30px;
  text-align: center
}

@media(max-width: 1500px) {
  .service-box {
    padding: 25px
  }
}

@media(max-width: 1299px) {
  .service-box {
    padding: 30px
  }
}

@media(max-width: 1199px) {
  .service-box {
    padding: 25px
  }
}

.service-box.style2 {
  background: #e9f5ed;
  border-radius: 30px;
  padding: 30px
}

@media(max-width: 1500px) {
  .service-box.style2 {
    padding: 25px
  }
}

@media(max-width: 1399px) {
  .service-box.style2 {
    padding: 25px 15px
  }
}

.service-box.style2 .box-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: #e9f5ed;
  border: 1px solid #b7bec8
}

.service-box .box-icon {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #fffa84;
  border-radius: 50%;
  text-align: center;
  margin: auto auto 25px auto;
  z-index: 2;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}

.service-box .box-icon img {
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}

@media(max-width: 375px) {
  .service-box .box-title {
    font-size: 22px
  }
}

.service-box .box-title a {
  color: inherit
}

.service-box .th-btn {
  font-size: 16px;
  padding: 13.5px 30px
}

.service-box:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg)
}

.service-arrow {
  text-align: center;
  margin-top: 60px;
  position: relative
}

.service-arrow:after,
.service-arrow:before {
  content: "";
  position: absolute;
  top: 45%;
  width: 50%;
  height: 1px;
  background-color: #e0e0e0
}

@media(max-width: 767px) {

  .service-arrow:after,
  .service-arrow:before {
    display: none
  }
}

.service-arrow:before {
  margin-left: -49rem
}

@media(max-width: 1500px) {
  .service-arrow:before {
    margin-left: -48rem
  }
}

@media(max-width: 1499px) {
  .service-arrow:before {
    margin-left: -46rem
  }
}

@media(max-width: 1399px) {
  .service-arrow:before {
    margin-left: -40.5rem
  }
}

@media(max-width: 1299px) {
  .service-arrow:before {
    margin-left: -36.5rem
  }
}

@media(max-width: 1199px) {
  .service-arrow:before {
    margin-left: -30.7rem
  }
}

@media(max-width: 991px) {
  .service-arrow:before {
    margin-left: -23.4rem
  }
}

.service-arrow:after {
  margin-left: 1.5rem
}

.service-arrow .slider-arrow:hover {
  background-color: var(--primary-color);
  color: #02437a;
  border-color: #02437a
}

.service-grid {
  position: relative;
  background: hsla(0, 0%, 100%, .15);
  border: 1px solid hsla(0, 0%, 100%, .15);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 30px;
  padding: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px
}

@media(max-width: 1500px) {
  .service-grid {
    gap: 20px
  }
}

@media(max-width: 480px) {
  .service-grid {
    display: block;
    text-align: center
  }
}

.service-grid.style2 {
  background: #e9f5ed;
  border-radius: 30px
}

@media(max-width: 1499px) {
  .service-grid.style2 {
    gap: 10px
  }
}

@media(max-width: 1500px) {
  .service-grid.style2 .box-img {
    min-width: 150px
  }
}

@media(max-width: 480px) {
  .service-grid.style2 {
    display: block;
    text-align: center
  }

  .service-grid.style2 .box-img {
    margin-top: 30px;
    width: 100%
  }

  .service-grid.style2 .box-img img {
    width: 100%
  }
}

.service-grid.style2 .box-title {
  color: #02437a
}

.service-grid.style2 .box-text {
  font-weight: 400;
  font-size: 16px;
  color: #4d5765
}

.service-grid.style2 .th-btn {
  border: 1px solid #02437a;
  padding: 12.5px 22px;
  font-weight: 500
}

.service-grid.style2 .th-btn .btn-text:before,
.service-grid.style2 .th-btn .btn-text:after {
  color: #02437a
}

.service-grid.style2 .th-btn:is(.border-btn) i {
  color: #02437a
}

.service-grid.style2 .th-btn:hover {
  border-color: var(--primary-color)
}

.service-grid.style2 .th-btn:hover .btn-text:before,
.service-grid.style2 .th-btn:hover .btn-text:after {
  color: #fff
}

.service-grid.style2 .th-btn:hover:after {
  background-color: var(--primary-color)
}

.service-grid.style2 .th-btn:hover:is(.border-btn) i {
  color: #fff
}

.service-grid .box-img {
  min-width: 200px;
  border-radius: 14px
}

@media(max-width: 1500px) {
  .service-grid .box-img {
    min-width: 170px
  }
}

@media(max-width: 1499px) {
  .service-grid .box-img {
    min-width: 158px
  }
}

@media(max-width: 480px) {
  .service-grid .box-img {
    margin-top: 30px;
    min-width: 100%
  }
}

.service-grid .box-img img {
  width: 100%;
  border-radius: 14px
}

.service-grid .box-title {
  color: #fff
}

@media(max-width: 1500px) {
  .service-grid .box-title {
    font-size: 20px
  }
}

.service-grid .box-text {
  color: #b7bec8;
  margin-bottom: 20px
}

.service-grid .th-btn {
  border: 1px solid #fff
}

.service-grid .th-btn .btn-text:before,
.service-grid .th-btn .btn-text:after {
  color: #fff
}

.service-grid .th-btn:is(.border-btn) i {
  color: #fff
}

.service-grid .th-btn:hover {
  border-color: #fffa84
}

.service-grid .th-btn:hover .btn-text:after,
.service-grid .th-btn:hover .btn-text:before {
  color: #02437a
}

.service-grid .th-btn:hover:is(.border-btn) i {
  color: #02437a
}

.service-grid .th-btn:hover:after {
  background-color: #fffa84
}




.fourth-section {
  width: 100%;
  height: auto;
  padding: 0px 0 70px;
  position: relative;
}

.bgSec::after {
  content: '';
  position: absolute;
  top: 22px;
  width: 500px;
  height: 350px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .1;
  z-index: 1;
  background-image: url(../image/logo-shape.png);
  right: 0;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: auto;
  transform: none !important;
  border-radius: 20px;
  border: 1px solid rgb(0 0 0 / 9%);
  padding: 25px 30px;
  transition: all .5s;
}

.flip-card-btm .title {
  text-align: center;
  font-size: 27px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  text-align: left;
  margin-bottom: 12px;
  transition: all .5s;
}

.flip-card-Para p {
  font-size: 17px;
  line-height: 27px;
  color: #000;
  transition: all .3s;
  font-weight: 500;
}

.flipCardInn .imgCon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(140deg, #f2941d 12%, #ff8c00 45%, #fa900c 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  transition: all .5s;
}

.flipCardInn .imgCon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  transition: all .5s;
}

.flip-card:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
  border-color: transparent;
  border: 1px solid transparent
}

.ltSkyBg {
  background-color: #fffaf4;
}


.imgCon i {
  font-size: 45px;
  color: #fff;
}

.som_product {
  padding: 50px 0;
  width: 100%;
  width: 100%;
  background-color: #f7f7f745;
  background-image: url(../image/why-chouse-us-bg.png);
}

.item_box {
  overflow: hidden;
  text-align: center;
  color: #fff !important;
  box-shadow: #fff 0 0 0 0;
  background: rgba(255, 255, 255, 1);
  border: #eaeaea 1px solid;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto
}

.item_box .image {
  position: relative;
  overflow: hidden;
}

.item_box .con {
  background-color: #2776bb;
  /* padding-left: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.item_box .con .tt {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  /* width: calc(100% - 42px); */
  white-space: nowrap;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  padding: 12px 10px;
  text-transform: capitalize !important;
  text-align: center;
}

.item_box .con .read-more {
  height: 42px;
  width: 42px;
  min-width: 42px;
  display: block;
  text-align: center;
  align-content: center;
  color: white;
  background-color: #ca2212;
}

.item_box .con .read-more svg {
  width: 18px;
  height: 18px;
}

.item_box .overlay-bx {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  padding: 30px;
  padding-left: 50px;
  z-index: 1;
  transition: all 600ms ease;
}

.item_box:hover .overlay-bx {
  top: 0;
}

.item_box .overlay-bx::before {
  position: absolute;
  left: 25px;
  bottom: 0;
  height: 90%;
  width: 1px;
  background-color: #ffffff;
  content: "";
  opacity: .70;
}

.item_box .overlay-bx::after {
  position: absolute;
  bottom: 25px;
  left: 0;
  height: 1px;
  width: 90%;
  background-color: #ffffff;
  opacity: .70;
  content: "";
}

.item_box .overlay-bx p {
  color: white;
  font-size: 16px;
}

.item_box .overlay-bx a {
  color: #ca2212;
}

.item_box .overlay-bx a:hover {
  color: #fff;
}

.item_box .image img {
  width: 100%;
  object-position: center;
}



/* 
..................other-product............... */

.other-product .owl-nav {
  display: none !important;
}

.other-product .owl-dots {
  text-align: center;
  padding-top: 20px;
}

.other-product .owl-dot {
  display: inline-block;
  margin: 0 0px !important;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.other-product .owl-dot span {
  display: block;
  width: 12px !important;
  height: 12px !important;
  background: #ccc !important;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.other-product .owl-dot:hover span {
  background: #666;
  transform: scale(1.2);
}

.other-product .owl-dot.active span {
  background: #2776bb !important;
  /* Accent color for active dot */
  transform: scale(1.5);
}

.fix-padding {
  padding: 50px 0px !important;
}

.item_box .con .tt {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 10px;
  text-transform: capitalize !important;
}
 .core-values-list {
   margin-top: 10px;
   padding-left: 0;
 }

 .core-values-list li {
   font-size: 15px;
   line-height: 1.6;
   margin-bottom: 6px;
   font-weight: 500;
 }