:root {
  --font: "Nunito", sans-serif;
  --font2: "Nunito", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #8bc53e;
  --sec: #305204;
  --text-color: #111111;
  --text-light: #8c8c8c;
  --para-color: #555;
  --border-color: #d5dfe4;
  --white: #fff;
  --off-white: #fafdf4;
  --black: #111;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  line-height: 1.5;
  min-height: 100vh;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
}

.head-sec2 {
  text-align: center;
  position: relative;
  z-index: 1;
}

.head-sec2 .sub-tt {
  font-size: 15px;
  font-style: italic;
  color: var(--pri);
  font-weight: 500;
}

.head-sec2 .tt {
  color: var(--text-color);
  font-weight: 600;
  font-size: 25px;
  text-transform: capitalize;
  display: inline-block;
  background-color: var(--white);
  padding-inline: 20px;
}

.head-sec2 .tt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 35px;
}

.head-sec.text-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  font-size: 15px;
  font-weight: 700;
  color: var(--pri);
  align-content: center;
  margin-bottom: 5px;
}

.head-sec .sub-tt img {
  width: 25px;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--sec);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 7px;
  position: relative;
  text-transform: capitalize;
}

.head-sec .tt span {
  color: var(--pri);
}

.head-sec p {
  font-size: 15px;
  color: var(--para-color);
  font-weight: 500;
  margin-bottom: 0;
}

.w-btn {
  padding: 11px 15px;
  border-radius: 4px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;
  background-color: #00b95d;
}

.main-btn {
  padding: 13px 20px;
  color: var(--text-color);
  border: 1px dashed var(--text-color);
  background-color: var(--pri);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font2);
  text-transform: capitalize;
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 20px;
  line-height: 1;
}

.main-btn.sm {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
}

.main-btn.animate {
  padding-inline: 14px;
  border-radius: 5px;
  position: relative;
  border: 0;
}

.main-btn.animate:hover{
  background-color: var(--sec);
  color: var(--pri);
}

.main-btn.animate::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 3px;
  z-index: -1;
  background: linear-gradient(90deg, var(--pri) 50%, transparent 0) repeat-x,
    linear-gradient(90deg, var(--pri) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--pri) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--pri) 50%, transparent 0) repeat-y;
  background-size: 6px 1px, 6px 1px, 1px 6px, 1px 6px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  animation: rotateBorder 5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.main-btn.animate:hover::before{
  animation: none;
}

.main-btn:hover {
  background: var(--sec);
  color: var(--pri);
  border-color: var(--pri);
}

.main-btn2 {
  color: var(--pri);
  background-color: var(--sec);
  border-color: var(--pri);
}

.main-btn2:hover {
  background-color: var(--pri);
  border-color: var(--sec);
  color: var(--text-color);
}

.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 13px;
  margin-bottom: 0;
  padding: 0;
}

.social li a {
  color: var(--text-color);
}

.social li a svg {
  width: 15px;
  height: 15px;
}

.social li a:hover {
  color: var(--sec);
}

.form-label {
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 4px;
}

.SumoSelect > .CaptionCont > span.placeholder {
  background-color: transparent;
  color: var(--text-color);
  opacity: 0.8;
  font-style: normal;
}

.SumoSelect {
  display: block;
  width: 100%;
}

.SumoSelect.open .search-txt {
  font-weight: 500;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: var(--border-color);
  height: 43px;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  box-shadow: none;
  border-color: var(--text-light);
}

.SumoSelect.open > .optWrapper {
  top: 43px;
}

.form-group {
  position: relative;
  margin-bottom: 13px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 500;
  border-radius: 7px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: #e3e3e3;
  height: 40px;
  align-content: center;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--text-light);
  box-shadow: none;
}

header {
  position: relative;
  z-index: 999;
}

header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

header.stricky-fixed .top-bar {
  display: none;
}

.top-bar {
  background-color: var(--pri);
  padding: 6px 0;
}

.top-bar p {
  font-size: 14px;
  margin-bottom: 0;
  color: white;
}

.top-bar p a {
  color: white;
  font-weight: 600;
  /* font-size: 15px; */
}

.top-bar p a:hover {
  color: var(--text-color);
}

