/**
 * This project's description goes here
 *
 * @author  AOC
 * @version v0.0.0
 */
/**
 * Variables to be used throughout the project
 */
/* Menu link hover underline */
/* Menu mixin */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screen readers: h5bp.com/v
 */
.visuallyhidden,
.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  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: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * Peakfifteen helper classes
 */
.clear {
  clear: both;
  width: 100%;
  height: 30px;
}

.nopadd {
  padding-left: 0;
  padding-right: 0;
}

.centered {
  float: none;
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.text-centered {
  text-align: center;
}

.boxed {
  padding: 35px 30px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
}
.boxed.half-padding {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .boxed {
    padding: 25px 20px;
  }
}

.outlined {
  border: 1px solid #F2F2F2;
}

.outlined-thick {
  border: 2px solid #F2F2F2;
}

.uppercase {
  text-transform: uppercase;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0;
}

.no-border {
  border: 0;
}

.v-centre {
  align-items: center;
  display: flex;
}

.no-underline {
  text-decoration: none;
}

.no-underline:hover {
  text-decoration: none;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.border-top,
.border-right,
.border-bottom,
.border-left {
  border-color: #F2F2F2 !important;
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25%;
  }

  .w-lg-50 {
    width: 50%;
  }

  .w-lg-75 {
    width: 75%;
  }

  .w-lg-100 {
    width: 100%;
  }
}
/* Moble helpers */
@media (max-width: 991px) {
  .hide-mob {
    display: none;
  }
}

/* Styles for PACKERY */
.hidden {
  visibility: hidden;
  width: 0px !important;
  height: 0px !important;
  margin: 0px !important;
  padding: 0px !important;
}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *  user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *  (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*
 * HTML5 Boilerplate
 *
 * 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,
button,
input,
select,
textarea {
  color: #26262A;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #00a7e1;
  text-shadow: none;
  color: #FFF;
}

::selection {
  background: #00a7e1;
  text-shadow: none;
  color: #FFF;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
  max-width: 100%;
}

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

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

body {
  background-color: #565A5C;
}

.main-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
}

.has-section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .has-section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .has-section-padding:first-of-type {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .has-section-padding {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .has-section-padding:first-of-type {
    padding-top: 90px;
  }
}

.has-section-padding-top {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .has-section-padding-top {
    padding-top: 90px;
  }
  .has-section-padding-top:first-of-type {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .has-section-padding-top {
    padding-top: 75px;
  }
  .has-section-padding-top:first-of-type {
    padding-top: 90px;
  }
}

.has-section-padding-bottom {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .has-section-padding-bottom {
    padding-bottom: 90px;
  }
}
@media (max-width: 768px) {
  .has-section-padding-bottom {
    padding-bottom: 75px;
  }
}

.has-half-section-padding {
  padding-top: 65px;
  padding-bottom: 65px;
}
@media (max-width: 991px) {
  .has-half-section-padding {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.has-half-section-padding-top {
  padding-top: 65px;
}
@media (max-width: 991px) {
  .has-half-section-padding-top {
    padding-top: 45px;
  }
}

.has-half-section-padding-bottom {
  padding-bottom: 65px;
}
@media (max-width: 991px) {
  .has-half-section-padding-bottom {
    padding-bottom: 45px;
  }
}

ul.default {
  padding: 0 0 0 25px;
  margin: 45px 0 0;
  list-style: disc;
}
ul.no-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.no-list-style li {
  margin-bottom: 5px;
}
ul.no-list-style li p {
  margin-bottom: 0;
}

.bg-contain {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-align-top {
  background-position-y: top;
}

.bg-align-bottom {
  background-position-y: bottom;
}

.bg-align-left {
  background-position-x: left;
}

.bg-align-right {
  background-position-x: right;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.f-height {
  height: 100%;
}

f-width {
  width: 100%;
}

.sticky {
  position: sticky;
  top: 130px;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.layout-title {
  opacity: 0.2;
  position: absolute;
}

/* Background colours (generates bg-***** for each colour) */
/* ======================================================= */
.bg-black {
  background-color: #26262A;
  color: #ffffff;
}
.bg-black.btn-blok:hover, .bg-black .btn-text:hover, .bg-black .btn-underline:hover {
  color: #ffffff;
  text-decoration: none;
}
.bg-black.btn-blok:hover.icon-right:after, .bg-black .btn-text:hover.icon-right:after, .bg-black .btn-underline:hover.icon-right:after {
  background-color: #ffffff;
}

.bg-off-black {
  background-color: #3C3C3B;
  color: #ffffff;
}
.bg-off-black.btn-blok:hover, .bg-off-black .btn-text:hover, .bg-off-black .btn-underline:hover {
  color: #ffffff;
  text-decoration: none;
}
.bg-off-black.btn-blok:hover.icon-right:after, .bg-off-black .btn-text:hover.icon-right:after, .bg-off-black .btn-underline:hover.icon-right:after {
  background-color: #ffffff;
}

.bg-grey {
  background-color: #565A5C;
  color: #ffffff;
}
.bg-grey.btn-blok:hover, .bg-grey .btn-text:hover, .bg-grey .btn-underline:hover {
  color: #ffffff;
  text-decoration: none;
}
.bg-grey.btn-blok:hover.icon-right:after, .bg-grey .btn-text:hover.icon-right:after, .bg-grey .btn-underline:hover.icon-right:after {
  background-color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
  color: #26262A;
}
.bg-white.btn-blok:hover, .bg-white .btn-text:hover, .bg-white .btn-underline:hover {
  text-decoration: none;
}
.bg-lgrey {
  background-color: #F2F2F2;
  color: #26262A;
}
.bg-lgrey.btn-blok:hover, .bg-lgrey .btn-text:hover, .bg-lgrey .btn-underline:hover {
  text-decoration: none;
}
.bg-mint {
  background-color: #1EF5BF;
  color: #26262A;
}
.bg-mint.btn-blok:hover, .bg-mint .btn-text:hover, .bg-mint .btn-underline:hover {
  text-decoration: none;
}
/* text colours (generates *****-text for each colour) */
/* ======================================================= */
.black-text {
  color: #26262A;
}
.black-text.btn-underline:hover {
  color: #26262A;
}
.black-text.btn-underline:after {
  background-color: #26262A;
}
.black-text.btn-underline.icon-right:before, .black-text.btn-underline.icon-plus:before {
  background-color: #26262A;
}
.black-text.btn-blok.icon-right:after, .black-text.btn-blok.icon-right-circled:after, .black-text.btn-blok.icon-left:after, .black-text.btn-text.icon-right:after, .black-text.btn-text.icon-right-circled:after, .black-text.btn-text.icon-left:after {
  background-color: #26262A;
}
.black-text.btn-blok.bg-transparent {
  border-color: #26262A;
}
.black-text.btn-circled-icon span {
  background-color: #26262A;
}

.off-black-text {
  color: #3C3C3B;
}
.off-black-text.btn-underline:hover {
  color: #3C3C3B;
}
.off-black-text.btn-underline:after {
  background-color: #3C3C3B;
}
.off-black-text.btn-underline.icon-right:before, .off-black-text.btn-underline.icon-plus:before {
  background-color: #3C3C3B;
}
.off-black-text.btn-blok.icon-right:after, .off-black-text.btn-blok.icon-right-circled:after, .off-black-text.btn-blok.icon-left:after, .off-black-text.btn-text.icon-right:after, .off-black-text.btn-text.icon-right-circled:after, .off-black-text.btn-text.icon-left:after {
  background-color: #3C3C3B;
}
.off-black-text.btn-blok.bg-transparent {
  border-color: #3C3C3B;
}
.off-black-text.btn-circled-icon span {
  background-color: #3C3C3B;
}

.grey-text {
  color: #565A5C;
}
.grey-text.btn-underline:hover {
  color: #565A5C;
}
.grey-text.btn-underline:after {
  background-color: #565A5C;
}
.grey-text.btn-underline.icon-right:before, .grey-text.btn-underline.icon-plus:before {
  background-color: #565A5C;
}
.grey-text.btn-blok.icon-right:after, .grey-text.btn-blok.icon-right-circled:after, .grey-text.btn-blok.icon-left:after, .grey-text.btn-text.icon-right:after, .grey-text.btn-text.icon-right-circled:after, .grey-text.btn-text.icon-left:after {
  background-color: #565A5C;
}
.grey-text.btn-blok.bg-transparent {
  border-color: #565A5C;
}
.grey-text.btn-circled-icon span {
  background-color: #565A5C;
}

.white-text {
  color: #ffffff;
}
.white-text.btn-underline:hover {
  color: #ffffff;
}
.white-text.btn-underline:after {
  background-color: #ffffff;
}
.white-text.btn-underline.icon-right:before, .white-text.btn-underline.icon-plus:before {
  background-color: #ffffff;
}
.white-text.btn-blok.icon-right:after, .white-text.btn-blok.icon-right-circled:after, .white-text.btn-blok.icon-left:after, .white-text.btn-text.icon-right:after, .white-text.btn-text.icon-right-circled:after, .white-text.btn-text.icon-left:after {
  background-color: #ffffff;
}
.white-text.btn-blok.bg-transparent {
  border-color: #ffffff;
}
.white-text.btn-circled-icon span {
  background-color: #ffffff;
}

.lgrey-text {
  color: #F2F2F2;
}
.lgrey-text.btn-underline:hover {
  color: #F2F2F2;
}
.lgrey-text.btn-underline:after {
  background-color: #F2F2F2;
}
.lgrey-text.btn-underline.icon-right:before, .lgrey-text.btn-underline.icon-plus:before {
  background-color: #F2F2F2;
}
.lgrey-text.btn-blok.icon-right:after, .lgrey-text.btn-blok.icon-right-circled:after, .lgrey-text.btn-blok.icon-left:after, .lgrey-text.btn-text.icon-right:after, .lgrey-text.btn-text.icon-right-circled:after, .lgrey-text.btn-text.icon-left:after {
  background-color: #F2F2F2;
}
.lgrey-text.btn-blok.bg-transparent {
  border-color: #F2F2F2;
}
.lgrey-text.btn-circled-icon span {
  background-color: #F2F2F2;
}

.mint-text {
  color: #1EF5BF;
}
.mint-text.btn-underline:hover {
  color: #1EF5BF;
}
.mint-text.btn-underline:after {
  background-color: #1EF5BF;
}
.mint-text.btn-underline.icon-right:before, .mint-text.btn-underline.icon-plus:before {
  background-color: #1EF5BF;
}
.mint-text.btn-blok.icon-right:after, .mint-text.btn-blok.icon-right-circled:after, .mint-text.btn-blok.icon-left:after, .mint-text.btn-text.icon-right:after, .mint-text.btn-text.icon-right-circled:after, .mint-text.btn-text.icon-left:after {
  background-color: #1EF5BF;
}
.mint-text.btn-blok.bg-transparent {
  border-color: #1EF5BF;
}
.mint-text.btn-circled-icon span {
  background-color: #1EF5BF;
}

/* Underline colours (generates *****-underline for each colour) */
/* ======================================================= */
.black-underline:after {
  background-color: #26262A;
}

.off-black-underline:after {
  background-color: #3C3C3B;
}

.grey-underline:after {
  background-color: #565A5C;
}

.white-underline:after {
  background-color: #ffffff;
}

.lgrey-underline:after {
  background-color: #F2F2F2;
}

.mint-underline:after {
  background-color: #1EF5BF;
}

/**
 * Typography is specified in here.
 */
body {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  line-height: 1.1em;
  color: #26262A;
  font-weight: 400;
  font-style: normal;
  background-color: white;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", sans-serif;
}
h1 strong, .h1 strong,
h2 strong, .h2 strong,
h3 strong, .h3 strong,
h4 strong, .h4 strong,
h5 strong, .h5 strong,
h6 strong, .h6 strong {
  font-weight: bold;
}
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

.underline + h1, .underline + h2, .underline + h3, .underline + h4, .underline + h5 {
  margin-top: 0;
}

h1 {
  font-size: 5.12em;
  line-height: 0.87em;
  margin-top: 13px;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 4.2em;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 3.6em;
    margin-bottom: 5px;
    margin-top: 5px;
  }
}

h2, .h2 {
  font-size: 3.125em;
  line-height: 1.1em;
  letter-spacing: -1px;
}
@media (max-width: 1200px) {
  h2, .h2 {
    font-size: 2.8em;
  }
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 2.5em;
    line-height: 1em;
  }
}

h3, .h3 {
  font-size: 2.375em;
  margin-bottom: 0.47em;
  line-height: 1.05em;
}
@media (max-width: 1200px) {
  h3, .h3 {
    font-size: 1.4em;
  }
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 1.25em;
    line-height: 1.25em;
  }
}

h4, .h4 {
  font-size: 1.31em;
}
@media (max-width: 991px) {
  h4, .h4 {
    font-size: 1.1em;
  }
}

h5, .h5 {
  font-size: 1.125em;
  font-weight: 500;
}

strong,
.font-weight-bold {
  font-weight: 700;
}

.med {
  font-weight: 500;
}

.light {
  font-family: itc-avant-garde-gothic-pro, Helvetica, Arial, sans-serif;
}

p {
  font-size: 1em;
  line-height: 1.4em;
  letter-spacing: -0.5px;
}
p.subtitle {
  font-size: 1.3em;
  line-height: 1.23em;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  p.subtitle {
    font-size: 1.125em;
  }
}
p.underline:after {
  content: "";
  width: 100px;
  height: 2px;
  margin: 25px 0;
  display: block;
}
p.lead {
  font-size: 1.125rem;
}
p.lead.medium {
  font-weight: 500;
}
p a.white-text:hover {
  color: #d2c845;
}

.text-centered p.underline:after {
  margin: 25px auto;
}

a {
  color: #1EF5BF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  a[href^="mailto:"] {
    line-break: anywhere;
  }
}

ol li, ul li {
  font-size: 1em;
  margin-bottom: 1rem;
}

table {
  font-size: 18px;
}
table tr td {
  padding: 10px;
}

.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
  margin-top: 1em;
}
.text-content h1:first-of-type, .text-content h2:first-of-type, .text-content h3:first-of-type, .text-content h4:first-of-type, .text-content h5:first-of-type, .text-content h6:first-of-type {
  margin-top: 0;
}

blockquote {
  font-size: 1.2em;
  padding: 0 10px;
}

.icon-facebook {
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mask-image: url(../img/icon-fb-white.svg);
  -webkit-mask-image: url(../img/icon-fb-white.svg);
}

.icon-instagram {
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mask-image: url(../img/icon-instagram-white.svg);
  -webkit-mask-image: url(../img/icon-instagram-white.svg);
}

.icon-linkedin {
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mask-image: url(../img/icon-linkedin-white.svg);
  -webkit-mask-image: url(../img/icon-linkedin-white.svg);
}

.icon-twitter {
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mask-image: url(../img/icon-twitter-white.svg);
  -webkit-mask-image: url(../img/icon-twitter-white.svg);
}

.icon:after {
  content: "";
  margin-left: 20px;
  height: 35px;
  width: 35px;
  background-color: black;
  border-radius: 50%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon.icon-position:after {
  background-position: center center;
  background-repeat: no-repeat;
}
.icon.play:after {
  background-image: url(../img/white-play-tri.svg);
  background-size: 13px;
}
.icon.white-down-arrow:after {
  background-image: url(../img/down-white-arrow.svg);
  background-size: 15px;
}
.icon.white-right-arrow:after {
  background-image: url(../img/white-right-arrow.svg);
  background-size: 14px;
}
.icon.white-left-arrow:after {
  background-image: url(../img/left-white-arrow.svg);
  background-size: 14px;
}

.mint-icon {
  height: 30px;
  width: 30px;
  background-color: #1EF5BF;
  border-radius: 50%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mint-icon:hover {
  background-color: #1ec99e;
}
.mint-icon.black-right-arrow {
  background-image: url(../img/black-right-arrow.svg);
  background-size: 14px;
  background-position: center center;
  background-repeat: no-repeat;
}

.btn {
  padding: 8px 7px 8px 33px;
  border: none;
  border-radius: 110px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .btn {
    font-size: 0.875em;
  }
}
.btn:hover {
  background-color: #1ec99e;
}
.btn:active:focus {
  background-color: #1EF5BF !important;
}

.mint-btn,
.btn-mint {
  background-color: #1EF5BF;
  color: black;
}
.mint-btn:hover,
.btn-mint:hover {
  background-color: #1ec99e;
}
.mint-btn:active:focus,
.btn-mint:active:focus {
  background-color: #1EF5BF !important;
}

a.medium-bt {
  width: 200px;
}
a.larger-bt {
  width: 310px;
}
@media (max-width: 576px) {
  a.larger-bt {
    width: 280px;
  }
}

.submissions-container {
  background-color: #565A5C;
  color: white;
}
.submissions-container .text-container {
  padding-left: 0px;
  padding-right: 0px;
}
.submissions-container .text-container h3 {
  font-weight: 700;
}
.submissions-container .album {
  margin-left: auto;
  margin-right: auto;
}
.submissions-container .album .card-container {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}
.submissions-container .album .card-container .card {
  height: 100%;
  border: black 5px solid;
}
.submissions-container .album .card-container .card a {
  font-size: 0.875em;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.submissions-container .album .card-container .card .img-card-container {
  border-bottom: black 5px solid;
}
.submissions-container .album .card-container .card .bottom-btn-container {
  display: flex;
  justify-content: center;
  background-color: black;
  padding: 16px;
}
.submissions-container .album .card-container .card .bottom-btn-container a {
  color: white;
}
.submissions-container .album .card-container .card .bottom-btn-container a img {
  margin-left: 8px;
}
.submissions-container .album .card-container .card .bottom-btn-container a:hover {
  color: #e1e0e0;
}
.submissions-container .album .card-container .card .bottom-btn-container span {
  height: 14px;
  width: 14px;
  margin-left: 8px;
  display: inline-block;
}
.submissions-container .album .card-container .card .bottom-btn-container span.arrow {
  background-image: url(../img/white-right-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.submissions-container .album .card-container .card .bottom-btn-container span.down-arrow {
  background-image: url(../img/down-white-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.submissions-container .album .card-container .card small {
  color: black;
  padding-top: 10px;
  font-weight: 500;
}
.submissions-container .album .card-container .card img.card-img-top {
  height: 22vw;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .submissions-container .album .card-container .card img.card-img-top {
    height: 25vw;
  }
}
@media (max-width: 991px) {
  .submissions-container .album .card-container .card img.card-img-top {
    height: 30vw;
  }
}
@media (max-width: 768px) {
  .submissions-container .album .card-container .card img.card-img-top {
    height: 40vw;
  }
}
@media (max-width: 576px) {
  .submissions-container .album .card-container .card img.card-img-top {
    height: 55vw;
  }
}
.submissions-container .album .card-container .card small {
  font-weight: 600;
}
.submissions-container .album .card-container .card img + div {
  display: flex;
  justify-content: center;
}
.submissions-container .album .card-container .card-body input + div {
  display: flex;
  justify-content: space-between;
}
.submissions-container .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.submissions-container .btn-container .btn.mint-btn {
  width: 280px;
}
@media (max-width: 576px) {
  .submissions-container .btn-container .btn.mint-btn {
    width: 255px;
  }
}

.rmp-rating-widget.rmp-rating-widget--has-rated .custom-range {
  pointer-events: none;
  opacity: 0.5;
}
.rmp-rating-widget.rmp-rating-widget--has-rated .submit b, .rmp-rating-widget.rmp-rating-widget--has-rated .submit span {
  display: none !important;
}
.rmp-rating-widget.rmp-rating-widget--has-rated .submit:after {
  content: "Thanks for voting!";
}
.rmp-rating-widget a.submit {
  opacity: 0.5;
  cursor: not-allowed;
}
.rmp-rating-widget a.submit.rmp-rating-widget__submit-btn--visible {
  opacity: 1;
  cursor: pointer;
}
.rmp-rating-widget .rmp-rating-widget__icons {
  display: none;
}

.team-container {
  background-color: #565A5C;
  color: white;
}
.team-container > div {
  margin-left: auto;
  margin-right: auto;
}
.team-container .text-container {
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
}
.team-container .text-container h3 {
  font-weight: 700;
  margin-bottom: 25px;
}
.team-container .text-container p {
  text-transform: uppercase;
  margin-bottom: 25px;
}
.team-container .card-deck > div {
  padding: 0px;
  margin-bottom: 25px;
}
.team-container .card-deck .card {
  height: 100%;
  border: black 5px solid;
  background-color: black;
}
.team-container .card-deck .card a {
  font-size: 0.875em;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.team-container .card-deck .card .img-card-container {
  border-bottom: black 5px solid;
}
.team-container .card-deck .card .bottom-btn-container {
  display: flex;
  justify-content: center;
  background-color: black;
  padding: 16px;
}
.team-container .card-deck .card .bottom-btn-container a {
  color: white;
}
.team-container .card-deck .card .bottom-btn-container a img {
  margin-left: 8px;
}
.team-container .card-deck .card .bottom-btn-container a:hover {
  color: #e1e0e0;
}
.team-container .card-deck .card .bottom-btn-container span {
  height: 14px;
  width: 14px;
  margin-left: 8px;
  display: inline-block;
}
.team-container .card-deck .card .bottom-btn-container span.arrow {
  background-image: url(../img/white-right-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.team-container .card-deck .card .bottom-btn-container span.down-arrow {
  background-image: url(../img/down-white-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.team-container .card-deck .card img.card-img-top {
  height: 325px;
  width: auto;
  object-fit: cover;
}
.team-container .card-deck .card .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-container .card-deck .card .card-body .card-text {
  margin: 0px;
  font-weight: 600;
}
.team-container .card-deck .card .card-body i {
  color: #999;
  font-size: 14px;
  font-style: normal;
}

.pagination-container {
  margin-bottom: 80px;
}
.pagination-container > div {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.pagination-container .page-numbers {
  margin-left: 5px;
  margin-right: 5px;
  background-color: black;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 576px) {
  .pagination-container .page-numbers {
    height: 35px;
    width: 35px;
  }
}
.pagination-container .page-numbers.current {
  background-color: #1EF5BF;
  color: black;
}
.pagination-container .page-numbers.next, .pagination-container .page-numbers.prev {
  margin-left: 20px;
  margin-right: 20px;
  text-indent: -9999px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 14px;
}
@media (max-width: 576px) {
  .pagination-container .page-numbers.next, .pagination-container .page-numbers.prev {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.pagination-container .page-numbers.next {
  background-image: url(../img/white-right-arrow.svg);
}
.pagination-container .page-numbers.prev {
  background-image: url(../img/left-white-arrow.svg);
}

.contact-container button {
  width: 200px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.datepicker-container {
  padding: 100px 0px 35px 0px;
}
.datepicker-container .row {
  background-color: #F2F2F2;
  display: flex;
  justify-content: space-between;
  margin-left: 0px;
  margin-right: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.datepicker-container .col {
  display: flex;
  align-items: center;
}
.datepicker-container p {
  margin-bottom: 0px;
}

.blocks-icon {
  position: absolute;
  right: 10px;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaaaaa;
}

.datepicker table tr td {
  width: 350px !important;
}
@media (max-width: 576px) {
  .datepicker table tr td {
    width: 300px !important;
  }
}

.gallery-container {
  padding: 0px;
}
.gallery-container .card-deck > div {
  margin-bottom: 25px;
  padding: 0px;
}
.gallery-container .card {
  height: 100%;
  border: black 5px solid;
}
.gallery-container .card a {
  font-size: 0.875em;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.gallery-container .card .img-card-container {
  border-bottom: black 5px solid;
}
.gallery-container .card .bottom-btn-container {
  display: flex;
  justify-content: center;
  background-color: black;
  padding: 16px;
}
.gallery-container .card .bottom-btn-container a {
  color: white;
}
.gallery-container .card .bottom-btn-container a img {
  margin-left: 8px;
}
.gallery-container .card .bottom-btn-container a:hover {
  color: #e1e0e0;
}
.gallery-container .card .bottom-btn-container span {
  height: 14px;
  width: 14px;
  margin-left: 8px;
  display: inline-block;
}
.gallery-container .card .bottom-btn-container span.arrow {
  background-image: url(../img/white-right-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.gallery-container .card .bottom-btn-container span.down-arrow {
  background-image: url(../img/down-white-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.gallery-container .card small {
  color: black;
  padding-top: 10px;
  font-weight: 500;
}
.gallery-container .card img.card-img-top {
  height: 22vw;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .gallery-container .card img.card-img-top {
    height: 25vw;
  }
}
@media (max-width: 991px) {
  .gallery-container .card img.card-img-top {
    height: 30vw;
  }
}
@media (max-width: 768px) {
  .gallery-container .card img.card-img-top {
    height: 40vw;
  }
}
@media (max-width: 576px) {
  .gallery-container .card img.card-img-top {
    height: 55vw;
  }
}
.gallery-container .card img + div {
  display: flex;
  justify-content: center;
}
.gallery-container .card small {
  font-weight: 600;
}
.gallery-container .card .card-body input + div {
  display: flex;
  justify-content: space-between;
}

.poem-container h5 {
  font-weight: 500;
  margin-bottom: 25px;
}
.poem-container p {
  margin-bottom: 5px;
}

.about-staff {
  padding: 0px;
}
.about-staff a {
  text-decoration: none;
}
.about-staff a:hover {
  color: #26262A;
}
.about-staff .box {
  background-color: #F2F2F2;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
.about-staff .box h3 {
  font-size: 2.375em;
}
.about-staff .box .content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 30px 50px 30px;
}
.about-staff .box .content p a.btn {
  display: inline-flex;
  background-color: inherit;
  padding: 0px;
  text-align: left;
}
.about-staff .box .content p a.btn:hover {
  color: #1EF5BF;
}
.about-staff .box .content p a.icon:after {
  display: none;
}
.about-staff .box .content blockquote {
  font-style: italic;
}
.about-staff .box .content .socials a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  margin-bottom: 8px;
}
.about-staff .box .content .socials a span {
  border-radius: 50%;
  background-color: black;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.about-staff .box .content .socials a span:hover {
  background-color: #1EF5BF;
}
.about-staff .box .content .socials a span:hover .svg-inline--fa {
  color: black;
}
.about-staff .box .content .socials a span .svg-inline--fa {
  color: white;
}
.about-staff .box .staff-image {
  width: 450px;
  height: auto;
}
@media (max-width: 991px) {
  .about-staff .box .staff-image {
    object-fit: cover;
    width: 580px;
    height: 500px;
  }
}
@media all and (max-width: 500px) {
  .about-staff .box .staff-image {
    height: 300px;
  }
}
.about-staff .btn-back {
  width: 250px;
  padding: 8px 33px 8px 7px;
}

.wpforms-form .wpforms-uploader {
  background-color: black !important;
  color: white;
}
.wpforms-form .wpforms-uploader .dz-message svg {
  fill: white;
}
.wpforms-form div.wpforms-field-checkbox ul li {
  background-color: black !important;
  color: white;
  padding: 20px !important;
}
.wpforms-form .wpforms-field label.wpforms-field-label {
  font-weight: 500;
  margin-bottom: 10px;
}
.wpforms-form .wpforms-field.wpforms-conditional-show {
  background-color: #E8FEF8;
  padding: 20px;
}
.wpforms-form .wpforms-field.wpforms-conditional-show .wpforms-field-description {
  font-size: 14px;
}
.wpforms-form .wpforms-field.wpforms-conditional-show .wpforms-field-label {
  font-size: 14px;
}
.wpforms-form .wpforms-field-textarea.wpforms-field textarea {
  border-radius: 25px;
  border: black 1px solid;
}
.wpforms-form .wpforms-field.wpforms-field-text input[type=text] {
  border-radius: 25px;
  border: black 1px solid;
  height: 45px;
  max-width: 100%;
}
.wpforms-form .wpforms-field.wpforms-field-email input[type=email] {
  height: 45px;
  border-radius: 25px;
  border: black 1px solid;
  max-width: 100%;
}
.wpforms-form .wpforms-field.wpforms-field-number input[type=number] {
  height: 45px;
  border-radius: 25px;
  border: black 1px solid;
  max-width: 100%;
}
.wpforms-form .wpforms-field-select.wpforms-field select {
  appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../img/black-circle-down-arrow.svg) right 5px center no-repeat !important;
  border-radius: 25px;
  border: black 1px solid;
  background-size: 35px 35px !important;
  height: 45px;
}
.wpforms-form ul {
  padding-left: 0px;
}
.wpforms-form ul li {
  margin: 0 -10px 0 -10px;
}
.wpforms-form .wpforms-submit-container button.wpforms-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  background-color: #1EF5BF !important;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 40px;
  width: 200px;
  padding: 7px 7px 7px 33px !important;
  border: none !important;
}
.wpforms-form .wpforms-field.mail-list {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .contact-container .wpforms-form .wpforms-field.wpforms-field-text {
    width: 165%;
    margin-right: 0px;
  }
}
@media all and (max-width: 600px) {
  .contact-container .wpforms-form .wpforms-field.wpforms-field-text {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .contact-container .wpforms-form .wpforms-field.wpforms-field-email {
    width: 165%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media all and (max-width: 600px) {
  .contact-container .wpforms-form .wpforms-field.wpforms-field-email {
    width: 100%;
  }
}

.how-soothing-container {
  display: flex;
  justify-content: center;
}
.how-soothing-container .how-soothing {
  margin: 0px;
  background-color: black;
  padding: 3px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875em;
}

.slider-container {
  margin-top: 5px;
}

.img-container {
  position: relative;
}
.img-container span.play-icon {
  background-image: url(../img/white-play-icon.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 15px;
  bottom: 10px;
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content span.light {
  color: white;
}
.modal-content .modal-body > div {
  padding: 56.25% 0 0 0;
  position: relative;
}
.modal-content .modal-body > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-range::-webkit-slider-thumb {
  background: white;
  border: black 1px solid;
  width: 30px;
  height: 30px;
  position: relative;
  bottom: 7px;
}

.custom-range::-webkit-slider-thumb:active {
  background-color: white;
}

input[type=range]::-webkit-slider-runnable-track {
  background: linear-gradient(to right, white, #22f4bf);
  border: 1px solid #22f4bf;
  border-radius: 0%;
  height: 6px;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #11f3ba;
  background-color: #1EF5BF;
}

.info-card {
  padding: 30px 30px 70px 30px;
  background-color: #F2F2F2;
  border: none;
}

.tb-padding {
  padding: 100px 0px 100px 0px;
}
@media (max-width: 768px) {
  .tb-padding {
    padding: 50px 0;
  }
}

.mint-text {
  color: #1EF5BF;
}

.video-container {
  padding-bottom: 60px;
}
.video-container .text-container {
  padding: 0px;
}
.video-container .text-container p {
  margin-bottom: 0px;
  text-transform: uppercase;
}
.video-container .card-deck {
  padding-bottom: 50px;
}
.video-container .card-deck .row {
  width: 110%;
  display: flex;
}
@media (max-width: 576px) {
  .video-container .card-deck .row {
    width: 107%;
  }
}
.video-container .card-deck .row .card-img-top {
  object-fit: cover;
  width: 100%;
}
@media all and (min-width: 500px) and (max-width: 575px) {
  .video-container .card-deck .row .card-img-top {
    height: 280px;
  }
}
@media all and (min-width: 576px) and (max-width: 768px) {
  .video-container .card-deck .row .card-img-top {
    height: 150px;
  }
}
.video-container .card-deck .card-container {
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
  margin-top: 25px;
}
.video-container .card-deck .card-container .card {
  background-color: #1EF5BF;
  height: 100%;
  border-radius: 0%;
  padding: 4px;
}
.video-container .card-deck .card-container .card-body p {
  font-weight: 600;
  margin: 0px;
}

.video-card {
  background-color: #1EF5BF;
  margin-top: 40px;
  padding: 4px;
  border-radius: 0%;
}
@media (max-width: 1200px) {
  .video-card {
    margin-top: 80px;
  }
}
@media all and (min-width: 576px) {
  .video-card {
    width: 400px;
  }
}
.video-card .card-text {
  font-weight: 600;
}
.video-card .card-text {
  margin: 0px;
}

.content-container {
  background-color: #F2F2F2;
}
.content-container h3 {
  font-weight: 700;
}
.content-container p + div {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.content-container a.btn {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.filter-container {
  padding-top: 100px;
  padding-bottom: 40px;
}
.filter-container h5 {
  text-transform: uppercase;
  font-weight: 700;
}
.filter-container a {
  text-decoration: none;
  font-weight: 700;
  border-radius: 0%;
  margin-bottom: 5px;
  border-size: 1px;
}
.filter-container .btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
}
.filter-container .btn.btn-outline-dark {
  border: black 2px solid;
}
.filter-container .btn.btn-outline-dark.active {
  background-color: black;
}
.filter-container .btn.btn-outline-dark:hover {
  background-color: black;
}

.logos-container > div {
  margin-left: auto;
  margin-right: auto;
}
.logos-container h3 {
  font-weight: 700;
  padding-bottom: 5px;
}
.logos-container .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-container .row .emblem {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.logos-container .row .emblem img {
  height: auto;
}

.intro-container {
  padding: 0px;
}
.intro-container .tb-padding > div {
  margin-left: auto;
  margin-right: auto;
  padding-right: 0px;
}
.intro-container .row > div {
  margin-bottom: 5px;
  padding-right: 30px;
}
.intro-container .card {
  margin-top: 0px;
}
.intro-container .card p.lead {
  margin-bottom: 10px;
}
.intro-container li {
  line-height: 1.4;
}

.participate > div {
  margin-left: auto;
  margin-right: auto;
}
.participate a.larger-bt {
  margin-top: 50px;
  margin-left: 20px;
}
.participate .card {
  margin-bottom: 50px;
}
.participate p.lead {
  margin-bottom: 10px;
}

.cards-container {
  padding: 0px;
}
.cards-container .card-container {
  padding: 0px;
  margin-bottom: 25px;
}

.post-card {
  height: 100%;
  border: black 5px solid;
}
.post-card a {
  font-size: 0.875em;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.post-card .img-card-container {
  border-bottom: black 5px solid;
}
.post-card .bottom-btn-container {
  display: flex;
  justify-content: center;
  background-color: black;
  padding: 16px;
}
.post-card .bottom-btn-container a {
  color: white;
}
.post-card .bottom-btn-container a img {
  margin-left: 8px;
}
.post-card .bottom-btn-container a:hover {
  color: #e1e0e0;
}
.post-card .bottom-btn-container span {
  height: 14px;
  width: 14px;
  margin-left: 8px;
  display: inline-block;
}
.post-card .bottom-btn-container span.arrow {
  background-image: url(../img/white-right-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-card .bottom-btn-container span.down-arrow {
  background-image: url(../img/down-white-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-card.engagement {
  border: #1EF5BF 5px solid;
}
.post-card.engagement .img-card-container {
  border-bottom: #1EF5BF 5px solid;
}
.post-card.engagement .bottom-btn-container {
  display: flex;
  justify-content: flex-end;
  background-color: #1EF5BF;
}
.post-card.engagement .bottom-btn-container a {
  color: black;
}
.post-card.engagement .bottom-btn-container span.down-arrow {
  filter: invert(1);
}
.post-card small {
  text-transform: uppercase;
  font-size: 0.75em;
}
.post-card .post-categories {
  display: inline;
  margin: 0;
  padding: 0;
}
.post-card .post-categories li {
  display: inline;
}
.post-card h6 {
  font-weight: 600;
  padding-top: 7px;
}
.post-card p {
  font-size: 0.75em;
}
.post-card img.card-img-top {
  width: 100%;
  height: 14vw;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .post-card img.card-img-top {
    height: 20vw;
  }
}
@media (max-width: 991px) {
  .post-card img.card-img-top {
    height: 25vw;
  }
}
@media (max-width: 768px) {
  .post-card img.card-img-top {
    height: 38vw;
  }
}
@media (max-width: 576px) {
  .post-card img.card-img-top {
    height: 50vw;
  }
}

header.single-header {
  background-color: black;
  padding: 0px 15px 70px 40px;
}

@media all and (max-width: 991px) {
  header.single-header {
    padding: 0px 15px 175px 40px;
  }
}
.single .text-contain {
  padding: 0px;
  padding-right: 55px;
}
@media (max-width: 1200px) {
  .single .text-contain {
    padding-right: 0px;
  }
}
.single .text-contain h1.title {
  font-size: 4.25em;
  margin-bottom: 50px;
  line-height: 1.1;
  text-transform: none;
}
@media (max-width: 991px) {
  .single .text-contain h1.title {
    font-size: 3.5em;
  }
}
@media (max-width: 576px) {
  .single .text-contain h1.title {
    font-size: 2.8em;
  }
}
.single .text-contain a {
  text-decoration: none;
}
.single .text-contain a:hover {
  color: #26262A;
}
.single .text-contain .iframe-container {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin-bottom: 20px;
}
.single .text-contain .iframe-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
@media (max-width: 1200px) {
  .single .card-container {
    padding: 0px;
  }
}
.single .card-container .mint-card {
  background-color: #1EF5BF;
  padding: 20px;
  border: none;
  border-radius: 0px;
  max-width: 430px;
}
@media (max-width: 1200px) {
  .single .card-container .mint-card {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .single .card-container .mint-card {
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.single .card-container .mint-card p {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
}
.single .card-container .mint-card p a,
.single .card-container .mint-card p .date {
  color: black;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
}
.single .card-container .mint-card p a:hover {
  color: white;
}
.single .card-container .mint-card .share-icons {
  display: flex;
  margin-bottom: 10px;
}
.single .card-container .mint-card .share-icons a {
  color: white;
}
.single .card-container .mint-card .share-icons a:hover {
  color: #1EF5BF;
}
.single .card-container .mint-card .share-icons span {
  border-radius: 50%;
  background-color: black;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.single .card-container .mint-card hr {
  border-top: 1px solid black;
  margin-bottom: 0px;
}
.single .card-container .mint-card .bottom-half-text p {
  margin-top: 18px;
}
.single .card-container .img-container {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 430px;
}
@media (max-width: 768px) {
  .single .card-container .img-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}
.single .card-container .grey-card {
  border: #F2F2F2 solid 5px;
  border-bottom: none;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 0px;
  max-width: 430px;
}
@media (max-width: 1200px) {
  .single .card-container .grey-card {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .single .card-container .grey-card {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
.single .card-container .grey-card .card-img-top {
  height: 100%;
}
.single .card-container .grey-card h6 {
  font-weight: 700;
  margin: 0px;
}
.single .card-container .grey-card .bottom-btn-container {
  background-color: #F2F2F2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px;
}
.single .card-container .grey-card .bottom-btn-container a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  font-weight: 700;
}
.single .card-container .grey-card .bottom-btn-container a:hover {
  color: #3d3d3d;
}
.single .card-container .grey-card .bottom-btn-container span.right-arrow {
  background-image: url(../img/black-right-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

.single .gallery {
  display: flex;
  flex-wrap: wrap;
}
.single .gallery figure {
  margin: 0.5em 7px;
}
.single .gallery figure.gallery-item {
  display: block;
  width: 30%;
}
@media all and (max-width: 499px) {
  .single .gallery figure.gallery-item {
    width: 44%;
  }
}
.single .gallery figure.gallery-item img {
  width: 100%;
  height: auto;
}
.single .gallery figure .gallery-icon {
  padding: 3px;
  border: lightgray 1px solid;
}

/**
 * All styles related to markup inside the header
 */
header {
  background-size: cover;
  background-position: center;
}
header .custom-toggler {
  margin-top: 25px;
}
header nav.navbar {
  padding-top: 30px;
}
header img.logo {
  width: 179px;
  margin-left: 20px;
}
@media (max-width: 991px) {
  header img.logo {
    margin-left: 0px;
  }
}
@media (max-width: 576px) {
  header img.logo {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
header ul li {
  margin-bottom: 0px;
}
header li.menu-item {
  padding-right: 18px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  header li.menu-item {
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  header li.menu-item {
    padding-left: none;
    margin-bottom: 1em;
    margin-top: 1em;
  }
}
header li.menu-item a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  padding-bottom: 5px;
}
@media (max-width: 1200px) {
  header li.menu-item a {
    font-size: 0.875em;
  }
}
@media (max-width: 991px) {
  header li.menu-item a {
    font-size: 1em;
  }
}
header.large-header {
  height: 97vh;
  width: 100%;
  overflow: hidden;
}
header.large-header .more-info-text {
  display: flex;
  align-items: flex-end;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  header.large-header .more-info-text {
    height: 8%;
  }
}
header.large-header .more-info-text a {
  font-size: 0.87em;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}
header.large-header .more-info-text a:hover {
  color: #e1e0e0;
}
header.large-header .more-info-text span {
  font-weight: 600;
}
header.large-header .more-info-text span.icon {
  margin-right: 5px;
}
header.short-header {
  height: 480px;
  overflow: hidden;
}
header.short-header h1 {
  font-size: 4.25em;
}
@media (max-width: 991px) {
  header.short-header h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 576px) {
  header.short-header h1 {
    font-size: 2.8em;
  }
}
header.short-header .container-hero {
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
  height: 65%;
}
@media all and (max-width: 992px) {
  header.short-header .container-hero {
    height: 100%;
  }
}
header.short-header .more-info-text {
  display: flex;
  align-items: flex-end;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  header.short-header .more-info-text {
    height: 8%;
  }
}
header.short-header .more-info-text a {
  font-size: 0.87em;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}
header.short-header .more-info-text a:hover {
  color: #e1e0e0;
}
header.short-header .more-info-text span {
  font-weight: 600;
}
header.short-header .more-info-text span.icon {
  margin-right: 5px;
}
header .container-hero {
  height: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0px;
}
header .container-hero > div {
  padding: 0px;
  height: 100%;
  display: flex;
  align-items: center;
}
header .container-hero h4 {
  margin-top: 5px;
  margin-bottom: 5px;
}
@media all and (max-width: 992px) {
  header .container-hero {
    height: 90%;
  }
}
header .container-hero section {
  color: white;
}
header .container-hero section h4 {
  font-weight: 500;
}
header .container-hero section h1 span.top-margin {
  display: inline-block;
  margin-top: 10px;
}
header .container-hero section p {
  margin-top: 20px;
  margin-bottom: 35px;
}
header .container-hero section .icon:after {
  margin-left: 20px;
}
@media (max-width: 576px) {
  header .container-hero section button.btn {
    font-size: 0.875em;
    padding-left: 25px;
  }
  header .container-hero section p {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
header .social-icons {
  display: flex;
  align-items: center;
}
header .social-icons a {
  color: inherit;
  text-decoration: none;
}
header .social-icons span {
  background-color: #1EF5BF;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  header .social-icons span {
    margin-right: 12px;
  }
}
@media (max-width: 991px) {
  header .social-icons span {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }
}
header .social-icons span:hover {
  background-color: #1ec99e;
}
@media all and (max-width: 991px) {
  header .social-icons {
    margin-top: 25px;
  }
}

.custom-toggler {
  float: right;
}
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(34, 244, 192)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.custom-toggler.navbar-toggler {
  border-color: #1EF5BF;
  display: none;
}

@media all and (max-width: 991px) {
  .custom-toggler:focus {
    outline: 0;
  }
  .custom-toggler.navbar-toggler {
    display: block;
    position: relative;
    z-index: 5;
  }
}
.navbar .navbar-nav a {
  color: white;
  position: relative;
}
.navbar .navbar-nav a:hover {
  color: whitesmoke;
}
.navbar .navbar-nav a:hover::after {
  width: 100%;
}
.navbar .navbar-nav a::after {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: white;
  color: transparent;
  width: 0%;
  content: ".";
  height: 3px;
  transition: all 0.5s;
}
.navbar .navbar-nav .current-menu-item > a,
.navbar .navbar-nav .current-page-ancestor > a,
.navbar .navbar-nav .current_page_parent > a {
  border-bottom: 3px solid #1EF5BF;
}

.mobile-logo {
  display: none;
}
@media all and (max-width: 991px) {
  .mobile-logo {
    display: block;
    position: absolute;
    top: 23px;
    left: 20px;
    z-index: 5;
  }
}

.offcanvas-header {
  display: none;
}
.offcanvas-header .btn-close {
  padding: 0px 18px 1px 18px;
  font-size: 26px;
  border-radius: 10%;
  border: 1px solid #1EF5BF;
  background-color: rgba(34, 34, 34, 0.9);
  position: relative;
  top: -23px;
}
.offcanvas-header .btn-close:hover {
  background: #1EF5BF;
}
@media (max-width: 576px) {
  .offcanvas-header .btn-close {
    background-color: black;
  }
}

.screen-overlay {
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.9);
  transition: opacity 0.2s linear, visibility 0.1s, width 1s ease-in;
}
.screen-overlay.show {
  transition: opacity 0.5s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}
@media (max-width: 576px) {
  .screen-overlay {
    background-color: black;
  }
}

@media all and (max-width: 991px) {
  .offcanvas-header {
    display: block;
  }

  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1200;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .mobile-offcanvas img.custom-logo {
    margin-top: 5px;
    margin-left: 4px;
    margin-bottom: 35px;
  }
}
@media all and (max-width: 991px) and (max-width: 991px) {
  .mobile-offcanvas img.custom-logo {
    margin-left: 4px;
    margin-top: -25px;
  }
}
@media all and (max-width: 991px) {
  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }
}
/**
 * All styles related to markup inside the main element
 */
/**
 * All styles related to markup inside the footer
 */
.footer {
  padding: 0px;
}
.footer > div {
  margin-left: auto;
  margin-right: auto;
}
.footer .row {
  padding-top: 25px;
  padding-bottom: 25px;
}
.footer .row .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.footer .row .emblem-container {
  margin-left: auto;
  margin-right: auto;
}
.footer .row p {
  margin: 0px 0px 15px 0px;
}
.footer .row img {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .footer {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

@media print {
  /* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request: h5bp.com/r
     ========================================================================== */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}

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