/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Helper class
  4. Text color
  5. Background color
  6. Banner
  7. Background Position & Size
  8. Countdown
  9. Terms and Conditions
  10. Privacy Policy
  11. Contact
  12. Video
  13. Side Background
  14. List Icon
  15. Icon Size
  17. Shop Page
  18. Service Sidebar
  19. Extra
  20. Responsive Css

/* ------------------------
    General
------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;900&display=swap");

body {
  /* font-family: 'Livvic', sans-serif; */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: #454545;
  overflow-x: hidden;
  /* letter-spacing: 0.5px; */
}

:root {
  --primary-green-3: #529371;
  --primary-green-2: #58ae55;
  --primary-green-1: #b2de63;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1e2530 #dfe9eb;
}

.page-wrapper {
  overflow-x: hidden;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #dfe9eb;
}

*::-webkit-scrollbar-track:hover {
  background-color: #1e2530;
}

*::-webkit-scrollbar-track:active {
  background-color: #1e2530;
}

*::-webkit-scrollbar-thumb {
  background-color: #1e2530;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #62a34b;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #62a34b;
}
/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #1f2632;
  font-family: "Oswald", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
.h1 {
  font-size: 70px;
  font-style: normal;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: 0;
}

h2,
.h2 {
  font-size: 35px;
  font-style: normal;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

h3,
.h3 {
  font-size: 30px;
  font-style: normal;
  line-height: 40px;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 24px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 34px;
}

h5,
.h5 {
  font-size: 20px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 26px;
}

h6,
.h6 {
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  margin-bottom: 10px;
}

ul {
  margin: 0px;
  padding: 0px;
}

/* ------------------------
    Helper class
------------------------*/
p {
  line-height: 1.7;
}

.lead {
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
}

.z-index-0 {
  z-index: 0;
  position: relative;
}

.z-index-1 {
  z-index: 9;
  position: relative;
}

section {
  padding: 80px 0;
}

.font-w-3 {
  font-weight: 300;
}

.font-w-4 {
  font-weight: 400;
}

.font-w-5 {
  font-weight: 500;
}

.font-w-6 {
  font-weight: 600;
}

.font-w-7 {
  font-weight: 700;
}

.font-w-8 {
  font-weight: 800;
}

.font-w-9 {
  font-weight: 900;
}

.line-h-2 {
  line-height: 1.6;
}

.line-h-3 {
  line-height: 1.7;
}

.line-h-4 {
  line-height: 1.8;
}

.line-h-5 {
  line-height: 1.9;
}

.letter-space-1 {
  letter-spacing: 5px;
}

.letter-space-2 {
  letter-spacing: 10px;
}

.letter-space-3 {
  letter-spacing: 15px;
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
  color: var(--priamry-green-1);
}

.text-hover {
  color: #1c2431;
}

.text-black {
  color: #1f2632;
}

.text-grey {
  color: #454545;
}

.text-rgba {
  color: rgba(255, 255, 255, 0.8);
}

.text-green1 {
  color: var(--primary-green-1);
}

.text-green2 {
  color: var(--primary-green-2);
}

.text-green3 {
  color: var(--primary-green-3);
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
  background-color: #ffffff;
}

.dark-bg {
  background-color: #0a1426;
}

.light-bg {
  background-color: #d4ffd3;
}

.theme-bg {
  background-color: #529371;
}

.transparent-bg {
  background-color: inherit !important;
}

/* ------------------------
    Banner
------------------------*/
.fullscreen-banner {
  position: relative;
  max-height: 750px;
}

[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.align-center {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 9;
}

.fullscreen-banner .owl-carousel,
.fullscreen-banner .owl-stage-outer,
.fullscreen-banner .owl-stage,
.fullscreen-banner .owl-item,
.fullscreen-banner .item {
  height: 100%;
}

/* -------------------------------
   Background Position & Size
-------------------------------*/
.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-pos-l {
  background-position: left;
}

.bg-pos-r {
  background-position: right;
}

.bg-pos-rt {
  background-position: right top;
}

.bg-pos-lt {
  background-position: left top;
}

.bg-pos-rb {
  background-position: right bottom;
}

.bg-pos-lb {
  background-position: left bottom;
}

.bg-repeat {
  background-repeat: repeat;
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
  width: 100%;
}

.countdown > li {
  list-style-type: none;
  text-align: center;
}

.countdown > li span {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  line-height: 150px;
  font-size: 60px;
  font-weight: 500;
  display: inline-block;
  color: #529371;
}

.countdown > li p {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
  margin-bottom: 0;
  color: #ffffff;
}

/* ------------------------
    Terms and Conditions
------------------------*/
.terms-and-conditions p {
  margin-bottom: 25px;
}

.terms-and-conditions ul.list {
  margin-bottom: 20px;
  display: block;
}

.terms-and-conditions ul.list li i {
  padding-right: 12px;
  font-size: 15px;
}

/* ------------------------
    Privacy Policy
------------------------*/
.privacy-policy p {
  margin-bottom: 25px;
}

.privacy-policy ul.list {
  margin-bottom: 20px;
  display: block;
}

.privacy-policy ul.list li i {
  padding-right: 12px;
  font-size: 15px;
}

/* ------------------------
    Contact
------------------------*/
.contact-media a {
  color: #ffffff;
}

.contact-media a:hover {
  color: #529371;
}

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

label {
  font-size: 14px;
  color: #1f2632;
}

.form-control {
  font-size: 14px;
  height: 50px;
  color: #454545;
  border: 1px solid #e9eaed;
  border-radius: 0;
}

textarea.form-control {
  height: 120px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #1c2431;
}

select.form-control {
  height: 50px !important;
}

iframe {
  width: 100%;
  border: none;
  pointer-events: auto;
}

.form-control::-webkit-input-placeholder {
  color: #454545;
}

.form-control::-moz-placeholder {
  color: #454545;
}

.form-control:-ms-input-placeholder {
  color: #454545;
}

.form-control:-moz-placeholder {
  color: #454545;
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  width: 100%;
  font-size: 0.8rem;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  width: 100%;
  font-size: 0.8rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #1f2632 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.map {
  height: 400px;
  z-index: 999;
}

.map iframe {
  border: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ------------------------
    Video
------------------------*/
.video-btn {
  position: relative;
  display: inline-block;
}

.video-btn-pos {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto !important;
  z-index: 99;
}

.video-btn .play-btn {
  width: 80px;
  border-radius: 50%;
  cursor: pointer;
  height: 80px;
  background: #ffffff;
  display: inline-block;
  text-align: center;
  line-height: 80px;
  position: relative;
}

.video-btn .play-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #529371;
  left: 0px;
  top: 0px;
  transform: scale(0.6);
  transition: 0.5s ease;
  border-radius: 50%;
  opacity: 0;
}

.video-btn .play-btn:hover::after {
  transform: scale(1);
  opacity: 1;
}

.video-btn .play-btn i {
  z-index: 1;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #529371;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.2s ease-out !important;
  transform: translate3d(-50%, -50%, 0);
}

.video-btn .play-btn:hover i {
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  color: #ffffff;
}

/* ------------------------
    Side Background
------------------------*/
.image-column {
  position: absolute;
  left: 0px;
  top: 50%;
}

.image-column.right {
  left: inherit;
  right: 0;
}

/* ------------------------
    List Icon
------------------------*/
.list-icon li {
  display: flex;
  /* align-items: center; */
  text-align: justify;
}

.list-icon li i {
  margin-right: 10px;
  color: #ffffff;
  font-size: 14px;
  width: 22px;
  height: 22px;
  padding: 0px 5px;
  text-align: center;
  display: inline-block;
  line-height: 22px;
  background: #1e2530;
}

/* ------------------------
    Icon Size
------------------------*/
.ic-1x {
  font-size: 1em;
}

.ic-2x {
  font-size: 2em;
}

.ic-3x {
  font-size: 3em;
}

.ic-5x {
  font-size: 5em;
}

.ic-7x {
  font-size: 7em;
}

/* -------------------------------
 Shop Page
-------------------------------*/
.product-card {
  border: none;
  overflow: hidden;
}

.product-link {
  padding: 20px 15px;
  opacity: 0;
  right: 0;
  top: 2rem;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.product-card:hover .product-link {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.product-link button {
  color: #1f2632;
  font-size: 20px;
  border: none;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  display: block;
}

.product-link button:hover {
  background: #529371;
  color: #ffffff;
}

.product-card .card-body {
  padding: 20px;
  position: relative;
  text-align: center;
  background: #fff;
}

.product-title a {
  color: #1f2632;
  font-size: 18px;
  font-weight: 500;
}

.product-title a:hover {
  color: #529371;
}

.product-price {
  color: #529371;
  font-weight: 600;
}

.product-price del {
  font-size: 0.9rem;
}

.product-list.product-card {
  padding: 0;
}

.product-list.product-card .card-body {
  text-align: left;
}

.star-rating {
  color: #fdcc0d;
}

.form-check-input:checked {
  background-color: #529371;
  border-color: #529371;
}

input.form-product {
  -moz-appearance: textfield;
  height: 40px;
  border: none;
  background: #ffffff;
  text-align: center;
  width: 50px;
  border-top: 1px solid #e9eaed;
  border-bottom: 1px solid #e9eaed;
  color: #1f2632;
  vertical-align: middle;
}

.btn-product {
  background: none;
  color: #1f2632;
  border: 1px solid #e9eaed;
  height: 40px;
  width: auto;
  padding: 0 10px;
  font-size: 13px;
  cursor: pointer;
}

.view-filter a.active {
  color: #529371;
}

.view-filter a {
  color: #1f2632;
  padding-right: 8px;
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
}

.cart-table thead th {
  padding: 20px;
  vertical-align: middle;
  color: #1f2632;
  font-size: 20px;
  font-weight: 600;
}

.cart-table td {
  padding: 10px;
  color: #1f2632;
  vertical-align: middle;
}

/* ------------------------
Service Sidebar
------------------------*/
.sidebar-links li {
  margin-bottom: 15px;
}

.sidebar-links li:last-child {
  margin-bottom: 0;
}

.sidebar-links li a {
  background-color: #ffffff;
  color: #1f2632;
  display: block;
  font-size: 15px;
  padding: 5px 20px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  border-left: 3px solid transparent;
}

.sidebar-links li.active a,
.sidebar-links li a:hover {
  color: #529371;
  padding-left: 25px;
  border-left: 3px solid #529371;
}

/* ------------------------
Extra
------------------------*/
.img-border {
  border: 10px solid #ffffff;
}

.bg-effect:after {
  background: #d7ffd6;
  top: 0;
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 50%;
  border-radius: 0.25rem;
}

.bg-effect.right:after {
  left: inherit;
  right: 0;
}

.shape-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
}

.shape-1.bottom {
  top: inherit;
  bottom: -1px;
}

.round-anim {
  content: "";
  position: absolute;
  top: -30px;
  left: 120px;
  width: 370px;
  height: 370px;
  border: 50px solid rgb(170 212 94 / 10%);
  /* border-radius: 50%; */
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.round-anim.right {
  right: -10%;
  left: inherit;
}

.round-anim.center {
  left: 50%;
  margin-left: -350px;
}

/* ------------------------
    Responsive Css
------------------------*/
@media (max-width: 1200px) {
  .navbar-nav .nav-item {
    margin: 0 10px;
  }
}

@media (max-width: 992px) {
  h1,
  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  h2,
  h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .custom-mt-0 {
    margin-top: 0 !important;
  }

  /*Header*/
  #header-wrap {
    padding: 10px 0;
  }

  .navbar-toggler {
    background: none;
    height: 34px;
    width: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid #454545;
  }

  .navbar-nav ul {
    position: static;
  }

  .navbar-nav > .nav-item {
    margin: 0;
  }

  .navbar-nav .nav-link {
    padding: 10px !important;
    color: #454545;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-item .nav-link.active,
  .navbar-nav .nav-item .nav-link.show {
    background: #529371;
    color: #ffffff;
  }

  .navbar-collapse {
    background: #ffffff;
    max-height: 400px;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 99;
    top: 100%;
    width: 100%;
    overflow: auto;
    border: medium none;
    -webkit-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
  }

  .navbar-toggler span {
    width: 26px;
    height: 2px;
    margin: 5px auto;
    display: block;
    background: #529371;
  }

  .navbar-nav .dropdown-toggle::after {
    content: "+";
    background: none !important;
    position: absolute;
    border: none;
    top: 50%;
    right: 10px;
    margin: -0.5em 0.5em 0 0;
    border-radius: 0.25rem;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1;
  }

  .navbar-nav .dropdown > .dropdown-toggle.show::after {
    content: "-";
  }

  .navbar-nav .dropdown-submenu .dropdown-toggle::after {
    width: auto;
    height: auto;
    margin-right: 0;
  }

  .navbar {
    padding: 0;
  }

  /*Banner*/
  .fullscreen-banner {
    min-height: inherit;
    height: auto !important;
  }

  .fullscreen-banner .align-center {
    position: inherit;
    transform: inherit;
    padding: 150px 0 150px !important;
  }

  /*Side Image*/
  .image-column {
    left: 0;
    position: relative;
    top: inherit;
    transform: inherit;
  }

  .image-column-h {
    min-height: 300px;
  }

  /*Countdown*/
  .countdown > li span {
    font-size: 60px;
    line-height: 70px;
  }

  .countdown > li p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  h1,
  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2,
  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .section-title p {
    font-size: 16px;
  }

  .page-title h1 {
    font-size: 40px;
    line-height: 50px;
  }

  /*Header*/
  .logo img {
    max-height: 40px;
  }

  /*Countdown*/
  .countdown > li span {
    font-size: 40px;
    line-height: 40px;
  }

  .countdown > li p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  h1,
  h1 {
    font-size: 44px;
    line-height: 54px;
  }

  h2,
  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3,
  .h3 {
    font-size: 26px;
    line-height: 36px;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .logo img {
    max-height: 35px;
  }

  /*Banner*/
  .fullscreen-banner p br,
  .section-title br {
    display: none;
  }

  .breadcrumb-item {
    line-height: 30px;
  }

  /*Banner*/
  .tab .nav-tabs .nav-link {
    display: block;
    width: 100%;
  }

  .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }

  .owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}

.btn span.brochurebtn:before {
  content: none !important;
}

.btn span.brochurebtn {
  padding-right: 0px !important;
}

#site-header .header-top .social-icons .list-inline li a i {
  font-size: 25px;
}

footer .primary-footer .footer-cntct .media-icon li i {
  font-size: 25px;
}

footer .primary-footer .fimge {
  padding-top: 35px !important;
}

.box-f2 {
  overflow: hidden;
}

.imgchoos {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.box-f3 {
  overflow: hidden;
}

.box-f3::before {
  content: "";
  /* width: 770PX; */
  height: 315px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 30;
  /* background: linear-gradient(270deg, #e1fff6, transparent); */
}

.box-f2::before {
  content: "";
  /* width: 770PX; */
  height: 315px;
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 30;
  /* background: linear-gradient(90deg, #e1fff6, transparent); */
}

.bg-choos {
  /* background: #e1fff6; */
  /* border: 20px solid var(--primary-green-2); */
}

#footer-logo {
  margin-bottom: 15px;
  /* width: 200px; */
}

.font-white {
  color: #fff !important;
}

.text-justify {
  text-align: justify;
}

.featured-item .featured-desc p {
  font-size: 12px;
}

.d-grid {
  display: grid;
}

.counter .counter-desc {
  font-size: 45px;
  font-weight: 600;
  line-height: 45px;
  color: #000;
  font-family: "Oswald", sans-serif;
}

.light-bg.p-5.z-index-1.mt-n7::before {
  content: "";
  position: absolute;
  left: 100px;
  background: var(--priamry-green-1);
  top: 50%;
  width: 70%;
  height: 2px;
}

.light-bg.p-5.z-index-1.mt-n7::after {
  content: "";
  position: absolute;
  left: 50%;
  background: var(--priamry-green-1);
  top: 70px;
  width: 2px;
  height: 70%;
}

section.hilights .circlebg {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  width: 512px;
  height: 512px;
  background-image: url(../images/bg/map.png);
  background-size: 440px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

section.hilights .imglog-contain {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.imginfograph {
  width: 320px;
  height: auto;
}

.innerinfo .col-lg-3 .featured-icon i,
.biginfo .col-lg-3 .featured-icon i {
  font-size: 52px;
  color: #fff;
}

.innerinfo .col-lg-3 .featured-icon {
  display: grid;
  align-items: center;
  justify-content: center;
}

.innerinfo .col-lg-3 {
  display: grid;
  justify-content: start;
  align-items: center;
  /* overflow: hidden; */
}

.biginfo .col-lg-3 {
  /* overflow: hidden; */
}

.biginfo .col-lg-3:first-child {
  display: grid;
  justify-content: end;
  padding-top: 35px;
  padding-right: 55px;
  position: relative;
}

.biginfo .col-lg-3:nth-child(3) {
  display: grid;
  align-items: end;
  justify-content: end;
  padding-bottom: 35px;
  padding-right: 35px;
  position: relative;
}

.biginfo .col-lg-3:first-child .featured-icon.f1::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-green-1);
  position: absolute;
  right: 0px;
  top: 0;
  z-index: -1;
  transform: skew(150deg, 360deg);
}

.hilights .biginfo .col-lg-9 {
  padding-left: 100px;
}

.biginfo .col-lg-3:nth-child(3) .featured-icon.f3::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-green-1);
  position: absolute;
  right: 0px;
  top: 0;
  z-index: -1;
  transform: skew(210deg, 360deg);
}

.innercardrow {
  margin-left: -145px;
}

.biginfo .col-lg-3 .featured-icon.f2::before {
  content: "";
  width: 200%;
  height: 100%;
  background-color: var(--primary-green-3);
  position: absolute;
  right: 0px;
  top: 0;
  z-index: -1;
  transform: skew(150deg, 360deg);
  opacity: 0.9;
}

.biginfo .col-lg-3 .featured-icon.f4::before {
  content: "";
  width: 200%;
  height: 100%;
  background-color: var(--primary-green-3);
  position: absolute;
  right: 0px;
  top: 0;
  z-index: -1;
  transform: skew(210deg, 360deg);
  opacity: 0.9;
}

.hilights {
  padding: 100px 0px;
  margin-bottom: 80px;
}

.choose-about {
  padding: 100px 0 300px;
  background: #e1fff6;
  position: relative;
}

.shape-about.bottom {
  top: inherit;
  bottom: -25px;
}

.shape-about {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}

.choose-about .section-title {
  z-index: 99;
  background-attachment: fixed;
}

.mx-both {
  margin: 10px 0;
}

.fa-file:before {
  transition: all 0.9s ease-in-out;
}

.navbar-nav .nav-link:hover > .fa-file::before {
  content: "\e178" !important;
}

footer .footer-logo .f-image {
  width: 100%;
  height: auto;
}

.contact-map {
  width: 100%;
  height: 355px;
}

.conatctpara {
  font-size: 12px !important;
}

.boredr-box-contact {
  border: 2px solid #58ae55;
}

.contact-formpad {
  padding: 50px 0px 100px;
}

.contactimgehead {
  width: 240px;
  height: auto;
  z-index: 5;
}

.contact-imghead-container {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.imgconatinerhead {
  /* background: #fff; */
  padding: 45px;
  /* height: 400px;
  width: 400px; */
}

.bgcontactbg {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 0;
}

.contact-banner {
  padding: 70px 0 10px;
}

.about-section .btn.btn-theme {
  margin-top: 15px !important;
}

.featured-item.paddstyle {
  padding: 45px;
}

.highlight-section {
  padding: 100px 0;
  background: linear-gradient(0deg, #d4ffd3, transparent);
}

.round-anim-about {
  content: "";
  position: absolute;
  top: 50px;
  left: 40px;
  width: 560px;
  height: 440px;
  background: rgb(34 70 33 / 18%);
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.testimonial-section {
  padding: 0px 0 50px;
}

.client-section {
  padding: 100px 0;
}

.banner-slider .hero-overlay h2 {
  font-size: 50px !important;
  letter-spacing: 2px;
  line-height: 70px;
}

.blocg-section {
  padding: 50px 0;
}

.blocg-section .section-title p {
  margin-bottom: 25px;
}

.textbbutton {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-brand #logo-img {
  width: 250px;
}

.aboutpage-section .cardrmarginrght {
  margin-left: 19rem;
}

.aboutpage-section p b {
  color: var(--primary-green-2);
}

.aboutpage-section .round-anim-about {
  content: "";
  position: absolute;
  top: 50px;
  left: -90px;
  width: 410px;
  height: 620px;
  background: #d7ffd6;
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.certificates-section .marginminuscardcertificate {
  margin-top: -70px;
}

.certificates-section {
  padding: 50px 0px;
}

.certificates-section .cardsizecertificates {
  min-height: 610px !important;
  background-color: #fff;
}

.paracertdownload {
  font-size: 20px !important;
}
.paracertdownload.text-center {
  font-weight: 600;
  margin-bottom: 25px;
}

.policy-section {
  padding: 50px 0;
}

.section-downloadcert-card {
  background: #d4ffd3;
}

.text-left {
  text-align: left !important;
}

.team-section {
  padding: 50px 0 0px;
}

.imgcareer {
  width: 200px;
  height: auto;
}

.text-lg-right {
  text-align: right;
}

.careerrow .col-lg-6:nth-child(odd) {
  display: flex !important;
  justify-content: right !important;
}

.careerrow .col-lg-6:nth-child(even) {
  display: flex !important;
  justify-content: start !important;
}

.careerrow .col-lg-6 {
  align-items: center !important;
}

.imagec {
  max-width: 100%;
  height: auto;
}

.card-recruit::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100px;
  left: -50px;
  top: 35%;
  border-top: 5px dashed var(--primary-green-1);
}

.card-recruit {
  position: relative;
}

.recruit-img {
  height: 180px;
  width: 180px;
}

.obj {
  color: #b2de63;
  font-size: 31px;
  font-weight: 600px;
  font-family: "Oswald", sans-serif;
}

.ims {
  height: 180px;
  width: 180px;
}

.text-theme.fs-35 {
  font-size: 35px;
}

.pads {
  padding: 30px;
}

.bg-primary-green {
  background: var(--primary-green-3);
}

.text-light {
  color: #fff !important;
}

.related-gallery .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  margin-bottom: 10px !important;
}

.related-gallery .owl-carousel .owl-dots .owl-dot.active span {
  background: #d4ffd3;
  width: 25px;
  height: 5px;
}

.table > thead {
  vertical-align: middle !important;
}

.datasheet-acor .accordion-item .accordion-collapse .accordion-body .table {
  /* font-size: 12px !important; */
}

.related-gallery .popup-img {
  background: #0a142661;
  border-radius: 0;
  width: 100%;
  height: 100%;
  line-height: 58px;
  align-items: center;
  display: grid !important;
  text-align: center;
  display: block;
  font-size: 25px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 500;
}

.related-gallery .popup-img:after {
  content: none !important;
}

.related-gallery .cases-item .popup-img:hover {
  background: #58ae5554;
  color: #ffffff;
}

.dark-bg-32 {
  background: #000;
}

.accordion-body tbody tr:nth-child(odd) {
  background: #d4ffd3 !important;
}

.accordion-body .table > :not(caption) > * > * {
  border: 1px solid #028405;
}

.datasheetsection .accordion {
  --bs-accordion-border-width: 0 !important;
  --bs-accordion-border-radius: 0 !important;
}

section .career {
  padding: 0 0 80px;
}

.row.careerrow.g-0 {
  position: relative;
}

.row.careerrow.g-0::after {
  position: absolute;
  background-color: #e7e7e7;
  width: 6px;
  height: 100%;
  left: 50%;
  top: 0;
  content: "";
  z-index: 9;
  background-image: url(../images/pattern/03.png);
  background-attachment: fixed;
  background-position-x: 125px;
  background-position-y: -296px;
  background-repeat: no-repeat;
  background-size: 1920px 100%;
}

.careerrow .col-lg-6:nth-child(odd) {
  position: relative;
}

.careerrow .col-lg-6:nth-child(odd)::after {
  position: absolute;
  background-color: #e7e7e7;
  width: 25px;
  height: 25px;
  right: -15px;
  top: 50%;
  border-radius: 50%;
  content: "";
  z-index: 100;
  animation-iteration-count: infinite;
  animation-duration: 0.7s;
  animation-name: blinkdot;
  animation-timing-function: linear;
}

@keyframes blinkdot {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

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

.careerrow .col-lg-6:nth-child(even) {
  position: relative;
}

.careerrow .col-lg-6:nth-child(even)::before {
  position: absolute;
  background-color: #58ae55;
  width: 15px;
  height: 15px;
  left: -5px;
  top: 52%;
  border-radius: 50%;
  content: "";
  z-index: 101;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  /* animation-name: blinkdot; */
  animation-timing-function: linear;
}

.box-vf1 {
  margin: 0 auto;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 0px 10px 2px #212121;
  padding: 25px 25px !important;
  position: relative;
  z-index: 2;
}

.innerconatainer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 2px #d3d3d3;
  padding: 25px !important;
}

.img-centerlogo {
  width: 190px;
  height: auto;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.innerconatainer2 {
  /* background: blue; */
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0px 0px 10px 2px #d3d3d3;
}

.box-vf2 {
  margin-top: -200px;
  z-index: 0;
}

.selectionbox {
  margin-top: -310px;
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.boxriple {
  position: absolute;
  top: 23%;
  left: 50%;
  height: 400px;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  z-index: 1;
}

.boxriple:before,
.boxriple:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
  width: 400px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  z-index: 1;
}

.boxriple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.boxriple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.box-top-mr {
  z-index: 99999;
}

.box-vf2:hover {
  background: var(--primary-green-2);
}

.box-vf2:hover .btn.btn-theme {
  background: var(--primary-green-3);
}

.content-inner-1 {
  padding-top: 80px;
  padding-bottom: 0px;
}

.section-full {
  position: relative;
}

.section-full:last-child {
  margin-bottom: -50px;
}

/* About Us */
.frame-box .about-box {
  padding: 10px;
  border: 2px dashed;
  border-color: var(--primary-green-3) !important;
}

.frame-box .about-bx strong {
  font-weight: 700;
  text-transform: uppercase;
}

.dlab-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
}

.dlab-img-effect img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.8s;
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
}

/* >image-opacity */

.dlab-img-effect.opacity img:hover {
  opacity: 0.8;
  -moz-opacity: 0.8;
  -webkit-opacity: 0.8;
}

/* >image-zoom */

.dlab-img-effect.zoom-slow img {
  transition: all 10s;
  -moz-transition: all 10s;
  -webkit-transition: all 10s;
  -o-transition: all 10s;
}

.dlab-img-effect.zoom-slow:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* >image-zoom-slow */

.dlab-box:hover .dlab-img-effect.zoom img,
.our-team:hover .dlab-img-effect.zoom img,
.blog-post:hover .dlab-img-effect.zoom img,
.dlab-img-effect.zoom:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* >image-shrink */

.dlab-img-effect.shrink:hover img {
  transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  -moz-transform: scale(0.8);
}

.featured-item.paddstyle2 {
  padding: 20px 10px;
}

/* infograph */
.st0 {
  fill: url(#SVGID_1_);
}

.st1 {
  fill: url(#SVGID_00000140721187973847619930000015129716381545756826_);
}

.st2 {
  fill: url(#SVGID_00000045606547468616505410000003453952210263983013_);
}

.st3 {
  fill: #ffffff;
}

.st4 {
  fill: url(#SVGID_00000018210265147019630910000007536742417692245409_);
}

.st5 {
  fill: #edeef0;
}

.st6 {
  fill: #5b5b5f;
}

.st7 {
  font-family: "ArialMT";
}

.st8 {
  font-size: 42.5415px;
}

.st9 {
  fill: #828282;
}

.st10 {
  opacity: 0.6;
  fill: url(#SVGID_00000051348039755057288120000010629335743846577560_);
  enable-background: new;
}

.st11 {
  fill: #07a9f0;
}

.st12 {
  fill: url(#SVGID_00000087393675886066919060000011347411507526245004_);
}

.st13 {
  fill: url(#SVGID_00000146465800566587118450000012569057310892517048_);
}

.st14 {
  fill: url(#SVGID_00000033370129870842488550000006202773476429624706_);
}

.st15 {
  opacity: 0.6;
  fill: url(#SVGID_00000146477400716018089180000010780931839121784964_);
  enable-background: new;
}

.st16 {
  opacity: 0.6;
  fill: url(#SVGID_00000150794429807350861420000001805980514296349119_);
  enable-background: new;
}

.st17 {
  fill: #ffb655;
}

.st18 {
  fill: #7af4ab;
}

.st19 {
  font-size: 21.8229px;
}

.st20 {
  font-size: 21.8291px;
}

.st21 {
  fill: #8078bf;
}

.st22 {
  fill: url(#SVGID_00000109741259409857591050000017668257862101584292_);
}

.st23 {
  fill: #ff3c7d;
}

.st24 {
  fill: url(#SVGID_00000017497441037175965570000014609292238569237425_);
}

.st25 {
  fill: url(#SVGID_00000016046799695534561380000010010830666411438478_);
}

.st26 {
  fill: url(#SVGID_00000082346186641993015520000016473484421009181342_);
}

.st27 {
  fill: #d8d9dd;
}

.st28 {
  fill: url(#SVGID_00000159432391835254847460000002876832860499200147_);
}

.st29 {
  fill: url(#SVGID_00000130607118694395943910000017878268733624271279_);
}

.st30 {
  fill: url(#SVGID_00000134246693170540499860000003837719819936171443_);
}

.st31 {
  fill: url(#SVGID_00000054243189614964434730000008865017216778195095_);
}

.st32 {
  fill: url(#SVGID_00000016073997594484514890000000428980427369609378_);
}

.st33 {
  fill: url(#SVGID_00000018917662863582778740000007662061477549228930_);
}

.st34 {
  fill: url(#SVGID_00000087397245412881263760000002672423353866880132_);
}

.st35 {
  fill: url(#SVGID_00000102524688287083050040000000536180975841163674_);
}

.st36 {
  fill: url(#SVGID_00000062150224101673020570000008795138034949308319_);
}

.st37 {
  fill: url(#SVGID_00000064322506234422021320000003361915671427602330_);
}

.st38 {
  fill: url(#SVGID_00000028319660560977497150000010174035602470963329_);
}

.st39 {
  fill: url(#SVGID_00000023251091160545493510000010006797002910964123_);
}

.st40 {
  fill: url(#SVGID_00000033361930523323487470000015192329586382876047_);
}

.st41 {
  fill: url(#SVGID_00000166636862583939945560000005058983079286034345_);
}

.st42 {
  fill: url(#SVGID_00000027583152278353263760000007556118852946193063_);
}

.st43 {
  opacity: 0.6;
  fill: url(#SVGID_00000114765044256530051370000004173354049543282358_);
  enable-background: new;
}

.st44 {
  font-size: 22.4125px;
}

.st45 {
  font-size: 22.897px;
}

.st46 {
  font-size: 21.289px;
}

.st47 {
  font-size: 21.2896px;
}

.st48 {
  fill: #ff9100;
}

.st49 {
  fill: #c50048;
}

.st50 {
  fill: #20b7a1;
}

.st51 {
  fill: #636363;
}

.st52 {
  clip-path: url(#SVGID_00000183248862358210796710000015161580250077278649_);
}

.infgraphpallate text {
  text-align: center !important;
  font-family: "Oswald", sans-serif;
}

.infgraphpallate text tspan {
  text-align: center !important;
  font-family: "Oswald", sans-serif;
}

.featured-item.style-1.paddstyle2 {
  min-height: 270px !important;
  padding: 15px 40px;
}
.pl-xl-5 {
  padding-left: 45px;
}
.multipoints .col-sm-6 .list-unstyled li {
  text-align: left;
}
.accordion-body .accordionimg-right {
  float: right;
  margin-left: 15px;
}
.col-lg-6.col-sm-6 .featured-item .btn-theme:hover {
  border: 1px solid #fff;
}
.col-lg-4.col-sm-6 .featured-item .btn-theme:hover {
  border: 1px solid #fff;
}

.datasheetsection .accordion .accordion-item .accordion-body {
  height: fit-content;
  max-height: 550px;
  overflow: hidden;
  overflow-y: auto;
}
.datasheetsection .accordion .accordion-item .accordion-body .table {
  margin-bottom: 0px !important;
}

.bg-theme-light {
  background-color: #fff;
}
.accreditation-carousel {
  margin-top: -40px;
}

.about-sect-img-logo img {
  width: 100%;
  height: auto;
}
.about-sect-img-logo {
  right: -50px;
  top: -50px;
}

.aboutpage-section .round-anim-about3 {
  content: "";
  position: absolute;
  top: 50px;
  right: -90px;
  width: 410px;
  height: 620px;
  background: #d7ffd6;
  display: inline-block;
  z-index: -1;
  animation-name: zoom-fade;
  animation-duration: 5000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.aboutpage-section .cardrmarginleft {
  margin-right: 20rem;
}

.blog-card-post .col .owl-carousel .text-justify p a {
  float: right;
  font-weight: bold;
  font-size: 16px;
}
.blog-card-post .col .owl-carousel .text-justify p a:hover {
  color: #000;
}
.services-gallery .cases-item:hover img {
  transform: scale(1.02);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.services-gallery .popup-img {
  background: #6c6c6c00;
  border-radius: 0;
  width: 100%;
  height: 100%;
  line-height: 60px;
  text-align: center;
  display: block;
  font-size: 24px;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 500;
}
.services-gallery .cases-item .popup-img:hover {
  background: #ffffff00;
  color: #ffffff;
}
.services-gallery .popup-img:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: 10;
  border: none;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0;
  content: "";
}

.adddressection .imgholder {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
.adddressection img {
  width: auto;
  height: 200px;
}
.adddressection .featured-item .featured-icon {
  color: #0a1426 !important;
}
.steps-card .product-card .card-body {
  padding: 10px;
  position: relative;
  background: #fff;
}

section.page-title.parallaxie {
  background-image: url(images/bg/breadcrum-img.jpg);
  background-size: 100% !important;
  background-repeat: no-repeat;
  background-attachment: scroll !important;
  background-position: center -13px !important;
}
section.page-title.career-page.parallaxie {
  background-image: url(images/bg/breadcrum-img.jpg);
  background-size: 100% !important;
  background-repeat: no-repeat;
  background-attachment: scroll !important;
  background-position: center 0px !important;
}
h3.font-w-4.text-white.nav-item.dropdown .forsupport-card {
  display: none;
}
h3.font-w-4.text-white.nav-item.dropdown:hover .forsupport-card {
  display: block;
  padding: 15px;
  line-height: 21px;
  border: 0;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
}
h3.font-w-4.text-white.nav-item.dropdown:hover .forsupport-card hr {
  margin: 2px 0;
}
.forsupport-card .nav-item.dropdown .dropdown-menu a:hover {
  color: var(--primary-green-3);
  padding-left: 20px;
  padding-right: 20px;
}

.nav-item.dropdown .dropdown-menu.forsupport-card a {
  font-size: 14px;
  font-weight: 500;
}
.certificate-nav .btn + .btn {
  margin-left: 0px;
}
.navbar-nav .nav-item.dropdown .dropdown-menu.certificate-nav {
  padding: 5px;
  width: 100% !important;
}
.dropdown-menu.certificate-nav .accordion.datasheet-acor {
  width: 100%;
}

.white-bg-thememade {
  background-image: linear-gradient(270deg, #d7ffd6 10%, transparent 90%);
  border-radius: 122px 0px 0px 122px;
}

.h1-head{
  display: none;
}