.cfa-sticky-active {
  position: fixed !important;
}
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap i {
  position: absolute;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #ffffffb0;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.tf__scroll_btn {
  font-size: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  color: var(--colorWhite);
  text-transform: capitalize;
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--colorPrimary);
  border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.tf__scroll_btn.active-scroll-top {
  display: flex !important;
}

/*==============================
  PRELOADER START
===============================*/

.preloader {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #111013;
}

h5.preloader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: #333;
}

@media (max-width: 1040px) {
  h5.preloader-text {
    font-size: 60px;
  }
}

h5.preloader-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--colorPrimary);
  animation: move 2s infinite alternate;
}

@keyframes move {
  from {
    clip-path: circle(50px at 0% 50%);
  }

  to {
    clip-path: circle(50px at 100% 50%);
  }
}

/*==============================
     PRELOADER END
   ===============================*/
.line {
  overflow: hidden;
}

#magic-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 999999;
}

#ball {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#ball img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/** scroll top button **/
.tf__scroll_btn {
  font-size: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  text-align: center;
  text-transform: capitalize;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all linear 0.3s;
  display: none;
}
.tf__scroll_btn i,
.progress-wrap i {
  font-size: 30px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==============================
    TIMELINE START
===============================*/

.cfa_timeline .thumb {
  line-height: 0;
}

.cfa_timeline .timeline-item {
  display: flex;
  gap: var(--content-gap, 60px);
}

.cfa_timeline .timeline_date {
  display: inline-block;
  width: fit-content;
  height: fit-content;
}

.cfa_timeline .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cfa_timeline .content-wrap .content {
  flex: 1;
}

.cfa_timeline .step-box {
  position: relative;
}

.cfa_timeline .step-box svg {
  width: 100%;
  height: 100%;
}

.cfa_timeline .step-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--icon-size, 16px);
  line-height: var(--icon-size, 16px);
  width: calc(var(--icon-size, 25px) + 2 * var(--icon-padding, 1px));
  height: calc(var(--icon-size, 25px) + 2 * var(--icon-padding, 1px));
  border-radius: 100%;
  background-color: #f9b099;
  position: relative;
  z-index: 1;
}

.cfa_timeline .step-box .line {
  width: 2px;
  height: 100%;
  border-left: 1px dashed #f9b099;
  position: absolute;
  top: 0;
  left: calc(50% + 2px);
  transform: translateX(calc(-50% - 2px));
}

.cfa_timeline .indicator {
  --indicator-gap: 20px;
  position: absolute;
  right: 10px;
  height: 1px;
  width: 70px;
  background-color: #000;
  left: calc(100% + var(--indicator-gap));
}

@media (min-width: 500px) {
  .cfa_timeline.style-3 {
    flex-direction: row;
  }
}
@media (min-width: 1023px) {
  .cfa_timeline.style-2 .step-box {
    order: 1;
  }

  .cfa_timeline.style-2 .content-wrap {
    width: calc(
      50% - (var(--icon-size, 25px) + 2 * var(--icon-padding, 1px)) / 2 -
        var(--content-gap, 60px)
    );
  }

  .cfa_timeline.style-2 .timeline-item:nth-child(odd) .content-wrap {
    direction: rtl;
  }

  .cfa_timeline.style-2 .timeline-item:nth-child(odd) .indicator {
    left: auto;
    right: calc(100% + var(--indicator-gap));
  }

  .cfa_timeline.style-2 .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.elementor-widget-cfa_timeline.cfa-image-position-row img {
  width: 500px;
}

.c-pointer {
  cursor: pointer;
}
.elementor-widget-cfa-popup {
  display: block !important;
}
.swiper-pagination-progressbar {
  position: relative !important;
}
.circle-pogress {
  position: relative;
  display: inline-block;
}

.circle-pogress .percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* page effect */
.waves {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
}
.circles_effect {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
  z-index: -1;
}
.circles_effect li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  animation: cfa_page_effect_circle 25s linear infinite;
  bottom: -150px;
  background-color: rgba(235, 74, 76, 0.2);
}
@keyframes cfa_page_effect_circle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.circles_effect li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles_effect li:nth-child(2) {
  left: 10%;
  width: 70px;
  height: 70px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles_effect li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles_effect li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles_effect li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles_effect li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles_effect li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles_effect li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles_effect li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles_effect li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

/* popup */
.cfa_popup {
  transition: 1s all;
  visibility: hidden;
}

.cfa_popup.active {
  visibility: visible;
}

.cfa_popup_close_container {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.cfa_popup svg {
  height: 1rem;
}

.cfa_popup_close {
  display: inline-block;
  cursor: pointer;
}

.cfa_popup_content {
  display: none;
  background-color: #fff;
  max-width: 560px;
  position: fixed;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  transition: 0.5s all;
  opacity: 0;
  z-index: -99999;
  scrollbar-width: none;
}

.cfa_popup.active .cfa_overlay {
  z-index: 99999;
}

.cfa_popup.active .cfa_popup_content {
  z-index: 999991;
}

.cfa_popup.active .cfa_popup_content,
.cfa_popup.active .cfa_overlay {
  opacity: 1;
  display: block;
}

.elementor-widget-cfa-popup {
  display: none;
}

.cfa_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #000;
  cursor: pointer;
  transition: 0.3s all;
  opacity: 0;
  z-index: -99;
}
.cfa_popup_content_item {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.cfa_popup_content_item:before {
  position: fixed;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 3;
}
