@charset "UTF-8";
/*
Theme Name: ICP TTA
Author: Jameel Evans
Description: Custom Wordpress theme was co-designed by ICF Creative Services and Jameel Evans and developed by Jameel Evans.
Version: 1.0
Text Domain: icptta.com
 */
/**
--------------------------------------------------------------
*! TABLE OF CONTENTS:
--------------------------------------------------------------
*  TODO: Import scss modules in the correct area as needed
*
* * | Abstracts |
*   Variables  --> All project variables
*   Mixins --> All project mixins
*   Functions --> All project functions
*
* * | Base |
*   Typography   --> All things typography in one place
*   Base --> Basic project definition
*   Animations --> All project animations
*   Utilities --> All utility helper classes
*
* * | Components |
*   Buttons
*   Resources
*   Index
*
* * | Layout |
*   Header
*   Navigation
*   Slick slider
*   Footer
*
* * | Pages |
*   Login
*   General
*   Front page
*   About Us
*   Trainings page
*   Consultants page
*   Partner page
*   Contact Us
*   404 page


--------------------------------------------------------------*/
/**
*
* * All variables for project can be found in this file
*
*/
:root {
  --color-blue-primary: #0071bc;
  --color-blue-primary-dark: #005995;
  --color-red-primary: #9e005d;
  --color-red-primary-dark: #770045;
  --color-lightblue-secondary: #009ed2;
  --color-lightblue-secondary-a: 0, 157, 226;
  --color-darkblue-secondary: #3b4393;
  --color-darkblue-secondary-a: 59, 67, 147;
  --color-purple-secondary: #6e257e;
  --color-purple-secondary-a: #6e257e;
  --color-lightpurple-secondary: #b43c8a;
  --color-lightpurple-secondary-a: 181, 60, 138;
  --color-white: #ffffff;
  --color-white-a: 255, 255, 255;
  --color-grey: #b2b2b2;
  --color-grey-light: #edf1f5;
  --color-charcoal: #403d39;
  --color-charcoal-a: 64, 61, 57;
  --color-black: #403d39;
  --color-black-a: 26, 26, 26;
  --color-twitter-blue: #00aced;
  --color-facebook-blue: #3b5998;
  --color-linkedin-blue: #0082ca;
  --gradient-primary: linear-gradient(
    45deg,
    var(--color-red-primary),
    var(--color-blue-primary)
  );
  --gradient-secondary: linear-gradient(
    45deg,
    var(--color-blue-primary),
    var(--color-red-primary)
  );
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --shadow-large-light: 0 1rem 3rem rgba(26, 26, 26, 0.1);
}

/**
*
* * All mixins for project can be found in this file (Except for typography mixins)
*
* * --------| Order |-------- *
*   TODO: Create media queries in the order below
*   1 Base & Typography
*   2 Layout & Grid  
*   3 Page & Layout
*   4 Components
*
* * --------| Media Query Manager: Desktop first approach |-------- * 
*   TODO: Add your own custom breakppoints, convert px to em for breapoints and use sample calculations below for help
*   ! ems are the best unit option versus rem for breakpoints --> rems DONT WORK as expected
*
* * Breakpoint argument choices ( px to em caclulations )
*   --> small 0 - 600px  ( 600px / 16 = 37.5em )
*   --> medium 600 - 800px  ( 800px / 16 = 50em )
*   --> large 900 - 1000px  ( 1000px / 16 = 62.5em )
*   --> largest 1100 - 1200px  ( 1200px / 16 = 75em )
*
*/
/**
*
* * Everything that controls typography can be found in this file all in one place
* TODO: Include custom downloaded font paths below --> Best for speed optimization
*
*/
@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  src: url("assets/fonts/Roboto-Thin.ttf") format("ttf");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  font-style: italic;
  src: url("assets/fonts/Roboto-ThinItalic.ttf") format("ttf");
  font-weight: 100;
}