.top-bar .main-btn.main-btn2 {
  background-color: white;
  font-weight: 500;
  border: 0;
  color: var(--pri);
  position: relative;
  border-radius: 5px;
  padding: 10px 14px;
}

.top-bar .main-btn.main-btn2 .top-bar .main-btn.main-btn2:hover {
  transform: scale(1.02);
}

.top-bar .main-btn.main-btn2::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 3px;
  z-index: -1;
  background: linear-gradient(90deg, var(--pri) 50%, transparent 0) repeat-x,
    linear-gradient(90deg, var(--pri) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--pri) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--pri) 50%, transparent 0) repeat-y;
  background-size: 6px 1px, 6px 1px, 1px 6px, 1px 6px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  animation: rotateBorder 5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes rotateBorder {
  0% {
    background-position: 0 0, 0 100%, 0 0, 100% 0;
  }
  100% {
    background-position: 100% 0, -100% 100%, 0 100%, 100% -100%;
  }
}

.logo img {
  max-width: 128px;
  width: auto;
  height: auto;
  aspect-ratio: 11 / 5;
  position: relative;
  bottom: -3px;
  z-index: 1;
}

.search-bx {
  display: flex;
  align-items: center;
  border: 1px dashed var(--pri);
  border-radius: 25px;
  overflow: hidden;
  padding: 4px;
  background-color: #fdfff8;
}

.search-bx select {
  width: auto;
  max-width: 125px;
  padding-left: 3px;
  outline: none;
  border: none;
  color: var(--para-color);
  font-weight: 500;
  height: 30px;
  font-size: 15px;
}

.search-bx input {
  width: 100%;
  max-width: 100%;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 500;
  height: 30px;
  font-size: 15px;
  padding-left: 10px;
  background-color: transparent;
}

.search-bx button {
  outline: none;
  border: none;
  height: 35px;
  width: 35px;
  min-width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--white);
  background: var(--pri);
  border-radius: 100%;
}

.search-bx button:hover {
  color: var(--pri);
  background: var(--text-color);
}

.menubar {
  position: relative;
  padding: 6px 0 5px;
}

.menubar::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 11px;
  background-image: url(../images/shape/header-shape.webp);
  background-repeat: repeat-x;
  filter: drop-shadow(0px 1px 1px rgba(73, 73, 73, 0.08));
}

.menubar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.call-now {
  display: flex;
  align-items: center;
}

.call-now .icon-bx {
  min-width: 38px;
  margin-right: 8px;
  color: var(--pri);
}

.call-now .con-bx {
  text-align: left;
}

.call-now .con-bx span {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-light);
}

.call-now .con-bx span a {
  font-size: 16px;
  font-weight: bold;
  color: var(--sec);
  margin-bottom: 1px;
}

.call-now .con-bx span a:hover {
  color: var(--pri);
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--sec);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: var(--pri);
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 15px 8px;
  display: block;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--font2);
  background: transparent;
  font-weight: 500;
}

.navigation .menu ul li:last-child a {
  padding-right: 0;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--pri);
  background: transparent;
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: 250px;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li a:hover {
  background-color: var(--pri);
  color: var(--white);
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  background-color: var(--pri);
  color: var(--white);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: var(--white);
  background: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: #333;
  font-size: 15px;
  padding: 6px 9px;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-weight: normal;
  transition: all 0.2s;
  border-bottom: 0px solid transparent;
  font-weight: 500;
  border-radius: 5px;
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 0;
  color: var(--text-color);
  line-height: 17px;
}

.navigation ul li.ls-submenu a button svg {
  width: 13px;
  height: 13px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--pri);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: var(--text-color);
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #fff;
  margin-top: 3px;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

