* {
  margin: 0;
  padding: 0;
}

:root {
    --color-black: #000;
    --color-white: #fff;
    --font-white: #eaeaea;

    --color-light: #efefef;
    
    --color-text: #333;
    --color-background: var(--color-beige);
    
    /** HFG **/
    --color-blue: #4AC7E9;
    --color-red: #F3716D;
    --color-teal: #00A998;
    --color-mustard: #FDB913;  
    --color-beige: #FCF3EB;
    --color-khaki: #F0D9B2;
    --color-grey: #9DA0A1;
    
    --color-salmon: #fbeae2;

    --color-blue-light: #007DAF;
    --color-turquoise: #08B4AC;
    --color-blue-grey: #e9f0f1;
    
    --color-c: #00FBFF;
    --color-m: #FF0080;
    --color-y: #FFF200;
    --color-k: #000000;
}

html {
  /*font-family: var(--font-family-sans);*/
  color: var(--color-text);
  background: var(--color-background);
}

img { width: 100%; }

body {
  /*padding: var(--padding);
  max-width: 70rem;*/
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
    font: inherit;
    font-size: 0.95em;
    font-weight: 600;
    background: var(--color-beige);
    border: 0px solid rgba(255,255,255,0.5) !important;
    color: var(--color-red);
    /*transition: .3s background;*/
    border-radius: 20px !important;
    padding: 6px 24px 7px !important;
}
button:hover {
    background: var(--color-red);
    border: 0px solid var(--color-beige) !important;
    color: var(--color-beige);
    cursor: pointer;
}
button.mustard {
    background: var(--color-mustard);
    color: #444;
}
button.mustard:hover {
    background: var(--color-teal);
}
button.teal {
    background: var(--color-teal);
    color: white;
}
button.teal:hover {
    background: var(--color-mustard);
}
button.red {
    background: var(--color-red);
    color: white;
}
button.red:hover {
    background: var(--color-teal);
}

@media screen and (min-width: 1400px) {
    button {
        font-size: 1em;
        border-radius: 20px !important;
        padding: 5px 26px 6px !important;
    }
}


.contact-button {
    position: fixed;
    width: 100vw;
    z-index: 999;
    bottom: 6vh;
    left: 0px;
    pointer-events: none;
    transition: opacity .3s;
}
.contact-button-holder {
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    font-size: 0.9em;
}
.contact-button button {
    pointer-events: all;
    display: flex;
    gap: 15px;
    align-items: center;
    background: var(--color-mustard);
    color: var(--color-text);
    border: 1px solid var(--color-mustard) !important;
    letter-spacing: -0.1px;
    border-radius: 32px !important;
    padding: 1px 26px 4px !important;
    filter: drop-shadow(0px 8px 5px rgba(0,0,0,0.1));
    transition: background .2s;
}
.contact-button button:hover {
    background: var(--color-red);
    color: var(--color-beige);
}
.contact-button img {
    width: 35px;
    transform: translateY(-11%);
}

.contact-button.opin {
    opacity: 1;
    pointer-events: all;
}

.contact-button.opout {
    opacity: 0 !important;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .contact-button-holder {
        font-size: 0.85em;
    }
    .contact-button img {
        width: 28px;
        transform: translateY(-15%);
    }
    .contact-button button {
        gap: 12px;
        border-radius: 32px !important;
        padding: 0px 23px 2px !important;
    }
}
@media screen and (min-width: 1200px) {
    .contact-button-holder {
        font-size: 0.9em;
    }
    .contact-button button {
        gap: 12px;
        border-radius: 32px !important;
        padding: 2px 25px 2px !important;
    }   
}
@media screen and (min-width: 1400px) {
    .contact-button-holder {
        font-size: 0.85em;
    }
    .contact-button button {
        gap: 12px;
        border-radius: 32px !important;
        padding: 2px 25px 2px !important;
    }
}
@media screen and (min-width: 1600px) {
    .contact-button-holder {
        font-size: 0.9em;
    }
    .contact-button img {
        width: 30px;
        transform: translateY(-16%);
    }
    .contact-button {
        bottom: 6.5vh;
    }
}
@media screen and (min-width: 1800px) {
    .contact-button {
        bottom: 6.5vh;
    }
}
@media screen and (min-width: 2100px) {
    .contact-button-holder {
        font-size: 1em;
    }
    .contact-button img {
        width: 35px;
        transform: translateY(-11%);
    }
    .contact-button button {
        gap: 15px;
        border-radius: 32px !important;
        padding: 1px 26px 4px !important;
    }
}


