@charset "UTF-8";

@font-face {
  font-family: avenir;
  src: url('../fonts/AvenirNext-UltraLight-11.ttf');
}

html {
	text-rendering: geometricprecision;
	-webkit-font-smoothing: antialiased !important;
}

* :focus {
	background: transparent;
	background-color: transparent;
	box-shadow: none !important
}

:root {
  --red: rgb(227, 6, 20);
  --red-opacity: rgba(277, 6, 20, 0.8);
  --red-darker: #b30000;
  --grey: rgb(137, 135, 135);
  --grey2: rgb(73, 72, 72);
  --cut: polygon(0 50px,120px 0,100% 0,100% 100%,0 100%);
  --cut1: polygon(0 51px,121px 0,100% 0,100% 100%,0 100%);
  --title-size: 26px;
  --header-size: 30px;
  --date-size: 18px;
  --menu-size: 22px;
  --body-size: 18px;
  --aboutus-name-size: 50px;
  --input-grey: #333333;
  --gradient100: linear-gradient(90deg, #e30614 0%, transparent 100%);
  --gradientp66: linear-gradient(90deg, #9b030d 0%, transparent 100%);
}

/**/

@media screen and (max-width: 524px) {
	:root {
		--cut: polygon(0 25px,60px 0,100% 0,100% 100%,0 100%);
	}
}



html{scroll-behavior:smooth}

/* custom scrollbar */
  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background-color: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background-color: rgba(100,100,100,0.4);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 3px solid transparent;
    background-clip: content-box;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
  }


pre {
  display: block;
  font-size: 75%;
  color: #212529;
  background: whitesmoke;
  line-height: 1em;
  padding: 10px 0;
  border-radius: 3px;
}

a.btn.btn-link.jmodedit,
.icons.tck-article-tools {
	display: none !important;
}

/*default*/
	
	a {
		color: white;
		text-decoration: none;
	}
	a:hover {
		color: var(--red);
		text-decoration: none;
	}
	a:focus {
    color: var(--red);
	}


	a,
	a:hover {
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	.backbutton {
    text-align: right;
    margin-top: 40px;
	}
	.backbutton a {
    display: inline-block;
	}
	.backbutton img {
    width: 14px;
    margin-right: 3px;
	}

	#wrapper {
		padding: 140px 0;
	}
	

	.form-control:focus {
		
		color: white;
	}

	.tck-blog .page-header h1,
	.tck-article .page-header h1,
	.archive .page-header h1 {
		margin: 0px 0px 50px 0px;
		font-size: var(--header-size);
		text-transform: uppercase;
		letter-spacing: 30px;
		line-height: 1.2;
	}

	.mainpage .tck-article .page-header h1 {
		margin: 0px 0px 80px 0px;
		font-size: var(--header-size);
		text-transform: uppercase;
		letter-spacing: 30px;
		line-height: 1.2;
	}

	h3.tck-module-title {
		margin: 30px 0px 25px 0px;
    padding-bottom: 20px;
		font-size: var(--header-size);
		text-transform: uppercase;
		letter-spacing: 30px;
		line-height: 1.2;
		border-bottom: 2px solid var(--red);
	}

	.mainmodules.tck-module {
    margin-bottom: 100px;
	}

	.page-header h2 {
		font-size: var(--title-size);
		line-height: 1.2;
		text-transform: uppercase;
		font-weight: bold;
	}

	.blog-item .page-header {
		margin: 0;
		font-size: var(--title-size);
		line-height: 1.2;
		text-transform: uppercase;
		font-weight: bold;
	}
	.blog-item .page-header h2 {
		font-size: var(--title-size);
		line-height: 1.2;
		text-transform: uppercase;
		font-weight: bold;
	}


	mark, .mark {
    padding: 0.1em;
    background-color: var(--red);
    color: white;
	}

	.red {
		color: var(--red);
	}
	.clearboth {
		clear: both;
	}

	span.imgcaption {
		display: block;
		text-align: center;
		font-size: 14px;
		font-style: italic;
		padding-top: 6px;
		margin: 0 auto;
	}

	.uppercase {
		text-transform: uppercase;
	}

/*embed*/
	.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; }
	.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

	.twitter-tweet {
    margin: 0 auto !important;
	}
	.instagram-media {
		margin: 0 auto !important;
	}

	hr {
		border-top: 1px solid var(--red);
	}

/*quote*/

	blockquote {
    padding: 0;
    text-align: left;
    position: relative;
    color: darkgrey;
    font-style: italic;
    padding-left: 20px;
    margin-left: 60px;
    width: calc(100% - 60px);
    border-left: 2px solid var(--red);
	}
	blockquote:before {
		content: '';
    display: block;
    color: var(--red);
    font-size: 60px;
    font-family: 'Roboto Condensed';
    position: absolute;
    left: -53px;
    top: 0px;
    background: url(/images/template/quote.png);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	}

	.view-article .tck-article.com-content-article.item-page .tck-article-body a {
		color: var(--red);
		text-decoration: none;
    background-image: linear-gradient(var(--red),var(--red));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .2s ease;
    padding-bottom: 1px;
	}
	.view-article .tck-article.com-content-article.item-page .tck-article-body a:hover {
		text-decoration: none;
    background-size: 100% 2px;
  }



/*header*/
	
	div#headerwrapper > .inner,
	div#headerwrapper {
    height: 96px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
	}
	div#headerwrapper > .inner {
		
	}
	div#headerwrapper {
		z-index: 1000;
    position: fixed;
    top: 0;
    background: black;
	}

	#headercolumn1 {
		position: relative;
    z-index: 2;
    width: calc( ((100% - 1290px) / 2) - 30px );
	}

	#headercolumn2 {
		height: 96px;
		width: 1290px;
	}

	#headercolumn3 {
		height: 96px;	
		width: calc( ((100% - 1290px) / 2) - 30px );
	}

	div#logo {
    margin-top: 20px;
	}
	.tck-logo-img {
		width: 100%;
		_margin: 0 auto;
	}

	#wrapper > .inner,
	#modulewrapper > .inner {
		padding-left: 30px;
    padding-right: 30px;
	}

	#logo > .inner {
		display: flex;
		justify-content: right;
	}

	#logo img {
		margin-left: auto;
		margin-right: 0;
		max-width: 195px;
	}
	

