.loader-section {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #011015;
    align-content: center;
    text-align: center;
}

.loader-container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;

}

.ring {
    width: 400px;
    height: 400px;
    border: 0px solid #011015;
    border-radius: 50%;
    position: absolute;

}

.ring:nth-child(1) {
    border-bottom-width: 8px;
    border-color: orange;
    animation: rotate1 2s linear infinite;
}

@keyframes rotate1 {
    0% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);

    }
}

.ring:nth-child(2) {
    border-bottom-width: 8px;
    border-color: var(--helper);
    animation: rotate2 2s linear infinite;
}

@keyframes rotate2 {
    0% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);

    }
}


.ring:nth-child(3) {
    border-bottom-width: 8px;
    border-color: var(--white);
    animation: rotate3 2s linear infinite;
}

@keyframes rotate3 {
    0% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);

    }
}





.loader-logo-container {
    width: 170px;
    height: 170px;
    margin: auto;
    color: white;
}

.loader-logo-container img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}