/** DONATE BUTTON **/


.menu-button-donate {
    font-size: 0.9em !important;
    margin-left: 5px;
}
.menu-button-donate button {
    display: flex;
    font-weight: 500;
    align-items: center;
    background: white;
    color: var(--color-teal);
    letter-spacing: -0.1px;
    border: 1px solid var(--color-red) !important;
    border-radius: 32px !important;
    padding: 1px 20px 2px !important;
    transition: background .2s;
}
.menu-button-donate button:hover {
    background: var(--color-red);
    color: var(--color-beige);
}

.menu-button-donate.active button {
    background: var(--color-red);
    color: var(--color-beige);
}

@media screen and (max-width: 1399px) {
    .contact-button button {
        transform: translateX(-14px);
    }
}


/* =====  COLOUR  ==================================================== */


.text-white {
    color: var(--color-white);
    letter-spacing: 0.4px !important;
}
.text-off-white {
    color: var(--color-white);
    opacity: 1;
    letter-spacing: 0.4px !important;
}
.text-black {
    color: var(--color-text);
}
.bg-white {
   background-color: var(--color-white);
}



.bg-blue {
   background-color: var(--color-blue);
}
.bg-red {
   background-color: var(--color-red);
}
.bg-teal {
   background-color: var(--color-teal);
}
.bg-mustard {
   background-color: var(--color-mustard);
}
.bg-khaki {
   background-color: var(--color-khaki);
}
.bg-grey {
   background-color: var(--color-grey);
}
.bg-beige {
   background-color: var(--color-beige);
} 
.bg-salmon {
   background-color: var(--color-salmon);
}
    
.color-red {
   color: var(--color-red) !important;
}
.color-teal {
   color: var(--color-teal) !important;
}
.color-blue {
   color: var(--color-blue) !important;
}
.color-mustard {
   color: var(--color-mustard) !important;
}



.bg-blue {
   background-color: var(--color-blue);
}
.bg-blue-light {
   background-color: var(--color-blue-light);
}
.bg-blue-grey {
   background-color: var(--color-blue-grey);
}
.bg-turquoise {
   background-color: var(--color-turquoise);
}

 

/* =====  PADDING  ==================================================== */


:root {
    --pad: 60px;
    --pad-side: 20px;
    --pad-mast: 130px;
}
.container-full .block-type-image {
    padding: 0 5px 0 5px;
}

@media screen and (min-width: 380px) {
    :root {
        --pad: 80px;
        --pad-side: 30px;
    }  
}

@media screen and (min-width: 768px) {
    :root {
        --pad: 100px;
        --pad-side: 4%;
    }
    body {
      padding-top: 2em;
    }
    .container-full .block-type-image  {
        padding: 0;
    }

}
@media screen and (min-width: 992px) {
    :root {
        --pad: 100px;
        --pad-side: 50px;
        --pad-mast: 150px;
    }
    body {
      padding-top: 2em;
    }
    .container-full .block-type-image  {
        padding: 0;
    }

}
@media screen and (min-width: 1400px) {
    :root {
        --pad: 110px;
        --pad-side: 100px;
        --pad-mast: 180px;
    }
}
@media screen and (min-width: 1800px) {
    :root {
        --pad: 120px;
        --pad-side: 150px;
        --pad-mast: 200px;
    }
}
@media screen and (min-width: 2100px) {
    :root {
        --pad: 150px;
        --pad-side: 300px;
    }
}