@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  src: url("assets/fonts/Roboto-Light.ttf") format("ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  font-style: italic;
  src: url("assets/fonts/Roboto-LightItalic.ttf") format("ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  src: url("assets/fonts/Roboto-Bold.ttf") format("ttf");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  font-style: italic;
  src: url("assets/fonts/Roboto-BoldItalic.ttf") format("ttf");
  font-weight: 700;
}

@font-face {
  font-family: "Lusitana", serif;
  font-display: swap;
  src: url("assets/fonts/Lusitana-Regular.ttf") format("ttf");
  font-weight: 400;
}

@font-face {
  font-family: 'slick';
  src: url("./assets/fonts/slick.eot");
  src: url("./assets/fonts/slick.eot?#iefix") format("embedded-opentype"), url("./assets/fonts/slick.woff") format("woff"), url("./assets/fonts/slick.ttf") format("truetype"), url("./assets/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 62.5em) {
  html {
    font-size: 56%;
  }
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 300;
}

.h2__header {
  font-family: "Lusitana", serif;
  font-size: 5.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.h2__header--grey {
  color: var(--color-charcoal);
}

@media only screen and (max-width: 50em) {
  .h2__header--grey {
    text-align: center;
  }
}

.h2__header--white {
  color: var(--color-white);
}

.h2__header--blue {
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 300;
  color: var(--color-blue-primary);
  line-height: 1.1;
}

@media only screen and (max-width: 50em) {
  .h2__header--blue {
    font-size: 6rem;
  }
}

.h3__header {
  font-family: "Lusitana", serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

.h4__header {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

@media only screen and (max-width: 62.5em) {
  .h4__header {
    font-size: 3.2rem;
  }
}

.p__lead {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  color: var(--color-charcoal);
  font-size: 3rem !important;
  margin-bottom: 5rem;
  line-height: 1.3;
}

.p__lead a {
  color: var(--color-blue-primary);
}

@media only screen and (max-width: 62.5em) {
  .p__lead {
    font-size: 3.5rem !important;
  }
}

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

.p__lead .link {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.p__lead .link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.p__lead .link:hover:after {
  width: 100%;
  left: 0;
}

.p__subheader {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-charcoal);
  font-size: 2rem;
}

@media only screen and (max-width: 50em) {
  .p__subheader {
    font-size: 2.5rem;
  }
}

.p__subheader--white {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-white);
  font-size: 2rem;
}

@media only screen and (max-width: 50em) {
  .p__subheader--white {
    font-size: 2.5rem;
  }
}

.p__body {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
}

.p__body .link {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.p__body .link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.p__body .link:hover:after {
  width: 100%;
  left: 0;
}

@media only screen and (max-width: 50em) {
  .p__body {
    font-size: 2.3rem;
  }
}

strong {
  font-weight: 700;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */
.icon-title {
  font-family: "Lusitana", serif;
  font-size: 0.8rem;
}

.icon-body {
  font-size: 0.8rem;
}

.icon {
  display: inline-block;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--color-red-primary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-red-primary);
  color: var(--color-white);
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 7%, 0);
            transform: translate3d(0, 7%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 7%, 0);
            transform: translate3d(0, 7%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.fade-in-up {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.reveal-item {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
  -webkit-transform: translate3d(0, 7%, 0);
          transform: translate3d(0, 7%, 0);
}

.reveal-item--is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 3rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.mb-hg {
  margin-bottom: 8rem !important;
}

.mt-sm {
  margin-top: 2rem;
}

.mt-md {
  margin-top: 3rem;
}

.mt-lg {
  margin-top: 4rem;
}

.mt-hg {
  margin-top: 8rem;
}

.p-lg {
  margin: 10rem 0;
}

@media only screen and (max-width: 50em) {
  .p-lg {
    margin: 5rem 3rem;
  }
}

.pt-hg {
  margin-top: 10rem;
}

.pb-md {
  padding-bottom: 8rem !important;
}

@media only screen and (max-width: 50em) {
  .pb-md {
    padding-bottom: 5rem !important;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-weight: 400 !important;
  font-size: 2rem !important;
  margin: 0 0 15px 0 !important;
}

.wp-block-button__link, .wp-block-button__link:link, .wp-block-button__link:visited {
  color: var(--color-white);
  background-image: var(--gradient-secondary);
  border: none;
  border-radius: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  padding: 1rem 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.wp-block-button__link:hover {
  background-position: 50% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
}

.wp-block-button__link:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.wp-block-button__link:active, .wp-block-button__link:focus {
  outline: none;
  background-position: 100% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
}

.btn, .btn:link, .btn:visited {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
  color: var(--color-white);
  cursor: pointer;
  text-align: center;
  background-size: 450% 150%;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 50em) {
  .btn, .btn:link, .btn:visited {
    padding: 1.5rem 3.5rem;
    font-size: 2rem;
  }
}

.btn--blue {
  background-image: var(--gradient-secondary);
  border: none;
}

.btn--blue:hover {
  background-position: 50% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
}

.btn--blue:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn--blue:active, .btn--blue:focus {
  outline: none;
  background-position: 100% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
}

.btn--red {
  background-image: var(--gradient-primary);
  border: none;
}

.btn--red:hover {
  background-position: 50% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
}

.btn--red:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn--red:active, .btn--red:focus {
  outline: none;
  background-position: 100% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
}

.btn--white-outline {
  background-color: rgba(var(--color-white-a), 0);
  border: 2px solid var(--color-white);
}

.btn--white-outline:hover {
  background-color: rgba(var(--color-white-a), 0.9);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
  color: var(--color-blue-primary);
}

.btn--white-outline:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn--white-outline:active, .btn--white-outline:focus {
  outline: none;
  background-color: rgba(var(--color-white-a), 1);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 0.5rem 1rem rgba(var(--color-black-a), 0.2);
  color: var(--color-blue-primary);
}

.wpforms-submit {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  overflow: hidden !important;
  font-size: 1.5rem !important;
  font-weight: 100 !important;
  font-family: "Roboto", sans-serif !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  text-align: center !important;
  background-size: 450% 150% !important;
  border-radius: 2px !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
  background-image: var(--gradient-secondary) !important;
  border: none !important;
}

.wpforms-submit:hover {
  background-position: 50% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0 1rem 2rem rgba(var(--color-black-a), 0.2);
}

.wpforms-submit:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
          transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

@media only screen and (max-width: 50em) {
  .wpforms-submit {
    padding: 1.5rem 3.5rem;
    font-size: 2rem;
  }
}

.featured-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  margin: 0 0 5rem 0;
}

@media only screen and (max-width: 62.5em) {
  .featured-resources {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
  }
}

@media only screen and (max-width: 50em) {
  .featured-resources {
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-gap: 3rem;
  }
}

.featured-resources__resource {
  height: auto;
  padding: 1.5rem 3rem;
  position: relative;
  background-color: var(--color-grey-light);
  border-width: 10px 0 10px 10px;
  border-style: solid;
  -o-border-image: linear-gradient(to bottom, var(--color-blue-primary), var(--color-red-primary)) 1 100%;
     border-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-blue-primary)), to(var(--color-red-primary))) 1 100%;
     border-image: linear-gradient(to bottom, var(--color-blue-primary), var(--color-red-primary)) 1 100%;
}

.featured-resources__heading {
  font-family: "Lusitana", serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

.featured-resources__icon {
  width: 3.5rem;
  height: 3.5rem;
  fill: var(--color-charcoal);
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}

.featured-resources__source {
  color: var(--color-darkblue-secondary);
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
}

.featured-resources__source:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-darkblue-secondary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.featured-resources__source:hover:after {
  width: 100%;
  left: 0;
}

.featured-resources__excerpt {
  margin: 2rem 0 3rem 0;
}

.featured-resources__h2 {
  font-weight: 700;
  font-size: 3rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  margin: 0 0 5rem 0;
}

@media only screen and (max-width: 62.5em) {
  .resources {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
  }
}

@media only screen and (max-width: 50em) {
  .resources {
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-gap: 3rem;
  }
}

.resources__resource {
  height: auto;
  padding: 3rem;
  position: relative;
  background-color: var(--color-grey-light);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  -o-border-image: linear-gradient(to bottom, var(--color-blue-primary), var(--color-red-primary)) 1 100%;
     border-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-blue-primary)), to(var(--color-red-primary))) 1 100%;
     border-image: linear-gradient(to bottom, var(--color-blue-primary), var(--color-red-primary)) 1 100%;
}

.resources__heading {
  font-family: "Lusitana", serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

.resources__icon {
  width: 3.5rem;
  height: 3.5rem;
  fill: var(--color-charcoal);
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}

.resources__source {
  color: var(--color-darkblue-secondary);
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
}

.resources__source:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-darkblue-secondary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.resources__source:hover:after {
  width: 100%;
  left: 0;
}

.resources__excerpt {
  margin: 2rem 0 3rem 0;
}

.resource-page__content {
  font-size: 2rem;
  font-weight: 100;
}

.resource-page__content p,
.resource-page__content ul,
.resource-page__content ol,
.resource-page__content a {
  font-weight: 100;
  font-size: 2rem;
}

.resource-page__hr {
  margin: 5rem 0;
}

.resource-page__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.resource-page__source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-bottom: 2rem;
}

.index {
  padding: 0 0 4rem;
  background-color: var(--color-grey-light);
  margin-bottom: 5rem;
}

.index__heading {
  margin-bottom: 2rem;
  padding: 3rem 2rem;
  width: 100%;
  background: var(--gradient-secondary);
  text-align: center;
  color: var(--color-white);
}

.index__list {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 2.8rem;
     -moz-column-gap: 2.8rem;
          column-gap: 2.8rem;
  padding: 1.5rem 3.5rem 0;
}

@media only screen and (max-width: 62.5em) {
  .index__list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media only screen and (max-width: 50em) {
  .index__list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: none;
       -moz-column-gap: none;
            column-gap: none;
  }
}

.index__item::marker {
  font-size: 2rem;
}

.index__item:last-of-type {
  list-style: '*  ';
}

.index__item:not(:last-of-type) {
  margin-bottom: 1.8rem;
}

.index__link {
  font-family: futura-pt, sans-serif;
  font-size: 1.8rem;
  font-weight: 200;
  text-decoration: none;
  position: relative;
  color: var(--color-charcoal);
}

.index__link:hover {
  color: var(--color-blue-primary);
}

@media only screen and (max-width: 50em) {
  .index__link {
    font-size: 2.3rem;
  }
}

.index__link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.index__link:hover:after {
  width: 100%;
  left: 0;
}

.buddypress__two-column {
  grid-template-columns: 3fr 1fr;
}

.buddypress__three-column {
  grid-template-columns: 1fr 3fr 1fr;
}

@media only screen and (max-width: 75em) {
  .buddypress__three-column {
    grid-template-columns: auto;
  }
}

.buddypress__content {
  font-weight: 100;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin: 10rem auto;
  position: relative;
  display: grid;
  gap: 2rem;
}

.buddypress__content .bp-navs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.buddypress__content .bp-navs ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-charcoal);
}

.buddypress__content .bp-navs ul li a:hover {
  background-color: var(--color-grey-light) !important;
  border-bottom: 2px solid var(--color-blue-primary);
}

.buddypress__content .bp-navs .bp-personal-tab a:hover {
  background-color: var(--color-grey-light) !important;
  border-bottom: 2px solid var(--color-blue-primary);
}

.buddypress__content .bp-navs .selected a {
  background-color: var(--color-grey-light) !important;
  border-bottom: 2px solid var(--color-blue-primary) !important;
}

.buddypress__content .bp-navs li .count,
.buddypress__content .bp-navs li.current a .count,
.buddypress__content .bp-navs li.selected a .count,
.buddypress__content .bp-navs li.current a .count,
.buddypress__content .bp-navs li.selected a .count {
  background-color: var(--color-blue-primary);
  color: var(--color-white);
  border: none;
  height: 3rem;
  width: 3rem;
  display: inline;
  font-size: 12px;
  margin-left: 1rem;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}

.buddypress__content .bp-navs .user-subnav .subnav {
  color: var(--color-charcoal) !important;
}

.buddypress__content .bp-navs .user-subnav .subnav .bp-personal-sub-tab a:hover {
  background-color: var(--color-grey-light) !important;
  border-bottom: 2px solid var(--color-blue-primary);
}

.buddypress__content .bp-navs .user-subnav .subnav .selected a {
  background-color: var(--color-grey-light) !important;
  border-bottom: 2px solid var(--color-blue-primary) !important;
}

.buddypress__content #item-header-cover-image #item-header-content,
.buddypress__content body.single-item.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions {
  margin-top: 0;
  margin-left: 0;
  max-width: 100%;
}

.buddypress__content #item-header-cover-image #item-header-content .bb-bp-group-title,
.buddypress__content body.single-item.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions .bb-bp-group-title {
  font-size: 3rem;
  position: relative;
  color: var(--color-blue-primary);
  text-shadow: none;
  margin: 0 1rem 0 0;
}

.buddypress__content #item-header-cover-image #item-header-content .bb-more-link,
.buddypress__content body.single-item.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions .bb-more-link {
  color: var(--color-charcoal);
}

.buddypress__content #item-header-cover-image #item-header-content .group-type,
.buddypress__content body.single-item.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions .group-type {
  background-color: var(--color-blue-primary);
  color: var(--color-white);
  border-radius: 100px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .25px;
  padding: 6px 10px;
  line-height: 1;
  white-space: nowrap;
}

.buddypress__content .activity-update-form,
.buddypress__content .bp-nouveau-activity-form-placeholder- {
  border-radius: 5px;
}

.buddypress__content #whats-new-form {
  border: none;
}

.buddypress__content .single-headers {
  margin-bottom: 0;
}

.buddypress__content .buddypress-wrap ul.bp-list.groups-dir-list:not(.grid) .item-entry .list-wrap {
  border: none;
}

.buddypress__content .buddypress-wrap ul.bp-list.groups-dir-list .list-wrap .item .list-title a {
  color: var(--color-blue-primary);
}

.buddypress__content .user-nicename {
  color: var(--color-blue-primary) !important;
  text-shadow: none !important;
}

.buddypress__content span .bp-member-type .bb-current-member- {
  background-color: var(--color-blue-primary);
  color: var(--color-white);
  border-radius: 100px;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .25px;
  padding: 6px 10px;
  line-height: 1;
  white-space: nowrap;
}

