#home-loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white; /* Or whatever your background color is */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease; /* 1 second fade-out effect */
    opacity: 0; /* Start fully visible */
}

#home-loader.fade-out {
    opacity: 0; /* Fade out to invisible */
    pointer-events: none; /* Disable interaction during transition */
}
.wpblzMainLoader {
    width: 100%;
    height: 100vh;
}
.wpblzBannerSection {
    padding-top: 140px;
    height: 100vh;
    background-image: linear-gradient(to right, #4e2510, #171514, #4e2510, #171514, #4e2510);
    background-size: 600%;
    background-position: 0 0;
    box-shadow: inset 0 0 5em rgba(0, 0, 0, 0.5);
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-name: gradients;
    overflow: hidden;
}

@keyframes gradients {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 0;
  }
  50% {
    background-position: 90% 0;
  }
  60% {
    background-position: 60%;
  }
  75% {
    background-position: 40%;
  }
  100% {
    background-position: 0 0;
  }
}



.wpblzRotatingTextWrapper {
    font-family: Arial, sans-serif;
    font-size: 14px; /* Set font size to 14px */
    color: #b6b6b6; /* Set default text color */
    overflow: hidden;
    height: 150px; /* Set the height of the animation area to 150px */
    position: relative;
}

.wpblzRotatingTextWrapper h4 {
    position: absolute;
    width: 100%;
    margin: 0;
    color: #161616d6; /* Start with gray color */
    opacity: 0;
    transform: translateY(100%);
    animation: swap 16s infinite;
    z-index: 1; /* Default z-index */
    top: 50%; /* Start from the middle of the container */
    transform: translateY(-50%); /* Center the text vertically */
    font-family: "Blaze Font", Work Sans;
}

.wpblzRotatingTextWrapper h4:nth-child(1) {
    animation-delay: 0s;
}

.wpblzRotatingTextWrapper h4:nth-child(2) {
    animation-delay: 4s;
}

.wpblzRotatingTextWrapper h4:nth-child(3) {
    animation-delay: 8s;
}

.wpblzRotatingTextWrapper h4:nth-child(4) {
    animation-delay: 12s;
}

