/*-==================================================
===================== IMPORT FONTS ==================
==================================================-*/

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

* {
   font-family: 'Nunito', sans-serif;
   outline: none;
   border: none;
   text-decoration: none;
   margin: 0;
   padding: 0;
   list-style-type: none;
   box-sizing: border-box;
}

/* -=================================================
=================== END FONT IMPORT =================
==================================================-*/

/*-==========================================================================-*/

/* -=================================================
======================== RESET ======================
==================================================-*/

body {
   min-height: 100svh;
}

html {
   width: 100%;
}

hr {
   height: 1px;
   background-color: #09543a;
   margin: .75rem 0;
}

/* -=================================================
====================== END RESET ====================
==================================================-*/

/*-==========================================================================-*/

/* -=================================================
=================== MISCELLANEOUS ===================
==================================================-*/

 a.btn {
   font-size: 1.4rem;
   font-weight: bold;
   text-decoration: none;
   color: #fff;
   backround: red;
   padding: 0.5rem 1rem;
   display: inline-block;
   margin-top: 1rem;
   border-radius: 4px;
   transition: all 0.3s ease-in-out;
   max-width: 225px;
   text-align: center;
}

a.btn:hover {
   background: #09543a;
}

hr {
   margin: 20px 0;
}

.wrapper {
   max-width: 1500px;
   margin: 0 auto;
}

.pages .theme-color {
   background-color: #461326;
}

.pages .theme-color-font {
   olor: #09543a;
   color: #006f3c; /* Gene's green */
}

h1 {
   font-size: 2.75rem;
   line-height: 2.5rem;
}

h2 {
   font-size: 2.25rem;
   line-height: 2.25rem;
}

h3 {
   font-size: 1.75rem;
}

h4 {
   font-size: 1.5rem;
   font-weight: 600;
}

/* -=================================================
====================== END MISC =====================
==================================================-*/

/*-==========================================================================-*/

/* -=================================================
=============== HEADER AND NAVIGATION ===============
==================================================-*/

header {
   position: relative;
   top: 0; left: 0; right: 0;
   background: #ffffff;
   box-shadow: 0 5px 10px rgba(0,0,0,.1);
   padding: 0px 3% 0px 7%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   z-index: 1000;
}

header .noshow {
   display: none;
}

header .logo {
   padding: 10px 5px 10px 5px;
}

header .logo img {
   max-width: 300px;
}

header .navbar ul li {
   position: relative;
   float: left;
   font-size: 16px;
   font-weight: bold;
}

header .navbar ul li a {
   font-size: 1.3rem; /* THIS CHANGES THE TOP LEVEL NAV FONT SIZE AND DROP DOWNS */
   padding: 15px; /* THIS REDUCES THE OVERAL SIZE OF EACH LI ITEM */
   color: #333;
   display: block;
}

header .navbar ul li a:hover {
   background: #09543a;
   color: #fff;
}

header .navbar ul li ul {
   position: absolute;
   left: 0;
   width: 200px;
   background: #fff;
   display: none;
}

header .navbar ul li ul li {
   width: 100%;
   border: 1px solid #ddd; /* BORDER AROUND DROP DOWN ITEMS */
}

header .navbar ul li ul li ul {
   left: -200px; /* CHANGE POSITION OF THE DROPDOWN LIST */
   top: 0;
}

header .navbvar ul li:focus-within > ul,
header .navbar ul li:hover > ul {
   display: initial;
}

#menu-bar {
   display: none;
}

header label {
   font-size: 18px;
   font-weight: bold;
   color: #333;
   cursor: pointer;
   display: none;
}

.secondary-nav {
/*   display: flex;*/
/*   justify-content: right;*/
   max-width: 1500px;
   margin-bottom: 8px;
   border: 1px solid #eee;
   border-radius: 5px;
   color: #fff;
   margin-top: 10px;
   padding: 10px;
}

.secondary-nav a {
   color: #fff;
   cursor: pointer;
}

.flexcontainer {
   display: flex;
   align-items: center;
   justify-content: right;
}

.flexcontainer li {
   margin-right: 15px;
}

.flexcontainer img {
   border: 2px solid #fff;
   border-radius: 5px;
}

/*-=======================================
=========== END HEADER AND NAV ===========
=======================================-*/

/* ======================================================= */

/*-=======================================
================== FOOTER ================
=======================================-*/

footer {
   width: 100%;
   background: #090743;
   margin: 20px 0 0 0;
   padding: 20px 0 40px 0;
}

footer #footer-container {
   display: flex;
   color: #fff;
   font-size: .9rem;
   max-width: 1500px;
   margin-left: auto;
   margin-right: auto;
   justify-content: space-evenly;
}

footer #footer-container h4 {
   text-decoration: underline;
   text-transform: uppercase;
   margin-bottom: 5px;
   font-size: 1rem;
}

footer #footer-container li {
   letter-spacing: 1.5px;
}

footer #footer-container a {
   color: #fff;
}

footer #footer-social {
   display: flex;
   flex-direction: column;
   align-items: center;
}

footer #footer-social h4 {
   margin-bottom: 10px;
}

/*-=======================================
=========== END HEADER AND NAV ===========
=======================================-*/

/* ======================================================= */