.buddypress__content .buddypress-wrap:not(.bp-single-vert-nav) .main-navs > ul > li > a {
  padding: 0.7em calc(0.5em + 2px);
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-charcoal);
  position: relative;
}

.buddypress__content #item-header-avatar .member-status {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 0px;
  right: 50px;
}

.buddypress__content .avatar {
  border-radius: 50%;
  height: auto;
}

.buddypress__content .members .member-status {
  background-color: none;
  border: 1px solid #fff;
  border-radius: 100%;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 5px;
  right: 15px;
}

.buddypress__content .members .avatar {
  max-width: 15rem;
}

.buddypress__content .item-avatar a {
  display: inline-block;
  position: relative;
}

.buddypress__content #members-list.item-list:not(.grid) .list-wrap .list-wrap-inner .member-status {
  right: 20px;
  top: 5px;
}

.buddypress__content .online {
  background-color: green !important;
}

.buddypress__content .offline {
  background-color: #edbb34 !important;
}

.buddypress__content .last-activity {
  display: none;
  visibility: hidden;
}

.buddypress__content #members-list.item-list:not(.grid) .separator {
  margin-right: 1.5rem;
  display: inline;
  visibility: hidden;
}

.buddypress__content .item-list {
  display: grid;
  grid-template-rows: auto;
  gap: 1rem;
}

.buddypress__content .members .bp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 75em) {
  .buddypress__content .members .bp-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 50em) {
  .buddypress__content .members .bp-list {
    grid-template-columns: auto;
  }
}

.buddypress__content .bp-list > li {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 3rem 1.5rem;
  margin: 0;
}

.buddypress__content .buddypress-wrap .members-list li .member-status.online {
  position: absolute;
  width: 12px;
  height: 12px;
  right: 12px;
  top: 12px;
}

.buddypress__content .buddypress-wrap .grid.bp-list > li .item-avatar img.avatar {
  display: inline-block;
  max-width: 126px;
  width: 100%;
  image-rendering: optimize-contrast;
}

.buddypress__content .buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav {
  background: #fafafa;
  border: 1px solid #eee !important;
  border-radius: 5px;
}

.buddypress__content .buddypress-wrap .members-list:not(.grid) .member-button-wrap.footer-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.buddypress__content .footer-button-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  place-content: center;
}

.buddypress__content .buddypress-wrap .members-list li .footer-button-wrap .generic-button, .buddypress__content .buddypress-wrap .members-list li .member-button-wrap .generic-button, .buddypress__content .buddypress-wrap .members-list li .primary-action .generic-button {
  padding: 0;
}

.buddypress__content .member-buttons-wrap .flex {
  display: grid;
  place-items: center;
  gap: 0.5rem;
}

.buddypress__content #buddypress .bb_more_options .bb_more_options_action i,
.buddypress__content .bb_more_options .bb_more_options_action i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.buddypress__content #buddypress .bb_more_options,
.buddypress__content .bb_more_options {
  position: absolute;
  top: 10px;
}

.buddypress__content #buddypress .members-list > li .bb_more_options.member-dropdown {
  position: absolute;
  top: 10px;
}

.buddypress__content .buddypress-wrap .members-list:not(.grid) .list-wrap {
  padding: .5rem;
  border: none;
}

.buddypress__content #members-list.item-list:not(.grid) .list-wrap .list-wrap-inner {
  display: grid;
  grid-template-rows: auto;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.buddypress__content .list-wrap-inner .item {
  -webkit-transform: translateY(-19px);
          transform: translateY(-19px);
}

.buddypress__content .buddypress-wrap .members-list li
.list-wrap .followers-wrap, .buddypress__content .buddypress-wrap
.members-list li .list-wrap .member-type {
  margin-bottom: 0;
}

.buddypress__content .buddypress-wrap ul.bp-list.groups-dir-list li.item-entry .group-avatar-wrap img.avatar {
  border-radius: 50%;
}

.buddypress__content .followers-wrap {
  color: #767676;
  width: 100%;
}

.buddypress__content .bp-list li .item-meta, .buddypress__content .bp-list li .meta {
  margin: 0;
}

.buddypress__content .generic-button > *, .buddypress__content .buddypress-wrap .members-list li .member-button-wrap .generic-button > *, .buddypress__content .buddypress-wrap .members-list li .primary-action .generic-button > * {
  margin-bottom: 0;
}

@media screen and (min-width: 46.8em) {
  .buddypress__content .bp-list li .generic-button {
    margin: 0;
  }
}

.buddypress__content #buddypress #members-list:not(.grid) > .bb_more_options,
.buddypress__content .bb_more_options {
  position: absolute;
  top: 0;
  right: 0;
}

.buddypress__content #buddypress #members-list:has(.grid) > .bb_more_options,
.buddypress__content .bb_more_options {
  position: absolute;
  top: 10px;
}

.buddypress__content #buddypress .grid .bb_more_options,
.buddypress__content .bb_more_options {
  position: absolute;
  display: inline-block;
}

.buddypress__content #buddypress .grid .list-wrap-inner {
  padding: 3.5rem 1.5rem;
}

.buddypress__content .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.buddypress__content #buddypress .grid .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}

.buddypress__content .buddypress-wrap .grid.bp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 75em) {
  .buddypress__content .buddypress-wrap .grid.bp-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 50em) {
  .buddypress__content .buddypress-wrap .grid.bp-list {
    grid-template-columns: auto;
  }
}

.buddypress__content .members-group-list .item-entry-header {
  display: none;
  visibility: hidden;
}

.buddypress__content #members-list .bp-list li .item-meta, .buddypress__content #members-list .bp-list li .meta {
  margin: 0 !important;
}

.buddypress__content #members-list span.bp-member-type.bb-current-member- {
  background: var(--color-blue-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: .25px;
  text-align: center;
  display: inline-block;
  padding: .5rem 1.5rem;
  line-height: 1.3rem;
  border-radius: 2px;
}

.buddypress__content #members-list:not(.grid) .only-list-view .bp-member-type {
  display: none;
}

.buddypress__content #members-list:not(.grid) li .item {
  display: grid;
}

.buddypress__content #members-list:not(.grid) li .list-wrap .item {
  -webkit-transform: translateY(-3rem);
          transform: translateY(-3rem);
  place-content: center;
}

.buddypress__content #members-list .bp-list li .item .item-meta, .buddypress__content #members-list .bp-list li .item .list-title {
  float: none;
  text-align: center !important;
}

.buddypress__content #members-list .follow-container {
  font-size: 1.4rem;
}

.buddypress__content #members-list .item-meta .last-activity {
  display: none !important;
}

.buddypress__content .activity-list.bp-list {
  background: none;
  border: none;
  padding: 0;
}

.buddypress__content .activity-list.bp-list .activity-item {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #eee;
  background: #fafafa;
  max-width: 860px;
}

.buddypress__content .activity-list.bp-list .activity-item .item-avatar {
  width: 7rem !important;
  margin: 1rem !important;
}

.buddypress__content .activity-list.bp-list .activity-item .item-avatar img {
  width: 100%;
}

.buddypress__content .activity-list.bp-list .activity-item .mini .item-avatar {
  width: 7rem !important;
  margin: 1rem !important;
}

.buddypress__content .activity-list.bp-list .activity-item .mini .item-avatar img {
  width: 100%;
}

.buddypress__content .activity-list.bp-list .activity-item .activity-header {
  font-size: 1.5rem !important;
}

.buddypress__content .activity-list.bp-list .activity-item .activity-header a {
  font-size: 1.5rem !important;
  color: var(--color-blue-primary);
  font-weight: 300;
  text-decoration: none;
}

.buddypress__content .activity-list.bp-list .activity-item .activity-header a img {
  display: none;
}

.buddypress__content .activity-list.bp-list .activity-item .activity-content p {
  margin: 1.5rem 0;
}

.buddypress__content .activity-list.bp-list .activity-item .activity-inner {
  font-size: 1.5rem;
  padding: 5rem;
}

.buddypress__content .activity-list.bp-list .bb-activity-more-options-wrap {
  z-index: 15;
}

.buddypress__content .activity-list .activity-item .bp-generic-meta.action {
  background-color: #eaeaea;
}

.buddypress__content .buddypress-wrap .grid.bp-list > li {
  border-bottom: none;
  padding: 0 5px;
  margin-bottom: 0;
  max-width: 100%;
}

.buddypress__content .grid > li .list-wrap {
  background: #fafafa;
  place-content: center;
  border: none !important;
  padding-bottom: 15px;
  position: relative;
  overflow: visible;
  padding-top: 14px;
  height: 100%;
}

.buddypress__content .bp-list:after,
.buddypress__content .bp-list:before {
  display: none;
}

.buddypress__content .member-name {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0 !important;
}

@media only screen and (max-width: 50em) {
  .buddypress__content .member-name {
    font-size: 3rem;
  }
}

.buddypress__content .member-name a {
  text-decoration: none;
  font-size: 1.8rem;
  color: var(--color-charcoal);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.buddypress__content .member-name a:hover {
  color: var(--color-blue-primary);
}

.buddypress__content #send-private-message {
  margin-right: .5rem;
}