/*header scrolled*/
	
	
	
	div#headerwrapper.scrolled,
	div#headerwrapper.scrolled > .inner {
		height: 46px;
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}

	

	div#headerwrapper.scrolled #headercolumn2,
	div#headerwrapper.scrolled #headercolumn3div#headerwrapper.scrolled #headercolumn4 {
		height: 30px;	
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}

	div#headerwrapper.scrolled #mainmenu div[id^=maximenuck] ul.maximenuck {
    height: 46px;
    padding-top: 	6px;
    padding-bottom: 6px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}
	div#headerwrapper.scrolled #search {
   	padding-top: 7px;
    padding-bottom: 2px
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}
	

	div#headerwrapper.scrolled #mainmenu div[id^=maximenuck] span.titreck-title {
		font-size: 18px;
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}
	div#headerwrapper.scrolled div#logo {
    margin-top: 0px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}
	div#headerwrapper.scrolled .tck-logo-img {
		width: 110px;
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}
	div#headerwrapper.scrolled form.mod-finder.js-finder-searchform.form-search.mainsearchmodule {
		top: 35px;
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}

	
	

	div#headerwrapper,
	div#headerwrapper > .inner,
	div#headerwrapper #headercolumn1,
	div#headerwrapper #headercolumn2,
	div#headerwrapper #headercolumn3,
	div#headerwrapper #mainmenu div[id^=maximenuck] ul.maximenuck,
	div#headerwrapper #search,
	div#headerwrapper #language,
	#mainmenu div[id^=maximenuck] span.titreck-title,
	div#logo,
	.tck-logo-img,
	#search input {
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}




/*mainmenu*/
	
	#mainmenu div[id^=maximenuck] {
		font-size: 22px;
		line-height: 33px;
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck {
		height: 96px;
		padding-top: 30px;
    padding-bottom: 30px;
    display: flex !important;
    justify-content: space-between;
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1 {
		margin: 0;
		line-height: 33px;
		position: relative;
		/*
		display: flex;
		justify-content: space-between;
		flex: 1 1 auto;
		align-items: center;
		position: relative;
		*/
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1:not(:last-child):after {
	  /*
	  content: "";
	  border: 1px solid var(--red);
	  height: 30px;
	  margin: auto;
	  */
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1:last-child {
		/*
		flex: 0;
		*/
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1 > a,
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1 > span.separator {
		padding: 0;
		line-height: 33px;
	}

	#mainmenu div[id^=maximenuck] span.titreck-title {
    font-size: 22px;
    line-height: 33px;
    text-transform: uppercase;
    color: white;
    font-weight: bolder;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1.current span.titreck-title {
		color: var(--red);
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.maximenuck.level1:hover > a > span > span > span.titreck-title {
		color: var(--red);
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck:after {
		content: none;
	}

	span.separatorline {
    display: block;
    width: 1px;
    background: red;
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck span.separatorline:last-of-type {
		display: none;
	}

	
	#mainmenu li div.floatCK,
	#mainmenu li div.floatck {
		background-color: var(--red);
		__display: block !important;
		box-shadow: none;
		moz-box-shadow: none;
    webkit-box-shadow: none;
	}
	#mainmenu li.parent {
		__background-color: var(--red);
	}

	#mainmenu div[id^=maximenuck] div.floatck {
    position: absolute;
    display: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: auto;
    z-index: 9999;
    cursor: auto;
    transform-origin: 50% 50%;
    transform: translate(-50%, 0%);
    top: 100%;
    left: 50%;
	}
	#mainmenu li div.maxidrop-main {
    width: 220px;
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck li ul.maximenuck2 li.maximenuck:hover,
	#mainmenu div[id^=maximenuck] ul.maximenuck2 li.maximenuck:hover {
		background: var(--red-darker);
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck2 li.maximenuck:hover a span.titreck-title {
		color: white;
	}

	#mainmenu div[id^=maximenuck] ul.maximenuck li.level1.parent > a:after,
	#mainmenu div[id^=maximenuck] ul.maximenuck li.level1.parent > span.separator:after {
    content: "";
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    vertical-align: top;
    top: 13px;
    left: 8px;
    border-style: solid;
    border-width: 7px 6px 0 6px;
    border-color: #fff transparent transparent transparent;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	#mainmenu div[id^=maximenuck] ul.maximenuck li.level1.parent:hover > a:after,
	#mainmenu div[id^=maximenuck] ul.maximenuck li.level1.parent:hover > span.separator:after {
		border-color: var(--red) transparent transparent transparent;
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

div#maximenuck111.maximenuckh ul.maximenuck li.level1.parent > span.nav-header {
	padding-right: 0 !important;
}

div#maximenuck111 ul.maximenuck li.level1.parent > span.nav-header:after {
	content: none;
}


/*mobilemenu*/

	#mainmenu div[id^=maximenuck] .mobilemenuck-bar-title {
		background: transparent;
	}

	#mainmenu div[id^=maximenuck] .mobilemenuck-bar-button {
		padding-top: 5px;
		background: transparent;
	}

	#mainmenu div[id^=maximenuck].mobilemenuck {
		background: transparent;
	}
	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-topbar .mobilemenuck-title {
		background: transparent;
	}
	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-item {
    background: var(--red);
	}

	#mainmenu div[id^=maximenuck].mobilemenuck div.mobilemenuck-item:first-of-type div {
		padding-top: 50px;
		clip-path: var(--cut);
	}

	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-item > .level1 {
		background: transparent;
		margin: 0;
	}
	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-item span.titreck-title:hover,
	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-item .current span.titreck-title{
		color: black;
	}

	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-item .mobilemenuck-submenu {
		background: transparent;
	}

	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-submenu div.mobilemenuck-item:first-of-type div {
		padding-top: 0;
    clip-path: none;
    
	}
	#mainmenu div[id^=maximenuck].mobilemenuck .mobilemenuck-submenu .mobilemenuck-item > .level2 {
		background: transparent;
		margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
	}




/*search*/


	#search {
		padding-top: 30px;
    padding-bottom: 30px;
	}

	#search > .inner {
		max-width: 195px;
    display: flex;
    justify-content: space-around;
	}
	.search.tck-module {
    
	}

	#searchfocus {
    cursor: pointer;
	}
	.search.tck-module #searchfocus img {
    width: 32px;
	}

	form.mod-finder.js-finder-searchform.form-search.mainsearchmodule.opacity0 {
		opacity: 0;
		-webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}

	form.mod-finder.js-finder-searchform.form-search.mainsearchmodule {
    opacity: 1;
    position: absolute;
    top: 66px;
    right: 0;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
	}

	#search .awesomplete {
		width: 100%;
		padding-right: 0px;
	}

	#search input,
	#search input:focus {
		width: 300px;
    background-color: var(--red);
    border: none;
    cursor: auto;
    border-radius: 0;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
    box-shadow: inset 2px 2px 10px -3px #000000;
	}


	#search input::placeholder {
		color: whitesmoke;
		text-transform: lowercase;
		text-align: left;
	}

