.u-section-1 .u-sheet-1 {
  min-height: 676px;
}

.u-section-1 .u-group-1 {
  width: 800px;
  min-height: 596px;
  height: auto;
  margin: 25px auto;
}

.u-section-1 .u-container-layout-1 {
  padding: 30px;
}

.u-section-1 .u-text-1 {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700;
}

.u-section-1 .u-text-2 {
  margin: 20px 0 0;
}

.u-section-1 .u-text-3 {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  font-size: 0.75rem;
}

.u-section-1 .u-text-4 {
  margin: 20px 0 0;
}

.u-section-1 .u-btn-1 {
  background-image: none;
  padding: 0;
}

.u-section-1 .u-btn-2 {
  background-image: none;
  padding: 0;
}

.u-section-1 .u-btn-3 {
  background-image: none;
  padding: 0;
}

.u-section-1 .u-btn-4 {
  background-image: none;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-1 .u-group-1 {
    height: auto;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-group-1 {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-group-1 {
    width: 540px;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-group-1 {
    width: 340px;
  }
}.full-screen-block {
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-color: #fff; /* Default background */
    overflow: hidden; /* Prevent overflow during transitions */
    z-index: 1; /* Ensure proper stacking */
	will-change: transform, opacity; /* Optimize rendering for smoother transitions */
	display: block;
    opacity: 1;
    visibility: visible;
}
.full-screen-block .content {
    flex-direction: column;
}
.full-screen-block .slide {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    background-color: #f5f5f5; /* Ensure slide has a background */
	animation: fadeInOut 0.5s ease-in-out;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.full-screen-block .slide:not(.active) {
    opacity: 0;
    transform: scale(0.98);
}
.centered-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}
/* Inactive menu items */
.u-nav > .u-nav-item > a.u-nav-link {
    font-size: 14px !important; /* Default size */
}
/* Active menu item */
.u-nav > .u-nav-item > a.u-nav-link.u-text-active-white.active {
    font-size: 18px !important; /* Larger size for active */
}