@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css");
@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600";

/* Box Model */
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    background: url(../../images/bkgForest.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, em, img, strong, center, ol, ul, li, form, label, table, caption, embed, footer, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
}

.image.fit img {
    width: 100%;
    height: auto;
}

ol, ul {
    list-style: none;
}

/* Containers */
#insideContainer {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}


/* Font */
body, input, textarea {
    color: #9a9a9a;
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 14pt;
    font-weight: 400;
    line-height: 1.65;
}

body, input, textarea {
    font-size: 12pt;
}

a {
    color: #6cc091;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

strong, b {
    color: #555;
    font-weight: 600;
}

em, i {
    font-style: italic;
}

p {
    margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #555;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 1em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: inherit;
    text-decoration: none;
}

h1 {
  margin: 0;
  padding: 0;
  display: inline; /* Or block, depending on how your .inner flexbox handles it */
}


h2 {
    font-size: 1.85em;
    font-weight: 300;
}

h3 {
    font-size: 1.75em;
}

@media screen and (max-width: 480px) {
    h3 {
        font-size: 1.25em;
    }
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 0.9em;
}

h6 {
    font-size: 0.7em;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.inner {
    max-width: 90%;
    margin: 0 auto;
    background-color: rgb(106, 120, 85);
}


/* Flex */
.flex {
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

/* Form */
form {
    margin: 0 0 2em 0;
}

form .field {
    margin-bottom: 1.5em;
}

label {
    color: white;
    display: block;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
    margin: 0 0 0 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: #6cc091;
    border-radius: 10px;
    border: none;
    border: solid 2px #8dcca9;
    color: #fff;
    display: block;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
input[type="tel"]:invalid,
select:invalid,
textarea:invalid {
    box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #4bae77;
    box-shadow: 0 0 0 1px #4bae77;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
    height: 2.75em;
}

textarea {
    padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    text-decoration: none;
    color: #9a9a9a;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    padding-left: 2.4em;
    padding-right: 0.75em;
    position: relative;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    background: rgba(144, 144, 144, 0.075);
    border-radius: 0;
    border: solid 1px #8dcca9;
    content: '';
    display: inline-block;
    height: 1.65em;
    left: 0;
    line-height: 1.58125em;
    position: absolute;
    text-align: center;
    top: 0;
    width: 1.65em;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    background: #6cc091;
    border-color: #6cc091;
    color: #ffffff;
    content: '\f00c';
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
    border-color: #6cc091;
    box-shadow: 0 0 0 1px #6cc091;
}

input[type="checkbox"]+label:before {
    border-radius: 0;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

::-webkit-input-placeholder {
    color: #c4e5d3 !important;
    opacity: 1.0;
}

:-moz-placeholder {
    color: #c4e5d3 !important;
    opacity: 1.0;
}

::-moz-placeholder {
    color: #c4e5d3 !important;
    opacity: 1.0;
}

:-ms-input-placeholder {
    color: #c4e5d3 !important;
    opacity: 1.0;
}

.formerize-placeholder {
    color: #c4e5d3 !important;
    opacity: 1.0;
}

/* Box */

.box {
    border: solid 1px #dbdbdb;
    margin-bottom: 2em;
    padding: 1.5em;
}

.box> :last-child,
.box> :last-child> :last-child,
.box> :last-child> :last-child> :last-child {
    margin-bottom: 0;
}

.box.alt {
    border: 0;
    border-radius: 0;
    padding: 0;
}

.box.person {
    border: solid 1px #8dcca9;
    padding: 3em 1.5em;
}

.box.person h3 {
    margin: 0;
}

.box.person .image {
    margin-bottom: 1em;
}

.box.person .image img {
    max-width: 100%;
}

/* Icon */

.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;
}

/* Image */

.image {
    border-radius: 0;
    border: 0;
    display: inline-block;
    position: relative;
}

.image img {
    border-radius: 0;
    display: block;
}

.image.left, .image.right {
    max-width: 40%;
}

.image.left img, .image.right img {
    width: 100%;
}

.image.round img {
    border-radius: 100%;
}

.image.left {
    float: left;
    padding: 0 1.5em 1em 0;
    top: 0.25em;
}

.image.right {
    float: right;
    padding: 0 0 1em 1.5em;
    top: 0.25em;
}

.image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
}

.image.fit img {
    width: 100%;
}

.image.main {
    display: block;
    margin: 0 0 3em 0;
    width: 100%;
}

.image.main img {
    width: 100%;
}

/* List */

ul {
    list-style: disc;
    margin: 0 0 2em 0;
    padding-left: 1em;
}

ul li {
    padding-left: 0.5em;
}

/* Button */

button {
  display: inline-block;
  padding: 12px 24px;
  background-color: blue;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px ridge white;
  border-radius: 50px;
  cursor: pointer;
}

button:hover {
  font-style: italic !important;
  background-color: green !important;
}

/* Banner */

.banner {
    /* padding: 8em 0 9em 0; */
    padding-top: 2em;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.banner h1 {
    font-size: 3.5em;
    font-weight: 400;
    color: #fff;
    line-height: 1em;
    margin: 0 0 1em 0;
    padding: 0;
}

.banner h2 {
    font-weight: 400;
    color: #fff;
    margin: 0;
    font-size: 1.5em;
}

.banner .icon {
    color: #6cc091;
    font-size: 2em;
}

.banner p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.75em;
}

.banner .flex {
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 4em auto;
}

.banner .flex div {
	padding: 0 8em;
    padding: 0 2em;
    color: white;
}

.banner .flex div:nth-of-type(1) {
    flex: .5
}

.banner .flex div:last-child {
    border: none;
    padding-right: 0;
}

.banner .flex div:first-child {
    padding-left: 0;
}

.banner .flex div p {
    margin: 0;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .banner {
        background-attachment: scroll;
    }
}

@media screen and (max-width: 736px) {
    .banner h1 {
        font-size: 2em;
    }

    .banner h3 {
        font-size: 1.25em;
    }

    .banner .flex {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 auto 2em auto;
    }

    .banner .flex div {
        font-size: .85em;
        padding: 0;
        border: none;
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 480px) {
    .banner h1 {
        font-size: 1.5em;
    }
}

/* Footer */

#footer {
    padding: 6em 0;
    /* background: #6cc091; */
    /* Tom */
    color: #fff;
    text-align: center;
}

#footer h3 {
    color: #FFF;
    margin-bottom: 2em !important;
}

#footer .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
    margin: 0 0 2em 0;
    padding: 0;
}

.copyright {
    background-color: rgba(106, 120, 85);
    text-align: center;
    color: white;
    font-weight: 200;
    font-size: 1em;
    padding: 2em 0 2em 0;
}

.copyright a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.copyright a:hover {
    color: #FFF;
}


@media screen and (max-width: 980px) {
    #footer {
        padding: 4em 0;
    }
}

@media screen and (max-width: 736px) {
    #footer {
        padding: 3em 0;
    }
}

.noBullet {
    list-style-type: none;
}

.blueItalic {
    color: blue !important;
    font-style: italic;
}

.subHead {
    color: yellow;
    font-size: large;
    font-weight: bold;
}

.shortSpaceAfter {
    margin-bottom: 0em;
}

.logo {
    max-width: 35%; border-radius: 25%; margin:20px auto;
}

.copyright {
    background-color: rgba(106, 120, 85);
    text-align: center;
    color: white;
    font-weight: 200;
    font-size: 1em;
    padding: 2em 0 2em 0;
}