/*language*/

	.mod-languages button[id^=language_btn] {
		background: transparent;
    color: var(--red);
    font-size: 22px;
    line-height: 20px;
    font-weight: bolder;
	}
	.mod-languages button[id^=language_btn]:after {
		content: none;
	}
	.mod-languages button[id^=language_btn]:focus {
		border-color: transparent;
		border: 0;
    box-shadow: none;
	}

	.mod-languages button[id^=language_btn]:after {
		content: '';
    color: white;
    margin: 0;
    top: 2px;
    position: relative;
	}

	ul.lang-block.dropdown-menu {
		background: var(--red);
    border-radius: 0;
    border-color: transparent;
    border: none;
    padding: 0;
	}
	div.mod-languages ul.lang-block li {
		border-radius: 0;
		padding: 0;
		margin: 0;
	}
	div.mod-languages ul.lang-block li.lang-active {
    background-color: transparent;
    padding: 0;
		margin: 0;
	}
	div.mod-languages ul.lang-block li a {
		line-height: 33px;
		font-size: 20px;
		display: block;
		text-transform: uppercase;
    color: white;
	}
	div.mod-languages ul.lang-block li a:hover {
		color: white;
		background: var(--red-darker);
	}

/*slideshow slickck*/
	.slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	.slick-dotted.slick-slider button.slick-next,
	.slick-dotted.slick-slider button.slick-prev {
		display: none !important;
	}


	.slickck-item {
		position: relative;
	}

	.slickck-desc {
    max-width: 1290px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	}

	.slickck-descinner {
    position: absolute;
    top: 33%;
    bottom: 20%;
    left: 0%;
    right: 60%;
    width: 392px;
    height: 242px;
	}

	.slickck-text {
    font-size: 28px;
    line-height: 1.2em;
    font-weight: bolder;
    background: var(--red);
    text-align: right;
    padding: 30px 30px 30px 84px;
    clip-path: var(--cut);
    position: absolute;
    bottom: 0;
	}

	.slickck-text span {
    display: block;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2em;
	}

	.slickck-title {
		display: block;
    text-transform: uppercase;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
    right: -33px;
    bottom: -33px;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1em;
	}

	.slickck-title span.horizontal {
    display: block;
    text-transform: uppercase;
    position: absolute;
    right: 0px;
    bottom: 0;
	}

	.slickck-title span.vertical {
    transform: rotate(271deg);
    transform-origin: 0 100%;
    position: absolute;
    bottom: 33px;
    display: inline-block;
    left: 100%;
    white-space: nowrap;
	}

	ul.slick-dots {
		text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
	}
	ul.slick-dots li {
    background: transparent;
    background-image: url(/images/template/star-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
    margin: 0px 14px 0 14px;
    padding: 4px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	ul.slick-dots li.slick-active,
	ul.slick-dots li:hover {
    background-image: url(/images/template/star-red.png);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	.slick-dots li button:before {
		color: transparent !important;
	}



/*slideshow*/

	div#slideshow {
    padding-top: 41px;
	}

	.cameraContent {
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	.camera_target_content {
    max-width: 1290px;
    margin: 0 auto;
	}

	.camera_caption {
    position: absolute;
    top: 33%;
    bottom: 20%;
    left: 0%;
    right: 60%;
    width: 392px;
    height: 242px;
	}

	.camera_caption > div {
    background: transparent;
    padding: 0;
	}

	.camera_caption_desc {
    font-size: 28px;
    line-height: 1.2em;
    background: var(--red-opacity);
    text-align: right;
    padding: 30px 30px 30px 84px;
    clip-path: var(--cut);
    position: absolute;
    bottom: 0;
	}

	.camera_caption_desc span {
    display: block;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2em;
	}

	.camera_caption_title {
		display: block;
    text-transform: uppercase;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
    right: -33px;
    bottom: -33px;
	}

	.camera_caption_title span.horizontal {
    display: block;
    text-transform: uppercase;
    position: absolute;
    right: 0px;
    bottom: 0;
	}

	.camera_caption_title span.vertical {
    transform: rotate(271deg);
    transform-origin: 0 100%;
    position: absolute;
    bottom: 33px;
    display: inline-block;
    left: 100%;
    white-space: nowrap;
	}

	/*slideshow pagination*/

	.camera_wrap .camera_pag .camera_pag_ul {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	}
	.camera_wrap .camera_pag .camera_pag_ul li {
    background: transparent;
    background-image: url(/images/template/star-white.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 46px;
    height: 46px;
    margin: 0px 4px 0 4px;
    padding: 4px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	.camera_wrap .camera_pag .camera_pag_ul li span {
		display: none;
	}
	.camera_wrap .camera_pag .camera_pag_ul li.cameracurrent,
	.camera_wrap .camera_pag .camera_pag_ul li:hover {
    background: transparent;
    background-image: url(/images/template/star-red.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 46px;
    height: 46px;
    margin: 0px 4px 0 4px;
    padding: 4px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

/*newsflash*/
	.mod-articlesnews.newsflash {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 20px 0 50px;
	}
	.mod-articlesnews__item {
    flex: 1;
	}



	/**/
	.mod-articlesnews__item-0 {
    width: 100%;
    flex: initial;
    margin-bottom: 20px;
	}
	.mod-articlesnews__item-0 {
    display: flex;
    gap: 0px;
	}
	.mod-articlesnews__item-0 .newsflash-image {
    flex: 1;
	}
	.mod-articlesnews__item-0 .newsflash-data {
    flex: 2;
    background: var(--gradientp66);
    padding-left: 30px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
	}
	.mod-articlesnews__item-0 .newsflash-date {
		color: white;
		font-weight: bold;
	}
	.mod-articlesnews__item-0 .newsflash-title a {
		margin-bottom: 0;
		color: white !important;
	}


	.newsflash-title {
		margin: 10px 0;;
		padding: 0;
		text-transform: uppercase;
    font-weight: bold;
	}
	.newsflash-title a {
		font-size: var(--title-size);
	}
	.newsflash-date {
		padding: 0 0 6px 0;
		margin: 0;
		color: var(--grey);
		text-transform: uppercase;
	}

	.newsflash-image {
    position: relative;
    overflow: hidden;
    clip-path: var(--cut);
  }
  .newsflash-image:before {
    content: "";
    display: block;
    padding-top: 75%;
  }

  .mainpage .onlyoneevent .newsflash-image:before {
    content: "";
    display: block;
    padding-top: 32.5%;
	}

  .newsflash-image img {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  .newsflash-text,
  .newsflash-text * {
  	text-align: left !important;
  	font-weight: lighter !important;
  }

  .newsflash-text p {
    padding: 0;
    margin: 0;
	}

  .newsflash-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
	}

	.newsflash-readmore {
    text-align: right;
    display: none;
	}
	.newsflash-readmore a {
    display: inline-block;
    line-height: 30px;
	}

  .readmore-arrow:before {
    content: '';
    display: block;
    width: 14px;
    height: 30px;
    margin-left: 7px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('/images/template/chevron-right.png');
    float: right;
	}

/*greetingspage*/
	

	.mainpage #wrapper {
		background-image: url('/images/template/koszonto-01.jpg');
		background-repeat: no-repeat;
		background-position: top center;
	}

	.mainpage .tck-article-body {
    
    max-width: 70%;
	}

	.mainpage .greetings-sign {
    display: inline-block;
    text-align: center;
    float: right;
    margin-right: -34px;
    margin-top: 70px;
	}
	.mainpage .greetings-sign img {
		margin-bottom: -20px;
	}
	.mainpage .greetings-name {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 30px;
	}
	.mainpage .greetings-title {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 120px;
	}



/*footer*/

	div#footerwrapper {
    background: var(--red);
	}
	div#footerwrapper > .inner {
    padding: 50px 0;
	}

	#footer a,
	#footer a:hover {
		color: white;
		font-weight: 100;
	}
	#footer strong {
		font-weight: normal;
		letter-spacing: 3px;
	}

	#footer h3.tck-module-title {
    letter-spacing: inherit;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 4px;
	}

	#footer #footercolumn1 {
		display: flex;
    align-items: center;
    justify-content: center;
	}

	#footer .flexiblecolumn {
    padding: 0 36px;
    border-right: 1px solid rgb(255 255 255 / 80%);
	}
	#footer .flexiblecolumn:last-child {
		border-right: none;
	}
	#footercolumn1 {
		flex: 1;
	}
	#footercolumn2 {
		flex: 1;
	}
	#footercolumn3 {
		flex: 1;
	}
	#footercolumn4 {
		flex: 1;
	}
	.footer-social {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
	}
	.footer-social img {
    padding: 5px 2px;
    width: 40px;
	}
	.kkttka {
		text-align: center;
		padding-top: 10px;
	}
	.kkttka img {
		max-width: 200px;
	}

	
	#footer2 ul.mod-menu li ul.mod-menu__sub {
		margin: 0 0 0 20px;
    padding: 0;
    font-size: 100%;
	}
	

	#footer p {
    padding: 0;
    margin: 0;
    font-weight: 100;
	}

	


