:root {
    --primary-color: #4F8BF9; /* Lighter Blue */
    --button-color: #4F8BF9; /* Lighter Blue */
    --button-hover-color: #3772CC; /* Medium Blue */
    --secondary-color: #C17DFF; /* Lighter Purple */
    --background-color: #121212; /* Nearly Black */
    --text-color: #E0E0E0; /* Light Grey */
    --hover-color: #333333; /* Darker Grey */
    --hover-link-color: black; /* Black */
    --active-color: #E1BEE7; /* Lighter Purple */
    --font-size: 16px; /* Increased Font Size for Readability */
    --header-color: #4F8BF9; /* Lighter Blue */
    --selected-link-color: #4F8BF9; /* Lighter Blue */
    --warning-color: #FF6659; /* Lighter Warning Red */
    --disabled-color: #424242; /* Darker Grey */

    --style-color-1: rgb(193, 73, 45);
    --style-color-2: #ffff5a;

    --box-1-background-color: rgb(0,48,62);
    --box-1-header-color:  rgb(0, 159, 227);
    --box-1-text-color:  white;
    --box-1-button-background-color:  rgb(193, 73, 45, 0.8);
    --box-1-button-color:  white;
    --box-1-button-hover-background-color:  rgb(193, 73, 45, 1);
}


* {
    box-sizing: border-box;
    font-family: "Bai Jamjuree", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #333333 transparent;
}

body {
    margin: 0px;
    background-color: white;
    /* background-image: url('https://api.rotempco.com/2/SiteImage/FileName/background.jpg'); */
    /* background-attachment: fixed; */
    background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Viga, sans-serif;
    text-transform: uppercase;
}

    /* Works on Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 12px;
    }

    *::-webkit-scrollbar-track {
        background: transparent;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #333333;
        border-radius: 20px;
        border: none;
    }

social {
    z-index: 2;
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: flex;
    flex-direction: column;
}

    social #facebook {
        background-color: white;
        border-radius: 7px;
       width: 48px;
        height: 48px;
    }

    social > a {
        margin: 10px;
    }

    social img {
     
    }


#home-screen {
    display: grid;
    justify-items: center;
}


#main-menu{
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    background-color: rgba(0, 0, 0, 1);
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    display: grid;
    justify-items: center;    
}

#menu-public {
    width: 100%;
    max-width: 1400px;
}

#menu-logo {
    float: left;
    height: 70px;
}
#menu-logo>a{
    display: grid;
    justify-items: center;
}

#menu-links{
    float: right;
}

#menu-links > div {
    float: left;
    padding-left: 16px;
    padding-right: 16px;
    height: 70px;
    display: flex;
    align-items: center;
}

#menu-links > div > a  {
    display: block;
    text-align: center;
    text-decoration: none; /* Removes underline from links */
    display: inline-block; /* Allows the transformation */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and transform */
    margin: 0 10px; /* Adjust as needed */
}

/* Hover effect */
#menu-links > div > a:hover {
    color: #d44e2f;
    transform: scale(1.2);
}

a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

loading-screen,
#close-button,
menu-link {
    display: none;
}


#main{
    margin-top: 100px;
    width: 100%;
    max-width: 1564px;
    padding: 8px 16px;
    color: white;
    text-align: center;
}

footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: fixed;
    bottom: 0px;
    gap: 50px;    
}

#footer-info{
    font-size: 12px;
}

footer > div {
    max-width: 500px;
}


.action-button-class {
    font-family: Viga, sans-serif;
    background-color: var(--style-color-1);
    border: none;
    box-sizing: border-box !important;
    color: #fff;
    padding: 10px 18px !important;
    transition: all .3s ease-in-out 0s;
}

.action-button-class:hover {
  background: white;
  color: black;
}
              