/* Add this to your CSS file */
body.preloading {
    overflow: hidden; /* Hide scrollbar */
    position: fixed; /* Prevent scrolling */
    width: 100%; /* Ensure body width remains 100% */
    height: 100%; /* Ensure body height remains 100% */
}



.loading-screen{
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    pointer-events: none;
    overflow: hidden;

}




.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    pointer-events: none;
    overflow: hidden;
}

.counter {
    display: flex;
    height: 50px; /* Adjusted height */
    font-size: 50px; /* Adjusted font size */
    line-height: 52px; /* Adjusted line-height to match the new height */
    clip-path: polygon(0% 0%, 100% 0, 100% 50px, 0 50px);
    font-weight: 400;
}


.counter-1,
.counter-2,
.counter-3 {
    position: relative;
    font-family: "Playfair Display", serif;
    margin: 0;
    top: -5px;
    text-align: right;
}


.preloader-text{
    font-family: "Playfair Display", serif;
    font-size: 100px;
    color: #fff;
}
