/* Fonts */

@font-face {
    font-family: 'bebas_neueregular';
    src: url('../../assets/fonts/bebas_neue-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bebas_neue-webfont.woff') format('woff'),
         url('../../assets/fonts/bebas_neue-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../../assets/fonts/AvenirNext-Regular-08.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../../assets/fonts/AvenirNext-Bold-01.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* TAT CSS Base */

/* BASE */

html {
	width: 100%; height: 100%; margin: 0; padding: 0; box-sizing: border-box; overflow-x: hidden;
    -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; font-size: 100%;
    background: #ffffff;
}

body { 
	width: 100%; min-height: 100%; margin: 0; padding: 0; box-sizing: border-box;
	color: #444444; font-family: sans-serif; font-size: 1em; line-height: 1.5em; overflow-x: hidden;
	/*-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Fix for webkit rendering */
	text-rendering: optimizeLegibility; text-rendering: geometricPrecision;
}

body.mobile { text-rendering: optimizeSpeed;}
html.no-scroll,
html.no-scroll body { overflow: hidden;  }
body.mobile.modal-open { position: fixed; }

div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, del, em, img, small, strong, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, main {
	margin: 0; padding: 0; border: 0; outline: 0; background: transparent; box-sizing: border-box; 
}									

div, article, aside, footer, header, hgroup, main, menu, nav, section { display: block; }

*[hidden] { display: none; }

a { text-decoration: none; }
a { color: #000; }
a:hover { color: #000; text-decoration: none; outline: 0; }
a:active { outline: 0; }
a:link { -webkit-tap-highlight-color: #000; } 

hr { height: 0px; border: 0; border-top: 1px solid #ccc; margin: 0.75rem 0; padding: 0; }

img { border: 0; max-width: 100%; height: auto; }
img, 
a img,
td, 
td img { vertical-align: middle; } 

p { margin: 0 0 1.5rem 0; overflow-wrap: break-word; word-wrap: break-word; }
p:last-child { margin-bottom: 0; }

small { font-size: 0.8em; line-height: 1.5em; }
del { text-decoration: line-through; }
b, 
strong, 
th { font-weight: 700; }

select, 
input, 
textarea, 
button { color: #444; font-size: 1rem; }

input[type="search"] { -webkit-appearance: textfield; }
input[type="submit"], button { -webkit-appearance: none; }
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: middle; }

input, 
select, 
textarea, 
button { margin: 0; box-sizing: border-box; border: none; }

button { width: auto; overflow: visible; }

::-moz-focus-inner { padding: 0; border: 0; }
:focus { outline: 0; }

/*!
TAT CSS v1.0
*/

/* CONTAINERS */

[class*=tat-r],
[class*=tat-c],
[class*=tat-g],
[class*=tat-n]{ 
    display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex;
}

.tat-i {
	display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex;
}

/* Single row/column containers */
.tat-r { 
	-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
}
.tat-r-r { 
	-webkit-flex-flow: row-reverse nowrap; -ms-flex-flow: row-reverse nowrap; flex-flow: row-reverse nowrap;  
}
.tat-c { 
    -webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
}
.tat-c-r { 
	-webkit-flex-flow: column-reverse nowrap; -ms-flex-flow: column-reverse nowrap; flex-flow: column-reverse nowrap; 
}


/* Multiple rows/columns grids */
.tat-g {
    -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap;
    /* alignment horizontal */
	-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
    /* alignment vertical */        
    -webkit-align-content: flex-start; -ms-flex-line-pack: start; align-content: flex-start;  
}
.tat-g-r { 
	-webkit-flex-flow: row-reverse wrap; -ms-flex-flow: row-reverse wrap; flex-flow: row-reverse wrap;  
}
.tat-n { 
    -webkit-flex-flow: column wrap; -ms-flex-flow: column wrap; flex-flow: column wrap; 
}
.tat-n-r { 
	-webkit-flex-flow: column-reverse wrap; -ms-flex-flow: column-reverse wrap; flex-flow: column-reverse wrap; 
}

/* Alignments */
.tat-center {
	-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
}
.tat-left {
	-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
}
.tat-right {
	-webkit-justify-content: flex-end; -moz-justify-content: flex-end; justify-content: flex-end;
}
.tat-hspace {
	-webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between;
}
.tat-heven {
	-webkit-justify-content: space-around; -moz-justify-content: space-around; justify-content: space-around;
}
.tat-middle {
	-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
}
.tat-top {
	-ms-flex-align: start; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; 
}
.tat-bottom {
	-ms-flex-align: end; -webkit-box-align: end; -webkit-align-items: flex-end; align-items: flex-end; 
}
.tat-stretch {
	-ms-flex-align: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; align-items: stretch; 
}
.tat-vspace {
	-webkit-align-content: space-between; -ms-flex-line-pack: space-between; align-content: space-between; 
}

/* Self alignments */

.tat-s-top { 
	-webkit-align-self: flex-start; align-self: flex-start; 
}
.tat-s-bottom { 
	-webkit-align-self: flex-end; align-self: flex-end; 
}
.tat-s-middle {
	-webkit-align-self: center; align-self: center;
}
.tat-s-stretch {
	-webkit-align-self: stretch; align-self: stretch;
}

/* Containers - media queries */

@media screen and (min-width:35.5em){
	.tat-c-sm { 
    	-webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
	}
	.tat-c-r-sm { 
		-webkit-flex-flow: column-reverse nowrap; -ms-flex-flow: column-reverse nowrap; flex-flow: column-reverse nowrap; 
	}
	.tat-r-sm { 
		-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
	}
	.tat-r-r-sm { 
		-webkit-flex-flow: row-reverse nowrap; -ms-flex-flow: row-reverse nowrap; flex-flow: row-reverse nowrap;  
	}
	.tat-g-sm {
	    -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap;  
	}
	.tat-g-r-sm {
	    -webkit-flex-flow: row-reverse wrap; -ms-flex-flow: row-reverse wrap; flex-flow: row-reverse wrap;  
	}
	.tat-n-sm {
	    -webkit-flex-flow: column wrap; -ms-flex-flow: column wrap; flex-flow: column wrap;  
	}
	.tat-n-r-sm {
	    -webkit-flex-flow: column-reverse wrap; -ms-flex-flow: column-reverse wrap; flex-flow: column-reverse wrap;  
	}
	.tat-center-sm {
		-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
	}
	.tat-left-sm {
		-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
	}
	.tat-right-sm {
		-webkit-justify-content: flex-end; -moz-justify-content: flex-end; justify-content: flex-end;
	}
	.tat-hspace-sm {
		-webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between;
	}
	.tat-heven-sm {
		-webkit-justify-content: space-around; -moz-justify-content: space-around; justify-content: space-around;
	}
	.tat-middle-sm {
		-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	}
	.tat-top-sm {
		-ms-flex-align: start; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; 
	}
	.tat-bottom-sm {
		-ms-flex-align: end; -webkit-box-align: end; -webkit-align-items: flex-end; align-items: flex-end; 
	}
	.tat-stretch-sm {
		-ms-flex-align: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; align-items: stretch; 
	}
	.tat-vspace-sm {
		-webkit-align-content: space-between; -ms-flex-line-pack: space-between; align-content: space-between; 
	}
}
@media screen and (min-width:48em){
	.tat-c-md { 
    	-webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
	}
	.tat-c-r-md { 
		-webkit-flex-flow: column-reverse nowrap; -ms-flex-flow: column-reverse nowrap; flex-flow: column-reverse nowrap; 
	}
	.tat-r-md { 
		-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
	}
	.tat-r-r-md { 
		-webkit-flex-flow: row-reverse nowrap; -ms-flex-flow: row-reverse nowrap; flex-flow: row-reverse nowrap;  
	}
	.tat-g-md {
	    -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap;  
	}
	.tat-g-r-md {
	    -webkit-flex-flow: row-reverse wrap; -ms-flex-flow: row-reverse wrap; flex-flow: row-reverse wrap;  
	}
	.tat-n-md {
	    -webkit-flex-flow: column wrap; -ms-flex-flow: column wrap; flex-flow: column wrap;  
	}
	.tat-n-r-md {
	    -webkit-flex-flow: column-reverse wrap; -ms-flex-flow: column-reverse wrap; flex-flow: column-reverse wrap;  
	}
	.tat-center-md {
		-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
	}
	.tat-left-md {
		-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
	}
	.tat-right-md {
		-webkit-justify-content: flex-end; -moz-justify-content: flex-end; justify-content: flex-end;
	}
	.tat-hspace-md {
		-webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between;
	}
	.tat-heven-md {
		-webkit-justify-content: space-around; -moz-justify-content: space-around; justify-content: space-around;
	}
	.tat-middle-md {
		-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	}
	.tat-top-md {
		-ms-flex-align: start; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; 
	}
	.tat-bottom-md {
		-ms-flex-align: end; -webkit-box-align: end; -webkit-align-items: flex-end; align-items: flex-end; 
	}
	.tat-stretch-md {
		-ms-flex-align: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; align-items: stretch; 
	}
	.tat-vspace-md {
		-webkit-align-content: space-between; -ms-flex-line-pack: space-between; align-content: space-between; 
	}
}
@media screen and (min-width:64em){
	.tat-c-lg { 
    	-webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
	}
	.tat-c-r-lg { 
		-webkit-flex-flow: column-reverse nowrap; -ms-flex-flow: column-reverse nowrap; flex-flow: column-reverse nowrap; 
	}
	.tat-r-lg { 
		-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
	}
	.tat-r-r-lg { 
		-webkit-flex-flow: row-reverse nowrap; -ms-flex-flow: row-reverse nowrap; flex-flow: row-reverse nowrap;  
	}
	.tat-g-lg {
	    -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap;  
	}
	.tat-g-r-lg {
	    -webkit-flex-flow: row-reverse wrap; -ms-flex-flow: row-reverse wrap; flex-flow: row-reverse wrap;  
	}
	.tat-n-lg {
	    -webkit-flex-flow: column wrap; -ms-flex-flow: column wrap; flex-flow: column wrap;  
	}
	.tat-n-r-lg {
	    -webkit-flex-flow: column-reverse wrap; -ms-flex-flow: column-reverse wrap; flex-flow: column-reverse wrap;  
	}
	.tat-center-lg {
		-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
	}
	.tat-left-lg {
		-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
	}
	.tat-right-lg {
		-webkit-justify-content: flex-end; -moz-justify-content: flex-end; justify-content: flex-end;
	}
	.tat-hspace-lg {
		-webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between;
	}
	.tat-heven-lg {
		-webkit-justify-content: space-around; -moz-justify-content: space-around; justify-content: space-around;
	}
	.tat-middle-lg {
		-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	}
	.tat-top-lg {
		-ms-flex-align: start; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; 
	}
	.tat-bottom-lg {
		-ms-flex-align: end; -webkit-box-align: end; -webkit-align-items: flex-end; align-items: flex-end; 
	}
	.tat-stretch-lg {
		-ms-flex-align: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; align-items: stretch; 
	}
	.tat-vspace-lg {
		-webkit-align-content: space-between; -ms-flex-line-pack: space-between; align-content: space-between; 
	}
}
@media screen and (min-width:80em){
	.tat-c-xl { 
    	-webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
	}
	.tat-c-r-xl { 
		-webkit-flex-flow: column-reverse nowrap; -ms-flex-flow: column-reverse nowrap; flex-flow: column-reverse nowrap; 
	}
	.tat-r-xl { 
		-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
	}
	.tat-r-r-xl { 
		-webkit-flex-flow: row-reverse nowrap; -ms-flex-flow: row-reverse nowrap; flex-flow: row-reverse nowrap;  
	}
	.tat-g-xl {
	    -webkit-flex-flow: row wrap; -ms-flex-flow: row wrap; flex-flow: row wrap;  
	}
	.tat-g-r-xl {
	    -webkit-flex-flow: row-reverse wrap; -ms-flex-flow: row-reverse wrap; flex-flow: row-reverse wrap;  
	}
	.tat-n-xl {
	    -webkit-flex-flow: column wrap; -ms-flex-flow: column wrap; flex-flow: column wrap;  
	}
	.tat-n-r-xl {
	    -webkit-flex-flow: column-reverse wrap; -ms-flex-flow: column-reverse wrap; flex-flow: column-reverse wrap;  
	}
	.tat-center-xl {
		-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
	}
	.tat-left-xl {
		-webkit-justify-content: flex-start; -moz-justify-content: flex-start; justify-content: flex-start;
	}
	.tat-right-xl {
		-webkit-justify-content: flex-end; -moz-justify-content: flex-end; justify-content: flex-end;
	}
	.tat-hspace-xl {
		-webkit-justify-content: space-between; -moz-justify-content: space-between; justify-content: space-between;
	}
	.tat-heven-xl {
		-webkit-justify-content: space-around; -moz-justify-content: space-around; justify-content: space-around;
	}
	.tat-middle-xl {
		-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	}
	.tat-top-xl {
		-ms-flex-align: start; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; 
	}
	.tat-bottom-xl {
		-ms-flex-align: end; -webkit-box-align: end; -webkit-align-items: flex-end; align-items: flex-end; 
	}
	.tat-stretch-xl {
		-ms-flex-align: stretch; -webkit-box-align: stretch; -webkit-align-items: stretch; align-items: stretch; 
	}
	.tat-vspace-xl {
		-webkit-align-content: space-between; -ms-flex-line-pack: space-between; align-content: space-between; 
	}
}

/* UNITS */

/* Flexible units */

.tat-f-0-1 {
	flex: 0 1 auto;
}

.tat-f-1-0 {
	flex: 1 0 auto;
}

.tat-f-1-1 {
	flex: 1 1 auto;
}

.tat-f-0-0 {
	flex: 0 0 auto;
}

.tat-f-0 {
	flex-grow: 0;
}
.tat-f-1 {
	flex-grow: 1;
}
.tat-f-2 {
	flex-grow: 2;
}
.tat-f-3 {
	flex-grow: 3;
}
.tat-f-4 {
	flex-grow: 4;
}
.tat-f-5 {
	flex-grow: 5;
}

.tat-f--0 {
	flex-shrink: 0;
}
.tat-f--1 {
	flex-shrink: 1;
}
.tat-f--2 {
	flex-shrink: 2;
}
.tat-f--3 {
	flex-shrink: 3;
}
.tat-f--4 {
	flex-shrink: 4;
}
.tat-f--5 {
	flex-shrink: 5;
}


/* Fixed width units */

[class*=tat-u]{ 
	flex-basis: auto;
}

.tat-u-0 { 
	flex-basis: 0; 
	width: 0;
}

.tat-u-a { 
	width: auto;
}

.tat-u-1-24 {
    width: 4.1667%;
}

.tat-u-1-12 {
    width: 8.3333%;
}

.tat-u-1-8 {
    width: 12.5000%;
}

.tat-u-1-7 {
	width: 14.2857%;
}

.tat-u-1-6 {
    width: 16.6667%;
}

.tat-u-1-5 {
    width: 20%;
}

.tat-u-5-24 {
    width: 20.8333%;
}

.tat-u-1-4 {
    width: 25%;
}

.tat-u-7-24 {
    width: 29.1667%;
}

.tat-u-1-3 {
    width: 33.3333%;
}

.tat-u-3-8 {
    width: 37.5000%;
}

.tat-u-2-5 {
    width: 40%;
}

.tat-u-5-12 {
    width: 41.6667%;
}

.tat-u-11-24 {
    width: 45.8333%;
}

.tat-u-1-2 {
    width: 50%;
}

.tat-u-13-24 {
    width: 54.1667%;
}

.tat-u-7-12 {
    width: 58.3333%;
}

.tat-u-3-5 {
    width: 60%;
}

.tat-u-5-8 {
    width: 62.5000%;
}

.tat-u-2-3 {
    width: 66.6667%;
}

.tat-u-17-24 {
    width: 70.8333%;
}

.tat-u-3-4 {
    width: 75%;
}

.tat-u-19-24 {
    width: 79.1667%;
}

.tat-u-4-5 {
    width: 80%;
}

.tat-u-5-6 {
    width: 83.3333%;
}

.tat-u-7-8 {
    width: 87.5000%;
}

.tat-u-11-12 {
    width: 91.6667%;
}

.tat-u-23-24 {
    width: 95.8333%;
}
	
.tat-u-1 {
    width: 100%;
}

@media screen and (min-width:35.5em){
	
	.tat-u-sm-0 { 
		flex-basis: 0; 
		width: 0;
	}
	
	.tat-u-sm-a { 
		width: auto;
	}

	.tat-u-sm-1-24 {
	    width: 4.1667%;
	}
	
	.tat-u-sm-1-12 {
	    width: 8.3333%;
	}
	
	.tat-u-sm-1-8 {
	    width: 12.5000%;
	}
	
	.tat-u-sm-1-7 {
		width: 14.2857%;
	}
	
	.tat-u-sm-1-6 {
	    width: 16.6667%;
	}
	
	.tat-u-sm-1-5 {
	    width: 20%;
	}
	
	.tat-u-sm-5-24 {
	    width: 20.8333%;
	}
	
	.tat-u-sm-1-4 {
	    width: 25%;
	}
	
	.tat-u-sm-7-24 {
	    width: 29.1667%;
	}
	
	.tat-u-sm-1-3 {
	    width: 33.3333%;
	}
	
	.tat-u-sm-3-8 {
	    width: 37.5000%;
	}
	
	.tat-u-sm-2-5 {
	    width: 40%;
	}
	
	.tat-u-sm-5-12 {
	    width: 41.6667%;
	}
	
	.tat-u-sm-11-24 {
	    width: 45.8333%;
	}
	
	.tat-u-sm-1-2 {
	    width: 50%;
	}
	
	.tat-u-sm-13-24 {
	    width: 54.1667%;
	}
	
	.tat-u-sm-7-12 {
	    width: 58.3333%;
	}
	
	.tat-u-sm-3-5 {
	    width: 60%;
	}
	
	.tat-u-sm-5-8 {
	    width: 62.5000%;
	}
	
	.tat-u-sm-2-3 {
	    width: 66.6667%;
	}
	
	.tat-u-sm-17-24 {
	    width: 70.8333%;
	}
	
	.tat-u-sm-3-4 {
	    width: 75%;
	}
	
	.tat-u-sm-19-24 {
	    width: 79.1667%;
	}
	
	.tat-u-sm-4-5 {
	    width: 80%;
	}
	
	.tat-u-sm-5-6 {
	    width: 83.3333%;
	}
	
	.tat-u-sm-7-8 {
	    width: 87.5000%;
	}
	
	.tat-u-sm-11-12 {
	    width: 91.6667%;
	}
	
	.tat-u-sm-23-24 {
	    width: 95.8333%;
	}
	
	.tat-u-sm-1 {
	    width: 100%;
	}
}


@media screen and (min-width:48em){
	
	.tat-u-md-0 { 
		flex-basis: 0; 
		width: 0;
	}
	
	.tat-u-md-a { 
		width: auto;
	}
		
	.tat-u-md-1-24 {
	    width: 4.1667%;
	}
	
	.tat-u-md-1-12 {
	    width: 8.3333%;
	}
	
	.tat-u-md-1-8 {
	    width: 12.5000%;
	}
	
	.tat-u-md-1-7 {
		width: 14.2857%;
	}
	
	.tat-u-md-1-6 {
	    width: 16.6667%;
	}
	
	.tat-u-md-1-5 {
	    width: 20%;
	}
	
	.tat-u-md-5-24 {
	    width: 20.8333%;
	}
	
	.tat-u-md-1-4 {
	    width: 25%;
	}
	
	.tat-u-md-7-24 {
	    width: 29.1667%;
	}
	
	.tat-u-md-1-3 {
	    width: 33.3333%;
	}
	
	.tat-u-md-3-8 {
	    width: 37.5000%;
	}
	
	.tat-u-md-2-5 {
	    width: 40%;
	}
	
	.tat-u-md-5-12 {
	    width: 41.6667%;
	}
	
	.tat-u-md-11-24 {
	    width: 45.8333%;
	}
	
	.tat-u-md-1-2 {
	    width: 50%;
	}
	
	.tat-u-md-13-24 {
	    width: 54.1667%;
	}
	
	.tat-u-md-7-12 {
	    width: 58.3333%;
	}
	
	.tat-u-md-3-5 {
	    width: 60%;
	}
	
	.tat-u-md-5-8 {
	    width: 62.5000%;
	}
	
	.tat-u-md-2-3 {
	    width: 66.6667%;
	}
	
	.tat-u-md-17-24 {
	    width: 70.8333%;
	}
	
	.tat-u-md-3-4 {
	    width: 75%;
	}
	
	.tat-u-md-19-24 {
	    width: 79.1667%;
	}
	
	.tat-u-md-4-5 {
	    width: 80%;
	}
	
	.tat-u-md-5-6 {
	    width: 83.3333%;
	}
	
	.tat-u-md-7-8 {
	    width: 87.5000%;
	}
	
	.tat-u-md-11-12 {
	    width: 91.6667%;
	}
	
	.tat-u-md-23-24 {
	    width: 95.8333%;
	}
	
	.tat-u-md-1 {
	    width: 100%;
	}
}


@media screen and (min-width:64em){
	
	.tat-u-lg-0 { 
		flex-basis: 0; 
		width: 0;
	}
	
	.tat-u-lg-a { 
		width: auto;
	}
	
	.tat-u-lg-1-24 {
	    width: 4.1667%;
	}
	
	.tat-u-lg-1-12 {
	    width: 8.3333%;
	}
	
	.tat-u-lg-1-8 {
	    width: 12.5000%;
	}
	
	.tat-u-lg-1-7 {
		width: 14.2857%;
	}
	
	.tat-u-lg-1-6 {
	    width: 16.6667%;
	}
	
	.tat-u-lg-1-5 {
	    width: 20%;
	}
	
	.tat-u-lg-5-24 {
	    width: 20.8333%;
	}
	
	.tat-u-lg-1-4 {
	    width: 25%;
	}
	
	.tat-u-lg-7-24 {
	    width: 29.1667%;
	}
	
	.tat-u-lg-1-3 {
	    width: 33.3333%;
	}
	
	.tat-u-lg-3-8 {
	    width: 37.5000%;
	}
	
	.tat-u-lg-2-5 {
	    width: 40%;
	}
	
	.tat-u-lg-5-12 {
	    width: 41.6667%;
	}
	
	.tat-u-lg-11-24 {
	    width: 45.8333%;
	}
	
	.tat-u-lg-1-2 {
	    width: 50%;
	}
	
	.tat-u-lg-13-24 {
	    width: 54.1667%;
	}
	
	.tat-u-lg-7-12 {
	    width: 58.3333%;
	}
	
	.tat-u-lg-3-5 {
	    width: 60%;
	}
	
	.tat-u-lg-5-8 {
	    width: 62.5000%;
	}
	
	.tat-u-lg-2-3 {
	    width: 66.6667%;
	}
	
	.tat-u-lg-17-24 {
	    width: 70.8333%;
	}
	
	.tat-u-lg-3-4 {
	    width: 75%;
	}
	
	.tat-u-lg-19-24 {
	    width: 79.1667%;
	}
	
	.tat-u-lg-4-5 {
	    width: 80%;
	}
	
	.tat-u-lg-5-6 {
	    width: 83.3333%;
	}
	
	.tat-u-lg-7-8 {
	    width: 87.5000%;
	}
	
	.tat-u-lg-11-12 {
	    width: 91.6667%;
	}
	
	.tat-u-lg-23-24 {
	    width: 95.8333%;
	}
	
	.tat-u-lg-1 {
	    width: 100%;
	}
}


@media screen and (min-width:80em){
	
	.tat-u-xl-0 { 
		flex-basis: 0; 
		width: 0;
	}
	
	.tat-u-xl-a { 
		width: auto;
	}
		
	.tat-u-xl-1-24 {
	    width: 4.1667%;
	}
	
	.tat-u-xl-1-12 {
	    width: 8.3333%;
	}
	
	.tat-u-xl-1-8 {
	    width: 12.5000%;
	}
	
	.tat-u-xl-1-7 {
		width: 14.2857%;
	}
	
	.tat-u-xl-1-6 {
	    width: 16.6667%;
	}
	
	.tat-u-xl-1-5 {
	    width: 20%;
	}
	
	.tat-u-xl-5-24 {
	    width: 20.8333%;
	}
	
	.tat-u-xl-1-4 {
	    width: 25%;
	}
	
	.tat-u-xl-7-24 {
	    width: 29.1667%;
	}
	
	.tat-u-xl-1-3 {
	    width: 33.3333%;
	}
	
	.tat-u-xl-3-8 {
	    width: 37.5000%;
	}
	
	.tat-u-xl-2-5 {
	    width: 40%;
	}
	
	.tat-u-xl-5-12 {
	    width: 41.6667%;
	}
	
	.tat-u-xl-11-24 {
	    width: 45.8333%;
	}
	
	.tat-u-xl-1-2 {
	    width: 50%;
	}
	
	.tat-u-xl-13-24 {
	    width: 54.1667%;
	}
	
	.tat-u-xl-7-12 {
	    width: 58.3333%;
	}
	
	.tat-u-xl-3-5 {
	    width: 60%;
	}
	
	.tat-u-xl-5-8 {
	    width: 62.5000%;
	}
	
	.tat-u-xl-2-3 {
	    width: 66.6667%;
	}
	
	.tat-u-xl-17-24 {
	    width: 70.8333%;
	}
	
	.tat-u-xl-3-4 {
	    width: 75%;
	}
	
	.tat-u-xl-19-24 {
	    width: 79.1667%;
	}
	
	.tat-u-xl-4-5 {
	    width: 80%;
	}
	
	.tat-u-xl-5-6 {
	    width: 83.3333%;
	}
	
	.tat-u-xl-7-8 {
	    width: 87.5000%;
	}
	
	.tat-u-xl-11-12 {
	    width: 91.6667%;
	}
	
	.tat-u-xl-23-24 {
	    width: 95.8333%;
	}
	
	.tat-u-xl-1 {
	    width: 100%;
	}
}

/* Other */
.tat-fill, 
.tat-img { 
	width: 100%; height: auto; 
}
.tat-contain { 
	max-width: 100%; width: auto; max-height: 100%; height: auto; 
}

/* Base */

html { min-width: 300px; }

body { font-family: 'Avenir Next', sans-serif; color: #000000; padding-top: 0; transition: padding-top 0.3s ease; }
body.menu-open { position: fixed; }

@media screen and (min-width: 80em) {
	html.no-scroll,
	body.no-scroll { overflow: hidden;  }
}

h1 { 
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 3rem; line-height: 3rem; 
	margin-bottom: 1.5rem; 
	text-transform: none; 
}
h2 { 
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 2rem; line-height: 2.5rem;
	margin-bottom: 1.5rem; 
}
h3 { 
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 1.5rem; line-height: 2rem;
	margin-bottom: 1.5rem; 
}
h4 { 
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 1.25rem; line-height: 1.5rem;
	margin-bottom: 1.5rem; 
}
h5 { 
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 1.25rem; line-height: 1.5rem;
}
h6 { 
	font-weight: 700;
	font-size: 1.25rem; line-height: 1.5rem; 
}


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.clickable  { cursor: pointer; }
.hidden { display: none; }

ul {
	margin-bottom: 1.5rem; 
	padding-left: 1.5rem;
}
@media screen and (min-width: 35.5em) {

}
@media screen and (min-width: 48em) {
	h1 { font-size: 4rem; line-height: 4.5rem; }
	h2 { font-size: 2.5rem; line-height: 3rem; margin-bottom: 1.5rem; }	
	h3 { font-size: 2rem; line-height: 2.5rem; margin-bottom: 1.5rem; }	
	h4 { font-size: 1.5rem; line-height: 2rem; margin-bottom: 1.5rem; }	
}
@media screen and (min-width: 64em) {

}
@media screen and (min-width: 80em) {

}

/* Layout & grids */

.side-1 { padding-left: 1.5rem; padding-right: 1.5rem; }
.side-1-2 {	padding-left: 0.75rem; padding-right: 0.75rem; }
.padding-1 { padding: 1.5rem; }
.padding-1-2 { padding: 0.75rem; }
.bottom-1 { padding-bottom: 1.5rem; }
.bottom-1-2 { padding-bottom: 0.75rem; }
.bottom-0 { padding-bottom: 0 !important; }
.top-1 { padding-top: 1.5rem; }
.top-1-2 { padding-top: 0.75rem; }
.pushdown-1 { margin-bottom: 1.5rem; }
.pushdown-1-2 { margin-bottom: 0.75rem; }
.pushup-1 { margin-top: 1.5rem; }
.pushup-1-2 { margin-top: 0.75rem; }

.padding-vertical {
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}	

.padding-horizontal {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

@media screen and (min-width: 48em) {
	.padding-horizontal {
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media screen and (min-width: 64em) {
	.padding-horizontal {
		padding-left: 10%;
		padding-right: 10%;
	}
}

/* Colors */

.white,
.has-white-background-color { background-color: #FFFFFF; }
.text-white,
.has-white-color { color: #FFFFFF; }

.black,
.has-black-background-color { background-color: #000000; color: #FFFFFF;	 }
.text-black,
.has-black-color { color: #000000; }

.coral,
.has-coral-background-color { background-color: #F76C69; }
.text-coral,
.has-coral-color { color: #F76C69; }
	
.coral-light,
.has-coral-light-background-color { background-color: #FCEDEC; }
.text-coral-light,
.has-coral-light-color { color: #F4C9AB; }

.grey-light,
.has-grey-light-background-color { background-color: #F8F8F8; }
.text-grey-light,
.has-grey-light-color { color: #F8F8F8; }


a,
.wp-block-column p a {
	color: #000000;
	transition: color 0.3s ease;
}
a:hover,
.wp-block-column p a:hover {
	color: #F76C69;
	text-decoration: none;
}
p a {
	color: #F76C69;
}
p a:hover {
	
}


.has-black-background-color a {
	color: #F4C9AB;
}
.has-black-background-color a:hover {
	color: #F76C69;
}
/* Inputs */

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date] { 
	height: 2rem; 
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.25rem 0.5rem;
	border: 2px solid #000000;
	background-color: transparent;
	font-size: 1.125rem;
	line-height: 1.25rem;
	color: #000000;
	transition: border 0.3s ease, background-color: 0.3s ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus, 
input[type=password]:focus,
input[type=date]:focus {
	border: 2px solid #FCEDEC;
}

input[type="text"]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled, 
input[type=password]:disabled,
input[type=date]:disabled {
	color: #aaaaaa;	
}

input.has-input:invalid,
select.has-input:invalid {
	border: 2px solid #e10909;
}

.has-black-background-color input[type=text],
.has-black-background-color input[type=email],
.has-black-background-color input[type=tel],
.has-black-background-color input[type=number],
.has-black-background-color input[type=password],
.has-black-background-color input[type=date],
.has-black-background-color select,
.has-black-background-color textarea { 
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
}
.has-black-background-color .form-group label {
	background-color: #000000;
	color: #FFFFFF;
}

::placeholder {
	color: #cccccc;
}

textarea { 
	min-height: 7rem; 
	height: 10rem;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.5rem;
	border: 2px solid #000000;
	background-color: transparent;
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #000000;
	transition: border 0.3s ease, background-color: 0.3s ease;
}
textarea:focus { 
	border: 1px solid #FCEDEC;
}

select { 
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	height: 2rem; 
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.25rem 0.5rem;
	border: 2px solid #000000;
	background-color: transparent;
	font-size: 1.125rem;
	line-height: 1.25rem;
	color: #000000;
	transition: border 0.3s ease, background-color: 0.3s ease;
}
select:focus { 
	border: 2px solid #FCEDEC;
}


label {
	display: block;
	font-size: 0.8rem;
	line-height: 1.2rem;
	padding: 0.15rem 0.25rem;
}
.form-group {
	position: relative;	
}
.form-group label {
	position: absolute;
	height: 1.2rem;
	top: -0.6rem;
	left: 0.5rem;
	background-color: white;
}

.button,
.wp-block-button__link,
input[type="submit"],
#cookiewlaw-accept {
	display: inline-block;
	height: 4rem;
	margin-bottom: 0.5rem;
	padding: 1rem 3rem;
	border: 2px solid #000000;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 1.25rem;
	line-height: 1.75rem;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
#cookiewlaw-accept:hover { 
	background-color: #000000;
	color: #FFFFFF;
	text-decoration: none;
}

input[type="submit"],
#cookiewlaw-accept {
	height: 2rem;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0 3rem;
	font-size: 1.125rem; font-weight: 700;
	text-transform: none;
	cursor: pointer;
}

.has-black-background-color .button,
.has-black-background-color input[type="submit"],
.has-black-background-color .wp-block-button__link,
#cookiewlaw-accept {
	color: #FFFFFF;
	background-color: #000000;
	border: 2px solid #FFFFFF;
	text-decoration: none;
}
.has-black-background-color .button:hover,
.has-black-background-color input[type="submit"]:hover,
.has-black-background-color .wp-block-button__link:hover,
#cookiewlaw-accept:hover {
	background-color: #FFFFFF;
	color: #000000;
}

/* modals */

.modal { 
	opacity:0;
	position: fixed; height: 100%; width: 100%; background-color: rgba(0,0,0,0.3); z-index: 900; 
	display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex;
	-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap;  
	-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;
}
.modal-content { 
	position: relative; z-index: 901; width: 90%; max-width: 600px; max-height: 80%; height: auto; padding: 1rem; background: white;
}
.modal-close { 
	position: absolute; top:0px; right: 0px; 
	width: 1.5rem; height: 1.5rem;
	cursor: pointer; 
}


/* tooltips */

.tooltip-parent { position: relative; }
.tooltip-parent:hover .tooltip, .tooltip-on { display: block !important; }
.tooltip { display: none; position: absolute; top: 100%; z-index: 800; }


/* Login */

form#login{ max-width: 24rem; box-sizing: border-box; padding: 2rem; background-color: #FFFFFF; text-align: center; }
form#login p { margin: 0; }
form#login p.status{ display: none; }
#login-submit {	width: 100%; }
#login input[type="text"],
#login input[type="email"],
#login input[type="password"] { }


/* Cookie law */

#cookielaw { 
	position: fixed; bottom: 0; left: 0; right: 0;
	width: 100%; min-height: 3rem; z-index: 999;  opacity: 0;
	background: #000000; color: #FFFFFF; padding: 0 0.75rem;
	display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex;
	-webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; 
	-ms-flex-align: center; -webkit-align-items: center; -webkit-box-align: center; align-items: center; 
	-webkit-justify-content: center; -moz-justify-content: center; justify-content: center;	
}
#cookielaw-msg { 
	flex: 1 1 auto;
	padding: 0.75rem;
	font-size: 0.8rem; line-height: 1.3rem;
}
#cookielaw-btn { 
	flex: 0 0 auto;
	padding: 0.75rem; 
}
#cookiewlaw-accept {
	margin: 0;
}

@media screen and (min-width: 35.5em) {
	#cookielaw { 
		-webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap; 
	}
}

/* Animations */


.animated { 
  -webkit-animation-duration: 0.7s; animation-duration: 0.7s;
  -webkit-animation-fill-mode: both; animation-fill-mode: both;
}

.animated.infinite { -webkit-animation-iteration-count: infinite;  animation-iteration-count: infinite; }

.delay500 { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }

@keyframes fadeIn {
  from { opacity: 0; }
  100% { opacity: 1; }
}
.fade-in { animation-duration: 0.5s; animation-fill-mode: both; animation-name: fadeIn; }

@keyframes fadeOut {
  from { opacity: 1; }
  100% { opacity: 0; }
}
.fade-out { animation-duration: 0.5s; animation-fill-mode: both; animation-name: fadeOut; }

/* langs */

.sitelang-fr .lang-en,
.sitelang-fr .lang-it {
	display: none;
}

.sitelang-en .lang-it,
.sitelang-en .lang-fr {
	display: none;
}

.sitelang-it .lang-en,
.sitelang-it .lang-fr {
	display: none;
}

/* Header */

#header { 
	height: 5.5rem;
	background-color: white;
}

@media screen and (min-width: 48em) {
	.admin-bar #header { top: 32px; }
}

#logo { 
	position: relative;
	z-index: 90; 
}
#logo-link { display: block; }
#header #zbo-logo {
	display: block;
	height: 4rem; width: auto;
	transition: height 0.3s ease;
}

#menu-lang {
	position: relative;
	z-index: 10;
	margin-right: 0.5rem;
	width: 2rem;
	height: 3rem;
	overflow: hidden;
	font-family: 'bebas_neueregular'; font-weight: 400; 
	font-size: 1.1rem;
	line-height: 1.6rem;
	text-transform: uppercase;
}

#menu-lang .lang-current {
	display: block;
	width: 2rem;
	height: 3rem;
	padding: 0.75rem 0;
	text-align: center;		
}

#menu-lang.opened {
	overflow: visible;
}

#menu-lang .lang-list {
	padding: 0;
	margin: 0;
	list-style: none;
	background: #F8F8F8;
}

#menu-lang .lang-li {
	display: block;
	width: 2rem;
	height: 1.5rem;
}

#menu-lang .lang-li .lang-switch {
	display: block;
	width: 2rem;
	height: 1.5rem;
	text-align: center;
}

body.menu-open #zbo-logo path.logo-black {
	fill: #FFFFFF;
}

#menu-open { 
	position: relative; overflow: hidden; z-index: 90; 
	width: 2rem; height: 3rem; 
	margin-right: 0.5rem;
	cursor: pointer;
}

