/*
 Theme Name:   Hello Elementor Child
 Theme URI:    http://example.com/hello-elementor-child
 Description:  Hello Elementor Child Theme
 Author:       Your Name
 Author URI:   http://example.com
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Importing the parent theme style.css */
@import url("../hello-elementor/style.css");

:root {
  --color1: #1f3864;
  --color2: #016702;
  --color3: #333;
  --color4: #fff;
}

.hfe-nav-menu>li.menu-item>a,
.hfe-nav-menu>li.menu-item>.hfe-has-submenu-container>a {
  overflow-y: hidden;
}

.hfe-nav-menu>li.menu-item:hover a .menu-text {
  animation: arrowSlideUp 0.3s ease-in-out forwards;
}

@keyframes arrowSlideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(-120%);
    opacity: 0;
  }

  55% {
    transform: translateY(120%);
    opacity: 0;
  }

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

@keyframes arrowSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(120%);
    opacity: 0;
  }

  55% {
    transform: translateY(-120%);
    opacity: 0;
  }

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

ul.sub-menu {
  padding-top: 20px;
}

a.hfe-sub-menu-item {
  display: inline-block !important;
  position: relative;
}

a.hfe-sub-menu-item:after {
  position: absolute !important;
  content: "\e8c1";
  font-family: "eicons";
  font-style: normal;
  font-weight: normal;
  right: -15px;
  transform: rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  opacity: 0;
}

a.hfe-sub-menu-item:hover:after {
  transform: translateY(-10px) rotate(45deg);
  opacity: 1;
  right: -30px;
}

/* Custom CSS can go here */

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px !important;
  }
}

label {
  width: 100%;
}

/* home banner css start */

.hero-banner .carousel-caption {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: inherit;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  text-align: left !important;
  transform: translate(0%, -50%);
}

.hero-banner .carousel-caption h3 {
  font: normal normal normal 52px/62px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
}

.arrow-control-slider {
  display: flex;
}

.arrow-control-slider span {
  background-color: var(--color1);
  padding: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-right: 5px;
}

.arrow-control-slider span:hover {
  background-color: var(--color2);
}

.arrow-control-slider .control-prev {
  border-radius: 5px;
}

.arrow-control-slider .control-next {
  border-radius: 5px;
}

.arrow-control-bottom {
  display: flex;
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: 9;
  width: 100%;
}

.hero-banner .indicators-num {
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 9;
  width: 100%;
}

.hero-banner .carousel-indicator {
  display: flex;
}

.hero-banner .carousel-indicator span {
  color: #fff;
}

.hero-banner .carousel-indicator button {
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0;
  border: 0 !important;
  margin-right: 8px;
}

.hero-banner .carousel-indicator button .budge {
  background: #eee !important;
  opacity: 1 !important;
  padding: 3px 15px 3px 15px !important;
  border: 0 !important;
  border-radius: 0;
  width: 30px !important;
  height: 10px !important;
  display: inline-block;
}

.hero-banner .carousel-indicator button.active .budge {
  background: var(--color1) !important;
}

.hero-banner .carousel-indicator button .number {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.hero-banner .carousel-indicator button.active .number {
  color: var(--color1) !important;
}

/* home banner css end */

/* pagination style one css start  */
.pagination-style-one {
  display: inline-flex;
  justify-content: center;
}

.pagination-style-one .page-numbers.current {
  font-weight: 700 !important;
  color: var(--color1) !important;
}

.pagination-style-one .page-numbers {
  font: normal normal 700 18px / 22px DM Sans !important;
  letter-spacing: 0px;
  color: #292c2d !important;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 2px solid #ececec;
  border-radius: 8px;
  text-decoration: none !important;
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}

/* pagination style one css start  */

/* Blog css start */

.blog-post-card {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.blog-image-wrapper {
  position: relative;
}

.blog-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color1) !important;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: capitalize;
}

.blog-content {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.blog-content h2 {
  font-size: 34px !important;
  color: #0073aa;
  margin: 0;
}

.blog-content h2 a {
  color: #0073aa;
  text-decoration: none;
}

.blog-content p {
  margin-top: 10px;
}

.read-more-btn {
  display: inline-block;
  background: var(--color2);
  font-size: 16px !important;
  color: #fff !important;
  padding: 12px 30px !important;
  border-radius: 10px !important;
  margin-top: 15px;
  font-weight: 500;
  text-decoration: none;
}

.read-more-btn:hover {
  background: #292c2d !important;
  color: #fff !important;
}

h3.cat-color {
  color: var(--color1) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  padding-bottom: 2px !important;
}

.sidebar-box h3 {
  margin-bottom: 15px;
}

.sidebar-box {
  background: #fff;
  border: solid 1px #ececec;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.sidebar-box h3 {
  margin-bottom: 15px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  color: #292c2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px !important;
  width: 100%;
  display: block;
}

.category-list a span {
  float: right;
}

.category-list a:hover {
  color: #292c2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px !important;
}

.article-detail {
  padding: 70px 0;
}

.prevnext-post {
  font-size: 14px;
}

.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center !important;
}

.recent-post img {
  width: 70px;
  display: block;
}

.recent-post a {
  font-size: 16px !important;
  color: #292c2d !important;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  line-height: 21px;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-date {
  font-size: 14px !important;
  color: #292c2d !important;
  margin-top: 2px;
}

/* blog css end */

/* testimonials css start */

/* testimonials box one  css start */

