/* Importing gill sans font */
@import url("https://fonts.cdnfonts.com/css/gill-sans");
/* animations - hero image shrinks inwards */
@-webkit-keyframes heroShrink {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes heroShrink {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
/* hero text title flies in from left */
@-webkit-keyframes flyIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes flyIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
/* **** */
/* ______ This is the main section of the website styles ______ */
*, ::after, ::before {
  box-sizing: unset !important;
}

#main {
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  margin: 0;
  height: calc(100% - 60px);
  display: block;
  position: absolute;
  padding: 0;
}

.container {
  width: 100% !important;
  padding-right: unset !important;
  padding-left: unset !important;
  margin-right: unset !important;
  margin-left: unset !important;
}

.container-fluid {
  width: 100% !important;
  padding-right: unset !important;
  padding-left: unset !important;
  margin-right: unset !important;
  margin-left: unset !important;
}

html, body {
  font-size: 12pt;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #585858;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  font-stretch: expanded;
}

.entry-title h1 {
  color: #025a67;
  padding: 0;
  margin: 0 5px;
  padding: 35px 10px 15px 30px;
  font-family: "Gill Sans";
  font-weight: 500;
  font-size: 1rem;
}

h1 {
  color: #025a67;
  margin: 0 5px;
  padding: 0;
  padding: 50px 10px 15px 50px;
}

h2 {
  color: #ffffff;
  margin: 0 5px;
  padding: 0;
  padding: 50px 10px 15px 50px;
}

h3 {
  color: #444444;
  margin: 0 5px;
  padding: 0;
  padding: 50px 10px 15px 50px;
}

h4 {
  color: #003f49;
  margin: 0 5px;
  padding: 0;
  font-size: 0.9em;
  padding: 50px 10px 15px 50px;
}

h5 {
  color: #ffffff;
  margin: 0 5px;
  padding: 0;
  font-size: 0.9em;
}

h6 {
  color: #444444;
  margin: 0 5px;
  padding: 0;
  font-size: 0.9em;
}

p {
  font-size: 12pt;
  font-weight: 400;
  padding: 5px 50px;
  text-align: justify;
}

p.bright {
  color: #ffffff;
}

p.entry-paragraph {
  padding: 35px 40px;
}

a {
  color: #025a67;
}

a:hover {
  color: #585858;
}

/* This is the header and navigation section of the website styles 
The header and nav section is repeated on each page, but the active link changes on the html pages classes
*/
header {
  height: 150px;
  background: linear-gradient(#c1e2ff 0%, #fff 11.33%, #fff 73.68%, #ffffd5 90.24%, #fdf991 92.16%, #f2d32a 93.99%, #cbbe73 95.65%, #a3dfff 97.96%, #007f9d 98.76%, #005226 100%);
  border: 1px solid #707070;
  vertical-align: bottom;
  position: relative;
  z-index: 9999;
}

.logo {
  float: left;
  padding: 15px;
}

.logo img {
  height: 120px;
  width: auto;
  z-index: 999999;
}

/* Menu and Navigation Section */
.menu div {
  float: right;
  height: 20px;
  vertical-align: bottom;
}

.menu::after, .menu::before {
  box-sizing: unset !important;
}

#navigation {
  min-width: 70px;
  width: 100%;
  right: 0;
  vertical-align: bottom;
  text-align: right;
  align-items: baseline;
  height: 19px;
  position: absolute;
  bottom: 0px;
  display: inline-block;
  font-size: 15pt;
  padding: 19px 0;
  margin-bottom: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#navigation a {
  padding: 5px 15px;
  text-decoration: none;
  color: #585858;
  display: inline-block;
}

#navigation::after, nav::before {
  box-sizing: unset !important;
}

#navigation a:hover {
  padding: 5px 15px;
  text-decoration: none;
  color: #025a67;
  background-color: rgba(255, 255, 255, 0.5);
}

#navigation a.active {
  padding: 5px 15px;
  text-decoration: none;
  color: #025a67;
  background-color: rgba(183, 175, 140, 0.3137254902);
}

#navigation a.active:hover {
  padding: 5px 15px;
  text-decoration: none;
  color: #003f49;
  background-color: rgba(105, 109, 110, 0.2549019608);
}

/* Hero Image Section repeated on each page, the images change per page */
.hero {
  display: block;
  position: relative;
  z-index: 0;
}

#hero {
  height: 400px;
  overflow: hidden;
  overflow: clip; /* required */
}

#hero-text-position {
  vertical-align: bottom;
  padding-bottom: 20px;
  padding-top: 250px;
  max-width: 75%;
}

.hero-title div, .hero-title h1 {
  height: 47px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-animation: flyIn 3s;
          animation: flyIn 3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  --webkit-backdrop-filter: blur(15px);
}

