/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/* Accordian */
.accordion-container {
  margin: 0 auto;
  padding-bottom: 5rem;
}
.accordion-container .faq-title {
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.accordion-container a.accordion-toggle {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  font-weight: 700;
  position: relative;
  display: block;
  padding: 1.5em 45px 1.5em 1em;
  font-size: 1.5em;
  line-height: 1.25em;
  color: #004f51;
  text-decoration: none;
  background-color: rgba(0, 79, 81, 0);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.accordion-container a.accordion-toggle span {
  display: block;
  padding: 0.5em 0;
  margin: 0 auto;
  text-align: center;
  color: #3d3935;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.accordion-container a.accordion-toggle span.toggle-icon {
  font-weight: 700;
  color: #3d3935;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 1em;
  font-size: 1em;
}
.accordion-container a.accordion-toggle:hover {
  background-color: rgba(0, 79, 81, 0.05);
}
.accordion-container a.accordion-toggle:hover > span.toggle-icon {
  color: #004f51;
}
.accordion-container a.accordion-toggle.open {
  background-color: rgba(0, 79, 81, 0.05);
  padding-bottom: 0.5em;
}
.accordion-container a.accordion-toggle.open > span.toggle-icon {
  color: #004f51;
}
.accordion-container .accordion-content {
  margin: 0;
  padding: 0 1.5em;
  background-color: rgba(0, 79, 81, 0.05);
  border-bottom: 1px solid #3d3935;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding-bottom 0.5s ease;
  /*padding: 20px 20px 0 20px;
  overflow: auto;*/
}
.accordion-container .accordion-content p {
  margin-bottom: 1rem;
}
.accordion-container .accordion-content p:last-of-type {
  margin-bottom: 0;
}
.accordion-container .accordion-toggle.open + .accordion-content {
  padding-bottom: 2em;
}
.accordion-container .faq-sub-title {
  padding: 1.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(0, 54.1296296296, 55.5);
  border-bottom: 1px solid #3d3935;
}

.accordionsub-container {
  margin: 0 auto;
  background-color: rgb(55.5, 250.0740740741, 255);
  border-bottom: 1px solid #3d3935;
}
.accordionsub-container a.accordionsub-toggle {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
  position: relative;
  display: block;
  padding: 1em 45px 1em 1em;
  font-size: 1.125em;
  line-height: 1.25em;
  color: #3d3935;
  text-decoration: none;
  background-color: rgb(81, 250.7037037037, 255);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.accordionsub-container a.accordionsub-toggle span {
  display: block;
  padding: 0.5em 0;
  margin: 0 auto;
  text-align: center;
  color: #3d3935;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.accordionsub-container a.accordionsub-toggle span.toggle-icon {
  color: #004f51;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 1em;
  font-size: 1em;
}
.accordionsub-container a.accordionsub-toggle:hover {
  background-color: rgb(55.5, 250.0740740741, 255);
  border-color: #004f51;
}
.accordionsub-container a.accordionsub-toggle.open {
  border-color: #004f51;
  font-weight: 600;
  background: none;
}
.accordionsub-container .accordionsub-content {
  margin: 0;
  padding: 0 1em 1em 1em;
  margin-bottom: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  /*padding: 20px 20px 0 20px;
  overflow: auto;*/
}
.accordionsub-container .accordionsub-content p:last-of-type {
  margin: 0;
}

/*# sourceMappingURL=accordion.css.map */