#menu-open.toggled { position: fixed; right: 0.75rem; top: 1.25rem; }
.admin-bar #menu-open.toggled { top: calc( 1.25rem + 46px ); }

#menu-open .bar {
    background-color: #000000; display: block; width: 2rem; height: 2px; position: absolute; top: calc( 1.5rem - 2px ); right: 0rem; border-radius: 2px;
    transition: top 0.3s linear, right 0.3s linear, transform 0.3s ease, color 0.1s ease; 
    transform-origin: center center;
}
#menu-open .bar:first-child { 
	transform: translateY(-7px); 
}
#menu-open .bar:last-child { 
	transform: translateY(7px); 
}

#menu-open.toggled .bar { 
	background-color: #FFFFFF;
	transform: rotate(-45deg) translateY(0px) translateX(0px); 
	transition: top 0.3s linear, right 0.3s linear, transform 0.3s ease, color 0.1s ease 0.2s; 
}
#menu-open.toggled .bar:last-child { 
	transform: rotate(45deg) translateY(0px) translateX(0px); 
}
#menu-open.toggled .bar:first-child { 
	transform: rotate(45deg) translateY(0px) translateX(0px);  
}


#menu { 
	position: fixed; left: 110%; top: 0; bottom: 0; 
	width: 100%; height: 100%; 
	z-index: 80;
	overflow-y: auto;
	padding: 6.5rem 1.5rem 1.5rem 1.5rem;
}
#menu.opened { left: 0; }