.hero-title h1 {
  color: #00284b;
  font-size: 1.8rem;
  font-family: "Gill Sans";
  font-style: italic;
  padding: 15px 15px 15px 50px;
  margin: 20px;
  text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #ffffff;
}

.hero_image1 {
  background: url(../images/hero-image1.jpg);
  height: 400px;
  width: auto;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  /* animate the hero background image */
  -webkit-animation: heroShrink 10s;
          animation: heroShrink 10s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero_image2 {
  background: url(../images/hero-image2.jpg);
  height: 400px;
  width: auto;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  /* animate the hero background image */
  -webkit-animation: heroShrink 10s;
          animation: heroShrink 10s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero_image3 {
  background: url(../images/hero-image3.jpg);
  height: 400px;
  width: auto;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  /* animate the hero background image */
  -webkit-animation: heroShrink 10s;
          animation: heroShrink 10s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero_image4 {
  background: url(../images/hero-image4.jpg);
  height: 400px;
  width: auto;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  /* animate the hero background image */
  -webkit-animation: heroShrink 10s;
          animation: heroShrink 10s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.hero_image5 {
  background: url(../images/hero-image5.jpg);
  height: 400px;
  width: auto;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  /* animate the hero background image */
  -webkit-animation: heroShrink 10s;
          animation: heroShrink 10s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/* _____________________ Main Content Section ___________________  */
/* Home Page */
.intro-box {
  height: 180px;
  width: 180px;
  display: inline-block;
  padding: 20px;
  margin: 20px;
}

.intro-box i {
  font-size: 8rem;
  color: #ffffff;
  padding-bottom: 10px;
}

.intro-box i:hover {
  font-size: 8rem;
  color: rgb(240, 235, 206);
  padding-bottom: 10px;
}

.intro-box-wide {
  height: 180px;
  width: 180px;
  display: inline-block;
  padding: 20px;
  margin: 0;
}

.box1 {
  background-color: #b7af8c;
  color: #ffffff;
}

.box2 {
  background-color: rgba(20, 67, 108, 0.5);
  color: #ffffff;
}

.box3 {
  background-color: #919191;
  color: #ffffff;
}

.box4 {
  background-color: rgba(0, 80, 92, 0.5);
  color: #ffffff;
}

.content-box {
  min-height: 150px;
  max-height: 250px;
  min-width: 150px;
  max-width: 250px;
  margin: 0;
  padding: 25px;
}

section {
  min-height: 150px;
  height: auto;
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
}

#section_one, #section_icontools, #section_tools_intro {
  background-color: #ffffff;
  vertical-align: middle;
  width: 100%;
  padding-left: 0 !important;
}

#iconboxes {
  text-align: center;
  vertical-align: baseline;
  padding-bottom: 50px;
}

#section_two {
  color: #ffffff;
  vertical-align: middle;
  width: 100%;
  padding-left: 0 !important;
  min-height: 200px;
  width: 100%;
  background-color: rgb(95, 136, 171);
  z-index: 3010;
  border: none;
}

#section_two_image {
  background: url(../images/content-box-image1.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 50%;
  overflow: hidden;
  height: 50vw;
  border: none;
}

.section_two_overlay {
  width: 100%;
  background-color: rgb(95, 136, 171);
  z-index: 3010;
  border: none;
}

#section_two_text {
  z-index: 3050;
  display: inline;
  padding: 2% 2.5%;
  align-content: space-around;
  text-align: center;
}

#section_three {
  vertical-align: middle;
  width: 100%;
  padding-left: 0 !important;
  min-height: 200px;
  width: 100%;
  background-color: rgba(129, 122, 34, 0.24);
  z-index: 3010;
  border: none;
}

#section_three_image {
  background: url(../images/content-box-image2.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 50%;
  overflow: hidden;
  height: 50vw;
  border: none;
}

.section_three_overlay {
  width: 100%;
  background-color: rgba(129, 122, 34, 0.24);
  z-index: 3010;
  border: none;
}

#section_three_text {
  z-index: 3050;
  display: inline;
}

#section_four {
  color: #ffffff;
  vertical-align: middle;
  width: 100%;
  padding-left: 0 !important;
  min-height: 200px;
  width: 100%;
  background-color: rgb(67, 120, 129);
  z-index: 3010;
  border: none;
}

#section_four_image {
  background: url(../images/content-box-image3.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 50%;
  overflow: hidden;
  height: 50vw;
  border: none;
}

#section_three_text {
  z-index: 3050;
  display: inline;
}

#section_about {
  display: block;
  color: #ffffff;
  width: 100%;
}

#about_centered {
  padding: 25px 12.5% 25px 12.5% !important;
}

.section_about_image {
  background: url(../images/anxiety-image-blue.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

#section_about_text {
  z-index: 3050;
  display: inline;
}

h2.section_about_text {
  padding: 0px 5px 0 5px;
  text-align: center;
}

#section_chart {
  display: block;
  color: #444444;
  width: 100%;
}

