@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}
:root {
    --blackText: #222222; /* Texts, Color blocks */
    --whiteText: #ffffff; /* Texts, Color blocks */
    --logoColor: #9e5643; /* Rey-Xpress Logo */
    --lemonColor: #cad878; /* Accent color used sitewide */
    --lemonDarkColor: #808041; /* Accent color used sitewide, Illustration highlights */
    --buttonColor: #bc6d3e; /*  Linked Text, Buttons, Accent color used sitewide  */
    --grayColor: #9a999a; /* Accent color used sitewide, Social logos at footer, • Rey-Xprees logo at footer  */
    --mainFontFamily: "Roboto", sans-serif; /* Brandon font paid, Lato is similar*/
    --minWidth: 428px;
    --maxWidth: 1920px;
}
/* Font size ---------------*/

/* footer text  */
.fLinks {
    font-size: 22px;
    line-height: 32px;
}
@media (max-width: 768px) {
    .fLinks {
        font-size: 12px;
        line-height: 16px;
    }
}

/* left right space  */
.box1 {
    max-width: 1920px;
    width: 100%;
    padding: 0 150px;
    margin: auto;
}
@media (max-width: 768px) {
    .box1 {
        padding: 0 35px;
    }
}

/* bg_white_btn  */
.bg_white_btn {
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    padding: 20px 71px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #000000; */
}
.bg_white_btn:hover {
    color: #ffffff;
    background-color: #000000;
}

@media (max-width: 868px) {
    .bg_white_btn {
        font-size: 9px;
        font-weight: 700;
        line-height: 16px;
        padding: 9px 30px;
        letter-spacing: 1.5px;
    }
}
/* bg_black_btn  */
.bg_black_btn {
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    padding: 20px 71px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg_black_btn:hover {
    color: #ffffff;
    background-color: #bb6c3e;
}

@media (max-width: 868px) {
    .bg_black_btn {
        font-size: 9px;
        font-weight: 700;
        line-height: 16px;
        padding: 9px 30px;
        letter-spacing: 1.5px;
    }
}

.highlightText {
    color: #bc6d3e;
}

/* High quality product text  */
.font24 {
    font-size: 24px;
    line-height: 34px;
}

@media (max-width: 768px) {
    .font24 {
        font-size: 11px;
        line-height: 18px;
    }
}

/*==================== whole page loader css ====================*/
.whole_page_loader_hidden {
    display: none;
}
.loading-container {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(31, 41, 55, 0.8);
    /* Equivalent to bg-gray-900 bg-opacity-80 */
}

/* Spinner animation */
.loading-spinner {
    height: 2rem;
    /* Equivalent to h-8 */
    width: 2rem;
    /* Equivalent to w-8 */
    margin-right: 0.75rem;
    /* Equivalent to mr-3 */
    animation: spin 1s linear infinite;
    color: white;
    /* Equivalent to text-white */
}

.spinner-circle {
    opacity: 0.25;
}

.spinner-path {
    opacity: 0.75;
}

/* Text styling */
.loading-text {
    color: white;
    font-size: 1.875rem;
    /* Equivalent to text-3xl */
    font-weight: bold;
    /* Equivalent to font-bold */
}

/* Keyframes for spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