.buddypress__content #member-invites-table .field-actions-add i {
  background-color: #000;
  display: inline-block;
  color: #fff;
  border-radius: 100%;
  padding: 1px 4px 3px 1px;
  height: 15px;
  width: 15px;
  line-height: normal;
}

.buddypress__content [class*=" bb-icon-"]:before, .buddypress__content [class^=bb-icon-]:before {
  margin: 0;
}

.buddypress__content .bp-toggle-action-button,
.buddypress__content .add,
.buddypress__content .membership-requested,
.buddypress__content .join-group,
.buddypress__content .request-membership {
  background: var(--color-red-primary) !important;
  border: none !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  outline: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  width: auto !important;
  font-size: 1.3rem !important;
  font-weight: 100 !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 2px !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
  white-space: nowrap;
}

.buddypress__content .bp-toggle-action-button:hover,
.buddypress__content .add:hover,
.buddypress__content .membership-requested:hover,
.buddypress__content .join-group:hover,
.buddypress__content .request-membership:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: var(--color-red-primary-dark) !important;
}

.buddypress__content .bp-toggle-action-button:hover::after,
.buddypress__content .add:hover::after,
.buddypress__content .membership-requested:hover::after,
.buddypress__content .join-group:hover::after,
.buddypress__content .request-membership:hover::after {
  opacity: 0;
}

.buddypress__content .bp-toggle-action-button-hover {
  background: var(--color-red-primary-dark) !important;
  border: none !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  outline: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  width: auto !important;
  font-size: 1.3rem !important;
  font-weight: 100 !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 2px !important;
  padding: 1rem 2rem !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
  white-space: nowrap;
}

.buddypress__content .follow-button a {
  background: var(--color-blue-primary) !important;
  border: none !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  outline: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  width: auto !important;
  font-size: 1.3rem !important;
  font-weight: 100 !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 2px !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
  white-space: nowrap;
}

.buddypress__content .follow-button a:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: var(--color-blue-primary-dark) !important;
}

.buddypress__content .follow-button a:hover::after {
  opacity: 0;
}

.buddypress__content .send-message {
  background: var(--color-blue-primary) !important;
  border: none !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  outline: 0 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  width: auto !important;
  font-size: 1.3rem !important;
  font-weight: 100 !important;
  font-family: "Roboto", sans-serif !important;
  border-radius: 2px !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
  white-space: nowrap;
}

.buddypress__content .send-message:hover {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: var(--color-blue-primary-dark) !important;
}

.buddypress__content .send-message:hover::after {
  opacity: 0;
}

.buddypress__content .buddypress .buddypress-wrap .activity-state a,
.buddypress__content .buddypress .buddypress-wrap .comment-reply-link,
.buddypress__content .buddypress .buddypress-wrap .generic-button a,
.buddypress__content .buddypress .buddypress-wrap a.bp-title-button,
.buddypress__content .buddypress .buddypress-wrap a.button,
.buddypress__content .buddypress .buddypress-wrap button,
.buddypress__content .buddypress .buddypress-wrap input[type=button],
.buddypress__content .buddypress .buddypress-wrap input[type=reset],
.buddypress__content .buddypress .buddypress-wrap input[type=submit],
.buddypress__content .buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a {
  border-color: none;
  border-style: none;
  background: transparent;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

.buddypress__content .item-entry .even {
  margin: 0;
}

.buddypress__content .post-edit-link {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: .5rem;
  display: inline-block;
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  text-decoration: none;
}

.buddypress__left-sidebar {
  max-width: 100%;
}

.buddypress__left-sidebar ul {
  list-style: none;
}

.buddypress__left-sidebar .current-menu-item a {
  color: var(--color-blue-primary) !important;
  font-weight: 500 !important;
}

.buddypress__left-sidebar a:link, .buddypress__left-sidebar a:visited, .buddypress__left-sidebar a:active {
  color: var(--color-charcoal);
  font-size: 1.6rem;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 50em) {
  .buddypress__left-sidebar a:link, .buddypress__left-sidebar a:visited, .buddypress__left-sidebar a:active {
    font-size: 2.5rem;
  }
}

.buddypress__left-sidebar a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.buddypress__left-sidebar a:hover:after {
  width: 100%;
  left: 0;
}

.buddypress__left-sidebar a:hover {
  color: var(--color-blue-primary);
}

.buddypress__main {
  font-size: 2rem;
  padding-bottom: 2rem;
  max-width: 100%;
}

.buddypress .bb-user-content-wrap span.bp-member-type.bb-current-member- {
  margin: 1.5rem 0 0 1.5rem;
}

.buddypress #item-header-cover-image #item-header-content .group-item-actions {
  display: none;
}

.buddypress .item-header-cover-image .followers-wrap {
  width: auto;
}

.buddypress .activity-update-form #user-status-huddle img, .buddypress .bp-nouveau-activity-form-placeholder- #user-status-huddle img {
  display: none;
}

.buddypress .bbp-forums {
  font-size: 1.8rem !important;
}

.buddypress .bbp-forums li {
  list-style: none;
}

.buddypress .bbp-forums li a {
  color: var(--color-blue-primary);
  text-decoration: none;
}

.buddypress__sidebar {
  max-width: 100%;
}

.buddypress__sidebar ul {
  list-style: none;
}

.buddypress__sidebar .widget, .buddypress__left-sidebar .widget {
  background: #fafafa;
  border: 1px solid #eee !important;
  border-radius: 5px;
  padding: 2rem;
}

@media only screen and (max-width: 75em) {
  .buddypress__sidebar .widget, .buddypress__left-sidebar .widget {
    text-align: center !important;
  }
}

.buddypress__sidebar .widget:not(:last-child), .buddypress__left-sidebar .widget:not(:last-child) {
  margin-bottom: 2rem;
}

.buddypress__sidebar .widget .profile_completion_wrap, .buddypress__left-sidebar .widget .profile_completion_wrap {
  font-size: 1.8rem;
}

.buddypress__sidebar .widget .profile_completion_wrap a, .buddypress__left-sidebar .widget .profile_completion_wrap a {
  text-decoration: none;
  color: var(--color-charcoal);
}

.buddypress__sidebar .widget .bp-activity-info, .buddypress__left-sidebar .widget .bp-activity-info {
  font-size: 1.5rem;
}

.buddypress__sidebar .widget .bp-activity-info a, .buddypress__left-sidebar .widget .bp-activity-info a {
  color: var(--color-blue-primary);
  text-decoration: none;
  font-weight: 500;
}

.buddypress__sidebar .widget .bp-activity-info a img, .buddypress__left-sidebar .widget .bp-activity-info a img {
  display: none;
}

.buddypress__sidebar .widget .item-options, .buddypress__left-sidebar .widget .item-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 18px;
}

