* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
}
  
html, body {
    height: 100%;
    max-width: 100vw;
    background-color:antiquewhite;
    overflow-x: hidden;
}
  
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 16px; 
}

header{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

header address{
    display: none;
}

nav{
    list-style-type: none;
    margin: 0;
    padding: 10px;
    overflow: hidden;
    font-size: larger;
    display: inline;
}

nav a{
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: black;
}

nav a:hover{
    background-color: rgba(234,10,42,.8);
    color: white;
}

nav a:active{
    background-color: rgba(246,226,0,.8);
    color: black;
}

main{
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#HOME, #FAQ, #CONTACT-US{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: larger;

}

#HOME{
    background: url(/images/magnifier.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#HOME::before{
    content: "";
    background-color: rgba(255,255,255,.6);
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

#FAQ{
    background: url(/images/fuel-gauge-gc19a479fc_1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#FAQ::before{
    content: "";
    background-color: rgba(255,255,255,.7);
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

#FAQ *{
    z-index: 99;
}

#FAQ .bgShade{
    text-align: left;
    min-width: 465px;
    background-color: rgba(246,226,0,.8);
    padding: 20px;
}

.external-link{
    font-size: x-small;
}

.hero{
    /* font-size: larger; */
    background-color: rgba(246,226,0,.8);
    z-index: 99;
}

.btn{
    border-radius: 20px;
    padding: 10px;
    text-align: center;
}

details{
    max-width: 465px;
    margin-top: 10px;
}

details *{
    margin-left: 10px;
}

details ul{
    list-style: inside;
    list-style-image: url("/fonts/check_circle_FILL0_20x20.svg");
}

summary{
    margin-bottom: 10px;
    margin-left: 0px;
}

#CONTACT-US-FORM{
    display: flex;
    flex-direction: column;
}

#CONTACT-US-FORM h3{
    text-align: center;
}

#CONTACT-US-FORM label span{
    color: red;
}

#CONTACT-US-FORM input, #CONTACT-US-FORM textarea{
    margin-bottom: 10px;
}

.fabTOF{
    display: none;
    flex-flow: column nowrap;
    width: 60px;
    height: 60px;
    text-align: center;   
    position: fixed;
    left: 15px;
    bottom: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: smaller;
}

footer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

@media only screen and (min-width: 887px) {
    header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }
    
    header address{
        display: block;
    }

    nav{
        list-style-type: none;
        margin: 0;
        padding: 10px;
        overflow: hidden;
        font-size: larger;
        display: inline;
    }
}

strong{
    color: rgba(234,10,42,.8);
}