/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .bg {
  width: 100%;
  padding: 140px 0 70px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs .bg:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  z-index: 1;
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  border-bottom: 1px solid #e9e9e9;
  height: 73px;
  margin: 0;
}

.breadcrumbs ol li {
  margin-top: 24px;
}

.breadcrumbs ol li a {
  padding: 26px 16px;
  color: #969696;
}

.breadcrumbs ol li a.on {
  border-bottom: 1px solid #333;
  color: var(--color-default);
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs .bg {
    padding: 160px 0 80px 0;
  }
}

@media screen and (max-width: 575px) {
  .breadcrumbs h2 {
    font-size: 36px;
  }

  .breadcrumbs ol {
    padding: 0 10px;
  }

  .breadcrumbs ol li a {
    padding: 24px 12px;
    font-size: 15px;
  }
  .breadcrumbs ol {
    height: 70px;
  }
}

@media screen and (max-width: 390px) {
  .breadcrumbs ol li a {
    padding: 22px 10px;
    font-size: 14px;
  }

  .breadcrumbs ol {
    height: 68px;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 50px;
  bottom: 50px;
  z-index: 99999;
  background: var(--color-default);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 40px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1280px) {
  .scroll-top {
    width: 55px;
    height: 55px;
    bottom: 36px;
    right: 36px;
  }
}

@media screen and (max-width: 768px) {
  .scroll-top {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
