/* CSS Reset */
body, header, nav, main, footer, h1, div, img, ul{
    margin: 0;
    padding: 0;
    border: 0;
}

/* Style rule for body and images */
body{
    background-color: #060149;
}

img{
    max-width: 100%;
    display: block;
}

/* Style rules for mobile viewport */

/* Style rule for header */
header{
    /* width: 25%;
    float: left; */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #060149;
    height: 190px;
}
header img{
    margin: 0 auto;
}
/* Style rule for navigation area */
nav{
    /* width: 70%;
    float: right;
    margin: 5em 3em 0 0; */
    padding: 1%;
    margin-bottom: 1%;
}

nav ul{
    list-style-type: none ;
    /* margin: 0; */
    text-align: center;
}

nav li{
    /* display: inline-block; */
    font-size: 1.5em;
    font-family: 'Francois One', sans-serif;
    /* font-weight: bold; */
    border-top: 1px solid #fff;
}
nav li:first-child{
    border-top: none;
}

nav li a{
    display: block;
    color: #ffffff;
    /* text-align: center; */
    padding: 0.5em 1em;
    text-decoration: none;
}
 /* show mobile class and hide tablet desktop */
.mobile{
    display: block;
}

.tablet-desktop{
    display: none;
}
/* Style rule for main content */
main{
    background-color: #fff;
    padding: 2%;
    font-size: 1.15em;
    font-family: 'Roboto Slab', serif;
}
.tel-link{
    background-color: #060149;
    padding: 2%;
    margin: 0 auto;
    width: 80%;
    text-align: center;
    border-radius: 5px;
}

.tel-link a{
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    display: block;
}

.hours{
    margin-left: 10%;
}
.action{
    font-size: 1.35em;
    color: #0059ff;
    font-weight: bold;
}
/* #faceToface, #online, #third{
width: 30%;
float: left;
margin: 0 2%;
} */
/* *************************** */
#contact .contact-email-link{
    /* text-align: center; */
    text-decoration: none;
}

#contact .contact-email-link{
    color: #0059ff;
}

/* Media query for Tablet viewport */
@media screen and (min-width: 630px) {
    .tablet-desktop{
        display: block;
    }

    .mobile{
        display: none;
    }

    header{
        position: static;
        padding: 2%;
    }

    nav li{
        border-top: none;
        display: inline-block;
        border-right: 1px solid #fff;
    }

    nav li:last-child{
        border-right: none;
    }

    nav li a{
        padding: 0.1em 0.75em;
    }

    .tel-num{
        font-size: 1.25em;
    }
}

/* Media query for destop viewport */
@media screen and (min-width: 769px) {
    /* Desktop Viewport: Style rule for header */
    header{
        width: 22%;
        float: left;
        padding-bottom: 0;
    }

    /* Desktop Viewport: Style rules for nav area */
    nav{
        float: right;
        width: 70%;
        margin: 4em 1em 0 0 ;
    }

    nav ul{
        text-align: right;
    }

    nav li{
        border: none;
    }

    nav li a{
        padding: 0.5em 1em;
    }

    nav li a:hover{
        color: #060149;
        background-color: #fff;
        }

    /* Desktop Viewport: Style Rules for main content */
    main{
        clear: left;
    }

    main h1{
        font-size: 1.8em;
    }

}

/* Media Query for Print */
@media print{
    body{
        background-color: #0059ff;
        color: #060149;
    }
}

/* Style rule for footer content */
footer p{
    font-size: 0.75em;
    text-align: center;
    color: #fff;
    padding: 0 1em;
}

footer p a{
    color: #fff;
    text-decoration: none;
}