:root {
  --font-size-xxl: 82px;
  --font-size-xl: 64px;
  --font-size-ll: 48px;
  --font-size-l: 28px;
  --font-size-m: 24px;
  --font-size-s: 18px;
  --font-size-xs: 14px;

  --color-yellow: yellow;
  --color-yellow-opaque: rgba(255, 255, 1, 0.85);
  --color-orange: #fff;
  --color-khaki: #fff;
  --color-green: #fff;
  --color-blue: #fff;
  --color-pink: #fff;

  --margin-main: 20px;
  --margin-main-double: 40px;

  --drukwide: drukwide;
  --delagothic: SyncopateBold;
  --lexendzetta: LexendZetta;
}

* {

  font-family: SuisseIntl, Helvetica, sans-serif;
  -webkit-tap-highlight-color: transparent;
}


/* Don't delete this */
body {
  background-color: white;
  font-size: var(--font-size-m);
  font-weight: bold;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.mobileElem {
  display: none;
}

.desktopElem {
  display: block;
}


/* general classes */

.df {
  display: flex;
}
.df-aic {
  display: flex;
  align-items: center;
}

.df-jcsb {
  display: flex;
  justify-content: space-between;
}

.bigTitle {
  font-size: 64px;
  margin-bottom: 20px;
}

.mediumTitle {
  font-size: 48px;
  margin-bottom: 20px;
}


.arrowElem img {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  /* transform: translateY(2px); */
}




.leftArrow, .rightArrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.goBack {
  cursor: pointer;
}















.unPublicImage {
  filter: blur(3px);
}

#container {
  margin-top: 0 !important;
  min-height: 100%;
  padding: 0 20px;
}



/* utilities */
.oakvilleButton {
  text-transform: lowercase;
  border: 2px solid black;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
  font-weight: bold;
  font-size: var(--font-size-s);
  background-color: yellow;
}

.borderButton {

  border: 2px solid black;
  width: fit-content;
  padding: 6px 15px;
  border-radius: 51px;
  background-color: black;
  color: white;
}

.borderButton img {
  filter: invert(1)
}


.smallButton {
  border: 2px solid black;
  border-radius: 50px;
  padding: 3px 20px;
  display: inline-block;
  font-weight: bold;
  font-size: var(--font-size-s);
  background-color: yellow;
}


.width-1000 {
  width: 100%;
  max-width: 1000px;
}

.margin-100 {
  margin: 100px var(--margin-main);
}

.margin-main {
  margin: var(--margin-main)
}

.cutOut {
  height: 10px;
  width: 10px;
  background-color: white;
  position: absolute;
}

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

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

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

.font-l {
  font-size: var(--font-size-l);
}

.font-s {
  font-size: var(--font-size-s);
}

.font-xs {
  font-size: var(--font-size-xs);
}



a:has(.backContainer) {
  display: inline-block;
}

.backContainer {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 20px;
  width: fit-content;
  margin-bottom: 50px;
}

.backContainer .leftImg {
  width: 20px;
}

.backContainer .leftImg img {
  rotate: 180deg;
}






/* header */
header {
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--margin-main);
  position: fixed;
  background-color: white;
  z-index: 1000;
  /* height: 125px; */
}

.mainNavigation {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid black;
  font-size: var(--font-size-m);
  height: 100%;
}

.headerLogo {
  text-transform: uppercase;
  line-height: 1em;
  font-size: var(--font-size-m);
}

.headerLogoImage {
  height: calc(100% - var(--margin-main)*2);
  position: absolute;
}

.headerLogoGif {
  height: 79px;
  position: absolute;
}

.rightNav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  font-weight: bold;
}

