@font-face {
    font-family: 'Montserrat'; /* A name you choose to use later in your CSS */
    src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}
@font-face {
    font-family: 'Labor Union'; /* A name you choose to use later in your CSS */
    src: url("../fonts/LaborUnion-Regular.otf") format("truetype");
}

::selection {
  background-color: #ff400c;
  color: #ffffff;
}

body {
    background-color: #0F0F10;
    margin: 0;
    color: white;
}
.globalwrap {
    display: grid;
    grid-template-columns:
        15% 70% 15%;
}
.globalwrap .container {
    background-color: #161617;
    height: 100vh;
    padding: 0 20px 0 20px;
}
.leftbar {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
.leftbar a {
    display: flex;
    width: 100%;
    justify-content: center;
}

.container h2 {
    font-family: "Labor Union";
    font-size: 32px;
    margin: 20px 0 20px 0;
}

.leftbar h1 {
    font-family: 'Labor Union';

    margin: 20px 0 0 0;
    font-size: 28px;
    text-align: center;
}

.leftbar .logo {
    padding-top: 20px;
    width: 60%;
}
.mobile-heading {
    display: none;
}

input, textarea {
    font-family: 'Montserrat';
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    border: 3px solid rgba(255,141,40,1);
    padding: 10px;
    width: 400px;
    max-width: 400px;
    min-width: 200px;
    max-height: 400px;
    background: transparent;
    cursor: text;
}

textarea {
    height: 120px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    appearance: textfield;
}

.container button {
    border: 3px solid rgba(255,141,40,1);
    background: transparent;
    width: 300px;
    height: 50px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 18px;
    color: white;
    cursor: pointer;

    transition: 0.3s ease-out, color 0.3s ease-out; 
}

.container button:hover {
    color: rgba(255,141,40,1);
}

.cf-turnstile div {
    padding-bottom: 20px;
}

#popup {
    position: fixed;
    inset: 0;     
    display: none;               

    justify-content: center;
    align-items: center;

    /* background: rgba(0, 0, 0, 0.5); */
    background: rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Safari */
    z-index: 9999;
}

#popup.active {
    display: flex;
}

#popup > div {
    background: transparent;
    border: 3px solid rgba(255,141,40,1);
    padding: 40px 150px 40px 30px;
    /* border-radius: 12px; */
    max-width: 450px;
    text-align: start;
}
#popup h3 {
    font-family: "Labor Union";
    font-size: 32px;
    margin: 0;
}
#popup p {
    font-family: "Montserrat";
    margin: 10px 0 20px;
    max-width: 300px;
}
#popup button {
    border: 3px solid rgba(255,141,40,1);
    background: transparent;
    width: 300px;
    height: 40px;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.footer p, span, div, h3 {
    font-family: "Montserrat";
    font-weight: 500;
    color: #ffffff;
}

.footer span {
    font-style: normal;
}

.gov {
    font-size: 20px;
    opacity: 0.1;
    background-color: #161617;
}

.nonaccent {
    opacity: 0.2;
    font-weight: 400 !important;
}

.footer {
    background-color: #0F0F10 !important;
}


@media (max-width: 1440px) {
    .leftbar h1 {
        font-size: 20px;
    }
}
@media (max-width: 650px) {
    .leftbar {
        display: none;
    }
    .globalwrap {
        display: block;
    }
    .container h2 {
        margin-top: 0;
        padding-top: 20px;
        display: none;
    }
    .mobile-heading {
        display: flex;
        gap: 30px;
        padding-bottom: 0 !important;
    }
    .mobile-heading a {
        justify-content: center;
        display: flex;
    }
    .mobile-heading img {
        width: 100px;
    }
    .mobile-heading h1 {
        font-family: "Labor Union";
        font-size: 26px;
        margin: 20px 0 20px 0;
    }
    .globalwrap .container {
        height: 115vh;
    }
    input, textarea {
        max-width: 300px;
    }
    #popup > div {
        text-align: center;
        padding: 40px 30px 40px 30px;
    }
}
