/* display, position, box model */

.block {
    display: block;
}

.block-important {
    display: block !important;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.hide {
    display: none !important;
}

.relative {
    position: relative;
}

.relative-important {
    position: relative !important;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.absolute-0 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.width-auto {
    width: auto;
}

.width-200px {
    width: 200px;
}

.width-100px {
    width: 100px;
}

.width-300px {
    width: 300px;
}

.width-75-perc,
.width-75 {
    width: 75%;
}

.width-100-perc,
.width-100 {
    width: 100%;
}

.max-300 {
    max-width: 300px;
}

.max-500 {
    max-width: 500px;
}

.max-600 {
    max-width: 600px;
}

.max-800 {
    max-width: 800px;
}

.max-1200 {
    max-width: 1200px;
}

.max-1600 {
    max-width: 1600px;
}

.max-width-25-perc {
    max-width: 25%;
}

.max-width-30-perc {
    max-width: 30%;
}

.max-width-50-perc {
    max-width: 50%;
}

.max-width-75-perc {
    max-width: 75%;
}

.max-width-100-perc,
.max-100 {
    max-width: 100%;
}

.height-0 {
    height: 0;
}

.height-100,
.height-100-perc {
    height: 100%;
}

.max-height-225 {
    max-height: 225px;
}

.max-height-275 {
    max-height: 275px;
}

.max-height-400 {
    max-height: 400px;
}

.min-height-200 {
    min-height: 200px;
}

.min-height-300 {
    min-height: 300px;
}

.min-height-400 {
    min-height: 400px;
}

.min-height-500 {
    min-height: 500px;
}

.margin-0 {
    margin: 0;
}

.margin-15-0 {
    margin: 15px 0;
}

.margin-30-0 {
    margin: 30px 0;
}

.margin-right-15 {
    margin-right: 15px;
}

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

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

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-15 {
    margin-top: 15px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

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

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-45 {
    margin-bottom: 45px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-left-30 {
    margin-left: 30px;
}

.center {
   margin-right: auto;
   margin-left: auto;
}

.center-unset {
    margin-right: unset;
    margin-left: unset;
}

.padding-0 {
    padding: 0;
}

.padding-0-important {
    padding: 0 !important;
}

.padding-15 {
    padding: 15px;
}

.padding-30 {
    padding: 30px;
}

.padding-40 {
    padding: 40px;
}

.padding-0-30 {
    padding: 0 30px;
}

.padding-5-0 {
    padding: 5px 0;
}

.padding-8-30 {
    padding: 8px 30px;
}

.padding-15-30 {
    padding: 15px 30px;
}

.padding-60-0 {
    padding: 60px 0;
}

.padding-60-30 {
    padding: 60px 30px;
}

.padding-120-30 {
    padding: 120px 30px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-right-30 {
    padding-right: 30px;
}

.padding-left-30 {
    padding-left: 30px;
}

.padding-bottom-0 {
    padding-bottom: 0;
}

/* fonts */

.ff-primary {
    font-family: var(--primary-font);
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-32 {
    font-size: 32px;
}

.fs-34 {
    font-size: 34px;
}

.fs-56 {
    font-size: 56px;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.lh-80 {
    line-height: 80%;
}

.lh-125 {
    line-height: 125%;
}

.lh-135 {
    line-height: 135%;
}

.lh-145 {
    line-height: 145%;
}

.text-align-left,
.text-left {
    text-align: left;
}

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

.text-align-right,
.text-right {
    text-align: right;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.float-none {
    float: none;
}

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

.underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.cursor-pointer {
    cursor: pointer;
}

.fluid-14-2vw-16,
.fluid-14-16 {
    font-size: clamp(14px, 2vw, 16px);
}

.fluid-20-5vw-26 {
    font-size: clamp(20px, 5vw, 26px);
}

.fluid-20-3vw-26 {
    font-size: clamp(20px, 3vw, 26px);
}

.fluid-22-7vw-34,
.fluid-22-34 {
    font-size: clamp(22px, 7vw, 34px);
}

.fluid-22-7vw-56,
.fluid-22-56 {
    font-size: clamp(22px, 7vw, 56px);
}

.transparent {
    color: transparent;
}

.ellipses {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-break:after {
    content:"\a";
    white-space: pre;
}

/* colors */

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

.primary-gray,
.primary-grey {
    color: var(--primary-grey);
}

.secondary-orange {
    color: var(--secondary-orange);
}

.secondary-red {
    color: var(--secondary-red);
}

.secondary-purple {
    color: var(--secondary-purple);
}

.secondary-yellow {
    color: var(--secondary-yellow);
}

.secondary-green {
    color: var(--secondary-green);
}

.secondary-blue {
    color: var(--secondary-blue);
}

.secondary-turquoise,
.secondary-turq {
    color: var(--secondary-turq);
}

.secondary-orange-light {
    color: var(--secondary-orange-light);
}

.secondary-grey-dark,
.secondary-gray-dark {
    color: var(--secondary-grey-dark);
}

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

.black,
.color-black {
    color: var(--black);
}

.misc-grey-8 {
    color: var(--misc-grey-8);
}

.bg-huron-colors-aubergine-800-og {
    background-color: var(--huron-colors-aubergine-800-og);
}

.bg-huron-colors-aubergine-600-og{
    background-color: var(--huron-colors-aubergine-600-og);
}

.bg-huron-colors-aubergine-400{
    background-color: var(--huron-colors-aubergine-400);
}
.bg-huron-colors-aubergine-100{
    background-color: var(--huron-colors-aubergine-100);
}

.bg-huron-colors-ecru-50 {
    background-color: var(--huron-colors-ecru-50);
}

.bg-huron-colors-ecru-100-og {
    background-color: var(--huron-colors-ecru-100-og);
}

.bg-huron-colors-ecru-200-og {
    background-color: var(--huron-colors-ecru-200-og);
}

.bg-huron-colors-ecru-300 {
    background-color: var(--huron-colors-ecru-300);
}

.bg-huron-colors-guava-100 {
    background-color: var(--huron-colors-guava-100);
}
.bg-huron-colors-guava-500-og {
    background-color: var(--huron-colors-guava-500-og);
}
.bg-huron-colors-guava-600 {
    background-color: var(--huron-colors-guava-600);
}

.bg-huron-colors-guava-700 {
    background-color: var(--huron-colors-guava-700);
}

.bg-huron-colors-mint-100 {
    background-color: var(--huron-colors-mint-100);
}

.bg-huron-colors-mint-300-og {
    background-color: var(--huron-colors-mint-300-og);
}

.bg-huron-colors-mint-500-og {
    background-color: var(--huron-colors-mint-500-og);
}

.bg-huron-colors-mint-700 {
    background-color: var(--huron-colors-mint-700);
}

.bg-huron-colors-stone-50{
    background-color: var(--huron-colors-stone-50);
}
.bg-huron-colors-stone-200{
    background-color: var(--huron-colors-stone-200);
}
.bg-huron-colors-stone-400{
    background-color: var(--huron-colors-stone-400);
}
.bg-huron-colors-stone-600{
    background-color: var(--huron-colors-stone-600);
}
.bg-huron-colors-stone-900{
    background-color: var(--huron-colors-stone-900);
}

.bg-huron-colors-button-primary-hover {
    background-color: var(--huron-colors-button-primary-hover);
}

.bg-secondary-gray-dark,
.bg-secondary-grey-dark {
    background-color: var(--secondary-grey-dark);
}

.bg-gray-light,
.bg-grey-light {
    background-color: var(--misc-grey-1);
}

.bg-misc-gray-2,
.bg-misc-grey-2 {
    background-color: var(--misc-grey-2);
}

.bg-misc-gray-4,
.bg-misc-grey-4 {
    background-color: var(--misc-grey-4);
}

.bg-white {
    background-color: var(--white);
}

.bg-success-green {
    background-color: var(--misc-bg-success-green);
}

.bg-error-red {
    background-color: var(--misc-bg-error-red);
}

/* border */

.border-1-solid {
    border: 1px solid currentColor;
}

.border-solid {
    border-style: solid;
}

.border-bottom-width-2 {
    border-bottom-width: 2px;
}

.border-bottom-width-3 {
    border-bottom-width: 3px;
}

.border-bottom-none-all a,
.border-bottom-none {
    border-bottom: none;
}

.border-radius-0 {
    border-radius: 0;
}

.border-radius-2 {
    border-radius: 2px;
}

.border-radius-8 {
    border-radius: 8px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-15 {
    border-radius: 15px;
}

.border-none {
    border: none;
}

.hover-border-bottom:hover {
    border-bottom: 2px solid currentColor !important;
}

/* hover */

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

/* shadow */

.box-shadow-grey,
.box-shadow-gray {
    box-shadow: 0px 0px 5px 0px var(--misc-grey-8);   
}

.box-shadow-grey-dark,
.box-shadow-gray-dark {
    box-shadow: 0px 0px 5px 0px rgba(102, 102, 102, 0.5);   
}

/* visibility */

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.hidden {
    visibility: hidden;
}

/* flex */

.flex {
    display: flex;
}

.flex-inline {
  display: inline-flex;
}

.flex.flex-text-middle,
.flex.align-items-center {
  align-items: center;
}

.flex.align-items-start { /* top */
  align-items: flex-start;
}

.flex.align-items-baseline {
  align-items: baseline;
}

.flex.align-items-stretch {
  align-items: stretch;
}

.flex.align-items-end { /* bottom */
  align-items: flex-end;
}

.flex.justify-evenly {
  justify-content: space-evenly;
}

.flex.justify-between {
  justify-content: space-between;
}

.flex.justify-center {
  justify-content: center;
}

.flex.justify-end {
  justify-content: end;
}

.flex.direction-column {
  flex-direction: column;
}

.flex.direction-row-reverse {
  flex-direction: row-reverse;
}

.flex.flex-wrap {
  flex-wrap: wrap;
}

.flex.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-basis-0 { /*flex-basis: auto (content width, in row-direction)*/
  flex-basis: 0; /*items to be equal width*/
}

.flex-1, /*items to be equal width*/
.flex.flex-1 > * {
  flex: 1; /*flex-grow: 1 flex-shrink: 1 flex-basis: 0*/
}

.flex.flex-grow-0 > *,
.flex .flex-grow-0 {
  flex-grow: 0;
}

.flex.flex-grow-1 > *,
.flex .flex-grow-1 {
  flex-grow: 1;
}

.flex .flex-grow-2 {
  flex-grow: 2;
}

.flex .flex-grow-3 {
  flex-grow: 3;
}

.flex .flex-grow-4 {
  flex-grow: 4;
}

.flex .flex-grow-5 {
  flex-grow: 5;
}

.flex .order-0 {
    order: 0;
}

.flex .order-1 {
    order: 1;
}

.flex .order-2 {
    order: 2;
}

.flex .order-3 {
    order: 3;
}

/* grid */

.grid {
    display: grid;
}

.grid.grid-inline {
    display: inline-grid;
}

.place-items-center,
.grid.place-items-center { /* multi-directional centering */
    place-items: center;
}

.grid.auto-flow-column {
    grid-auto-flow: column;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-items-end {
    justify-items: end;
}

.template-columns-1,
.template-columns-1-1fr {
    grid-template-columns: 1fr;
}

.template-columns-2,
.template-columns-2-1fr {
    grid-template-columns: repeat(2, 1fr);
}

.template-columns-3,
.template-columns-3-1fr {
    grid-template-columns: repeat(3, 1fr);
}

.template-columns-6,
.template-columns-6-1fr {
    grid-template-columns: repeat(6, 1fr);
}

.grid-column-span-2 {
    grid-column: span 2;
}

.grid-row-2 {
    grid-row: 2;
}

/* gaps for flex and grid */

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-45 {
    gap: 45px;
}

.gap-30-15 {
    gap: 30px 15px;
}

.gap-45-30 {
    gap: 45px 30px;
}

/* flex grid shared */

.align-items-start {
    align-items: start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.justify-content-start {
    justify-content: start;
}

/* images */

.fit-cover {
    object-fit: cover;
}

.object-position-top {
    object-position: top;
}

.object-position-center {
    object-position: center;
}

.hover-img-zoom,
.img-zoom {
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: all .25s ease-in-out;
}

.hover-img-zoom:hover,
.img-zoom:hover {
    transform: scale(1.1);
}

.img-gradient:after {
    content: '';
    background: linear-gradient( rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25) );
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.img-gradient-dark:after {
    content: '';
    background: linear-gradient( rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.75) );
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.mobile-bg-img-placeholder {
    background-size: 0 0 !important;
}

/* img duotone 

.img-duo {
    position: relative;
}
.img-duo img {
    filter: grayscale(1);
    
}
*/

.img-duo-hover img {
    filter: grayscale(0);
    transition: all 0.5s;
}

.img-duo-hover:hover img {
    filter: grayscale(1);
}

.img-duo:after,
.img-duo-hover:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    mix-blend-mode: multiply;
    opacity: 1;
    pointer-events: none;
    
}

.img-duo-hover:after {
    opacity: 0;
    transition: all 0.5s;
}

.img-duo-hover:hover:after {
    opacity: 1;
}

.img-duo-hover.border-radius-15:before,
.img-duo-hover.border-radius-15:after,
.img-duo-hover.border-radius-15 {
    border-radius: 15px;
}

/* filters */

.filter {
    filter: blur(var(--blur)) 
            contrast(var(--contrast)) 
            brightness(var(--brightness)) 
            contrast(var(--contrast)) 
            drop-shadow(var(--dropshadow)) 
            grayscale(var(--grayscale)) 
            hue-rotate(var(--hue-rotate)) 
            invert(var(--invert)) 
            opacity(var(--opacity)) 
            saturate(var(--saturate)) 
            sepia(var(--sepia)); 
}

.filter-brightness-50 {
    --brightness: 50%;
}

.filter-grayscale-0 {
    --grayscale: 0;
}

.filter-grayscale-1,
.filter-grayscale-100 {
    --grayscale: 1;
}

.filter-blur-8 {
    --blur: 8px;
}

.filter-blur-8-grayscale-1 {
    filter: blur(8px) grayscale(1);
}

/* image content */

img.logo-no-text-blue {
    content: var(--logo-no-text-blue);
}

img.logo-no-text-white {
    content: var(--logo-no-text-white);
}

img.logo-horizontal-blue {
    content: var(--logo-horizontal-blue);
}

img.logo-horizontal-white {
    content: var(--logo-horizontal-white);
}

@-moz-document url-prefix() { 
    /* firefox only - need width on logos */
    footer img.logo-horizontal-white {
        width: 150px;
    }
}

img.logo-vertical-blue {
    content: var(--logo-vertical-blue);
}

img.logo-vertical-white {
    content: var(--logo-vertical-white);
}

img.social-linkedin-white {
    content: var(--social-linkedin-white);
}

img.social-twitter-white {
    content: var(--social-twitter-white);
}

img.social-youtube-white {
    content: var(--social-youtube-white);
}

img.social-facebook-white {
    content: var(--social-facebook-white);
}

img.social-instagram-white {
    content: var(--social-instagram-white);
}

/* anim */

.transition-all {
    transition: all 0.25s;
}

/* misc */

.z-index-1 {
    z-index: 1;
}

.z-index-10 {
    z-index: 10;
}

/* mobile */

.mobile-show,
.mobile-inline,
.mobile-grid {
    display: none;
}

@media (max-width: 868px) {
    
    .direction-column-at868 {
        flex-direction: column;
    }
    
    .column-reverse-at868 {
        flex-flow: column-reverse !important;   
    }
}

@media (max-width: 768px) {
    
    .column-reverse-at768 {
        flex-flow: column-reverse !important;   
    }
}

@media (max-width: 668px) {
    
    .mobile-show {
        display: block;
    }
    
    .mobile-inline {
        display: inline;
    }
    
    .mobile-hide {
        display: none !important;
    }
    
    .mobile-relative {
        position: relative;
    }
    
    .mobile-grid {
        display: grid;
    }
    
    .mobile-max-width-100-perc {
        max-width: 100%;
    }
    
    .mobile-margin-bottom-0 {
        margin-bottom: 0;
    }
    
    .mobile-margin-bottom-15 {
        margin-bottom: 15px;
    }
    
    .mobile-padding-15 {
        padding: 15px;
    }
    
    .mobile-padding-30 {
        padding: 30px;
    }
    
    .mobile-padding-0-15 {
        padding: 0 15px;
    }
    
    .mobile-padding-8-15 {
        padding: 8px 15px;
    }
    
    .mobile-padding-40-30 {
        padding: 40px 30px;
    }
    
    .mobile-white {
        color: var(--white);
    }
    
    .mobile-text-center {
        text-align: center;
    }
    
    .mobile-bg-img-placeholder {
        background-size: cover !important;
    }
    
    .flex:not(.mobile-row) {
        flex-direction: column;
    }
    
    .flex.mobile-row {
        flex-direction: row;
    }
    
    .flex.mobile-column-reverse {
        flex-direction: column-reverse;
    }
    
    .grid {
        grid-template-columns: auto !important;
    }
    
    .grid > * {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .mobile-gap-0 {
        gap: 0;
    }
    
    .mobile-gap-15 {
        gap: 15px;
    }
    
    .mobile-place-items-center {
        place-items: center;
    }
    
    .mobile-align-items-end {
        align-items: end;
    }
}

.print-show {
    display: none;
}

@media print {
    
    .print-hide {
        display: none;
        visibility: hidden;
    }
    
    .print-show {
        display: block;
    }
}