.navGroup {
  display: flex;
  justify-content: right;
  align-items: flex-start;
  width: 1000px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.navGroupHeader {
  cursor: pointer;
  padding: 0;
}

.navGroupLinks {

  width: 240px;
  background-color: white;
  overflow: hidden;
  max-height: 0;
  /* transition: max-height .5s ease; */
  padding-left: 30px;
}

.smallHelper {
  height: 10px;
}

.navGroupLink{
  margin-top: 10px;

}

.oneHeaderGroup.shopHeader {

  width: fit-content;
}

.shopHeader .navElem {
  padding-right: 0;
}



.oneHeaderGroup.active .navGroupHeader {
  border: 2px solid black;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
  font-weight: bold;
}
.oneHeaderGroup.active .navGroupLinks { 
  max-height: 1000px;
}

.oneHeaderGroup {
  width: 185px;
  position: relative;
  margin: 10px 0;

  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.navGroupHeader,
.navElem {
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 5px 30px;
  width: fit-content;
}



/* footer */
footer {
  font-size: var(--font-size-s);
  padding: var(--margin-main) !important;
  margin-top: 100px !important;
}

.footerInner {
  width: 100%;
  border-top: 1px solid black;
  padding-top: var(--margin-main);
  display: flex;
  justify-content: left;
  column-gap: 170px;
  row-gap: 100px;
  flex-wrap: wrap;
}

.footerSection {
  display: flex;
  flex-direction: column;
  gap: var(--margin-main);
}

.footerSection.nlFooter {
  width: 400px;
}


.ctct-form-text,
.ctct-gdpr-text
{
  display: none !important;
}

.ctct-form-defaults {
  padding: 0 !important;
}

#email_address_0,
#first_name_0,
#last_name_0 {

  border-radius: 30px;
  border: 1px solid black;
  width: 250px !important;
}

#email_address_field_0,
#first_name_field_0,
#last_name_field_0 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;

}

.ctct-form-button {
  border-radius: 30px !important;
  
}

.ctct-form-label {
  margin-bottom: 0 !important;
  transform: translateX(12px);

}

div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
  height: 36px !important;
}

div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
  padding: 10px !important;
}

/* #success_message_0 {
  display: block !important;
} */

div.ctct-form-embed form.ctct-form-custom div.ctct-form-field {
  margin: 0 0 12px !important;
}

div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header {

  font-size: 18px !important;

}

.ctct-form-footer {
  display: none !important;
}






.nlInputHolder {
  background-color: white;
  color: black;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid black;
  margin-bottom: 10px;

  cursor: pointer;
}


.nlInput {
  border: none;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.nlInput:focus {
  outline: none !important;
}

#nlRegister {
  background-color: black;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  width: 100%;
  font-weight: bold;
  font-size: 18px;

  cursor: pointer;
}














/* header slider */
.headerSlider {
  margin-top: 125px;
  /* width: calc(100% - 40px);
  transform: translateX(20px); */
  margin-bottom: 50px;
}
.lpSlide {
  display: flex !important;
  gap: var(--margin-main);
}


.lpVideoContainer {
  margin: 50px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.lpVideoContainer video {
  max-width: 1000px;
}

.lpSlideBody {
    font-size: var(--font-size-l);

    overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      line-clamp: 5;
      -webkit-box-orient: vertical;
}

.lpSlide.slick-slide {
  width: calc(100vw - 200px);
  box-sizing: border-box;
}

.lpSlideImage {
  height: 500px;
  width: 70%;
  background-color: lightgray;
  position: relative;
}
.lpSlideImage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpSlideText {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--margin-main);
  margin-right: var(--margin-main);
}

.lpSlideTitle,
.lpSlideMore {
  font-size: var(--font-size-s);
}

.lpSlideImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpSlideTag {
  position: absolute;
  left: 0;
  top: 0
}


/* lp banner */
.lpBanner {
  padding: var(--margin-main);
  margin: 100px 0;
  width: 100%;
  transition: all .25s ease;
}

.lpBannerClose {
  display: none;
  cursor: pointer;
}

.lpBanner.open {
  background-color: var(--color-yellow-opaque);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: var(--margin-main);
  margin: 0;
  z-index: 1000;
}

.lpBanner.open .lpBannerClose {
  display: block;
  position: fixed;
  top: var(--margin-main);
  left: var(--margin-main);
  padding: var(--margin-main);
}

.lpBanner.open .lpBannerImage {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}

.lpBannerLearnMore {
  display: none;
  position: fixed;
  bottom: calc(var(--margin-main) + 30px);
  right: calc(var(--margin-main) + 30px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lpBanner.open .lpBannerLearnMore {
  display: flex;
}

.lpBanner.open .lpBannerTag {
  display: none;
}

.lpBannerImage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 75px;
  background-color: lightgray;
  box-sizing: border-box;
  box-shadow: 10px 10px black;
}

.lpBannerImageElem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lpBannerImage .lpBannerTag {
  position: absolute;
}

.lpBannerTag {
  cursor: pointer;
}

/* .lpBannerImage:after {
  content: "";
  background: black;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 10px;
  width: calc(100% - 10px);
} */



/* events */
.eventsSection {
  /* padding: 0 var(--margin-main); */
}

.eventsHeader {
  align-items: flex-end;
  border-bottom: 1px solid black;
  padding-bottom: var(--margin-main);
}

.eventRow {
  border-bottom: 1px solid black;
  padding: 10px 0;
  align-items: center;
}

.eventDate {
  width: 100px;
}

.eventTitle {
  width: 800px;
}

.eventTags {
  width: 200px;
}

.eventMore {
  cursor: pointer;
}



/* lp article */
.lpArticle {
  display: flex !important;
  justify-content: center;
  gap: var(--margin-main);

  max-width: 1200px;
  margin: 50px auto;
}

.lpArticleTag {
  text-transform: lowercase;
}

.lpArticleImage {
  
  height: 500px;
  width: 70%;
  background-color: lightgray;
}

.lpArticleImage img{
    width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0 -90px;
}

.lpArticleText {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--margin-main);
  margin-right: var(--margin-main);
}