@media only screen and (max-width: 75em) {
  .buddypress__sidebar .widget .item-options, .buddypress__left-sidebar .widget .item-options {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.buddypress__sidebar .widget .item-options a, .buddypress__left-sidebar .widget .item-options a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding-bottom: 5px;
  line-height: 16.5px;
  letter-spacing: 0.25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.buddypress__sidebar .widget .item-options a:not(.selected), .buddypress__left-sidebar .widget .item-options a:not(.selected) {
  color: var(--color-charcoal);
}

.buddypress__sidebar .widget .item-options a:hover, .buddypress__left-sidebar .widget .item-options a:hover {
  color: var(--color-blue-primary);
}

.buddypress__sidebar .widget .item-options a:not(:last-child), .buddypress__left-sidebar .widget .item-options a:not(:last-child) {
  margin-right: 1rem;
}

.buddypress__sidebar .widget .item-options a:not(:first-child), .buddypress__left-sidebar .widget .item-options a:not(:first-child) {
  margin-left: 1rem;
}

.buddypress__sidebar .widget .selected, .buddypress__left-sidebar .widget .selected {
  color: var(--color-blue-primary);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.buddypress__sidebar .widget .bp-separator, .buddypress__left-sidebar .widget .bp-separator {
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}

.buddypress__sidebar .widget ul.item-list, .buddypress__left-sidebar .widget ul.item-list {
  display: grid !important;
  grid-template-columns: auto;
  gap: 1rem;
}

.buddypress__sidebar .widget ul.item-list li, .buddypress__left-sidebar .widget ul.item-list li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border: none;
  gap: 1rem;
}

@media only screen and (max-width: 75em) {
  .buddypress__sidebar .widget ul.item-list li, .buddypress__left-sidebar .widget ul.item-list li {
    grid-template-columns: auto;
    grid-template-rows: auto;
    place-content: center;
  }
}

.buddypress__sidebar .widget .bp-group-home-link, .buddypress__left-sidebar .widget .bp-group-home-link {
  color: var(--bb-headings-color);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 21px;
  text-decoration: none;
}

.buddypress__sidebar .widget .item-title a, .buddypress__left-sidebar .widget .item-title a {
  color: var(--bb-headings-color);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 21px;
  text-decoration: none;
}

.buddypress__sidebar .widget ul.item-list li .item-avatar, .buddypress__left-sidebar .widget ul.item-list li .item-avatar {
  padding: 0;
}

.buddypress__sidebar .widget ul.item-list li .item, .buddypress__left-sidebar .widget ul.item-list li .item {
  padding: 0;
}

.buddypress__sidebar .widget .avatar, .buddypress__left-sidebar .widget .avatar {
  width: 3.5rem !important;
}

@media only screen and (max-width: 75em) {
  .buddypress__sidebar .widget .avatar, .buddypress__left-sidebar .widget .avatar {
    width: 10rem !important;
  }
}

.buddypress__sidebar .widget .member-status, .buddypress__left-sidebar .widget .member-status {
  background-color: none;
  border: 1px solid #fff;
  border-radius: 100%;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}

.buddypress__sidebar .widget .count-more, .buddypress__left-sidebar .widget .count-more {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: .5rem;
  display: inline-block;
  background-color: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
  text-decoration: none;
}

.buddypress__h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: var(--color-charcoal);
  position: relative;
}

.buddypress__h3 a {
  font-family: inherit;
  font-size: inherit;
}

.buddypress__hr {
  margin: 5rem 0;
}

.buddypress__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.buddypress__source {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-bottom: 2rem;
}

.header {
  width: 100%;
}

.header__top {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  padding: 1rem;
  width: 100%;
  color: var(--color-white);
  background-image: var(--gradient-primary);
  font-weight: 100;
}

.header__top-details {
  text-align: right;
  margin-right: 5vw;
}

.header__top-details a {
  color: var(--color-white);
  font-weight: 400;
}

@media only screen and (max-width: 50em) {
  .header__top-details {
    text-align: center;
    margin-right: 0;
  }
}

.header__top-details .phone__icon {
  fill: var(--color-white);
  margin: 0 0.5rem;
  height: 1.2rem;
  width: 1.2rem;
}

.header__menu {
  width: 100%;
  padding: 1.2rem 5vw;
  display: grid;
  position: relative;
  grid-template-rows: repeat(2, auto);
}

@media only screen and (max-width: 62.5em) {
  .header__menu {
    padding: 1.2rem;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 15rem;
  height: auto;
  pointer-events: none;
}

@media only screen and (max-width: 50em) {
  .header__logo {
    width: 20rem;
    margin-left: 4vw;
  }
}

.header__title {
  position: absolute;
  text-indent: -9999px;
}

.header__main {
  width: 100%;
  background-image: var(--gradient-primary);
  position: relative;
}

@media only screen and (max-width: 50em) {
  .header__main {
    padding: 2rem 1rem;
  }
}

.header__main .share {
  display: grid;
  grid-template-columns: -webkit-min-content;
  grid-template-columns: min-content;
  grid-template-rows: repeat(4, -webkit-min-content);
  grid-template-rows: repeat(4, min-content);
  grid-row-gap: 1.5rem;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 999;
}

@media only screen and (max-width: 50em) {
  .header__main .share {
    grid-template-columns: repeat(4, -webkit-min-content);
    grid-template-columns: repeat(4, min-content);
    grid-template-rows: none;
    grid-column-gap: 1.5rem;
    position: unset;
    margin: 3rem 0 5rem 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: none;
            transform: none;
  }
}

.header__main .share__text {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 0.8rem;
  left: -7rem;
  padding: 2px;
  opacity: 0;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
  transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

@media only screen and (max-width: 37.5em) {
  .header__main .share__text {
    display: none;
  }
}

.header__main .share:hover .share__text {
  left: -3.3rem;
  opacity: 0.85;
}

.header__main .share__link {
  display: grid;
  place-content: center;
}

.header__main .share__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-white);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0, 1.87, 0.83, 0.67);
  transition: -webkit-transform 0.5s cubic-bezier(0, 1.87, 0.83, 0.67);
  transition: transform 0.5s cubic-bezier(0, 1.87, 0.83, 0.67);
  transition: transform 0.5s cubic-bezier(0, 1.87, 0.83, 0.67), -webkit-transform 0.5s cubic-bezier(0, 1.87, 0.83, 0.67);
}

@media only screen and (max-width: 50em) {
  .header__main .share__icon {
    height: 4rem;
    width: 4rem;
  }
}

.header__main .share__icon:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.general .header__general {
  text-align: center;
  color: var(--color-white);
  padding: 10rem 5rem;
  line-height: 1.1;
}

@media only screen and (max-width: 50em) {
  .general .header__general {
    padding: 5rem 0;
  }
}

.general .header__heading {
  font-size: 7rem;
}

.mobile-nav {
  display: none;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 50em) {
  .mobile-nav {
    display: block;
  }
}

.mobile-nav__checkbox {
  display: none;
}

.mobile-nav__button {
  background-color: var(--color-white);
  height: 7rem;
  width: 7rem;
  top: 2rem;
  position: absolute;
  right: 4vw;
  border-radius: 3px;
  z-index: 2000;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mobile-nav__button--is-scrolled {
  -webkit-box-shadow: var(--shadow-large-light);
          box-shadow: var(--shadow-large-light);
  position: fixed !important;
  top: 3rem !important;
}

.mobile-nav__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: absolute;
  top: 2.5rem;
  right: 4.5vw;
  background-image: var(--gradient-primary);
  z-index: 1000;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.mobile-nav__background--is-scrolled {
  -webkit-box-shadow: var(--shadow-large-light);
          box-shadow: var(--shadow-large-light);
  position: fixed !important;
  top: 3.5rem !important;
}

.mobile-nav__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1500;
  -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  width: 0;
}

.mobile-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}

.mobile-nav__item {
  margin: 1rem;
}

.mobile-nav__item:last-of-type {
  margin-top: 3rem;
}

.mobile-nav__link:link, .mobile-nav__link:visited {
  display: inline-block;
  font-size: 4rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent, transparent 50%, var(--color-white) 50%);
  background-size: 230%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.mobile-nav__link:link span, .mobile-nav__link:visited span {
  margin-right: 1.5rem;
  display: inline-block;
}

