@charset "UTF-8";
/*!
 * Theme Name: tcc
 * Theme URI: 
 * Author: Lensco
 * Author URI: http://lensco.be
 * */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body, form, ol, ul, li, dl, dt, dd, td, th, tr, fieldset {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, address {
  margin: 0 0 1em 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  margin-bottom: 1em;
}
ol > li {
  margin-left: 2em;
}

img, fieldset {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}

th {
  text-align: center;
}

tbody th {
  text-align: left;
}

header, footer, section, nav, aside, article, figure, figcaption {
  display: block;
}

:focus:not(:focus-visible),
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0 !important;
}

textarea {
  resize: vertical;
}

@font-face {
  font-family: "Headings";
  src: url("fonts/Fraunces.ttf") format("truetype");
  font-weight: 1 1000;
}
@font-face {
  font-family: "BodyCopy";
  src: url("fonts/SourceSansPro-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "BodyCopy";
  src: url("fonts/SourceSansPro-Bold.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --font-family-headings: "Headings", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-default: "BodyCopy", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
  --color-red: #E70155;
  --color-blue: #12488C;
  --color-yellow: #F8AF00;
  --color-four: #30BBD5;
  --color-text: #262E3C;
  --color-page-bg: #fff;
}

:root {
  --layout-max-width: 1200px;
  --content-padding: 1.1666666667rem;
  --grid-gutter: 1.5238095238rem;
  --grid-margin: 1.5rem;
}
@media (min-width: 375px) {
  :root {
    --content-padding: 1.3333333333rem;
  }
}
@media (min-width: 768px) {
  :root {
    --content-padding: 1.5238095238rem;
  }
}
@media (min-width: 992px) {
  :root {
    --content-padding: 2.2857142857rem;
  }
}

.icon {
  fill: currentColor;
  height: 1em;
  width: 1em;
  vertical-align: -0.15em;
  letter-spacing: 0;
  flex-shrink: 0;
}

body,
html {
  font: 21px var(--font-family-default);
  line-height: 1.4;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  background: var(--color-page-bg);
  color: var(--color-text);
  letter-spacing: var(--font-letter-spacing);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1199px) {
  body,
  html {
    font-size: 18px;
  }
}

h1,
h2 {
  font-family: var(--font-family-headings);
  font-variation-settings: "WONK" 0, "SOFT" 100, "opsz" 60;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 1em;
  line-height: 1;
}
p + h1,
p + h2,
p + h3 {
  margin-top: 2rem;
}

h1 {
  font-size: 2.8571428571rem;
  color: var(--color-red);
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.2222222222rem;
  }
}
@media (max-width: 374px) {
  h1 {
    font-size: 1.7777777778rem;
  }
}

h2 {
  font-size: 2.2857142857rem;
  margin-bottom: 0.4em;
}

h3 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  -webkit-touch-callout: none;
}
a:hover {
  text-decoration: none;
}

hr {
  border: 0;
  border-bottom: 1px solid #ddd;
  margin: 2rem 0;
}