#chart_centered {
  padding: 25px 12.5% 25px 12.5%;
}

#section_chart_text {
  z-index: 3050;
  display: inline;
}

h3.section_chart_text {
  padding: 0px 5px 0 5px;
  text-align: center;
}

div.caption {
  color: #444444;
  font-size: 0.85rem;
  line-height: 1.2;
  text-align: center;
  width: 90%;
  font-weight: 600;
}

div.reference {
  color: #444444;
  font-size: 0.7rem;
  line-height: 1;
  text-align: left;
  width: 100%;
  font-weight: 300;
  padding: 30px 10px 10px 10px;
}

#section_more {
  display: block;
  color: #ffffff;
  width: 100%;
}

.more_centered {
  padding: 25px 12.5% 25px 12.5% !important;
}

.section_more_image {
  background: url(../images/more-image-grey.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

ul.bright.section_more_box, ul.bright.section_about_text {
  list-style-type: square;
  list-style-position: outside;
  padding-top: 3rem;
  line-height: 1.5em;
  display: inline-block;
}

#section_more_text {
  z-index: 3050;
  display: inline;
}

a.section_more_text, a.section_about_text {
  text-decoration: underline;
  color: #ffffff;
}

ul.section_more_text::after, li.section_more_text::after, ui.section_about_text::after, li.section_about_text::after {
  padding-bottom: 15px;
}

a.section_more_text:hover, a.section_about_text:hover {
  text-decoration: underline;
  color: rgb(211, 238, 250);
}

h2.section_more_text, h2.section_about_text {
  padding: 0px 5px 0 5px;
  text-align: center;
}

.section_mindfulness_image {
  background: url(../images/mindfulness-teal.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

.section_getsupport_image {
  background: url(../images/get-support-image-beige.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

#section_where_text {
  z-index: 3050;
  display: inline;
}

a.section_where_text {
  text-decoration: underline;
  color: #ffffff;
}

ul.section_where_text::after, li.section_where_text::after {
  padding-bottom: 15px;
}

a.section_where_text:hover {
  text-decoration: underline;
  color: rgb(211, 238, 250);
}

.section_tools_image {
  background: url(../images/fishing-grey-image.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

.tools_centered {
  padding: 25px 10%;
}

.section_helpful_image {
  background: url(../images/anxiety-image-blue.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

.helpful_centered {
  padding: 25px 10%;
}

ul.bright.section_more_box {
  list-style-type: square;
  list-style-position: outside;
  line-height: 1.5em;
  display: inline-block;
}

#section_form {
  display: block;
  color: #ffffff;
  width: 100%;
}

#form_centered {
  padding: 25px 0 25px 12.5% !important;
}

.section_form_image {
  background: url(../images/grey-support-image.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 0 !important;
  min-height: 200px;
  z-index: 3000;
  opacity: 100%;
  overflow: hidden;
  height: 100vw;
  border: none;
  height: unset !important;
}

#section_form_text {
  z-index: 3050;
  display: inline;
}

h2.section_form_text {
  padding: 0px;
}

.contact-form {
  padding: 15px 15px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #707070;
  min-height: 400px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  color: #444444;
  font-size: 1rem;
  line-height: 1.1em;
  width: 80%;
}

input.contact-form {
  color: #444444;
  font-size: 1rem;
  line-height: 1.1em;
}

.text-input {
  margin-bottom: 8px;
}

.contact-form label, legend {
  color: #444444;
  font-size: 1rem;
  line-height: 1.2em;
}

.contact-form fieldset {
  border: 1px solid #919191;
  border-top: 1px solid #919191 !important;
  padding: 5px;
}

.contact-form legend {
  padding: 10px;
  background-color: #ffffff;
  color: #003f49;
  width: 80% !important;
}

input.submit_button {
  border: 1px solid #025a67;
  background-color: #003f49;
  color: #ffffff;
  border-radius: 0;
  padding: 5px;
  box-shadow: 0px 4px 3px 2px rgba(0, 0, 0, 0.16);
}

input.submit_button:hover {
  border: 1px solid #003f49;
  background-color: #025a67;
  color: #ffffff;
  border-radius: 0;
  padding: 5px;
  box-shadow: 0px 4px 3px 2px rgba(255, 255, 255, 0.16);
}

input.submit_button:active {
  border: 1px solid #025a67;
  background-color: #ffffff;
  color: #003f49;
  border-radius: 0;
  padding: 5px;
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, 0.16);
}

.hcentered {
  padding-left: 33%;
  padding-right: 33%;
}

ul.bright.contentbox {
  list-style-type: none;
  list-style-position: outside;
  padding-top: 3.5rem;
  line-height: 1.5em;
  word-spacing: 0.25rem;
  display: inline-block;
}

h2.contentbox, h3.contentbox, h4.contentbox {
  padding: 5rem 5px 0 5px;
  text-align: center;
}

p.contentbox {
  padding: 0 2vw;
  padding-top: 3rem;
  text-align: center;
  line-height: 3em;
  word-spacing: 0.25rem;
}

/* hiding the extra small device responsive sections over 320px device width */
#section_two_resp {
  display: none;
}

#section_three_resp {
  display: none;
}

#section_four_resp {
  display: none;
}

/* _______ This is the footer section ________ */
footer {
  clear: both;
  height: 60px;
  padding: 40px 0 0 0;
  border-top: 1px solid black;
  background-color: rgb(121, 119, 92);
  color: #ffffff;
  font-weight: 300;
  font-size: 0.8em;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
  display: block;
  text-align: center;
  box-shadow: 0px -8px 5px -1px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  box-sizing: border-box;
}

footer a {
  color: #ffffff;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

footer a:hover {
  color: #003f49;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}

/* ============ This is the responsive media query section ===========
====================================================================== */
/* Extra large devices */
@media (min-width: 1200px) and (max-width: 1920px) {
  .container {
    width: 100%;
    max-width: 1920px;
  }
  .hero_image1 {
    background: url(../images/hero-image1.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image2 {
    background: url(../images/hero-image2.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image3 {
    background: url(../images/hero-image3.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image4 {
    background: url(../images/hero-image4.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image5 {
    background: url(../images/hero-image5.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
}
/* Large devices */
@media (min-width: 992px) and (max-width: 1200px) {
  .hero_image1 {
    background: url(../images/hero-image1.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image2 {
    background: url(../images/hero-image2.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image3 {
    background: url(../images/hero-image3.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image4 {
    background: url(../images/hero-image4.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image5 {
    background: url(../images/hero-image5.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .container {
    width: 100%;
    max-width: 1200px;
  }
  .hero_image1 {
    background: url(../images/hero-image1.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image2 {
    background: url(../images/hero-image2.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image3 {
    background: url(../images/hero-image3.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image4 {
    background: url(../images/hero-image4.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  .hero_image5 {
    background: url(../images/hero-image5.jpg);
    height: 400px;
    width: auto;
    background-position: top center;
    background-size: cover;
    overflow: hidden;
    background-repeat: no-repeat;
  }
  p {
    font-size: 1rem;
  }
}
/* Medium devices */
@media (min-width: 800px) and (max-width: 991px) {
  .hero_image1 {
    background: url(../images/hero-image1-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image2 {
    background: url(../images/hero-image2-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image3 {
    background: url(../images/hero-image3-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image4 {
    background: url(../images/hero-image4-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .hero_image5 {
    background: url(../images/hero-image5-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
    /* animate the hero background image */
    -webkit-animation: heroShrink 10s;
            animation: heroShrink 10s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  #hero {
    margin-bottom: 0 !important;
    height: 250px !important;
    overflow: hidden;
  }
  .hero-title div, .hero-title h1 {
    height: 35px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation: flyIn 3s;
            animation: flyIn 3s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    --webkit-backdrop-filter: blur(15px);
  }
  .menu div {
    text-align: right;
    float: none !important;
    clear: both;
  }
  #navigation {
    min-width: 70px;
    width: 100%;
    right: 0;
    vertical-align: bottom;
    text-align: right;
    align-items: baseline;
    height: 21px;
    position: absolute;
    bottom: 0px;
    display: inline-block;
    font-size: 14pt;
    padding: 21px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .entry-title h1 {
    font-size: 1.5rem;
  }
  .container {
    width: 100%;
    max-width: 991px;
  }
  #hero-text-position {
    vertical-align: bottom;
    padding-bottom: 20px;
    padding-top: 90px;
    max-width: 85%;
  }
  .hero-title div, .hero-title h1 {
    height: 25px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation: flyIn 3s;
            animation: flyIn 3s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    --webkit-backdrop-filter: blur(15px);
  }
  .hero-title h1 {
    color: #00284b;
    font-size: 1.8rem !important;
    font-family: "Gill Sans";
    font-style: italic;
    padding: 15px 15px 25px 50px;
    margin: 20px;
    text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #ffffff;
  }
  h2.contentbox, h3.contentbox, h4.contentbox {
    padding: 5rem 5px 0 5px !important;
    text-align: center;
  }
  p.contentbox {
    padding: 0 2vw;
    padding-top: 0rem !important;
    text-align: center;
    line-height: 3em;
    word-spacing: 0.25rem;
  }
  #section_two_image {
    background: url(../images/content-box-image1-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_three_image {
    background: url(../images/content-box-image2-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_four_image {
    background: url(../images/content-box-image3-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
}
/* Small devices */
@media (min-width: 451px) and (max-width: 799px) {
  h1, h2, h3, h4, h5, h6, h1.entry-title, h1.section_more_text, h1.section_chart_text {
    margin: 0 5px;
    padding: 0;
    padding: 50px 10px 15px 35px;
  }
  .entry-title p {
    padding: 25px;
    font-size: 1rem;
  }
  #menu div {
    float: none;
    height: 40px;
    vertical-align: bottom;
    text-align: center;
    z-index: 99999;
  }
  #menu_section {
    text-align: center;
  }
  .container {
    width: 100%;
    max-width: 799px;
  }
  .hero_image1 {
    background: url(../images/hero-image1-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image2 {
    background: url(../images/hero-image2-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image3 {
    background: url(../images/hero-image3-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image4 {
    background: url(../images/hero-image4-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image5 {
    background: url(../images/hero-image5-250pxh.jpg);
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  #hero {
    height: 250px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  #hero-text-position {
    vertical-align: bottom;
    padding-bottom: 10px;
    padding-top: 120px;
    max-width: 85%;
  }
  .hero-title div, .hero-title h1 {
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation: flyIn 3s;
            animation: flyIn 3s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .hero-title h1 {
    color: #00284b;
    font-size: 1.2rem !important;
    font-family: "Gill Sans";
    font-style: italic;
    padding: 15px 15px 15px 50px;
    margin: 20px;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5019607843), -1px -1px 1px rgba(255, 255, 255, 0.5019607843);
  }
  #navigation {
    clear: both;
    float: none;
    min-width: 60px;
    width: auto;
    right: 0;
    vertical-align: bottom;
    text-align: center;
    align-items: baseline;
    height: 14px;
    position: absolute;
    bottom: 0px;
    display: inline-block;
    font-size: 10pt;
    padding: 16px;
    white-space: nowrap;
    font-weight: 400;
    z-index: 99999;
  }
  #navigation a {
    padding: 0 5px 14px 5px;
    text-decoration: none;
    color: #585858;
    z-index: 99999;
  }
  #navigation::after, nav::before {
    box-sizing: unset !important;
  }
  #navigation a.active {
    padding: 0 5px 14px 5px;
    text-decoration: none;
    color: #025a67;
    background-color: rgba(183, 175, 140, 0.3137254902);
  }
  #navigation a:hover {
    padding: 0 5px 14px 5px;
    text-decoration: none;
    color: #025a67;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99998;
  }
  #navigation a.active:hover {
    padding: 0 5px 14px 5px;
    text-decoration: none;
    color: #003f49;
    background-color: rgba(105, 109, 110, 0.2549019608);
  }
  #logo_section {
    padding-top: 0 !important;
  }
  .logo img {
    float: left;
    height: 70px;
    width: auto;
    padding-bottom: 5px;
    z-index: 999999;
  }
  /* content styles */
  h1, h1.section_more_text, h1.section_chart_text {
    color: #003f49;
    font-size: 1.5em !important;
  }
  h2, h2.section_more_text, h2.section_chart_text {
    color: #ffffff;
    font-size: 1.5em !important;
  }
  h3, h3.section_more_text, h3.section_chart_text {
    color: #444444;
    font-size: 1.5em !important;
  }
  h4, h4.section_more_text, h4.section_chart_text {
    color: #003f49;
    font-size: 1.5em !important;
  }
  h5, h5.section_more_text, h5.section_chart_text {
    color: #ffffff;
    font-size: 1.5em !important;
  }
  h6, h6.section_more_text, h6.section_chart_text {
    color: #444444;
    font-size: 1.5em !important;
  }
  p.contentbox {
    font-size: 0.75rem !important;
    word-spacing: 0rem;
    line-height: 1.5 !important;
    padding-left: 5px;
    padding-right: 5px;
  }
  h2.contentbox, h3.contentbox, h4.contentbox {
    font-size: 1rem !important;
    padding: 2rem 5px 0 5px;
    text-align: center;
  }
  ul.contentbox {
    list-style-type: none;
    list-style-position: outside;
    padding-top: 1rem;
    margin-left: 0px;
    line-height: 1.2rem !important;
    word-spacing: 0.25rem;
    font-size: 0.75rem !important;
    -webkit-padding-start: 0px !important;
    padding-inline-start: 20px !important;
  }
  ul.bright.contentbox {
    list-style-type: none;
    list-style-position: outside;
    padding-top: 1rem;
    margin-left: 0px;
    line-height: 1.2rem !important;
    word-spacing: 0.25rem;
    font-size: 0.75rem !important;
    -webkit-padding-start: 0px !important;
    padding-inline-start: 20px !important;
    color: #ffffff;
  }
  ul.section_helpful_box, ul.section_more_box, ul.section_about_text {
    list-style-type: square;
    list-style-position: outside;
    padding-top: 0.8rem;
    line-height: 1.6em !important;
    display: inline-block;
    font-size: 0.75rem !important;
  }
  input, textarea {
    margin: 5px;
    font-family: inherit;
    font-size: 0.75rem !important;
    line-height: inherit;
    text-align: left !important;
  }
  #section_two_image {
    background: url(../images/content-box-image1-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_three_image {
    background: url(../images/content-box-image2-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_four_image {
    background: url(../images/content-box-image3-450pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
}
/* Smaller devices */
@media (min-width: 320px) and (max-width: 449px) {
  .container {
    width: 100%;
    max-width: 449px;
  }
  #menu div {
    clear: both !important;
    height: 40px;
    vertical-align: bottom;
    text-align: center !important;
  }
  #menu_section {
    text-align: center !important;
    width: 100%;
  }
  #navigation {
    clear: both;
    min-width: 60px;
    right: 0;
    vertical-align: bottom;
    text-align: center;
    align-items: baseline;
    height: 14px;
    position: absolute;
    bottom: 0px;
    display: inline-block;
    font-size: 9pt;
    white-space: nowrap;
    font-weight: 400;
    z-index: 99999;
    margin-bottom: 0;
    white-space: nowrap;
  }
  #navigation a {
    padding: 5px 10px;
    text-decoration: none;
    color: #585858;
    z-index: 99999;
  }
  #navigation::after, #navigation::before {
    box-sizing: content-box;
  }
  #navigation a:hover {
    padding: 5px 10px;
    text-decoration: none;
    color: #025a67;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99998;
  }
  #navigation a:active, .active {
    padding: 5px 10px;
    text-decoration: none;
    color: #025a67;
    z-index: 99999;
  }
  #navigation a:active:hover,
.active:hover {
    padding: 5px 10px;
    text-decoration: none;
    color: #003f49;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99998;
  }
  #logo_section {
    padding: 0px;
    width: 100%;
    text-align: center;
  }
  .logo img {
    float: none !important;
    clear: both;
    height: 75px;
    width: auto;
  }
  #hero-text-position {
    vertical-align: bottom;
    padding-bottom: 10px;
    padding-top: 250px;
    max-width: 95%;
  }
  .hero-title h1 {
    color: #00284b;
    font-size: 1rem !important;
    font-family: "Gill Sans";
    font-style: italic;
    padding: 15px 5px 15px 7px;
    margin: 10px;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4), -1px -1px 1px rgba(255, 255, 255, 0.4);
  }
  .hero-title div, .hero-title h1 {
    height: 15px;
  }
  p.entry-paragraph {
    padding: 35px 40px;
    font-size: 0.8rem;
  }
  p.contentbox, p.section_more_text {
    font-size: 0.7rem !important;
    word-spacing: 0;
    line-height: 0.9rem !important;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1rem;
  }
  p.section_where_text {
    font-size: 0.75rem !important;
    word-spacing: 0;
    line-height: 1rem !important;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1rem;
  }
  h1 {
    color: #025a67;
    margin: 0 5px;
    padding: 0;
    padding: 50px 10px 15px 25px;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-stretch: normal;
    font-size: 1.2rem !important;
  }
  .h1, h1 {
    font-size: 1.2rem !important;
  }
  h2.contentbox, h3.contentbox, h4.contentbox {
    font-size: 0.95rem !important;
    padding: 1rem 2.5px 0 2.5px;
    text-align: center;
  }
  #section_one, #section_icontools, #section_tools_intro, #section_two, #section_three, #section_4 {
    min-height: unset;
  }
  #section_two_image {
    background: url(../images/content-box-image1-300pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_three_image {
    background: url(../images/content-box-image2-300pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  #section_four_image {
    background: url(../images/content-box-image3-300pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 50%;
    overflow: hidden;
    height: 50vw;
    border: none;
  }
  ul.bright.contentbox, ul.bright.section_more_box, ul.bright.contentbox li, ul.bright.section_more_box li, ul.section_four_text, ul.section_four_text li {
    list-style-type: none;
    list-style-position: outside;
    padding-top: 0.25rem;
    margin-left: 0;
    line-height: 0.9rem !important;
    word-spacing: 0.25rem;
    font-size: 0.7rem !important;
    padding-left: 5px !important;
  }
  ul.section_helpful_box, ul.section_more_box, ul.section_helpful_box li, ul.section_more_box li {
    list-style-type: square !important;
    list-style-position: outside;
    padding-top: 0.25rem;
    line-height: 0.9em !important;
    display: inline-block;
    font-size: 0.7rem !important;
    padding-left: 5px !important;
  }
  ul.section_where_box, ul.section_where_box li {
    list-style-type: square !important;
    list-style-position: outside !important;
    padding-top: 0.25rem;
    line-height: 1em !important;
    display: inline-block;
    font-size: 0.7rem !important;
    padding-left: 5px !important;
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 5px !important;
            padding-inline-start: 5px !important;
  }
  ul.section_helpful_box, ul.section_helpful_box li {
    list-style-type: square !important;
    list-style-position: outside;
    padding-top: 0.25rem;
    line-height: 0.9em !important;
    display: inline-block;
    font-size: 0.7rem !important;
    padding-left: 5px !important;
  }
  .section_mindfulness_image {
    background: url(../images/mindfulness-teal-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
    height: auto;
  }
  .section_getsupport_image {
    background: url(../images/get-support-image-beige-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
    height: auto;
  }
  .section_tools_image {
    background: url(../images/fishing-grey-image-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
    height: auto;
  }
  .section_helpful_image {
    background: url(../images/anxiety-image-blue-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
    height: auto;
  }
  .section_more_image {
    background: url(../images/more-image-grey-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
    height: auto;
  }
  div.caption {
    color: #444444;
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    font-weight: 600;
    padding-top: 1rem;
  }
  div.reference {
    color: #444444;
    font-size: 0.7rem;
    line-height: 1.3;
    text-align: left;
    width: 100%;
    font-weight: 300;
    padding: 30px 10px 10px 10px;
    word-break: break-all;
  }
  .hcentered {
    padding: 0 5px;
  }
  footer {
    font-size: 0.65rem;
  }
}
/* Extra Small devices */
@media (min-width: 150px) and (max-width: 319px) {
  .container {
    width: 100%;
    max-width: 319px;
  }
  h1.entry-title {
    font-size: 1rem !important;
    margin: 0;
    padding: 25px 10px 15px 10px;
  }
  p.entry-paragraph {
    padding: 5px 20px 0 25px;
    font-size: 0.75rem !important;
    margin-left: 0;
    margin-right: 0;
    text-align: justify;
  }
  #menu div {
    float: none !important;
    height: 40px;
    vertical-align: bottom;
    text-align: center;
  }
  #menu_section {
    text-align: center;
    width: 100%;
  }
  #navigation {
    clear: both;
    float: none;
    min-width: 60px;
    width: auto;
    right: 0;
    vertical-align: bottom;
    text-align: center;
    align-items: baseline;
    height: 14px;
    position: absolute;
    bottom: 0px;
    display: inline-block;
    font-size: 6pt;
    padding: 10px;
    white-space: nowrap;
    font-weight: 400;
    z-index: 99999;
  }
  #navigation a {
    padding: 7px 5px;
    text-decoration: none;
    color: #585858;
    z-index: 99999;
  }
  #navigation::after,
#navigation::before {
    box-sizing: unset !important;
  }
  #navigation a:hover {
    padding: 7px 5px;
    text-decoration: none;
    color: #025a67;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99998;
  }
  #navigation a:active,
.active {
    padding: 7px 5px;
    text-decoration: none;
    color: #025a67;
    z-index: 99999;
  }
  #navigation a:active:hover,
.active:hover {
    padding: 7px 5px;
    text-decoration: none;
    color: #003f49;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 99998;
  }
  #logo_section {
    padding-top: 0 !important;
    width: 100%;
    text-align: center;
  }
  .logo {
    padding: 0;
    float: none;
  }
  .logo img {
    float: none;
    clear: both;
    height: 75px;
    width: auto;
  }
  #hero {
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image1 {
    background: url(../images/hero-image1-150pxh.jpg);
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image2 {
    background: url(../images/hero-image2-150pxh.jpg);
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image3 {
    background: url(../images/hero-image3-150pxh.jpg);
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image4 {
    background: url(../images/hero-image4-150pxh.jpg);
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  .hero_image5 {
    background: url(../images/hero-image5-150pxh.jpg);
    height: 150px;
    width: auto;
    background-position: bottom center;
    background-size: cover;
    overflow: hidden;
  }
  #hero-text-position {
    vertical-align: bottom;
    padding-bottom: 10px;
    padding-top: 70px;
    max-width: 95%;
  }
  .hero-title h1 {
    color: #00284b;
    font-size: 0.8rem !important;
    font-family: "Gill Sans";
    font-style: italic;
    padding: 15px 7px;
    margin: 10px;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4), -1px -1px 1px rgba(255, 255, 255, 0.4);
  }
  .hero-title div, .hero-title h1 {
    height: 15px;
  }
  /* content styles */
  h1 {
    color: #003f49;
    font-size: 1em !important;
  }
  h2 {
    color: #ffffff;
    font-size: 1em !important;
  }
  h3 {
    color: #444444;
    font-size: 1em !important;
  }
  h4 {
    color: #003f49;
    font-size: 1em !important;
  }
  h5 {
    color: #ffffff;
    font-size: 1em !important;
  }
  h6 {
    color: #444444;
    font-size: 1em !important;
  }
  p {
    font-size: 0.75rem !important;
    font-weight: 400;
    padding: 5px 20px;
    text-align: justify;
  }
  ul, menu, dir {
    display: block;
    list-style-type: square;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
  p.contentbox {
    font-size: 0.75rem;
    word-spacing: 0;
    line-height: 1.5;
    padding-left: 7px;
    padding-right: 7px;
  }
  h2.contentbox, h3.contentbox, h4.contentbox {
    font-size: 1rem !important;
    padding: 2rem 5px 0 5px;
    text-align: center;
  }
  ul.bright.contentbox {
    list-style-type: none;
    list-style-position: outside;
    padding-top: 1rem;
    margin-left: 0;
    line-height: 1.8em;
    word-spacing: 0.25rem;
    font-size: 0.75rem;
  }
  ul.bright.section_more_box {
    list-style-type: square;
    list-style-position: outside;
    padding-top: 3rem;
    line-height: 1.5em;
    display: inline-block;
    font-size: 0.75rem;
  }
  ul.section_where_text {
    list-style-type: square;
    list-style-position: outside;
    padding-top: 3rem;
    line-height: 1.5em;
    display: inline-block;
    font-size: 0.75rem;
  }
  .more_centered {
    padding: 25px 7.5% 25px 7.5% !important;
  }
  #iconboxes {
    text-align: center;
    vertical-align: baseline;
    padding-bottom: 50px;
    padding-left: 0;
  }
  .intro-box {
    height: 140px;
    width: 140px;
    display: inline-block;
    padding: 20px;
    margin: 20px;
    font-size: 1rem !important;
    margin-left: 15px !important;
  }
  .intro-box i {
    font-size: 5rem !important;
  }
  .intro-box i:hover {
    font-size: 5rem !important;
  }
  #section_one, #section_icontools, #section_tools_intro {
    padding: unset !important;
  }
  /* hide the sections two through to four on first page and replace with single responsive section for devices under 320px wide */
  #section_two {
    display: none;
  }
  #section_three {
    display: none;
  }
  #section_four {
    display: none;
  }
  /* below sections replaced sections two through to four on first page and replace for devices under 320px wide */
  #section_two_resp {
    display: block;
    color: #ffffff;
    width: 100%;
    padding-left: 0 !important;
    min-height: 200px;
  }
  .section_two_image_resp {
    background: url(../images/anxiety-image-blue-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
  }
  #section_two_text_resp {
    z-index: 3050;
    display: inline;
    padding: 2% 2.5%;
    align-content: space-around;
    text-align: center;
  }
  .section_two_overlay_resp {
    background: transparent;
    /* Note: currently only Safari supports backdrop-filter */
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    --webkit-backdrop-filter: blur(30px);
    background-color: rgb(95, 136, 171);
    /* (plus shape's fill blended on top as a separate layer with 100% opacity) */
  }
  #section_three_resp {
    display: block;
    width: 100%;
    padding-left: 0 !important;
    min-height: 200px;
  }
  .section_three_image_resp {
    background: url(../images/get-support-image-beige-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
  }
  #section_three_text_resp {
    z-index: 3050;
    display: inline;
  }
  #section_four_resp {
    display: block;
    color: #ffffff;
    width: 100%;
    padding-left: 0;
  }
  .section_four_image_resp {
    background: url(../images/mindfulness-teal-400pxh.jpg);
    background-size: cover;
    background-position: center;
    padding-left: 0 !important;
    min-height: 200px;
    z-index: 3000;
    opacity: 100%;
    overflow: hidden;
    height: 100vw;
    border: none;
  }
  div.caption {
    color: #444444;
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
    width: 90%;
    font-weight: 600;
    padding-top: 12px;
  }
  div.reference {
    color: #444444;
    font-size: 0.6rem;
    line-height: 1;
    text-align: left;
    width: 100%;
    font-weight: 300;
    padding: 15px 2px 15px 20px;
    max-width: 320px;
  }
  #chart_centered {
    padding: 20px 1% 20px 1%;
  }
  .section_chart img {
    z-index: 3050;
    display: block;
    width: 100%;
    max-width: 320px;
  }
  div.form-div.col-6, div.form-div.col {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 8px;
  }
  .contact-form {
    padding: 5px;
    margin: 0;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #707070;
    min-height: 400px;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    color: #444444;
    font-size: 0.65rem;
    line-height: 1em;
    width: 85%;
  }
  .contact-form label, legend {
    color: #444444;
    font-size: 0.76rem;
    line-height: 1em;
    padding: 10px 0;
  }
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 95%;
  }
  input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  #main {
    height: calc(100% - 35px);
  }
  footer {
    height: 35px;
    font-size: 0.55rem;
    font-weight: 300;
    padding: 15px 5px;
  }
}/*# sourceMappingURL=styles.css.map */