#menu-main { 
	padding: 0; width: 100%;
	margin-bottom: 0;
	transform: translateY(2rem);
	transition: transform 0.3s ease;
}
#menu.opened #menu-main {
	transform: translateY(0);
}
#menu .menu-item { 
	position: relative; 
	margin-bottom: 0; 
	list-style: none;
}
#menu a { 
	display: block; padding: 0; 
	color: #FFFFFF; 
	text-transform: uppercase;	
	font-family: 'Avenir Next';
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 700;
	transition: color 0.3s linear; 
}
#menu .menu-item.current-menu-item > a { color: #F76C69; }
#menu .menu-item:hover > a { color: #F76C69; text-decoration: none; }

.sub-menu {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

#menu .menu-item:hover .sub-menu,
#menu .menu-item:focus .sub-menu {
	max-height: 200px;
	padding: 0 0 1.5rem 0;
}

#menu .sub-menu .menu-item {
	flex: 0 0 auto;
}

#menu .sub-menu .menu-item a { 
	font-size: 1rem; line-height: 1.5rem;
	padding: 0.5rem; 
}

@media screen and (min-width: 48em) {
	#menu-main { 
		max-width: 34rem;
	}
	#menu a { 
		font-size: 3rem;
		line-height: 3.5rem;
	}
	#menu .sub-menu .menu-item {
		min-width: 50%;
	}
}
@media screen and (min-width: 64em) {
	
	body.sticky-fixed {
		padding-top: 4.5rem;
	}
	#header {
		height: 6.5rem;
		transition: height 0.3s ease, padding 0.3s ease;
	}
	#header.scrolled { 
		position: fixed; top:0; left: 0; right: 0;
		z-index: 999;
		height: 4.5rem;
		padding: 0 0.75rem;
	}
	.admin-bar #header.scrolled { 
		top: 32px;
	}
	
	#header #zbo-logo {
		height: 5rem;
	}
	#header.scrolled #zbo-logo {
		height: 3rem;
	}
	
	#menu-main { 
		max-width: 42rem;
	}
	#menu a { 
		font-size: 4rem;
		line-height: 4.5rem;
	}
	
	#menu-open.toggled { 
		top: 1.75rem;
	}
			
}