.testimonials-box-one {
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 2px solid #ececec;
  border-radius: 10px 150px 10px 10px;
  padding: 0px 50px 50px 50px;
  text-align: center;
  margin-top: 55px;
  position: relative;
}

.testimonials-box-one:before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: calc(100% + 4px);
  height: 10px;
  background: var(--color1);
  left: -2px;
  border-radius: 0px 0px 10px 10px;
  transition: all 0.4s ease;
}

.testimonials-box-one:hover:before {
  content: "";
  background: var(--color2);
}

.testimonials-box-one .img-wrap {
  position: relative;
  margin-top: -50px;
}

.testimonials-box-one .img-wrap img {
  width: 100px !important;
  margin: 0px auto;
  border-radius: 50%;
}

.testimonials-box-one .title,
.testimonials-box-one-popup .title {
  font: normal normal normal 21px / 25px DM Sans;
  letter-spacing: 0px;
  color: var(--color1);
  margin-bottom: 5px;
  margin-top: 20px;
}

.testimonials-box-one .quate-img img {
  width: 25px;
  margin: 0 auto;
}

.testimonials-box-one .rating-area {
  color: #ffc107;
  font-size: 20px;
  margin-top: 24px;
}

.testimonials-box-one .content-box {
  height: 130px;
}

.testimonials-box-one .content-box .description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more-link {
  text-decoration: underline !important;
  font: normal normal 700 15px / 28px DM Sans;
  letter-spacing: 0px;
  color: #292c2d !important;
}

/* testimonials box one  css end */

/* testimonials box two  css start */
.testimonials-box-two {
  background: #f6f7f7;
  border-radius: 20px;
  padding: 30px;
}

.testimonials-box-two .testimonials-wrap,
.testimonials-box-two-slider .testimonials-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
}

.testimonials-box-two .content-box {
  font: normal normal 500 16px / 24px Spline Sans;
  letter-spacing: 0px;
  color: #333333;
  margin-bottom: 30px;
  margin-top: 15px;
}

.testimonials-box-two .content-box strong {
  color: #bfa74b;
  font-weight: 500 !important;
  font-style: italic;
}

.testimonials-box-two .testimonials-wrap .img-wrap img,
.testimonials-box-two-slider .testimonials-wrap .img-wrap img {
  width: 70px !important;
  min-width: 70px !important;
  height: 70px;
  border-radius: 50%;
  margin-right: 10px;
}

.testimonials-box-two .testimonials-wrap .title,
.testimonials-box-two-slider .testimonials-wrap .title {
  font: normal normal 600 16px/24px Spline Sans;
  letter-spacing: -0.44px;
  color: #1f3864;
  margin: 0;
}

.testimonials-box-two .testimonials-wrap {
  color: #ffc107;
  font-size: 16px;
}

/* testimonials css start */

.solutions-section {
  position: relative;
}

.solutions-slider-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 50px;
  height: 750px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.solutions-slider-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #00000066 !important;
  z-index: -1;
}

.solutions-slider-wrap .left-wrap .subtitle {
  font: normal normal 500 16px / 24px Spline Sans;
  letter-spacing: 0px;
  color: #ffffff;
  text-transform: uppercase;
}

.solutions-slider-wrap .left-wrap .title {
  font: normal normal bold 55px / 62px Bricolage Grotesque;
  letter-spacing: -0.78px;
  color: #ffffff;
  text-transform: uppercase;
}

.solutions-slider-wrap .left-wrap p {
  font: normal normal 500 16px / 24px Spline Sans;
  letter-spacing: -0.44px;
  color: #ffffff;
  opacity: 0.8;
}

.sports-dots {
  position: absolute;
  top: 40px;
  right: 50px;
}

.sports-dots .slick-dots {
  display: block;
}

.sports-dots li {
  display: block;
  text-align: right;
  cursor: pointer;
  margin-bottom: 15px !important;
}

.sports-dots li span {
  font: normal normal bold 21px / 28px Bricolage Grotesque;
  letter-spacing: -0.28px;
  color: #ffffff;
  text-transform: capitalize;
  opacity: 0.5;
  transition: all 0.4s ease;
  text-align: right;
}

.sports-dots h2:hover {
  color: #ffffff;
  opacity: 1;
}

.sports-dots .slick-active span {
  font: normal normal bold 30px/40px Bricolage Grotesque;
  letter-spacing: -0.4px;
  color: #ffffff;
  text-transform: capitalize;
  text-decoration: underline;
  opacity: 1;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  position: relative;
  padding-right: 30px;
}

.sports-dots li.slick-active span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  right: 0;
  top: 21px;
}

.slider-inner-solution .item {
  padding: 0 10px;
}

.slider-inner-solution .slick-list {
  margin: 0 -10px;
}

.slider-inner-solution .slider-img-wrap {
  border: 1px solid #fff;
  border-radius: 15px;
  position: relative;
}

.slider-inner-solution .slider-img-wrap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #00000047;
  border-radius: 15px;
}

.slider-inner-solution .slider-img-wrap img {
  border-radius: 15px;
}

a.elementor-button.elementor-button-light {
  border: 1px solid #fff !important;
  background-color: transparent !important;
}

.slider-inner-solution .slider-img-wrap h3 {
  font: normal normal 500 16px / 22px Spline Sans;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 10px 15px;
  position: absolute;
  bottom: 10px;
  margin: 0;
  display: block;
  width: 100%;
}