.navigation .navbar {
  display: none;
  padding: 8px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 190px;
  width: max-content;
  max-width: 260px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
  border-radius: 5px;
  padding: 10px;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

/* ################### main ###################### */

main,
main img {
  aspect-ratio: 1920 / 700;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}

/* 
main::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -1px;
    width: 100%;
    height: 76px;
    background-image: url(../images/shape/shape-21.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
} */

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 15px;
    width: 15px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

.swiper_wrap {
  position: relative;
}

.cate-next,
.cate-prev {
  width: 40px;
  height: 40px;
  background-color: #fdfff8;
  border: 1px dashed var(--pri);
  border-radius: 100%;
  color: var(--pri);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 23px;
  height: 23px;
}

.lead-sure-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.lead-sure-section.content-sec {
  background-color: var(--pri);
  padding: 80px 0;
}

.lead-sure-section.content-sec .content-shape {
  background-image: url(../images/shape/content-bg.webp);
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  animation: slide 90s linear infinite;
  -webkit-animation: slide 90s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.lead-sure-section.content-sec::before,
.lead-sure-section.content-sec::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 11px;
  background-image: url(../images/shape/header-shape.webp);
  background-repeat: repeat-x;
  background-position: bottom center;
}

.lead-sure-section.content-sec::after {
  top: auto;
  bottom: -1px;
  transform: rotate(180deg);
}

@keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 1920px 0;
  }
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 1920px 0;
  }
}

.lead-sure-section.content-sec h1,
.lead-sure-section.content-sec h2,
.lead-sure-section.content-sec h3,
.lead-sure-section.content-sec h4,
.lead-sure-section.content-sec p,
.lead-sure-section.content-sec ul li {
  color: #111;
}

.img-bg {
  background-image: url(../images/shape/bg1.webp);
  background-color: var(--off-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;
  background-color: var(--pri) !important;
}

.bg-light {
  background-color: #f8f8f8 !important;
}

.about-section .image-box {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding-right: 100px;
  padding-bottom: 20px;
}

.about-section .image-box .image-1 {
  position: relative;
  display: block;
  border-radius: 170px 170px 170px 10px;
  overflow: hidden;
}

.about-section .image-box img {
  position: relative;
  width: 100%;
}

.about-section .image-box .image-2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 250px 250px 10px 250px;
  margin-bottom: 0;
  max-width: 100%;
  width: 300px;
}

.about-section .image-box .image-2 img {
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .image-2:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  right: 16px;
  bottom: 16px;
  border-radius: 250px 250px 10px 250px;
}

.about-section .image-box .rotate-box .icon-box img {
  display: inline-block;
  width: auto;
}

.badge-ring {
  position: absolute;
  right: 0;
  top: -47px;
  width: 168px;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  border-radius: 50%;
  z-index: 2;
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70px;
}

.badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
  border: dashed;
  border-width: 1px;
  border-color: var(--pri);
  border-radius: 50%;
}

.badge-text svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

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

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

.top-cate-bx {
  text-align: center;
}

.top-cate-bx .img-bx {
  position: relative;
  z-index: 1;
  padding-block: 20px;
  padding-left: 30px;
  padding-right: 2px;
  margin-bottom: 10px;
}

.top-cate-bx .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.top-cate-bx img:not(.shape) {
  border-radius: 100%;
  padding: 10px;
  background-color: white;
}

.top-cate-bx .tt a {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}

.top-cate-bx:hover .tt a {
  color: var(--pri);
}

.highlights-section {
  border: 1px dashed var(--pri);
  padding: 25px 40px;
  border-radius: 20px;
}

.highlights-bx {
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlights-bx .img {
  display: block;
  overflow: hidden;
  width: 65px;
  height: 65px;
  align-content: center;
  min-width: 65px;
  text-align: center;
  background: #fff;
  border-radius: 100%;
  border: 1px dashed var(--pri);
}

.highlights-bx .tx-bx {
  color: var(--text-color);
  font-weight: 700;
  font-size: 17px;
}

.cate-bx {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--off-white);
  border: 1px dashed var(--pri);
  margin-right: 1px;
  padding: 15px;
  text-align: center;
  margin-bottom: 1px;
}