/* Home */


/* Content */

.the-content {
	width: 100%;
	font-size: 1.125rem;
	line-height: 1.6875rem;
}

.the-section {
	width: 100%;
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
}

/* news */

.news-filter {
	height: 2rem;
	margin-bottom: 1rem;
	padding: 0 1.5rem;
	border-collapse: collapse;
	font-size: 1.125rem; font-weight: 700;
	text-transform: none;	
}

.news-filter.current {
	background: #000000;
	color: #FFFFFF;
}

.news-filter:not(:last-child) {
	border-right: none;
}

/* Footer */

#footer {}

#menu-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu-footer-menu .menu-item {
	list-style: none;
	padding: 0 0.5rem;
	font-size: 0.8rem;
}

#footer-social {
	
}

.footer-social-link {
	display: block;
	width: 2rem; height: 2rem;
	margin: 0.75rem 0.25rem;
}

.footer-social-svg {
	width: 100%;
	height: auto;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}
.footer-social-link:hover .footer-social-svg  {
	transform: rotate(360deg);
}	


/* Print */

.wp-block-audio figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.wp-block-audio audio {
    width: 100%;
    min-width: 300px
}

.editor-block-list__layout .reusable-block-edit-panel {
    align-items: center;
    background: #f8f9f9;
    color: #555d66;
    display: flex;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-size: 13px;
    top: -14px;
    margin: 0 -14px;
    padding: 8px 14px;
    position: relative;
    z-index: 7
}