/*aboutus*/

	.aboutus-header {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;

	}

	.member {
		position: relative;
		text-align: center;
		margin-bottom: 20px;
		flex: 0 1 calc( (100% / 3 ) - 20px);
	}
	

	.member-image figure {
		margin-bottom: 0;
	}
	.member-image figure.left.item-image {
		text-align: center;
		float: none;
	}
	.member-image img {
		filter: grayscale(1);
		max-width: 273px;
    margin-top: 35px;
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	.member a:hover .member-image img {
		filter: grayscale(0);
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	.member-data {
    position: absolute;
    top: 0;
    left: 0;
	}

	
	.member-name {
		text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 10px;
    color: white !important;
	}
	.member-nagme span.red {
		color: var(--red) !important;
	}
	.member-title-short {
		text-align: left;
		color: white !important;
		font-weight: bolder;
	}
	.member-title-short img {
    width: 14px;
    margin-left: 10px;
	}

	.aboutus-items {
    padding-top: 100px;
	}
	.aui-member {
    display: flex;
    gap: 30px;
    scroll-margin-top: 80px;
	}
	.aui-left {
    width: 30%;
	}
	.tck-article.com-content-article.item-page.aboutuspage .aui-left .aui-image {
		margin-top: 0px;
	}
	.aui-right {
    width: 70%;
	}
	.aui-member-name {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
	}
	.aui-member-title-long {
    margin-bottom: 10px;
    font-weight: bolder;
	}
	.aui-member-socials {
    text-align: right;
	}
	.aboutusflash {
		display: flex;
    gap: 30px;
    justify-content: space-around
  }

/*news*/

	.newspage #wrapper {
    
	}

	.newspage .com-content-category-blog__item.blog-item.tck-article {
		margin-bottom: 40px;
	}

	.newspage .tck-blog figure.item-image {
		float: none;
		clip-path: var(--cut);
		position: relative;
    overflow: hidden;
    margin-bottom: 12px;
	}

  .newspage .tck-blog  figure.item-image:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .hasvideo a:after {
    content: '';
    display: block;
    width: 120px;
    height: 120px;
    background-image: url(/images/template/icon-play.png);
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 106px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border-radius: 50%;
    padding: 20px;
    background-color: rgb(255,255,255, 0.5);
	}
  .newspage .tck-blog  figure.item-image img {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .newspage .page-header h2.tck-article-title {
  	margin-bottom: 0;
  }


  .newspage .news-publish_up {
  	color: var(--grey);
  }

  .newspage .items-leading {
  	margin-bottom: 100px;	
  }

  .newspage .items-leading .tck-article .leadingimage {
  	display: inline-block;
  	width: calc((100% / 3 ) - 30px );
  	margin-right: 30px;
  }

  .newspage .items-leading .tck-article .item-content {
  	display: inline-block;
    width: calc( ((100% / 3 ) * 2) - 4px );
    vertical-align: top;
  }
  .newspage .items-leading .tck-article .item-content .page-header h2.tck-article-title {
  	font-size: 30px;
  	text-transform: uppercase;
  }

  .featuredmodules {
    margin-bottom: 50px; 
	}

	.featuredmodules .moduletable {
    border-bottom: 2px solid var(--red);
	}

  .featuredmodules .mod-articlesnews.newsflash {
  	display: block;
  }
  .featuredmodules .mod-articlesnews__item {
    width: 100%;
    display: flex;
    gap: 0px;
	}
	.featuredmodules .mod-articlesnews__item .newsflash-image {
		flex: 1;
	}
	.featuredmodules .mod-articlesnews__item .newsflash-data {
		flex: 2;
		background: var(--gradientp66);
		padding-left: 30px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
	}
	.featuredmodules .mod-articlesnews__item .newsflash-data a {
		color: white !important;
	}

	.newspage .blog-item .tck-article-body p,
	.newspage .blog-item .tck-article-body strong {
		margin: 0;
		padding: 0;
		text-align: left !important;
		font-weight: lighter !important;
	}
	.newspage .blog-item .tck-article-body {
		display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }

/*eventspage*/

	h3.participants-header {
    display: block;
    font-size: var(--title-size);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--red);
	}

	.event-date.past {
    color: var(--grey);
	}
	.event-date.actual {
    color: var(--red);
	}
	.event-date.future {
    color: var(--red);
	}

	.featuredmodules .event-date.past,
	.featuredmodules .event-date.actual,
	.featuredmodules .event-date.future {
    color: white;
    font-weight: bold;
	}
	.featuredmodules .newsflash-title {
		margin-bottom: 0;
	}

	.eventspage .item-content {
		position: relative;
	}

	.event-date {
		display: block;
    font-size: var(--date-size);
    text-transform: uppercase;
	}

	.event-header {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    background: url(/images/template/blackpoint.jpg), var(--gradient100);
    background-repeat: no-repeat;
    
	}
	.event-image {
    flex: 2;
    clip-path: var(--cut);
	}
	.event-data {
    flex: 3;
	}
	.event-header .event-data .page-header h2 {
		margin-top: 20px;
	}

	.event-image figure {
		margin-bottom: 0;
	}
	.event-image .event-date {
		color: white !important;
		font-weight: bold;
	}
	.event-image .event-date.event-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    clear: both;
	}
	.event-image .event-date.event-icon * {
  	margin-top: 0;
  	margin-bottom: 0;
  	padding-top: 0;
  	padding-bottom: 0;
  }
  .event-image .event-date.event-icon img {
		margin-right: 20px;
	}

	
	.tck-article.com-content-article.item-page .tck-article.com-content-article.item-page {
		width: 90%;
		padding: 10px 20px;
		margin: 0 auto 30px;
		display: block;
		border: 1px solid white;
	}
	.tck-article.com-content-article.item-page .tck-article.com-content-article.item-page .page-header h1 {
		display: none;
	}

	.tck-article.com-content-article.item-page .tck-article.com-content-article.item-page .page-header h2.tck-article-title {
		font-size: 40px;
	}
	.tck-article.com-content-article.item-page .tck-article.com-content-article.item-page figure.item-image {
		float: left;
		width: 20%;
		margin-right: 30px;
	}
	.tck-article.com-content-article.item-page .tck-article.com-content-article.item-page .tck-article-body:after {
		content: "";
		display: block;
		clear: both;
	}

	.event-data .event-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
	}
	.event-data .event-icon * {
  	margin-top: 0;
  	margin-bottom: 0;
  	padding-top: 0;
  	padding-bottom: 0;
  }
  .event-data .event-icon img {
		margin-right: 20px;
	}
	span.reg {
    cursor: pointer;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}
	span.reg:hover {
    color: var(--red);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	ul.fields-container {
    margin: 0;
    padding: 0;
    list-style: none;
	}
  

	/*performers*/

	.performers {
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: flex-start;
	}

	.performer {
    width: 25%;
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
	}
	.performer-inner {
		margin: 15px;
		padding: 10px;
    _border: 1px solid rgb(255 255 255 / 80%);
    box-sizing: border-box;
	}

	.performers-title {
		font-size: var(--title-size);
		text-transform: uppercase;
		font-weight: bold;
		text-align: center;
	}
	.performer a {
		display: block;
		text-align: center;
		background-size: 0 !important;
	}

	.performer img.performer-image {
		
		filter: grayscale(1);
		
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;


	}

	.performer:hover img.performer-image {
		filter: grayscale(0);
		-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	}

	




	.performer h2.performer-title {
		font-size: var(--title-size);
		text-transform: uppercase;
		font-weight: bold;
		margin-bottom: 0;
		text-align: center;
	}
	.performer div.performer-intro {
		text-align: center;
		color: white;
		font-weight: bolder;
	}
	.performer div.performer-intro img.performer-readmore {
		display: inline-block;
		width: 14px;
    margin-left: 10px;
	}
	.performer div.performer-intro * {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
		padding-top: 0 !important;
		display: contents;
	}
	.performer div.performer-intro:after {
		content: "";
		display: block;
		clear: both;
	}


	.participantspage .com-content-category-blog__item.blog-item.tck-article figure.item-image img {
		border: 1px solid white;
	}


	.participantslist ul.fields-container li {
    width: 25%;
    display: inline-block;
	}
	.participantslist ul.fields-container li .performer {
    width: 100%;
  }


  	
/*search*/
	
	div#search-form {
    display: none;
	}

	#search-form .form-inline {
		width: 800px;
		max-width: 100%;
		margin: 0 auto;
	}
	
	#search-form input#q {
		width: 700px;
		border-radius: 0;
		background: var(--grey);
		color: white;
	}

	#search-form button.btn {
    border: none;
    background: #e30614 !important;
    color: white;
    text-transform: uppercase;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    border-radius: 0;
	}

	.result__item {
    display: flex;
    gap: 30px;
	}
	.resultimage {
    width: 20%;
	}
	.resultimage + .resultdata {
    width: 80%;
	}
	.result__title a {
		font-size: var(--title-size);
    font-weight: 800;
    text-transform: uppercase;
  }
  .result__title-link {
    display: block;
  }

  .result__item figure.item-image {
		float: none;
		__clip-path: var(--cut);
		position: relative;
    overflow: hidden;
    margin-bottom: 12px;
	}

  .result__item figure.item-image:before {
    __content: "";
    display: block;
    padding-top: 75%;
  }
  .result__item figure.item-image.hasvideo a:after {
    content: '';
    display: block;
    width: 142px;
    height: 142px;
    background-image: url(/images/template/icon-play.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
	}
  .result__item figure.item-image img {
    __position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    __object-fit: cover;
    __object-position: center;
    __width: 100%;
    __height: 100%;
  }

  .com-finder__pagination {
    text-align: center;
	}
	.search-pages-counter {
    text-align: center;
	}

	.awesomplete > ul {
		background: var(--red);
    color: white;
    border-radius: 0;
    padding-top: 20px;
    _clip-path: var(--cut);
    box-shadow: none;
    border-color: transparent;
	}
	.awesomplete mark {
    background: var(--grey);
	}

	/*
	.awesomplete > ul[hidden], .awesomplete > ul:empty {
    opacity: 1 !important;
    transform: scale(1) !important;
    display: block !important;
  }
	*/





/*pagination*/

	.com-content-category-blog__pagination {
    text-align: center;
	}

	nav.pagination {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
	}
	ul.tck-pagination.pagination {
		margin-left: 0;
		margin-bottom: 0;
		border-radius: 0;
	}
	

	.page-link {
    position: relative;
    display: block;
    color: white;
    font-size: 30px;
    line-height: 33px;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid black;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	}
	.page-item.disabled .page-link {
    pointer-events: none;
    background-color: transparent;
    border-color: black;
    color: var(--grey);
	}
	.page-link:hover {
    z-index: 2;
    color: white;
    background-color: transparent;
    border-color: black;
	}
	.page-item.active .page-link {
    z-index: 3;
    color: var(--red);
    background-color: transparent;
    border-color: black;
	}
	.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	}
	.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	}

	.icon-angle-double-left:before,
	.icon-angle-left:before,
	.icon-angle-right:before,
	.icon-angle-double-right:before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background-size: cover;
	}

	.disabled .icon-angle-double-left:before,
	.disabled .icon-angle-left:before,
	.disabled .icon-angle-right:before,
	.disabled .icon-angle-double-right:before{
		filter: brightness(0.5);	
	}

	

	.icon-angle-double-left:before {
		background-image: url(/images/template/pag-first.png);
	}
	.icon-angle-left:before {
		background-image: url(/images/template/pag-prev.png);
	}
	.icon-angle-right:before {
		background-image: url(/images/template/pag-next.png);
	}
	.icon-angle-double-right:before {
		background-image: url(/images/template/pag-last.png);
	}
	


	.page-link:focus {
    z-index: 3;
    color: white;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(#112855, 0.25);
	}


/*latoszog blog, muzeum*/
	
	.partners {
		display: flex;
		gap: 30px;
		_margin: 100px 0 100px;
	}
	.partner {
		position: relative;
    _padding-top: 25px;
	}

	.partner h3.tck-module-title {
		letter-spacing: 10px;
		margin-top: 0;
	}

	.partner img {
    clip-path: var(--cut);
	}
	.partner a {
		display: block;
		position: relative;
	}
	.partner a:before {
		content: '';
    display: inline-block;
    margin-left: 0px;
    margin-top: 0px;
    width: 14px;
    vertical-align: middle;
    height: 30px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(/images/template/chevron-right.png);
    position: absolute;
    top: 0px;
    left: 0;
	}

	
	span.overlaybox {
    font-size: 20px;
    line-height: 1.2em;
    font-weight: bolder;
    background: var(--red);
    text-align: right;
    padding: 20px 20px 20px 60px;
    clip-path: var(--cut);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
	}
	.communistleaders.partner a {
		color: white !important;
	}




	


/*modal*/

	.modal-dialog.jviewport-width50 {
    width: 600px !important;
    max-width: 100%;
  }
  .jviewport-height60 {
    height: 420px !important;
	}

	.modal.fade .modal-dialog {
		top: 50%;
    transform: translate(0, -50%);
	}

	.modal-content {
    background: black;
    border-radius: 0;
    box-shadow: 0px 0px 0px 1px white, 3px 3px 0px 3px black, 6px 6px 0px 1px white, 9px 9px 0px 3px black, 12px 12px 0px 1px white;
	}
	.modal-header {
		border-bottom: transparent;
	}
	.modal-body {
		padding: 2rem;
		padding-top: 2rem !important;
	}

	.modal-content:before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    background: transparent;
    background-image: url(/images/template/reg-80.png);
    background-size: contain;
    top: -49px;
    left: calc(50% - 40px);
    z-index: 100000000;
	}
	.modal-title {
    display: none;
    border-bottom: transparent;
  }
  .btn-close,
  .btn-close:hover {
    background: transparent;
    background-image: url(/images/template/close.png);
    position: absolute;
    top: 5px;
    right: 13px;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    background-size: cover;
    z-index: 20000;
	}