.pad {
    padding-top: var(--pad);
    padding-bottom: var(--pad);
}
.pad-bottom {
    padding-bottom: var(--pad);
}
.pad-bottom-half {
    padding-bottom: calc(var(--pad)/2);
}
.pad-top {
    padding-top: var(--pad) !important;
}
.pad-top-third {
    padding-top: calc( var(--pad)*0.8 );
}
.pad-top-half {
    padding-top: calc(var(--pad)/1.8) !important;
}
.pad-bottom-half {
    padding-bottom: calc(var(--pad)/1.8) !important;
}
.pad-half {
    padding-top: calc(var(--pad)/1.8);
    padding-bottom: calc(var(--pad)/1.8);
}
.block-pad-left {
    padding-left: var(--pad-side);
}
.block-pad-right {
    padding-right: var(--pad-side);
}
.block-pad {
    padding-left: var(--pad-side);
    padding-right: var(--pad-side);
}
.masthead {
    padding-top: var(--pad-mast) !important;
}
.pad-top-para {
    padding-top: 1.5em !important;
}

@media screen and (max-width: 767px) {
    .block-pad-m {
        padding-left: 5px;
        padding-right: 5px;
    }
}


/* =====  HEADER  ==================================================== */


.header {
    position: relative;
    overflow: visible;
}
.header-flex {
    position: relative;
    display: flex;
    align-items: center; 
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: visible;
}

.logo {
    padding: 8px 0 0 0;
    width:120px;
}
.logo-holder-menu {
    position: relative;
    overflow: visible;
}
.triangle {
    position: absolute; bottom: 0;
    z-index: -1;
    transform: translate(-5.5%,-5%);
    border: 0px solid red;
    pointer-events: none;
    display: flex;
    justify-content: center;
    width: 41%;

    
    
}
.triangle .shape {
	width: 100%;
    aspect-ratio:1.65/1;
    border-radius: 5px;
	transform: skew(-20deg) rotate(33.3deg);
	background: #fff;
}
.menu {
    display: flex;  
}

.social {
    display: flex;
    align-items: center;
    padding: 0;
    
}
header .social {
    padding-left: 1em;
}

.social a {
    padding-left: 15px;
}
.social a:first-of-type {
    padding-left: 0;
}
.social svg {
    width: 25px;
}

.container-menu {
    max-width: 100vw;
	position:fixed;
	top:0;
	z-index:999;
	width:100%;
	transition:transform .4s;
    background: white;
}

.container-menu.hide {
	transform:translateY(-100%);
}

.menu a {
    padding: 2em 0em 1em 1.5em ;
    display: block;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-size: 17px;
    cursor: pointer;
    color: #555;
}
.menu a:hover {
    color: var(--color-red);
}
.menu a[aria-current] {
    color: var(--color-red);
}

@media screen and (min-width: 768px) {
    .logo {
        padding: 12px 0 0;
        font-weight: 600;
        cursor: pointer;
        width:140px;
    }

}
@media screen and (min-width: 1200px) {
    .logo {
        width:150px;
    }
}
@media screen and (min-width: 1600px) {
    .logo {
        width:170px;
    }
    .menu a {
        font-size: 17px;
    }
    
}
@media screen and (min-width: 2100px) {
    .logo {
        width:180px;
    }
    .menu a {
        font-size: 17px;
        letter-spacing: 0.4px;
    }
}

/* =====  HELPERS  ==================================================== */


.block-type-image figure {
    line-height: 0 !important;
}
.type-image-holder {
    width: 20%;
}
figure.type-image {
    aspect-ratio: 5/2.5;
    overflow: hidden;
}
figure.type-image img {
    object-fit: cover;
    width:100%; height: 100%;
    
}

.text ul, .text ol {
    margin-left: 20px;
}
.text ul li, .text ol li {
    list-style-type: disc;
    list-style-position: outside;
}
#layout a {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}
.text a {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration: none;
    color: #fdc02a; /** bright mustard **/
}
.text a:hover {
    color: var(--color-mustard);
    text-decoration: none;
    text-decoration-color: var(--color-mustard);
}

