/* CSS Document */
/*Author: Snowbird Media, Terri Harlow, https://snowbirdmedia.ca*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    font-size: calc(1vw+1vh+.5vmin)
}

body {
    background-color: #00334e;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

.page-wrapper {
    width: 80%;
    height: auto;
    margin: 1.5em auto;
    background-color: #ffffff;
    border: 10px solid #dddddd;
    border-radius: 8px;
}

h1, h2, h3, h4, h5, h6 {
    font-style: normal;
    font-weight: 700;
    color: #00334e;
    margin-bottom: 0;
}

a:link {
    color: #2361a1;
    text-decoration: none;
}

a:visited {
    color: #653460;
}

a:hover {
    text-decoration-style: dashed;
    text-decoration: underline;
    text-decoration-color: #2361a1;
}

a:active, a:focus {
    border: 1px dashed #2361a1;
    padding: 2px;
}

.nobdr:hover {
    border-bottom: none;
}

header {
    display: block;
    margin: 0 auto;
    padding: 0 2em;
}

header h1 {
    font-family: "Times New Roman", serif;
    font-size: 2.1rem;
    text-transform: uppercase;
    color: #2361a1;
    line-height: 1;
    padding: 0;
    margin: 0;
}

header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1em;
}

#main {
    padding: 0 6em 0 2em;
}

p {
    padding-bottom: 0.125em;
}

b .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.menu-toggle {
    display: block;
    float: right;
    font-size: 40px;
    color: #333;
}

.menu-toggle:hover,
.menu-toggle:focus {
    color: #008FDB;
}

.main-menu {
    position: absolute;
    display: none;
    left: -200px;
    top: 0;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    transition: left 0.3s ease,
        box-shadow 0.3s ease;
    z-index: 999;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 2.5em 0 0;
    -webkit-box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
    -moz-box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
    box-shadow: -8px 0 8px rgba(0, 0, 0, .5);
    min-height: 100%;
    width: 200px;
    background: #1a1a1a;
}

.main-menu a {
    display: block;
    padding: .75em 15px;
    line-height: 1em;
    font-size: 1.3em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #383838;
}

.main-menu a.menu-close {
    border-bottom: 0;
}

.main-menu li:first-child a {
    border-top: 1px solid #383838;
}

.main-menu a:hover,
.main-menu a:focus {
    background: #333;
    text-decoration: underline;
}

.main-menu .menu-close {
    position: absolute;
    right: 0;
    top: 0;
}

.main-menu:target,
.main-menu[aria-expanded="true"] {
    display: block;
    left: 0;
    outline: none;
    -moz-box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
    -webkit-box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
    box-shadow: 3px 0 12px rgba(0, 0, 0, .25);
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
    z-index: 1001;
}

.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
    position: relative;
    z-index: 1000;
}

.main-menu:target+.backdrop,
.main-menu[aria-expanded="true"]+.backdrop {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: #000;
    background: rgba(0, 0, 0, .85);
    cursor: default;
}

@supports (position: fixed) {

    .main-menu,
    .main-menu:target+.backdrop,
    .main-menu[aria-expanded="true"]+.backdrop {
        position: fixed;
    }
}

@media (min-width: 1024px) {

    #main-menu-toggle, .menu-toggle,
    .main-menu .menu-close {
        display: none;
    }

    .main-menu {
        position: relative;
        left: auto;
        top: auto;
        height: auto;
        display: block;
    }

    .main-menu ul {
        display: flex;
        padding: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        height: auto;
        width: auto;
        background: none;
        margin-bottom: 1em;
    }

    .main-menu ul> :first-child {
        border-left: 1px solid #2361a1;
    }

    .main-menu a {
        background-color: #fff;
        border-top: 1px solid #2361a1;
        border-right: 1px solid #2361a1;
        border-bottom: 1px solid #2361a1;
        color: #2361a1;
    }

    .main-menu a:hover,
    .main-menu a:focus {
        text-decoration: none;
        background-color: #2361a1;
        border-color: #2361a1;
        color: #ffffff;
    }
}

.services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1.5em;
}

.item {
    flex-basis: 20%;
    padding: 0.5em;
    text-align: center;
}

.one, .two, .three, .four {
    padding-top: 0;
    margin-top: 0;
    border-right: 1px dotted #7aa508;
}

.five {
    padding-top: 0;
    margin-top: 0;
    border-right: none;
}

.item p {
    padding: 0.5em;
    text-align: left;
}

a.button:link, a.button:visited {
    display: block;
    vertical-align: bottom;
    text-align: center;
    font-size: 84%;
    color: #25243B;
}

a.button:hover {
    border-bottom: none;
    color: #008FDB;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.responsive {
    width: 100%;
    height: auto;
}

.logo {
    width: 30%;
    height: auto;
    padding: 1rem 0 0.25rem 0;
}

.logo-pclaw {
    width: 30%;
    height: auto;
}

.small {
    font-size: 0.875rem;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

em {
    font-style: italic;
}

.left {
    display: block;
    float: left;
}

.right {
    display: block;
    float: right;
}

.green {
    color: #7a8608;
}

footer {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding: 1em 2em;
    justify-content: space-between;
}

.col-1 {
    display: block;
    order: 2;
    flex-basis: 70%;
}

.col-2 {
    display: block;
    padding-right: 2em;
    flex-basis: 25%;
}

/* medium screen view*/
@media screen and (max-width:1024px) {
    .page-wrapper {
        font-size: 88%;
    }

    .main-menu a {
        font-size: 1rem;
    }

    .services {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 2em;
    }

    .item {
        width:80%;
    }

    .one,.two,.three,.four,.five {
      border-right: none;
    }
}

@media screen and (max-width:769px) {
    .logo {
        width: 60%;
        height: auto;
        padding: 1rem 0 0.25rem 0;
    }

    footer {
      display: flex;
      flex-direction: column;
    }

    .logo-pclaw {
        width: 60%;
        height: auto;
    }
}

/* Tablet view */
@media screen and (max-width:480px) {
    .logo {
        width: 80%;
        height: auto;
        padding: 1rem 0 0.25rem 0;
    }

    #main {
      padding:4px;
    }

    #main h1 {
      font-size:90%;
    }

    .services {
      padding:4px;
    }

    .item p {
      width:98%;
    }

    .button {
      font-size:96%;
    }
}

@media screen and (max-width:320px) {

    .logo {
        width: 80%;
        height: auto;
        padding: 1rem 0 0.25rem 0;
    }

    header h1 {
      font-size:80%;
    }

    .menu-toggle {
      float:right;
      font-size:25px;
    }

}