.lpArticleMore {
  font-size: var(--font-size-s);
}



/* donate banner */
.donateBanner {
  text-transform: uppercase;
  font-size: var(--font-size-xl);
  text-align: center;
  font-family: var(--drukwide);
}



/* news */
.newsHeader {
  margin-bottom: var(--margin-main);
}

.newsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--margin-main);
  justify-content: left;
}

.newsContainer a {
  width: calc(25% - var(--margin-main));
  min-width: 300px;
}

.newsElem {
  /* width: calc(25% - var(--margin-main)); */
  /* min-width: 300px; */
}

.newsImage {
  display: block;
  background-color: lightgray;
  height: 500px;
  margin-bottom: var(--margin-main);
}

.newsImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsTitle {
  text-transform: uppercase;
}



/* programs */
.programsSection {
  margin: 100px 0;
}

.programsHeader {
  margin: 0 var(--margin-main);
  margin-bottom: var(--margin-main);
}

.programsHeaderMore {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.programsHeaderMore .leftArrow {
  rotate: 180deg;
  /* margin-bottom: 6px; */
}

.programsElem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--margin-main);
  margin-left: var(--margin-main);
}

.programsElemImage {
  height: 400px;
  width: 100%;
  background-color: lightgray;
  /* aspect-ratio: 2/2; */
}
.programsElemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programsSlide.slick-slide {
  width: calc(33.33vw - var(--margin-main));
}




/* calendar / collection */

.generalContainer {
  width: calc(100% - var(--margin-main-double));
  margin: 125px auto 0;
  padding-top: 20px;
  /* padding: 0 var(--margin-main); */
  height: 200px;
}

.yearContainer {
  display: none;
}


.firstCalInfo {
  font-size: var(--font-size-s);
}

.timeFilterHolder, .collFilterHolder {
  font-size: 36px;
  font-weight: bold;
  padding: 20px 0;

  display: flex;
  justify-content: start;
  gap: 50px;
}

.timeFilterHolder {
  font-size: 48px;

}

.collFilterHolder {
  font-size: 36px;
}

.oneTime, .oneCollFilter {

  opacity: 0.4;
  cursor: pointer;
  /* font-family: var(--drukwide); */
}


.oneTime.active,
.oneCollFilter.active 
{
  opacity: 1;
}

.calButtons {
  margin-bottom: 30px;
}

.calList {
  margin-bottom: 70px;
  position: relative;
}

.calList::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: black;
}

.calOuterElem {
  border-bottom: 1px solid black;
}

/* .calOuterElem:first-of-type {
  border-top: 1px solid black;
} */


.eventCatButton {
  opacity: 1;
  cursor: pointer;
}

.eventCatButton.filtered {
  opacity: 0.6;
}

.eventCatButton.filtered.active {
  opacity: 1;
}



.calElem {
  /* gap: 10px; */
  padding: 6px 0;
  align-items: center;
}


.calElemColor {

}

.calElemInnerColor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid black;
  
}
.catColorButton {
  border: 2px solid black;
  border-radius: 30px;
  border: 2px solid black;
  width: 160px;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  font-size: var(--font-size-s);


}




.calElemWDay {
  text-transform: uppercase;
  flex: 0 0 100px;
}

.calElemDate {
  flex: 0 0 100px;

}
.calElemTitle {
  flex: 1 0 100px;

}

.calElemTime {
  flex: 0 0 250px;

}
.calElemColor {
  flex: 0 0 100px;
}
.calElemColorHome {
  flex: 0 0 300px;
}
.calElemMore {
  /* flex: 0 0 -1; */
  display: flex;
  align-items: center;
}

.mobileNavigation {
  display: none;
}








