/*==========================================================================
* Text Slider CSS
==========================================================================*/
.text__slider {
  position: relative;
  overflow: hidden;
}
.text__slider .text-slide {
  display: flex;
}
.text__slider ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.text__slider ul li {
  display: inline-block;
}
.text__slider ul li i {
  margin: 0 40px;
  color: #000;
  opacity: 0.5;
  transition: 0.4s;
}
.text__slider ul li h2 {
  color: #545459;
  font-weight: 400;
  font-size: 40px;
}
.text__slider ul li h2 a {
  transition: 0.4s;
  display: inline-flex;
  align-items: center;
}
.text__slider ul li > a img {
  max-width: 100% !important;
}

.text-border {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
}

.no-icon-border i {
  -webkit-text-fill-color: #000;
  -webkit-text-stroke-width: 0;
}

.sliders {
  flex-shrink: 0;
}

.text_scroll {
  animation: scroll 30s linear infinite;
  animation-direction: reverse !important;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.flexitype-transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header_mega-menu {
  z-index: 99;
}
.header_mega-menu .menu {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.header_mega-menu .menu > li {
  display: flex;
  height: 100%;
  align-items: center;
  list-style: none;
  margin: 0 25px;
}
.header_mega-menu ul {
  padding: 0;
  margin: 0;
}
.header_mega-menu ul li.menu-item:hover > a {
  color: var(--primary-color-1);
}
.header_mega-menu ul li.menu-item:hover > .mega-menu-wrap,
.header_mega-menu ul li.menu-item:hover > .sub-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header_mega-menu ul li.menu-item:hover > .mega-menu-wrap {
  transform: translateY(0);
  pointer-events: auto;
}
.header_mega-menu ul li.menu-item .sub-menu {
  position: absolute;
  top: 100%;
  background: #f7f7f7;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s;
  min-width: 250px;
  visibility: hidden;
  z-index: 99;
}
.header_mega-menu ul li.menu-item .sub-menu li {
  padding: 0 25px;
  list-style: none;
  position: relative;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
.header_mega-menu ul li.menu-item .sub-menu li > a {
  border-bottom: 1px solid var(--border-color-1);
  color: var(--text-heading-color);
  padding: 12px 0 !important;
  transition: all 0.4s ease-out 0s;
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
  position: relative;
  text-align: left;
}
.header_mega-menu ul li.menu-item .sub-menu li > a::after {
  position: absolute;
  content: "";
  background: var(--primary-color-1);
  width: 0;
  transition: all 0.4s ease-out 0s;
  height: 1px;
  left: 0;
  bottom: -1px;
}
.header_mega-menu ul li.menu-item .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}
.header_mega-menu ul li.menu-item .sub-menu li .sub-menu .menu-item-has-children > a::before {
  content: "\f105";
  right: 0;
  color: var(--text-heading-color);
}
.header_mega-menu ul li.menu-item .sub-menu li .sub-menu li .sub-menu {
  left: inherit;
  right: 100%;
}
.header_mega-menu ul li.menu-item .sub-menu li:last-child > a {
  border: none;
}
.header_mega-menu ul li.menu-item .sub-menu li:last-child > a::after {
  display: none;
}
.header_mega-menu ul li.menu-item .sub-menu li:first-child .sub-menu {
  top: 0;
}
.header_mega-menu ul li.menu-item .sub-menu li:hover > a {
  color: var(--primary-color-1);
}
.header_mega-menu ul li.menu-item .sub-menu li:hover > a::after {
  width: 100%;
}
.header_mega-menu ul li.menu-item .sub-menu .menu-item-has-children > a::before {
  content: "\f105";
  right: 0;
}
.header_mega-menu ul li.menu-item .mega-menu-wrap {
  position: absolute;
  background: #f7f7f7;
  top: 100%;
  left: 50%;
  transform: translateY(10px);
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  width: 100%;
  padding: 30px;
}
.header_mega-menu ul li.menu-item > a {
  color: var(--text-heading-color);
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  transition: all 0.4s ease-out 0s;
  text-transform: capitalize;
  font-family: var(--body-font);
}
.header_mega-menu ul li.menu-item.mega-menu-enabled > a, .header_mega-menu ul li.menu-item.menu-item-has-children > a {
  position: relative;
}
.header_mega-menu ul li.menu-item.mega-menu-enabled > a::before, .header_mega-menu ul li.menu-item.menu-item-has-children > a::before {
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-48%);
  right: -16px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--text-heading-color);
  transition: all 0.3s ease;
}
.header_mega-menu ul li.menu-item.mega-menu-enabled, .header_mega-menu ul li.menu-item.menu-item-has-children {
  padding-right: 15px;
}
.header_mega-menu ul li.menu-item.mega-menu-enabled:hover > a::before, .header_mega-menu ul li.menu-item.menu-item-has-children:hover > a::before {
  color: var(--primary-color-1);
}
.header_mega-menu ul li.menu-item:first-child {
  margin-left: 0 !important;
}
.header_mega-menu ul li.menu-item:last-child {
  margin-right: 0 !important;
}