.arrowbtn-btm {
  position: absolute;
  bottom: -11px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.right-btn.arrowbtn-btm {
  left: 380px;
  right: inherit;
}

.slider-inner-solution .slick-dots {
  justify-content: start !important;
}

.slider-inner-solution .slick-dots li button {
  padding: 0px;
  font-size: 0;
  border-radius: 0% !important;
  width: 113px;
  height: 1px !important;
  background-color: #ddd;
  border-color: #ddd;
  outline: none;
  box-shadow: none;
}

.slider-inner-solution .slick-dots li {
  margin: 0;
}

.slider-inner-solution .slick-dots li.slick-active button,
.slider-inner-solution .slick-dots li button:hover {
  background-color: #fff !important;
  border-color: #fff !important;
  height: 3px !important;
  border-radius: 3px !important;
  outline: none;
  box-shadow: none;
}

/* testimonial slider dots  */
.testimonials-slider .slick-dots {
  justify-content: start !important;
  max-width: 375px;
}

.testimonials-slider .slick-dots li {
  width: 100%;
}

.testimonials-slider .slick-dots li button {
  padding: 0px;
  font-size: 0;
  border-radius: 0% !important;
  width: 100%;
  height: 1px !important;
  background-color: var(--color1);
  border-color: var(--color1);
  outline: none;
  box-shadow: none;
  transition: 0.3s ease all;
  position: relative;
}

.testimonials-slider .slick-dots li button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0% -50%;
  background-color: var(--color1);
  width: 100%;
  height: 4px;
  outline: none;
  box-shadow: none;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s ease;
  border-radius: 10px;
}

.testimonials-slider .slick-dots li {
  margin: 0;
}

.testimonials-slider .slick-dots li.slick-active button,
.testimonials-slider .slick-dots li button:hover {
  outline: none;
  box-shadow: none;
}

.testimonials-slider .slick-dots li.slick-active button::before {
  transform-origin: left;
  transform: scaleX(1);
}

.testimonials-slider .arrowbtn-btm {
  color: var(--color1);
}

/* testimonials popup css start */
.model-testimonial .img-wrap img {
  width: 130px !important;
  margin: 0px auto;
  border-radius: 50%;
}

.model-testimonial button.btn-close {
  position: absolute;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  right: -50px;
  top: 5px;
  z-index: 9;
  opacity: 1;
  filter: invert(1);
  padding: 0;
  width: 20px;
  box-shadow: none !important;
  outline: none;
}

@media only screen and (max-width: 991px) {
  .model-testimonial button.btn-close {
    right: 15px;
    top: 15px;
    filter: none;
  }
}

.model-testimonial button.btn-close:hover,
.model-testimonial button.btn-close:focus,
.model-testimonial button.btn-close:focus-visible {
  filter: brightness(0) saturate(100%) invert(24%) sepia(63%) saturate(7327%) hue-rotate(348deg) brightness(102%) contrast(103%);
}

.model-testimonial .modal-content {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 20px;
  padding: 40px;
}

.model-testimonial .testimonials-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
}

.model-testimonial .testimonials-wrap .img-wrap {
  width: 80px;
  margin-right: 10px;
}

.model-testimonial .testimonials-wrap .img-wrap img {
  border-radius: 50%;
}

.model-testimonial .testimonials-wrap .title {
  font: normal normal 600 16px / 24px DM Sans;
  letter-spacing: 0px;
  color: #000;
  margin: 0;
}

.model-testimonial .rating {
  color: #ffc107;
  font-size: 16px;
}

.modal-backdrop {
  background-color: #000 !important;
  opacity: 0.8 !important;
}

/* testimonials popup css end */

/* slick dots start  */

.arrowbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3a3a3a;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 99;
  color: #fff;
  cursor: pointer;
}

.arrowbtn:hover {
  background: var(--color2);
  color: #fff;
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

ul.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  list-style: none;
}

ul.slick-dots li {
  margin: 0 5px;
}

ul.slick-dots li button {
  padding: 5px;
  font-size: 0;
  border-radius: 50% !important;
  width: 10px;
  height: 10px !important;
  background-color: #cfcfcf;
  border-color: #cfcfcf;
}

ul.slick-dots li.slick-active button,
ul.slick-dots li button:hover {
  background-color: var(--color1) !important;
  border-color: var(--color1) !important;
}

/* slick dots end  */

/* other box one css start */

.other-box-one .img-wrap {
  position: relative;
  overflow: hidden;
}

.other-box-one .img-wrap img {
  transition: all 0.4s ease;
}

.other-box-one .img-wrap .btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.other-box-one:hover .img-wrap .btn-center {
  opacity: 1;
}

.other-box-one:hover .img-wrap img {
  transform: scale(1.05);
}

.other-box-one .content-box .date {
  font: normal normal 600 13px / 18px DM Sans;
  letter-spacing: 1.6px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.other-box-one .content-box .title {
  font: normal normal 500 20px/28px DM Sans;
  letter-spacing: 0px;
  color: var(--color1);
  margin-bottom: 10px;
}

/* other box one css start */

/* filter css start */
ul#project-filter-list {
  display: flex;
  justify-content: center;
  margin-bottom: 40px !important;
  padding-left: 0;
  list-style: none;
  flex-wrap: wrap;
}

ul#project-filter-list li {
  margin: 0 10px;
}

ul#project-filter-list li .cats {
  font: normal normal bold 18px / 30px DM Sans;
  letter-spacing: 0px;
  color: #292c2d;
  padding: 5px 15px;
  text-decoration: none;
}