.bg-beige .text a, .link-red a {
    color: var(--color-red);
    text-decoration: none;
    text-decoration-color: var(--color-red);
}
.bg-beige .text a:hover, .link-red a:hover {
    color: var(--color-teal);
    text-decoration: none;
    text-decoration-color: var(--color-teal);
}

.link-teal a {
    color: var(--color-teal);
    text-decoration: none;
    text-decoration-color: var(--color-teal);
}
.link-teal a:hover {
    color: var(--color-red);
    text-decoration: none;
    text-decoration-color: var(--color-red);
}
.link-mustard a {
    filter: brightness(1.05);
    color: var(--color-mustard);
    text-decoration: none;
    text-decoration-color: var(--color-mustard);
}
.link-mustard a:hover {
     filter: brightness(1.0);
    color: var(--text-black);
    text-decoration: none;
    text-decoration-color: var(--text-black);
}

.no-wrap {
    white-space: nowrap;
}
.page-enable-event a {
    pointer-events: all !important;
    
}

.small {
    font-size: 0.8em;
    opacity: 0.8;
    line-height: 160%;
    font-weight: 400;
}

/* =====  MASTHEAD  ==================================================== */


.masthead-sub {
    text-transform: uppercase;
    color: white;
}
.grid {
  --columns: 12;
  --gutter: 2rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom: var(--gutter);
}

@media screen and (min-width: 768px) {
    .grid {
      --columns: 12;
      --gutter: 3rem;
      display: grid;
      grid-gap: var(--gutter);
      grid-template-columns: 1fr;
    }
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}



.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}


/* =====  GRID  ==================================================== */

.main {
    max-width: 100vw;
}

.hide-m {
    display: none;
}
.show-m {
    display: block;
}
@media all and (min-width: 768px) {
    .hide-m {
        display: block;
    }	
    .show-m {
        display: none;
    }
}


/* =====  ICONS  ==================================================== */

.ico_point {
    position: relative;
    width: 1px;
    left:50%;
}

.ico_point_circle {
    aspect-ratio: 1/1;
    border: 1px solid var(--color-m);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    width:30px;
}

.ico_point_line_1 {
    position: absolute;
    top:0%;
    background: var(--color-m);
    transform: translateX(-50%);
    width:50px;
    height: 1px;
}

.ico_point_line_2 {
    position: absolute;
    top:0;
    left:0%;
    transform: translateY(-50%);
    background: var(--color-m);
    height:50px;
    width: 1px; 
}
.frame-top {
    border-top:1px solid var(--color-blue-light);
}
.frame-left {
    border-left:1px solid var(--color-blue-light);
}
.frame-right {
    border-right:1px solid var(--color-blue-light);
}

.pad-top {
    padding-top: 150px;
}

@media all and (min-width: 992px) {
    .ico_point_circle {
        width:30px;
    }

    .ico_point_line_1 {
        width:50px;
        height: 1px;
    }

    .ico_point_line_2 {
        height:50px;
        width: 1px; 
    }	
}

/* =====  INTERACTION  ==================================================== */


figure.hover   {
    background: var(--color-m);
    position: relative;
    line-height: 0;
    margin: 0;
}

figure.hover img {
    opacity: 1;
    filter: brightness(0.9);
    transition: opacity 0.5s, filter 0.5s;
}

figure.hover:hover img {
    opacity: 0.5;
    /*mix-blend-mode: multiply;*/
    filter: saturate(0);
    filter:grayscale(100%);
    
    filter: contrast(300%);
    
    filter: hue-rotate(90deg);
    filter: invert(75%);
    filter: opacity(25%);
}

figure.hover figcaption  {
    
}


/* =====  OBSERVE  ==================================================== */

.doFade {
	transition:transform .6s, opacity .6s;
	transform:translateY(40px);
	opacity:0 !important;
}
.doFade figure {
    overflow: hidden;
}

.fadein {
	transform:translateY(0) !important;
	opacity:1 !important;
}

