body,
html {
  overflow-x: hidden !important;
}

.cfa-sticky-active {
  position: fixed !important;
  top: -60px;
  animation: goDown 0.5s ease-in-out forwards;
  transform: translateY(0px) !important;
}
.cfa-sticky {
  transition: all 0.3s ease-in-out;
}
@keyframes goDown {
  0% {
    top: -60px;
  }
  100% {
    transform: translateY(60px);
  }
}

.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,
.progress-wrap span {
  width: 100%;
  height: 100%;
  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
===============================*/
.no-preloader .preloader,
.no-preloader #preloader {
  display: none !important;
}
.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 {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  display: flex;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .loader_line {
  margin: auto;
  width: 1px;
  height: 250px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.loader_line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ddd;
  -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
  -o-animation: lineheight 1000ms ease-in-out 0s forwards;
  animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-animation: lineround 1200ms linear 0s infinite;
  -o-animation: lineround 1200ms linear 0s infinite;
  animation: lineround 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}

/*hiding all*/
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  height: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }

  100% {
    width: 0%;
  }
}

/*==============================
     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;
}

.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 */
.elementor-widget-cfa-popup {
  display: block !important;
}
.cfa_popup {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}
.cfa_popup.slide {
  top: -100%;
  transition: all 500ms ease;
}

.cfa_popup.active {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.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 {
  background-color: #fff;
  max-width: 560px;
  position: relative;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  scrollbar-width: none;
  z-index: 10;
}

.cfa_overlay {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
}
.cfa_popup_content_item {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

/* Sidebar */
.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: #000;
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}
.xs-sidebar-widget {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  scrollbar-width: 0;
}
.xs-sidebar-group.isActive .xs-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
}
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: pointer;
  z-index: 999;
}

/* Button */
.cfa_btn_modern svg,
.cfa_btn_simple svg {
  height: 1rem;
  transition: 0.5s;
}

.cfa_btn_modern svg path,
.cfa_btn_simple svg path {
  transition: 0.5s;
}

.cfa_btn_simple {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #000000;
  padding: 12px 30px 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.cfa_btn_modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none !important;
  background-color: #000000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px 17px;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

.cfa_btn_modern span {
  position: absolute;
  width: 20%;
  height: 100%;
  background-color: #000;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

.cfa_btn_modern:hover {
  color: #fff;
}

.cfa_btn_modern:hover span {
  transform: translateY(0) scale(2);
}

.cfa_btn_modern span:nth-child(1) {
  --n: 1;
}

.cfa_btn_modern span:nth-child(2) {
  --n: 2;
}

.cfa_btn_modern span:nth-child(3) {
  --n: 3;
}

.cfa_btn_modern span:nth-child(4) {
  --n: 4;
}

.cfa_btn_modern span:nth-child(5) {
  --n: 5;
}

.cfa_btn_modern span:nth-child(6) {
  --n: 6;
}

/* post */
.meta-icon svg,
.cfa_post_btn svg {
  height: 1em;
}

.cfa_posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 30px;
}

.cfa-post-content .cfa-post-content__ {
  display: flex;
  flex-direction: column;
}

.cfa_post_meta .meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cfa_post_meta .meta span {
  margin-right: 0 !important;
}

.cfa_post .read-more svg {
  height: 1rem;
}

.cf__pagination {
  display: flex;
  align-items: center;
}

.cf__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cf__post-image {
  overflow: hidden;
  height: 100%;
}

.meta {
  display: flex;
}

/* button */
.cfa-video-popup {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cfa-video-popup a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cfa-video-popup .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

.cfa-video-popup .cfa-video-popup-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cfa-video-popup .cfa-video-popup-circle div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: textRotate 10s linear 0s forwards infinite alternate;
}

/* Accordion */
.accordion-icon-contaner svg {
  height: 1rem;
}

.collapse_icon {
  display: none;
}

.cfa-accordion__item.active .collapse_icon {
  display: block;
}

.cfa-accordion__item .expand_icon {
  display: block;
}

.cfa-accordion__item.active .expand_icon {
  display: none;
}

.c-pointer {
  cursor: pointer;
}

.cfa-accordion__content p {
  margin-bottom: 0;
}

.accordion-icon-contaner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* post paggination */
.cfa--post-paginate {
  display: flex;
}
.cfa-post-one-active .post-previous,
.cfa-post-one-active .post-next {
  width: 100%;
}
.cfa--post-paginate .post-previous svg,
.cfa--post-paginate .post-next svg {
  height: 1rem;
}
.post-next {
  text-align: right;
}
.post-next .next-prev {
  justify-content: end;
}
.cfa--post-paginate:not(.cfa-post-one-active) .post-previous {
  text-align: left;
  width: 50%;
}

.cfa--post-paginate:not(.cfa-post-one-active) .post-next {
  text-align: right;
  width: 50%;
}

.cfa--post-paginate .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0 !important;
}

/* recent post */
.recent_meta_recent-icon svg,
.cfa_recent_post_btn svg {
  height: 1em;
}

.cfa_recent_posts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 30px;
  row-gap: 30px;
}

.cfa_recent-post-content .cfa_recent-post-content__ {
  display: flex;
  flex-direction: column;
}

.cfa_recent_post_meta .recent_meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cfa_recent_post_meta .recent_meta span {
  margin-right: 0 !important;
}

.cfa_recent_post .read_recent-more svg {
  height: 1rem;
}

.cf__post-image {
  overflow: hidden;
  height: 100%;
}

.recent_meta {
  display: flex;
}

.elementor-widget-cfa-icon .cfa_icon i,
.elementor-widget-cfa-icon .cfa_icon svg {
  display: flex;
  align-items: center;
}

.elementor-widget-cfa-icon .cfa_icon_wrapper {
  display: flex;
}

.elementor-widget-cfa-icon .cfa_icon_description p {
  margin-bottom: 0;
}

.elementor-widget-cfa-icon .cfa_icon {
  flex: 0 0 auto;
}

.lines {
  overflow: hidden;
}
.invert-line {
  background-image: linear-gradient(
    to right,
    hsla(var(--text-color), 1) 50%,
    hsla(var(--text-color), 0.3) 50%
  );
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.cfa_btn_bubble {
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.magnet-bubble {
  position: absolute;
  display: grid;
  top: 0;
  left: 0;
  z-index: 0;
  width: 2%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}

.magnet-bubble:after {
  content: "";
  padding-top: 100%;
}

.cfa-popup-content form {
  background-color: transparent;
  display: flex;
}

.cfa-popup-content form input {
  outline: none;
}

/* Button 3 */
.cfa_btn_modern-2_container {
  position: relative;
  width: max-content;
  filter: url(#buttonFilter);
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1) !important;
  text-align: center;
}
.cfa_btn_modern-2_container .cfa_btn_modern-2_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
/* .cfa_btn_modern-2_container:hover .cfa_btn_modern-2_icon {
  transform: translateX(0.75rem) rotate(45deg) !important;
} */
.cfa-heading-title.prefix_on_hover {
  transition: all 0.5s;
}
.cfa-heading-title a {
  color: inherit;
}

.circle-text {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.circle-center-icon {
  position: absolute;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.marquee_text {
  display: inline-flex;
}