ul#project-filter-list li .cats.active {
  color: var(--color1);
}

/* filter css end */

/* portfolio css start  */

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

.portfolio-box:before {
  content: "";
  background: transparent linear-gradient(180deg, #ffffff 0%, #e3e3e3 43%, #575757 60%, #000000 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  border-radius: 22px 155px 22px 22px;
  opacity: 0.75;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 0;
}

.portfolio-box .portfolio-wrap {
  transition: all 0.4s ease;
  border-radius: 22px 150px 22px 22px;
  transform: translateY(53px);
}

.portfolio-box .portfolio-effect {
  overflow: hidden;
}

.portfolio-box .portfolio-img img {
  border-radius: 22px 150px 22px 22px;
}

.portfolio-box:hover .portfolio-wrap {
  transition: all 0.4s ease;
  transform: translateY(0px);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
}

.portfolio-info .title {
  font: normal normal normal 28px / 35px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.portfolio-info p {
  font: normal normal normal 14px/21px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-normal {
  display: flex !important;
  align-items: center !important;
  font: normal normal 700 16px / 20px DM Sans !important;
  letter-spacing: 0px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.4s ease;
}

.btn-normal svg {
  fill: #fff;
  margin-left: 10px;
  transition: all 0.4s ease;
  height: 14px !important;
}

.btn-normal:hover {
  color: var(--color1) !important;
}

.btn-normal:hover svg {
  fill: var(--color1) !important;
  transform: translateX(10px);
}

/* portfolio css end  */

.other-box-two {
  background: #fafafa 0% 0% no-repeat padding-box;
  border-radius: 20px;
}

.other-box-two .text-box {
  padding: 30px;
}

.other-box-two h4 {
  text-align: left;
  font: normal normal 600 24px / 34px DM Sans;
  letter-spacing: 0px;
  color: #101010;
  opacity: 1;
}

.other-box-two .videos-box video {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  min-height: 240px;
  object-fit: cover;
}

button.close-top-right,
button.close-top-right:hover,
button.close-top-right:focus,
button.close-top-right:focus-visible {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: transparent;
  border: 0;
  filter: invert(1);
  opacity: 1;
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  z-index: 9999;
}

.aks-title .elementor-heading-title {
  background: linear-gradient(90deg,
      #1f3864 0%,
      #1f3864 50%,
      #cecece 50%,
      #cecece 100%);

  background-size: 220% 100%;
  background-position: 100% 0;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: background-position 1s ease;
}

.animate-box.show .aks-title .elementor-heading-title span {
  background: linear-gradient(90deg,
      #016702 0%,
      #016702 50%,
      #cecece 50%,
      #cecece 100%);

  background-size: 220% 100%;
  background-position: 0 0;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 1s ease !important;
}

.animate-box.show .aks-title .elementor-heading-title,
.animate-box.show .aks-title .elementor-heading-title span {
  background-position: 0 0;
}

.cnt-list li.elementor-icon-list-item a {
  text-underline-offset: 3px;
  text-decoration-thickness: 1px !important;
  font-weight: 100;
  color: #1f3864;
}

.cnt-list li.elementor-icon-list-item:hover a {
  color: #016702;
  text-decoration: none !important;
}

.back-to-top .elementor-icon-box-title {
  margin: 0 !important;
}

span.elementor-button-content-wrapper {
  align-items: center;
}

span.elementor-button-icon {
  background-color: #fff;
  color: #016702;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  transform: rotate(-45deg);
  transition: all 0.4s ease;
}

.elementor-button-icon svg {
  width: 1.2em !important;
  height: auto !important;
}

span.elementor-button-icon path {
  fill: #016702 !important;
}

.elementor-button:hover span.elementor-button-icon {
  transform: rotate(0deg);
}

.button-green-elementor span.elementor-button-icon {
  background-color: #016702 !important;
  color: #fff !important;
}

.button-green-elementor span.elementor-button-icon path {
  fill: #fff !important;
}

.heading span {
  color: var(--color2);
}

/* about page  */

.aboutus-wrapper .about-box {
  transition: 1.5s ease all;
  opacity: 0;
}

.aboutus-wrapper .animate-box.show .about-box {
  transform: translateY(0);
  opacity: 1;
}

.aboutus-accordion.elementor-widget-n-accordion .e-n-accordion-item:open {
  border-radius: 15px;
  overflow: hidden;
}

.aboutus-accordion.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-text span {
  font-size: 14px;
  color: var(--color2);
  display: inline-block;
  margin-right: 10px;
}

.aboutus-accordion.elementor-widget-n-accordion .e-n-accordion-item:open .e-n-accordion-item-title-text span {
  color: var(--color4);
}

.expertise-box .elementor-widget-text-editor {
  transition: 0.3s ease all;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.expertise-box:hover .elementor-widget-text-editor {
  height: 48px;
  opacity: 1;
  visibility: visible;
}

.partner-box {
  position: relative;
  height: 325px;
  width: 100%;
  transition: 0.3s ease all;
}

.partner-box::before {
  content: "";
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  border: 1px solid var(--color1);
}

.partner-box:hover {
  translate: 0 -15px;
}

.partner-box:hover::before {
  background: var(--color1);
}

.partner-box:hover img {
  filter: brightness(10);
}

.partner-box:hover h5 {
  color: #fff !important;
}

/* about page end */

/*  Milestone timeline start */
.timeline-slider .owl-item .item {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  overflow: visible;
}

.timeline-slider .owl-item .item .owl-title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: -90px;
  padding-bottom: 10px;
}

.timeline-slider .owl-item .item .owl-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: calc(100% + 25px);
  height: 2px;
  background: #1f38642e;
}

.timeline-slider .owl-item .item .owl-title::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 48px;
  border: 4px solid var(--color1) !important;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  z-index: 2 !important;
}

/* .timeline-slider .owl-item.active .item .owl-title::before {

  border-color: var(--color1) !important;
} */

small.brand-name {
  text-transform: capitalize;
}

.timeline-slider .owl-thumb img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.timeline-slider .item {
  display: flex !important;
  flex-direction: column !important;
}

.timeline-slider .item .owl-subtitle {
  order: 2 !important;
}

.timeline-slider .item .owl-content {
  order: 3 !important;
}

.timeline-slider .owl-theme .owl-nav button i {
  color: var(--color1) !important;
  border-radius: 100% !important;
  font-size: 25px !important;
  background: #ffffff 0% 0% no-repeat padding-box !important;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #1f3864 !important;
  opacity: 1;
}

.timeline-slider .owl-theme .owl-nav button i:hover {
  background: var(--color1) !important;
  color: var(--color4) !important;
}

.timeline-slider .owl-theme .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
  display: inline-flex;
  gap: 15px;
}

.timeline-slider .owl-theme .owl-nav button {
  position: initial !important;
  float: inherit;
}

.timeline-slider .owce-carousel-container,
.solution-slider .owce-carousel-container {
  padding: 0 !important;
}

/* Milestone timeline start */

/* solution page  */

.solution-slider .owl-theme .owl-nav {
  display: inline-flex;
  gap: 15px;
  float: right;
}

.solution-slider .owl-theme .owl-nav.disabled {
  display: none;
}

.solution-slider .owl-theme .owl-nav button {
  position: initial !important;
  float: inherit;
}

.solution-slider .owl-dots {
  float: left;
}

.solution-slider .owl-dots .owl-dot span {
  border-radius: 0;
  transition: 0.5s ease all;
}

.solution-slider .owl-dots .owl-dot.active span {
  background: var(--color1) !important;
}

.solution-slider-wrapper {
  overflow-x: hidden;
}

.soltuion__tabs .solution-slider-wrapper {
  /* overflow: inherit !important; */
}

.solution-slider-wrapper .solution-slider .owl-stage-outer {
  overflow: visible;
}

.page-id-26 .solution-slider-wrapper .solution-slider .owl-stage-outer {
  overflow: hidden;
}

.solution-slider .owl-dot {
  overflow: hidden;
  position: relative;
  width: 150px;
  height: 4px;
  background: #1f386438 !important;
  border-radius: 0 !important;
}

.solution-slider .owl-dot span {
  display: none !important;
}

.solution-slider .owl-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--color1);
  transition: 0.3s ease all;
}

