/* ----- SCSS STYLES ----- */
/* Fonts */
/* Colors */
/* Testing Border Quick Mixins */
/*@mixin rb   { border: none; }
@mixin gb   { border: none; }
@mixin bb   { border: none; }*/
/* Alpha Fade Mixins */
/*  @include border-radius(10px); */
/*  @include box-shadow(0px 0px 8px $color_dark); */
/* @include text-shadow(0, 3px, 3px, #333); */
/*  @include animate  */
/*  Bounce Animation */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-5px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-10px);
  }
  60% {
    -o-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Media Size Mixins */
/* Uses Bootstrap 4 breakpoints */
/*  @include max* || then use {} around content  */
/* Flex */
/* @include flexbox; */
/* center vertically and horizontally */
/* center vertically and horizontally */
/*  @include flex(1); */
/*  @include flex-order(1); */
/* @include flex-direction(row); */
/* Avoid Highlights */
/* Add CSS3 animations to elements below */
a, a:active, a:link, a:visited, a:hover, input {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*  Chrome Font Issue Reset  */
body {
  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #777777;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.4;
  background: #f6f6f6 url("../images/background.jpg") no-repeat;
  background-size: cover !important;
  text-align: center;
  height: vh !important;
}
@media (max-width: 576px) {
  html {
    font-size: 1em;
  }
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #ddd;
  text-shadow: none;
}

::selection {
  background: #ddd;
  text-shadow: none;
}

h1 {
  color: #444444;
  font-size: 1.7em;
}
h1.hero-title {
  font-size: 3.2em;
  line-height: 1.2;
}
h1.tagline {
  font-size: 1.1em;
  text-align: center;
  margin-top: 25px;
  color: rgba(119, 119, 119, 0.8);
}
h1.tagline span {
  color: rgba(119, 119, 119, 0.6);
  font-weight: 400;
}
h1 span {
  font-size: 0.8em;
  color: #7DC242;
  display: block;
}

h2 {
  color: gray_subtitle;
  color: #7DC242;
  font-weight: 400;
}
h2.welcome-title {
  font-size: 2.2em;
}

h3 {
  color: #777777;
}

a {
  color: #7DC242;
}
a:hover {
  color: #324922;
  cursor: pointer;
}

p {
  text-align: justify;
}

.main-wrapper {
  height: vh;
  min-height: vh;
}

.main {
  margin: auto;
  padding: 30px;
  text-align: center;
  max-width: 900px;
  height: vh;
}
.main.top-section {
  padding-bottom: 1px;
}
@media (max-width: 768px) {
  .main {
    padding: 30px 15px;
  }
}

.logo {
  max-width: 450px;
  width: 100%;
  display: block;
  margin: auto;
}
@media (max-width: 576px) {
  .logo {
    max-width: 280px;
  }
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px solid rgba(125, 194, 66, 0.5);
  margin: 1em 0;
  padding: 0;
}

.spacer {
  height: 15px;
}

.button, .btn {
  -webkit-appearance: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  padding: 20px 10px;
  margin: 0 auto;
  line-height: 1;
  border: none;
  background: #7DC242;
  display: block;
  color: #fff;
  text-decoration: none;
  max-width: 200px;
}
.button:hover, .btn:hover {
  cursor: pointer;
  /* background: $rc_green_dark; */
  color: #fff;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.btn-contact-topright {
  position: absolute;
  z-index: 9;
  top: 11px;
  right: 10px;
  font-size: 0.8em;
}
.btn-contact-topright .button {
  padding: 10px 15px;
}

.section {
  margin: 40px auto;
  padding: 40px;
  position: relative;
  /* &:after {
     content: '';
     display: block;
     background: url('../images/background.jpg') no-repeat;
     background-size: cover;
     width: 100%;
     height: 100%;
     position: absolute;
     top:0;
     left: 0;
     @include alpha50;
     z-index: 1;
   }
  */
}
@media (max-width: 576px) {
  .section {
    padding: 40px 20px;
  }
}
.section h1 {
  margin-top: 0;
}
.section.section-green {
  background: #7DC242;
  background: rgba(125, 194, 66, 0.9);
}
.section.section-green h1 {
  color: #ffffff;
}
.section .content-box-wrapper {
  max-width: 1200px;
  padding: 40px 40px 0 40px;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: rgb(255, 255, 255);
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 40px;
}
@media (max-width: 576px) {
  .section .content-box-wrapper {
    padding: 20px 20px 0 20px;
  }
}
.section .content-box-wrapper .content-set {
  flex: 1 1 45%;
  margin-bottom: 40px;
  min-width: 350px;
}
@media (max-width: 576px) {
  .section .content-box-wrapper .content-set {
    min-width: 100%;
  }
}
.section .content-box-wrapper .content-set .offering-icon svg {
  fill: rgba(125, 194, 66, 0.3);
  height: 80px;
  margin: auto;
  display: block;
}

.headshot {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 180px;
  height: auto;
  border: 5px solid rgba(125, 194, 66, 0.5);
  border: 7px solid rgba(153, 153, 153, 0.1);
  /* border:3px solid rgba($rc_green, 1); */
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  z-index: 999999999;
}

.btn-close-overlay {
  width: 30px;
  height: 30px;
  fill: #bbb;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-close-overlay:hover {
  cursor: pointer;
  fill: #999;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-media {
  margin-top: 40px;
}
.social-media a {
  width: 30px;
  height: 30px;
  fill: #7DC242;
  display: inline-block;
  margin: 0 5px;
}
.social-media a:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.resources-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 30px 30px 0 30px;
  background: rgba(125, 194, 66, 0.2);
  flex-flow: row wrap;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}
.resources-box h2 {
  text-align: center;
  margin: auto auto 25px auto;
}
.resources-box .btn-green {
  width: 100%;
  margin: auto auto 30px auto;
}
.resources-box .btn-green .button {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-box .btn-green svg {
  height: 15px;
  position: relative;
  margin-top: -4px;
  margin-left: 10px;
  fill: rgba(255, 255, 255, 0.6);
}

.copyright {
  font-size: 0.7em;
  margin-top: 60px;
  color: #ccc;
}

/* Hide Jotform branding */
/* #test {
    .formFooter, .f6, .branding21 {
    display: none!important;
    font-size:10em;
  }
}

 */
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}
