.pre-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: white;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease 0.4s;
}
.pre-loader-pie {
    width: 60px;
    height: 60px;
    transition: all 1s ease;
}
.pre-loader-pie .pie-length {
    color: #007979;
    transition: all 1s ease;
}
.pre-loader-progress {
    position: relative;
    width: 140px;
    height: 2px;
    border-radius: 2px;
    overflow: hidden;
    background-color: #006363;
}
.pre-loader-progress-bar {
    height: 2px;
    border-radius: 2px;
    background-color: white;
    transition: all 0.4s ease;
}
.pre-loader.hidden {
    opacity: 0;
    pointer-events: none;
}
.pre-loader.hidden .pre-loader-pie {
    transform: translateY(-40px);
}
.pre-loader img {
    width: auto;
    height: auto;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.pre-loader.active img {
    opacity: 1;
}