.solution-slider .owl-dot.completed::before,
.solution-slider .owl-dot.active::before {
  width: 100%;
}

.solution-slider .owl-dot.progress-active::before {
  animation: owlProgress 2s linear forwards;
}

@keyframes owlProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.process-box .process-box-content {
  transition: 0.3s ease all;
}

.process-box .process-box-content .elementor-icon-list-items {
  opacity: 0;
  transition: 0.3s ease all;
}

.process-box:hover .process-box-content {
  background-color: var(--color1);
  bottom: 0 !important;
  display: grid;
  place-content: end;
  justify-content: left;
}

.process-box:hover .process-box-content .elementor-icon-list-items {
  opacity: 1;
}

.process-box .process-box-content .first-word {
  font-size: 16px;
  position: relative;
  top: -10px;
}

.process-box .process-box-content .elementor-icon-list-items .elementor-icon-list-text {
  padding-inline-start: 14px !important;
}

/* solution page end */

/* maintenance page  */
.twentytwenty-handle {
  background: var(--color4) !important;

  .twentytwenty-left-arrow {
    margin-left: -13px !important;
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-left: 2px solid #333333 !important;
    border-top: 2px solid #333333 !important;
    rotate: -45deg !important;
  }

  .twentytwenty-right-arrow {
    margin-right: -13px !important;
    width: 10px !important;
    height: 10px !important;
    border: 0 !important;
    border-right: 2px solid #333333 !important;
    border-bottom: 2px solid #333333 !important;
    rotate: -45deg !important;
  }
}

.service-slider {
  overflow-y: clip;

  .owl-item {
    .item {
      display: flex;
      flex-direction: column;

      .owl-thumb {
        order: 1;

        img {
          height: auto !important;
        }
      }

      .owl-subtitle {
        order: 2;

        img {
          width: 75px !important;
          height: 75px !important;
        }
      }

      .owl-title {
        order: 3;
      }

      .owl-content {
        order: 4;
      }
    }
  }

  .owl-dots {
    float: inherit !important;
  }

  .owl-theme {
    .owl-nav {
      display: flex;
      gap: 15px;
      justify-content: space-evenly;
      float: inherit;
      translate: 0 56px;
    }
  }
}

.contact-details {
  .elementor-icon-list-items {
    .elementor-icon-list-item {
      a span {
        border-bottom: 1px solid #b5b5b5;
      }

      &:hover {
        a span {
          border-color: transparent !important;
        }
      }
    }
  }

  .elementor-icon {
    border-color: #b5b5b5 !important;
  }
}

.contact-form {
  textarea {
    height: 150px;
  }
}

/* maintenance page end */

