:root {
  --primary-color:#127D51;
  --secondary-color:#FAFAFA;
  --text-color:#727272;
  --accent-color:#8EC73D;
  --accent-secondary-color:#2B8B64;
  --white-color:#FFFFFF;
  --divider-color:#03221B1A;
  --dark-divider-color:#FFFFFF25;
  --error-color:rgb(230, 87, 87);
  --default-font:"Poppins";
  --accent-font:"Poppins"
}
body {
  position:relative;
  font-family:var(--default-font);
  font-size:16px;
  font-weight:300;
  line-height:1em;
  color:#525252;
  background:var(--white-color)
}
::-webkit-scrollbar-track {
  background-color:var(--secondary-color);
  border-left:1px solid var(--secondary-color)
}
::-webkit-scrollbar {
  width:7px;
  background-color:var(--secondary-color)
}
::-webkit-scrollbar-thumb {
  background:var(--accent-color)
}
::selection {
  color:var(--primary-color);
  background-color:var(--secondary-color);
  filter:invert(1)
}
a {
  color:#525252
}
p {
  line-height:1.5;
  margin-bottom:1.57em
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0;
  font-family:var(--accent-font);
  font-weight:600;
  line-height:1.1em;
  color:var(--primary-color)
}
figure {
  margin:0
}
img {
  max-width:100%
}
a {
  text-decoration:none
}
a:hover {
  text-decoration:none;
  outline:0
}
a:focus {
  text-decoration:none;
  outline:0
}
body,
html {
  width:100%;
  overflow-x:clip
}
.container {
  max-width:1300px
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  position:relative;
  padding-right:15px;
  padding-left:15px;
  z-index:1
}
.image-anime,
figure.wp-block-image {
  position:relative;
  overflow:hidden
}
.image-anime:after,
figure.wp-block-image:after {
  content:"";
  position:absolute;
  width:200%;
  height:0%;
  left:50%;
  top:50%;
  background-color:rgba(255,255,255,.3);
  transform:translate(-50%,-50%) rotate(-45deg);
  z-index:1
}
.image-anime:hover:after,
figure.wp-block-image:hover:after {
  height:250%;
  transition:all .6s linear;
  background-color:transparent
}
.reveal {
  position:relative;
  display:-webkit-inline-box;
  display:-ms-inline-flexbox;
  display:inline-flex;
  visibility:hidden;
  overflow:hidden
}
.reveal img {
  height:100%;
  width:100%;
  -o-object-fit:cover;
  object-fit:cover;
  -webkit-transform-origin:left;
  transform-origin:left
}
.row {
  margin-right:-15px;
  margin-left:-15px
}
.row>* {
  padding-right:15px;
  padding-left:15px
}
.row.no-gutters {
  margin-right:0;
  margin-left:0
}
.row.no-gutters>* {
  padding-right:0;
  padding-left:0
}
.btn-default {
  position:relative;
  display:inline-block;
  background:var(--accent-secondary-color);
  border-radius:10px;
  font-size:16px;
  font-weight:700;
  line-height:1em;
  text-transform:capitalize;
  color:var(--white-color);
  border:none;
  padding:17px 50px 17px 20px;
  transition:all .5s ease-in-out;
  overflow:hidden;
  z-index:0
}
.btn-default:hover {
  background:0 0;
  color:var(--white-color)
}
.btn-default::before {
  content:'';
  position:absolute;
  top:50%;
  right:0;
  width:20px;
  height:20px;
  background-image:url('../images/arrow-white.svg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  transform:translate(-20px,-50%);
  transition:all .4s ease-in-out
}
.btn-default:hover::before {
  transform:translate(-17px,-50%)
}
.btn-default::after {
  content:'';
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  left:-15%;
  right:0;
  width:0;
  height:106%;
  background:var(--primary-color);
  transform:skew(45deg);
  transition:all .4s ease-in-out;
  z-index:-1
}
.btn-default:hover:after {
  width:100%;
  transform:skew(0);
  left:0
}
.btn-default.btn-highlighted:hover {
  color:var(--primary-color)
}
.btn-default.btn-highlighted:hover::before {
  filter:brightness(1) invert(1)
}
.btn-default.btn-highlighted::after {
  background:var(--white-color)
}
.readmore-btn {
  position:relative;
  display:inline-block;
  font-size:16px;
  font-weight:700;
  line-height:normal;
  text-transform:capitalize;
  color:var(--accent-secondary-color);
  padding-right:30px;
  transition:all .4s ease-in-out
}
.readmore-btn:hover {
  color:var(--primary-color)
}
.readmore-btn::before {
  content:'';
  position:absolute;
  right:0;
  top:1px;
  transform:translateX(-3px);
  background:url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position:center center;
  background-size:cover;
  width:20px;
  height:20px;
  transition:all .4s ease-in-out
}
.btn-bordered {
  position:relative;
  display:inline-block;
  border-radius:10px;
  font-size:16px;
  font-weight:700;
  line-height:1em;
  text-transform:capitalize;
  color:var(--primary-color);
  border:none;
  padding:17px 50px 17px 20px;
  transition:all .5s ease-in-out;
  overflow:hidden;
  z-index:0;
  border:1px solid var(--primary-color)
}
.btn-bordered:hover {
  background:0 0;
  color:var(--white-color);
  border:1px solid var(--white-color)
}
.btn-bordered::before {
  content:'';
  position:absolute;
  top:50%;
  right:0;
  width:20px;
  height:20px;
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  transform:translate(-20px,-50%);
  transition:all .4s ease-in-out
}
.btn-bordered:hover::before {
  transform:translate(-17px,-50%);
  background-image:url('../images/arrow-white.svg')
}
.btn-bordered::after {
  content:'';
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  left:-15%;
  right:0;
  width:0;
  height:106%;
  background:var(--primary-color);
  transform:skew(45deg);
  transition:all .4s ease-in-out;
  z-index:-1
}
.btn-bordered:hover:after {
  width:100%;
  transform:skew(0);
  left:0
}
.btn-white {
  position:relative;
  display:inline-block;
  background:var(--white-color);
  border-radius:10px;
  font-size:16px;
  font-weight:700;
  line-height:1em;
  text-transform:capitalize;
  color:var(--primary-color);
  border:none;
  padding:17px 50px 17px 20px;
  transition:all .5s ease-in-out;
  overflow:hidden;
  z-index:0
}
.btn-white::before {
  content:'';
  position:absolute;
  top:50%;
  right:0;
  width:20px;
  height:20px;
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  transform:translate(-20px,-50%);
  transition:all .4s ease-in-out
}
.readmore-btn:hover::before {
  filter:brightness(0) invert(0);
  transform:translateX(0)
}
.cb-cursor:before {
  background:var(--accent-secondary-color)
}
.preloader {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:1000;
  background:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:center
}
.loading,
.loading-container {
  height:100px;
  position:relative;
  width:100px;
  border-radius:100%
}
.loading-container {
  margin:40px auto
}
.loading {
  border:1px solid transparent;
  border-color:transparent var(--accent-color) transparent var(--accent-color);
  animation:rotate-loading 1.5s linear 0s infinite normal;
  transform-origin:50% 50%
}
.loading-container .loading,
.loading-container:hover .loading {
  transition:all .5s ease-in-out
}
#loading-icon {
  position:absolute;
  top:50%;
  left:50%;
  max-width:66px;
  transform:translate(-50%,-50%)
}
@keyframes rotate-loading {
  0% {
    transform:rotate(0)
  }
  100% {
    transform:rotate(360deg)
  }
}
.section-row {
  margin-bottom:80px
}
.section-row .section-title {
  margin-bottom:0
}
.section-title {
  margin-bottom:40px;
  margin-top:30px
}
.section-title h3 {
  display:inline-block;
  position:relative;
  font-family:var(--default-font);
  font-size:16px;
  font-weight:500;
  line-height:1.5em;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--primary-color);
  background:url('../images/icon-sub-heading.svg') no-repeat;
  background-position:left center;
  background-size:24px auto;
  padding-left:34px;
  margin-bottom:15px
}
.section-title h1 {
  font-size:75px;
  font-weight:700;
  margin-bottom:0;
  cursor:none
}
.hero .section-title h1 {
  font-size:75px;
  font-weight:600;
  margin-bottom:0;
  cursor:none;
  line-height:1.2
}
.section-title h2 {
  font-size:36px;
  font-weight:400;
  margin-bottom:0;
  cursor:none
}
.section-title p {
  margin-top:20px;
  margin-bottom:0
}
.hero .section-title p {
  margin-top:40px;
  margin-bottom:0;
  font-size:32px;
  font-weight:300
}
.section-title-content p {
  margin:0
}
.section-btn {
  text-align:right
}
.section-content-btn .section-btn {
  text-align:left;
  margin-top:30px
}
.dark-section {
  background:var(--primary-color)
}
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title h3,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color:var(--white-color)
}
.help-block.with-errors ul {
  margin:0;
  text-align:left
}
.help-block.with-errors ul li {
  color:var(--error-color);
  font-weight:500;
  font-size:14px
}
header.main-header {
  position:relative;
  top:0;
  width:100%;
  min-height:121px;
  border-bottom:1px solid var(--dark-divider-color);
  z-index:100;
  background:#fff
}
header.main-header .header-sticky {
  position:relative;
  top:0;
  z-index:100;
  background:#fff
}
header.main-header .header-sticky.hide {
  transform:translateY(-100%);
  transition:transform .3s ease-in-out;
  border-radius:0
}
header.main-header .header-sticky.active {
  position:fixed;
  top:0;
  left:0;
  right:0;
  border-radius:0;
  transform:translateY(0);
  background:var(--primary-color);
  border-bottom:1px solid var(--dark-divider-color)
}
header .top-bar {
  display:flex;
  flex-wrap:nowrap;
  justify-content:flex-end;
  align-items:center;
  gap:6px 8px;
  padding:8px 12px;
  min-width:0;
  width:100%;
  box-sizing:border-box
}
header .top-bar .top-nav {
  list-style:none;
  padding:0;
  margin-right:8px;
  border-right:1px solid #f1f1f1;
  padding-right:8px;
  margin-bottom:0;
  display:flex;
  min-width:0;
  flex-shrink:1
}
header .top-bar .top-nav .icon-item {
  display:flex;
  align-items:center;
  background:#fff;
  box-shadow:0 0 10px 3px rgba(0,0,0,.05);
  padding:5px 10px;
  font-size:14px;
  border-radius:5px;
  color:var(--primary-color);
  min-width:0;
  max-width:100%
}
header .top-bar .top-nav .icon-item span {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
header .top-bar .top-nav .icon-item img {
  height:20px;
  margin-right:5px
}
header .top-bar .top-nav .icon-item a {
  font-size:16px
}
header .top-bar .top-social {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:nowrap;
  justify-content:flex-end;
  align-items:center;
  gap:5px;
  max-width:100%;
  flex-shrink:0
}
header .top-bar .top-social .social-item {
  display:flex;
  align-items:center;
  background:#fff;
  box-shadow:0 0 10px 3px rgba(0,0,0,.05);
  padding:4px;
  font-size:14px;
  border-radius:5px;
  color:var(--primary-color);
  flex-shrink:0
}
header .top-bar .top-social .social-item svg {
  height:18px;
  width:auto;
  display:block;
  color:var(--primary-color)
}
header .top-bar .top-social .social-item a {
  font-size:16px
}
header .top-bar .top-bar-divider {
  flex-shrink:0;
  align-self:center;
  width:1px;
  height:22px;
  margin:0 4px 0 10px;
  background:#f1f1f1
}
header .top-bar .tiens-top-bar-lang {
  flex-shrink:0;
  display:flex;
  align-items:center
}
header .top-bar .tiens-top-bar-lang select {
  appearance:auto;
  max-width:min(160px,32vw);
  margin:0;
  padding:5px 28px 5px 10px;
  font-size:14px;
  line-height:1.3;
  color:var(--primary-color);
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:5px;
  box-shadow:0 0 10px 3px rgba(0,0,0,.05);
  cursor:pointer
}
header .top-bar .tiens-top-bar-lang select:focus {
  outline:2px solid var(--primary-color);
  outline-offset:1px
}
.navbar {
  padding:10px 0;
  align-items:center;
  box-shadow:0 0 20px 5px rgba(0,0,0,.05)
}
.navbar-brand {
  padding:0;
  margin:0
}
.main-menu .nav-menu-wrapper {
  flex:1;
  text-align:center;
  margin:0 20px
}
.main-menu .nav-menu-wrapper>ul {
  align-items:center;
  display:inline-flex
}
.main-menu ul li {
  margin:0;
  position:relative
}
.main-menu ul li a {
  font-size:16px;
  font-weight:400;
  line-height:1.2em;
  padding:15px 20px!important;
  color:#242424;
  text-transform:capitalize;
  transition:all .3s ease-in-out
}
.main-menu ul li.submenu>a:after {
  content:'\f107';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  font-size:14px;
  margin-left:8px
}
.main-menu ul li a:focus,
.main-menu ul li a:hover {
  color:var(--accent-secondary-color)
}
.main-menu ul ul {
  visibility:hidden;
  opacity:0;
  transform:scaleY(.8);
  transform-origin:top;
  padding:0;
  margin:0;
  list-style:none;
  width:235px;
  border-radius:20px;
  position:absolute;
  left:0;
  top:100%;
  background:var(--white-color);
  transition:all .3s ease-in-out;
  text-align:left;
  box-shadow:1px 1px 20px 5px rgba(0,0,0,.05)
}
.main-menu ul li.submenu:first-child ul {
  width:235px
}
.main-menu ul ul ul {
  left:100%;
  top:0;
  text-align:left
}
.main-menu ul li:hover>ul {
  visibility:visible;
  opacity:1;
  transform:scaleY(1);
  padding:15px 0
}
.main-menu ul li.submenu ul li.submenu>a:after {
  content:'\f105';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  float:right
}
.main-menu ul ul li {
  margin:0;
  padding:0
}
.main-menu ul ul li a {
  color:var(--primary-color);
  padding:10px 20px!important;
  transition:all .3s ease-in-out
}
.main-menu ul ul li a:focus,
.main-menu ul ul li a:hover {
  color:var(--accent-color);
  background-color:transparent
}
.main-menu ul li.highlighted-menu {
  display:none
}
.navbar-toggle,
.responsive-menu {
  display:none
}
.responsive-menu {
  top:0;
  position:relative
}
.slicknav_btn {
  background:var(--accent-color);
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin:0;
  border-radius:8px
}
.slicknav_icon .slicknav_icon-bar {
  display:block;
  width:100%;
  height:3px;
  width:22px;
  background-color:var(--primary-color);
  border-radius:6px;
  margin:4px auto!important;
  transition:all .1s ease-in-out
}
.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top:0!important
}
.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom:0!important
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:first-child {
  transform:rotate(-45deg) translate(-5px,5px);
  background-color:var(--primary-color)
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity:0
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform:rotate(45deg) translate(-5px,-5px);
  background-color:var(--primary-color)
}
.slicknav_menu {
  position:absolute;
  width:100%;
  padding:0;
  background:var(--accent-color)
}
.slicknav_menu ul {
  margin:5px 0
}
.slicknav_menu ul ul {
  margin:0
}
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position:relative;
  font-size:16px;
  font-weight:600;
  text-transform:capitalize;
  padding:8px 20px;
  color:var(--white-color);
  line-height:normal;
  margin:0;
  border-radius:0!important;
  transition:all .3s ease-in-out
}
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:focus,
.slicknav_nav a:hover {
  background-color:transparent;
  color:var(--primary-color)
}
.slicknav_menu ul ul li a {
  padding:8px 20px 8px 30px
}
.slicknav_arrow {
  font-size:0!important
}
.slicknav_arrow:after {
  content:'\f107';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  font-size:12px;
  margin-left:8px;
  color:var(--white-color);
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  transition:all .3s ease-out
}
.slicknav_open>a .slicknav_arrow:after {
  transform:translateY(-50%) rotate(-180deg);
  color:var(--primary-color)
}
.hero {
  position:relative;
  background:url('../images/hero-bg.jpg') no-repeat;
  background-position:center center;
  background-size:cover;
  height:calc(100vh - 90px);
  align-content:center
}
.hero.hero-video .hero-bg-video {
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  width:100%;
  height:100%
}
.hero.hero-video .hero-bg-video video {
  width:100%;
  height:100%;
  object-fit:cover
}
.hero.hero-slider-layout {
  background:0 0;
  padding:0;
  position:relative;
  z-index:0
}
.hero.hero-slider-layout .hero-slide {
  position:relative;
  padding:260px 0 150px
}
.hero.hero-slider-layout .hero-slide::before {
  content:'';
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(360deg,rgba(3,34,27,0) 74.01%,rgba(3,34,27,.9) 100%),linear-gradient(270deg,rgba(3,34,27,0) 25.1%,rgba(3,34,27,.516) 41.43%,rgba(3,34,27,.86) 58.93%);
  width:100%;
  height:100%;
  z-index:1
}
.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0
}
.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width:100%;
  height:100%;
  object-fit:cover
}
.hero.hero-slider-layout .hero-pagination {
  position:absolute;
  bottom:50px;
  text-align:left;
  padding-left:calc(((100vw - 1300px)/ 2) + 15px);
  z-index:2
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width:12px;
  height:12px;
  background:var(--dark-divider-color);
  opacity:1;
  transition:all .3s ease-in-out;
  margin:0 5px
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color:var(--accent-color)
}
.hero-body {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px 40px
}
.hero-review-box {
  display:flex;
  align-items:center;
  gap:20px
}
.hero-review-images {
  display:flex;
  align-items:center
}
.hero-review-image {
  display:inline-block;
  margin-left:-12px
}
.hero-review-image:first-child {
  margin:0
}
.hero-review-image figure {
  display:block;
  width:60px;
  height:60px;
  border-radius:50%
}
.hero-review-image img {
  width:100%;
  border-radius:50%
}
.hero-review-content h3 {
  font-size:20px;
  color:var(--white-color);
  margin-bottom:5px
}
.hero-review-content p {
  color:var(--white-color);
  opacity:80%;
  text-transform:capitalize;
  margin:0
}
.our-scrolling-ticker {
  background:var(--accent-color);
  padding:20px 0
}
.scrolling-ticker-box {
  --gap:20px;
  position:relative;
  display:flex;
  overflow:hidden;
  user-select:none;
  gap:var(--gap);
  align-items:center
}
.scrolling-content {
  flex-shrink:0;
  display:flex;
  gap:var(--gap);
  min-width:100%;
  animation:scroll 60s linear infinite
}
@keyframes scroll {
  from {
    transform:translateX(0)
  }
  to {
    transform:translateX(calc(-100% - var(--gap)))
  }
}
.scrolling-content span {
  font-family:var(--accent-font);
  display:flex;
  align-items:center;
  font-size:50px;
  font-weight:100;
  letter-spacing:.04em;
  text-transform:uppercase;
  line-height:1em;
  color:var(--white-color)
}
.scrolling-content span img {
  width:26px;
  margin-right:20px
}
.about-us {
  background:url('../images/section-bg-1.png') no-repeat;
  background-position:bottom -70px right -200px;
  background-size:auto;
  padding:120px 0
}
.about-images {
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.about-img-1,
.about-img-2 {
  width:calc(50% - 15px)
}
.about-img-1 figure,
.about-img-2 figure {
  display:block;
  border-radius:30px
}
.about-img-1 img,
.about-img-2 img {
  width:100%;
  aspect-ratio:1/1.9;
  object-fit:cover
}
.about-img-2 {
  margin-top:70px
}
.years-experience-box {
  position:absolute;
  top:50%;
  left:50%;
  width:130px;
  height:130px;
  align-content:center;
  text-align:center;
  background:var(--accent-color);
  border:10px solid var(--white-color);
  border-radius:50%;
  transform:translate(-50%,-50%)
}
.years-experience-box::before {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:var(--primary-color);
  border-radius:50%;
  height:100%;
  width:100%;
  transform:scale(0);
  transition:all .4s ease-in-out;
  z-index:0
}
.about-images:hover .years-experience-box::before {
  transform:scale(1)
}
.years-experience-box h2,
.years-experience-box p {
  position:relative;
  z-index:1
}
.years-experience-box h2 {
  font-size:36px;
  font-weight:700;
  color:var(--white-color);
  margin-bottom:2px
}
.years-experience-box p {
  line-height:normal;
  color:var(--white-color);
  margin-bottom:0;
  font-size:14px
}
.about-us-content {
  margin-left:20px
}
.about-us-body {
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.about-body-item {
  width:calc(50% - 15px);
  display:flex;
  align-items:center;
  background:#fff;
  border:1px solid var(--divider-color);
  border-radius:20px;
  padding:10px
}
.about-body-item>img {
  width:80px;
  height:80px;
  border-radius:10px;
  margin-right:10px
}
.about-body-item .icon-box {
  position:relative;
  width:60px;
  height:60px;
  background:var(--accent-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:10px
}
.about-body-item .icon-box::before {
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  right:0;
  left:0;
  background:var(--primary-color);
  border-radius:50%;
  width:100%;
  height:100%;
  transform:scale(0);
  transition:all .4s ease-in-out
}
.about-body-item:hover .icon-box::before {
  transform:scale(1)
}
.about-body-item .icon-box img {
  position:relative;
  width:100%;
  max-width:36px;
  z-index:1
}
.about-body-item-title {
  position:relative;
  width:calc(100% - 70px);
  z-index:1
}
.about-body-item-title h3 {
  font-size:22px;
  text-transform:capitalize;
  line-height:1.3em
}
.about-us-footer {
  margin-top:40px
}
.about-us-footer {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px 50px;
  margin-top:40px
}
.about-author-box {
  display:flex;
  align-items:center
}
.about-author-box .author-image {
  display:block;
  border-radius:50%
}
.about-author-box .author-image figure {
  display:block;
  border-radius:50%
}
.about-author-box .author-image img {
  width:100%;
  max-width:60px;
  border-radius:50%
}
.about-author-box .author-info h3 {
  font-size:22px;
  margin-bottom:5px
}
.about-author-box .author-info p {
  margin-bottom:0
}
.our-services {
  background:var(--secondary-color) url('../images/section-bg-2.png') no-repeat;
  background-position:bottom -40px left -60px;
  background-size:auto;
  padding:100px 0
}
.service-item {
  position:relative;
  background-color:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:20px;
  padding:30px;
  overflow:hidden
}
.service-item::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:var(--accent-color);
  border-radius:500px 500px 0 0;
  height:0;
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0
}
.service-item.active::before,
.service-item:hover::before {
  height:100%;
  border-radius:0
}
.service-item .icon-box {
  position:relative;
  height:70px;
  width:70px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent-color);
  border-radius:50%;
  margin-bottom:60px;
  transition:all .5s ease-in-out;
  z-index:1
}
.service-item.active .icon-box,
.service-item:hover .icon-box {
  background-color:var(--secondary-color)
}
.service-item .icon-box img {
  width:100%;
  max-width:40px;
  transition:all .5s ease-in-out
}
.service-item.active .icon-box img,
.service-item:hover .icon-box img {
  filter:brightness(0) invert(0)
}
.service-item-content {
  position:relative;
  border-bottom:1px solid var(--divider-color);
  margin-bottom:30px;
  padding-bottom:30px;
  transition:all .3s ease-in-out;
  z-index:1
}
.service-item.active .service-item-content,
.service-item:hover .service-item-content {
  border-bottom-color:var(--dark-divider-color)
}
.service-item-content h3 {
  font-size:22px;
  margin-bottom:10px;
  transition:all .3s ease-in-out
}
.service-item-content h3 a {
  color:inherit
}
.service-item-content p {
  margin-bottom:0;
  transition:all .3s ease-in-out
}
.service-readmore-btn {
  position:relative;
  z-index:1
}
.service-item.active .service-item-content h3,
.service-item.active .service-item-content p,
.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-item-content h3,
.service-item:hover .service-item-content p,
.service-item:hover .service-readmore-btn .readmore-btn {
  color:var(--white-color)
}
.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before {
  filter:brightness(0) invert(1)
}
.service-pagination {
  text-align:center;
  margin-top:50px
}
.service-pagination .swiper-pagination-bullet {
  height:8px;
  width:8px;
  background:var(--divider-color);
  opacity:1;
  margin:0 2px;
  border-radius:100px;
  transition:all .3s ease-in-out
}
.service-pagination .swiper-pagination-bullet-active {
  width:24px;
  background-color:var(--accent-secondary-color)
}
.why-choose-us {
  padding:120px 0
}
.why-choose-list {
  background:var(--secondary-color);
  border-radius:20px;
  padding:30px
}
.why-choose-list ul {
  list-style:none;
  margin:0;
  padding:0
}
.why-choose-list ul li {
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  line-height:1.5em;
  padding-left:30px;
  margin-bottom:30px;
  position:relative
}
.why-choose-list ul li a span {
  position:absolute;
  right:0;
  top:-20px;
  color:var(--primary-color);
  font-size:10px;
  text-decoration:underline
}
.why-choose-list ul li:last-child {
  margin-bottom:0
}
.why-choose-btn {
  margin-top:40px
}
.why-choose-images {
  display:flex;
  flex-wrap:wrap;
  align-items:start;
  gap:30px;
  margin-left:15px
}
.why-choose-image-box-1 {
  width:calc(48% - 15px);
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.why-choose-image-box-2 {
  width:calc(52% - 15px);
  margin-top:100px
}
.why-choose-image {
  width:100%
}
.why-choose-image figure {
  display:block;
  border-radius:20px
}
.why-choose-image img {
  width:100%;
  object-fit:cover;
  border-radius:20px
}
.why-choose-image.why-img-1 {
  aspect-ratio:1/1.065
}
.why-choose-image.why-img-2 img {
  aspect-ratio:1/0.78
}
.why-choose-image.why-img-3 img {
  aspect-ratio:1/1.692
}
.our-projects {
  padding:100px 0
}
.project-item {
  position:relative;
  height:calc(100% - 30px);
  margin-bottom:30px
}
.project-image {
  border-radius:20px;
  overflow:hidden
}
.project-image a,
.project-image figure {
  display:block;
  cursor:none
}
.project-image figure::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  background:linear-gradient(180deg,rgba(3,34,27,0) 45.62%,rgba(3,34,27,.8) 76.07%);
  width:100%;
  height:100%;
  transition:all .3s ease-in-out;
  z-index:1
}
.project-image img {
  width:100%;
  aspect-ratio:1/1.24;
  object-fit:cover;
  transition:all .4s ease-in-out
}
.project-item:hover .project-image img {
  transform:scale(1.1)
}
.project-body {
  position:absolute;
  left:30px;
  bottom:30px;
  right:30px;
  transform:translateY(20px);
  transition:all .4s ease-in-out;
  z-index:1
}
.project-item:hover .project-body {
  transform:translateY(0)
}
.project-content h3 {
  font-size:22px;
  color:var(--white-color);
  margin-bottom:15px
}
.project-content h3 a {
  color:inherit
}
.project-body p {
  color:var(--white-color);
  opacity:80%;
  margin-bottom:0
}
.project-readmore-btn {
  opacity:0;
  visibility:hidden;
  transition:all .3s ease-in-out
}
.project-item:hover .project-readmore-btn {
  margin-top:20px;
  opacity:1;
  visibility:visible
}
.project-readmore-btn .readmore-btn:hover {
  color:var(--white-color)
}
.project-readmore-btn .readmore-btn:hover::before {
  filter:brightness(0) invert(1)
}
.section-footer-text {
  margin-top:30px;
  text-align:center
}
.section-footer-text p {
  margin-bottom:0
}
.dark-section .section-footer-text p {
  color:var(--white-color)
}
.section-footer-text span {
  font-family:var(--accent-font);
  font-weight:600;
  background:var(--accent-secondary-color);
  padding:3px 10px;
  border-radius:100px;
  margin-right:10px
}
.section-footer-text p a {
  font-weight:700;
  text-transform:capitalize;
  text-decoration:underline;
  text-underline-offset:3px;
  color:var(--accent-secondary-color);
  transition:all .3s ease-in-out
}
.section-footer-text p a:hover {
  color:var(--accent-color)
}
.our-environment {
  padding:100px 0
}
.our-environment-images {
  display:flex;
  align-items:center;
  margin-right:10px
}
.environment-img-1,
.environment-img-2 {
  width:100%;
  border-radius:20px
}
.environment-img-1 figure,
.environment-img-2 figure {
  display:block;
  border-radius:20px
}
.environment-img-1 figure img,
.environment-img-2 figure img {
  width:100%;
  object-fit:cover;
  border-radius:20px
}
.environment-img-1 figure img {
  aspect-ratio:1/1.399
}
.environment-img-2 {
  width:100%;
  max-width:310px;
  margin-left:-111px
}
.environment-img-2 figure {
  border:4px solid var(--white-color);
  border-radius:24px
}
.environment-img-2 figure img {
  aspect-ratio:1/1.2
}
.experience-circle {
  position:relative;
  display:inline-block;
  border:4px solid var(--white-color);
  border-radius:50%;
  margin-left:40px;
  margin-top:-80px;
  z-index:1
}
.experience-circle img {
  width:100%;
  max-width:180px;
  border-radius:50%;
  animation:infiniterotate 20s infinite linear
}
@keyframes infiniterotate {
  from {
    transform:rotate(0)
  }
  to {
    transform:rotate(360deg)
  }
}
.environment-body-item {
  display:flex;
  flex-wrap:wrap;
  border-bottom:1px solid var(--divider-color);
  margin-bottom:40px;
  padding-bottom:40px
}
.environment-body-item:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.environment-body-item .icon-box {
  position:relative;
  height:50px;
  width:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent-color);
  border-radius:50%;
  margin-right:20px
}
.environment-body-item .icon-box:before {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:var(--primary-color);
  border-radius:50%;
  height:100%;
  width:100%;
  transform:scale(0);
  transition:all .4s ease-in-out;
  z-index:0
}
.environment-body-item:hover .icon-box::before {
  transform:scale(1)
}
.environment-body-item .icon-box img {
  position:relative;
  width:100%;
  max-width:30px;
  z-index:1
}
.environment-body-item-content {
  width:calc(100% - 70px)
}
.environment-body-item-content h3 {
  font-size:22px;
  text-transform:capitalize;
  margin-bottom:10px
}
.environment-body-item-content p {
  margin-bottom:0
}
.our-facts {
  position:relative;
  background-image:url('../images/fact-bg.jpg');
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  margin:120px 0 0 0
}
.our-facts::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(270deg,rgba(3,34,27,0) -31.52%,rgba(3,34,27,.96) 45.81%);
  width:100%;
  height:100%;
  z-index:0
}
.our-facts .container {
  position:relative;
  z-index:1
}
.our-fact-content {
  height:calc(100% - 100px);
  align-content:center;
  margin:50px 0
}
.fact-list ul {
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px;
  list-style:none;
  margin:0;
  padding:0
}
.fact-list ul li {
  width:calc(50% - 15px);
  line-height:1.5em;
  color:var(--white-color);
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  padding-left:30px
}
.fact-counter-list {
  display:flex;
  flex-wrap:wrap;
  gap:30px 60px;
  border-top:1px solid var(--dark-divider-color);
  margin-top:50px;
  padding-top:50px
}
.fact-counter-item {
  position:relative;
  width:calc(50% - 45px)
}
.fact-counter-item:after {
  content:'';
  position:absolute;
  top:0;
  right:-30px;
  bottom:0;
  background:var(--dark-divider-color);
  width:1px;
  height:100%
}
.fact-counter-item:nth-child(2n):after {
  display:none
}
.fact-counter-item:nth-child(2n) {
  padding-left:45px
}
.fact-counter-item img {
  width:100%;
  max-width:50px;
  margin-bottom:20px
}
.fact-counter-item h2 {
  font-size:46px;
  color:var(--accent-color);
  margin-bottom:10px
}
.fact-counter-item p {
  color:var(--white-color);
  opacity:80%;
  margin-bottom:0
}
.our-fact-image {
  padding-left:15px;
  text-align:center;
  display:flex;
  align-items:end;
  height:100%;
  justify-content:end
}
.our-fact-image figure {
  display:block;
  height:100%
}
.our-fact-image img {
  height:90%;
  object-fit:cover;
  position:absolute;
  right:-15%;
  bottom:0
}
.what-we-do {
  padding:100px 0
}
.What-we-do-content {
  position:sticky;
  top:20px;
  margin-right:20px
}
.what-we-do-list ul {
  list-style:none;
  margin:0;
  padding:0
}
.what-we-do-list ul li {
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  line-height:1.5em;
  padding-left:30px;
  margin-bottom:20px
}
.what-we-do-list ul li:last-child {
  margin-bottom:0
}
.what-we-do-btn {
  margin-top:40px
}
.what-do-item-list {
  display:flex;
  gap:30px;
  flex-wrap:wrap
}
.what-we-do-item {
  position:relative;
  width:100%;
  border:1px solid var(--divider-color);
  border-radius:20px;
  padding:30px;
  overflow:hidden;
  align-content:end;
  aspect-ratio:2/1
}
.what-we-do-item a>img {
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
  bottom:0;
  right:0
}
.what-we-do-item .icon-box {
  position:relative;
  margin-bottom:40px;
  z-index:1
}
.what-we-do-item .icon-box img {
  width:100%;
  max-width:60px;
  transition:all .4s ease-in-out
}
.what-we-do-container {
  position:relative;
  width:100%;
  padding:30px;
  overflow:hidden;
  align-content:end
}
.what-do-item-content {
  margin-top:30px
}
.what-do-item-content h5 {
  color:var(--primary-color);
  margin-bottom:10px;
  font-size:20px;
  font-weight:600;
  margin-top:30px
}
.what-do-item-content p {
  position:relative;
  z-index:1;
  margin-bottom:0;
  transition:all .4s ease-in-out;
  color:#525252
}
.what-we-do-box .section-footer-text {
  margin-top:40px
}
.how-it-work {
  background:url('../images/section-bg-3.png'),var(--secondary-color);
  background-repeat:no-repeat;
  background-position:bottom left;
  background-size:100% auto;
  padding:100px 0 0;
  margin-bottom:220px
}
.work-step-item-list {
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.work-step-item {
  width:calc(25% - 22.5px);
  text-align:center
}
.work-step-image {
  margin-bottom:20px
}
.work-step-image figure {
  display:block;
  border-radius:20px
}
.work-step-image img {
  width:100%;
  aspect-ratio:1/0.746;
  object-fit:cover;
  border-radius:20px;
  transition:all .4s ease-in-out
}
.work-step-item:hover .work-step-image img {
  transform:scale(1.1)
}
.work-step-content {
  position:relative;
  padding-top:30px
}
.work-step-content h2 {
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  font-size:90px;
  font-weight:700;
  line-height:.9em;
  color:var(--secondary-color);
  background:var(--divider-color);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-stroke:2px transparent;
  transition:all .4s ease-in-out
}
.work-step-item:hover .work-step-content h2 {
  color:transparent
}
.work-step-content h3,
.work-step-content p {
  position:relative;
  z-index:1
}
.work-step-content h3 {
  font-size:22px;
  margin-bottom:15px
}
.work-step-content p {
  margin-bottom:0
}
.donate-box {
  display:flex;
  gap:30px 60px;
  flex-wrap:wrap;
  border-radius:20px;
  padding:80px;
  margin-top:80px;
  margin-bottom:-220px
}
.donate-box .section-title {
  width:calc(40% - 30px);
  margin-bottom:0
}
.donate-form {
  width:calc(60% - 30px)
}
.donate-form .form-control {
  font-size:16px;
  line-height:1.5em;
  font-weight:700;
  background-color:transparent;
  color:var(--white-color);
  border:1px solid var(--dark-divider-color);
  border-radius:10px;
  box-shadow:none;
  outline:0;
  padding:17px 20px
}
.donate-form .form-control::placeholder {
  color:var(--white-color)
}
.donate-value-box {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px
}
.donate-form .donate-value {
  width:calc(33.33% - 6.66px)
}
.donate-value-box .donate-value input {
  position:absolute;
  left:-9999px
}
.donate-value-box .donate-value label {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  line-height:1.5em;
  background-color:transparent;
  border:1px solid var(--dark-divider-color);
  color:var(--white-color);
  border-radius:10px;
  padding:17px;
  transition:all .3s ease-in-out;
  cursor:pointer;
  overflow:hidden
}
.donate-value-box .donate-value input[type=radio]:checked+label,
.donate-value-box .donate-value input[type=radio]:focus+label,
.donate-value-box .donate-value input[type=radio]:hover+label {
  background:var(--accent-secondary-color);
  border-color:var(--accent-secondary-color);
  color:var(--white-color)
}
.donate-form .form-group-btn .btn-default.btn-highlighted {
  width:100%;
  display:block;
  text-align:center;
  padding:18px
}
.donate-form .form-group-btn .btn-default.btn-highlighted::before {
  display:none
}
.our-faqs {
  padding:100px 0
}
.faq-image {
  position:relative;
  overflow:hidden;
  border-radius:20px
}
.faq-image figure {
  display:block
}
.faq-image figure::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(180deg,rgba(3,34,27,0) 52.02%,rgba(3,34,27,.8) 100%);
  width:100%;
  height:100%;
  z-index:1
}
.faq-image img {
  width:100%;
  aspect-ratio:1/0.807;
  object-fit:cover
}
.client-review-content {
  position:absolute;
  text-align:center;
  bottom:25px;
  right:25px;
  left:25px;
  z-index:1
}
.client-review-content p {
  font-size:20px;
  color:var(--white-color);
  font-weight:600;
  margin-bottom:10px
}
.client-review-content ul {
  list-style:none;
  margin:0;
  padding:0
}
.client-review-content ul li {
  display:inline-block
}
.client-review-content ul li i {
  color:var(--accent-secondary-color)
}
.faq-accordion .accordion-item {
  position:relative;
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:10px;
  margin-bottom:30px;
  padding:0;
  transition:all .3s ease-in-out;
  overflow:hidden
}
.faq-accordion .accordion-item:last-child {
  margin-bottom:0
}
.faq-accordion .accordion-header .accordion-button {
  font-size:20px;
  font-weight:500;
  line-height:1.1em;
  background:0 0;
  padding:18px 50px 18px 20px;
  color:var(--primary-color);
  transition:all .3s ease-in-out
}
.faq-accordion .accordion-header .accordion-button.collapsed {
  color:var(--primary-color);
  background:0 0
}
.faq-accordion .accordion-item .accordion-button.collapsed::after,
.faq-accordion .accordion-item .accordion-button::after {
  content:'\f054';
  font-family:"Font Awesome 6 Free";
  position:absolute;
  right:20px;
  top:50%;
  bottom:auto;
  transform:translateY(-50%) rotate(90deg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  width:20px;
  height:20px;
  color:var(--white-color);
  background-color:var(--accent-secondary-color);
  border-radius:5px;
  transition:all .3s ease-in-out
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  transform:translateY(-50%) rotate(0)
}
.faq-accordion .accordion-item .accordion-body {
  background:0 0;
  border-top:1px solid var(--divider-color);
  padding:18px 50px 18px 20px
}
.faq-accordion .accordion-item .accordion-body p {
  margin:0
}
.our-testimonials {
  background-image:url('../images/testimonials-bg.png');
  background-repeat:no-repeat;
  background-size:cover;
  padding:120px 0
}
.our-testimonials .section-title {
  margin-top:30px
}
.testimonials-btn {
  display:flex;
  justify-content:end;
  margin-top:60px
}
.review-box {
  display:flex;
  align-items:center;
  justify-content:end
}
.review-image {
  border-right:1px solid var(--dark-divider-color);
  margin-right:25px;
  padding-right:25px
}
.review-image img {
  width:50px
}
.review-content ul {
  list-style:none;
  margin-bottom:10px;
  padding:0
}
.review-content ul li {
  display:inline-block
}
.review-content ul li i {
  color:var(--accent-secondary-color)
}
.review-content p {
  color:var(--white-color);
  margin-bottom:0
}
.testimonial-image figure {
  display:block;
  border-radius:20px
}
.testimonial-image img {
  width:100%;
  aspect-ratio:1/0.79;
  object-fit:cover;
  border-radius:20px
}
.testimonial-slider {
  position:relative;
  margin-left:20px
}
.testimonial-slider .swiper-wrapper {
  cursor:none
}
.testimonial-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:40px
}
.testimonial-company-logo img {
  width:100%;
  max-width:175px
}
.testimonial-quote img {
  width:100%;
  max-width:40px
}
.testimonial-content {
  border-bottom:1px solid var(--dark-divider-color);
  margin-bottom:40px;
  padding-bottom:40px
}
.testimonial-content p {
  font-size:16px;
  font-weight:400;
  color:var(--white-color);
  margin:0
}
.testimonial-author {
  display:flex;
  align-items:center
}
.author-image {
  margin-right:15px
}
.author-image figure {
  display:block;
  border-radius:50%
}
.author-image img {
  width:100%;
  max-width:60px;
  border-radius:50%
}
.author-content h3 {
  font-size:22px;
  text-transform:capitalize;
  color:var(--white-color);
  margin-bottom:5px
}
.author-content p {
  color:var(--white-color);
  margin-bottom:0
}
.testimonial-pagination {
  position:absolute;
  right:0;
  display:flex;
  bottom:0;
  align-items:center;
  justify-content:right;
  z-index:2
}
.testimonial-pagination .swiper-pagination-bullet {
  height:8px;
  width:8px;
  background:var(--dark-divider-color);
  border-radius:100px;
  opacity:1;
  margin:0 3px;
  transition:all .4s ease-in-out
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background:var(--white-color);
  width:26px;
  border-radius:100px
}
.testimonial-company-slider {
  border-top:1px solid var(--dark-divider-color);
  margin-top:80px;
  padding-top:80px
}
.testimonial-company-slider .company-logo {
  text-align:center
}
.testimonial-company-slider .company-logo img {
  width:100%;
  max-width:175px;
  max-height:40px
}
.our-blog {
  padding:100px 0
}
.post-item {
  display:flex;
  flex-wrap:wrap;
  border:1px solid var(--divider-color);
  border-radius:20px;
  margin-bottom:30px;
  overflow:hidden
}
.post-item:last-child {
  margin-bottom:0
}
.post-featured-image {
  width:47%
}
.post-item-body {
  width:53%;
  align-content:center;
  padding:30px
}
.post-featured-image a {
  height:100%;
  display:block;
  overflow:hidden;
  cursor:none
}
.post-featured-image figure {
  height:100%
}
.post-featured-image img {
  height:100%;
  width:100%;
  aspect-ratio:1/0.861;
  object-fit:cover;
  transition:all .4s ease-in-out
}
.post-item:hover .post-featured-image img {
  transform:scale(1.1)
}
.post-item-content {
  margin-bottom:20px
}
.post-item-content h2 {
  color:var(--primary-color);
  font-size:22px;
  line-height:1.3em;
  margin-bottom:15px
}
.post-item-content h2 a {
  color:inherit
}
.post-item-content p:last-child {
  margin:0
}
.post-item.highlighted-post-item .post-featured-image,
.post-item.highlighted-post-item .post-item-body {
  width:100%
}
.post-item.highlighted-post-item .post-featured-image img {
  aspect-ratio:1/0.557
}
.main-footer {
  position:relative;
  background:url('../images/footer-bg.jpg') no-repeat;
  background-position:center center;
  background-size:cover;
  padding:100px 0 0
}
.main-footer:after {
  content:'';
  position:absolute;
  height:100%;
  width:100%;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background-color:var(--primary-color);
  opacity:97%
}
.main-footer-box {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  border-bottom:1px solid var(--dark-divider-color);
  margin-bottom:60px;
  padding-bottom:60px
}
.footer-logo {
  width:20%
}
.footer-logo img {
  width:100%;
  max-width:260px
}
.footer-contact-details {
  width:80%;
  display:flex;
  flex-wrap:wrap;
  justify-content:end;
  gap:20px 40px
}
.footer-contact-item {
  display:flex;
  align-items:center
}
.footer-contact-item .icon-box {
  position:relative;
  width:60px;
  height:60px;
  background-color:var(--accent-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:20px
}
.footer-contact-item .icon-box:before {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:var(--accent-secondary-color);
  border-radius:50%;
  height:100%;
  width:100%;
  transform:scale(0);
  transition:all .4s ease-in-out;
  z-index:0
}
.footer-contact-item:hover .icon-box::before {
  transform:scale(1)
}
.footer-contact-item .icon-box img {
  position:relative;
  width:100%;
  max-width:30px;
  z-index:1
}
.footer-contact-item-content {
  width:calc(100% - 80px)
}
.footer-contact-item-content h3 {
  color:var(--white-color);
  font-size:22px;
  text-transform:capitalize;
  margin-bottom:3px
}
.footer-contact-item-content p {
  color:var(--white-color);
  margin:0
}
.footer-contact-item-content p a {
  color:inherit;
  transition:all .3s ease-in-out
}
.footer-contact-item-content p a:hover {
  color:var(--accent-secondary-color)
}
.about-footer {
  padding-right:60px
}
.footer-links p {
  color:var(--white-color);
  margin:0
}
.footer-social-links {
  margin-top:40px
}
.footer-social-links ul {
  list-style:none;
  padding:0;
  margin:0
}
.footer-social-links ul li {
  display:inline-block;
  border-radius:50%;
  margin-right:10px
}
.footer-social-links ul li:last-child {
  margin-right:0
}
.footer-social-links ul li a {
  background:var(--white-color);
  border-radius:50%;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease-in-out
}
.footer-social-links ul li:hover a {
  background:var(--accent-color)
}
.footer-social-links ul li a i {
  color:var(--primary-color);
  font-size:18px
}
.footer-social-links ul li a.social-item svg {
  color:var(--primary-color);
  width:18px;
  height:18px;
  display:block
}
.footer-links h3 {
  color:var(--white-color);
  font-size:22px;
  text-transform:capitalize;
  margin-bottom:30px
}
.footer-links ul {
  list-style:none;
  padding:0;
  margin:0
}
.footer-links ul li {
  color:var(--white-color);
  line-height:normal;
  text-transform:capitalize;
  margin-bottom:15px;
  transition:all .3s ease-in-out
}
.footer-links ul li:last-child {
  margin-bottom:0
}
.footer-links ul li:hover {
  color:var(--accent-color)
}
.footer-links ul li a {
  color:inherit;
  display:inline-block
}
.newsletter-form {
  padding-left:50px
}
.newsletter-form p {
  margin-bottom:30px
}
.newsletter-form .form-group {
  display:flex
}
.newsletter-form .form-group .form-control {
  width:68%;
  font-size:16px;
  font-weight:500;
  line-height:1.4em;
  color:var(--white-color);
  background-color:transparent;
  border:1px solid var(--dark-divider-color);
  border-right:none;
  border-radius:10px 0 0 10px;
  outline:0;
  box-shadow:none;
  padding:12px 20px
}
.newsletter-form .form-group .form-control::placeholder {
  color:var(--text-color)
}
.newsletter-form .form-group .btn-default.btn-highlighted {
  width:32%;
  background-color:var(--accent-color);
  color:var(--primary-color);
  border-radius:0 10px 10px 0;
  padding:17px 12px;
  line-height:1em
}
.newsletter-form .form-group .btn-default::before {
  display:none
}
.footer-copyright {
  position:relative;
  border-top:1px solid var(--dark-divider-color);
  padding:50px 0;
  margin-top:60px;
  z-index:1
}
.footer-copyright-text p {
  color:var(--white-color);
  margin-bottom:0
}
.footer-privacy-policy {
  text-align:right
}
.footer-privacy-policy ul {
  margin:0;
  padding:0;
  list-style:none
}
.footer-privacy-policy ul li {
  position:relative;
  display:inline-block;
  color:var(--white-color);
  text-transform:capitalize;
  line-height:1.6em;
  margin-right:30px;
  transition:all .3s ease-in-out
}
.footer-privacy-policy ul li:hover {
  color:var(--accent-color)
}
.footer-privacy-policy ul li:last-child {
  margin-right:0
}
.footer-privacy-policy ul li:before {
  content:'/';
  position:absolute;
  top:0;
  bottom:0;
  right:-18px;
  color:var(--white-color)
}
.footer-privacy-policy ul li:last-child::before {
  display:none
}
.footer-privacy-policy ul li a {
  color:inherit
}
.page-header {
  position:relative;
  background:url('../images/page-header-bg.jpg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  padding:200px 0 190px
}
.wp-block-group.page-header.parallaxie {
  background-image:url('../images/page-heading-bg.jpg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  background-attachment:fixed
}
.page-header+.subpages-scrolling-ticker {
  margin-bottom:110px
}
.page-header::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(360deg,rgba(3,34,27,0) 74.01%,rgba(3,34,27,.9) 100%),linear-gradient(270deg,rgba(3,34,27,0) 25.1%,rgba(3,34,27,.516) 41.43%,rgba(3,34,27,.86) 58.93%);
  width:100%;
  height:100%
}
.page-header-box {
  position:relative;
  text-align:center;
  z-index:1
}
.page-header-box h1 {
  display:inline-block;
  font-size:75px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--white-color);
  margin-bottom:10px;
  cursor:none
}
.page-header-box ol {
  margin:0;
  padding:0;
  justify-content:center
}
.page-header-box ol li.breadcrumb-item {
  font-size:16px;
  text-transform:capitalize;
  color:var(--white-color)
}
.page-header-box ol li.breadcrumb-item a {
  color:inherit
}
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  color:var(--white-color)
}
.with-page-header .page-header-box .wp-block-post-title {
  color:var(--white-color)!important;
  -webkit-text-fill-color:var(--white-color)!important;
  opacity:1!important;
  text-shadow:none!important
}
.with-page-header .page-header-box .breadcrumb-item,
.with-page-header .page-header-box .breadcrumb-item a,
.with-page-header .page-header-box .breadcrumb-item::before {
  color:var(--white-color)!important
}
.product-page-header .page-header-box {
  max-width:680px;
  text-align:left
}
.product-page-header .page-header-box .wp-block-post-title {
  display:block
}
.product-page-header .page-header-box .wp-block-post-excerpt {
  margin:0
}
.product-page-header .page-header-box .wp-block-post-excerpt__excerpt {
  margin-bottom:0;
  color:var(--white-color)
}
.our-scrolling-ticker.subpages-scrolling-ticker {
  padding:15px 0
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box {
  --gap:15px
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
  font-size:40px
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
  width:20px;
  margin-right:15px
}
.our-approach {
  background:var(--secondary-color) url('../images/section-bg-2.png') no-repeat;
  background-position:bottom left;
  background-size:290px auto;
  padding:100px 0
}
.our-approach-content {
  position:sticky;
  top:20px;
  margin-right:20px
}
.our-approach-nav {
  margin-bottom:40px
}
.our-approach-nav .nav-tabs {
  padding:0;
  margin:0;
  list-style:none;
  background:var(--white-color);
  border-radius:20px;
  display:flex;
  justify-content:center;
  border:none;
  overflow:hidden
}
.our-approach-nav ul li {
  width:33.33%
}
.our-approach-nav ul li .nav-link {
  position:relative;
  width:100%;
  display:flex;
  flex-direction:column;
  gap:20px;
  font-family:var(--accent-font);
  font-size:22px;
  font-weight:600;
  line-height:1em;
  text-transform:capitalize;
  color:var(--primary-color);
  background:0 0;
  border-radius:0;
  border:none;
  border-right:1px solid var(--divider-color);
  padding:30px;
  overflow:hidden;
  transition:all .4s ease-in-out;
  z-index:1
}
.our-approach-nav ul li .nav-link.active,
.our-approach-nav ul li .nav-link:focus,
.our-approach-nav ul li .nav-link:hover {
  background:0 0;
  color:var(--white-color)
}
.our-approach-nav ul li:last-child .nav-link {
  border-right:none
}
.our-approach-nav ul li .nav-link:before {
  content:"";
  position:absolute;
  top:100%;
  bottom:0;
  left:0;
  right:0;
  background:var(--accent-secondary-color);
  transition:all .4s ease-in-out;
  z-index:-1
}
.our-approach-nav ul li .nav-link.active::before,
.our-approach-nav ul li .nav-link:focus::before,
.our-approach-nav ul li .nav-link:hover::before {
  top:0
}
.our-approach-nav ul li .nav-link span {
  background:var(--accent-secondary-color);
  border-radius:50%;
  width:60px;
  height:60px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .4s ease-in-out
}
.our-approach-nav ul li .nav-link.active span,
.our-approach-nav ul li .nav-link:focus span,
.our-approach-nav ul li .nav-link:hover span {
  background:var(--white-color)
}
.our-approach-nav ul li .nav-link span img {
  max-width:36px;
  transition:all .4s ease-in-out
}
.our-approach-nav ul li .nav-link.active span img,
.our-approach-nav ul li .nav-link:focus span img,
.our-approach-nav ul li .nav-link:hover span img {
  filter:brightness(0) invert(0)
}
.approach-tab-list-image {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px 30px
}
.approach-tab-image,
.approach-tab-list {
  width:calc(50% - 15px)
}
.approach-tab-list ul {
  list-style:none;
  padding:0;
  margin:0
}
.approach-tab-list ul li {
  position:relative;
  line-height:1.5em;
  text-transform:capitalize;
  background:url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position:left center;
  background-size:20px auto;
  padding-left:30px;
  margin-bottom:15px
}
.approach-tab-list ul li:last-child {
  margin-bottom:0
}
.approach-tab-image figure {
  display:block;
  border-radius:20px
}
.approach-tab-image img {
  width:100%;
  aspect-ratio:1/0.556;
  object-fit:cover;
  border-radius:20px
}
.our-solutions {
  padding:100px 0
}
.our-solution-content {
  margin-right:15px
}
.our-solution-list ul {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px
}
.our-solution-list ul li {
  position:relative;
  background:url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position:left center;
  background-size:20px auto;
  width:calc(50% - 15px);
  line-height:1.5em;
  text-transform:capitalize;
  padding-left:30px
}
.our-solution-images {
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.solution-image-box {
  width:calc(50% - 15px)
}
.solution-support-box {
  position:relative;
  background:var(--accent-color);
  border-radius:20px;
  padding:20px;
  margin-bottom:30px;
  overflow:hidden
}
.solution-support-box::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:var(--primary-color);
  border-radius:500px 500px 0 0;
  height:0;
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0
}
.solution-support-box:hover::before {
  height:100%;
  border-radius:0
}
.solution-support-title {
  position:relative;
  margin-bottom:30px;
  z-index:1
}
.solution-support-title h2 {
  font-size:46px;
  color:var(--white-color)
}
.solution-support-body {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  z-index:1
}
.solution-support-body p {
  width:calc(100% - 50px);
  color:var(--white-color);
  margin:0
}
.solution-support-body a {
  display:block;
  background:var(--white-color);
  border-radius:50%;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center
}
.solution-support-body a img {
  max-width:20px
}
.solution-image-1 figure,
.solution-image-2 figure {
  display:block;
  border-radius:20px
}
.solution-image-1 img,
.solution-image-2 img {
  width:100%;
  object-fit:cover;
  border-radius:20px
}
.solution-image-1 img {
  aspect-ratio:1/0.682
}
.solution-image-2 img {
  aspect-ratio:1/1.365
}
.our-team {
  padding:100px 0 70px
}
.team-item {
  height:calc(100% - 30px);
  margin-bottom:30px;
  overflow:hidden
}
.team-image {
  position:relative
}
.team-image figure {
  aspect-ratio:1/1;
  text-align:center
}
.team-image a {
  display:block;
  cursor:none;
  border-radius:10px;
  overflow:hidden
}
.team-image img {
  height:100%;
  object-fit:cover;
  transition:all .4s ease-in-out
}
.team-item:hover .team-image img {
  transform:scale(1.1)
}
.team-social-icon {
  position:absolute;
  right:30px;
  bottom:0;
  left:30px;
  opacity:0;
  visibility:hidden;
  transition:all .4s ease-in-out;
  z-index:1
}
.team-item:hover .team-social-icon {
  bottom:30px;
  opacity:1;
  visibility:visible
}
.team-social-icon ul {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 20px
}
.team-social-icon ul li a {
  width:40px;
  height:40px;
  color:var(--white-color);
  background:var(--accent-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .4s ease-in-out
}
.team-social-icon ul li a:hover {
  background:var(--accent-secondary-color)
}
.team-social-icon ul li a i {
  color:inherit;
  font-size:18px
}
.team-content {
  position:relative;
  text-align:left;
  padding:15px;
  overflow:hidden;
  margin-top:10px
}
.team-content::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:var(--primary-color);
  height:0;
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0;
  border-radius:0 0 10px 10px
}
.team-item:hover .team-content::before {
  height:100%
}
.team-content::after {
  content:'';
  position:absolute;
  left:-10px;
  right:0;
  bottom:0;
  background-image:url('../images/arrow-white.svg');
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0;
  opacity:0;
  background-repeat:no-repeat;
  background-position:right;
  height:35px
}
.team-item:hover .team-content::after {
  opacity:1
}
.team-content h2 {
  position:absolute;
  font-size:14px;
  text-transform:capitalize;
  margin-bottom:5px;
  transition:all .3s ease-in-out;
  z-index:1
}
.team-content h2 a {
  color:inherit
}
.team-content p {
  position:relative;
  text-transform:capitalize;
  margin:0;
  transition:all .3s ease-in-out;
  z-index:1;
  font-size:16px;
  text-overflow:ellipsis;
  line-height:1.2;
  padding-right:15px;
  font-weight:500;
  color:var(--primary-color)
}
.team-item:hover .team-content h2,
.team-item:hover .team-content p {
  color:var(--white-color)
}
.our-feature {
  background:url(../images/section-bg-3.png),var(--secondary-color);
  background-repeat:no-repeat;
  background-position:bottom left;
  background-size:100% auto;
  padding:100px 0
}
.feature-item-box {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  margin-bottom:60px
}
.feature-item {
  width:calc(50% - 15px)
}
.feature-item .icon-box {
  position:relative;
  width:70px;
  height:70px;
  background:var(--accent-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px
}
.feature-item .icon-box::before {
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  right:0;
  left:0;
  background:var(--primary-color);
  border-radius:50%;
  width:100%;
  height:100%;
  transform:scale(0);
  transition:all .4s ease-in-out
}
.feature-item:hover .icon-box::before {
  transform:scale(1)
}
.feature-item .icon-box img {
  position:relative;
  width:100%;
  max-width:40px;
  z-index:1
}
.feature-item-content h3 {
  font-size:22px;
  text-transform:capitalize;
  margin-bottom:15px
}
.feature-item-content p {
  margin:0
}
.feature-list {
  border-top:1px solid var(--divider-color);
  margin-top:40px;
  padding-top:40px
}
.feature-list ul {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px
}
.feature-list ul li {
  background:url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position:left center;
  background-size:20px auto;
  width:calc(50% - 15px);
  line-height:1.5em;
  text-transform:capitalize;
  padding-left:30px
}
.feature-images {
  position:relative;
  display:flex;
  margin-left:15px
}
.feature-image-1 {
  position:relative;
  width:100%;
  max-width:330px;
  margin-right:-137px;
  z-index:1
}
.feature-image-2 {
  width:100%;
  padding-top:100px
}
.feature-image-1 figure,
.feature-image-2 figure {
  display:block;
  width:100%;
  border-radius:20px
}
.feature-image-1 img,
.feature-image-2 img {
  width:100%;
  object-fit:cover;
  border-radius:20px
}
.feature-image-1 img {
  aspect-ratio:1/1.02
}
.feature-image-2 img {
  aspect-ratio:1/1.169
}
.feature-experience-circle {
  position:absolute;
  left:25px;
  bottom:50px
}
.feature-experience-circle img {
  max-width:140px;
  border-radius:50%;
  animation:infiniterotate 20s infinite linear
}
.page-services {
  padding:100px 0
}
.page-services .service-list {
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.page-services .service-item {
  width:calc(25% - 22.5px)
}
.page-service-single {
  padding:100px 0
}
.page-project-single>.container>.row,
.page-service-single>.container>.row {
  align-items:flex-start
}
.page-single-sidebar,
.wp-block-column.page-single-sidebar {
  position:sticky;
  top:30px;
  margin-right:20px;
  align-self:flex-start
}
.page-catagery-list {
  background-color:var(--secondary-color);
  border-radius:20px;
  margin-bottom:60px;
  overflow:hidden
}
.page-catagery-list h3 {
  font-size:22px;
  text-transform:capitalize;
  border-bottom:1px solid var(--divider-color);
  padding:30px
}
.page-catagery-list ul {
  list-style:none;
  margin:0;
  padding:30px
}
.page-catagery-list ul li {
  margin-bottom:20px
}
.page-catagery-list ul li:last-child {
  margin:0
}
.page-catagery-list ul li a {
  position:relative;
  display:block;
  line-height:1.5em;
  text-transform:capitalize;
  color:var(--text-color);
  background-color:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:12px;
  padding:12px 50px 12px 20px;
  overflow:hidden;
  transition:all .4s ease-in-out;
  z-index:1
}
.page-catagery-list ul li:hover a {
  color:var(--white-color)
}
.page-catagery-list ul li a::before {
  content:'';
  position:absolute;
  right:20px;
  top:50%;
  transform:translate(0,-50%);
  background:url('../images/arrow-text.svg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  width:20px;
  height:20px;
  transition:all .3s ease-in-out
}
.page-catagery-list ul li a:hover::before {
  filter:brightness(0) invert(1)
}
.page-catagery-list ul li a::after {
  content:'';
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:0;
  background:var(--accent-color);
  transition:all .4s ease-in-out;
  z-index:-1
}
.page-catagery-list ul li:hover a::after {
  top:0;
  height:100%
}
.sidebar-cta-box {
  position:relative;
  background:url('../images/sidebar-cta-bg.jpg') no-repeat;
  background-position:center center;
  background-size:cover;
  text-align:center;
  border-radius:20px;
  padding:50px 40px;
  overflow:hidden
}
.sidebar-cta-box:before {
  content:'';
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background-color:var(--primary-color);
  opacity:80%;
  width:100%;
  height:100%
}
.sidebar-cta-contact,
.sidebar-cta-content {
  position:relative;
  z-index:1
}
.sidebar-cta-content {
  margin-bottom:25px
}
.sidebar-cta-content img {
  width:140px;
  height:auto;
  margin-bottom:30px
}
.sidebar-cta-content h3 {
  font-size:22px;
  font-weight:700;
  color:var(--white-color);
  margin-bottom:10px
}
.sidebar-cta-content p {
  font-size:16px;
  font-weight:400;
  line-height:1.6em;
  color:rgba(255,255,255,.85);
  margin-top:0
}
.sidebar-cta-contact ul {
  margin:0;
  padding:0;
  list-style:none
}
.sidebar-cta-contact ul li {
  display:flex;
  justify-content:center;
  margin-bottom:20px
}
.sidebar-cta-contact ul li:last-child {
  margin-bottom:0
}
.sidebar-cta-contact ul li a {
  position:relative;
  font-size:16px;
  color:var(--white-color);
  line-height:normal;
  border:1px solid var(--dark-divider-color);
  border-radius:10px;
  padding:12px 30px;
  overflow:hidden
}
.sidebar-cta-contact ul li a::before {
  content:'';
  display:block;
  position:absolute;
  top:0;
  bottom:0;
  left:-15%;
  right:0;
  width:0;
  height:106%;
  background:var(--accent-color);
  transform:skew(45deg);
  transition:all .4s ease-in-out;
  z-index:-1
}
.sidebar-cta-contact ul li a:hover::before {
  width:100%;
  transform:skew(0);
  left:0
}
.page-single-image {
  margin-bottom:40px
}
.page-single-image figure,
figure.wp-block-image {
  display:block;
  width:100%;
  border-radius:20px;
  aspect-ratio:1/0.8;
  text-align:center;
  overflow:hidden
}
.page-single-image figure.reveal {
  display:block;
  visibility:visible
}
.page-single-image img,
figure.wp-block-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  margin:auto
}
.service-entry {
  margin-bottom:60px
}
.service-entry p {
  margin-bottom:20px
}
.service-entry p:last-child {
  margin-bottom:0
}
.service-entry h2 {
  font-size:46px;
  font-weight:700;
  margin-bottom:20px
}
.service-entry ul {
  list-style:none;
  padding:0;
  margin-bottom:20px
}
.service-entry ul li {
  line-height:1.5em;
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  padding-left:30px;
  margin-bottom:15px
}
.service-entry ul li:last-child {
  margin-bottom:0
}
.service-driving-box,
.service-solutions-box {
  margin-top:60px
}
.service-solutions-box ul {
  margin:30px 0
}
.service-solution-steps {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  margin-top:40px
}
.solution-step-item {
  position:relative;
  width:calc(50% - 15px);
  background-color:var(--secondary-color);
  border:1px solid var(--divider-color);
  border-radius:20px;
  padding:30px;
  overflow:hidden
}
.solution-step-item::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:var(--primary-color);
  border-radius:500px 500px 0 0;
  height:0;
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0
}
.solution-step-item:hover::before {
  height:100%;
  border-radius:0
}
.solution-item-content,
.solution-item-header {
  position:relative;
  z-index:1
}
.solution-item-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px
}
.solution-step-item .icon-box {
  height:70px;
  width:70px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:var(--accent-color);
  border-radius:50%;
  transition:all .4s ease-in-out
}
.solution-step-item:hover .icon-box {
  background-color:var(--white-color)
}
.solution-step-item .icon-box img {
  width:100%;
  max-width:40px;
  transition:all .4s ease-in-out
}
.solution-step-item:hover .icon-box img {
  filter:brightness(0) invert(0)
}
.solution-step-no h2 {
  font-size:46px;
  font-weight:700;
  opacity:5%;
  margin-bottom:0;
  transition:all .4s ease-in-out
}
.solution-step-item:hover .solution-step-no h2 {
  color:var(--white-color)
}
.solution-item-content h3 {
  font-size:22px;
  margin-bottom:15px;
  transition:all .4s ease-in-out
}
.solution-item-content p {
  margin-bottom:0;
  transition:all .4s ease-in-out
}
.solution-step-item:hover .solution-item-content h3,
.solution-step-item:hover .solution-item-content p {
  color:var(--white-color)
}
.service-driving-box {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:30px
}
.service-driving-image-box,
.service-driving-item-list {
  width:calc(50% - 15px)
}
.service-driving-image-box figure {
  display:block;
  border-radius:20px;
  margin-top:40px
}
.service-driving-image-box figure img {
  width:100%;
  aspect-ratio:1/0.683;
  object-fit:cover;
  border-radius:20px
}
.service-driving-item-list .environment-body-item {
  margin-bottom:30px;
  padding-bottom:30px
}
.service-driving-item-list .environment-body-item:last-child {
  margin-bottom:0;
  padding-bottom:0
}
.page-blog .post-item {
  display:block;
  height:calc(100% - 30px);
  margin-bottom:30px
}
.post-single-meta {
  margin-top:30px
}
.post-single-meta .post-meta-list {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  margin:0;
  padding:0;
  list-style:none
}
.post-single-meta .post-meta-list li {
  font-size:20px;
  color:var(--white-color);
  line-height:1.4;
  font-weight:600;
  margin-right:15px
}
.post-single-meta .post-meta-list li i {
  font-size:18px;
  color:var(--white-color);
  margin-right:5px
}
.page-blog .post-item .post-featured-image,
.page-blog .post-item .post-item-body {
  width:100%
}
.page-blog .post-item .post-featured-image img {
  aspect-ratio:1/0.673
}
.page-pagination {
  margin-top:30px;
  text-align:center
}
.page-pagination ul {
  justify-content:center;
  padding:0;
  margin:0
}
.page-pagination ul li a,
.page-pagination ul li span {
  display:flex;
  text-decoration:none;
  justify-content:center;
  align-items:center;
  background:var(--secondary-color);
  color:var(--primary-color);
  border-radius:10px;
  width:40px;
  height:40px;
  margin:0 5px;
  font-weight:700;
  line-height:1em;
  transition:all .3s ease-in-out
}
.page-pagination ul li a:hover,
.page-pagination ul li.active a {
  background:var(--accent-color)
}
.page-single-post {
  padding:100px 0
}
.post-single-meta ol li {
  font-size:18px;
  color:var(--white-color);
  margin-right:15px
}
.post-single-meta ol li:last-child {
  margin-right:0
}
.post-single-meta ol li i {
  font-size:18px;
  color:var(--white-color);
  margin-right:5px
}
.post-image {
  position:relative;
  margin-bottom:30px
}
.post-image figure {
  display:block;
  border-radius:20px;
  overflow:hidden
}
.post-image img {
  width:100%;
  aspect-ratio:1/0.50;
  object-fit:cover;
  border-radius:20px
}
.post-content {
  width:100%;
  max-width:1100px;
  margin:0 auto
}
.post-entry {
  border-bottom:1px solid var(--divider-color);
  padding-bottom:30px;
  margin-bottom:30px
}
.post-entry:after {
  content:'';
  display:block;
  clear:both
}
.post-entry a {
  color:var(--accent-color)
}
.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight:700;
  line-height:1.1em;
  margin:0 0 .435em
}
.post-entry h1 {
  font-size:75px
}
.post-entry h2 {
  font-size:46px
}
.post-entry h3 {
  font-size:40px
}
.post-entry h4 {
  font-size:30px
}
.post-entry h5 {
  font-size:24px
}
.post-entry h6 {
  font-size:20px
}
.post-entry p {
  margin-bottom:20px
}
.post-entry p:last-child {
  margin-bottom:0
}
.post-entry p strong {
  color:var(--primary-color);
  font-size:18px;
  font-weight:600
}
.post-entry ol {
  margin:0 0 30px
}
.post-entry ul {
  padding:0;
  margin:20px 0 20px;
  padding-left:20px
}
.post-entry ol li,
.post-entry ul li {
  position:relative;
  font-size:16px;
  line-height:1.5em;
  color:var(--text-color);
  margin-bottom:15px
}
.post-entry ul li:last-child {
  margin-bottom:0
}
.post-entry ol ol,
.post-entry ol ul,
.post-entry ul ol,
.post-entry ul ul {
  margin-top:20px;
  margin-bottom:0
}
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ul ul li:last-child {
  margin-bottom:0
}
.post-entry blockquote {
  background:url('../images/icon-blockquote.svg'),var(--primary-color);
  background-repeat:no-repeat;
  background-position:30px 30px;
  background-size:45px;
  border-radius:12px;
  padding:30px 30px 30px 90px;
  margin-bottom:30px
}
.post-entry blockquote p {
  font-size:20px;
  font-weight:600;
  line-height:1.5em;
  color:var(--white-color)
}
.post-entry blockquote p:last-child {
  margin-bottom:0
}
.tag-links {
  font-size:22px;
  font-weight:600;
  text-transform:capitalize;
  color:var(--primary-color);
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:15px
}
.post-tags .tag-links a {
  display:inline-block;
  font-size:16px;
  font-weight:600;
  text-transform:capitalize;
  line-height:1em;
  background:var(--accent-color);
  color:var(--white-color);
  border-radius:10px;
  padding:12px 20px;
  transition:all .3s ease-in-out
}
.post-tags .tag-links a:hover {
  background:var(--primary-color)
}
.post-social-sharing {
  text-align:right
}
.post-social-sharing ul {
  list-style:none;
  padding:0;
  margin:0
}
.post-social-sharing ul li {
  display:inline-block;
  margin-right:10px
}
.post-social-sharing ul li:last-child {
  margin-right:0
}
.post-social-sharing ul li a {
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--accent-color);
  color:var(--white-color);
  border-radius:10px;
  width:40px;
  height:40px;
  transition:all .3s ease-in-out
}
.post-social-sharing ul li:hover a {
  background:var(--primary-color)
}
.post-social-sharing ul li a i {
  font-size:18px;
  color:inherit
}
.single-content .tiens-article-hero {
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:16px;
  box-shadow:0 12px 48px rgba(3,34,27,.08);
  padding:28px 28px 32px;
  margin-bottom:8px
}
.single-content .tiens-single-breadcrumb {
  margin:0 0 16px
}
.single-content .tiens-single-breadcrumb__list {
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:4px 8px;
  font-size:.8125rem;
  font-weight:500;
  color:#8a8a8a
}
.single-content .tiens-single-breadcrumb__list .breadcrumb-item {
  display:inline
}
.single-content .tiens-single-breadcrumb__list .breadcrumb-item+.breadcrumb-item::before {
  content:'\203a';
  margin:0 6px;
  color:#c5c5c5;
  font-weight:400
}
.single-content .tiens-single-breadcrumb__list a {
  color:#6b6b6b;
  text-decoration:none
}
.single-content .tiens-single-breadcrumb__list a:hover {
  color:var(--primary-color);
  text-decoration:underline
}
.single-content .tiens-single-breadcrumb__list .active {
  color:var(--primary-color);
  font-weight:600
}
.single-content .tiens-article-hero__badges .wp-block-post-terms {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0
}
.single-content .tiens-article-hero__badges .wp-block-post-terms a {
  display:inline-block;
  font-size:.6875rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  padding:6px 14px;
  border-radius:6px;
  color:var(--white-color);
  background:var(--accent-secondary-color,#2b8b64);
  transition:opacity .2s ease,transform .2s ease
}
.single-content .tiens-article-hero__badges .wp-block-post-terms a:hover {
  opacity:.92;
  transform:translateY(-1px)
}
.single-content .tiens-article-hero__badges .wp-block-post-terms a:nth-child(2n) {
  background:var(--accent-color);
  color:var(--primary-color)
}
.single-content .tiens-single-page-header>.container,
.single-content .tiens-single-page-header>.wp-block-group.container {
  position:relative;
  z-index:2
}
.single-content .tiens-single-page-header .wp-block-post-title,
.single-content .tiens-single-page-header__title {
  margin:0;
  line-height:1.15;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important
}
.single-content .tiens-single-page-header__meta.blog-meta {
  width:100%;
  gap:10px 20px;
  flex-wrap:wrap;
  align-items:center;
  font-size:.875rem
}
.single-content .tiens-single-page-header__meta .wp-block-post-author-name,
.single-content .tiens-single-page-header__meta .wp-block-post-date,
.single-content .tiens-single-page-header__meta .wp-block-post-terms,
.single-content .tiens-single-page-header__meta .wp-block-post-terms a {
  color:rgba(255,255,255,.92)!important
}
.single-content .tiens-single-page-header__meta .wp-block-post-terms a:hover {
  color:#fff!important;
  text-decoration:underline
}
.single-content .tiens-single-page-header__meta .wp-block-post-author-name a {
  color:#fff!important;
  font-weight:600;
  text-decoration:none
}
.single-content .tiens-single-page-header__meta .wp-block-post-author-name a:hover {
  text-decoration:underline
}
.single-content .tiens-single-page-header__reading {
  display:inline-flex;
  align-items:center;
  margin-left:auto;
  font-size:.8125rem;
  font-weight:500;
  color:rgba(255,255,255,.9)
}
.single-content .tiens-single-page-header__reading .tiens-reading-time__inner {
  display:inline-flex;
  align-items:center;
  gap:6px
}
.single-content .tiens-single-page-header__reading .tiens-icon-clock {
  display:flex;
  color:var(--accent-color)
}
.single-content .tiens-single-page-header__reading .tiens-reading-time__text {
  color:rgba(255,255,255,.92)
}
.single-content .blog-detail-image img {
  border-radius:16px;
  box-shadow:0 12px 40px rgba(3,34,27,.12)
}
.single-content .tiens-blog-single-entry {
  font-size:1.0625rem;
  line-height:1.75;
  color:var(--text-color)
}
.single-content .tiens-blog-single-entry>:first-child {
  margin-top:0
}
.single-content .tiens-blog-single-entry h2,
.single-content .tiens-blog-single-entry h3 {
  color:var(--primary-color);
  margin-top:1.75em
}
.single-content .post-tags-box {
  align-items:center;
  gap:12px;
  padding-top:24px;
  border-top:1px solid var(--divider-color)
}
.single-content .post-tags-box .wp-block-post-terms {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center
}
.single-content .post-tags-box .wp-block-post-terms a {
  display:inline-block;
  font-size:.875rem;
  font-weight:600;
  padding:8px 16px;
  border-radius:999px;
  background:var(--accent-color);
  color:var(--primary-color);
  text-decoration:none;
  transition:background .25s ease,color .25s ease,transform .2s ease
}
.single-content .post-tags-box .wp-block-post-terms a:hover {
  background:var(--primary-color);
  color:var(--white-color);
  transform:translateY(-1px)
}
.tiens-post-adjacent {
  margin:40px 0 0;
  padding:28px 24px 32px;
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:16px;
  box-shadow:0 12px 40px rgba(3,34,27,.08);
  border-top:1px dotted rgba(3,34,27,.18)
}
.tiens-post-adjacent__inner {
  display:flex;
  align-items:stretch;
  gap:0
}
.tiens-post-adjacent__cell {
  flex:1;
  min-width:0;
  padding:0 12px
}
.tiens-post-adjacent__cell--prev {
  padding-left:4px
}
.tiens-post-adjacent__cell--next {
  padding-right:4px
}
.tiens-post-adjacent__rule {
  flex:0 0 0;
  width:0;
  align-self:stretch;
  margin:0 8px;
  border-left:1px dotted rgba(3,34,27,.22)
}
.tiens-post-adjacent__link {
  display:flex;
  flex-direction:column;
  gap:14px;
  text-decoration:none;
  color:inherit;
  height:100%;
  min-height:100px;
  transition:opacity .2s ease
}
.tiens-post-adjacent__link:hover .tiens-post-adjacent__title {
  color:var(--accent-secondary-color,#2b8b64)
}
.tiens-post-adjacent__kicker {
  font-size:.6875rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#9a9a9a;
  display:block
}
.tiens-post-adjacent__chev {
  color:var(--accent-color);
  font-weight:700;
  margin-right:4px
}
.tiens-post-adjacent__link--next .tiens-post-adjacent__kicker {
  text-align:right
}
.tiens-post-adjacent__link--next .tiens-post-adjacent__chev {
  margin-right:0;
  margin-left:4px
}
.tiens-post-adjacent__row {
  display:flex;
  align-items:center;
  gap:16px
}
.tiens-post-adjacent__cell--next .tiens-post-adjacent__row {
  justify-content:flex-end
}
.tiens-post-adjacent__thumb {
  flex:0 0 72px;
  width:72px;
  height:72px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(142,199,61,.35);
  box-shadow:0 4px 14px rgba(3,34,27,.12)
}
.tiens-post-adjacent__thumb-img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.tiens-post-adjacent__title {
  flex:1;
  min-width:0;
  font-size:1rem;
  font-weight:600;
  line-height:1.4;
  color:var(--primary-color);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  transition:color .2s ease
}
.tiens-post-adjacent__cell--next .tiens-post-adjacent__title {
  text-align:right
}
.tiens-post-adjacent__placeholder {
  min-height:100px
}
.single-content .wp-block-comments {
  margin-top:48px;
  padding:32px 28px;
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:16px;
  box-shadow:0 8px 32px rgba(3,34,27,.06)
}
.single-content .wp-block-comments .comment-reply-title,
.single-content .wp-block-comments .wp-block-comments-title {
  font-size:1.35rem;
  font-weight:700;
  color:var(--primary-color);
  margin-bottom:1.25rem
}
.single-content .wp-block-comments .comment-body,
.single-content .wp-block-comments .wp-block-group:has(.wp-block-avatar) {
  padding:20px 0;
  border-bottom:1px solid var(--divider-color)
}
.single-content .wp-block-comments .comment-body:last-of-type,
.single-content .wp-block-comments .wp-block-group:has(.wp-block-avatar):last-child {
  border-bottom:none
}
.single-content .wp-block-comment-author-name,
.single-content .wp-block-comment-author-name a {
  font-weight:600;
  color:var(--primary-color);
  text-decoration:none
}
.single-content .wp-block-comment-date {
  font-size:.8125rem;
  color:var(--text-color);
  opacity:.85
}
.single-content .wp-block-comment-content {
  margin-top:8px;
  font-size:.9375rem;
  line-height:1.65;
  color:var(--text-color)
}
.single-content .wp-block-comment-reply-link a {
  font-size:.875rem;
  font-weight:600;
  color:var(--primary-color);
  text-decoration:none
}
.single-content .wp-block-comment-reply-link a:hover {
  text-decoration:underline
}
.single-content .wp-block-post-comments-form input:not([type=submit]),
.single-content .wp-block-post-comments-form textarea {
  border:1px solid var(--divider-color);
  border-radius:12px;
  padding:12px 16px;
  font-family:inherit;
  transition:border-color .2s ease,box-shadow .2s ease
}
.single-content .wp-block-post-comments-form input:not([type=submit]):focus,
.single-content .wp-block-post-comments-form textarea:focus {
  outline:0;
  border-color:var(--accent-color);
  box-shadow:0 0 0 3px rgba(142,199,61,.25)
}
.single-content .wp-block-post-comments-form button[type=submit],
.single-content .wp-block-post-comments-form input[type=submit] {
  background:var(--primary-color);
  color:var(--white-color);
  border:none;
  border-radius:10px;
  padding:12px 28px;
  font-weight:600;
  cursor:pointer;
  transition:background .25s ease,transform .2s ease
}
.single-content .wp-block-post-comments-form button[type=submit]:hover,
.single-content .wp-block-post-comments-form input[type=submit]:hover {
  background:#0f6a45;
  transform:translateY(-1px)
}
@media (max-width:767px) {
  .single-content .tiens-single-page-header__meta.blog-meta {
    flex-direction:column;
    align-items:flex-start
  }
  .single-content .tiens-single-page-header__reading {
    margin-left:0
  }
  .tiens-post-adjacent__inner {
    flex-direction:column
  }
  .tiens-post-adjacent__rule {
    width:100%;
    height:0;
    margin:16px 0;
    border-left:none;
    border-top:1px dotted rgba(3,34,27,.22)
  }
  .tiens-post-adjacent__cell {
    padding:0
  }
  .tiens-post-adjacent__cell--next .tiens-post-adjacent__title,
  .tiens-post-adjacent__link--next .tiens-post-adjacent__kicker {
    text-align:left
  }
  .tiens-post-adjacent__cell--next .tiens-post-adjacent__row {
    justify-content:flex-start
  }
}
.single-content .tiens-blog-sidebar-col {
  position:sticky;
  top:100px;
  align-self:flex-start
}
.single-content .tiens-blog-sidebar {
  display:flex;
  flex-direction:column;
  gap:20px
}
.single-content .tiens-sidebar-panel {
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:16px;
  padding:22px 22px 24px;
  box-shadow:0 8px 32px rgba(3,34,27,.06)
}
.single-content .tiens-sidebar-panel__title {
  position:relative;
  font-size:1rem;
  font-weight:700;
  color:var(--primary-color);
  margin:0 0 18px;
  padding:0 0 14px 14px;
  line-height:1.25;
  letter-spacing:-.01em;
  border-bottom:1px solid var(--divider-color)
}
.single-content .tiens-sidebar-panel__title::before {
  content:'';
  position:absolute;
  left:0;
  top:.15em;
  bottom:.55em;
  width:4px;
  border-radius:2px;
  background:linear-gradient(180deg,var(--accent-color) 0,var(--primary-color) 100%)
}
.single-content .tiens-sidebar-search.wp-block-search {
  margin:0
}
.single-content .tiens-sidebar-search .wp-block-search__label {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
.single-content .tiens-sidebar-search .wp-block-search__inside-wrapper {
  background:#f4f6f5;
  border:1px solid var(--divider-color);
  border-radius:999px;
  padding:4px 4px 4px 18px;
  transition:border-color .2s ease,box-shadow .2s ease
}
.single-content .tiens-sidebar-search .wp-block-search__inside-wrapper:focus-within {
  border-color:rgba(18,125,81,.35);
  box-shadow:0 0 0 3px rgba(142,199,61,.2)
}
.single-content .tiens-sidebar-search .wp-block-search__input {
  border:none;
  background:0 0;
  font-size:.875rem;
  padding:10px 8px;
  color:var(--text-color)
}
.single-content .tiens-sidebar-search .wp-block-search__input:focus {
  outline:0
}
.single-content .tiens-sidebar-search .wp-block-search__input::placeholder {
  color:#9a9a9a
}
.single-content .tiens-sidebar-search .wp-block-search__button {
  border:none;
  border-radius:999px;
  background:var(--primary-color);
  color:var(--white-color);
  font-size:.8125rem;
  font-weight:600;
  padding:10px 20px;
  margin:0;
  cursor:pointer;
  transition:background .2s ease,transform .15s ease
}
.single-content .tiens-sidebar-search .wp-block-search__button:hover {
  background:#0f6a45;
  transform:translateY(-1px)
}
.single-content .tiens-sidebar-categories.wp-block-categories ul.wp-block-categories-list {
  margin:0;
  padding:0;
  list-style:none
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list>li {
  margin:0 0 8px;
  padding:0
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list>li:last-child {
  margin-bottom:0
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list>li>a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 14px;
  font-size:.875rem;
  font-weight:500;
  color:var(--text-color);
  text-decoration:none;
  background:#fafcfb;
  border:1px solid var(--divider-color);
  border-radius:10px;
  transition:background .2s ease,border-color .2s ease,color .2s ease
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list>li>a:hover {
  background:var(--white-color);
  border-color:rgba(18,125,81,.25);
  color:var(--primary-color)
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list ul.children {
  margin:8px 0 0 12px;
  padding:0;
  list-style:none
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list ul.children li {
  margin-bottom:6px
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list ul.children a {
  font-size:.8125rem;
  padding:6px 10px;
  border-radius:8px;
  color:var(--text-color);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px
}
.single-content .tiens-sidebar-categories ul.wp-block-categories-list ul.children a:hover {
  color:var(--primary-color)
}
.single-content .tiens-sidebar-latest.wp-block-latest-posts {
  margin:0;
  padding:0;
  list-style:none
}
.single-content .tiens-sidebar-latest.wp-block-latest-posts.is-grid {
  display:flex;
  flex-direction:column;
  gap:0
}
.single-content .tiens-sidebar-latest a.wp-block-latest-posts__post-title {
  display:block;
  font-size:.9375rem;
  font-weight:600;
  line-height:1.35;
  margin:0 0 4px;
  color:var(--primary-color);
  text-decoration:none;
  transition:color .2s ease
}
.single-content .tiens-sidebar-latest a.wp-block-latest-posts__post-title:hover {
  color:var(--accent-secondary-color,#2b8b64)
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__post-date {
  display:block;
  font-size:.75rem;
  color:#9a9a9a;
  font-weight:500
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__featured-image {
  margin:0;
  border-radius:10px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(3,34,27,.1)
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__featured-image img {
  display:block;
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:10px
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__featured-image.alignleft {
  float:none;
  margin:0
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li {
  display:grid;
  grid-template-columns:72px 1fr;
  grid-template-rows:auto auto;
  column-gap:14px;
  row-gap:4px;
  align-items:start;
  padding:14px 0;
  margin:0;
  border-bottom:1px solid var(--divider-color)
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li:not(:has(.wp-block-latest-posts__featured-image)) {
  grid-template-columns:1fr
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li>.wp-block-latest-posts__featured-image {
  grid-column:1;
  grid-row:1/span 2;
  align-self:center
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li>a.wp-block-latest-posts__post-title {
  grid-column:2;
  grid-row:1
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li>time.wp-block-latest-posts__post-date {
  grid-column:2;
  grid-row:2
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li:not(:has(.wp-block-latest-posts__featured-image))>a.wp-block-latest-posts__post-title {
  grid-column:1;
  grid-row:1
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li:not(:has(.wp-block-latest-posts__featured-image))>time.wp-block-latest-posts__post-date {
  grid-column:1;
  grid-row:2
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li:first-child {
  padding-top:0
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__list>li:last-child {
  border-bottom:none;
  padding-bottom:0
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__post-excerpt,
.single-content .tiens-sidebar-latest .wp-block-latest-posts__post-full-content {
  display:none
}
.single-content .tiens-sidebar-latest .wp-block-latest-posts__post-author {
  font-size:.75rem;
  color:#9a9a9a
}
.single-content .tiens-sidebar-tags.wp-block-tag-cloud {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  line-height:1.2
}
.single-content .tiens-sidebar-tags.wp-block-tag-cloud a {
  display:inline-block;
  font-size:.8125rem!important;
  font-weight:600;
  padding:8px 14px;
  margin:0!important;
  border-radius:999px;
  text-decoration:none;
  color:var(--primary-color)!important;
  background:rgba(142,199,61,.22);
  border:1px solid transparent;
  transition:background .2s ease,border-color .2s ease,color .2s ease
}
.single-content .tiens-sidebar-tags.wp-block-tag-cloud a:hover {
  background:var(--primary-color);
  color:var(--white-color)!important;
  border-color:var(--primary-color)
}
@media (max-width:991px) {
  .single-content .tiens-blog-sidebar-col {
    position:static;
    margin-top:48px
  }
}
.page-projects {
  padding:100px 0 70px
}
.page-project-single {
  padding:100px 0
}
.project-category-list {
  background:var(--secondary-color);
  border-radius:20px;
  margin-bottom:60px;
  overflow:hidden
}
.project-category-list h3 {
  font-size:22px;
  color:var(--white-color);
  text-transform:capitalize;
  background-color:var(--primary-color);
  padding:30px
}
.project-category-list ul {
  margin:0;
  padding:30px;
  list-style:none
}
.project-category-list ul li {
  font-size:16px;
  font-weight:300;
  line-height:1.6em;
  color:var(--text-color);
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--divider-color);
  margin-bottom:20px;
  padding-bottom:20px
}
.project-category-list ul li:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.project-category-list ul li span {
  width:65%;
  font-size:16px;
  font-weight:400;
  color:var(--text-color)
}
.project-entry {
  margin-bottom:60px
}
.project-entry p {
  margin-bottom:20px
}
.project-entry p:last-child {
  margin-bottom:0
}
.project-entry h2 {
  font-size:46px;
  font-weight:700;
  margin-bottom:20px
}
.project-entry ul {
  list-style:none;
  padding:0;
  margin-bottom:20px
}
.project-entry ul li {
  line-height:1.5em;
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  padding-left:30px;
  margin-bottom:15px
}
.project-entry ul li:last-child {
  margin-bottom:0
}
.project-challenge-box,
.project-innovation-box {
  margin-top:60px
}
.project-innovation-image-list {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px 30px;
  margin-top:40px
}
.project-innovation-image,
.project-innovation-list {
  width:calc(50% - 15px)
}
.project-innovation-image figure {
  display:block;
  border-radius:20px
}
.project-innovation-image img {
  width:100%;
  aspect-ratio:1/0.62;
  object-fit:cover;
  border-radius:20px
}
.project-challenge-list {
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px;
  margin-top:40px
}
.project-challenge-list .environment-body-item {
  width:calc(50% - 15px);
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.project-challenge-video-box {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  margin-top:40px
}
.project-challenge-image,
.project-challenge-video {
  width:calc(50% - 15px)
}
.project-challenge-image figure {
  display:block;
  border-radius:20px
}
.project-challenge-image img {
  width:100%;
  aspect-ratio:1/0.881;
  object-fit:cover;
  border-radius:20px
}
.challenge-image-video {
  position:relative
}
.challenge-image-video figure {
  display:block;
  border-radius:20px
}
.challenge-image-video img {
  width:100%;
  aspect-ratio:1/0.634;
  object-fit:cover;
  border-radius:20px
}
.challenge-image-video .video-play-button {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1
}
.video-play-button a {
  height:85px;
  width:85px;
  background-color:var(--accent-secondary-color);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:none;
  transition:all .4s ease-in-out
}
.video-play-button a:hover {
  background-color:var(--primary-color)
}
.video-play-button a:before {
  content:'';
  position:absolute;
  top:-30%;
  left:-30%;
  width:160%;
  height:160%;
  border:50px solid var(--white-color);
  opacity:70%;
  border-radius:50%;
  transform:scale(.6);
  z-index:-1;
  animation:border-zooming 1.2s infinite linear
}
.video-play-button a:after {
  content:'';
  position:absolute;
  top:-30%;
  left:-30%;
  width:160%;
  height:160%;
  border:50px solid var(--white-color);
  opacity:70%;
  border-radius:50%;
  transform:scale(.6);
  z-index:-1;
  animation:border-zooming 1.2s infinite linear;
  animation-delay:.3s
}
@keyframes border-zooming {
  100% {
    transform:scale(1);
    opacity:0
  }
}
.video-play-button a i {
  font-size:30px;
  color:var(--white-color);
  margin-left:2px;
  transition:all .4s ease-in-out
}
.video-play-button a:hover i {
  color:var(--accent-secondary-color)
}
.project-challenge-video ul {
  margin:30px 0 0
}
.page-team {
  padding:100px 0 70px
}
.page-team-single {
  position:relative;
  padding:100px 0
}
.team-about-box,
.team-expertise-experience {
  margin-bottom:80px
}
.team-about-box,
.team-expertise-experience,
.team-skills-form {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:30px 60px
}
.team-about-content,
.team-single-image {
  width:calc(50% - 30px)
}
.team-single-image figure {
  display:block;
  border-radius:20px
}
.team-single-image img {
  width:100%;
  aspect-ratio:1/0.933;
  object-fit:cover;
  border-radius:20px
}
.team-contact-info-box {
  background-color:var(--secondary-color);
  border-radius:20px;
  padding:30px
}
.team-contact-list {
  display:flex;
  flex-wrap:wrap;
  gap:30px
}
.team-contact-box {
  width:calc(50% - 15px);
  display:flex;
  align-items:center
}
.team-contact-box .icon-box {
  position:relative;
  width:50px;
  height:50px;
  background:var(--accent-secondary-color);
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:15px;
  overflow:hidden
}
.team-contact-box .icon-box::before {
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  right:0;
  left:0;
  background:var(--primary-color);
  border-radius:5px;
  width:100%;
  height:100%;
  transform:scale(0);
  transition:all .4s ease-in-out
}
.team-contact-box:hover .icon-box::before {
  transform:scale(1)
}
.team-contact-box .icon-box img {
  position:relative;
  width:100%;
  max-width:30px;
  z-index:1
}
.team-contact-content {
  width:calc(100% - 65px)
}
.team-contact-content h3 {
  font-size:22px;
  text-transform:capitalize;
  margin-bottom:5px
}
.team-contact-content p {
  margin:0
}
.member-social-list {
  display:flex;
  align-items:center;
  gap:20px;
  border-top:1px solid var(--divider-color);
  margin-top:40px;
  padding-top:40px
}
.member-social-list h3 {
  font-size:22px;
  text-transform:capitalize
}
.member-social-list ul {
  list-style:none;
  padding:0;
  margin:0
}
.member-social-list ul li {
  display:inline-block;
  border-radius:50%;
  margin-right:10px
}
.member-social-list ul li:last-child {
  margin-right:0
}
.member-social-list ul li a {
  background-color:var(--accent-secondary-color);
  color:var(--white-color);
  border-radius:50%;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .3s ease-in-out
}
.member-social-list ul li:hover a {
  background-color:var(--accent-color)
}
.member-social-list ul li a i {
  color:inherit;
  font-size:18px
}
.team-expertise-experience {
  align-items:start
}
.team-experience-box,
.team-expertise-box {
  width:calc(50% - 30px)
}
.team-expertise-list ul {
  list-style:none;
  padding:0;
  margin:0
}
.team-expertise-list ul li {
  position:relative;
  line-height:1.5em;
  text-transform:capitalize;
  background:url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  padding-left:30px;
  margin-bottom:15px
}
.team-expertise-list ul li:last-child {
  margin-bottom:0
}
.team-experience-info-item {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:30px
}
.team-experience-info-item:last-child {
  margin-bottom:0
}
.team-experience-content {
  width:calc(70% - 10px)
}
.team-experience-content h3 {
  font-size:22px;
  margin-bottom:5px
}
.team-experience-content p,
.team-experience-year p {
  margin-bottom:0
}
.team-experience-year {
  width:calc(30% - 10px);
  text-align:end
}
.team-member-form,
.team-skills-box {
  width:calc(50% - 30px)
}
.skills-progress-bar {
  margin-bottom:30px
}
.skills-progress-bar:last-child {
  margin-bottom:0
}
.skills-progress-bar .skill-data {
  display:flex;
  justify-content:space-between;
  margin-bottom:20px
}
.skills-progress-bar .skillbar .skill-progress {
  position:relative;
  width:100%;
  height:16px;
  background:var(--secondary-color);
  border-radius:100px;
  overflow:hidden
}
.skills-progress-bar .skillbar .skill-progress .count-bar {
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  background:var(--accent-secondary-color);
  border-radius:100px
}
.team-member-form {
  border-radius:20px
}
.page-testimonials {
  padding:100px 0 70px
}
.page-testimonials .testimonial-item {
  border:1px solid var(--divider-color);
  border-radius:20px;
  height:calc(100% - 30px);
  margin-bottom:30px;
  padding:30px
}
.page-testimonials .testimonial-item .testimonial-header {
  margin-bottom:20px
}
.page-testimonials .testimonial-item .testimonial-header .review-content ul {
  margin:0
}
.page-testimonials .testimonial-item .testimonial-content {
  border-color:var(--divider-color);
  margin-bottom:20px;
  padding-bottom:20px
}
.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p {
  color:var(--text-color)
}
.page-testimonials .testimonial-item .author-content h3 {
  color:var(--primary-color)
}
.page-gallery {
  padding:100px 0 70px
}
.page-gallery-box .photo-gallery {
  height:calc(100% - 30px);
  margin-bottom:30px
}
.page-gallery-box .photo-gallery a {
  cursor:none
}
.page-gallery-box .photo-gallery figure {
  display:block;
  border-radius:20px
}
.page-gallery-box .photo-gallery img {
  width:100%;
  aspect-ratio:1/0.83;
  object-fit:cover;
  border-radius:20px
}
.page-video-gallery {
  padding:100px 0 70px
}
.video-gallery-image {
  height:calc(100% - 30px);
  margin-bottom:30px;
  overflow:hidden
}
.video-gallery-image a {
  position:relative;
  display:block;
  cursor:none
}
.video-gallery-image a::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:var(--primary-color);
  border-radius:20px;
  opacity:0%;
  visibility:hidden;
  width:100%;
  height:100%;
  z-index:1;
  transform:scale(0);
  transition:all .4s ease-in-out
}
.video-gallery-image:hover a::before {
  opacity:40%;
  visibility:visible;
  transform:scale(1)
}
.video-gallery-image a::after {
  content:'\f04b';
  font-family:'Font Awesome 6 Free';
  font-weight:900;
  position:absolute;
  top:50%;
  left:50%;
  right:0;
  transform:translate(-50%,-50%);
  font-size:20px;
  background:var(--accent-color);
  color:var(--primary-color);
  border-radius:50%;
  height:60px;
  width:60px;
  cursor:none;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:all .5s ease-in-out;
  z-index:1
}
.video-gallery-image:hover a::after {
  opacity:1;
  visibility:visible
}
.video-gallery-image img {
  width:100%;
  aspect-ratio:1/0.83;
  object-fit:cover;
  border-radius:20px
}
.page-faqs {
  padding:100px 0
}
.page-faqs-catagery .page-faq-accordion {
  margin-bottom:60px
}
.page-faqs-catagery .page-faq-accordion:last-child {
  margin-bottom:0
}
.contact-info-box {
  padding:100px 0 20px
}
.forminator-row {
  margin-bottom:0!important
}
.contact-info-item {
  position:relative;
  background-color:var(--secondary-color);
  border-radius:20px;
  margin-bottom:30px;
  padding:30px;
  overflow:hidden
}
.contact-info-item::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:var(--accent-color);
  border-radius:500px 500px 0 0;
  height:0;
  width:100%;
  transition:all .4s ease-in-out;
  z-index:0
}
.contact-info-item:hover::before {
  height:100%;
  border-radius:0
}
.contact-info-content,
.contact-info-item .icon-box {
  position:relative;
  z-index:1
}
.contact-info-item .icon-box {
  height:50px;
  width:50px;
  background-color:var(--accent-color);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:30px;
  transition:all .5s ease-in-out
}
.contact-info-item:hover .icon-box {
  background:var(--white-color)
}
.contact-info-item .icon-box img {
  width:100%;
  max-width:28px;
  transition:all .5s ease-in-out
}
.contact-info-item:hover .icon-box img {
  filter:brightness(0) invert(0)
}
.contact-info-content h3 {
  font-size:22px;
  margin-bottom:10px;
  transition:all .4s ease-in-out
}
.contact-info-content p {
  margin:0;
  transition:all .4s ease-in-out
}
.contact-info-content p a {
  color:inherit
}
.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p {
  color:var(--white-color)
}
.wp-block-acf-tiens-contact-address-card .contact-info-item,
.wp-block-acf-tiens-contact-email-card .contact-info-item,
.wp-block-acf-tiens-contact-hours-card .contact-info-item,
.wp-block-acf-tiens-contact-phone-card .contact-info-item {
  height:100%;
  margin-bottom:0;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start
}
.wp-block-acf-tiens-contact-address-card .contact-info-content,
.wp-block-acf-tiens-contact-email-card .contact-info-content,
.wp-block-acf-tiens-contact-hours-card .contact-info-content,
.wp-block-acf-tiens-contact-phone-card .contact-info-content {
  display:block;
  align-content:initial
}
.wp-block-acf-tiens-contact-address-card .contact-info-content p {
  line-height:1.5em;
  padding-bottom:6px
}
.page-contact-us {
  padding:50px 0 100px
}
.contact-us-box {
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  border-radius:20px;
  overflow:hidden
}
.contact-us-box .contact-form,
.contact-us-image {
  width:50%
}
.contact-us-image {
  display:flex
}
.contact-us-image figure {
  display:block;
  height:100%;
  width:100%;
  margin:0
}
.contact-us-image img {
  display:block;
  width:100%;
  height:100%;
  aspect-ratio:auto;
  object-fit:cover
}
.contact-us-box .contact-form {
  align-content:center
}
.contact-form {
  background-color:var(--secondary-color);
  padding:60px
}
.contact-form .form-control {
  font-size:16px;
  font-weight:400;
  line-height:1.35em;
  color:var(--text-color);
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:10px;
  padding:10px 14px;
  min-height:44px;
  box-shadow:none;
  outline:0
}
.contact-form .forminator-ui .forminator-label {
  font-size:16px;
  font-weight:600;
  line-height:1.4em;
  color:var(--primary-color);
  margin-bottom:10px!important
}
.contact-form .forminator-ui.forminator-custom-form {
  margin:30px 0 0!important
}
.contact-form .forminator-ui.forminator-custom-form .forminator-row {
  margin-left:-10px!important;
  margin-right:-10px!important
}
.contact-form .forminator-ui.forminator-custom-form .forminator-row .forminator-col {
  padding-left:10px!important;
  padding-right:10px!important;
  margin-bottom:24px!important
}
.contact-form .forminator-ui.forminator-custom-form .forminator-field {
  margin-bottom:0!important
}
.contact-form .forminator-ui :is(.forminator-input,
.forminator-select-dropdown) {
  font-size:16px!important;
  font-weight:400!important;
  line-height:1.35em!important;
  color:var(--text-color)!important;
  background:var(--white-color)!important;
  border:1px solid var(--divider-color)!important;
  border-radius:10px!important;
  padding:10px 14px!important;
  min-height:44px!important;
  box-shadow:none!important;
  outline:0!important
}
.contact-form .forminator-ui .forminator-textarea {
  font-size:16px!important;
  font-weight:400!important;
  line-height:1.35em!important;
  color:var(--text-color)!important;
  background:var(--white-color)!important;
  border:1px solid var(--divider-color)!important;
  border-radius:10px!important;
  padding:12px 14px!important;
  box-shadow:none!important;
  outline:0!important
}
.contact-form .forminator-ui :is(.forminator-input,
.forminator-textarea,
.forminator-select-dropdown)::placeholder {
  color:var(--text-color)!important;
  opacity:1!important
}
.contact-form .forminator-ui :is(.forminator-input,
.forminator-textarea,
.forminator-select-dropdown):focus {
  border-color:var(--accent-secondary-color)!important;
  box-shadow:none!important
}
.contact-form .forminator-ui .forminator-character-counter {
  color:var(--primary-color)!important;
  font-size:14px!important
}
.contact-form .forminator-ui .forminator-button-submit {
  background:var(--accent-secondary-color)!important;
  border:none!important;
  border-radius:10px!important;
  color:var(--white-color)!important;
  font-size:16px!important;
  font-weight:700!important;
  line-height:1em!important;
  padding:17px 24px!important;
  transition:all .4s ease-in-out!important;
  box-shadow:none!important
}
.contact-form .forminator-ui .forminator-button-submit:hover {
  background:var(--primary-color)!important
}
.contact-form .forminator-ui.forminator-custom-form .forminator-response-message {
  margin-top:10px!important
}
.contact-form .form-control::placeholder {
  color:var(--text-color)
}
.google-map .container-fluid {
  padding:0
}
.google-map-iframe,
.google-map-iframe iframe {
  height:450px;
  width:100%
}
.google-map-iframe iframe {
  filter:grayscale(1);
  transition:all .4s ease-in-out
}
.google-map-iframe iframe:hover {
  filter:grayscale(0)
}
.page-donation {
  padding:100px 0
}
.donation-box {
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:30px;
  padding:100px
}
.donate-form.donate-form-box {
  width:100%
}
.donate-form-box .form-control {
  border-color:var(--divider-color);
  color:var(--text-color)
}
.donate-form-box .form-control::placeholder {
  color:var(--text-color);
  font-weight:400
}
.donate-form-box .donate-value-box {
  gap:15px;
  margin-bottom:80px
}
.donate-form-box .donate-value {
  width:calc(16.66% - 12.5px)
}
.donate-value-box .donate-value label {
  background:var(--secondary-color);
  color:var(--text-color)
}
.donate-payment-method {
  margin-bottom:80px
}
.donar-personal-info {
  background:var(--secondary-color);
  border-radius:20px
}
.donate-payment-method .section-title {
  border-bottom:1px solid var(--divider-color);
  margin-bottom:30px;
  padding-bottom:30px
}
.donate-payment-type {
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px
}
.donate-payment-type .payment-method {
  display:flex;
  align-items:center
}
.donate-payment-type .payment-method input {
  height:24px;
  width:24px
}
.payment-method label {
  text-transform:capitalize;
  padding-left:10px
}
.error-page {
  padding:100px 0
}
.error-page-image {
  text-align:center;
  margin-bottom:30px
}
.error-page-image img {
  width:100%;
  max-width:50%
}
.error-page-content {
  text-align:center
}
.error-page-content .section-title {
  margin-bottom:15px
}
.our-products {
  padding:100px 0
}
.our-products-images {
  display:flex;
  align-items:center;
  margin-right:10px;
  position:relative
}
.products-img-1,
.products-img-2 {
  border-radius:20px;
  width:100%;
  flex:1
}
.products-img-1 figure,
.products-img-2 figure {
  display:block;
  border-radius:20px;
  aspect-ratio:2/1.2
}
.products-img-1 figure img,
.products-img-2 figure img {
  width:100%;
  object-fit:cover;
  border-radius:20px
}
.products-img-1 figure img {
  /*! aspect-ratio: 2 / 1; */
}
.products-img-2 {
  width:100%;
  max-width:310px;
  margin-left:-111px
}
.products-img-2 figure {
  border:4px solid var(--white-color);
  border-radius:24px
}
.products-img-2 figure img {
  aspect-ratio:1/1.2
}
.products-experience-circle {
  position:absolute;
  display:inline-block;
  border:4px solid var(--white-color);
  border-radius:50%;
  bottom:25px;
  z-index:1;
  right:-60px
}
.products-experience-circle img {
  width:100%;
  max-width:120px;
  border-radius:50%;
  animation:infiniterotate 20s infinite linear
}
@keyframes infiniterotate {
  from {
    transform:rotate(0)
  }
  to {
    transform:rotate(360deg)
  }
}
.products-body-item {
  display:flex;
  flex-wrap:wrap;
  border-bottom:1px solid var(--divider-color);
  margin-bottom:40px;
  padding-bottom:40px
}
.products-body-item:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.products-body-item .icon-box {
  position:relative;
  height:50px;
  width:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--accent-color);
  border-radius:50%;
  margin-right:20px
}
.products-body-item .icon-box:before {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:var(--primary-color);
  border-radius:50%;
  height:100%;
  width:100%;
  transform:scale(0);
  transition:all .4s ease-in-out;
  z-index:0
}
.products-body-item:hover .icon-box::before {
  transform:scale(1)
}
.products-body-item .icon-box img {
  position:relative;
  width:100%;
  max-width:30px;
  z-index:1
}
.products-body-item-content {
  width:calc(100% - 70px)
}
.products-body-item-content h3 {
  font-size:20px;
  text-transform:capitalize;
  margin-bottom:10px;
  color:#333;
  margin-top:30px
}
.products-body-item-content p {
  margin-bottom:0;
  color:#525252
}
.page-product-single {
  padding:100px 0
}
.product-category-list {
  background:var(--secondary-color);
  border-radius:20px;
  margin-bottom:60px;
  overflow:hidden
}
.product-category-list h3 {
  font-size:22px;
  color:var(--white-color);
  text-transform:capitalize;
  background-color:var(--primary-color);
  padding:30px
}
.product-category-list ul {
  margin:0;
  padding:30px;
  list-style:none
}
.product-category-list ul li {
  font-size:20px;
  font-weight:600;
  text-transform:capitalize;
  line-height:normal;
  color:var(--primary-color);
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--divider-color);
  margin-bottom:20px;
  padding-bottom:20px
}
.product-category-list ul li:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.product-category-list ul li span {
  width:65%;
  font-size:16px;
  font-weight:400;
  color:var(--text-color)
}
.product-entry {
  margin-bottom:60px
}
.product-entry p {
  margin-bottom:20px
}
.product-entry p:last-child {
  margin-bottom:0
}
.product-entry h2 {
  font-size:40px;
  font-weight:500;
  margin-bottom:20px
}
.tiens-product-b2c-wrap {
  margin-top:24px;
  margin-bottom:0
}
.tiens-product-b2c-link {
  display:block;
  width:100%;
  text-align:center;
  box-sizing:border-box
}
.product-entry ul {
  list-style:none;
  padding:0;
  margin-bottom:20px
}
.product-entry ul li {
  line-height:1.5em;
  background-image:url('../images/arrow-accent-secondary.svg');
  background-repeat:no-repeat;
  background-position:left top 1px;
  background-size:20px auto;
  padding-left:30px;
  margin-bottom:15px
}
.product-entry ul li:last-child {
  margin-bottom:0
}
.product-innovation-image-list {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px 30px;
  margin-top:40px
}
.product-innovation-image,
.product-innovation-list {
  width:100%
}
.product-innovation-image figure {
  display:block;
  border-radius:20px
}
.product-innovation-image img {
  width:100%;
  aspect-ratio:1/0.62;
  object-fit:cover;
  border-radius:20px
}
.product-challenge-list {
  display:flex;
  flex-wrap:wrap;
  gap:20px 30px;
  margin-top:40px
}
.product-challenge-list .environment-body-item {
  width:calc(50% - 15px);
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.product-challenge-video-box {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  margin-top:40px
}
.product-challenge-image,
.product-challenge-video {
  width:calc(50% - 15px)
}
.product-challenge-image figure {
  display:block;
  border-radius:20px
}
.product-challenge-image img {
  width:100%;
  aspect-ratio:1/0.881;
  object-fit:cover;
  border-radius:20px
}
.product-environment-body-item {
  border-bottom:1px solid var(--divider-color);
  margin-bottom:10px;
  padding-bottom:10px
}
.product-environment-body-item:last-child {
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none
}
.product-environment-body-item .icon-box {
  position:relative;
  height:36px;
  width:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-color);
  border-radius:50%;
  margin-right:10px
}
.product-environment-body-item .icon-box:before {
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:var(--primary-color);
  border-radius:50%;
  height:100%;
  width:100%;
  transform:scale(0);
  transition:all .4s ease-in-out;
  z-index:0
}
.product-environment-body-item:hover .icon-box::before {
  transform:scale(1)
}
.product-environment-body-item .icon-box img {
  position:relative;
  width:100%;
  max-width:25px;
  z-index:1
}
.product-environment-body-item-content {
  width:calc(100% - 70px);
  padding-left:30px
}
.product-environment-body-item h3 {
  font-size:18px;
  text-transform:capitalize;
  font-weight:600;
  color:#333;
  margin-left:10px;
  margin-bottom:5px
}
.product-environment-body-item-content p {
  margin-bottom:0
}
.challenge-image-video {
  position:relative
}
.challenge-image-video figure {
  display:block;
  border-radius:20px
}
.challenge-image-video img {
  width:100%;
  aspect-ratio:1/0.634;
  object-fit:cover;
  border-radius:20px
}
.challenge-image-video .video-play-button {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1
}
.video-play-button a {
  height:85px;
  width:85px;
  background-color:var(--accent-secondary-color);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:none;
  transition:all .4s ease-in-out
}
.video-play-button a:hover {
  background-color:var(--primary-color)
}
.video-play-button a:before {
  content:'';
  position:absolute;
  top:-30%;
  left:-30%;
  width:160%;
  height:160%;
  border:50px solid var(--white-color);
  opacity:70%;
  border-radius:50%;
  transform:scale(.6);
  z-index:-1;
  animation:border-zooming 1.2s infinite linear
}
.video-play-button a:after {
  content:'';
  position:absolute;
  top:-30%;
  left:-30%;
  width:160%;
  height:160%;
  border:50px solid var(--white-color);
  opacity:70%;
  border-radius:50%;
  transform:scale(.6);
  z-index:-1;
  animation:border-zooming 1.2s infinite linear;
  animation-delay:.3s
}
@keyframes border-zooming {
  100% {
    transform:scale(1);
    opacity:0
  }
}
.video-play-button a i {
  font-size:30px;
  color:var(--white-color);
  margin-left:2px;
  transition:all .4s ease-in-out
}
.video-play-button a:hover i {
  color:var(--accent-secondary-color)
}
.project-challenge-video ul {
  margin:30px 0 0
}
.owl-carousel .owl-item img {
  height:100%;
  width:auto;
  margin:auto
}
#sync1 .item {
  padding:80px 0;
  margin:5px;
  color:#fff;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  text-align:center;
  aspect-ratio:1/1
}
#sync2 .item {
  padding:10px 0;
  margin:5px;
  color:#fff;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  text-align:center;
  cursor:pointer;
  aspect-ratio:1/1
}
#sync2 .item h1 {
  font-size:18px
}
#sync2 .current .item {
  background:#0c83e7
}
.owl-theme .owl-nav [class*=owl-] {
  transition:all .3s ease
}
.owl-theme .owl-nav [class*=owl-].disabled:hover {
  background-color:#d6d6d6
}
#sync1.owl-theme {
  position:relative
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width:40px;
  height:40px;
  margin-top:-20px;
  position:absolute;
  top:50%;
  padding:5px!important
}
#sync1.owl-theme .owl-prev {
  left:10px
}
#sync1.owl-theme .owl-next {
  right:10px
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background:0 0!important
}
.owl-theme .owl-nav [class*=owl-]:hover svg path {
  stroke:var(--primary-color)!important
}
@media only screen and (max-width:991px) {
	.product-page-header .page-header-box span{
		font-size: 20px !important;
	}
	.our-products{
		padding: 0 !important;
	}
  .btn-default {
    padding:15px 40px 15px 15px
  }
  .btn-default::before {
    width:18px;
    height:18px;
    transform:translate(-15px,-50%)
  }
  .btn-default:hover::before {
    transform:translate(-12px,-50%)
  }
  .navbar {
    padding:20px 0
  }
  .slicknav_nav li,
  .slicknav_nav ul {
    display:block
  }
  .navbar-toggle,
  .responsive-menu {
    display:block
  }
  .header-btn {
    display:none
  }
  .section-row {
    margin-bottom:40px
  }
  .section-title {
    margin-bottom:30px
  }
  .section-title h3 {
    font-size:14px;
    background-size:22px auto;
    padding-left:30px;
    margin-bottom:10px
  }
  .section-title h1 {
    font-size:55px
  }
  .hero .section-title h1 {
    font-size:55px
  }
  .section-title h2 {
    font-size:36px
  }
  .section-title p {
    margin-top:10px
  }
  .section-title-content {
    margin-top:15px
  }
  .section-btn {
    text-align:left;
    margin-top:15px
  }
  .section-content-btn .section-btn {
    margin-top:15px
  }
  .hero {
    padding:180px 0 90px
  }
  .hero.hero-slider-layout .hero-slide {
    padding:180px 0 90px
  }
  .hero.hero-slider-layout .hero-pagination {
    bottom:30px;
    padding-left:15px
  }
  .our-scrolling-ticker {
    padding:15px 0
  }
  .scrolling-ticker-box {
    --gap:15px
  }
  .scrolling-content span {
    font-size:36px
  }
  .scrolling-content span img {
    width:22px;
    margin-right:15px
  }
  .about-us {
    padding:50px 0;
    background-size:80% auto;
    background-position:bottom -60px right -130px
  }
  .about-images {
    width:100%;
    max-width:75%;
    margin:0 auto 30px
  }
  .about-img-1 img,
  .about-img-2 img {
    aspect-ratio:1/1.7
  }
  .years-experience-box {
    width:140px;
    height:140px;
    border-width:5px
  }
  .years-experience-box h2 {
    font-size:36px
  }
  .about-us-content {
    margin-left:0
  }
  .about-body-item {
    padding:15px
  }
  .about-body-item .icon-box {
    width:50px;
    height:50px
  }
  .about-body-item .icon-box img {
    max-width:30px
  }
  .about-body-item-title {
    width:calc(100% - 60px)
  }
  .about-author-box .author-info h3,
  .about-body-item-title h3 {
    font-size:20px
  }
  .about-us-footer {
    margin-top:30px
  }
  .our-services {
    background-position:bottom -20px left -20px;
    background-size:240px auto;
    padding:50px 0
  }
  .service-item {
    padding:20px
  }
  .service-item .icon-box {
    height:60px;
    width:60px;
    margin-bottom:40px
  }
  .service-item .icon-box img {
    max-width:36px
  }
  .service-item-content {
    margin-bottom:20px;
    padding-bottom:20px
  }
  .service-item-content h3 {
    font-size:20px
  }
  .service-pagination {
    margin-top:30px
  }
  .why-choose-us {
    padding:50px 0
  }
  .why-choose-content {
    margin:0 0 30px 0
  }
  .why-choose-list {
    padding:20px
  }
  .why-choose-list ul li {
    background-size:18px auto;
    background-position:left top 2px;
    padding-left:25px;
    margin-bottom:15px
  }
  .why-choose-btn {
    margin-top:30px
  }
  .why-choose-images {
    width:100%;
    max-width:80%;
    margin:0 auto
  }
  .our-projects {
    padding:50px 0
  }
  .project-image img {
    aspect-ratio:1/1.02
  }
  .project-body {
    left:20px;
    bottom:20px;
    right:20px
  }
  .project-content h3 {
    font-size:20px;
    margin-bottom:10px
  }
  .section-footer-text {
    margin-top:10px
  }
  .section-footer-text span {
    font-size:14px
  }
  .our-environment {
    padding:50px 0
  }
  .our-environment-images {
    margin-right:0;
    margin-bottom:30px
  }
  .environment-img-1 figure img {
    width:100%;
    aspect-ratio:1/1.02;
    border-radius:20px
  }
  .environment-img-2 figure img {
    aspect-ratio:1/1.09
  }
  .experience-circle img {
    max-width:130px
  }
  .environment-body-item {
    margin-bottom:30px;
    padding-bottom:30px
  }
  .environment-body-item-content h3 {
    font-size:20px
  }
  .our-facts {
    margin-top:0;
    padding:50px 0 0
  }
  .our-fact-content {
    height:auto;
    margin:0 0 30px 0
  }
  .fact-list ul {
    gap:15px 20px
  }
  .fact-list ul li {
    width:calc(50% - 10px);
    background-size:18px auto;
    background-position:left top 2px;
    padding-left:25px
  }
  .fact-counter-list {
    margin-top:30px;
    padding-top:30px
  }
  .fact-counter-item img {
    margin-bottom:15px
  }
  .fact-counter-item h2 {
    font-size:36px;
    margin-bottom:5px
  }
  .our-fact-image {
    padding:0;
    margin:0
  }
  .our-fact-image img {
    max-width:60%
  }
  .what-we-do {
    padding:50px 0
  }
  .What-we-do-content {
    position:initial;
    margin:0 0 30px 0
  }
  .what-we-do-list ul li {
    background-position:left top 2px;
    background-size:18px auto;
    padding-left:25px;
    margin-bottom:15px
  }
  .what-we-do-btn {
    margin-top:30px
  }
  .what-we-do-item {
    padding:20px
  }
  .what-we-do-item .icon-box {
    margin-bottom:30px
  }
  .what-we-do-item .icon-box img {
    max-width:50px
  }
  .what-do-item-content h3 {
    font-size:20px;
    margin-bottom:10px
  }
  .what-we-do-box .section-footer-text {
    margin-top:40px
  }
  .how-it-work {
    padding:50px 0 0;
    margin-bottom:220px
  }
  .work-step-item {
    width:calc(50% - 15px)
  }
  .work-step-image {
    margin-bottom:15px
  }
  .work-step-content {
    padding-top:20px
  }
  .work-step-content h2 {
    font-size:65px
  }
  .work-step-content h3 {
    font-size:20px;
    margin-bottom:10px
  }
  .donate-box {
    padding:40px;
    margin-top:40px
  }
  .donate-box .section-title,
  .donate-form {
    width:100%
  }
  .donate-form .form-control {
    padding:12px 15px
  }
  .donate-value-box .donate-value label {
    padding:12px
  }
  .donate-form .form-group-btn .btn-default.btn-highlighted {
    padding:15px
  }
  .our-faqs {
    padding:50px 0
  }
  .faq-image {
    margin-bottom:30px
  }
  .faq-image img {
    aspect-ratio:1/0.56
  }
  .client-review-content p {
    font-size:18px;
    margin-bottom:5px
  }
  .faq-accordion .accordion-item {
    margin-bottom:20px
  }
  .faq-accordion .accordion-header .accordion-button {
    font-size:20px;
    padding:14px 40px 14px 15px
  }
  .faq-accordion .accordion-item .accordion-button.collapsed::after,
  .faq-accordion .accordion-item .accordion-button::after {
    right:15px;
    font-size:10px;
    width:18px;
    height:18px
  }
  .faq-accordion .accordion-item .accordion-body {
    padding:14px 40px 14px 15px
  }
  .our-testimonials {
    padding:50px 0
  }
  .review-box {
    margin-top:15px;
    justify-content:start
  }
  .testimonial-image {
    margin-bottom:30px
  }
  .testimonial-image img {
    aspect-ratio:1/0.59
  }
  .testimonial-slider {
    margin:0
  }
  .testimonial-header {
    margin-bottom:30px
  }
  .testimonial-content {
    padding-bottom:30px;
    margin-bottom:30px
  }
  .author-content h3 {
    font-size:20px
  }
  .testimonial-company-slider {
    margin-top:40px;
    padding-top:40px
  }
  .our-blog {
    padding:50px 0
  }
  .post-item.highlighted-post-item {
    margin-bottom:30px
  }
  .post-featured-image img {
    aspect-ratio:1/0.557
  }
  .post-item-body {
    padding:20px
  }
  .post-item-content h2 {
    font-size:20px;
    margin-bottom:10px
  }
  .main-footer {
    padding:50px 0 0
  }
  .main-footer-box {
    margin-bottom:30px;
    padding-bottom:30px
  }
  .footer-logo {
    width:100%;
    text-align:center;
    margin-bottom:30px
  }
  .footer-contact-details {
    width:100%;
    justify-content:center;
    gap:20px
  }
  .footer-contact-item .icon-box {
    width:50px;
    height:50px;
    margin-right:10px
  }
  .footer-contact-item .icon-box img {
    max-width:26px
  }
  .footer-contact-item-content {
    width:calc(100% - 60px)
  }
  .footer-contact-item-content h3 {
    font-size:20px
  }
  .about-footer {
    padding-right:30px;
    margin-bottom:30px
  }
  .footer-social-links {
    margin-top:30px
  }
  .footer-links {
    margin-bottom:30px
  }
  .footer-links h3 {
    font-size:20px;
    margin-bottom:20px
  }
  .footer-links ul li {
    margin-bottom:10px
  }
  .newsletter-form {
    padding-left:0
  }
  .footer-copyright {
    padding:30px 0;
    margin-top:0
  }
  .product-entry h2{
  	font-size: 36px;
  }
  .product-single-content{
  	padding: 30px 0;
  }
  .page-product-single{
  	padding: 50px 0 100px 0;
  }
  .page-header {
    padding:130px 0 70px
  }
  .page-header-box h1 {
    font-size:55px;
    margin-bottom:5px
  }
  .our-scrolling-ticker.subpages-scrolling-ticker {
    padding:10px 0
  }
  .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
    width:18px
  }
  .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
    font-size:30px
  }
  .our-approach {
    background-size:200px auto;
    padding:50px 0
  }
  .our-approach-content {
    position:initial;
    top:0;
    margin-right:0;
    margin-bottom:30px
  }
  .our-approach-nav {
    margin-bottom:30px
  }
  .our-approach-nav ul li .nav-link {
    padding:20px;
    gap:15px;
    font-size:20px
  }
  .our-approach-nav ul li .nav-link span {
    width:50px;
    height:50px
  }
  .our-approach-nav ul li .nav-link span img {
    max-width:30px
  }
  .our-solutions {
    padding:50px 0
  }
  .our-solution-content {
    margin-right:0;
    margin-bottom:30px
  }
  .solution-support-title {
    margin-bottom:20px
  }
  .solution-image-2 img {
    aspect-ratio:1/1.2
  }
  .solution-support-title h2 {
    font-size:36px
  }
  .our-team {
    padding:50px 0 20px
  }
  .team-image img {
    aspect-ratio:1/0.99
  }
  .team-content h2 {
    font-size:20px
  }
  .our-feature {
    padding:50px 0
  }
  .our-feature-content {
    margin-bottom:30px
  }
  .feature-item-content h3 {
    font-size:20px;
    margin-bottom:10px
  }
  .feature-item .icon-box {
    width:60px;
    height:60px;
    margin-bottom:20px
  }
  .feature-item .icon-box img {
    max-width:34px
  }
  .feature-list {
    margin-top:30px;
    padding-top:30px
  }
  .feature-images {
    margin-left:0
  }
  .feature-image-2 img {
    aspect-ratio:1/0.9
  }
  .page-services {
    padding:50px 0
  }
  .page-services .service-item {
    width:calc(50% - 15px)
  }
  .page-service-single {
    padding:50px 0
  }
  .page-single-sidebar {
    position:initial;
    margin:0 0 30px 0
  }
  .page-catagery-list {
    margin-bottom:30px
  }
  .page-catagery-list h3 {
    font-size:20px;
    padding:20px
  }
  .page-catagery-list ul {
    padding:20px
  }
  .page-catagery-list ul li a {
    padding:10px 40px 10px 15px
  }
  .page-catagery-list ul li a::before {
    right:15px;
    width:18px;
    height:18px
  }
  .sidebar-cta-box {
    padding:35px 25px
  }
  .sidebar-cta-content img {
    width:120px;
    margin-bottom:20px
  }
  .sidebar-cta-content h3 {
    font-size:20px
  }
  .sidebar-cta-contact ul li {
    margin-bottom:15px
  }
  .sidebar-cta-contact ul li a {
    padding:6px 20px
  }
  .page-project-single figure.wp-block-image,
  .page-single-image {
    margin-bottom:30px
  }
  .service-entry {
    margin-bottom:40px
  }
  .service-entry p {
    margin-bottom:15px
  }
  .service-entry h2 {
    font-size:36px;
    margin-bottom:15px
  }
  .service-entry ul li {
    background-position:left top 2px;
    background-size:18px auto;
    padding-left:25px;
    margin-bottom:10px
  }
  .service-driving-box,
  .service-solutions-box {
    margin-top:40px
  }
  .service-solutions-box ul {
    margin:20px 0
  }
  .service-solution-steps {
    margin-top:30px
  }
  .solution-step-item {
    padding:20px
  }
  .solution-item-header {
    margin-bottom:30px
  }
  .solution-step-item .icon-box {
    height:60px;
    width:60px
  }
  .solution-step-item .icon-box img {
    max-width:36px
  }
  .solution-step-no h2 {
    margin-bottom:0
  }
  .solution-item-content h3 {
    font-size:20px;
    margin-bottom:10px
  }
  .service-driving-image-box figure {
    margin-top:30px
  }
  .service-driving-item-list .environment-body-item {
    margin-bottom:20px;
    padding-bottom:20px
  }
  .page-blog {
    padding:50px 0
  }
  .page-pagination {
    margin-top:10px
  }
  .page-single-post {
    padding:50px 0
  }
  .post-image {
    margin-bottom:20px
  }
  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin:0 0 .417em
  }
  .post-entry h2 {
    font-size:36px
  }
  .post-entry p {
    margin-bottom:15px
  }
  .post-entry ol li,
  .post-entry ul li {
    margin-bottom:10px
  }
  .post-entry blockquote {
    background-position:20px 20px;
    background-size:40px;
    padding:20px 20px 20px 70px;
    margin-bottom:20px
  }
  .post-entry blockquote p {
    font-size:18px
  }
  .post-tags {
    margin-bottom:20px
  }
  .tag-links {
    font-size:20px
  }
  .post-tags .tag-links a {
    padding:12px 15px
  }
  .post-social-sharing ul {
    text-align:left
  }
  .page-projects {
    padding:50px 0 20px
  }
  .page-project-single {
    padding:50px 0
  }
  .project-category-list {
    margin-bottom:30px
  }
  .project-category-list h3 {
    font-size:20px;
    padding:20px
  }
  .project-category-list ul {
    padding:20px
  }
  .project-category-list ul li {
    margin-bottom:15px;
    padding-bottom:15px
  }
  .project-entry {
    margin-bottom:40px
  }
  .project-entry p {
    margin-bottom:15px
  }
  .project-entry h2 {
    font-size:36px;
    margin-bottom:15px
  }
  .project-entry ul li {
    background-position:left top 2px;
    background-size:18px auto;
    padding-left:25px;
    margin-bottom:10px
  }
  .project-challenge-box,
  .project-innovation-box {
    margin-top:40px
  }
  .project-challenge-list,
  .project-challenge-video-box,
  .project-innovation-image-list {
    margin-top:30px
  }
  .video-play-button a {
    height:70px;
    width:70px
  }
  .video-play-button a i {
    font-size:26px
  }
  .project-challenge-video ul {
    margin:20px 0 0
  }
  .page-team {
    padding:50px 0 20px
  }
  .page-team-single {
    padding:50px 0
  }
  .team-about-box,
  .team-expertise-experience {
    margin-bottom:40px
  }
  .team-about-content,
  .team-single-image {
    width:100%
  }
  .team-single-image img {
    aspect-ratio:1/0.75
  }
  .team-contact-info-box {
    padding:20px
  }
  .team-contact-content h3 {
    font-size:20px
  }
  .member-social-list {
    margin-top:30px;
    padding-top:30px
  }
  .member-social-list h3 {
    font-size:20px
  }
  .team-experience-box,
  .team-expertise-box {
    width:100%
  }
  .team-expertise-list ul li {
    background-position:left top 2px;
    background-size:18px auto;
    padding-left:25px;
    margin-bottom:10px
  }
  .team-experience-info-item {
    margin-bottom:20px
  }
  .team-experience-content h3 {
    font-size:20px
  }
  .team-member-form,
  .team-skills-box {
    width:100%
  }
  .skills-progress-bar {
    margin-bottom:20px
  }
  .skills-progress-bar .skill-data {
    margin-bottom:15px
  }
  .skills-progress-bar .skillbar .skill-progress {
    height:14px
  }
  .page-testimonials {
    padding:50px 0 20px
  }
  .page-testimonials .testimonial-item {
    padding:20px
  }
  .page-testimonials .testimonial-item .testimonial-header {
    margin-bottom:10px
  }
  .page-gallery {
    padding:50px 0 20px
  }
  .page-video-gallery {
    padding:50px 0 20px
  }
  .page-faqs {
    padding:50px 0
  }
  .page-faqs-catagery .page-faq-accordion {
    margin-bottom:40px
  }
  .contact-info-box {
    padding:50px 0 0
  }
  .contact-info-item {
    padding:20px
  }
  .contact-info-item .icon-box {
    margin-bottom:20px
  }
  .contact-info-content h3 {
    font-size:20px
  }
  .page-contact-us {
    padding:20px 0 50px
  }
  .contact-us-box .contact-form,
  .contact-us-image {
    width:100%
  }
  .contact-form {
    padding:40px
  }
  .contact-us-image figure,
  .contact-us-image img {
    height:auto
  }
  .contact-us-image img {
    height:clamp(280px,62vw,420px);
    aspect-ratio:auto
  }
  .contact-form .form-control,
  .contact-form .forminator-ui :is(.forminator-input,
  .forminator-textarea,
  .forminator-select-dropdown) {
    padding:10px 14px
  }
  .contact-form .forminator-ui.forminator-custom-form .forminator-row {
    margin-left:0!important;
    margin-right:0!important
  }
  .contact-form .forminator-ui.forminator-custom-form .forminator-row .forminator-col {
    padding-left:0!important;
    padding-right:0!important;
    margin-bottom:18px!important
  }
  .google-map-iframe,
  .google-map-iframe iframe {
    height:450px
  }
  .page-donation {
    padding:50px 0
  }
  .donation-box {
    padding:60px 30px;
    border-radius:20px
  }
  .donate-form-box .form-control {
    padding:12px 20px
  }
  .donate-form-box .donate-value-box {
    margin-bottom:40px
  }
  .donate-form-box .donate-value label {
    padding:12px
  }
  .donate-payment-method {
    margin-bottom:40px
  }
  .donate-payment-method .section-title {
    margin-bottom:20px;
    padding-bottom:20px
  }
  .donate-payment-type .payment-method input {
    height:20px;
    width:20px
  }
  .error-page {
    padding:50px 0
  }
  .error-page-image {
    margin-bottom:20px
  }
  .error-page-image img {
    max-width:80%
  }
}
@media only screen and (max-width:767px) {
  .section-row {
    margin-bottom:30px
  }
  .section-title h1 {
    font-size:30px
  }
  .hero .section-title h1 {
    font-size:30px
  }
  .section-title h2 {
    font-size:26px
  }
  .section-title p {
    margin-top:10px
  }
  .section-title-content {
    margin-top:10px
  }
  .hero .section-title p {
    font-size:clamp(14px, 4.5vw, 22px);
    margin-top:16px
  }
  .hero-review-image figure {
    width:50px;
    height:50px
  }
  .scrolling-content span {
    font-size:26px
  }
  .scrolling-content span img {
    width:18px
  }
  .about-images {
    max-width:100%;
    gap:20px
  }
  .about-img-1,
  .about-img-2 {
    width:calc(50% - 10px)
  }
  .about-img-2 {
    margin-top:50px
  }
  .years-experience-box {
    width:110px;
    height:110px
  }
  .years-experience-box h2 {
    font-size:26px
  }
  .years-experience-box p {
    font-size:14px
  }
  .about-us {
    background-position:bottom -30px right -90px;
    background-size:130% auto
  }
  .about-us-body {
    gap:20px
  }
  .about-body-item {
    width:100%
  }
  .service-item .icon-box {
    margin-bottom:30px
  }
  .why-choose-list {
    padding:10px;
    border-radius:10px
  }
  .why-choose-list ul li {
    font-size:14px;
    margin-bottom:10px
  }
  .why-choose-btn {
    margin-top:20px
  }
  .why-choose-images {
    max-width:100%;
    gap:20px
  }
  .why-choose-image-box-1 {
    width:calc(48% - 10px);
    gap:20px
  }
  .why-choose-image-box-2 {
    width:calc(52% - 10px);
    margin-top:50px
  }
  .environment-img-2 {
    max-width:180px;
    margin-left:-80px
  }
  .environment-img-1 figure img {
    aspect-ratio:1/1.3
  }
  .experience-circle img {
    max-width:90px
  }
  .environment-body-item {
    margin-bottom:20px;
    padding-bottom:20px
  }
  .environment-body-item .icon-box {
    margin-right:10px
  }
  .environment-body-item-content {
    width:calc(100% - 60px)
  }
  .fact-list ul {
    gap:10px
  }
  .fact-list ul li {
    width:100%
  }
  .fact-counter-list {
    gap:30px 20px
  }
  .fact-counter-item {
    width:calc(33.33% - 13.33px);
    text-align:center
  }
  .fact-counter-item:after {
    right:-10px
  }
  .fact-counter-item h2 {
    font-size:26px
  }
  .our-fact-image img {
    max-width:100%
  }
  .what-we-do-list ul li {
    margin-bottom:10px
  }
  .what-we-do-item {
    width:100%
  }
  .what-we-do-item .icon-box {
    margin-bottom:20px
  }
  .work-step-item {
    width:100%
  }
  .work-step-content {
    padding-top:10px
  }
  .work-step-content h2 {
    font-size:50px
  }
  .work-step-content h3 {
    margin-bottom:5px
  }
  .donate-box {
    padding:30px 20px
  }
  .donate-value-box .donate-value label {
    font-size:14px;
    padding:10px
  }
  .faq-image img {
    aspect-ratio:1/0.82
  }
  .client-review-content {
    bottom:15px;
    right:15px;
    left:15px
  }
  .client-review-content p {
    font-size:14px
  }
  .faq-accordion .accordion-item .accordion-body {
    padding:14px 15px
  }
  .review-image {
    margin-right:15px;
    padding-right:15px
  }
  .review-image img {
    max-width:120px
  }
  .testimonial-image img {
    aspect-ratio:1/0.7
  }
  .testimonial-header {
    margin-bottom:20px
  }
  .testimonial-company-logo img {
    max-width:150px
  }
  .testimonial-quote img {
    max-width:34px
  }
  .testimonial-content {
    margin-bottom:20px;
    padding-bottom:20px
  }
  .testimonial-content p {
    font-size:14px
  }
  .testimonial-pagination {
    position:initial;
    margin-top:20px;
    justify-content:center
  }
  .testimonial-company-slider {
    margin-top:30px;
    padding-top:30px
  }
  .post-item .post-featured-image,
  .post-item .post-item-body {
    width:100%
  }
  .post-item-content {
    margin-bottom:15px
  }
  .post-item-content h2 {
    font-size:18px;
    margin-bottom:5px
  }
  .footer-logo {
    text-align:left
  }
  .footer-contact-item {
    width:100%
  }
  .footer-contact-item .icon-box {
    width:45px;
    height:45px
  }
  .footer-contact-item-content {
    width:calc(100% - 55px)
  }
  .about-footer {
    padding-right:0
  }
  .about-footer .footer-links {
    margin-bottom:20px
  }
  .footer-social-links {
    margin-top:20px
  }
  .footer-links h3 {
    margin-bottom:15px
  }
  .newsletter-form p {
    margin-bottom:20px
  }
  .footer-copyright {
    padding:15px 0
  }
  .footer-copyright-text,
  .footer-privacy-policy {
    text-align:center
  }
  .footer-privacy-policy {
    margin-top:10px
  }
  .page-header-box h1 {
    font-size:36px
  }
  .page-header-box ol li.breadcrumb-item {
    font-size:14px
  }
  .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
    font-size:20px
  }
  .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
    width:14px
  }
  .our-approach-nav {
    margin-bottom:20px
  }
  .our-approach-nav ul li .nav-link {
    padding:15px;
    gap:10px;
    font-size:18px
  }
  .our-approach-nav ul li .nav-link span img {
    max-width:26px
  }
  .approach-tab-image,
  .approach-tab-list {
    width:100%
  }
  .approach-tab-list ul li {
    margin-bottom:10px;
    background-size:18px auto;
    padding-left:25px
  }
  .our-solution-list ul {
    gap:10px
  }
  .our-solution-list ul li {
    width:100%;
    background-size:18px auto;
    padding-left:25px
  }
  .our-solution-images {
    gap:20px
  }
  .solution-image-box {
    width:100%
  }
  .solution-support-box {
    margin-bottom:20px
  }
  .solution-support-title {
    margin-bottom:15px
  }
  .solution-support-title h2 {
    font-size:26px
  }
  .solution-image-2 img {
    aspect-ratio:1/0.9
  }
  .team-content {
    padding:15px
  }
  .feature-item-box {
    gap:20px
  }
  .feature-item {
    width:calc(50% - 10px)
  }
  .feature-item-content p {
    font-size:14px
  }
  .feature-list {
    margin-top:20px;
    padding-top:20px
  }
  .feature-list ul {
    gap:10px
  }
  .feature-list ul li {
    width:100%
  }
  .feature-image-1 {
    max-width:200px;
    margin-right:-80px
  }
  .feature-image-2 {
    padding-top:80px
  }
  .feature-image-2 img {
    aspect-ratio:1/1.1
  }
  .feature-experience-circle {
    left:10px;
    bottom:15px
  }
  .feature-experience-circle img {
    max-width:90px
  }
  .page-services .service-item {
    width:100%
  }
  .page-catagery-list h3 {
    padding:15px 20px
  }
  .sidebar-cta-content img {
    margin-bottom:20px
  }
  .page-project-single figure.wp-block-image,
  .page-single-image {
    margin-bottom:20px
  }
  .page-project-single figure.wp-block-image img,
  .page-single-image img {
    aspect-ratio:1/0.7
  }
  .service-entry h2 {
    font-size:26px
  }
  .service-solutions-box ul {
    margin:20px 0
  }
  .solution-step-item {
    width:100%
  }
  .solution-step-item .solution-step-no h2 {
    font-size:36px
  }
  .service-driving-image-box,
  .service-driving-item-list {
    width:100%
  }
  .service-driving-image-box figure {
    margin-top:20px
  }
  .service-driving-item-list .environment-body-item {
    margin-bottom:15px;
    padding-bottom:15px
  }
  .post-single-meta ol li {
    font-size:14px
  }
  .post-single-meta ol li i {
    font-size:14px
  }
  .post-image img {
    aspect-ratio:1/0.7
  }
  .post-entry blockquote {
    background-position:15px 15px;
    padding:60px 15px 15px 15px
  }
  .post-entry blockquote p {
    font-size:14px
  }
  .post-entry h2 {
    font-size:26px
  }
  .tag-links {
    font-size:18px
  }
  .project-category-list h3 {
    padding:15px 20px
  }
  .project-category-list ul li {
    font-size:14px
  }
  .project-category-list ul li span {
    width:68%
  }
  .project-entry h2 {
    font-size:26px
  }
  .project-innovation-image,
  .project-innovation-list {
    width:100%
  }
  .project-challenge-list .environment-body-item {
    width:100%
  }
  .project-challenge-image,
  .project-challenge-video {
    width:100%
  }
  .project-challenge-image img {
    aspect-ratio:1/0.68
  }
  .team-single-image img {
    aspect-ratio:1/0.9
  }
  .team-contact-list {
    gap:20px
  }
  .team-contact-box {
    width:100%
  }
  .team-contact-box .icon-box {
    width:45px;
    height:45px;
    margin-right:10px
  }
  .team-contact-box .icon-box img {
    max-width:26px
  }
  .team-contact-content {
    width:calc(100% - 55px)
  }
  .member-social-list {
    margin-top:20px;
    padding-top:20px
  }
  .member-social-list ul li {
    margin-right:5px
  }
  .team-experience-info-item {
    gap:5px
  }
  .team-experience-content,
  .team-experience-year {
    width:100%
  }
  .team-experience-year {
    text-align:left
  }
  .skills-progress-bar .skill-data {
    margin-bottom:10px
  }
  .contact-form {
    padding:20px
  }
  .google-map-iframe,
  .google-map-iframe iframe {
    height:350px
  }
  .donation-box {
    padding:30px 20px
  }
  .donate-form-box .form-control {
    padding:12px 15px
  }
  .donate-form-box .donate-value {
    width:calc(33.33% - 10px)
  }
  .donate-payment-type .payment-method input {
    height:16px;
    width:16px
  }
}
.our-scrolling-ticker {
  margin-block-start:0!important;
  margin-block-end:0!important
}
.wp-site-blocks {
  padding:0!important;
  margin:0!important
}
.wp-site-blocks>.wp-block-template-part {
  margin:0!important;
  padding:0!important
}
.wp-site-blocks>.wp-block-template-part:first-child {
  margin-top:0!important
}
.wp-site-blocks>.wp-block-group,
.wp-site-blocks>main {
  margin-top:0!important;
  margin-bottom:0!important
}
.wp-block-template-part>.wp-block-group,
.wp-block-template-part>div {
  max-width:none!important;
  padding:0!important;
  margin:0!important
}
body .main-header {
  position:relative;
  z-index:10000;
  isolation:isolate
}
body .main-header .header-contact-btn {
  display:flex;
  align-items:center;
  gap:10px
}
@media (min-width:992px) {
  body .main-header .collapse.navbar-collapse.main-menu {
    display:flex!important;
    align-items:center
  }
}
body .main-footer {
  position:relative;
  margin-top:110px
}
.wp-block-columns {
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:30px;
  max-width:1300px;
  margin-left:auto;
  margin-right:auto;
  padding-left:15px;
  padding-right:15px;
  box-sizing:border-box;
  margin-bottom:0
}
.container .wp-block-columns,
.wp-block-columns .wp-block-columns {
  max-width:none;
  padding-left:0;
  padding-right:0
}
.wp-block-columns.alignfull {
  max-width:none;
  padding-left:0;
  padding-right:0
}
.wp-block-columns.alignwide {
  max-width:1400px
}
.wp-block-column {
  flex-grow:1;
  flex-shrink:1;
  min-width:0;
  word-wrap:break-word;
  overflow-wrap:break-word;
  box-sizing:border-box
}
.wp-block-column:not(:first-child) {
  margin-left:0
}
.wp-block-column img {
  max-width:100%;
  height:auto
}
.wp-block-columns.is-layout-flex>.wp-block-column[style*="flex-basis:25%"] {
  flex:1 1 calc(25% - 22.5px)!important;
  max-width:calc(25% - 22.5px)
}
.wp-block-columns.is-layout-flex>.wp-block-column>.contact-info-item {
  height:100%;
  margin-bottom:0
}
@media (max-width:991.98px) {
  .wp-block-columns {
    gap:24px
  }
  .wp-block-columns.is-layout-flex>.wp-block-column[style*="flex-basis:25%"] {
    flex-basis:calc(50% - 12px)!important;
    max-width:calc(50% - 12px)
  }
}
@media (max-width:781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-direction:column;
    gap:20px
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis:100%!important;
    width:100%
  }
  .wp-block-columns.is-layout-flex>.wp-block-column[style*="flex-basis:25%"] {
    max-width:100%
  }
}
.page-contact-us .contact-us-box {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch
}
.page-contact-us .contact-us-box .contact-form,
.page-contact-us .contact-us-image {
  width:auto;
  min-width:0
}
.page-contact-us .contact-us-image,
.page-contact-us .contact-us-image figure {
  height:100%
}
.page-contact-us .contact-us-image img {
  width:100%;
  height:100%!important;
  object-fit:cover
}
.page-contact-us .contact-form {
  height:100%
}
@media (max-width:991.98px) {
  .page-contact-us .contact-us-box {
    grid-template-columns:1fr
  }
}
.page-blog {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px
}
.page-blog .post-item {
  height:100%;
  margin-bottom:0
}
@media (max-width:991.98px) {
  .page-blog {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px
  }
}
@media (max-width:767.98px) {
  .page-blog {
    grid-template-columns:1fr;
    gap:20px
  }
}
.tiens-counter-widget {
  position:relative;
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  background:0 0;
  padding:8px 0
}
.tiens-counter-widget__icon {
  width:44px;
  height:44px
}
.tiens-counter-widget__icon img {
  width:100%;
  height:100%;
  object-fit:contain
}
.tiens-counter-widget__value {
  font-size:64px;
  line-height:1;
  color:var(--accent-color);
  margin:0
}
.tiens-counter-widget__label {
  color:var(--white-color);
  opacity:.9;
  font-size:36px;
  line-height:1.2;
  margin:0
}
.tiens-counter-widget--border-left {
  border-left:1px solid var(--dark-divider-color);
  padding-left:28px
}
.tiens-counter-widget--border-right {
  border-right:1px solid var(--dark-divider-color);
  padding-right:28px
}
@media (max-width:767.98px) {
  .tiens-counter-widget__value {
    font-size:48px
  }
  .tiens-counter-widget__label {
    font-size:28px
  }
}
.product-between-editor-content figure.wp-block-image {
  aspect-ratio:auto;
  height:auto;
  overflow:visible
}
.product-between-editor-content figure.wp-block-image img {
  height:auto;
  object-fit:contain
}
.tiens-product-detail-image-widget {
  margin-bottom:20px
}
.tiens-pdiw {
  display:flex;
  flex-direction:column
}
.tiens-pdiw__media {
  order:1;
  position:relative;
  width:100%;
  height:var(--tiens-pdiw-collapsed-height,600px);
  border-radius:20px;
  background-color:var(--tiens-pdiw-bg,#f2f2f2);
  background-position:top center;
  background-repeat:no-repeat;
  background-size:cover;
  overflow:hidden;
  transition:all .35s ease;
  cursor:pointer
}
.tiens-pdiw__media::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:180px;
  background:linear-gradient(to bottom,rgba(255,255,255,0),#fff);
  pointer-events:none;
  transition:opacity .25s ease
}
.tiens-pdiw__button {
  order:2;
  display:flex;
  width:fit-content;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:14px 26px;
  margin:14px auto 0;
  border:1px solid #c7c7c7;
  border-radius:999px;
  cursor:pointer;
  color:var(--primary-color);
  background:var(--white-color);
  font-size:16px;
  line-height:1;
  list-style:none;
  appearance:none
}
.tiens-pdiw__button::after {
  content:"\f107";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  font-size:14px
}
.tiens-pdiw__hint {
  margin:10px 0 0;
  font-size:12px;
  color:#6b7280
}
.tiens-pdiw__label--hide {
  display:none
}
.tiens-pdiw.is-open .tiens-pdiw__media {
  height:auto;
  aspect-ratio:calc(var(--tiens-pdiw-img-w,3)/ var(--tiens-pdiw-img-h,4));
  background-size:contain
}
.tiens-pdiw.is-open .tiens-pdiw__media::after {
  opacity:0
}
.tiens-pdiw.is-open .tiens-pdiw__button .tiens-pdiw__label--show {
  display:none
}
.tiens-pdiw.is-open .tiens-pdiw__button .tiens-pdiw__label--hide {
  display:inline
}
.tiens-pdiw.is-open .tiens-pdiw__button::after {
  content:"\f106"
}
.tiens-event-detail {
  margin:100px 0;
  padding:30px;
  background:#f8f9fb
}
.tiens-event-livebar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 20px;
  margin-bottom:26px;
  border-radius:16px;
  border:1px solid #e8ebef;
  background:#fff
}
.tiens-event-livebar__meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px
}
.tiens-event-pill {
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-size:12px;
  font-weight:700;
  line-height:1
}
.tiens-event-pill.is-soft {
  background:#eef2ff;
  color:#1e3a8a
}
.tiens-event-countdown small {
  display:block;
  margin-bottom:6px;
  font-size:12px;
  color:#4b5563
}
.tiens-event-countdown__grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px
}
.tiens-event-countdown__grid>div {
  min-width:60px;
  text-align:center;
  padding:7px 8px;
  border-radius:10px;
  background:#f3f4f6
}
.tiens-event-countdown__grid strong {
  display:block;
  font-size:18px;
  line-height:1;
  font-weight:700;
  color:#111827
}
.tiens-event-countdown__grid span {
  font-size:11px;
  color:#6b7280
}
.tiens-event-media-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:12px;
  margin-bottom:20px
}
.tiens-event-media-grid figure {
  margin:0;
  border-radius:16px;
  overflow:hidden
}
.tiens-event-media-grid img {
  width:100%;
  height:100%;
  object-fit:cover
}
.tiens-event-content-card,
.tiens-event-interactive {
  background:#fff;
  border:1px solid #e8ebef;
  border-radius:16px;
  padding:24px;
  margin-bottom:20px
}
.tiens-event-subtitle {
  font-size:22px;
  line-height:1.4;
  font-weight:600;
  color:var(--primary-color);
  margin-bottom:20px
}
.tiens-event-side-card {
  margin-bottom:20px;
  background:#fff;
  border:1px solid #e8ebef;
  border-radius:16px;
  overflow:hidden
}
.tiens-event-side-card h3 {
  font-size:24px;
  margin:0;
  padding:16px 20px;
  background:var(--accent-color);
  color:var(--white-color)
}
.tiens-event-side-card ul {
  margin:0;
  padding:10px 20px 16px
}
.tiens-event-side-card ul li {
  display:grid;
  grid-template-columns:minmax(120px,42%) minmax(0,1fr);
  gap:10px;
  align-items:start;
  padding:10px 0;
  border-bottom:1px solid var(--divider-color);
  font-size:14px;
  line-height:1.45
}
.tiens-event-side-card ul li:last-child {
  border-bottom:0
}
.tiens-event-side-card ul li span {
  width:auto!important;
  margin:0!important;
  color:var(--primary-color);
  font-weight:600
}
.tiens-event-actions {
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px
}
.tiens-event-actions .btn-default {
  width:100%;
  text-align:center
}
.tiens-copy-link {
  border:0;
  cursor:pointer
}
.tiens-event-actions small {
  font-size:14px;
  color:var(--text-color)
}
.tiens-event-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px
}
.tiens-event-tabs button {
  border:0;
  padding:10px 14px;
  border-radius:999px;
  background:#f3f4f6;
  color:#111827;
  font-size:13px;
  font-weight:600;
  cursor:pointer
}
.tiens-event-tabs button.is-active {
  background:#111827;
  color:#fff
}
.tiens-event-tab-panel {
  display:none
}
.tiens-event-tab-panel.is-active {
  display:block
}
.tiens-event-location-title {
  margin:0 0 12px;
  font-size:20px;
  color:#111827
}
.tiens-event-location-media {
  margin:0 0 14px;
  border-radius:14px;
  overflow:hidden
}
.tiens-event-location-media img {
  width:100%;
  height:auto;
  display:block
}
.tiens-event-detail-list {
  list-style:none;
  margin:0;
  padding:0
}
.tiens-event-detail-list li {
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:16px 0;
  border-bottom:1px solid var(--divider-color)
}
.tiens-event-detail-list li:last-child {
  border-bottom:0;
  padding-bottom:0
}
.tiens-event-detail-list li span {
  font-size:15px;
  font-weight:600;
  color:var(--accent-color)
}
.tiens-event-detail-list li strong {
  font-size:16px;
  font-weight:500;
  color:var(--primary-color)
}
.tiens-event-detail-list li strong a {
  color:inherit;
  text-decoration:underline
}
.tiens-event-map iframe {
  width:100%;
  height:320px;
  border:0;
  border-radius:12px;
  margin-top:16px
}
.tiens-event-location-actions {
  margin-top:14px
}
.tiens-event-location-actions .btn-default {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px
}
.tiens-event-empty {
  margin:0;
  padding:14px;
  border-radius:12px;
  background:#f3f4f6;
  color:#4b5563
}
.tiens-event-sticky {
  position:sticky;
  top:100px
}
@media (max-width:991.98px) {
  .tiens-event-detail {
    padding:80px 0
  }
  .tiens-event-livebar {
    flex-direction:column;
    align-items:flex-start
  }
  .tiens-event-countdown__grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .tiens-event-media-grid {
    grid-template-columns:1fr
  }
  .tiens-event-sticky {
    position:static
  }
  .tiens-event-side-card ul li {
    grid-template-columns:1fr;
    gap:4px
  }
}
body.single-ajde_events .wp-site-blocks>.wp-block-group {
  max-width:none!important;
  padding-left:0!important;
  padding-right:0!important;
  overflow:visible!important
}
body.single-ajde_events .tiens-event-hero-wrap {
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  max-width:100vw
}
body.single-ajde_events .tiens-event-hero-wrap .our-scrolling-ticker.subpages-scrolling-ticker,
body.single-ajde_events .tiens-event-hero-wrap .page-header {
  width:100%;
  margin-left:0;
  margin-right:0
}
.tiens-eventon-month-grid {
  margin:20px 0 0
}
.tiens-eventon-month-grid__head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px
}
.tiens-eventon-month-grid__head h2 {
  margin:0;
  font-size:42px;
  line-height:1.1;
  letter-spacing:.5px
}
.tiens-eventon-month-grid__nav {
  display:flex;
  align-items:center;
  gap:8px
}
.tiens-eventon-month-grid__controls {
  display:flex;
  align-items:center;
  gap:10px
}
.tiens-eventon-month-grid__switch {
  display:inline-flex;
  align-items:center;
  padding:3px;
  border:1px solid #d2d5d9;
  border-radius:999px;
  background:#fff
}
.tiens-eventon-month-grid__switch button {
  border:0;
  background:0 0;
  color:#6b7280;
  font-size:12px;
  font-weight:600;
  line-height:1;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer
}
.tiens-eventon-month-grid__switch button.is-active {
  background:#111827;
  color:#fff
}
.tiens-eventon-month-grid__nav button {
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid #d2d5d9;
  color:#111;
  font-size:20px;
  line-height:1;
  background:#fff;
  cursor:pointer
}
.tiens-eventon-month-grid.is-loading {
  opacity:.6;
  pointer-events:none
}
.tiens-eventon-month-grid__view {
  display:none
}
.tiens-eventon-month-grid[data-view=grid] .tiens-eventon-month-grid__view--grid {
  display:block
}
.tiens-eventon-month-grid[data-view=list] .tiens-eventon-month-grid__view--list {
  display:block
}
.tiens-eventon-month-grid__body,
.tiens-eventon-month-grid__weekdays {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr))
}
.tiens-eventon-month-grid__weekdays {
  margin-bottom:8px
}
.tiens-eventon-month-grid__weekdays div {
  padding:8px 10px;
  font-size:12px;
  font-weight:600;
  color:#666;
  text-transform:uppercase
}
.tiens-eventon-month-grid__day {
  min-height:140px;
  border:1px solid #ebedf0;
  background:#fff;
  padding:8px
}
.tiens-eventon-month-grid__day.is-empty {
  background:#fafafa
}
.tiens-eventon-month-grid__date {
  font-size:16px;
  font-weight:700;
  color:#111;
  margin-bottom:6px
}
.tiens-eventon-month-grid__events {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px
}
.tiens-eventon-month-grid__events li a {
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:6px 8px;
  border-radius:8px;
  background:#f4f6f8;
  text-decoration:none;
  color:inherit
}
.tiens-eventon-month-grid__events li a span {
  font-size:11px;
  font-weight:600;
  color:inherit;
  opacity:.92
}
.tiens-eventon-month-grid__events li a strong {
  font-size:12px;
  font-weight:700;
  color:inherit;
  line-height:1.35
}
.tiens-eventon-month-grid__list {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px
}
.tiens-eventon-month-grid__list-day {
  border:1px solid #ebedf0;
  border-radius:12px;
  background:#fff;
  padding:12px
}
.tiens-eventon-month-grid__list-date {
  font-size:14px;
  font-weight:700;
  color:#111827;
  margin-bottom:8px
}
.tiens-eventon-month-grid__empty {
  margin:0;
  padding:16px;
  border:1px dashed #d2d5d9;
  border-radius:10px;
  color:#6b7280
}
@media (max-width:991.98px) {
  .tiens-eventon-month-grid__head {
    flex-direction:column;
    align-items:flex-start
  }
  .tiens-eventon-month-grid__controls {
    width:100%;
    justify-content:space-between
  }
  .tiens-eventon-month-grid__head h2 {
    font-size:28px
  }
  .tiens-eventon-month-grid__weekdays {
    display:none
  }
  .tiens-eventon-month-grid__body {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px
  }
  .tiens-eventon-month-grid__day {
    min-height:120px
  }
}
.tiens-timeline {
  padding:100px 0;
  background:var(--secondary-color)
}
.tiens-timeline .section-title {
  margin-bottom:0
}
.tiens-timeline__slider {
  position:relative;
  margin-top:48px;
  padding-bottom:8px
}
.tiens-timeline__swiper {
  overflow:hidden;
  border-radius:4px
}
.tiens-timeline[data-layout=vertical] .tiens-timeline__swiper {
  height:clamp(420px,52vh,600px)
}
.tiens-timeline__card {
  height:100%;
  display:flex;
  flex-direction:column;
  background:var(--white-color);
  border:1px solid var(--divider-color);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(3,34,27,.06);
  transition:box-shadow .35s ease,transform .35s ease
}
.tiens-timeline__card:hover {
  box-shadow:0 18px 48px rgba(3,34,27,.1);
  transform:translateY(-3px)
}
.tiens-timeline__media figure {
  display:block;
  margin:0;
  border-radius:0;
  overflow:hidden
}
.tiens-timeline__media img {
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block
}
.tiens-timeline__body {
  padding:24px 26px 28px;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px
}
.tiens-timeline__year {
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  padding:6px 14px;
  border-radius:100px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
  color:var(--white-color);
  background:linear-gradient(135deg,var(--primary-color),var(--accent-secondary-color))
}
.tiens-timeline__card-title {
  font-size:22px;
  font-weight:600;
  line-height:1.25;
  color:#1a1a1a;
  margin:6px 0 0
}
.tiens-timeline__desc {
  font-size:15px;
  line-height:1.65;
  color:var(--text-color);
  margin:0
}
.tiens-timeline__desc p {
  margin:0 0 10px
}
.tiens-timeline__desc p:last-child {
  margin-bottom:0
}
.tiens-timeline__controls {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:28px;
  position:relative;
  z-index:2
}
.tiens-timeline__pagination {
  position:static!important;
  display:flex!important;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:4px;
  width:auto!important;
  max-width:min(100%,320px)
}
.tiens-timeline__pagination .swiper-pagination-bullet {
  height:8px;
  width:8px;
  background:#c5d5cf;
  opacity:1;
  margin:0 4px!important;
  border-radius:100px;
  transition:all .35s ease
}
.tiens-timeline__pagination .swiper-pagination-bullet-active {
  background:var(--primary-color);
  width:26px;
  border-radius:100px
}
.tiens-timeline .swiper-button-next,
.tiens-timeline .swiper-button-prev {
  position:static;
  margin:0;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--white-color);
  border:1px solid var(--divider-color);
  color:var(--primary-color);
  box-shadow:0 4px 14px rgba(3,34,27,.08);
  transition:background .25s ease,color .25s ease,border-color .25s ease
}
.tiens-timeline .swiper-button-next::after,
.tiens-timeline .swiper-button-prev::after {
  font-size:14px;
  font-weight:700
}
.tiens-timeline .swiper-button-next:hover,
.tiens-timeline .swiper-button-prev:hover {
  background:var(--primary-color);
  color:var(--white-color);
  border-color:var(--primary-color)
}
.tiens-timeline .swiper-button-disabled {
  opacity:.35;
  pointer-events:none
}
@media (max-width:767.98px) {
  .tiens-timeline {
    padding:72px 0
  }
  .tiens-timeline__slider {
    margin-top:32px
  }
  .tiens-timeline[data-layout=vertical] .tiens-timeline__swiper {
    height:clamp(380px,48vh,520px)
  }
}
.tiens-pulse-timeline {
  --tiens-pt-primary:var(--primary-color);
  --tiens-pt-accent:var(--accent-color);
  --tiens-pt-muted:var(--text-color);
  --tiens-pt-surface:var(--white-color);
  --tiens-pt-radius:20px;
  --tiens-pt-card-shadow:0 18px 40px rgba(3, 34, 27, 0.08);
  padding:90px 0 110px;
  position:relative
}
.tiens-pulse-timeline .container {
  position:relative
}
.tiens-pulse-timeline__hero {
  text-align:center;
  margin-bottom:70px
}
.tiens-pulse-timeline__badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(18,125,81,.28);
  background:rgba(18,125,81,.1);
  color:var(--tiens-pt-primary);
  font-weight:700;
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase
}
.tiens-pulse-timeline__heading {
  margin-top:14px;
  margin-bottom:0;
  font-size:clamp(28px, 4vw, 44px);
  letter-spacing:.4px;
  color:#1a1a1a;
  line-height:1.2
}
.tiens-pulse-timeline__lede {
  margin:14px auto 0;
  max-width:760px;
  color:var(--tiens-pt-muted);
  line-height:1.65;
  font-size:16px
}
.tiens-pulse-timeline__rail {
  position:absolute;
  top:190px;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  width:6px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(197,202,233,.65),rgba(18,125,81,.22));
  box-shadow:0 0 0 6px rgba(18,125,81,.08);
  pointer-events:none
}
.tiens-pulse-timeline__item {
  position:relative;
  width:100%;
  margin:0 0 70px;
  display:flex;
  justify-content:flex-start
}
.tiens-pulse-timeline__item--right {
  justify-content:flex-end
}
.tiens-pulse-timeline__dot {
  width:28px;
  height:28px;
  background:var(--tiens-pt-primary);
  border-radius:50%;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:28px;
  box-shadow:0 0 0 6px rgba(18,125,81,.22),0 18px 40px rgba(18,125,81,.28);
  z-index:1
}
.tiens-pulse-timeline__card {
  width:min(520px,92%);
  background:var(--tiens-pt-surface);
  border-radius:var(--tiens-pt-radius);
  box-shadow:var(--tiens-pt-card-shadow);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  position:relative;
  transition:transform .2s ease,box-shadow .2s ease
}
.tiens-pulse-timeline__card:hover {
  transform:translateY(-4px);
  box-shadow:0 26px 38px -18px rgba(0,0,0,.18)
}
.tiens-pulse-timeline__card-top {
  position:relative
}
.tiens-pulse-timeline__img-wrap {
  width:100%;
  height:190px;
  background:linear-gradient(135deg,rgba(18,125,81,.12),rgba(142,199,61,.1));
  overflow:hidden
}
.tiens-pulse-timeline__img-wrap img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .35s ease
}
.tiens-pulse-timeline__card:hover .tiens-pulse-timeline__img-wrap img {
  transform:scale(1.06)
}
.tiens-pulse-timeline__card-top::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 30%,rgba(0,0,0,.2));
  pointer-events:none
}
.tiens-pulse-timeline__date {
  position:absolute;
  top:12px;
  right:12px;
  padding:8px 10px;
  border-radius:12px;
  background:rgba(142,199,61,.95);
  color:#fff;
  font-weight:800;
  letter-spacing:.3px;
  box-shadow:0 14px 28px rgba(142,199,61,.35)
}
.tiens-pulse-timeline__card-body {
  padding:18px 18px 16px
}
.tiens-pulse-timeline__card-title {
  font-size:22px;
  margin:0 0 8px;
  font-weight:600;
  color:#1a1a1a
}
.tiens-pulse-timeline__card-text {
  color:var(--tiens-pt-muted);
  line-height:1.65;
  margin:0 0 12px
}
.tiens-pulse-timeline__meta {
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:0;
  margin:0
}
.tiens-pulse-timeline__meta li {
  position:relative;
  padding-left:18px;
  color:rgba(33,33,33,.85);
  font-size:14px
}
.tiens-pulse-timeline__meta li::before {
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--tiens-pt-primary);
  position:absolute;
  left:0;
  top:7px
}
.tiens-pulse-timeline__footer-note {
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  color:var(--tiens-pt-muted);
  font-size:13px;
  flex-wrap:wrap;
  text-align:center
}
.tiens-pulse-timeline__pulse {
  width:10px;
  height:10px;
  border-radius:999px;
  flex-shrink:0;
  background:var(--tiens-pt-primary);
  box-shadow:0 0 0 0 rgba(18,125,81,.35);
  animation:tiens-pulse-timeline-pulse 1.4s ease-in-out infinite
}
@keyframes tiens-pulse-timeline-pulse {
  0% {
    box-shadow:0 0 0 0 rgba(18,125,81,.35)
  }
  70% {
    box-shadow:0 0 0 12px transparent
  }
  100% {
    box-shadow:0 0 0 0 transparent
  }
}
.tiens-pulse-timeline__reveal {
  opacity:0;
  transform:translateY(16px);
  transition:opacity .55s ease,transform .55s ease
}
.tiens-pulse-timeline__reveal--left {
  transform:translate(-56px,16px)
}
.tiens-pulse-timeline__reveal--right {
  transform:translate(56px,16px)
}
.tiens-pulse-timeline__reveal.tiens-pulse-timeline__reveal--shown {
  opacity:1;
  transform:translate(0,0)
}
.tiens-pulse-timeline__item--left .tiens-pulse-timeline__card::after,
.tiens-pulse-timeline__item--right .tiens-pulse-timeline__card::after {
  content:"";
  position:absolute;
  top:36px;
  width:0;
  height:0;
  border-style:solid
}
.tiens-pulse-timeline__item--left .tiens-pulse-timeline__card::after {
  right:-14px;
  border-width:10px 0 10px 14px;
  border-color:transparent transparent transparent var(--tiens-pt-surface);
  filter:drop-shadow(0 12px 14px rgba(0, 0, 0, .12))
}
.tiens-pulse-timeline__item--right .tiens-pulse-timeline__card::after {
  left:-14px;
  border-width:10px 14px 10px 0;
  border-color:transparent var(--tiens-pt-surface) transparent transparent;
  filter:drop-shadow(0 12px 14px rgba(0, 0, 0, .12))
}
@media (max-width:840px) {
  .tiens-pulse-timeline__rail {
    left:44px;
    transform:none
  }
  .tiens-pulse-timeline__dot {
    left:44px;
    transform:none
  }
  .tiens-pulse-timeline__item {
    justify-content:flex-start!important
  }
  .tiens-pulse-timeline__card {
    width:calc(100% - 74px);
    margin-left:74px
  }
  .tiens-pulse-timeline__item--left .tiens-pulse-timeline__card::after,
  .tiens-pulse-timeline__item--right .tiens-pulse-timeline__card::after {
    left:-14px;
    right:auto;
    border-width:10px 14px 10px 0;
    border-color:transparent var(--tiens-pt-surface) transparent transparent
  }
  .tiens-pulse-timeline__reveal--left,
  .tiens-pulse-timeline__reveal--right {
    transform:translateY(16px)
  }
  .tiens-pulse-timeline__reveal.tiens-pulse-timeline__reveal--shown {
    transform:translate(0,0)
  }
}
@media (max-width:767.98px) {
  body {
    font-size:14px;
    line-height:1.5
  }
  .btn-bordered,
  .btn-default,
  .btn-white,
  .client-review-content p,
  .contact-form .form-control,
  .contact-form .forminator-ui .forminator-label,
  .donate-form .form-control,
  .main-menu ul li a,
  .newsletter-form .form-group .form-control,
  .page-header-box ol li.breadcrumb-item,
  .post-entry blockquote p,
  .post-entry ol li,
  .post-entry ul li,
  .post-single-meta ol li,
  .post-single-meta ol li i,
  .post-tags .tag-links a,
  .product-category-list ul li span,
  .project-category-list ul li,
  .project-category-list ul li span,
  .readmore-btn,
  .section-title h3,
  .sidebar-cta-contact ul li a,
  .sidebar-cta-content p,
  .single-content .tiens-sidebar-panel__title,
  .slicknav_nav .slicknav_row,
  .slicknav_nav li a,
  .team-content p,
  .testimonial-content p,
  .tiens-event-detail-list li strong,
  .tiens-eventon-month-grid__date,
  .tiens-pdiw__button,
  .tiens-post-adjacent__title,
  .tiens-pulse-timeline__lede,
  header .top-bar .top-nav .icon-item a,
  header .top-bar .top-social .social-item a {
    font-size:14px
  }
  .contact-form .forminator-ui .forminator-button-submit,
  .contact-form .forminator-ui .forminator-textarea,
  .contact-form .forminator-ui :is(.forminator-input,
  .forminator-select-dropdown) {
    font-size:14px!important
  }
  .tiens-pulse-timeline__card-title {
    font-size:20px
  }
}