.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel {
    margin: 0 -14px;
    padding: 8px 14px
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner {
    margin: 0 5px
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {
    margin-right: auto
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {
    margin-right: 8px;
    white-space: nowrap;
    font-weight: 600
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
    flex: 1 1 100%;
    font-size: 14px;
    height: 30px;
    margin: 4px 0 8px
}

.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
    flex-shrink: 0
}

@media (min-width:960px) {
    .editor-block-list__layout .reusable-block-edit-panel {
        flex-wrap: nowrap
    }

    .editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
        margin: 0
    }

    .editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
        margin: 0 0 0 5px
    }
}

.editor-block-list__layout .reusable-block-indicator {
    background: #fff;
    border-left: 1px dashed #e2e4e7;
    color: #555d66;
    border-bottom: 1px dashed #e2e4e7;
    top: -14px;
    height: 30px;
    padding: 4px;
    position: absolute;
    z-index: 1;
    width: 30px;
    right: -14px
}

.wp-block-button.aligncenter {
    text-align: center
}

.wp-block-button.alignright {
    text-align: right
}

.wp-block-categories.alignleft {
    margin-right: 2em
}

.wp-block-categories.alignright {
    margin-left: 2em
}

/* columns */

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width:48em) {
    .wp-block-columns {
        flex-wrap: nowrap
    }
}

.wp-block-column {
    flex: 1;
    flex-basis: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0.75rem;
}

.wp-block-column .wp-block-image {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;	
}

@media (min-width:35.5em) {
    .wp-block-column {
        flex-basis: 50%;
        flex-grow: 0
    }
}

/* cover */

