@font-face {
    font-family: 'Gotham-Book';
    src: url('Gotham-Book.eot');
    src: url('Gotham-Book.eot') format('embedded-opentype'),
        url('Gotham-Book.woff') format('woff'),
        url('Gotham-Book.ttf') format('truetype'),
        url('Gotham-Book.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Gotham-Bold';
    src: url('Gotham-Bold.eot');
    src: url('Gotham-Bold.eot') format('embedded-opentype'),
        url('Gotham-Bold.woff') format('woff'),
        url('Gotham-Bold.ttf') format('truetype'),
        url('Gotham-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}






/* Simple Round Loader */
.page-loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    /* background: rgba(0, 0, 0, 0.5); */
    background-color: #ffffff;
    /* Dark background with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    border: 4px solid #f3f3f3;
    /* Light grey background */
    border-top: 4px solid #000000;
    /* Blue top border */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}