@media (max-width: 1024px) {
  .mega-menu-wrap,
  .header_mega-menu {
    display: none;
  }
}
/* Common button styles */
.flexitype-btn-wrapper {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  z-index: 3;
  justify-content: center;
  padding: 12px 32px;
  transition: 0.4s;
  background: #ECEFF1;
  text-align: center;
  border-radius: 5px;
}
.flexitype-btn-wrapper.left {
  flex-direction: row-reverse;
}
.flexitype-btn-wrapper.button-tamaya.left::before, .flexitype-btn-wrapper.button-tamaya.left::after {
  left: 10px;
}
.flexitype-btn-wrapper.button-tamaya.right::before, .flexitype-btn-wrapper.button-tamaya.right::after {
  left: inherit;
  right: 10px;
}
.flexitype-btn-wrapper i {
  position: relative;
  z-index: 2;
}

.button-ripple {
  overflow: hidden;
  transition: 0.4s;
}
.button-ripple::after, .button-ripple::before {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background: #3949F4;
  border-radius: 50%;
  left: -20px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.button-ripple::after {
  left: inherit;
  right: -20px;
  transform: translate(50%, -50%);
}
.button-ripple:hover {
  color: #fff;
}
.button-ripple:hover::before {
  animation: animation-left 0.8s both;
  animation-direction: alternate;
}
.button-ripple:hover::after {
  animation: animation-right 0.8s both;
  animation-direction: alternate;
}

@keyframes animation-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 45%;
    width: 100%;
    height: 375px;
  }
}
@keyframes animation-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 45%;
    width: 100%;
    height: 375px;
  }
}
.center-ripple {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.center-ripple::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 200px;
  width: 200px;
  border-radius: 100%;
  background-color: #3949F4;
  transition: 0.5s;
  z-index: -1;
}
.center-ripple:hover {
  color: #fff;
}
.center-ripple:hover::after {
  transform: translate(-50%, -50%) scale(2);
}

/* Winona */
.button-winona {
  overflow: hidden;
  padding: 0 !important;
  transition: border-color 0.4s, background-color 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-winona::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  color: #3949F4;
  transform: translate3d(0, 25%, 0);
}

.button-winona > span {
  display: block;
}

.button-winona::after,
.button-winona > span {
  padding: 12px 32px;
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-winona:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.button-winona:hover > span {
  opacity: 0;
  transform: translate3d(0, -25%, 0);
}

.slide-effect {
  overflow: hidden;
}
.slide-effect::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: #3949F4;
  transition: 0.4s;
  z-index: -1;
}
.slide-effect:hover {
  color: #fff;
}
.slide-effect:hover::after {
  width: 100%;
}
.slide-effect.bottom_top::after, .slide-effect.top_bottom::after {
  width: 100%;
  height: 0;
}
.slide-effect.bottom_top:hover::after, .slide-effect.top_bottom:hover::after {
  height: 100%;
}
.slide-effect.left_right::after {
  right: inherit;
  left: 0;
}
.slide-effect.bottom_top::after {
  top: inherit;
  bottom: 0;
}

