.header-1 .main-box .logo {
  padding: 24px 0;
}

/* Preloader logo animation */
.preloader-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.preloader-logo {
  width: 364px;
  max-width: 70vw;
  height: auto;
  opacity: 1;
  -webkit-animation: preloader-fox-pulse 1.3s ease-in-out infinite;
  animation: preloader-fox-pulse 1.3s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(217, 166, 0, 0.55));
}

@-webkit-keyframes preloader-fox-pulse {
  0% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.55; }
}
@keyframes preloader-fox-pulse {
  0% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.55; }
}

.service-block-one .inner-block .content-box .icon i {
  color: var(--theme-color1);
  line-height: 1;
}

/* News cards pull photos from external sources with mismatched
   aspect ratios; force a fixed height so every thumbnail crops to
   the same size instead of stretching the card layout. */
.news-section-3 .blog-box .inner-box .image-box {
  height: 260px;
}

.preloader.is-loaded .preloader-logo {
  -webkit-animation: none;
  animation: none;
  opacity: 0;
  transform: scale(1.3);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media only screen and (min-width: 1024px) {
  .header-lower {
    position: relative;
  }
  .header-1 .main-box .nav-outer {
    position: static;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header-1 .main-box .nav-outer > nav.main-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