.wp-block-cover, .wp-block-cover-image {
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 24rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.wp-block-cover-image.has-left-content, .wp-block-cover.has-left-content {
    justify-content: flex-start
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover-image.has-left-content .wp-block-cover-text, .wp-block-cover-image.has-left-content h2,
.wp-block-cover.has-left-content .wp-block-cover-image-text, .wp-block-cover.has-left-content .wp-block-cover-text,
.wp-block-cover.has-left-content h2 {
    margin-left: 0;
    text-align: left
}

.wp-block-cover-image.has-right-content, .wp-block-cover.has-right-content {
    justify-content: flex-end
}

.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover-image.has-right-content .wp-block-cover-text, .wp-block-cover-image.has-right-content h2,
.wp-block-cover.has-right-content .wp-block-cover-image-text, .wp-block-cover.has-right-content .wp-block-cover-text,
.wp-block-cover.has-right-content h2 {
    margin-right: 0;
    text-align: right
}

.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2, .wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text, .wp-block-cover h2 {
    color: #fff;
    font-size: 2em;
    line-height: 1.25;
    z-index: 1;
    margin-bottom: 0;
    max-width: 35.5rem;
    padding: 1.5rem;
    text-align: center
}

.wp-block-cover-image .wp-block-cover-image-text a, .wp-block-cover-image .wp-block-cover-image-text a:active,
.wp-block-cover-image .wp-block-cover-image-text a:focus, .wp-block-cover-image .wp-block-cover-image-text a:hover,
.wp-block-cover-image .wp-block-cover-text a, .wp-block-cover-image .wp-block-cover-text a:active,
.wp-block-cover-image .wp-block-cover-text a:focus, .wp-block-cover-image .wp-block-cover-text a:hover,
.wp-block-cover-image h2 a, .wp-block-cover-image h2 a:active, .wp-block-cover-image h2 a:focus,
.wp-block-cover-image h2 a:hover, .wp-block-cover .wp-block-cover-image-text a,
.wp-block-cover .wp-block-cover-image-text a:active, .wp-block-cover .wp-block-cover-image-text a:focus,
.wp-block-cover .wp-block-cover-image-text a:hover, .wp-block-cover .wp-block-cover-text a,
.wp-block-cover .wp-block-cover-text a:active, .wp-block-cover .wp-block-cover-text a:focus,
.wp-block-cover .wp-block-cover-text a:hover, .wp-block-cover h2 a,
.wp-block-cover h2 a:active, .wp-block-cover h2 a:focus, .wp-block-cover h2 a:hover {
    color: #fff
}

@media screen and (min-width: 48em) {
	.wp-block-cover {
		height: calc( 100vh - 5rem );
	}
	.wp-block-cover .wp-block-cover-text,
	.wp-block-cover h2 {
		font-size: 4rem;
		line-height: 4.5rem;
	}
}

.wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
    background-attachment: fixed
}

@supports (-webkit-overflow-scrolling:touch) {
    .wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
        background-attachment: scroll
    }
}

.wp-block-cover-image.has-background-dim:before, .wp-block-cover.has-background-dim:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: inherit;
    opacity: .5;
    z-index: 1
}

.wp-block-cover-image.has-background-dim.has-background-dim-10:before,
.wp-block-cover.has-background-dim.has-background-dim-10:before {
    opacity: .1
}

.wp-block-cover-image.has-background-dim.has-background-dim-20:before,
.wp-block-cover.has-background-dim.has-background-dim-20:before {
    opacity: .2
}

.wp-block-cover-image.has-background-dim.has-background-dim-30:before,
.wp-block-cover.has-background-dim.has-background-dim-30:before {
    opacity: .3
}

.wp-block-cover-image.has-background-dim.has-background-dim-40:before,
.wp-block-cover.has-background-dim.has-background-dim-40:before {
    opacity: .4
}

.wp-block-cover-image.has-background-dim.has-background-dim-50:before,
.wp-block-cover.has-background-dim.has-background-dim-50:before {
    opacity: .5
}

.wp-block-cover-image.has-background-dim.has-background-dim-60:before,
.wp-block-cover.has-background-dim.has-background-dim-60:before {
    opacity: .6
}

.wp-block-cover-image.has-background-dim.has-background-dim-70:before,
.wp-block-cover.has-background-dim.has-background-dim-70:before {
    opacity: .7
}

.wp-block-cover-image.has-background-dim.has-background-dim-80:before,
.wp-block-cover.has-background-dim.has-background-dim-80:before {
    opacity: .8
}

.wp-block-cover-image.has-background-dim.has-background-dim-90:before,
.wp-block-cover.has-background-dim.has-background-dim-90:before {
    opacity: .9
}

.wp-block-cover-image.has-background-dim.has-background-dim-100:before,
.wp-block-cover.has-background-dim.has-background-dim-100:before {
    opacity: 1
}

.wp-block-cover-image.alignleft, .wp-block-cover-image.alignright,
.wp-block-cover.alignleft, .wp-block-cover.alignright {
    max-width: 305px;
    width: 100%
}

.wp-block-cover-image:after, .wp-block-cover:after {
    display: block;
    content: "";
    font-size: 0;
    min-height: inherit
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-cover-image:after, .wp-block-cover:after {
        content: none
    }
}

.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright, .wp-block-cover.aligncenter,
.wp-block-cover.alignleft, .wp-block-cover.alignright {
    display: flex
}

.wp-block-cover__video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,
.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,
.wp-block-embed.alignleft, .wp-block-embed.alignright {
    max-width: 360px;
    width: 100%
}

.wp-block-embed {
    margin-bottom: 1em
}

.wp-block-embed figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
    position: relative
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
    content: "";
    display: block;
    padding-top: 50%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
    padding-top: 42.85%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
    padding-top: 50%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
    padding-top: 75%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
    padding-top: 100%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper:before {
    padding-top: 66.66%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
    padding-top: 200%
}

.wp-block-file {
    margin-bottom: 1.5em
}

.wp-block-file.aligncenter {
    text-align: center
}

.wp-block-file.alignright {
    text-align: right
}

.wp-block-file .wp-block-file__button {
    background: #32373c;
    border-radius: 2em;
    color: #fff;
    font-size: 13px;
    padding: .5em 1em
}

.wp-block-file a.wp-block-file__button {
    text-decoration: none
}

.wp-block-file a.wp-block-file__button:active, .wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited {
    box-shadow: none;
    color: #fff;
    opacity: .85;
    text-decoration: none
}

.wp-block-file * + .wp-block-file__button {
    margin-left: .75em
}

/* gallery */

.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0 0.75rem;
}

.wp-block-gallery .blocks-gallery-image, 
.wp-block-gallery .blocks-gallery-item {
	position: relative;
    display: flex;
    z-index: 1;
    flex-grow: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5rem 0.75rem;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.wp-block-gallery .blocks-gallery-image:hover, 
.wp-block-gallery .blocks-gallery-item:hover {
/* 	background-color: #f8f8f8; */
	z-index: 10;
}

	
.has-black-background-color .wp-block-gallery .blocks-gallery-image, 
.has-black-background-color .wp-block-gallery .blocks-gallery-item {	
	background-color: #000000;
}


.has-black-background-color .wp-block-gallery .blocks-gallery-image:hover, 
.has-black-background-color .wp-block-gallery .blocks-gallery-item:hover {	
/* 	background-color: #222222; */
}

.wp-block-gallery .blocks-gallery-image figure, .wp-block-gallery .blocks-gallery-item figure {
    margin: 0;
    height: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery .blocks-gallery-image figure, .wp-block-gallery .blocks-gallery-item figure {
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.wp-block-gallery .blocks-gallery-image img, .wp-block-gallery .blocks-gallery-item img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery .blocks-gallery-image img, .wp-block-gallery .blocks-gallery-item img {
        width: auto
    }
}

.wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
	opacity: 0;
}

.wp-block-gallery .blocks-gallery-image figcaption a, .wp-block-gallery .blocks-gallery-item figcaption a {
    display: block;
    width: 100%;
    height: 100%;
}


.wp-block-gallery .blocks-gallery-image figcaption img, .wp-block-gallery .blocks-gallery-item figcaption img {
    display: inline
}

.wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
    width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery.is-cropped .blocks-gallery-image a, .wp-block-gallery.is-cropped .blocks-gallery-image img,
    .wp-block-gallery.is-cropped .blocks-gallery-item a, .wp-block-gallery.is-cropped .blocks-gallery-item img {
        height: 100%;
        flex: 1;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
    width: 50%;
    height: calc( ( 100vw - 3rem ) / 2 );
}

.wp-block-gallery.columns-1 .blocks-gallery-image, .wp-block-gallery.columns-1 .blocks-gallery-item {
    width: 100%;
    height: calc( 100vw - 3rem );
}

@media screen and (min-width: 48em) {
	
	.wp-block-gallery .blocks-gallery-image, 
	.wp-block-gallery .blocks-gallery-item {
		padding: 1.5rem;
	}
	
	.wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
	    height: calc( ( 90vw - 1.5rem ) / 2 );
	}

	.wp-block-gallery.columns-1 .blocks-gallery-image, .wp-block-gallery.columns-1 .blocks-gallery-item {
		height: calc( 90vw - 1.5rem );
	}
	
    .wp-block-gallery.columns-3 .blocks-gallery-image, .wp-block-gallery.columns-3 .blocks-gallery-item {
        width: 33.33%;
        height: calc( ( 90vw - 1.5rem ) / 3 );
    }

    .wp-block-gallery.columns-4 .blocks-gallery-image, .wp-block-gallery.columns-4 .blocks-gallery-item {
        width: 25%;
        height: calc( ( 90vw - 1.5rem ) / 4 );
    }

    .wp-block-gallery.columns-5 .blocks-gallery-image, .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: 20%;
        height: calc( ( 90vw - 1.5rem ) / 5 );
    }

    .wp-block-gallery.columns-6 .blocks-gallery-image, .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: calc( 100% / 6 );
        height: calc( ( 90vw - 1.5rem ) / 6 );
    }

    .wp-block-gallery.columns-7 .blocks-gallery-image, .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: calc( 100% / 7 );
        height: calc( ( 90vw - 1.5rem ) / 7 );
    }

    .wp-block-gallery.columns-8 .blocks-gallery-image, .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: calc( 100% / 8 );
        height: calc( ( 90vw - 1.5rem ) / 8 );
    }

}

