:root
{
    --primary-color: #fff;
    --primary-shade: #f7f5f2;
    --seconday-color: #000;
    --secondary-shade: #0b0c0c;
    --red-shade: #b20600;
    --accent-color: #ffee63;
}


html,
body
{
    width: 100%;
    height: 100%;
    background-color:black;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#root
{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.react-confirm-alert
{
    z-index: 1000;
}

.react-confirm-alert-overlay
{
    background-color: #0b0c0c !important;
}

.react-confirm-alert-body
{
    background-color: #fff !important;
}

.react-confirm-alert-button-group button
{
    background-color: #b20600 !important;
    font-size: 16px !important;
    min-width: 100px;
}

.Homepage
{
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #000;
    height: calc(100% - 4px);
}

.Homepage .IPSLnk:hover
{
    text-decoration: none;
}

.Homepage h4,
.Homepage p
{
    font-family: 'Poppins', sans-serif;
}

.Homepage header
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex: 1;
}

.Homepage footer
{
    display: flex;
    flex-direction: column;
    max-height: 53px;
    height: 53px;
    background-color: #0b0c0c;
    padding: 16px 0;
    color: burlywood;
    text-align: center;
    vertical-align: middle;
}

.Homepage #logMessage
{
    padding-left: 1px;
    color: #f99;
    margin-top: 30px;
    line-height: 34px;
    border-radius: 6px;
}

.Homepage ul li
{
    list-style: none;
}

.Homepage a
{
    text-decoration: none;
}

.Homepage header
{
    background: #020024;
    background: linear-gradient(90deg, #020024 0%, #323233 35%, #00d4ff 100%);
    background: linear-gradient(to right, #040404, #242424, #656565);
    color: white;
}

.Homepage .logo
{
    font-size: 22px;
}

.Homepage .nav-bar
{
    padding: 30px 0;
}

.Homepage span
{
    color: #d40700;
}

.Homepage ul li a
{
    margin: 0 10px;
    padding: 0 5px;
    color: #ffee63;
    font-size: 18px;
    cursor: pointer;
    position: relative;
}

.Homepage ul li a::before
{
    content: '';
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background-color: white;
    transition: 0.6s ease;
}

.Homepage .btn
{
    height: 42px;
    max-width: 140px !important;
    border-radius: 8px;
    background-color: #d40700;
    color: white;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.Homepage .btn:hover
{
    background-color: #b20600;
    color: #f7f5f2;
    border: 2px solid #d40700;
}

.Homepage .content
{
    position: relative;
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: flex-start;
}

.Homepage .content .right img
{
    width: 30vw;
    height: auto;
    max-width: 500px;
    position: relative;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s ease;
}

.Homepage .content .right img
{
    flex: 2;
    text-align: right;
    filter: drop-shadow(16px 5px 20px burlywood);
}

@media (max-width: 900px)
{
    .Homepage .layout
    {
        width: 90% !important;
        gap: 1vh !important;
    }

    .Homepage .nav-bar
    {
        align-items: flex-start !important;
        justify-content: left;
        padding-top: 30px;
        display: flex;
        flex: 1;
        flex-direction: column;
        text-align: left;
    }

    .Homepage .btn
    {
        max-width: 100px !important;
    }

    .Homepage .logo
    {
        padding-bottom: 20px;
        font-size: xx-large;
    }

    .Homepage .nav-links ul
    {
        align-items: left;
        display: flex;
        flex-direction: row;
        gap: 14px;
    }

    .Homepage .nav-links ul a
    {
        font-size: large;
        padding: 0 !important;
        margin: 0 !important;
    }

    .Homepage div.content
    {
        width: 100%;
        display: flex;
    }

    .Homepage .content
    {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 18px;
        width: 100%;
        padding-top: 10px;
        align-items: center;
    }

    .Homepage .content .right img
    {
        display: none;
    }

    .Homepage footer
    {
        display: flex;
        flex-direction: column;
        height: 53px;
        font-size: smaller;
    }
}

.Homepage .layout
{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8vh;
}

.Homepage .flex
{
    display: flex;
}

.Homepage .space-between
{
    justify-content: space-between;
}

.Homepage .align-center
{
    align-items: center;
}

.Homepage .justify-center
{
    justify-content: center;
}

.Homepage .uppercase
{
    text-transform: uppercase;
}

.Homepage .f-w-500
{
    font-weight: 500;
}

.Homepage .f-w-600
{
    font-weight: 600;
}

.Homepage .f-w-700
{
    font-weight: 700;
}

.Homepage .letter-spacing2
{
    letter-spacing: 2px;
}

.Homepage .btn2
{
    max-width: 120px;
    width: 110px;
}

.Homepage .flex2
{
    flex: 2;
}

.Homepage .flex3
{
    flex: 3;
}

.Homepage .my-t-10
{
    margin-top: 10px;
}

.Homepage .my-t-20
{
    margin-top: 20px;
}

.Homepage .pd-t-30
{
    padding-top: 30px;
}

.Homepage .w55
{
    width: 55%;
}

.Homepage .text-center
{
    text-align: center;
}

.Homepage .pd-30
{
    padding: 30px;
}