.fadein figure img {
	transform:scale(1) !important;
}

@media all and (min-width: 1600px) {
    .doFade {
        transition:transform .8s, opacity .8s;
        transform:translateY(30px);
    }
    .doFade figure img {
        transition:transform 1.4s;
        transform:scale(1);
    }
}

.endpage-pad {
    display: flex;
    align-items: flex-end;
}
.endpage-pad .holder-tess {
    width: 100%;
    overflow: hidden;
}
.endpage-pad .holder-tess img {
    transform: translateY(40%);
}


@media screen and (max-width: 767px) {
    .endpage-pad .holder-tess img {
        width: 160%;
    }
}
@media screen and (max-width: 540px) {
    .endpage-pad .holder-tess img {
        width: 200%;
    }
}

/* =====  FOOTER  ==================================================== */

.footer .logo {
    padding: 0;
    cursor: pointer;
    width:150px;
}
.footer_cta {
    position: relative; z-index: 1;
    color: #fff;
    text-align: center !important;
    background-color: var(--color-blue);
}
.footer_cta .text {
    color: #fff;
    font-weight: 500;
    width: 90%;
    margin: auto;
    
}


.footer-cta-left .block-type-button {
    margin-top: 1.5em;
}

@media all and (min-width: 768px) {
    .footer_cta .text {
        width: 90%;
    }
    .footer-cta-left {
        padding-bottom: 0;
    }
}
@media all and (min-width: 992px) {
    .footer_cta .text {
        width: 80%;
    }
    .footer .logo {
        width:160px;
    }
}
@media all and (min-width: 1200px) {
    .footer_cta .text {
        width: 90%;
    }
    .footer-holder {
        width: 80%;
        margin: auto;
    }
}
@media all and (min-width: 1600px) {
    .footer_cta .text {
        width: 90%;
    }
    .footer-holder {
        width: 70%;
        margin: auto;
    }
}
.footer {
  line-height: 1.6em;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}

.footer a {
  
}
.footer a:hover {
  color: var(--color-mustard);
}


.footer strong {
    font-weight: 600;
}
.footer-social {
    margin-top: 5px;
}
.social i {
    font-size: 2.25em !important;
}
.footer small {color: var(--color-blue-light); 
 font-size: 14px;    
}


.footer-links {
    line-height: 120%;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 25px;
    border-top: 1px solid var(--color-mustard);
    padding: 2em 0;
}
.footer-links li {
    margin-bottom: 8px;
}


@media (min-width: 768px) {
    
    .social i {
      font-size: 2em !important;
    }
    .footer-links {
        border: none;
        padding: 0;
    }
}

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 60rem) {
  /*body {
    --padding: 5rem;
  }*/

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}


#layout .text li {
    margin-left: 5px;
}


/* =====  FLICKITY  ==================================================== */


/* no circle */
.flickity-button {
  background: transparent;
}
.flickity-button:hover {
  background: transparent;
}
.flickity-button:hover .flickity-button-icon {
  fill: var(--color-teal);
}
/* big previous & next buttons */
.flickity-prev-next-button {
  width: 40px;
  height: 40px;
  background: transparent;
}
/* icon color */
.flickity-button-icon {
  fill: var(--color-mustard);
}
/* hide disabled button */
.flickity-button:disabled {
  display:none;
}
/* position outside */
.flickity-prev-next-button.previous {
  left: -28px;
}
.flickity-prev-next-button.next {
  right: -28px;
}

/* position dots up a bit */
.flickity-page-dots {
    bottom: -20px;
    /*display: none;*/
}
/* dots are lines */
.flickity-page-dots .dot {
  width: 6px;
  height: 6px;
  opacity: 0.6;
  background: #333;
    padding: 0;
}
.flickity-page-dots .dot.is-selected {
  background: white;
}