@media screen and (min-width: 64em) {
	
	.wp-block-gallery .blocks-gallery-image, 
	.wp-block-gallery .blocks-gallery-item {
		padding: 3rem;
	}
	
	
	.wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
	    height: calc( ( 80vw - 1.5rem ) / 2 );
	}

	.wp-block-gallery.columns-1 .blocks-gallery-image, .wp-block-gallery.columns-1 .blocks-gallery-item {
		height: calc( 80vw - 1.5rem );
	}
	
    .wp-block-gallery.columns-3 .blocks-gallery-image, .wp-block-gallery.columns-3 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 3 );
    }

    .wp-block-gallery.columns-4 .blocks-gallery-image, .wp-block-gallery.columns-4 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 4 );
    }

    .wp-block-gallery.columns-5 .blocks-gallery-image, .wp-block-gallery.columns-5 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 5 );
    }

    .wp-block-gallery.columns-6 .blocks-gallery-image, .wp-block-gallery.columns-6 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 6 );
    }

    .wp-block-gallery.columns-7 .blocks-gallery-image, .wp-block-gallery.columns-7 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 7 );
    }

    .wp-block-gallery.columns-8 .blocks-gallery-image, .wp-block-gallery.columns-8 .blocks-gallery-item {
        height: calc( ( 80vw - 1.5rem ) / 8 );
    }

}


.wp-block-gallery .blocks-gallery-item.has-add-item-button {
    width: 100%
}

.wp-block-gallery.alignleft, .wp-block-gallery.alignright {
    max-width: 305px;
    width: 100%
}

.wp-block-gallery.aligncenter, .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
    display: flex
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure {
    justify-content: center
}

/* image */

.wp-block-image {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-block-image img {
    max-width: 100%;
    width: 100%;
    min-width: 4rem;
}

.wp-block-image.aligncenter {
    text-align: center
}

.wp-block-image.alignfull img, .wp-block-image.alignwide img {
    width: 100%
}

.wp-block-image .aligncenter, .wp-block-image .alignleft, .wp-block-image .alignright,
.wp-block-image.is-resized {
    display: table;
    margin-left: 0;
    margin-right: 0
}

.wp-block-image .aligncenter > figcaption, .wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption, .wp-block-image.is-resized > figcaption {
    display: table-caption;
    caption-side: bottom
}

.wp-block-image .alignleft {
    float: left;
    margin-right: 1em
}

.wp-block-image .alignright {
    float: right;
    margin-left: 1em
}

.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto
}

.wp-block-image figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

/* latest comments */

.wp-block-latest-comments__comment {
    font-size: 15px;
    line-height: 1.1;
    list-style: none;
    margin-bottom: 1em
}

.has-avatars .wp-block-latest-comments__comment {
    min-height: 36px;
    list-style: none
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 52px
}

.has-dates .wp-block-latest-comments__comment, .has-excerpts .wp-block-latest-comments__comment {
    line-height: 1.5
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: 14px;
    line-height: 1.8;
    margin: 5px 0 20px
}

.wp-block-latest-comments__comment-date {
    color: #8f98a1;
    display: block;
    font-size: 12px
}

.wp-block-latest-comments .avatar, .wp-block-latest-comments__comment-avatar {
    border-radius: 24px;
    display: block;
    float: left;
    height: 40px;
    margin-right: 12px;
    width: 40px
}

/* latest posts */

.wp-block-latest-posts.alignleft {
    margin-right: 2em
}

.wp-block-latest-posts.alignright {
    margin-left: 2em
}

.wp-block-latest-posts.is-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none
}

.wp-block-latest-posts.is-grid li {
    margin: 0 16px 16px 0;
    width: 100%
}

@media (min-width:600px) {
    .wp-block-latest-posts.columns-2 li {
        width: calc(50% - 16px)
    }

    .wp-block-latest-posts.columns-3 li {
        width: calc(33.33333% - 16px)
    }

    .wp-block-latest-posts.columns-4 li {
        width: calc(25% - 16px)
    }

    .wp-block-latest-posts.columns-5 li {
        width: calc(20% - 16px)
    }

    .wp-block-latest-posts.columns-6 li {
        width: calc(16.66667% - 16px)
    }
}

.wp-block-latest-posts__post-date {
    display: block;
    color: #6c7781;
    font-size: 13px
}

/* media text */

.wp-block-media-text {
	width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.wp-block-media-text.is-stacked-on-mobile {
	align-items: center;
}

.wp-block-media-text .wp-block-media-text__media {
    padding: 0.75rem;
    width: 20%;
    flex-grow: 0;
    text-align: center;
}

.wp-block-column .wp-block-media-text .wp-block-media-text__media {
	width: 15%;
}
.wp-block-media-text .wp-block-media-text__content {
    word-break: break-word;
    padding: 0.75rem;
    width: 80%;
    flex-grow: 0;
}

.wp-block-media-text > figure > img, .wp-block-media-text > figure > video {
    max-width: 100%;
    width: auto;
    max-height: 10rem;
    height: auto;
}

@media (max-width:47.99em) {
    .wp-block-media-text.is-stacked-on-mobile {
        flex-wrap: wrap;
        text-align: center;
    }
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
	    width: 100%;
	}
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
	    width: 100%;
	}
}

/* p */

p.is-small-text {
    font-size: 0.9rem;
    line-height: 1.35rem
}

p.is-regular-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
}

p.is-large-text {
    font-size: 2rem;
    line-height: 2.75rem
}

p.is-larger-text {
    font-size: 3rem;
    line-height: 4rem
}


p.has-drop-cap:not(:focus):first-letter {
    float: left;
    font-size: 8.4em;
    line-height: .68;
    font-weight: 100;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
    font-style: normal
}

p.has-drop-cap:not(:focus):after {
    content: "";
    display: table;
    clear: both;
    padding-top: 14px
}

p.has-background {
    padding: 1.5rem
}

p.has-text-color a {
    color: inherit
}

/* pullquote */

.wp-block-pullquote {
    padding: 3em 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center
}

.wp-block-pullquote.alignleft, .wp-block-pullquote.alignright {
    max-width: 305px
}

.wp-block-pullquote.alignleft p, .wp-block-pullquote.alignright p {
    font-size: 20px
}

.wp-block-pullquote p {
    font-size: 28px;
    line-height: 1.6
}

.wp-block-pullquote cite, .wp-block-pullquote footer {
    position: relative
}

.wp-block-pullquote .has-text-color a {
    color: inherit
}

.wp-block-pullquote:not(.is-style-solid-color) {
    background: none
}

.wp-block-pullquote.is-style-solid-color {
    border: none
}

.wp-block-pullquote.is-style-solid-color blockquote {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 60%
}

.wp-block-pullquote.is-style-solid-color blockquote p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
    text-transform: none;
    font-style: normal
}

.wp-block-pullquote cite {
    color: inherit
}

/* quote */

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
    margin: 0 0 16px;
    padding: 0 1em
}

.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6
}

.wp-block-quote.is-large cite, .wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite, .wp-block-quote.is-style-large footer {
    font-size: 18px;
    text-align: right
}

/* separator */

.wp-block-separator.is-style-wide {
    border-bottom-width: 1px
}

.wp-block-separator.is-style-dots {
    background: none;
    border: none;
    text-align: center;
    max-width: none;
    line-height: 1;
    height: auto
}

.wp-block-separator.is-style-dots:before {
    content: "\00b7 \00b7 \00b7";
    color: #191e23;
    font-size: 20px;
    letter-spacing: 2em;
    padding-left: 2em;
    font-family: serif
}

p.wp-block-subhead {
    font-size: 1.1em;
    font-style: italic;
    opacity: .75
}

.wp-block-table.has-fixed-layout {
    table-layout: fixed;
    width: 100%
}

.wp-block-table.aligncenter, .wp-block-table.alignleft, .wp-block-table.alignright {
    display: table;
    width: auto
}

.wp-block-table.is-style-stripes {
    border-spacing: 0;
    border-collapse: inherit;
    border-bottom: 1px solid #f3f4f5
}

.wp-block-table.is-style-stripes tr:nth-child(odd) {
    background-color: #f3f4f5
}

.wp-block-table.is-style-stripes td {
    border-color: transparent
}

/* columns */

