* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #B7AB98;
    word-spacing: 3px;
    letter-spacing: 1px;
    /*cursor: none;*/
}

@font-face {
    font-family: 'Avant';
    src: url('../font/AvantGardeITCbyBT-Book.eot');
    src: url('../font/AvantGardeITCbyBT-Book.eot?#iefix') format('embedded-opentype'),
    url('../font/AvantGardeITCbyBT-Book.woff2') format('woff2'),
    url('../font/AvantGardeITCbyBT-Book.woff') format('woff'),
    url('../font/AvantGardeITCbyBT-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d;
    font-family: avant;
}

.container {
    position: relative;
    /*overflow-x: hidden;*/


}

h1 {
    font-size: 60px;

}

h3 {
    font-size: 25px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
}

.red {
    color: #D21312;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #D21312;
    border-radius: 50%;

}

.flex {
    display: flex;
    height: unset;
}

.flex.end {
    align-items: center;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #D21312;
    border-radius: 10px;

}


/* Loading */
.loading_container {
    z-index: 9999999999;
    position: fixed;
    background-color: #0d0d0d;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 100vh;
    width: 100%;
    margin: 0;

}
.loaded_btn{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #D21312;
    border: none;
    font-family: Avant;
    text-transform: uppercase;
    font-weight: 1000;
    font-size: 20px;
    color: #0d0d0d;
    transition: all .4s cubic-bezier(0.65, 0.05, 0.36, 1);
    cursor: pointer;
}

.twoCircleLoader {
    width: 4em;
    height: 4em;
}
.twoCircleLoader .circle {
    width: 4em;
    height: 4em;
    border-radius: 4em;
    position: absolute;
    animation: load 1.5s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}
.twoCircleLoader .circle:nth-child(1) {
    background-color: #B7AB98;
    transform: scale(0);
    animation-delay: .4s;
}
.twoCircleLoader .circle:nth-child(2) {
    background-color: #D21312;
}

@keyframes load {
    0% {
        transform: scale(0);
    }
    36% {
        transform: scale(1);
    }
    54% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