/*
	.modal-content {
    background: black;
    border-radius: 0;
    box-shadow: 0px 0px 0px 2px white, 3px 3px 0px 3px black, 6px 6px 0px 2px white, 9px 9px 0px 3px black, 12px 12px 0px 2px white;
	}
	.modal-content:before {
    content: '';
    display: block;
    width: calc(100% + 10px);
    height: 106px;
    position: absolute;
    background: transparent;
    background-image: url(/images/template/reg-top.png);
    background-size: cover;
    top: -107px;
    left: -7px;
	}
	.modal-body {
    padding: 0 2rem;
    padding-top: 0rem !important;
	}
*/

/*contact*/
	
	.contact {
	  background-image: url(/images/template/topleftcorner.png);
    background-repeat: no-repeat;
    padding: 104px 63px 30px;
    border: 1px solid #bebebe;
    clip-path: polygon(2px 2px, 194px 2px, 199px 0, 100% 0, 100% 100%, 0 100%, 0 62px, 2px 62px);
    max-width: 520px;
    margin: 0 auto;
	}

	.contact h4 {
    font-weight: bold;
    color: var(--red);
    padding-left: 54px;
    margin-bottom: 22px;
	}
	.contact div {
		display: flex;
    gap: 30px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 22px;
	}
	.contact div p {
		padding: 0;
		margin: 0;
	}

