/*ALL GENERAL STYLES THAT APPLY ON BOTH MOBILE AND DESKTOP*/

/*COLOR STYLES*/
body.dark-mode {
    background: #0F131A;
    color: white;
}
.dark-mode .main-submit {
    background: #0369A1;
}
.dark-mode .main-submit:hover {
    background: #0EA5E9;
}

body.light-mode {
    background: #F1DEDA;
    color: black;
}
.light-mode .main-submit {
    background: #0284C7;

}
.light-mode .main-submit:hover {
    background: #0EA5E9;
}
/*OTHER STYLES*/
body {
    
    text-align: center;
    font-family: Source Code Pro;
    margin-bottom: 300px;
    margin: 0;
}

section, .mobile-section {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    font-size: 10vmin;
    padding-top: 72px;
    height: 100vh;
}

ul, li {
    list-style: none;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

ul {
    margin: 0px;
    padding: 0px;
}

.hidden {
    display: none;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.main-submit {
    height: 47px; 
    border-radius: 5px; 
    border: none; color: white;
    margin-left: 10px;
    font-size: 15px;
    font-weight: 600;
}


#wrap {
    position: relative;
    overflow: hidden;
}

.header {
    font-family: Source Code Pro;
    font-weight: 600; 
    float: left;  
    text-align: left;
}


.subheader {
    letter-spacing: 0.15px;
}
.label {
    font-family: Source Code Pro;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.07px;
    text-align: left;
    margin-top: 9px;
    margin-bottom: 9px;
}

/*ALL DESKTOP-ONLY STYLES FOR -- BOTH GENERAL STYLES AND SPECIFIC TO A PAGE*/
@media (min-width: 992px){
    .main-skull {
        float: left;
        margin-right: 20px;
    }
    .desktop-flex {
        display: flex;
    }

    .email-input {
        width: 350px; 
    }
}

@media (min-width: 992px){
    .desktop-hide {
        display: none;
    }
}

@media (min-width: 992px){
    .header {
        font-size: 60px;
        line-height: 50px;
        margin-top: 20px; 
    }
    .subheader {
        font-size: 30px;
    }
    /* .aboutus-card-col, .example-tile-col {
        margin-top: auto;
        margin-bottom: auto;
    }
    .aboutus-row, .aboutus-container {
        height: 100%;
    } */

}
@media (min-width: 992px) and (max-width: 992px){
    .header {
        font-size: 45px;
        line-height: 37px;
        margin-top: 15px; 
    }
    .subheader {
        font-size: 24px;
    }
    .main-skull {
        width: 160px;
    }
    /* .aboutus-row {
        margin-top: 50px;
    } */
}
/* @media (min-width: 992px) {
    .get-in-touch-box {
        width: 640px;
    }
} */

/*ALL MOBILE-ONLY STYLES FOR -- BOTH GENERAL STYLES AND SPECFIC TO A PAGE*/
@media (max-width: 992px){
    /*    General Styles*/
        .header {
            font-size: 36px;
            line-height: 25px;
            margin-top: 8px; 
        }
        .subheader {
            font-size: 18px;
        }
        .mobile-wide {
            width: 100%;
            text-align: center !important;
        }
    /*    Specific Styles*/
        .div-img {
            display: none !important;
        }
        /* .mailing-p, .submit-div {
            padding-left: 27px;
        } */
        /* .email-input {
            width: 315px; 
        } */
        .aboutus-card {
            margin: auto !important;
        }
    
        .mobile-hide {
            display: none;
        }
    

        }
    
        
    
    @media (max-width: 992px){
        .partial-width-input {
            width: 60%;
        }
    }