@media screen and (max-width: 539px) {
    .flickity-page-dots .dot {
        width: 8px;
        height: 8px;
    }
}
@media screen and (min-width: 768px) {
    .flickity-page-dots {
        bottom: -15px;
        display: none;
    }
    .flickity-prev-next-button.previous {
      left: -30px;
    }
    .flickity-prev-next-button.next {
      right: -30px;
    }
}
@media screen and (min-width: 992px) {
    .flickity-prev-next-button.previous {
      left: -40px;
    }
    .flickity-prev-next-button.next {
      right: -40px;
    }
}
@media screen and (min-width: 1400px) {
    .flickity-prev-next-button.previous {
      left: -80px;
    }
    .flickity-prev-next-button.next {
      right: -80px;
    }
}
.slider-partners .flickity-prev-next-button {
    display: none;
}


/* =====  BLOCKS CUSTOMS  ==================================================== */

.block-type-list {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
.img-caption {
    color: inherit;
    font-size: 0.9em;
}

/* =====  SUBMENU  ==================================================== */

.sub-menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    border-bottom: 1px solid white;
    padding-bottom: 1.5em;
    margin-bottom: -1px;
    gap: 30px;
}

@media screen and (max-width: 539px) {
    .sub-menu {
        gap: 0px;
        flex-direction: column;
    }
}
.sub-menu a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.3s;
    opacity: 0.6;
}
.sub-menu a:hover {
    text-decoration: none;
    color: white;
    opacity: 1;
}
.sub-menu a strong {
    font-weight: 700 !important;
}
.sub-menu .active a {
    opacity: 1;
    cursor: default;
}
.sub-pagination{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0px;
}
.sub-pagination a {
    text-decoration: none;
    text-transform: uppercase;
}
.sub-pagination span {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}
.sub-pagination a span {
    color: var(--color-teal);
}
.sub-pagination a span:hover {
    color: var(--color-red);
}

/* =====  LIGHTBOX CUSTOM  ==================================================== */


/*#lightbox  {
    position: fixed !important;
    top:50% !important;
    transform: translateY(-50%);
    
}
#lightbox .lb-outerContainer {
    width:80vw !important; 
    max-width: 50em;
    background: none;
    position: relative;

}

#lightbox .lb-dataContainer {
    width:100vw !important; 
    max-width: 50em;
}*/
#lightbox .lb-close {
    position: fixed !important; 
    top:0;
    display: none;
}

#lightbox{
    height: 100vh !important;
  
}
.lightbox{
    /*height: 100% !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    border: 10px solid red;*/
}
#lightbox .lb-outerContainer {
    top: 45%;
    transform: translateY(-50%);
    opacity: 1;
    align-self: center;
}
#lightbox .lb-dataContainer {
    position: absolute;
    width: 100% !important;
    background: rgba(0,0,0,0.5);
    
    left: 0; bottom: 0px;
    transform: translateX(0%);
    padding-top: 15px 0px 25px 0px;
}

#lightbox .lb-image {
    border: 1px solid white !important;
}
#lightbox .lb-details {
    padding-top: 10px;
    padding-bottom: 25px;
    display: flex;
    gap:10px;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
#lightbox .lb-dataContainer .lb-caption {
    text-align: center;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    font-family: var(--font-regular) !important;
    line-height: 150%;
    font-size: 16px;
    font-weight: 400  !important;
    width: 100%;  
}
#lightbox .lb-dataContainer .lb-number {
    text-align: center;
}

@media screen and (min-width: 768px) {
    
    #lightbox .lb-dataContainer .lb-caption {
        text-align: center;
        padding: 0px;
        width: 70%;
        margin: auto;
    }
    #lightbox .lb-dataContainer .lb-number {
        padding: 0px;
    }
    #lightbox .lb-details {
        padding-bottom: 30px;
    }
}
@media screen and (min-width: 1600px) {
    
    #lightbox .lb-dataContainer .lb-caption {
        width: 60%;
    }
    #lightbox .lb-details {
        padding-bottom: 40px !important;
    }
}



/** TILES **/

.tile-white {
    background:url("../images/tile-white.gif") repeat !important;
    background-color: #fff;
}