@keyframes swap {
    0% {
        opacity: 0;
        transform: translateY(100%);
        z-index: 1; /* Reset z-index when out of view */
    }
    10% {
        opacity: 1;
        transform: translateY(-50%);
    }
    20% {
        color: #b6b6b6; /* Change color to white as it becomes the top string */
        opacity: 1;
        transform: translateY(-50%);
        z-index: 2; /* Bring text to front when at top */
    }
    30% {
        opacity: 1;
        transform: translateY(-50%); /* Hold position at the top */
    }
    40% {
        color: #161616a8; /* Highlight in black at the top */
        opacity: 1;
        transform: translateY(-50%);
    }
    45% {
        opacity: 1;
        transform: translateY(-150%);
    }
    60% {
        color: #161616a8; /* Keep color black as it leaves the top */
        opacity: 0;
        transform: translateY(100%);
        z-index: 1; /* Reset z-index when out of view */
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}
.wpblzBannerSection h1 {
    font-size: 51px;
    color: #fff;
    font-family: "Blaze Font", Work Sans;
}
.wpblzBannerImgWrapper {
    display: block;
    margin:auto;
    border-radius: 16px 16px 0px 0px;

    background: conic-gradient(from var(--angle), #fd6104, #1a91c4, #a91818, #210097, #fd6104);
    animation: 8s rainbowAnimation linear infinite;
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.wpblzPageBannerBottomWrapper {
    display: block;
    margin:auto;
    border-radius: 45px 0px 0px 0px;

    background: conic-gradient(from var(--angle), #fd6104, #1a91c4, #a91818, #210097, #fd6104);
    animation: 8s rainbowAnimation linear infinite;
    background-origin: border-box;
    background-clip: content-box, border-box;
}
#wpblzHmClients {
    display: block;
    margin: auto;
    margin-right: 0;
    border-radius: 0px 0px 56px 0px;
    background: conic-gradient(from var(--angle), #fd6104, #1a91c4, #a91818, #210097, #fd6104);
    animation: 8s rainbowAnimation linear infinite;
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative; /* Important for positioning the overlay */
    //padding-right: 11px;
    padding-left: calc(var(--bs-gutter-x)* .5);
}

#wpblzHmClients::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}
.elementor-22 .elementor-element.elementor-element-7804041 {
    --width: 100% !important;
}
#wpblzHmClients .elementor-widget-container {
    background-color: #fff;
    margin-right: 3px;
    margin-bottom: 3px;
    border-radius: 0px 0px 50px 0px;
    padding-bottom: 14px;
    padding-top: 54px;
}
.wpblzBannerImg {
    display: block;
    margin: auto;
    width: 100%;
    padding: 3px;
    border-radius: 0px 0px 0px 0px;
    padding-bottom: 0px;
}
#wpblzHmClients .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-bottom: 6px;
}
@keyframes rainbowAnimation {
    to {
        --angle: 360deg;
    }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
/* Apply the same transition properties to both the wrapper and the image */
.wpblzBannerImgWrapper {
    opacity: 0;
    transform: translateY(100px); /* Start 50px lower */
    transition: transform 2s ease-out, opacity 1s ease-out; /* Same timing and easing */
}
.wpblzPageBannerBottomWrapper  {
    height: 130px;
    margin-bottom: 51px;
    margin-right: 0 !important; /* Remove right margin */
    padding-right: 0 !important; /* Remove right padding */
    width: calc(100% + var(--bs-gutter-x, 1rem)) !important; /* Expand the container width */
    max-width: calc(94.7% - var(--bs-gutter-x, 1rem)) !important;
    opacity: 1;
    transform: translateY(100px); /* Start 50px lower */
    transition: transform 2s ease-out, opacity 1s ease-out; /* Same timing and easing */
    padding: 5px 0px 0px 5px;
    margin-top: -45px;
}
.wpblzPageBannerBottomInnerWrapper {
    margin: 2px 0px 0px 2px;
    border-radius: 39px 0px 0px 0px;
}
.wpblzPageBannerSection .row{
    margin-left: 150px;
}
/* Trigger both animations at the same time */
.wpblzBannerImgWrapper.animate,.wpblzPageBannerBottomWrapper.animate {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
}


.wpblzHmSection3 {
  width: 100%; /* Full width */
  max-width: 80%; /* Adjust this to your default container width */
  padding: 0px;
  margin: 0 auto; /* Center the container */
  transition: all 0.3s ease; /* Smooth transition */
}

.wpblzHmSection3.full-width {
  max-width: 100%;
}

/*UKVI Animation slide */



.wpblzHmSection3Inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  display: none;
  transform: translateY(50px); /* Start slightly off-screen */
  //transition: opacity 0.6s ease, transform 0.6s ease;
}

.wpblzHmSection3Inner.active {
  opacity: 1;
  display: block;
  transform: translateY(0); /* Slide into view */
  z-index: 1;
}

.wpblzHmSection3Inner.hidden {
  z-index: 0;
}
.wpblzFreeTrialHmBannerBtn{  
    margin-top: 30px;
    margin-bottom: 20px;
    display: none;
}
.wpblzFreeTrialBtn {
    text-decoration: none;
    color: #fff;
    background-color: #cc4400;
    width: fit-content;
    margin-left: 10px;
    padding: 10px 25px;
    border-radius: 5px;
    font-family: 'Work Sans';
    cursor: pointer;
    transition: 0.3s;
}
.wpblzFreeTrialBtn:hover {
    background-color: #da4900;
    color: #fff;
}
@media only screen and (max-width: 1000px) {
    .wpblzBannerSection{
        height: fit-content;
    }
}
@media only screen and (max-width: 600px) {
    /*#wpblzHmClients img{
        width: 80px;
    }*/
    .wpblzBannerSection {
        padding-top: 48px;
    }
    .wpblzFreeTrialHmBannerBtn{
        display: block;
    }
    .wpblzBannerSection h1 {
        font-size: 36px;
        //margin-bottom: 100px;
    }
    .wpblzBannerImg {
        border-radius: 15px 15px 0px 0px !important;
    }
}
@media (min-width: 1700px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 85%;
    }
}