/*archive*/

	a.archivelink {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 40px;
    font-size: var(--header-size);
	}
	a.archivelink:before {
    content: '';
    background-image: url(/images/template/archive-icon.png);
    display: inline-block;
    width: 40px;
    margin-top: -6px;
    height: 40px;
    vertical-align: middle;
    margin-right: 20px;
    background-size: contain;
	}
	a.archivelink:after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    margin-top: -6px;
    width: 14px;
    vertical-align: middle;
    height: 30px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(/images/template/chevron-right.png);
	}
	body.com_content.view-article.layout-mainnews a.archivelink {
		display: none;
	}

	.archive #adminForm {
		background: transparent;
		font-family: "Roboto Condensed";
	}
	.archive .form-inline {
		justify-content: center;
    gap: 20px;
    flex-flow: row nowrap;
    display: flex;
    align-items: stretch;
	}

	.me-2.archiveform1 {
    width: calc(100% - (3 * 120px));
	}
	.me-2.archiveform2 {
    width: 120px;
	}
	.me-2.archiveform3 {
    width: 120px;
	}
	.me-2.archiveform4 {
    width: 120px;
	}
	img.archive-icon {
    display: inline-block;
    width: 45px;
    margin-right: 20px;
	}

	.archive #adminForm input[type="text"] {
		height: auto;
    background: var(--input-grey);
    border: transparent;
    padding-top: 10px;
    padding-right: 8px;
    padding-bottom: 10px;
    padding-left: 8px;
    border-radius: 0;
    color: white;
    width: calc(100% - 68px);
    max-width: 100%;
    min-height: 1px;
    font-size: 18px;
    line-height: 26px;
	}

	.archive #adminForm .form-select,
	.archive #adminForm .custom-select,
	.archive #adminForm .form-select:focus,
	.archive #adminForm .custom-select:focus {
		appearance: none;
    max-width: 100%;
    width: 120px;
    cursor: pointer;
    border-radius: 0;
    color: white;
    border: none;
    background: url(/images/template/archive-month.png) no-repeat right 9px top 6px, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, var(--input-grey) 2em);
    min-height: 1px;
    background-size: unset;
    text-transform: lowercase;
    padding: 11px 18px;
	}

	.archive #adminForm #month.form-select {
		background: url(/images/template/archive-month.png) no-repeat right 9px top 6px, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, var(--input-grey) 2em);
	}
	.archive #adminForm #year.form-select {
		background: url(/images/template/archive-year.png) no-repeat right 9px top 6px, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, var(--input-grey) 2em);
	}
	.archive #adminForm .form-select option {
		background: var(--input-grey);
		color: white;
	}
	.archive #adminForm .form-select option:hover {
		background: var(--red);
	}

	.archive #adminForm .btn {
    background: transparent;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    color: white;
    text-shadow: none;
    text-transform: uppercase;
    font-family: 'Roboto Condensed';
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    vertical-align: middle !important;
    white-space: nowrap;
    margin-bottom: -1px;
	}

	.archive #adminForm .btn:after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    margin-top: -6px;
    width: 20px;
    vertical-align: middle;
    height: 30px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(/images/template/chevron-right.png);
	}

	#archive-items dl.article-info {
    margin-bottom: 0;
	}

	.com-content-archive__pagination {
    text-align: center;
	}

	.archive #adminForm .archiveform1 label {
		display: none !important;
	}




	input:focus-visible {
		outline: none;
	}

	.com-users-login.login input {
		color: black !important;
	}