/* Ujarak */
.button-ujarak {
  overflow: hidden;
}

.button-ujarak::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3949F4;
  z-index: -1;
  opacity: 0;
  transform: scale3d(0.7, 1, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-ujarak,
.button-ujarak::before {
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-ujarak:hover {
  color: #fff;
  border-color: #37474f;
}

.button-ujarak:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.button-tamaya {
  overflow: hidden;
  color: #171717;
  transition: 0.4s;
}
.button-tamaya:hover {
  background: #3949F4;
  color: #fff;
}

.button-tamaya::before,
.button-tamaya::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  color: #191919;
  overflow: hidden;
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  text-align: center;
}

.button-tamaya::before {
  top: 0;
  padding-top: 12px;
}

.button-tamaya::after {
  bottom: 0;
  line-height: 0;
}

.button-tamaya > span {
  text-align: center;
  display: block;
  transform: scale3d(0.2, 0.2, 1);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-tamaya:hover::before {
  transform: translate3d(0, -100%, 0);
}

.button-tamaya:hover::after {
  transform: translate3d(0, 100%, 0);
}

.button-tamaya:hover > span {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* Wayra */
.button-wayra {
  overflow: hidden;
  transition: border-color 0.4s, color 0.4s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.button-wayra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: #37474f;
  z-index: -1;
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform-origin: 0% 100%;
  transition: transform 0.4s, opacity 0.4s, background-color 0.4s;
}

.button-wayra:hover {
  color: #fff;
  border-color: #3949F4;
}

.button-wayra:hover::before {
  opacity: 1;
  background-color: #3949F4;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

/* Rayen */
.button-rayen {
  overflow: hidden;
  padding: 0 !important;
}

.button-rayen::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3949F4;
  transform: translate3d(-100%, 0, 0);
  text-align: center;
  color: #fff;
}

.button-rayen > span {
  display: block;
}

.button-rayen::before,
.button-rayen > span {
  padding: 12px 32px;
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button-rayen:hover::before {
  transform: translate3d(0, 0, 0);
}

.button-rayen:hover > span {
  transform: translate3d(0, 100%, 0);
}

/* Pipaluk */
.button-pipaluk {
  text-align: center;
}
.button-pipaluk:hover {
  color: #fff;
}

.button-pipaluk::before,
.button-pipaluk::after {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.4s, background-color 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0, 0.3, 1);
}

.button-pipaluk::before {
  border: 1px solid #3949F4;
}

.button-pipaluk::after {
  background: #ECEFF1;
}

.button-pipaluk:hover::before {
  transform: scale3d(1, 1, 1);
}

.button-pipaluk::before,
.button-pipaluk:hover::after {
  transform: scale3d(0.9, 0.7, 1);
}

.button-pipaluk:hover::after {
  background-color: #3949F4;
}

/* Moema */
.button-moema {
  border-radius: 50px;
  transition: background-color 0.4s, color 0.4s;
}

.button-moema::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background: inherit;
  border-radius: 50px;
  z-index: -1;
  opacity: 0.4;
  transform: scale3d(0.8, 0.5, 1);
}

.button-moema:hover {
  transition: background-color 0.1s 0.4s, color 0.1s 0.4s;
  color: #ECEFF1;
  background-color: #3949F4;
  animation: anim-moema-1 0.4s forwards;
}

.button-moema:hover::before {
  animation: anim-moema-2 0.4s 0.4s forwards;
}

@keyframes anim-moema-1 {
  60% {
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-2 {
  to {
    opacity: 0;
    transform: scale3d(1, 1, 1);
  }
}
/* Isi */
.button-isi {
  overflow: hidden;
  transition: 0.4s;
}
.button-isi:hover {
  color: #fff;
}

.button-isi::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3949F4;
  transform-origin: 100% 50%;
  transform: scale3d(1, 2, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}

.button-isi:hover::before {
  transform: scale3d(10, 9, 1);
  transform-origin: 100% 55%;
}

/* Aylen */
.button-aylen {
  overflow: hidden;
  transition: color 0.4s;
}

.button-aylen::before,
.button-aylen::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  transition: transform 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button-aylen::before {
  background: #2281e7;
}

.button-aylen::after {
  background: #3949F4;
}

.button-aylen:hover {
  color: #fff;
}

.button-aylen:hover::before,
.button-aylen:hover::after {
  transform: translate3d(0, 100%, 0);
}

.button-aylen:hover::after {
  transition-delay: 0.175s;
}

/* Wapasha */
.button-wapasha {
  transition: background-color 0.4s, color 0.4s;
}

.button-wapasha::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #3949F4;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transform: scale3d(0.6, 0.6, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button-wapasha:hover {
  background-color: #fff;
  color: #3949F4;
}

.button-wapasha:hover::before {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* Antiman */
.button-antiman {
  text-align: center;
}

.button-antiman::before,
.button-antiman::after {
  content: "";
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button-antiman::before {
  border: 1px solid #3949F4;
  opacity: 0;
  transform: scale3d(1.2, 1.2, 1);
}

.button-antiman.button-border-thin::before {
  border-width: 1px;
}

.button-antiman.button-border-medium::before {
  border-width: 2px;
}

.button-antiman.button-border-thick::before {
  border-width: 3px;
}

.button-antiman:hover::before {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.button-antiman:hover::after {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
}

.accordion .accordion_area-item {
  border: 1px solid #E9E9EA;
}
.accordion .accordion_area-item-body {
  display: none;
  border-top: 1px solid #E9E9EA;
  padding: 15px 20px;
}
.accordion .accordion_area-item-body p {
  margin-bottom: 0;
}
.accordion .accordion_area-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 20px;
}
.accordion .accordion_area-item-title .accordion-icon-open {
  display: none;
}
.accordion .accordion_area-item-title.icon_start {
  flex-direction: row-reverse;
  justify-content: left;
  gap: 20px;
}
.accordion .accordion_area-item-title span i {
  text-align: center;
}
.accordion .accordion_area-item.active .accordion-icon-close {
  display: none;
}
.accordion .accordion_area-item.active .accordion-icon-open {
  display: block;
}

/*==========================================================================
FAQ CSS
==========================================================================*/
.accordion_area-item {
  margin-bottom: 20px;
  transition: 0.4s;
}

.accordion_area-item:last-child {
  margin-bottom: 0 !important;
}

.card_area {
  display: grid;
}
.card_area-item {
  height: 300px;
  background: #dadada;
  width: 100%;
  position: sticky;
  top: 0;
  border-radius: 20px;
  text-align: center;
}

.accordion_item .accordion-content {
  display: none;
}
.accordion_item.active .accordion-content {
  display: block;
}

/*==========================================================================
* Skill Bar CSS
==========================================================================*/
.skill__area-item:last-child {
  margin-bottom: 0 !important;
}
.skill__area-item-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skill__area-item-content h6 {
  word-break: normal;
}
.skill__area-item-bar {
  height: 100%;
  position: relative;
  width: 5%;
  top: 0;
  left: 0;
  background: #121212;
  transition: all 2.5s ease-out 0s;
}
.skill__area-item-bar .ft_counter {
  position: absolute !important;
  right: 0;
  top: -40px;
  z-index: 1;
  word-break: normal;
}
.skill__area-item-bar span {
  display: none;
}
.skill__area-item-inner {
  width: 100%;
  height: 10px;
  position: relative;
  background: #f5f5f5;
  margin-top: 10px;
  z-index: 2;
}
.skill__area.progress_shadow .skill__area-item-inner {
  height: 25px;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.182);
}
.skill__area.progress_shadow .skill__area-item-bar {
  border-radius: 50px;
}
.skill__area.progress_shadow .skill__area-item-bar .ft_counter {
  top: -50px;
}
.skill__area.progress_inner .skill__area-item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.skill__area.progress_inner .skill__area-item-content h6 {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}
.skill__area.progress_inner .skill__area-item-inner {
  height: 30px;
  margin-top: 0;
  border-radius: 10px;
}
.skill__area.progress_inner .skill__area-item-bar {
  border-radius: 10px;
}
.skill__area.progress_inner .skill__area-item-bar .ft_counter {
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 24px;
  margin-right: 15px;
}
.skill__area.progress_tooltip .skill__area-item .ft_counter {
  color: #fff;
  background: #121212;
  border-radius: 5px;
  padding: 2px 15px;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.skill__area.progress_tooltip.maker .skill__area-item .ft_counter::after {
  position: absolute;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  bottom: -15px;
  width: 15px;
  height: 15px;
  background: #121212;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.skill__area.progress_stripe .skill__area-item-bar span {
  overflow: hidden;
  height: 100%;
  display: block;
  position: relative;
}
.skill__area.progress_stripe .skill__area-item-bar span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35px;
  width: calc(100% + 70px);
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 35px 35px;
}
.skill__area.progress_stripe.stripe_left .skill__area-item-bar span::after {
  animation: animateStripe 2s linear infinite;
}
.skill__area.progress_stripe.stripe_right .skill__area-item-bar span::after {
  animation: animateStripe2 2s linear infinite;
}

/*==========================================================================
* Circle Bar CSS
==========================================================================*/
.circle__progress-item {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
}
.circle__progress-item::after {
  position: absolute;
  content: "";
  background: var(--bg-white);
  width: 90%;
  height: 90%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.circle__progress-item-bar svg path {
  stroke-width: 100;
  stroke: var(--primary-color-1);
}
.circle__progress-item-bar .progressbar-text {
  color: var(--body-color) !important;
  z-index: 3;
}

.flexitype-offcanvas-popup {
  position: fixed;
  width: 460px;
  height: 100%;
  right: 0;
  overflow: auto;
  transform: translateX(100%);
  top: 0;
  background: #131313;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: transform 0.5s ease 0.4s;
  padding: 100px 40px;
  scrollbar-width: none;
}

.flexitype-offcanvas-popup::-webkit-scrollbar {
  display: none;
}

.flexitype-offcanvas-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.flexitype-offcanvas-popup-icon i,
.flexitype-offcanvas-popup-icon svg {
  cursor: pointer;
}
.flexitype-offcanvas-popup-icon svg {
  height: auto;
  max-width: 25px;
}

.flexitype-offcanvas-popup .sidebar-close-btn {
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
  transform: rotate(0);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color-1);
  border-radius: 50%;
  color: var(--text-white);
}
.flexitype-offcanvas-popup .sidebar-close-btn:hover i {
  animation: rotate 0.4s ease 0s;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  transition: all 0.8s ease-out;
  visibility: hidden;
  z-index: 99999;
  background: rgba(24, 24, 24, 0.6);
}
.sidebar-overlay.show {
  visibility: visible;
  width: 100%;
}

.offcanvas-flexitype.left_right .flexitype-offcanvas-popup {
  right: inherit;
  left: 0;
  transform: translateX(-100%);
}
.offcanvas-flexitype.left_right .flexitype-offcanvas-popup.active {
  transform: translateX(0%);
}
.offcanvas-flexitype.left_right .sidebar-overlay {
  right: inherit;
  left: 0;
}
.offcanvas-flexitype.top_bottom .flexitype-offcanvas-popup {
  top: 0;
  transform: translateY(-100%) translateX(50%);
  width: 100%;
  height: 100%;
  right: 50%;
}
.offcanvas-flexitype.top_bottom .flexitype-offcanvas-popup.active {
  transform: translateY(0%) translateX(50%);
}
.offcanvas-flexitype.top_bottom .sidebar-overlay {
  height: 0;
  width: 100%;
}
.offcanvas-flexitype.top_bottom .sidebar-overlay.show {
  height: 100%;
}
.offcanvas-flexitype.bottom_top .flexitype-offcanvas-popup {
  top: inherit;
  bottom: 0;
  right: 50%;
  transform: translateY(100%) translateX(50%);
  width: 100%;
  height: 100%;
}
.offcanvas-flexitype.bottom_top .flexitype-offcanvas-popup.active {
  transform: translateY(0%) translateX(50%);
}
.offcanvas-flexitype.bottom_top .sidebar-overlay {
  height: 0;
  width: 100%;
  top: inherit;
  bottom: 0;
}
.offcanvas-flexitype.bottom_top .sidebar-overlay.show {
  height: 100%;
}

.tab_area-btn .tab_area-btn-wrapper {
  display: block;
  padding: 0;
}
.tab_area-btn-area {
  text-align: center;
}
.tab_area-btn-item {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
}
.tab_area-btn-item.active {
  background: #ddd;
}
.tab_area-btn-item.maker.active {
  position: relative;
  z-index: 1;
}
.tab_area-btn-item.maker.active::after {
  position: absolute;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-1px);
  bottom: -15px;
  width: 15px;
  height: 15px;
  background: #ddd;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.tab_area .tab_button_area.inline_with {
  display: inline-block;
}
.tab_area.horizontal_style .tab_area-btn-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tab_area.horizontal_style .tab_area-btn-wrapper.full_width .tab_area-btn-inner {
  flex-grow: 1;
}
.tab_area.vertical_style {
  display: flex;
  align-items: center;
}
.tab_area.vertical_style .tab_area-btn-wrapper {
  display: grid;
  gap: 20px;
}
.tab_area.vertical_style .tab_area-btn {
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  max-width: 35%;
  width: 35%;
}
.tab_area.vertical_style .tab_area-btn-item.maker.active::after {
  bottom: 50%;
  transform: translateX(-1px) translateY(50%);
  right: -15px;
  left: initial;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.tab_area.vertical_style .tab_area-btn-item.row-reverse.maker.active::after {
  bottom: 50%;
  transform: translateX(-1px) translateY(50%) scaleX(-1);
  right: initial;
  left: -14px;
}
.tab_area.vertical_style .tab_area-btn-inner:last-child .tab_area-btn-item {
  margin-bottom: 0 !important;
}
.tab_area .tab_area-content-item.hide {
  display: none;
}
.tab_area .tab_area-content-item.active {
  display: block;
}

@media (max-width: 1024px) {
  .tab_area.vertical_style {
    display: grid;
  }
  .tab_area.vertical_style .tab_area-btn {
    max-width: 100%;
    width: 100%;
  }
}
.company_history-area-item {
  display: flex;
}
.company_history-area-item-left {
  padding-right: 69px;
  margin-right: 70px;
  border-right: 1px dashed var(--primary-color-1);
  flex-shrink: 0;
  max-width: 50%;
  width: 50%;
}
.company_history-area-item-left .image {
  height: 100%;
}
.company_history-area-item-left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company_history-area-item-right-content {
  padding: 39px;
  padding-bottom: 37px;
  border: 1px solid var(--border-color-1);
  margin-top: 30px;
  margin-bottom: 50px;
  position: relative;
}
.company_history-area-item-right-content::before {
  content: "";
  position: absolute;
  left: -76px;
  top: 70px;
  width: 10px;
  height: 10px;
  background: var(--primary-color-1);
  box-shadow: 0px 5px 20px rgba(114, 114, 114, 0.5);
  border-radius: 50%;
}
.company_history-area-item-right-content::after {
  content: "";
  position: absolute;
  left: -11px;
  top: 65px;
  width: 20px;
  height: 20px;
  background: var(--bg-white);
  border-top: var(--border-color-1) solid 1px;
  border-left: var(--border-color-1) solid 1px;
  transform: rotate(-45deg);
}
.company_history-area-item-right-content-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.company_history-area-item-right-content-date span {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: var(--text-white);
  background: var(--primary-color-1);
  padding: 7px 22px;
  padding-left: 20px;
  padding-right: 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 81% 50%, 100% 99%, 0 100%, 0% 50%);
}
.company_history-area-item-right-content p {
  margin-bottom: 0;
}
.company_history-area-item:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: -1px;
}
.company_history-area-item:nth-child(even) .company_history-area-item-left {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
  padding-left: 70px;
  margin-left: 70px;
  border-left: 1px dashed var(--primary-color-1);
}
.company_history-area-item:nth-child(even) .company_history-area-item-right-content::before {
  right: -76px;
  left: initial;
}
.company_history-area-item:nth-child(even) .company_history-area-item-right-content::after {
  right: -11px;
  left: initial;
  transform: rotate(135deg);
}
.company_history-area-item:last-child .company_history-area-item-right-content {
  margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
  .company_history-area-item {
    display: block;
  }
  .company_history-area-item-left {
    padding: 0;
    margin: 0;
    border: 0;
    width: 100%;
    max-width: 100%;
  }
  .company_history-area-item-right-content {
    margin-top: 40px;
  }
  .company_history-area-item-right-content::before {
    display: none;
  }
  .company_history-area-item-right-content::after {
    left: 35px;
    top: -10px;
    transform: rotate(45deg);
  }
  .company_history-area-item:nth-child(even) .company_history-area-item-left {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
  .company_history-area-item:nth-child(even) .company_history-area-item-right-content::after {
    right: inherit;
    left: 35px;
    transform: rotate(45deg);
  }
}
@media (max-width: 420px) {
  .company_history-area-item-right-content,
  .company_history-area-items-left-content {
    padding: 35px 25px;
  }
  .company_history-area-item-right-content-date h5,
  .company_history-area-items-left-content-date h5 {
    font-size: 19px;
    line-height: 29px;
  }
  .company_history-area-item-right-content-date span,
  .company_history-area-items-left-content-date span {
    font-size: 16px;
    line-height: 16px;
    padding-left: 15px;
    padding-right: 20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 99%, 0 100%, 0% 50%);
            clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 99%, 0 100%, 0% 50%);
  }
}
@media (max-width: 359px) {
  .company_history-area-item-right-content,
  .company_history-area-items-left-content {
    padding: 30px 20px;
  }
  .company_history-area-item-right-content-date h5,
  .company_history-area-items-left-content-date h5 {
    font-size: 17px;
    line-height: 27px;
  }
  .company_history-area-item-right-content-date span,
  .company_history-area-items-left-content-date span {
    font-size: 14px;
    line-height: 14px;
  }
}
.flexitype-tooltip-enable {
  position: relative;
  cursor: pointer;
  --flexitype-tooltip-arrow-color: black;
  --flexitype-tooltip-arrow-distance: 0;
}

.flexitype-tooltip-enable .flexitype-tooltip-content {
  position: absolute;
  z-index: 999;
  display: none;
  padding: 5px 0;
  width: 120px;
  height: auto;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  text-align: center;
  opacity: 0;
}

.flexitype-tooltip-enable .flexitype-tooltip-content::after {
  position: absolute;
  border-width: 5px;
  border-style: solid;
  content: "";
}

.flexitype-tooltip-enable .flexitype-tooltip-content.no-arrow::after {
  visibility: hidden;
}

.flexitype-tooltip-enable .flexitype-tooltip-content.show {
  display: inline-block;
  opacity: 1;
}

.flexitype-tooltip-enable.flexitype-tooltip-top .flexitype-tooltip-content,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-top .flexitype-tooltip-content {
  top: unset;
  right: 0;
  bottom: calc(101% + var(--flexitype-tooltip-arrow-distance));
  left: 0;
  margin: 0 auto;
}

.flexitype-tooltip-enable.flexitype-tooltip-top .flexitype-tooltip-content::after,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-top .flexitype-tooltip-content::after {
  top: 100%;
  right: unset;
  bottom: unset;
  left: 50%;
  border-color: var(--flexitype-tooltip-arrow-color) transparent transparent transparent;
  transform: translateX(-50%);
}

.flexitype-tooltip-enable.flexitype-tooltip-bottom .flexitype-tooltip-content,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-bottom .flexitype-tooltip-content {
  top: calc(101% + var(--flexitype-tooltip-arrow-distance));
  right: 0;
  bottom: unset;
  left: 0;
  margin: 0 auto;
}

.flexitype-tooltip-enable.flexitype-tooltip-bottom .flexitype-tooltip-content::after,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-bottom .flexitype-tooltip-content::after {
  top: unset;
  right: unset;
  bottom: 100%;
  left: 50%;
  border-color: transparent transparent var(--flexitype-tooltip-arrow-color) transparent;
  transform: translateX(-50%);
}

.flexitype-tooltip-enable.flexitype-tooltip-left .flexitype-tooltip-content,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-left .flexitype-tooltip-content {
  top: 50%;
  right: calc(101% + var(--flexitype-tooltip-arrow-distance));
  bottom: unset;
  left: unset;
  transform: translateY(-50%);
}

.flexitype-tooltip-enable.flexitype-tooltip-left .flexitype-tooltip-content::after,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-left .flexitype-tooltip-content::after {
  top: 50%;
  right: unset;
  bottom: unset;
  left: 100%;
  border-color: transparent transparent transparent var(--flexitype-tooltip-arrow-color);
  transform: translateY(-50%);
}

.flexitype-tooltip-enable.flexitype-tooltip-right .flexitype-tooltip-content,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-right .flexitype-tooltip-content {
  top: 50%;
  right: unset;
  bottom: unset;
  left: calc(101% + var(--flexitype-tooltip-arrow-distance));
  transform: translateY(-50%);
}

.flexitype-tooltip-enable.flexitype-tooltip-right .flexitype-tooltip-content::after,
body[data-elementor-device-mode=tablet] .flexitype-tooltip-enable.flexitype-tooltip-tablet-right .flexitype-tooltip-content::after {
  top: 50%;
  right: 100%;
  bottom: unset;
  left: unset;
  border-color: transparent var(--flexitype-tooltip-arrow-color) transparent transparent;
  transform: translateY(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-top .flexitype-tooltip-content {
  top: unset;
  right: 0;
  bottom: calc(101% + var(--flexitype-tooltip-arrow-distance));
  left: 0;
  margin: 0 auto;
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-top .flexitype-tooltip-content::after {
  top: 100%;
  right: unset;
  bottom: unset;
  left: 50%;
  border-color: var(--flexitype-tooltip-arrow-color) transparent transparent transparent;
  transform: translateX(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-bottom .flexitype-tooltip-content {
  top: calc(101% + var(--flexitype-tooltip-arrow-distance));
  right: 0;
  bottom: unset;
  left: 0;
  margin: 0 auto;
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-bottom .flexitype-tooltip-content::after {
  top: unset;
  right: unset;
  bottom: 100%;
  left: 50%;
  border-color: transparent transparent var(--flexitype-tooltip-arrow-color) transparent;
  transform: translateX(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-left .flexitype-tooltip-content {
  top: 50%;
  right: calc(101% + var(--flexitype-tooltip-arrow-distance));
  bottom: unset;
  left: unset;
  transform: translateY(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-left .flexitype-tooltip-content::after {
  top: 50%;
  right: unset;
  bottom: unset;
  left: 100%;
  border-color: transparent transparent transparent var(--flexitype-tooltip-arrow-color);
  transform: translateY(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-right .flexitype-tooltip-content {
  top: 50%;
  right: unset;
  bottom: unset;
  left: calc(101% + var(--flexitype-tooltip-arrow-distance));
  transform: translateY(-50%);
}

body[data-elementor-device-mode=mobile] .flexitype-tooltip-enable.flexitype-tooltip-mobile-right .flexitype-tooltip-content::after {
  top: 50%;
  right: 100%;
  bottom: unset;
  left: unset;
  border-color: transparent var(--flexitype-tooltip-arrow-color) transparent transparent;
  transform: translateY(-50%);
}/*# sourceMappingURL=widget.css.map */