.main ul,
.main ol {
  margin: 0 0 1.5em;
  line-height: 1.3;
}
.main ul li {
  margin: 0 0 0.6em 0;
  padding: 0 0 0 1.25rem;
  position: relative;
}
.main ul li:before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0.5em;
}
.main ol li {
  margin: 0 0 0.6em 1.25rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--grid-gutter) / -2);
  margin-right: calc(var(--grid-gutter) / -2);
}
.row.flex-align-center {
  align-items: center;
}
.row > * {
  flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--grid-margin);
  padding-left: calc(var(--grid-gutter) / 2);
  padding-right: calc(var(--grid-gutter) / 2);
}
.row > .col-shrink {
  flex: 0;
}
.row > .col-grow {
  flex-grow: 1;
}
.row.inline > * {
  margin-bottom: 0;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (max-width: 575px) {
  .row-xs > * {
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .row-sm > * {
    flex-basis: 100%;
  }
  .col-gutter-sm {
    display: none;
  }
}
@media (max-width: 991px) {
  .row-md > * {
    flex-basis: 100%;
  }
  .col-gutter-md {
    display: none;
  }
}
@media (max-width: 1200px) {
  .row-lg > * {
    flex-basis: 100%;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body .main {
  margin-bottom: auto;
}

.section {
  padding: 2em 0;
}

.section-content {
  max-width: calc(var(--layout-max-width) + var(--content-padding));
  padding: 0 var(--content-padding);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section-content {
    max-width: 500px;
  }
}

.page-content {
  max-width: 36em;
}

.logo {
  font-family: var(--font-family-headings);
  font-variation-settings: "opsz" 24;
  font-weight: 400;
  font-size: 1.0476190476rem;
}
.logo img {
  height: 2.380952381rem;
}
@media (max-width: 991px) {
  .logo {
    font-size: 1.2222222222rem;
  }
  .logo img {
    height: 1.7777777778rem;
  }
}

.main-header {
  line-height: 1;
  padding: 2rem 0;
  font-family: var(--font-family-headings);
  font-variation-settings: "WONK" 0, "SOFT" 100, "opsz" 21;
  font-weight: 400;
}
.main-header .section-content {
  display: flex;
  align-items: flex-end;
}
.main-header .logo {
  flex-grow: 1;
  margin-bottom: -0.1em;
}
.main-header .menu {
  display: flex;
  align-items: center;
}
.main-header .menu a {
  margin: 0 0 0 1.8em;
  color: var(--color-blue);
}
.main-header .menu a:hover {
  border-bottom: 2px solid;
}
.main-header a {
  text-decoration: none;
}
.main-header .language-link {
  color: var(--color-red);
}
.main-header .menu-trigger-icon {
  display: none;
}
.main-header .menu-facebook {
  color: var(--color-blue);
  font-size: 1.5238095238rem;
  margin: 0 0 -0.15em 2rem;
}
@media (max-width: 991px) {
  .main-header {
    padding: 1.5rem 0;
  }
  .main-header .language-link {
    font-size: 1.7777777778rem;
  }
  .main-header .language-link .label {
    display: none;
  }
  .main-header .menu-trigger-icon {
    display: block;
    font-size: 1.3333333333rem;
    padding: 0.2222222222rem;
    margin-left: 0.75rem;
    background: var(--color-blue);
    color: #fff;
    border-radius: 99px;
  }
  .main-header .menu-facebook {
    display: none;
  }
  .main-header .main-menu {
    position: fixed;
    z-index: 99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-red);
    padding: 3rem 0 0;
  }
  .main-header .main-menu.closed {
    display: none;
  }
  .main-header .main-menu a {
    color: #fff;
  }
  .main-header .main-menu .menu {
    align-items: normal;
    flex-direction: column;
  }
  .main-header .main-menu .menu a {
    display: block;
    text-align: center;
    margin: 0.5rem 1rem;
    padding: 0.75rem 0;
  }
  .main-header .main-menu .menu-trigger-icon {
    position: absolute;
    right: var(--content-padding);
    top: 1.5rem;
    background: #fff;
    color: var(--color-blue);
  }
}

.button {
  display: inline-block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  font-weight: bold;
  background: var(--color-blue);
  color: #fff;
  transition: all ease 0.2s;
  border-radius: 99px;
}
.button:hover {
  transform: translateY(2px);
}

.main-footer {
  padding: 5rem 0 3rem;
  background: url(images/nazar.svg) no-repeat right bottom;
}
.main-footer p {
  line-height: 1.3;
}
.main-footer a {
  text-decoration: none;
}
.main-footer .socials .icon {
  font-size: 1.1428571429rem;
  margin-bottom: 0.3em;
}
@media (max-width: 991px) {
  .main-footer {
    padding: 4rem 0 2rem;
  }
}

.section-hero {
  padding: 5em 0 14em;
  position: relative;
}
.section-hero h1 img {
  height: 0.7em;
  animation: wave 3s infinite linear;
  transform-origin: 70% 70%;
}
.section-hero a {
  color: var(--color-blue);
}
.section-hero .hero-graphic {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 55%;
  max-width: 52.380952381rem;
}
.section-hero .section-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-hero {
    padding-top: 3em;
  }
}
@media (max-width: 767px) {
  .section-hero .hero-graphic {
    width: auto;
    height: 13em;
  }
}

@keyframes wave {
  30% {
    transform: rotate(0deg);
  }
  5%, 15% {
    transform: rotate(14deg);
  }
  10% {
    transform: rotate(-8deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  25% {
    transform: rotate(10deg);
  }
}
.section-taallessen {
  padding: 8em 0;
  background: var(--color-blue);
  color: #fff;
}
.section-taallessen h2 {
  color: var(--color-yellow);
}
.section-taallessen h3 {
  margin: 0.9rem 0;
}
.section-taallessen .graphic {
  max-width: 100%;
  border-radius: 50%/2em;
}
@media (max-width: 991px) {
  .section-taallessen {
    padding: 6em 0;
  }
}

.section-jongerenwerking {
  padding: 8em 0;
  background: var(--color-red);
  color: #fff;
  text-align: center;
}
.section-jongerenwerking .main-title {
  font-size: 1.5238095238rem;
  color: var(--color-yellow);
}
.section-jongerenwerking .subtitle {
  font-weight: 400;
  margin-bottom: 4rem;
}
.section-jongerenwerking .row {
  text-align: left;
  margin: 0 0 3rem;
}
.section-jongerenwerking .row > :first-child {
  text-align: right;
}
.section-jongerenwerking .graphic {
  width: 80%;
  display: block;
  margin: auto;
  border-radius: 50%;
}
.section-jongerenwerking .button {
  background: var(--color-yellow);
  color: var(--color-text);
}
@media (max-width: 767px) {
  .section-jongerenwerking .row > :first-child {
    text-align: left;
  }
}

.section-activiteiten {
  background: var(--color-four);
  padding: 6em 0;
  position: relative;
}
.section-activiteiten .graphic {
  position: absolute;
  right: 0;
  left: 50%;
  top: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .section-activiteiten {
    padding-top: 0;
  }
  .section-activiteiten .graphic {
    position: static;
    height: 60vw;
    margin-bottom: 4em;
  }
}