/*newsletter*/
	
	body.newsletter .backbutton {
    display: none;
	}
	body.newsletter #wrapper {
		padding-bottom: 0;
	}

	.partner #mc_embed_signup {
    font: 18px Roboto Condensed;
    margin: 0;
	}
	.partner #mc_embed_signup form {
		margin: 20px 0;
	}

	.partner #mc_embed_signup a {
		display: initial;
	}
	.partner #mc_embed_signup a:before {
		content: '';
		display: none !important;
	}
	.partner #mc_embed_signup img {
		filter: invert(1);
		clip-path: none;
	}
	.partner #mc_embed_signup input {
		border-radius: 0;
	}

	.partner #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border: 2px solid var(--red);
	}
	.partner #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
		color: var(--red);
		background-color: transparent;
	}
	.partner #mc_embed_signup .button,
	.partner #mc_embed_signup .button:hover {
		background-color: var(--red);
		color: white;
		text-transform: uppercase;
		font-family: Roboto Condensed;
		font-weight: bold;
    font-size: 20px;
    padding: 3px 10px;
    height: auto;
	}


/*woth*/

	.woy {
    text-align: center;
    position: relative;
    margin-top: -100px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
	}
	.woy img {
		padding: 0px 70px;
    box-sizing: content-box;
	}

/*fotocopyright*/
	span.fotocopyright {
    position: absolute;
    top: 0;
    right: 6px;
    font-size: 12px;
	}
















/*tender blog*/

	.tenderpage .blog-items {
  	margin-bottom: 100px;	
  }

  .tenderpage .com-content-category-blog__item.blog-item.tck-article {
  	display: flex;
  	gap: 30px;
  }
  .tenderpage .blog-items .tck-article .item-image {
  	flex: 1;
  }
  .tenderpage .blog-items .tck-article .item-content {
  	flex: 2;
  }
  
  .tenderpage .blog-items .tck-article .item-image.closed img {
  	filter: grayscale(100%);
  	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .tenderpage .blog-items .tck-article .item-image.closed:hover img {
  	filter: grayscale(0%);
  	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  
  .tenderpage .blog-items .tck-article .item-content .page-header h2.tck-article-title {
  	font-size: 30px;
  	text-transform: uppercase;
  }
  .tenderpage .news-publish_up {
  	margin-bottom: 10px;
  }




















@media screen and (max-width: 1600px) {
	#headercolumn1 {
    width: 119px;
	}
	#headercolumn2 {
    width: calc(100% - (2 * 129px));
	}
	#headercolumn3 {
    width: 119px;
	}
	#wrapper > .inner,
	#modulewrapper > .inner {
		padding-left: 10px;
		padding-right: 10px;
		margin-left: 119px;
		margin-right: 119px;
		width: calc(100% - (2 * 119px));
	}

}


@media screen and (max-width: 1500px) {
	.mainpage #wrapper {
		background-position: top right -190px;
	}
}



@media screen and (max-width: 1300px) {
	#bannerrow > .inner {
		
	}
	#headercolumn1 {
		width: 56px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1000;
		height: 46px;
	}
	#headercolumn2 {
		width: 100%;
		position: absolute;
		height: 41px;
	}
	#headercolumn3 {
		position: absolute;
    top: 0;
    right: 100px;
    z-index: 1000;
    height: 41px;
	}
	#headercolumn4 {
		position: absolute;
    top: 0;
    right: 50px;
    z-index: 1000;
    height: 41px;
	}
	div#headerwrapper > .inner, div#headerwrapper {
		height: 46px;
	}

	#headercolumn1 #logo {
		margin-top: 0;
	}
	div#headerwrapper.scrolled #headercolumn1 .tck-logo-img {
		width: 100%;
	}
	#headercolumn3 #search {
    padding-top: 7px;
    padding-bottom: 5px;
	}
	#headercolumn4 #language {
    padding-top: 5px;
    padding-bottom: 5px;
	}
	#wrapper > .inner, #modulewrapper > .inner {
		padding-left: 10px;
		padding-right: 10px;
		margin-left: 0px;
		margin-right: 0px;
		width: calc(100% - (2 * 0px));
	}

	.tck-blog .page-header h1,
	.tck-article .page-header h1,
	.archive .page-header h1 {
		margin: 0px 0px 60px 00px;
		font-size: 30px;
		text-transform: uppercase;
		letter-spacing: 30px;
	}
	.mainpage .tck-article-body {
    max-width: 60%;
	}
	.mainpage #wrapper {
    background-position: top right -207px;
	}


}

@media screen and (max-width: 1100px) {
	.mainpage #wrapper {
    padding-top: 40px;
	}
	.mainpage .tck-article .page-header h1 {
		margin-bottom: 40px;
	}
	.mainpage .tck-article-body {
    max-width: calc(100% - 420px);
	}
}

@media screen and (max-width: 1000px) {
	.partner h3.tck-module-title {
		letter-spacing: 0;
	}

}

@media screen and (max-width: 900px) {
	.mainpage #wrapper {
		background-size: contain;
    background-position: top;
    padding-top: 23vw;
	}
	.mainpage .tck-article-body {
    max-width: 100%;
	}
	.mainpage .tck-article .page-header h1 {
		margin-bottom: 23vw !important;
	}
	.mainpage .greetings-sign {
    margin-right: 0px;
    margin-top: 0px;
	}
	.mainpage .greetings-sign img {
    margin-bottom: 0px;
    max-width: 152px;
	}
	.mainpage .greetings-name {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0px;
    text-align: right;
    padding-right: 7px;
	}
	.mainpage .greetings-title {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    text-align: right;
    padding-right: 7px;
	}
}