.project-sidebar {
  margin-bottom: 50px;
}

.project-sidebar a {
  font: normal normal 500 16px / 24px Spline Sans;
  letter-spacing: -0.44px;
  color: #333333;
  padding: 10px 30px;
  background: #f6f7f7;
  margin: 3px 4px;
  border-radius: 30px;
  display: inline-block;
}

.project-sidebar .active {
  background-color: #1f3864;
  color: #fff;
}

.project-sidebar {
  margin-bottom: 50px;
  border: 1px solid #3333333d;
  border-radius: 40px;
  display: inline-block;
  padding: 2px;
}

.success-story-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.success-story-card .card-content .category .cat-item {
  font: normal normal 500 16px / 23px Spline Sans;
  letter-spacing: -0.44px;
  color: #bababa;
  border: 1px solid #bababa;
  border-radius: 30px;
  padding: 5px 15px;
  text-transform: capitalize;
}

.success-story-card .card-content h4 {
  font: normal normal 600 21px / 24px Spline Sans;
  letter-spacing: 0px;
  color: #1f3864;
  text-transform: capitalize;
  margin-top: 0;
}

.success-story-card .card-content .year {
  font: normal normal 600 16px / 23px Spline Sans;
  letter-spacing: 0px;
  color: #016702;
  text-transform: uppercase;
  margin: 0;
}

.button-load-more {
  font: normal normal bold 18px / 25px Spline Sans !important;
  letter-spacing: 0px !important;
  color: #1f3864 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px !important;
}

