/* Add here all your css styles (customizations) */
.gradient-section {
  background: linear-gradient(180deg, #F2672A 0%, var(--e-global-color-primary) 100%);
}

/* CLS FIX START */

/* Reserve space for images */
.rev_slider_wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* Slider CLS Fix */
.rev_slider_wrapper,
.rev_slider,
.fullscreenbanner {
  min-height: 780px !important;
  height: 780px !important;
}


/* Product grid images */
.g-mb-30 article figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* No flicker of fonts */
html {
  font-display: swap;
}
/* CLS FIX END */

.team-block {
  position: relative;
  padding-bottom: 40px; /* space for connector line */
}

.team-block::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 2px;
  height: 40px;
  background: #d7d7d7;
  transform: translateX(-50%);
}

/* Remove line after the last card */
.team-block.last::after {
  display: none;
}

/* All photos same size for perfect alignment */
.team-photo-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px;
  margin: 0 auto 15px auto;
}
.team-photo-img {
  width: 188px;
  height: 188px;
  object-fit: cover;
  border-radius: 50%;
}

/* Default desktop size */
.brand-responsive {
  padding-right: 20px;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .brand-responsive {
    padding-right: 10px;
  }
  .brand-logo {
    height: 50px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .brand-responsive {
    padding-right: 5px;
  }
  .brand-logo {
    height: 40px;
  }
}

/* Extra-small phones (380px and below) */
@media (max-width: 380px) {
  .brand-responsive {
    padding-right: 0;
  }
  .brand-logo {
    height: 32px;
  }
}

@keyframes moveStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-item a {
  display: block;
  height: 220px;
  overflow: hidden;
}

.gallery-page .gallery-item a {
  border-radius: 16px;
      border: 3px solid transparent;
}

.gallery-page .gallery-item a:hover {
    border: 3px solid #bd2026;
}

.gallery-page .nav-pills .nav-link {
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 600;
}

.gallery-pag .nav-pills .nav-link.active {
  background-color: #0d6efd;
}


.gallery-item img {
  width: 100%;
  height: auto;
  /* object-fit: cover; */
  display: block;
  object-position: top;
}

.home-gallery .gallery-item a {
  height: 180px;
}

/* Gallery Wrapper */
.home-gallery .js-fancybox {
  height: 320px;   /* Desktop height */
  overflow: hidden;
  position: relative;
}

/* Image Full Cover */
.home-gallery .js-fancybox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