@media screen and (max-width: 758px) {
	#wrapper {
		padding: 60px 0;
	}
	.mod-articlesnews.newsflash {
		display: block;
	}
	.mod-articlesnews__item {
		width: 100%;
		margin-bottom: 70px;
	}
	#footer1 > .inner {
		position: relative;
	}
	.footerleft .footer-social {
		display: block;
		margin: 0 auto;
		text-align: center;
	}
	.footer4 img {
		max-width: 200px;
	}
	

	.aboutus-header {
		display: block;
	}
	.member-image {
    text-align: center;
	}

	.member {
    margin-bottom: 80px;
	}
	.member-image img {
    width: 50%;
    margin-top: 20px;
	}
	.member-name {
		font-size: 22px;
		margin-bottom: 4px;
	}

	.blog-items.masonry-3, .blog-items.columns-3 {
    column-gap: 2em;
	}


	.aui-member {
		display: block;
		margin-bottom: 40px;
	}
	.aui-left {
		width: 100%;
	}
	.aui-left img {
		width: 50%;
		margin: 0 auto;
		display: block;
	}
	.aui-right {
		width: 100%;
	}
	.aui-member-name {
    font-size: 26px;
    line-height: 1.2rem;
  }

	.greetingspage .tck-article-body {
		margin-left: 0;
		max-width: 100%;
	}

	/*slidewhow slick*/

	.slickck-desc {
		position: relative;
	}
	.slickck-descinner {
		position: relative;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto 30px;
		width: 300px;
    height: 110px;
	}
	.slickck-text {
		font-size: 16px;
		padding: 10px 20px 10px 50px;
		width: 100%;
	}
	.slickck-text span {
		font-size: 26px;
	}
	.slickck-title {
		right: -16px;
    bottom: -16px;
    font-size: 12px;
	}
	.slickck-title span.vertical {
		bottom: 16px;
	}
	ul.slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0px 10px 0 10px;
    padding: 4px;
  }

	/*slideshow*/
		.camera_wrap {
	    height: calc(60vw + 150px) !important;
		}
		.camera_target {
			padding-top: 150px;
		}
		.camera_target_content {
			height: 150px;
		}
		.cameraContent {
	    bottom: 0;
	    display: none;
	    left: 0;
	    position: absolute;
	    right: 0;
	    top: 0;
	    width: 100%;
		}
		.camera_caption {
	    position: absolute;
	    top: 0;
	    right: 0;
	    left: 0;
	    bottom: 0;
	    margin: 0 auto;
	    height: 120px;
	    width: 300px;
		}
		.camera_caption_desc {
	    font-size: 16px;
	    line-height: 1.2em;
	    background: var(--red-opacity);
	    text-align: right;
	    padding: 20px 20px 20px 60px;
	    clip-path: var(--cut);
	    position: absolute;
	    bottom: 0px;
	    top: 0;
		}
		.camera_caption_desc span {
	    display: block;
	    font-weight: 800;
	    font-size: 18px;
	    line-height: 1.2em;
		}
		.camera_caption_title {
	    display: block;
	    text-transform: uppercase;
	    text-align: right;
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: -16px;
	    bottom: -16px;
	    font-size: 12px;
		}
		.camera_caption_title span.horizontal {
	    display: block;
	    text-transform: uppercase;
	    position: absolute;
	    right: 0px;
	    bottom: 0;
		}
		.camera_caption_title span.vertical {
	    transform: rotate(271deg);
	    transform-origin: 0 100%;
	    position: absolute;
	    bottom: 16px;
	    display: inline-block;
	    left: 100%;
	    white-space: nowrap;
		}

		.camera_wrap .camera_pag .camera_pag_ul {
			zoom: 0.5;
		}
	/*slideshow end*/

	body {
		font-size: 16px;
		line-height: 1.2em;
	}

	.tck-blog .page-header h1,
	.tck-article .page-header h1,
	.archive .page-header h1,
	.mainpage .tck-article .page-header h1,
	h3.tck-module-title {
		margin: 0px 0px 50px 0px;
		letter-spacing: 10px;
		font-size: 26px;
	}
	h4 {
		line-height: 1.2rem;
	}
	.newsflash-title a {
    font-size: 18px;
    line-height: 1.2rem;
	}

	.blog-item .page-header h2 {
    font-size: 18px;
  }

  .featuredmodules .mod-articlesnews__item {
  	display: block;
  }

  .page-header h2 {
    font-size: 18px;
  }

  blockquote {
  	padding-left: 10px;
  	margin-left: 30px;
  	width: calc(100% - 30px);
  }
  blockquote:before {
  	width: 22px;
    height: 22px;
    left: -30px;
  }

	.event-date {
    font-size: 16px;
  }
  .event-header {
  	display: block;
  }
  .event-data .event-date, .event-data .event-location, .event-data .event-link, .event-data .event-pdf, .event-data .event-registration {
  	white-space: nowrap;
  	overflow: hidden;
  }
  .event-data .event-date img, .event-data .event-location img, .event-data .event-link img, .event-data .event-pdf img, .event-data .event-registration img {
    margin-right: 6px;
    width: 20px;
	}

	.aa-events-title {
    font-size: 18px;
  }
  .performer {
    width: 50%;
  }
  .participantslist ul.fields-container li {
    width: 50%;
  }


  .modal.fade .modal-dialog {
  	margin: 0 2px;
  }
  .modal-content {
    width: calc(100% - 16px);
  }
  .modal-body {
    padding: 0.2rem;
  }
  .jviewport-height60 {
    height: 460px !important;
	}

	form.mod-finder.js-finder-searchform.form-search.mainsearchmodule {
		top: 39px;
    width: 100%;
	}
	.result__title a {
    font-size: 18px;
  }
  .result__item {
    display: flex;
    gap: 5px;
	}
	.page-link {
		padding: 5px;
	}

	

	.mod-articlesnews.newsflash {
		margin: 26px 0;
	}
	h3.tck-module-title {
		margin-bottom: 10px;
    padding-bottom: 10px;
	}






	.archive .form-inline {
		flex-wrap: wrap;
	}
	.me-2.archiveform1 {
		width: 100%;
	}
	.me-2.archiveform2,
	.me-2.archiveform3,
	.me-2.archiveform4 {
		flex: 1;
		text-align: left;
	}
	.me-2.archiveform2 {
		margin-left: 69px;
	}

	#footer .flexiblecolumn {
		margin-bottom: 20px;
		border-right: none;
	}
	div#footerwrapper > .inner {
    padding: 10px 0;
	}

	.partner {
    padding-top: 16px;
	}
	.partner:before {
		top: 16px;
	}

	.partners {
		display: block;
	}
	.partner {
    padding-top: 16px;
    padding-bottom: 40px;
	}

	.partner h3.tck-module-title {
		letter-spacing: 4px;
		font-size: 20px;
		margin-bottom: 14px;
    padding-bottom: 8px;
	}

	span.overlaybox {
    font-size: 15px;
    padding: 5px 10px 5px 98px;
    width: 100%;
	}
	.woy {
    margin-top: -60px;
	}
	.woy img {
		padding: 0px 50px;
	}

	/*tenderpage*/

	.tenderpage .com-content-category-blog__item.blog-item.tck-article {
  	display: block;
  }
  


}

@media screen and (max-width: 600px) {
	.partner #mc_embed_signup {
		width: 100% !important;
	}

@media screen and (max-width: 524px) {
	.contact {
		padding: 104px 15px;
	}

	.archive .form-inline {
		display: block;
	}
	.me-2.archiveform2,
	.me-2.archiveform3,
	.me-2.archiveform4 {
		width: 100%;
		margin-left: 68px;
	}
	.me-2.archiveform1 {
		margin-bottom: 4px;
	}
	.me-2.archiveform2,
	.me-2.archiveform3,
	.me-2.archiveform4 {
		margin-bottom: 6px;
	}
	.archive #adminForm .form-select {
		width:	calc(100% - 68px);
	}

	.partner a:before {
		width: 12px;
		height: 20px;
	}
	span.overlaybox {
		position: relative;
		clip-path: none;
		padding: 5px 10px;
		display: block;
    text-align: left;
	}
	.mainmodules.tck-module {
    margin-bottom: 0px;
	}
	.mod-articlesnews__item-0 {
    display: block;
	}
	.woy {
    margin-top: -60px;
	}
	.woy img {
		padding: 0px 20px;
	}
	div#footerwrapper {
    margin-top: 20px;
	}

}