.button-load-more:hover {
  color: #016702 !important;
  background: transparent !important;
  text-decoration: none !important;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.project-content .listing {
  font: normal normal 500 16px / 24px Spline Sans;
  letter-spacing: -0.44px;
}

.project-content .bgcolord {
  background: #1f3864;
  padding: 6px 20px;
  color: #fff;
}

.project-content .no-bgcolord {
  padding: 6px 20px;
  color: #333333;
}

a.back-btn {
  font: normal normal bold 16px / 24px Spline Sans;
  letter-spacing: 0px;
  color: #1f3864;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a.back-btn:hover {
  font: normal normal bold 16px / 24px Spline Sans;
  letter-spacing: 0px;
  color: #016702;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a.back-btn .elementor-button-icon {
  background-color: #1f3864;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  transform: rotate(180deg);
  transition: all 0.4s ease;
}

a.back-btn:hover .elementor-button-icon {
  background-color: #016702;
  color: #fff;
}

a.back-btn span.elementor-button-icon path {
  fill: #fff !important;
}

.portfolio-image-slider .slick-list {
  padding-left: 0 !important;
  overflow: visible !important;
}

.portfolio-image-slider .img-wraps a {
  display: block;
}

.portfolio-image-slider .img-wraps a img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.elementor-lightbox .elementor-lightbox-image {
  border-radius: 15px !important;
}

.ov-hidden {
  overflow: hidden;
}

.project-post-card .year {
  font: normal normal 500 15px / 22px Spline Sans;
  letter-spacing: 0px;
  color: #016702;
  text-transform: uppercase;
}

.project-post-card h2 {
  font: normal normal bold 55px/65px Bricolage Grotesque;
  letter-spacing: -0.78px;
  color: #1f3864;
  text-transform: uppercase;
}

.project-detail .textarea h4 {
  font: normal normal 600 21px/28px Spline Sans;
  letter-spacing: 0px;
  color: #1f3864;
}

.project-detail .textarea h5 {
  font: normal normal 600 16px/24px Spline Sans;
  letter-spacing: -0.44px;
  color: #333333;
}

.project-detail .textarea {
  font: normal normal 500 16px/24px Spline Sans;
  letter-spacing: -0.44px;
  color: #333333;
}

.project-detail .textarea ul {
  padding-left: 15px;
  padding-bottom: 15px;
}

.project-image-wrapper img {
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.project-detail {
  padding-top: 75px;
}

.logo-project {
  display: none;
}

.single-project .header-main {
  background-color: transparent !important;
}

.single-project .logo-project {
  display: block !important;
}

.single-project .logo-all {
  display: none !important;
}

.single-project .menu-toggale .elementor-icon-box-content:before {
  background: #1f3864 !important;
}

.single-project .menu-toggale .elementor-icon-box-title {
  color: #1f3864 !important;
}

.single-project .menu-toggale .elementor-icon-box-content:after {
  background: #1f3864 !important;
}

.single-project .menu-toggale .elementor-icon-box-title:before {
  background: #1f3864;
}

.hfe-nav-menu>li {
  position: relative;
  padding-left: 50px;
}

.hfe-nav-menu>li::before {
  position: absolute;
  left: 0px;
  top: 8px;
  display: flex;
  align-items: center;
  color: #016702;
  font-size: 14px;
  font-weight: 500;
  font-family: "Spline Sans", sans-serif;
  line-height: 1;
  pointer-events: none;
}

.hfe-nav-menu>li:nth-child(1)::before {
  content: "[ 01 ]";
}

.hfe-nav-menu>li:nth-child(2)::before {
  content: "[ 02 ]";
}

.hfe-nav-menu>li:nth-child(3)::before {
  content: "[ 03 ]";
}

.hfe-nav-menu>li:nth-child(4)::before {
  content: "[ 04 ]";
}

.hfe-nav-menu>li:nth-child(5)::before {
  content: "[ 05 ]";
}

.hfe-nav-menu>li:nth-child(6)::before {
  content: "[ 06 ]";
}

.hfe-has-submenu-container {
  display: flex;
  align-items: center;
}

.hfe-has-submenu-container>.hfe-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.hfe-has-submenu-container .hfe-menu-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hfe-has-submenu-container .hfe-menu-toggle i::before {
  font-size: 25px;
  font-weight: 500;
  color: #333333 !important;
}

.about-kuhup:hover .anim-image {
  transform: translateY(-50px);
}

.animate-box.show .aks-title .elementor-heading-title {
  color: #1f3864 !important;
}

.animate-box.show .aks-title .elementor-heading-title span {
  color: #016702 !important;
}

.menu-toggale .elementor-icon-box-content {
  position: relative;
}

.menu-toggale {
  cursor: pointer;
}

.menu-toggale .elementor-icon-box-content:before {
  width: 40px;
  height: 1.5px;
  background: #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

.menu-toggale .elementor-icon-box-content:after {
  width: 40px;
  /* height: 1.5px; */
  border-bottom: 1.5px solid #fff;
  background: #fff;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  box-shadow: none !important;
}

.menu-toggale .elementor-icon-box-title:before {
  width: 40px;
  height: 1.5px;
  background: #fff;
  content: "";
  position: absolute;
  right: 0px;
  top: 6px;
  bottom: 0;
  transition: all 0.4s ease;
}

.menu-toggale .elementor-icon-box-title {
  margin: 0 !important;
}

.menu-toggale .elementor-icon-box-title span {
  position: relative;
  right: 50px;
  top: 0;
  transition: all 0.4s ease;
  opacity: 0;
}

.menu-toggale:hover .elementor-icon-box-title:before {
  right: 10px;
}

.menu-toggale:hover .elementor-icon-box-title span {
  right: 60px;
  opacity: 1;
}

.menu-show {
  transform: translateY(-100vh);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.menu-show.active {
  transform: translateY(0vh);
  transition: all 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.close-toggale {
  cursor: pointer;
}

.close-toggale .elementor-icon-box-content:before {
  width: 30px;
  height: 1.5px;
  background: #fff;
  content: "";
  position: absolute;
  right: 0px;
  top: 7px;
  bottom: 0;
  transition: all 0.4s ease;
  transform: rotate(45deg);
}

.close-toggale .elementor-icon-box-content:after {
  width: 30px;
  height: 1.5px;
  background: #fff;
  content: "";
  position: absolute;
  right: 0px;
  top: 7px;
  bottom: 0;
  transition: all 0.4s ease;
  transform: rotate(135deg);
}

.close-toggale .elementor-icon-box-title {
  margin: 0 !important;
}

.close-toggale .elementor-icon-box-title span {
  position: relative;
  right: 30px;
  top: 0;
  transition: all 0.4s ease;
  opacity: 0;
}

.close-toggale:hover .elementor-icon-box-title span {
  right: 40px;
  opacity: 1;
}

.close-toggale:hover .elementor-icon-box-content:before {
  transform: rotate(0deg);
}

.close-toggale:hover .elementor-icon-box-content:after {
  transform: rotate(180deg);
}

.testimonial-section {
  display: flex;
  gap: 20px;
  overflow: hidden;
  height: 600px;
}

.testimonial-section:before {
  content: "";
  background: transparent linear-gradient(180deg, #ffffff00 0%, #ffffff 77%, #ffffff 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  position: absolute;
  bottom: 0;
  height: 100px;
  z-index: 1;
  width: 100%;
}

.testimonial-columns-wrap {
  gap: 8px;
}

.testimonial-col {
  flex: 1;
  height: 600px;
  overflow: hidden;
}

.testimonials-slider-one {
  height: 100%;
}

.testimonials-slider-one .slick-list,
.testimonials-slider-one .slick-track {
  height: 100% !important;
}

.global-map .global-map-locations {}

.global-map .global-map-locations .elementor-icon-list-item .elementor-icon-list-text {
  padding: 5px 20px;
  border-radius: 30px;
  color: var(--color4);
  background: var(--color2);
  order: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease all;
  position: absolute;
  top: -5px;
  right: 35px;
  white-space: nowrap;
}

.global-map .global-map-locations .elementor-icon-list-item .elementor-icon-list-icon {
  order: 2;
}

.global-map .global-map-locations .elementor-icon-list-item:hover .elementor-icon-list-text {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease;
}

.global-map .global-map-locations {
  height: 600px;
}

.global-map .global-map-locations .elementor-icon-list-item {
  position: absolute;
  /* width: fit-content; */
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(1) {
  left: 13%;
  top: 36%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(2) {
  left: 11%;
  top: 55%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(3) {
  left: 20%;
  top: 50%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(4) {
  left: 32%;
  top: 32%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(5) {
  left: 38%;
  top: 32%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(6) {
  left: 38.5%;
  top: 47%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(7) {
  left: 40%;
  top: 53%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(8) {
  left: 42%;
  top: 68%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(9) {
  left: 45%;
  top: 56%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(10) {
  left: 48%;
  top: 50%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(11) {
  left: 50%;
  top: 47%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(12) {
  left: 53%;
  top: 10%;
}

.global-map .global-map-locations .elementor-icon-list-item:nth-child(13) {
  right: 9%;
  bottom: 18%;
}

@media (max-width: 1024px) {
  .expertise-box .elementor-widget-text-editor br {
    display: none !important;
  }

  .global-map .global-map-locations {
    height: 460px;
  }

  .solution-slider-wrapper .owce-carousel .item {
    padding-right: 10px !important;
  }
}

@media only screen and (max-width: 768px) {
  h3.cat-color {
    font-size: 18px !important;
  }

  .sidebar-box {
    padding: 10px;
  }

  .blog-content h2 {
    font-size: 24px !important;
  }

  .read-more-btn {
    font-size: 14px !important;
    padding: 8px 20px !important;
    border-radius: 7px !important;
  }

  .article-detail {
    padding: 30px 0;
  }

  /* banner responsive css  start */
  .hero-banner .carousel-caption h3 {
    font-size: 24px;
    line-height: 30px;
  }

  /* banner responsive css  end */

  .arrowbtn {
    width: 30px;
    height: 30px;
  }

  ul#project-filter-list li .cats {
    font-size: 16px;
    padding: 5px 2px;
  }

  .portfolio-info .title {
    font-size: 18px;
    line-height: 23px;
  }

  .other-box-two h4 {
    font-size: 18px;
    line-height: 24px;
  }

  span.elementor-button-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .elementor-button-icon svg {
    width: 0.9em !important;
  }

  .solutions-slider-wrap {
    padding: 20px;
    height: 900px;
  }

  .slider-inner-solution .slick-dots li button {
    width: 15px;
  }

  .right-btn.arrowbtn-btm {
    left: inherit;
    right: 0;
  }

  .slider-inner-solution .slick-dots {
    justify-content: center !important;
    padding-left: 0 !important;
  }

  .solutions-slider-wrap .left-wrap .title {
    font: normal normal bold 24px / 32px Bricolage Grotesque;
  }

  .home-video.elementor-widget-video .e-hosted-video .elementor-video {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 500px;
  }

  .hfe-nav-menu>li::before {
    left: 0px !important;
    font-size: 10px !important;
  }

  .hfe-nav-menu>li {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
  }

  ul.sub-menu {
    padding-top: 10px;
  }

  .project-post-card h2 {
    font: normal normal bold 24px / 35px Bricolage Grotesque;
    letter-spacing: -0.48px;
  }

  .solution-slider .owl-dot {
    width: 30px;
  }

  .partner-box {
    width: 280px !important;
    height: 280px !important;
  }

  .partner-box::before {
    width: 100% !important;
    height: 100% !important;
  }

  .service-slider {
    & .owl-theme {
      justify-content: space-between !important;
      translate: 0 40px !important;
      padding: 0 30px;
    }
  }

  .close-toggale .elementor-icon-box-content:after {
    background: #333;
  }

  .close-toggale .elementor-icon-box-content:before {
    background: #333;
  }
}

/* animated testimonials slider  */
.testimonial-columns-wrap {
  display: flex;
  gap: 16px;
}

.testimonial-col {
  flex: 1;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 0px;
  will-change: transform;
}

.testimonials-box-two .description {
  min-height: 210px;
}

.testimonials-box-two .description p {
  margin-bottom: 0;
}

.testimonials-box-two .description::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.testimonials-box-two .description::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

/* Handle */
.testimonials-box-two .description::-webkit-scrollbar-thumb {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #f9f9f9;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.5);
}

.testimonials-box-two .description::-webkit-scrollbar-thumb:window-inactive {
  background: #ddd;
}

/* .track-up {
  animation: scrollUp 30s linear infinite;
}

.track-down {
  animation: scrollDown 30s linear infinite;
} */

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* Pause on hover */
.testimonial-col:hover .testimonial-track {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .testimonials-box-two .description {
    height: 150px;
    overflow-y: scroll;
  }
}

@media (max-width: 767px) {
  .testimonial-section {
    height: auto;
  }

  .testimonial-columns-wrap {
    flex-direction: column;
  }

  .testimonial-col {
    height: auto;
    overflow: hidden;
  }

  .testimonial-track {
    flex-direction: row;
    /* width: max-content; */
    gap: 15px;
  }

  .track-up {
    animation: scrollLeft 25s linear infinite;
  }

  .track-down {
    animation: scrollRight 25s linear infinite;
  }

  .testimonial-track .item {
    height: 100%;
  }

  .testimonial-track .item .testimonials-box-two {
    min-width: 300px;
    height: 350px;
    overflow: scroll;
  }

  .testimonial-track .item .testimonials-box-two::-webkit-scrollbar {
    display: none;
  }

  .testimonial-columns-wrap {
    gap: 1px;
  }

  .testimonial-section:before {
    display: none;
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes scrollRight {
    from {
      transform: translateX(-50%);
    }

    to {
      transform: translateX(0);
    }
  }

  .sports-dots {
    right: 20px;
  }

  .sports-dots ul.slick-dots li {
    margin: 0 5px;
    background: #fff;
    width: 7px;
    height: 12px;
    border-radius: 2px;
    margin-bottom: 5px !important;
  }

  .sports-dots ul.slick-dots li.slick-active {
    background-color: var(--color2) !important;
  }

  .sports-dots li span {
    display: none;
  }

  .left-wrap {
    padding-right: 20px;
  }

  .testimonials-slider .slick-dots {
    max-width: 270px;
  }

  /* .testimonials-slider .right-btn.arrowbtn-btm {
    left: 290px;
  } */
  .testimonials-slider .slick-dots {
    margin: 0 auto !important;
		padding: 0 !important;
  }
	
	.testimonials-slider .right-btn.arrowbtn-btm {
    left: auto !important;
    right: 0 !important;
  }

}