@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

body {
    height: 100vh;
    /* font-family: Arial, Helvetica, sans-serif; */
    line-height: 1.6;
    color: #0F0F0F;
}

.container {
    max-width: 1000px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
}

body .wa_fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    /*100*/
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 2px 2px 3px #272727;
    font-size: 28px;
    color: var(--navbar-bg-contrast-scrolled);
}

.page_flex {
    display: flex;
}

.right,
.left {
    width: 50%;
}

.messages {
    list-style: none;
}

/* Terms and Conditions */
.terms li,
.terms ul {
    margin-left: 20px;
}

/* About */
.about_left {
    text-align: start;
}

.vision {
    background-color: whitesmoke;
    box-shadow: 10px 10px var(--navbar-text-line-focus);
    border: 2px solid var(--navbar-bg-contrast-scrolled);
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10%;
    padding: 7%;
    text-align: start;
}

.about_left {
    padding-top: 150px;
    padding-bottom: 150px;
    padding-right: 30px;
}

.choose_us {
    text-align: center;
    margin-bottom: 40px;
}

.choose_us_container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    font-size: 14px;
    margin-top: 45px;
    align-items: center;
    justify-content: center;
    /* fix for blank space at bottom in dark mode */
    padding-bottom: 5%;
    margin-bottom: -6%;
}

.choose_us_card {
    background-color: whitesmoke;
    margin-right: 10px;
    width: 250px;
    height: 200px;
    margin-bottom: 10px;
}

.choose_us_title {
    background-color: rgb(110, 26, 189);
    padding: 25px 10px 10px 10px;
    margin-top: 0px;
    color: white;
}

.choose_us_text {
    padding: 10px;
}

.choose_us_icons {
    margin: auto;
    margin-top: -90px;
    margin-bottom: 30px;
    width: fit-content;
    border: 4px solid #e9502291;
    background-color: #e9502291;
    min-width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50%;
}

.fa-handshake-o {
    color: #0F0F0F;
}

.fa-wrench {
    color: grey;
}

.fa-shield,
.fa-trophy {
    margin-top: 25%;
    color: rgb(58, 58, 214);
}

.fa-globe {
    margin-top: 22%;
    color: rgba(0, 0, 255, 0.644);
}

.fa-trophy {
    /* overrides previous color */
    color: gold;
}

/* Careers */
.career .left {
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
}

.career #sub_field {
    color: purple;
}

/* Merch */
.merch {
    height: 53vh;
    text-align: center;
}

.merch .form {
    margin: auto;
    width: max-content;
}

.merch #sub_field {
    color: purple;
}

/* Contact Us */
.contact-form table {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 5px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.521);
}

.contact-form button {
    padding: 5px;
    border: 1px solid transparent;
    background-color: var(--footer-text-line-focus);
    border-radius: 4px;
    color: white;
}

.contact-form button:is(:focus, :hover) {
    background-color: var(--subscribe-form-button);
    cursor: pointer;
}

.contact-success,
.contact-error {
    background-color: #C8E4B2;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
}

.contact-error {
    background-color: #DF9595;
}

/* Raise position of Recaptcha badge
If hidden is preferred, a notice must be included in the form to inform
users the site is protected by reCaptcha as per google terms */
.grecaptcha-badge {
    /* visibility: hidden; */
    bottom: 100px !important;
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    .page_flex {
        flex-direction: column;
    }

    .right,
    .left {
        width: 100%;
    }

    /* About Page */
    .about_left {
        padding-top: 10px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 700px) {
    body .wa_fixed {
        bottom: 30px;
        right: 30px;
    }
}

/* Dark Mode */
/* @media (prefers-color-scheme: dark) {
    main {
        background-color: #555d5049;
    }

    .contact-form input,
    .contact-form textarea {
        background-color: whitesmoke;
        border: 1px solid transparent;
    }
} */