.wp-block-text-columns, .wp-block-text-columns.aligncenter {
    display: flex
}

.wp-block-text-columns .wp-block-column {
    padding: 0.75rem
}

.wp-block-text-columns.columns-2 .wp-block-column {
    width: 50%
}

.wp-block-text-columns.columns-3 .wp-block-column {
    width: 33.33333%
}

.wp-block-text-columns.columns-4 .wp-block-column {
    width: 25%
}

/* others */

pre.wp-block-verse {
    white-space: nowrap;
    overflow: auto
}

.wp-block-video {
    margin-left: 0;
    margin-right: 0
}

.wp-block-video video {
	display: block;
    max-width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-video [poster] {
        -o-object-fit: cover;
        object-fit: cover
    }
}

.wp-block-video.aligncenter {
    text-align: center
}

.wp-block-video figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.has-small-font-size {
    font-size: 0.9rem;
    line-height: 1.35rem
}

.has-normal-font-size, .has-regular-font-size {
    font-size: 1.125rem;
    line-height: 1.6875rem;
}

.has-medium-font-size {
    font-size: 1.5rem;
    line-height: 2.25rem
}

.has-large-font-size {
    font-size: 2rem;
    line-height: 2.75rem
}

.has-huge-font-size, .has-larger-font-size {
    font-size: 3rem;
    line-height: 4rem
}



/* custom blocks */

.wp-block-zbo-section {
	width: 100%;
	overflow: hidden;
}

.wp-block-zbo-section > p {
	width: 100%;
	padding-left: 0.75rem; padding-right: 0.75rem;
}


.wp-block-zbo-section > ul,
.wp-block-zbo-section > ol {
	width: 100%;
	padding-left: 2.25rem; padding-right: 0.75rem;
}
.wp-block-zbo-section > ul.wp-block-gallery {
	padding-left: 0.75rem;
}

.wp-block-zbo-section > h1,
.wp-block-zbo-section > h2,
.wp-block-zbo-section > h3,
.wp-block-zbo-section > h4,
.wp-block-zbo-section > h5,
.wp-block-zbo-section > h6 {
	width: 100%;
	padding-left: 0.75rem; padding-right: 0.75rem;
	text-align: left;
}

.wp-block-zbo-section.narrow > * {
	max-width: 60rem;
}

.wp-block-zbo-section.has-video-background {
	position: relative;
}
.wp-block-zbo-section.has-video-background > * {
	z-index: 15;
}
.wp-block-zbo-section.has-video-background video {
	z-index: 10;
}
.wp-block-zbo-section.has-video-background:after {
	display: block;
	content: ' ';
	position: absolute;
	z-index: 11;
	top:0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.5);
}
.wp-block-zbo-section-media {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
}

.wp-block-zbo-section-media .section-media {
	flex: 0 0 auto;
	width: 100%;
	min-height: 20rem;
	height: 50vw;
	background-repeat: no-repeat;
	background-position: center center;
}

.wp-block-zbo-section-media .section-text {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 20rem;
	padding: 1.5rem;
}


.wp-block-zbo-section-media .section-text > p, 
.wp-block-zbo-section-media .section-text > h1, 
.wp-block-zbo-section-media .section-text > h2, 
.wp-block-zbo-section-media .section-text > h3,
.wp-block-zbo-section-media .section-text > h4,
.wp-block-zbo-section-media .section-text > h5,
.wp-block-zbo-section-media .section-text > h6 {
	width: 100%;
}

@media screen and (min-width: 48em) {
	.wp-block-zbo-section-media {
		flex-direction: row;
	}
	.wp-block-zbo-section-media.media-right {
		flex-direction: row-reverse;
	}
	.wp-block-zbo-section-media .section-media {
		width: 50%;
		min-height: 30rem;
		height: auto;
	}
	.wp-block-zbo-section-media .section-text {
		width: 50%;
		padding: 3rem;
	}
	
	.wp-block-zbo-section-media.is-style-sixty .section-media {
		width: 40%;
	}
	.wp-block-zbo-section-media.is-style-sixty .section-text {
		width: 60%;
	}
}

.wp-block-zbo-title-image {
	width: 100%;
	height: auto;
	display: flex; 
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center; 
}

.wp-block-zbo-title-image .title-media {
	width: 100%;
	height: 50vw;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.wp-block-zbo-title-image h1,
.wp-block-zbo-title-image h2,
.wp-block-zbo-title-image h3 {
	margin: 0;
	width: 100%;
	background-color: white;
	padding: 3rem 1.5rem;
}

@media screen and (max-width: 47.99em) {
	.wp-block-zbo-title-image h1,
	.wp-block-zbo-title-image h2,
	.wp-block-zbo-title-image h3 {
		color: #000000;
	}
}
@media screen and (min-width: 48em) {
	
	.wp-block-zbo-title-image {
		position: relative;
		min-height: 15rem;
		height: calc( 100vh - 5rem );
		align-items: flex-start;
	}
	
	.wp-block-zbo-title-image .title-media {
		position: absolute;
		top: 0; left: 0; right: 0; bottom: 0;
		width: 100%;
		height: 100%;
	}
	
	.wp-block-zbo-title-image h1,
	.wp-block-zbo-title-image h2,
	.wp-block-zbo-title-image h3 {
		z-index: 2;
		background-color: transparent;
		max-width: 66%;
		font-size: 4rem;
		line-height: 4.5rem;
	}
}


/* image styles */

.wp-block-image.is-style-social-icon {
	display: inline-block;
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
	margin-bottom: 1.5rem;
}
.wp-block-image.is-style-social-icon a {
	display: block;
}
.wp-block-image.is-style-social-icon img {
	width: 3rem; min-width: 3rem;
	height: 3rem;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}
.wp-block-image.is-style-social-icon a:hover img {
	transform: rotate(360deg);
}	

.wp-block-image.is-style-icon figure {
	width: 4rem;
	height: 4rem;
}


/* news */

.wp-block-zbo-section-news {
	width: 100%;
}

.wp-block-zbo-news {
	display: block;
	flex: 0 0 auto;
	position: relative;
	width: 100%;
	height: 200px;
	height: 100vw;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
	transition: width 0.3s ease;
}

.wp-block-zbo-news.hide {
	width: 0;
}

.wp-block-zbo-news .news-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0; top: 100%; bottom: 0; 
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	transition: top 0.2s ease;
}

.wp-block-zbo-news .news-overlay span {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.6rem;
	font-family: 'bebas_neueregular'; font-weight: 400; 	
}

.wp-block-zbo-news:hover .news-overlay {
	top: 0;
}

@media screen and (min-width: 30em) {
	.wp-block-zbo-news {
		width: 50%;
		height: 50vw;
	}
}
@media screen and (min-width: 48em) {
	.wp-block-zbo-news {
		width: 33.333%;
		height: 33.333vw;
	}
}
@media screen and (min-width: 64em) {
	.wp-block-zbo-news {
		width: 25%;
		height: 25vw;
	}
}
@media screen and (min-width: 80em) {
	.wp-block-zbo-news {
		width: 20%;
		height: 20vw;
	}
}

/* Interactive image */
.wp-block-zbo-image-interactive {
	position: relative;
	width: 100%;
	height: auto;
}

.wp-block-zbo-image-interactive .image-interactive-img {
	display: block;
	width: 100%;
	height: auto;
	z-index: 1;
}

.wp-block-zbo-image-interactive .image-interactive-list {
	counter-reset: zbo-counter;
}

.wp-block-zbo-image-interactive .image-interactive-list li {
	counter-increment: zbo-counter;
	position: absolute;
	display: block;
	width: 2rem;
	height: 2rem;
	cursor: pointer;
	transform: translate(-1rem,-1rem);
}

.wp-block-zbo-image-interactive .image-interactive-list li:before {
	position: absolute;
	display: block;
	box-sizing: border-box; 
	width: 2rem;
	height: 2rem;
	top: 0;
	left: 0;
	border: none;
	border-radius: 1rem;
	background-color: #FFFFFF;
	color: #000000;
	text-align: center;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.25rem;
	padding: 0.5rem;
	content: counter(zbo-counter);
}
.wp-block-zbo-image-interactive .image-interactive-list li .image-button-hover {
	display: none;
	width: auto;
	min-width: 8rem;
	max-width: 10rem;
	padding: 0.5rem;
	background-color: #FCEDEC;
	font-size: 0.8rem;
	line-height: 1.2rem;
	text-align: center;
}

.wp-block-zbo-image-interactive .image-interactive-list li:hover .image-button-hover,
.wp-block-zbo-image-interactive .image-interactive-list li:focus .image-button-hover {
	display: block;
	position: absolute;
	bottom: calc( 100% + 1rem );
	left: 1rem;
	transform: translateX(-50%);	
}
.wp-block-zbo-image-interactive .image-interactive-list li:hover .image-button-hover:before, 
.wp-block-zbo-image-interactive .image-interactive-list li:focus .image-button-hover:before {	
	display: block;
	content: ' ';
	position: absolute;
	left: 50%; 
	top: 100%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top-color: #FCEDEC;
}