/* MOBILE */
@media screen and (max-width: 1000px) {

  .mobileElem {
    display: block;

  }

  .desktopElem {
    display: none;
  }  
  
  
  .navGroupLinks {
    width: 300px;
    
  }

  .oneHeaderGroup.active .navGroupLinks {
    padding-bottom: 50px;
  }

    .calElemTitle img {
      margin-left: 10px;
      height: 20px;
      padding-top: 2px;
    }
  
  
  .newsSection {
      margin-left: 0;
      margin-right: 0;
    }
  
  
    .programsHeader {
      margin-left: 0;
      margin-right: 0;
  
    }
  
    .programsElem {
      margin-left: 0;
    }


        .lpSlide.slick-slide {
          width: calc(85vw);
          box-sizing: border-box;
          margin-right: 20px;
        }




  .calOuterElem {
    padding: 10px 0;
  }
  .mobCalElem {
    display: flex;
    justify-content: space-between;
  }

  .mobCalLink {
    display: flex;
    justify-content: flex-end;
    height: 20px;
  }

  .mobCalText {
      padding: 5px 0;
  }
  .mobCalText img {
      margin-left: 10px;
      height: 20px;
      padding-top: 2px;
  }

  .mobCalendarFlexer {
    display: flex;
  }

  .mobCalendarArrow {
    width: 20px;
  }

  .mobCalendarFirst {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .mobCalInfo {
    flex: 1 0 100px;
  }

  .mobCalDate {
    flex: 0 0 100px;
  }


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

  .mobCalArrow{
    flex: 0 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  
  .mobCalArrow img {
    width: 20px;
    height: 28px;
  }

  .mobCalendarText {
    display: flex;
    gap: 20px;
  }


  .mobCalTitle {
    margin-bottom: 10px;
  }




  .timeFilterHolder {
    font-size: 36px;
    gap: 20px;
  }



  .eventCatButton {
    margin-bottom: 5px;
  }




  .headerSlider {
      margin-top: 125px;
      width: 100vw;
      /* transform: translateX(-20px); */
    }

  .lpBanner {
      padding: unset;
    }


    .eventsSection {
        padding: 0 var(--margin-main);
    }







  .mobileNavigation {
    display: block;
    padding-top: var(--margin-main);
    padding-bottom: var(--margin-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;

    border-bottom: 1px solid black;
  }
  
  .headerLogoGif {
    position: relative;
  }
  
  .mobileMenuButton {
    cursor: pointer;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 42px;
    transition: all .25s;
  }

  .mobileNavigation.active .mobileMenuButton {
    transform: rotate(45deg);
  }

  .rightNav {
    align-items: flex-end;
    justify-content: center;
    
    gap: 0;
    display: block;
  }

  .mobileNavigationOverlay {
    /* display: none; */
    position: fixed;
    top: 100px;
    left: 100%;
    height: calc(100% - 100px);
    width: 100%;
    background-color: white;
    z-index: 0;
    transition: all .25s;
  }

  .mobileNavigation.active .mobileNavigationOverlay {
    left: 0;
  }

  .navGroupHeader, .navElem {
    padding-left: 30px;
    margin-bottom: 0;
  }

  .mobileMenuItems {
    font-size: var(--font-size-l);
    margin-top: var(--margin-main);
    margin-left: var(--margin-main);
  }

  .oneHeaderGroup {
    max-width: unset;
  }

  .lpVideoContainer video {
    max-width: 1000px;
    width: 100vw;
  }

  .lpSlide {
    display: flex !important;
    gap: var(--margin-main);
    flex-direction: column;
  }

  .lpSlideText {
    width: calc(100% - 65px);
  }

  .lpSlideImage {
    width: 100%;
    height: unset;
  }

  .lpBannerImage {
    height: 150px;
  }

  .eventRow {
    gap: var(--margin-main);
  }

  .lpArticle {
    flex-direction: column;
    padding: var(--margin-main);
  }

  .lpArticleImage,
  .lpArticleText {
    width: 100%;
  }

  .newsContainer {
    flex-direction: column;
    gap: 50px;
  }

  .newsElem {
    width: 100%;
  }

  .programsSlide.slick-slide {
    width: calc(100vw - 50px);
  }

  .footerInner {
    width: 100%;
    border-top: 1px solid black;
    padding-top: var(--margin-main);
    display: flex;
    justify-content: left;
    column-gap: 100px;
    row-gap: 50px;
    flex-wrap: wrap;
    flex-direction: column;
  }



  .ctct-form-label {
    flex: 0 0 200px ;
  }

  .ctct-form-element {
    flex: 1 0 200px ;
  }

    .footerSection.nlFooter {
      width: 100%;
    }

    .newsContainer a {
      width: unset;
      min-width: unset;
    }

}


@media screen and (max-width: 800px) {


  .timeFilterHolder, .collFilterHolder {
    flex-direction: column;
    gap: 0;
  }


}