
:root {
    --background: rgba(167, 228, 247, .35);
}

*, *::before, *::after {
    box-sizing: border-box;
}
  
  /* Main */

body {
    display: grid;
	margin: 10px 0px 0px 0px;
    padding: 0;
    background-color: var(--background);
	font-family: 'Poppins', sans-serif;
    font-size: .90rem;
	font-weight: 400;
    color: #58807B;
    line-height: 1.5;	
    text-decoration: none;
}

h2 {
    color: #3D4D42;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
  }	
  
.article_img {
      float: left;
      width: 20%;
      margin-right: 2em;
      margin-bottom: .5em;
      shape-outside: circle();      
  }
  
.sources {
	display: flex;
	font-size: .7em;
	display: block;
    text-align: center;
    padding-bottom: 2em;
}  

/* Links */

a:link {
    text-decoration: none;
    color: #0071B3;
	font-weight: bold;
    outline: none;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
}

a:hover {
    color: #007e35;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #0071B3;
}



/* Navigation */ 

header {
    border-bottom: 2px solid rgb(32, 191, 240);
    background-image: url("/images/head-banner.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    text-align: center;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 14vh;
    margin-top: -1em;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 2em;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: rgb(4, 111, 183);
    height: 4px;
    width: 2em;
    border-radius: 2px;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 10px;
}

.nav-toggle-label span::after {
    top: 10px;
}

nav {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background: var(--background);
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

nav li {
    margin-bottom: 1em;
    margin-left: 1em;
}

nav a {
    color: #0071B3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}

nav a:hover {
    color: #007e35;
}

.nav-toggle:checked ~ nav {
    transform:scale(1, 1);
}

.nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 90px 50px 30px 50px;
}


ul {
    list-style: none;
    line-height: 180%;
    margin: 0;
    padding: 0px 15px 15px 15px;
  }
  
 ul.covid-list li:before, ul#service_text li:before {
    content: '✓';
    color: #c13d41; /* Checkmark color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }

  .contact-text {
    margin-bottom: 30px;
}

  .tidy {
      align-items: center;
      transform:rotate(-10deg);
  }

  #captcha_container_1 {
      margin-left: 50px;
  }

/* Footer */

footer a {
    color: #0071B3;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #007e35;
}

.footer-content {
    border-top: 2px solid rgb(32, 191, 240);
    display: flex;
    flex-direction: column;
    background-color: rgba(167, 228, 247, .25);
    padding: 20px;
}

.footer-content h2 {
    color: #474554;
    font-weight: 700;
    font-size: .80rem;
    margin: 0px 30px;
    padding-bottom: 1.2em;
}

.footer-content p {
    color: #474554;
}

.f-links {
    margin-bottom: -10px
}

.f-links li {
    display: inline-block;
    padding: 0px 10px;
}

.f-links a {
    text-decoration: none;
}

.footer-right {
    text-align: center;
    padding: 10px 15px 0px 15px;
}

.footer-right p {
    font-size: 14px;
    word-spacing: 2px;
}

.footer-right span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

.footer-left {
    text-align: left;
}

.f_images {
    display: inline-block;
    margin: 0 10px;   
}

.sitemap ul {
    display: inline-block;
    column-span: all;
}

.covid {
    margin-top: 75px;
    background: #DFD5B1;
    padding: 5px;
    text-align: center;
  }

  .covid a {
      color: #4D4729;
      text-decoration: underline;
  }

  form {
      margin-top: 30px;
  }

/* If the screen is larger than min-width, display below */

@media only screen and (min-width: 854px) {
    .nav-toggle-label {
        display: none;
    }
    header {
        display: grid;
        grid-template-columns: 1fr auto minmax(540px, 3fr) 1fr;
    }

    .logo {
        grid-column: 2 / 3;
        width: 230px;
        height: 55px;
    }

    nav {
        all: unset;
        grid-column: 3 / 4;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    nav ul {
        display: flex;
    }

    nav li {
        margin-left: 3em;
        margin-bottom: 0em;
    }

    nav a {
        opacity: 1;
        position: relative;
    }

    nav a::before {
        content: '';
        display: block;
        height: 5px;
        background: #007e35;
        position: absolute;
        top: -.50em;
        left: 0;
        right: 0;
        transform: scale(0, 1);
        transition: transform ease-in-out 250ms;
    }

    nav a:hover::before {
        transform: scale(1, 1);
    }

    .content {
        display: flex;
        flex-direction: row;
        gap: 80px;
    }
    
    .content-left {
        width: 50%;
    }
    
    .content-right {
        width: 50%;
    }

    .footer-content {   
        display: flex;
        flex-direction: row;
        padding: 20px 50px 10px 50px;       
    }

    .footer-left {
        width: 50%;
    }

    .footer-right {
        width: 50%;
        margin-top: -15px;
    }

    }

    /* No Javascript */

    .noscript h2 {
        margin-top: 75px;
        margin-bottom: -75px;
        background: #c13d41;
        color: white;
        padding: 5px;
        text-align: center;
      }