:root {
    --primary-bg-color: #04843c;
    --secondary-bg-color: #eb2129;
    --black-color: #000;
    --rich-black-color: #000009;
    --white-color: #fff;
    --anti-flash-white-color: #f2f2f2;
    --gainsboro-color: #ddd;
    --granite-gray-color: #666;
    --dark-charcoal-color: #333;
    --sonic-silver-color: #777;
    --vista-blue-color: #9090ee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.bold {
    font-weight: 700;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.w-120px {
    width: 120px;
}

.f-80 {
    font-size: 80px !important;
}

.center {
    text-align: center;
}

.color-secondary {
    color: var(--secondary-bg-color);
}

.primary-btn {
    font-size: 16px;
    color: var(--primary-bg-color);
    background-color: var(--white-color);
    margin: 5px;
    padding: 8px;
    border: 1px solid var(--primary-bg-color);
    border-radius: 8px;
}

.primary-btn:hover {
    background-color: var(--primary-bg-color);
    color: var(--white-color);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, #04843c, #eb2129);
}

.preloader-text {
    font-size: 3rem;
    color: var(--white-color);
    z-index: 2;
    opacity: 0;
    animation: showText 2s ease-in-out forwards;
}

#main-content {
    display: none;
    opacity: 0;
    background-color: var(--white-color);
    animation: slideIn 1s ease-in-out forwards;
    z-index: 999;
}

.preloader-animation {
    width: 100px;
    height: 100px;
    border: 10px solid var(--white-color);
    border-top: 10px solid var(--secondary-bg-color);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 3s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes showText {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        top: 100%;
        left: 100%;
        opacity: 0;
    }

    100% {
        top: 0;
        left: 0;
        opacity: 1;
    }
}


/* FOR SCROLL BAR*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary-bg-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, var(--secondary-bg-color));
}