.cate-bx .img-bx {
  aspect-ratio: 1 /1;
  background-color: var(--off-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.cate-bx .img-bx img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx:hover .img-bx img {
  transform: scale(1.1);
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.cate-bx:hover .tx-bx .tt a {
  color: var(--pri);
}

.cate-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.left-bar {
  border-radius: 20px;
  color: white;
  height: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.left-bar img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.left-bar .bar-des {
  background: var(--liner);
  background-color: var(--pri);
  border-radius: 20px;
  margin: 30px;
  position: relative;
  z-index: 1;
  padding: 35px;
  color: var(--text-color);
}

.left-bar .bar-des::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px dashed white;
  border-radius: 20px;
  z-index: -1;
}

.left-bar .bar-des .title {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.left-bar .bar-des .sub-title {
  font-weight: 700;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-bx .img {
  aspect-ratio: 409 / 240;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.blog-bx .img .float-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translatey(-50%) scaleY(1.5);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s ease;
  transition: background-color 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.blog-bx .img .float-img:hover {
  transform: translatey(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
}

.blog-bx .img img:not(.shape) {
  aspect-ratio: 409 / 240;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-bx .tx-bx {
  position: relative;
}

.blog-bx .post-info {
  background-color: var(--pri);
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -60px;
  left: 16px;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 10px;
  z-index: 2;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.blog-bx .post-info li {
  position: relative;
}

.blog-bx .post-info li::before {
  content: "";
  width: 14px;
  height: 1px;
  display: inline-block;
  right: -22px;
  top: 11px;
  position: absolute;
  border-bottom: 1px dashed var(--white);
}

.blog-bx .post-info li:last-child:before {
  content: none;
}

.blog-bx .tt a {
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  position: relative;
  margin-top: 15px;
}

.blog-bx .tt:hover a {
  color: var(--pri);
}

.blog-sec .main-tt {
  padding-left: 13px;
  padding-block: 3px;
  font-weight: 700;
  border-left: 5px solid var(--pri);
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 25px;
}

.blog-sec .img-bx {
  margin: 15px auto;
  text-align: center;
  max-width: 700px;
}

.blog-sec .img-bx img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 20px;
  border: 1px solid var(--off-white);
  aspect-ratio: 409 / 240;
}

.blogDate {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  margin-block: 8px;
}

.blogDate li {
  position: relative;
}

.blogDate li:last-child::before {
  content: "";
  background: var(--pri);
  display: inline-block;
  height: 2px;
  width: 12px;
  position: absolute;
  top: 8px;
  margin: 0;
  left: -20px;
}

.mini-blogs,
.qut-bx {
  background-color: var(--off-white);
  padding: 25px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}

.blog-bx.blog-card {
  display: flex;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  align-items: start;
  gap: 10px;
  margin-bottom: 18px;
  border: 0;
  padding: 0;
}

.blog-bx.blog-card:last-child {
  margin-bottom: 0;
}

.blog-bx.blog-card .img {
  border-radius: 10px;
  min-width: 120px;
  width: 120px;
}

.blog-bx.blog-card .tx-bx .tt a {
  margin: 0;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
}

.blog-bx.blog-card .tx-bx p {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 20px;
  line-height: 28px;
}

.contact-bx .head-sec .tt::before {
  top: 40px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 15px;
  border-radius: 10px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.contact-bx .con-bx .ic-bx {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
  color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 600;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.map-bx {
  width: 100%;
  display: block;
}

.you_may {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.you_may span {
  color: var(--pri);
}

.you_may::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0px;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

.pr-li {
  border: 1px solid var(--off-white);
  transition: 0.2s;
  background: white;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.pr-li:hover {
  border: 1px solid var(--border-color);
}

.pr-li .img_bx {
  padding: 0;
  border-right: 1px solid var(--off-white);
  height: 100%;
}

.pr-li:hover .img_bx {
  border-color: var(--border-color);
}

.pr-li .img_bx img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.pr-li .g_100 .img_bx {
  border: 0;
}

.pr-li .tx-bx {
  padding: 15px 20px;
}

.grid.pr_view .pr-li .tx-bx {
  padding-top: 0;
}

.pr-li .tx-bx .title {
  color: var(--pri);
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--off-white);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.pr-li:hover .tx-bx .title {
  border-color: var(--border-color);
}

.grid.pr_view .pr-li .tx-bx .title {
  text-align: center;
  border: none;
  margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
  text-align: center;
}

.pr-li .tx-bx .title a {
  font-size: 20px;
  color: var(--text-color);
  transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
  color: var(--pri);
}

.pr-li .tx-bx .info {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 0px;
}

.pr-li .tx-bx .info table {
  width: 100%;
  overflow: hidden;
}

.pr-li .tx-bx .info table thead {
  background-color: var(--pri);
  color: white;
  text-align: center;
}

.grid.pr_view .pr-li .tx-bx .info {
  display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pr-li .bt_bx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.multi-imgs .imgs {
  border: 1px solid #e3e3e3;
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.multi-imgs .imgs.active {
  border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
  object-fit: contain;
  object-position: center;
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #afafaf;
  padding: 5px 8px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
  color: var(--text-color);
  border-radius: 5px;
}

.productBrochureandvideo a svg {
  color: #b90000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.productBrochureandvideo a:hover {
  color: #444;
  border: 1px dashed #444;
}

.v-btn svg {
  width: 42px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--off-white);
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-bx img {
  aspect-ratio: 167 / 95;
  object-fit: contain;
  border-radius: 4px;
}

.custom-from-row {
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  border-radius: 30px;
}

.custom-from-row .form-control {
  border-radius: 4px;
  height: 45px;
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  box-shadow: none !important;
}

.custom-from-row textarea {
  padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
  height: 45px;
}

.custom-from-row .main-btn {
  padding-block: 14px;
  font-size: 15px;
}

.img-breadcum {
  padding: 80px 0 65px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.img-breadcum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

/* .img-breadcum::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(5px);
} */

.img-breadcum .sub-tt {
  color: var(--pri);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: var(--text-color);
  border-radius: 20px;
  padding: 7px 13px;
  display: inline-block;
}

.img-breadcum .tt {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 0px;
  color: var(--text-color);
  /*max-width: 750px;*/
  margin: 0 auto;
  text-transform: capitalize;
  /* text-shadow: 1px 1px 1px rgb(0 0 0); */
}

.img-breadcum p {
  color: var(--white);
  margin-top: 12px;
  font-size: 17px;
  margin-bottom: 0;
}

.img-breadcum.img-breadcum2 {
  text-align: left;
  padding: 60px 0;
}

.breadcum-sec {
  background-color: var(--white);
  padding: 7px 0;
  border-bottom: 1px dashed var(--pri);
}

.breadcum-sec ul {
  display: flex;
  gap: 0 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcum-sec ul li {
  color: var(--pri);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  position: relative;
}

.breadcum-sec ul li a {
  color: var(--text-color);
}

.breadcum-sec ul li a:hover {
  color: var(--pri);
}

.breadcum-sec ul li a::before {
  content: "/";
  position: absolute;
  top: 1px;
  right: -11px;
  font-size: 12px;
  color: var(--text-color);
}

.abt-img-bx {
  float: right;
  max-width: 600px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  /* overflow: hidden; */
}

.factsheet-bx {
  background-color: var(--off-white);
  border: 1px dashed var(--pri);
  border-radius: 14px;
  display: flex;
  padding: 13px;
  height: 100%;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.factsheet-bx .icon {
  padding-right: 5px;
  min-width: 40px;
  max-width: 40px;
}

.factsheet-bx .icon svg {
  fill: var(--pri);
  width: 100%;
  height: 100%;
  color: var(--pri);
}

.factsheet-bx .tx-bx .tt {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2px;
}

.factsheet-bx .tx-bx p {
  color: var(--para-color);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  opacity: 0.8;
  font-weight: 500;
}

.factsheet-bx.why-bx {
  flex-wrap: wrap;
  padding: 20px;
  gap: 10px 15px;
  display: block;
}

.factsheet-bx.why-bx .icon {
  padding-right: 0;
}

.factsheet-bx.why-bx .tx-bx .tt {
  font-size: 18px;
}

.factsheet-bx.why-bx .body-tx {
  font-size: 14px;
  margin-top: 10px;
}

.cate-img {
  max-width: 455px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.03);
}

.cate-img .swiper-button-next,
.cate-img .swiper-button-prev {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--pri);
}

.cate-img .swiper-button-prev {
  left: -16px;
}

.cate-img .swiper-button-next {
  right: -16px;
}

.cate-img .swiper-button-next:hover,
.cate-img .swiper-button-prev:hover {
  background-color: var(--pri);
  color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
  font-weight: bold;
}

.mySwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.5;
  border: 1px solid var(--pri);
}

.vidBx .imgBx {
  position: relative;
}

.vidBx .imgBx img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  outline: 0;
  transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .tx-bx .tt {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 1px;
  text-transform: capitalize;
  text-align: center;
}

.vidBx:hover .tx-bx .tt {
  color: var(--pri);
}

.vidBx .tx-bx p {
  text-align: center;
}

.faq-sec .nav-pills .nav-link {
  background-color: white;
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 18px;
}

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--pri);
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 10px 22px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
}

.accordion-button {
  background: transparent;
  font-weight: 500;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 18px;
  padding: 8px 0;
}

.accordion-body {
  line-height: 1.7;
  font-size: 16px;
  color: var(--para-color);
  padding: 0;
  padding-bottom: 8px;
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--pri);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a3d328'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.business-enq {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 15px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 600;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 130px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.error {
  font-size: 15px;
  color: red;
}

.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* border-bottom: 1px solid #e3e3e3; */
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-content {
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

/* .modal-header.modal-header2 .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
} */

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 13px 18px 20px;
}

.modal-content .main-tt {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #83b700;
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1 / 1;
}

.pop-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt,
.cmTitle {
  /* text-transform: capitalize; */
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
}

.cmTitle {
  color: var(--pri);
  font-size: 18px;
  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt {
  font-size: 22px;
  color: var(--text-color);
}

.content-sec ul {
  padding-left: 25px;
  margin: 0;
  margin-bottom: 10px;
  /* list-style: none; */
}

.content-sec p {
  margin-bottom: 10px;
}

.content-sec p,
.content-sec ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 500;
}

.content-sec ul li {
  margin-bottom: 3px;
}

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--pri);
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--text-light);
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

footer {
  background: #305204;
  overflow: hidden;
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 11px;
  background-image: url(../images/shape/header-shape.webp);
  background-repeat: repeat-x;
  background-position: bottom center;
}

.anim-shape .shape-1,
.anim-shape .shape-2,
.anim-shape .shape-3,
.anim-shape .shape-4 {
  opacity: 0.3;
}

.anim-shape .shape-1 {
  position: absolute;
  width: 34px;
  height: 31px;
  left: 77px;
  bottom: 122px;
  background-repeat: no-repeat;
}

.anim-shape .shape-2 {
  position: absolute;
  width: 34px;
  height: 31px;
  left: 486px;
  top: 126px;
  background-repeat: no-repeat;
}

.anim-shape .shape-3 {
  position: absolute;
  width: 34px;
  height: 31px;
  right: 170px;
  top: 65px;
  background-repeat: no-repeat;
}

.anim-shape .shape-4 {
  position: absolute;
  width: 34px;
  height: 31px;
  right: 620px;
  top: 200px;
  background-repeat: no-repeat;
}

.anim-shape .shape-5 {
  position: absolute;
  left: 0px;
  top: 140px;
  width: 68px;
  height: 99px;
  background-repeat: no-repeat;
}

.anim-shape .shape-6 {
  position: absolute;
  left: 50%;
  bottom: 110px;
  width: 131px;
  height: 87px;
  background-repeat: no-repeat;
}

.anim-shape .shape-7 {
  position: absolute;
  right: 0px;
  bottom: 105px;
  width: 77px;
  height: 107px;
  background-repeat: no-repeat;
}

.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .logo img {
  max-width: 140px;
  filter: brightness(0) invert(1);
  max-height: 100%;
}

.ft-bx .con-bx {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
  min-width: 17px;
  width: 17px;
  height: 17px;
  color: var(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: var(--off-white);
  margin-bottom: 0px;
}

.ft-bx .con-bx p strong {
  font-weight: 500;
}

.ft-bx .con-bx a {
  font-weight: 600;
}

.ft-bx .con-bx a:hover {
  color: var(--pri);
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.ft-bx .ft-tt::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 2px;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

.ft-bx .ft-tt span {
  color: var(--pri);
}

.ft-bx p {
  color: var(--off-white);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 300;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li a {
  font-weight: 300;
  font-size: 15px;
  color: var(--off-white);
  padding: 4px 0;
  transition: 0.1s;
  display: inline-block;
}

.ft-bx ul li a:hover {
  color: var(--pri);
}

.ft-bx ul.social {
  display: flex;
  gap: 7px;
  justify-content: start;
}

.ft-bx ul.social li a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 35px;
  height: 35px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--pri);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
  border: 0;
}

.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  border-radius: 20px;
  height: 100%;
}

.ft-bx ul.social li a:hover {
  border-color: var(--pri);
  background-color: var(--pri);
  color: white;
}

.copyright {
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright svg {
  color: var(--pri);
}

.copyright p {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 300;
  font-size: 15px;
}

.copyright p a {
  color: var(--white);
  display: inline;
  font-weight: 600;
}

.copyright p a:hover {
  color: var(--pri);
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0px 0px 0px 15px;
  margin-bottom: 5px;
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 500;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 15px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

.market-sec {
  padding: 60px 0;
  font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: #e8e8e8;
  color: var(--text-color);
  font-size: 15px;
  transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  /* so hover works leftwards */
  justify-content: flex-start;
  gap: 6px;
}

.star-rating input {
  display: none;
  /* hide radio buttons */
}

.star-rating label {
  font-size: 28px;
  color: #c7c7c7;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f6b400;
}

/* readonly mode */
.star-rating.readonly {
  gap: 3px;
}

.star-rating.readonly label {
  cursor: default;
  pointer-events: none;
  font-size: 22px;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

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

@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-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

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

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

.rotate-me {
  animation-name: rotateme;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.news-shape {
  position: absolute;
  left: 50%;
  margin-left: -73px;
  top: -0px;
  width: 146px;
  height: 176px;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
}

.slide-text .text-inner {
  position: relative;
  display: block;
  padding: 40px 0px;
}

.slide-text .text-inner:before,
.slide-text .text-inner:after {
  position: absolute;
  content: "";
  background-image: url(../images/shape/shape-32.png);
  left: 0px;
  width: 100%;
  height: 14px;
  background-repeat: repeat-x;
  background-size: cover;
}

.slide-text .text-inner:before {
  top: 0px;
}

.slide-text .text-inner:after {
  bottom: 0px;
}

.slide-text .text-inner .text-list {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 100px;
  -moz-animation: scroll-left 300s linear infinite;
  -webkit-animation: scroll-left 300s linear infinite;
  animation: scroll-left 300s linear infinite;
  margin-bottom: 0;
}

.slide-text .text-inner .text-list li {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 40px;
  color: var(--text-color);
  font-weight: 700;
}

.slide-text .text-inner .text-list li a {
  color: var(--text-color);
}

.slide-text .text-inner .text-list li a:hover {
  color: var(--pri);
}

.slide-text .text-inner .text-list li:last-child {
  margin: 0px;
}

@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(0%);
  }

  100% {
    -moz-transform: translateX(-100%);
  }
}

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

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

.slide-text .text-inner .text-list li:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: -2px;
  right: -67px;
  background: url(../images/shape/marquee-shape2.png);
  background-position: center;
  background-size: contain;
}

.slide-text .shape {
  position: absolute;
  left: 110px;
  bottom: 40px;
  width: 158px;
  height: 266px;
  background-repeat: no-repeat;
}

.expend-content-sec {
  max-height: 575px; /* collapsed height */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.expend-content-sec.expanded {
  max-height: 4000px; /* expanded height */
  overflow: unset;
}

.read-toggle {
  display: inline-block;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
}

.read-toggle:hover {
  color: var(--text-color);
}

.lead-sure-section.content-sec .scroll-bx {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 10px;
}

.lead-sure-section.content-sec .scroll-bx::-webkit-scrollbar {
  background-color: transparent;
  width: 0px;
}

.lead-sure-section.content-sec .scroll-bx:hover::-webkit-scrollbar {
  width: 5px;
}

.lead-sure-section.content-sec .scroll-bx:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

@media (hover: none) {
  .lead-sure-section.content-sec .scroll-bx::-webkit-scrollbar {
    width: 5px;
  }

  .lead-sure-section.content-sec .scroll-bx::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
  }
}