.mobile-nav__link:hover, .mobile-nav__link:active {
  background-position: 100%;
  color: var(--color-blue-primary);
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

.mobile-nav__checkbox:checked ~ .mobile-nav__background {
  -webkit-transform: scale(60);
          transform: scale(60);
}

.mobile-nav__checkbox:checked ~ .mobile-nav__nav {
  opacity: 1;
  width: 100%;
}

.mobile-nav__icon {
  position: relative;
  margin-top: 3.5rem;
}

.mobile-nav__icon, .mobile-nav__icon::before, .mobile-nav__icon::after {
  width: 3rem;
  height: 3px;
  border-radius: 1px;
  background-color: var(--color-blue-primary);
  display: inline-block;
}

.mobile-nav__icon::before, .mobile-nav__icon::after {
  content: '';
  position: absolute;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.mobile-nav__icon::before {
  top: -0.8rem;
}

.mobile-nav__icon::after {
  top: 0.8rem;
}

.mobile-nav__button:hover .mobile-nav__icon::before {
  top: -1rem;
}

.mobile-nav__button:hover .mobile-nav__icon::after {
  top: 1rem;
}

.mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon {
  background-color: transparent;
}

.mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon::before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.mobile-nav__checkbox:checked + .mobile-nav__button .mobile-nav__icon::after {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", sans-serif;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  /* If menu item is clicked these styles are added
  &--is-visible {
    max-height: 50rem !important;
    margin-bottom: 5rem;
  } */
}

.nav .is-current-link {
  color: var(--color-blue-primary) !important;
}

.nav .is-current-link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 100%;
}

.nav__link:link, .nav__link:visited, .nav__link:active {
  color: var(--color-charcoal);
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 50em) {
  .nav__link:link, .nav__link:visited, .nav__link:active {
    font-size: 2.5rem;
  }
}

.nav__link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav__link:hover:after {
  width: 100%;
  left: 0;
}

.nav__link:hover {
  color: var(--color-blue-primary);
}

.nav__item .nav__link {
  text-decoration: none;
}

.nav__item:last-of-type {
  margin-left: 2rem;
}

@media only screen and (max-width: 62.5em) {
  .nav__item:last-of-type {
    margin-left: 0;
  }
}

.nav___cta {
  font-size: 1.3rem;
}

@media only screen and (max-width: 50em) {
  .nav {
    display: none;
  }
}

/* Overall slick slider styles */
.slick-loading .slick-list {
  background: #fff url("././assets/img/ajax-loader.gif") center center no-repeat;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir='rtl'] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir='rtl'] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  z-index: 100;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  bottom: 15px;
}

@media only screen and (max-width: 50em) {
  .slick-dots {
    display: none;
  }
}

.slick-dots li {
  list-style: none;
  display: inline;
  position: relative;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  display: inline-block;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  padding: 0;
  outline: none;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slick-dots .slick-active button {
  background-color: #fff;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: '';
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.front-page .slider__slide {
  width: 100%;
}

@media only screen and (max-width: 50em) {
  .front-page .slider__slide {
    height: auto;
  }
}

.front-page .slider__text {
  color: var(--color-white);
  float: left;
  width: 50%;
  margin: 5vw 0 0 5vw;
}

@media only screen and (max-width: 50em) {
  .front-page .slider__text {
    float: none;
    width: 100%;
    text-align: center;
    margin: 5rem 0 0 0;
  }
}

.front-page .slider__heading {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 100;
  margin-bottom: 0;
}

.front-page .slider__subheading {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.5vw;
  line-height: 1;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 50em) {
  .front-page .slider__subheading {
    font-size: 5rem;
    margin-bottom: 5rem;
  }
}

.front-page .slider__buttons {
  margin-bottom: 3rem;
}

.front-page .slider__links:last-of-type {
  margin-left: 2rem;
}

.front-page .slider__image img {
  max-width: 40%;
  height: auto;
}

@media only screen and (max-width: 50em) {
  .front-page .slider__image {
    display: none;
  }
}

.footer {
  width: 100%;
  display: grid;
  grid-template-rows: auto;
}

.footer__top {
  background-color: var(--color-grey-light);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(45rem, 60rem) minmax(25rem, 50rem);
  gap: 5vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8rem 15vw;
}

@media only screen and (max-width: 62.5em) {
  .footer__top {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: minmax(-webkit-min-content, 50rem);
    grid-template-columns: minmax(min-content, 50rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5rem 3rem;
  }
}

.footer__top .help__header {
  margin-bottom: 2.5rem;
}

.footer__top .help__details {
  margin: -2.5rem 0 4rem 0;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.footer__top .contact {
  background-color: var(--color-red-primary);
  padding: 4rem;
  outline: var(--color-white) solid 3px;
  border-radius: 2px;
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.footer__top .contact__header {
  font-weight: 300;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.footer__top .contact__details {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 50em) {
  .footer__top .contact__details {
    font-size: 2rem;
  }
}

.footer__top .contact__link {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.5rem;
}

@media only screen and (max-width: 50em) {
  .footer__top .contact__link {
    font-size: 2rem;
  }
}

.footer__top .contact__icon {
  fill: var(--color-white);
  height: 1.2rem;
  width: 1.2rem;
}

@media only screen and (max-width: 50em) {
  .footer__top .contact__icon {
    height: 1.8rem;
    width: 1.8rem;
  }
}

.footer__main {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(20rem, 40rem) minmax(20rem, 40rem) minmax(20rem, 25rem);
  gap: 5vw;
  padding: 10rem 10vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 62.5em) {
  .footer__main {
    grid-template-rows: repeat(3, -webkit-max-content);
    grid-template-rows: repeat(3, max-content);
    grid-template-columns: minmax(-webkit-min-content, 60rem);
    grid-template-columns: minmax(min-content, 60rem);
    gap: 3rem;
    padding: 5rem 3rem;
    text-align: center;
  }
}

.footer__icon {
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media only screen and (max-width: 62.5em) {
  .footer__icon {
    width: 80%;
  }
}

.footer__disclaimer {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 100;
}

@media only screen and (max-width: 50em) {
  .footer__disclaimer {
    font-size: 2.3rem;
  }
}

.footer__item {
  list-style-type: none;
}

.footer__item:not(:last-of-type) {
  margin-bottom: 0.8rem;
}

.footer__link:link, .footer__link:visited, .footer__link:active {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 50em) {
  .footer__link:link, .footer__link:visited, .footer__link:active {
    font-size: 2rem;
  }
}

.footer__link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-white);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.footer__link:hover:after {
  width: 100%;
  left: 0;
}

.footer__bottom {
  width: 100%;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  text-align: center;
  padding: 1.5rem;
}

.footer__copyright {
  font-size: 1.3rem;
}

.back-top__button {
  background-color: var(--color-white);
  height: 7rem;
  width: 7rem;
  position: fixed;
  bottom: 3rem;
  right: 4vw;
  border-radius: 3px;
  z-index: 500;
  -webkit-box-shadow: var(--shadow-large-light);
          box-shadow: var(--shadow-large-light);
  text-align: center;
  cursor: pointer;
  display: grid;
  place-content: center;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s cubic-bezier(1, 0.74, 0.42, 1.21);
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.3s cubic-bezier(1, 0.74, 0.42, 1.21);
  transition: transform 0.3s cubic-bezier(1, 0.74, 0.42, 1.21), opacity 0.2s ease-in-out;
  transition: transform 0.3s cubic-bezier(1, 0.74, 0.42, 1.21), opacity 0.2s ease-in-out, -webkit-transform 0.3s cubic-bezier(1, 0.74, 0.42, 1.21);
}

.back-top__button:hover .back-top__button-icon {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.back-top__button--is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.back-top__button-icon {
  fill: var(--color-blue-primary);
  height: 2.5rem;
  width: 2.5rem;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(1, 0.74, 0.42, 1.21);
  transition: -webkit-transform 0.2s cubic-bezier(1, 0.74, 0.42, 1.21);
  transition: transform 0.2s cubic-bezier(1, 0.74, 0.42, 1.21);
  transition: transform 0.2s cubic-bezier(1, 0.74, 0.42, 1.21), -webkit-transform 0.2s cubic-bezier(1, 0.74, 0.42, 1.21);
}

.login {
  background: var(--gradient-primary);
  position: relative;
}

.login #login {
  font-size: 1.2rem;
  width: 32rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.login h1 a {
  color: var(--color-white);
  background-image: url("assets/img/icp-tta-login-logo.png");
  background-size: 30rem;
  height: 15rem;
  width: auto;
  padding-bottom: 2rem;
  margin: 0 auto 30%;
}

.login form {
  border: 2.5px solid var(--color-white);
  background-color: transparent;
  padding: 15px 24px 34px;
}

.login form label {
  color: var(--color-white);
  font-weight: 100;
  margin-top: 5.5rem;
}

.login form input[type='checkbox'] {
  border-radius: 0;
}

.login form input[type='checkbox']:checked:before {
  color: var(--color-white);
  margin: -0.2rem 0 0 -0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}

.login form input[type='checkbox']:focus {
  border-color: var(--color-lightblue-secondary);
}

.login form input[type='checkbox'],
.login form input[type='radio'] {
  height: 2rem;
  width: 2rem;
}

.login form input[type='color'],
.login form input[type='date'],
.login form input[type='datetime-local'],
.login form input[type='datetime'],
.login form input[type='email'],
.login form input[type='month'],
.login form input[type='number'],
.login form input[type='password'],
.login form input[type='search'],
.login form input[type='tel'],
.login form input[type='text'],
.login form input[type='time'],
.login form input[type='url'],
.login form input[type='week'],
.login form select,
.login form textarea {
  border-radius: 0;
  color: var(--color-charcoal);
}

.login form input[type='color']:focus,
.login form input[type='date']:focus,
.login form input[type='datetime-local']:focus,
.login form input[type='datetime']:focus,
.login form input[type='email']:focus,
.login form input[type='month']:focus,
.login form input[type='number']:focus,
.login form input[type='password']:focus,
.login form input[type='search']:focus,
.login form input[type='tel']:focus,
.login form input[type='text']:focus,
.login form input[type='time']:focus,
.login form input[type='url']:focus,
.login form input[type='week']:focus,
.login form select:focus,
.login form textarea:focus {
  border-color: var(--color-lightblue-secondary);
  -webkit-box-shadow: 0 0 0 1px var(--color-lightblue-secondary);
          box-shadow: 0 0 0 1px var(--color-lightblue-secondary);
}

.login form .dashicons-visibility,
.login form .dashicons-hidden {
  color: var(--color-blue-primary);
}

.login form .submit {
  display: block;
}

.login form .button-primary {
  width: 125px;
  background: var(--gradient-secondary);
  font-size: 1.2rem;
  color: var(--color-white);
  cursor: pointer;
  height: 35px;
  text-align: center;
  border: none;
  background-size: 450% 150%;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 5rem 0 3rem;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.login form .button-primary:hover {
  background: var(--gradient-secondary);
  background-position: 50% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.login form .button-primary:active, .login form .button-primary:focus {
  background: var(--gradient-secondary);
  outline: none;
  background-position: 100% 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.login form .forgetmenot label {
  color: var(--color-white);
}

.login #backtoblog a,
.login #nav a {
  color: var(--color-white);
}

.login #backtoblog a:hover,
.login #nav a:hover {
  color: var(--color-white);
}

.login .privacy-policy-page-link a {
  color: var(--color-white);
  text-decoration: none;
}

.login .privacy-policy-page-link a:hover {
  color: var(--color-white);
}

.general {
  position: relative;
  font-family: "Roboto", sans-serif;
}

.general--content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.general--single {
  max-width: 1300px;
  background-color: var(--color-grey-light);
  margin: 10rem auto;
  padding: 5rem;
  position: relative;
}

.general--single p {
  font-weight: 100;
  font-size: 2rem;
}

.general--single-narrow {
  max-width: 96rem;
  background-color: var(--color-grey-light);
  margin: 10rem auto;
  padding: 5rem;
  position: relative;
}

@media only screen and (max-width: 50em) {
  .general--single-narrow {
    padding: 3rem;
    margin: 5rem auto;
  }
}

.general--single-narrow p {
  font-weight: 100;
  font-size: 2rem;
}

.general--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 2rem;
  position: relative;
}

.general--about-us {
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 2rem 0;
  position: relative;
}

/* Make YouTube videos inserted via WordPress oEmbed full-width */
.wp-block-embed-youtube {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  height: auto;
  padding-bottom: 56.25%;
}

.wp-block-embed-youtube iframe,
.wp-block-embed-youtube object,
.wp-block-embed-youtube embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed__wrapper {
  position: initial;
}

.spanish__youtube {
  color: var(--color-blue-primary);
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
}

.about {
  width: 100%;
  margin-top: 10rem;
  display: grid;
  grid-template-columns: minmax(50rem, 60rem) minmax(-webkit-min-content, 60rem);
  grid-template-columns: minmax(50rem, 60rem) minmax(min-content, 60rem);
  grid-column-gap: 8rem;
  padding: 6rem 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}

@media only screen and (max-width: 62.5em) {
  .about {
    grid-template-rows: repeat(2, auto);
    grid-row-gap: 4rem;
    grid-template-columns: minmax(-webkit-min-content, 70rem);
    grid-template-columns: minmax(min-content, 70rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-column-gap: 0;
    padding: 5rem 3rem;
    margin: 5rem 0;
    text-align: center;
  }
}

.about__logo {
  width: 100%;
  position: relative;
}

.about__icon {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 62.5em) {
  .about__icon {
    width: 70%;
  }
}

@media only screen and (max-width: 37.5em) {
  .about__icon {
    width: 100%;
  }
}

.about__tagline {
  position: absolute;
  text-indent: -9999px;
  font-family: "Lusitana", serif;
  font-size: 2rem;
  top: 13rem;
  left: 21rem;
  line-height: 1.3;
  color: var(--color-charcoal);
}

.about__mission {
  font-family: "Roboto", sans-serif;
}

.about__mission-header {
  font-weight: 100;
  color: var(--color-blue-primary);
  font-size: 7rem;
  margin-bottom: 2rem;
}

.program {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  width: 100%;
  padding: 5rem 0;
  text-align: center;
}

.program__wrapper {
  max-width: 96rem;
  margin: 10rem auto 0;
  padding: 5rem;
}

.program__benifits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  max-width: 96rem;
  margin: 0 auto;
}

.program .benifit {
  color: var(--color-white);
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  padding: 5rem 2rem;
  border-radius: 0.5rem;
  background-color: transparent;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  width: 25rem;
  margin: 1rem;
}

.program .benifit:hover .benifit__icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.program .benifit:hover {
  background-color: rgba(var(--color-white-a), 0.1);
}

.program .benifit__icon {
  width: 8rem;
  height: 8rem;
  fill: var(--color-white);
  margin-bottom: 2rem;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.program .benifit__best-practice-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.program__cta {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-white);
  font-size: 2rem;
  max-width: 96rem;
  margin: 5rem auto;
  padding: 5rem;
}

@media only screen and (max-width: 50em) {
  .program__cta {
    font-size: 2.5rem;
  }
}

.program__cta a {
  color: var(--color-white);
  font-weight: 500;
}

.partners--narrow {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 50em) {
  .partners--narrow {
    padding: 0 2rem;
  }
}

.partners__headline {
  text-align: center;
  margin-bottom: 5rem;
}

.partners__wrapper {
  min-height: 200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

@media only screen and (max-width: 50em) {
  .partners__wrapper {
    grid-template-columns: repeat(2, minmax(5rem, -webkit-max-content));
    grid-template-columns: repeat(2, minmax(5rem, max-content));
    grid-template-rows: auto;
    padding: 0 2rem;
    grid-gap: 8rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .partners__wrapper {
    grid-template-columns: minmax(5rem, -webkit-max-content);
    grid-template-columns: minmax(5rem, max-content);
    grid-template-rows: auto;
    grid-gap: 9rem;
  }
}

.partners__wrapper .slick-list {
  overflow: visible;
}

.partners__link {
  text-decoration: none;
  color: var(--color-black);
}

.partners__logo {
  width: 20rem;
  position: relative;
  text-align: center;
  min-height: 100px;
  display: block;
}

.partners__logo:hover .partners__name {
  bottom: -4.5rem;
  opacity: 1;
}

@media only screen and (max-width: 37.5em) {
  .partners__logo:hover .partners__name {
    bottom: -11.5rem;
  }
}

.partners__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  pointer-events: none;
}

.partners__name {
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

@media only screen and (max-width: 37.5em) {
  .partners__name {
    position: relative;
    opacity: 1;
    bottom: -11.5rem;
  }
}

.testimonials {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  -webkit-animation: gradient 10s ease infinite;
          animation: gradient 10s ease infinite;
  width: 100%;
  padding: 15rem 0 25rem;
}

.testimonials h2 {
  text-align: center;
  font-style: italic;
  font-family: "Lusitana", serif;
}

.testimonials .testimonial {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  margin: 0 30vw;
  padding: 2.5rem 3.5rem;
  position: relative;
  font-family: "Lusitana", serif;
}

@media only screen and (max-width: 62.5em) {
  .testimonials .testimonial {
    margin: 0 2rem;
  }
}

.testimonials .testimonial::before {
  content: '\201C';
  position: absolute;
  top: -3rem;
  left: 0.5rem;
  line-height: 1;
  font-size: 14rem;
  font-family: sans-serif;
  color: var(--color-white);
  opacity: 0.2;
  z-index: 1;
}

.testimonials .testimonial::after {
  content: '\201C';
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: -3rem;
  right: 0.5rem;
  line-height: 1;
  font-size: 14rem;
  font-family: sans-serif;
  color: var(--color-white);
  opacity: 0.2;
  z-index: 1;
}

.testimonials .testimonial blockquote {
  font-style: italic;
  font-size: 1.5rem;
}

@media only screen and (max-width: 62.5em) {
  .testimonials .testimonial blockquote {
    font-size: 2.5rem;
  }
}

.testimonials .testimonial footer {
  font-style: normal;
  font-size: 1.2rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 62.5em) {
  .testimonials .testimonial footer {
    font-size: 2rem;
  }
}

.home-resources__header {
  width: 100%;
  margin-top: -17rem;
  background-color: var(--color-grey-light);
  text-align: center;
  padding: 5rem 8rem;
  -webkit-box-shadow: 0px 0px 3rem rgba(var(--color-black-a), 0.2);
          box-shadow: 0px 0px 3rem rgba(var(--color-black-a), 0.2);
}

.home-resources .foundations {
  text-align: center;
  width: 100%;
}

.home-resources .foundations__heading {
  font-family: "Lusitana", serif;
  font-size: 4.5rem;
  font-weight: 300;
  margin: 10rem 0 2.5rem;
  color: var(--color-charcoal);
}

.home-resources .foundations__cta {
  margin: 5rem auto;
}

.home-resources__subheading {
  margin-bottom: 4.5rem;
}

.home-resources__cta {
  margin: 0 auto;
}

.home-resources__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 10rem;
}

.home-resources__wrapper .foundation {
  color: var(--color-charcoal);
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  padding: 5rem 2rem;
  border-radius: 0.5rem;
  background-color: transparent;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  width: 20rem;
  margin: 0.5rem;
}

.home-resources__wrapper .foundation:hover .foundation__icon {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.home-resources__wrapper .foundation:hover {
  background-color: var(--color-grey-light);
}

.home-resources__wrapper .foundation__icon {
  width: 3rem;
  height: 3rem;
  fill: var(--color-charcoal);
  margin-bottom: 2rem;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.home-resources__wrapper .foundation__best-practice-title {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about-us__heading {
  text-align: center;
}

.about-us__mission {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-charcoal);
  font-size: 2rem;
  margin-bottom: 5rem;
}

.about-us__list {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-charcoal);
  font-size: 2rem;
  margin-left: 2.5rem;
  margin-bottom: 5rem;
}

.about-us__item {
  margin-bottom: 1.3rem;
}

.about-us .link {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.about-us .link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.about-us .link:hover:after {
  width: 100%;
  left: 0;
}

.about-us__history {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--color-charcoal);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about-us__content p,
.about-us__content ul,
.about-us__content a {
  font-weight: 100;
  font-size: 2rem;
}

.about-us__content a {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.about-us__content a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.about-us__content a:hover:after {
  width: 100%;
  left: 0;
}

.about-us__content ul {
  padding-left: 2rem;
}

.about-us__content h4 {
  margin: 3rem 0 2rem;
  font-size: 2.8rem;
  font-weight: 100;
}

.trainings__section {
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 2rem 0;
  position: relative;
}

.trainings__no-show, .trainings__link {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  text-align: center;
  margin: 5rem 0;
}

.trainings__no-show a, .trainings__link a {
  text-decoration: none;
  font-weight: 700;
  color: var(--color-blue-primary);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.trainings__no-show a:hover, .trainings__link a:hover {
  color: var(--color-black);
}

.trainings__featured {
  position: relative;
  margin: 0 0 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-grey-light);
  padding: 3rem;
}

@media only screen and (max-width: 50em) {
  .trainings__featured {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: minmax(-webkit-min-content, 50rem);
    grid-template-columns: minmax(min-content, 50rem);
    grid-row-gap: 3rem;
    grid-column-gap: 0;
  }
}

.trainings__featured .trainings__figure {
  position: relative;
}

.trainings__featured .trainings__img {
  width: 100%;
}

.trainings__featured .trainings__date {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.trainings__featured .trainings__description {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.trainings__normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.trainings__normal .trainings__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  width: 33.3333%;
}

@media only screen and (max-width: 50em) {
  .trainings__normal .trainings__wrapper {
    width: 50%;
  }
}

@media only screen and (max-width: 37.5em) {
  .trainings__normal .trainings__wrapper {
    width: 100%;
  }
}

.trainings__normal .trainings__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.trainings__normal .trainings__card:hover .trainings__img {
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
}

.trainings__normal .trainings__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
}

.trainings__normal .trainings__heading {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-charcoal);
  color: var(--color-blue-primary);
}

@media only screen and (max-width: 50em) {
  .trainings__normal .trainings__heading {
    font-size: 3rem;
  }
}

.trainings__normal .trainings__img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.trainings__normal .trainings__img::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

@media only screen and (min-width: 40em) {
  .trainings__normal .trainings__img::before {
    padding-top: 66.6%;
  }
}

.trainings__normal .trainings__date {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.trainings__normal .trainings__details {
  background-color: var(--color-grey-light);
  padding: 3rem;
  text-align: left;
  color: var(--color-black);
}

.trainings__normal .trainings__description {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

@media only screen and (max-width: 50em) {
  .trainings__normal .trainings__description {
    font-size: 2rem;
  }
}

.training__date {
  position: absolute;
  bottom: -2.8rem;
  left: 10%;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  padding: 1.5rem;
  line-height: 1;
  text-align: center;
  font-size: 3rem;
}

@media only screen and (max-width: 37.5em) {
  .training__date {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.training--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 9rem 2rem 0;
  position: relative;
}

.training__content p,
.training__content ul,
.training__content a {
  font-weight: 100;
  font-size: 2rem;
}

.training__content a {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.training__content a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.training__content a:hover:after {
  width: 100%;
  left: 0;
}

.training__content ul {
  padding-left: 2rem;
}

.training__h4 {
  margin-top: 5rem;
}

.training__cta {
  margin-top: 4rem;
}

.consultants__normal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
}

@media only screen and (max-width: 50em) {
  .consultants__normal {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: auto;
  }
}

.consultants__article {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 37.5em) {
  .consultants__article {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: minmax(-webkit-min-content, 45rem);
    grid-template-columns: minmax(min-content, 45rem);
    justify-items: center;
  }
}

.consultants__img {
  width: 100%;
  border-radius: 3px;
}

@media only screen and (max-width: 37.5em) {
  .consultants__img {
    width: 70%;
  }
}

.consultants__heading {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 50em) {
  .consultants__heading {
    font-size: 3rem;
  }
}

.consultants__heading a {
  text-decoration: none;
  color: var(--color-charcoal);
  position: relative;
}

.consultants__heading a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.consultants__heading a:hover:after {
  width: 100%;
  left: 0;
}

.consultants__heading a:hover {
  color: var(--color-blue-primary);
}

.consultants__icon {
  height: 1.3rem;
  width: 1.3rem;
}

@media only screen and (max-width: 50em) {
  .consultants__icon {
    height: 1.8rem;
    width: 1.8rem;
  }
}

.consultants__description {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 50em) {
  .consultants__description {
    font-size: 2rem;
  }
}

.consultants__communities {
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 2px;
  margin-bottom: 1rem;
  display: inline-block;
  width: auto;
  font-size: 1.5rem;
  font-weight: 300;
}

@media only screen and (max-width: 50em) {
  .consultants__communities {
    font-size: 2rem;
  }
}

.consultants__category {
  font-size: 1.3rem;
  font-weight: 100;
  list-style: none;
}

@media only screen and (max-width: 50em) {
  .consultants__category {
    font-size: 1.6rem;
  }
}

.consultants__category a {
  color: var(--color-charcoal);
  text-decoration: none;
  position: relative;
}

.consultants__category a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.consultants__category a:hover:after {
  width: 100%;
  left: 0;
}

.consultants__category a:hover {
  color: var(--color-blue-primary);
}

.consultants__link {
  text-align: center;
}

.consultant {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 5rem;
}

@media only screen and (max-width: 37.5em) {
  .consultant {
    grid-template-columns: minmax(-webkit-min-content, 100%);
    grid-template-columns: minmax(min-content, 100%);
    grid-template-rows: minmax(-webkit-min-content, 5rem) auto;
    grid-template-rows: minmax(min-content, 5rem) auto;
  }
}

.consultant__headshot {
  width: 100%;
}

.consultant__content {
  background-color: var(--color-grey-light);
  padding: 5rem;
}

.consultant__content p,
.consultant__content ul,
.consultant__content a {
  font-weight: 100;
  font-size: 2rem;
}

.consultant__content a {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.consultant__content a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.consultant__content a:hover:after {
  width: 100%;
  left: 0;
}

.consultant__content ul {
  padding-left: 2rem;
}

.partner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 5rem;
}

@media only screen and (max-width: 37.5em) {
  .partner {
    grid-template-columns: minmax(-webkit-min-content, 100%);
    grid-template-columns: minmax(min-content, 100%);
    grid-template-rows: minmax(-webkit-min-content, 5rem) auto;
    grid-template-rows: minmax(min-content, 5rem) auto;
  }
}

.partner__logo {
  width: 100%;
  pointer-events: none;
}

@media only screen and (max-width: 37.5em) {
  .partner__logo {
    width: 70%;
    margin: 0 auto 2rem;
  }
}

.partner__content {
  background-color: var(--color-grey-light);
  padding: 5rem;
}

.partner__content p,
.partner__content ul,
.partner__content a {
  font-weight: 100;
  font-size: 2rem;
}

.partner__content a {
  position: relative;
  color: var(--color-blue-primary);
  text-decoration: none;
}

.partner__content a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--color-blue-primary);
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.partner__content a:hover:after {
  width: 100%;
  left: 0;
}

.partner__content ul {
  padding-left: 2rem;
}

.contact-us {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-gap: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 50em) {
  .contact-us {
    grid-template-columns: minmax(-webkit-min-content, 40rem);
    grid-template-columns: minmax(min-content, 40rem);
    grid-template-rows: repeat(2, auto);
  }
}

.contact-us .contact {
  background-color: var(--color-red-primary);
  padding: 4rem;
  outline: var(--color-white) solid 3px;
  border-radius: 2px;
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.contact-us .contact__header {
  font-weight: 100;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-us .contact__details {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 62.5em) {
  .contact-us .contact__details {
    font-size: 2.1rem;
  }
}

.contact-us .contact__link {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.5rem;
}

@media only screen and (max-width: 62.5em) {
  .contact-us .contact__link {
    font-size: 2.1rem;
  }
}

.contact-us .contact__icon {
  fill: var(--color-white);
  height: 1.2rem;
  width: 1.2rem;
}

@media only screen and (max-width: 62.5em) {
  .contact-us .contact__icon {
    height: 1.8rem;
    width: 1.8rem;
  }
}

.faqs {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  position: relative;
}

.faqs__header {
  text-align: center;
  margin-bottom: 5rem;
}

.faqs__content {
  overflow: hidden;
  font-family: "Roboto", sans-serif;
}

.faqs__drawer {
  position: relative;
}

.faqs__wrapper {
  font-size: 2rem;
  font-weight: 100;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

@media only screen and (max-width: 37.5em) {
  .faqs__wrapper {
    font-size: 2.4rem;
  }
}

.faqs__title {
  border-top: 1px solid var(--color-black);
  cursor: pointer;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 3rem 0 0 3rem;
  position: relative;
  margin-bottom: 2rem;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

@media only screen and (max-width: 37.5em) {
  .faqs__title {
    font-size: 2.4rem;
  }
}

.faqs__title::before {
  position: absolute;
  content: '+';
  color: var(--color-black);
  left: 1rem;
  top: 2.8rem;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.faqs__answer {
  margin-left: 3rem;
  margin-bottom: 2rem;
}

.faqs__title:hover {
  color: var(--color-charcoal);
}

.faqs__drawer:hover {
  background: var(--color-grey-light);
  border-left: 1px solid var(--color-charcoal);
  border-right: 1px solid var(--color-charcoal);
}

.faqs__drawer:last-of-type:hover {
  background: var(--color-grey-light);
  border-bottom: 1px solid var(--color-charcoal);
}

.faqs__trigger:checked + .faqs__title + .faqs__wrapper {
  max-height: 350px;
}

.faqs__trigger:checked + .faqs__title::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.faqs input[type='checkbox'] {
  display: none;
}

.form {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

.form p,
.form ul,
.form ol,
.form a {
  font-weight: 100;
  font-size: 2rem;
}

.error {
  text-align: center;
  max-width: 96rem;
  margin: 10rem auto;
  padding: 5rem;
  position: relative;
}

.error h2 {
  font-size: 10rem;
}

@media only screen and (max-width: 50em) {
  .error h2 {
    font-size: 5rem;
  }
}

.error p {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 4rem;
}

.error img {
  padding: 5rem;
  width: 100%;
  margin-bottom: 4rem;
}
