@charset "utf-8";

/* FONTS */
/* source-sans-pro-regular - latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local('SourceSansPro Regular'), local('SourceSansPro-Regular'),
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-regular.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-regular.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* source-sans-pro-300 - latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local('SourceSansPro Light'), local('SourceSansPro-Light'),
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-300.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-300.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* source-sans-pro-600 - latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local('SourceSansPro SemiBold'), local('SourceSansPro-SemiBold'),
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-600.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-600.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* source-sans-pro-900 - latin */
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: local('SourceSansPro Black'), local('SourceSansPro-Black'),
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-900.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/google/source_sans_pro/source-sans-pro-v18-latin-900.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local('MaterialIcons Regular'), local('MaterialIcons-Regular'),
		url('../fonts/google/material_icons/material-icons-regular.woff2') format('woff2'),
		/* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../fonts/google/material_icons/material-icons-regular.woff') format('woff');
	/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* FONTS */

/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END RESET CSS */

:root {
	--colorUehaDark: #003b3b;
	--colorUehaPrimary: #007a7a;
	--colorUehaLight: #8fc7c7;
	--colorTextDark: #4c5367;
	--colorBtnPrimary: #007a7a;
	;
	--colorBtnSecondary: #333;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* overscroll-behavior: none; */
}

body {
	/* overscroll-behavior: none; */
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 300;
	color: var(--colorTextDark);
	padding-top: 4.5rem;
}

@media screen and (max-width: 736px) {
	body {
		font-size: 20px;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
}

.escape {
	text-transform: none;
}

h1,
.h1 {
	font-size: 3.25rem;
	/* margin: 0 0 2rem 0; */
}

h2,
.h2 {
	font-size: 2.5rem;
	/* margin: 0 0 2rem 0; */
}

h3,
.h3 {
	font-size: 1.5rem;
	/* margin: 2rem 0 .5rem 0; */
}

h4,
.h4 {
	font-size: 1.25rem;
	/* margin: 2rem 0 .5rem 0; */
}

.text-block {
	margin-top: 3rem;
	margin-bottom: 3rem;
	text-align: left;
}

.text-block:first-child .h3 {
	margin-top: 0 !important;
}

.text-block p {
	margin-bottom: revert;
}

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

	h1,
	.h1 {
		font-size: 2.85rem;
	}

	h2,
	.h2 {
		font-size: 2rem;
	}

	h3,
	.h3 {
		font-size: 1.25rem;
	}

	h4,
	.h4 {
		font-size: 1rem;
	}

	.text-block h1,
	.text-block .h1 {
		font-size: 1.8rem;
		hyphens: auto;
		word-break: break-word;
	}

	.text-block h2,
	.text-block .h2 {
		font-size: 1.6rem;
		hyphens: auto;
		word-break: break-word;
	}

	.text-block h3,
	.text-block .h3 {
		font-size: 1.2rem;
		hyphens: auto;
		word-break: break-word;
	}

	.text-block h4,
	.text-block .h4 {
		font-size: 1.0rem;
		hyphens: auto;
		word-break: break-word;
	}

}

.text-block ol,
.text-block ul {
	list-style: revert;
	margin: revert;
	padding: revert;
}

/* for ol, ul */
.text-block ol.no-list,
.text-block ul.no-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 736px) {
	.text-block {
		font-size: 0.9em;
	}

	.text-block ol,
	.text-block ul {
		padding-left: 25px;
	}
}

a {
	color: #7a7d86;
}

a:not(.btn):hover,
a:not(.btn):focus {
	color: var(--colorUehaLight);
}

.invert a {
	color: #ffffff;
}

.invert a:not(.btn):hover,
.invert a:not(.btn):focus {
	color: var(--colorUehaLight);
}

p {
	margin-bottom: 2rem;
}

p.small,
p small {
	font-size: 0.8em;
}

b,
strong {
	font-weight: 600;
}

hr {
	opacity: 0.3;
}

.reset-margin {
	margin: 0px;
}

/*****************************************/

/* buttons and button styled links */
button {
	display: block;
	background: #141e27;
	color: var(--colorUehaPrimary);
	border: none;
	text-transform: uppercase;
	padding: 1rem 2.5rem;
	margin: 0px auto;
	font-weight: 600;
	cursor: pointer;
}

button:hover {
	color: #7a7d86;
}

button.petrol {
	display: block;
	background: linear-gradient(45deg, #007a7a 0%, #6eccbf 100%);
	box-shadow: 0px 8px 20px rgb(32 45 45);
	/* box-shadow: 0px 8px 20px rgb(141 212 209 / 90%); */
	/* box-shadow: 0px 8px 15px rgb(0 0 0 / 10%); */
	border: none;
	text-transform: uppercase;
	/* color: #fff; */
	color: #2f383f;
	padding: 1rem 2.5rem;
	/* margin: 40px auto 0px auto; */
	border-radius: 3rem;
	font-weight: 600;
	transition: transform .2s;
}

button.petrol:hover {
	background-color: #007a7a44;
	color: #2f383f;
	box-shadow: 0px 15px 27px rgb(32 45 45 / 90%);
	/* box-shadow: 0px 15px 27px rgb(141 212 209 / 90%); */
	transform: translateY(-7px);
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: 3px solid;
	border-radius: 3rem;
	font-weight: 600;
	transition: transform .2s;
	/* Animation on parent for smooth on and off*/
	margin: 20px auto;
	text-decoration: none;
}

.btn-light {
	border-color: #fff;
	color: #fff;
}

.btn-light:hover,
.btn-light:focus {
	background: #ffffff44;
	color: #fff;
}

.btn-petrol {
	border-color: var(--colorUehaPrimary);
	background-color: var(--colorUehaPrimary);
	color: #fff;
}

.btn-petrol:hover,
.btn-petrol:focus {
	background-color: var(--colorUehaPrimary);
	color: #fff;
}

/* .arrow-light::after, */
.btn::after {
	font-family: 'Material Icons';
	content: '\e941';
	float: right;
	line-height: inherit;
	margin-left: 0.75rem;
	display: none;
}

/* .btn-light:hover .arrow-light::after, */
.btn:hover.btn::after {
	display: block;
}

.image-link {
	background: hsl(180deg 13% 5%);
	margin-top: 1rem;
}

.image-link img {
	max-width: 100%
}

.image-link span {
	display: inline-block;
	padding: 8px 10px 10px 10px;
}

.image-link:hover {
	cursor: pointer;
	filter: grayscale(1);
	border: 1px solid #007a7a;
}

/*****************************************/

/* google icons */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	/* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}

/*****************************************/

/* main header */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6.0rem;
	line-height: 6.0rem;
	background-color: hsl(208deg 32% 9%);
	cursor: default;
	z-index: 10000;
}

.main-header>.logo {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	height: 100%;
	left: 2rem;
}

.main-header>.logo>a {
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8em;
	letter-spacing: 2px;
}

.main-header>.logo img {
	display: block;
	max-width: 130px;
	/* 110px bei Bildmarke */
}

/* main navigation */
.main-header>nav {
	position: absolute;
	top: 0;
	right: 2rem;
}

.main-header>nav>ul>li {
	position: relative;
	display: inline-block;
	margin: 0 0.75rem;
	padding: 0;
}

.main-header>nav>ul>li>a {
	padding: 0 0.75rem;
	font-weight: 400;
	overflow: hidden;
	text-decoration: none;
	text-transform: uppercase;
	color: #ffffff;
}

.main-header>nav>ul>li>a:hover,
.main-header>nav>ul>li>a:focus {
	color: #8fc7c7;
}

.main-header>nav>ul>li.active a {
	color: var(--colorUehaPrimary);
	font-weight: 400;
	text-decoration: line-through;
}

.main-header .icon-link a {
	font-size: 1.4em;
	padding: 0.75rem;
	color: #ffffff;
}

.main-header .icon-link a:hover,
.main-header .icon-link a:focus {
	color: #8fc7c7;
}

button#nav-toggle-button {
	display: none;
	position: absolute;
	right: 2rem;
	margin: 0;
	padding: 0;
	font-size: 1.9em;
	line-height: 6.5rem;
	background: none;
	z-index: 101;
}

button#nav-toggle-button .material-icons {
	font-size: 30px;
}

@media screen and (max-width: 980px) {
	.main-header>nav {}

	.main-header>nav>ul {
		position: fixed;
		right: -20rem;
		padding: 5rem 3rem 2rem 2rem;
		background: hsl(208deg 33% 6%);
		height: 100%;
		z-index: 100;
		transition: ease all .4s;
	}

	.main-header>nav.open ul {
		right: 0rem;
	}

	.main-header>nav>ul>li {
		display: block;
		line-height: normal;
		margin: 0 0.75rem;
		padding: 0.75rem;
	}

	button#nav-toggle-button {
		display: block;
	}
}

span.anchor {
	display: block;
	position: absolute;
	top: -100px;
	visibility: hidden;
}

/*****************************************/

/* main wrapper */
.main-wrapper {
	width: 100%;
	/* max-width: calc(100% - 7rem); */
	margin: 0 auto;
	/* padding: 6rem 0; */
	overflow: hidden;
}

.main-wrapper>* {}

.main-wrapper> :first-child {
	margin-top: 0;
}

/*
@media screen and (max-width: 1680px) {
  .main-wrapper {
    padding: 3.5rem 0;
  }
}

@media screen and (max-width: 1280px) {
  .main-wrapper {
    max-width: calc(100% - 5rem);
    padding: 2.5rem 0;
  }

  .main-wrapper > * {
  }
}

@media screen and (max-width: 736px) {
  .main-wrapper {
    max-width: calc(100% - 4rem);
    padding: 2rem 0;
  }

  .main-wrapper > * {
  }
} */

@media screen and (max-width: 640px) {
	.main-wrapper {
		max-width: 100%;
		padding: 0;
	}

	.main-wrapper>* {
		/* margin: 1.5rem 0 0 0; */
		box-shadow: none;
	}
}

/*****************************************/

.background {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: -1;
}

.background.green {
	background: hsl(180deg 14% 30%)
}

.background.green-dark {
	background: hsl(180deg 14% 25%);
}

.background.green-dark-mesh {
	/* background by SVGBackgrounds.com */
	background-color: hsl(180deg 14% 25%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23192121' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23192121'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
	/* background by SVGBackgrounds.com */
	background-size: 30%;
}

.background.green-dark-extra {
	background: hsl(180deg 14% 15%);
}

.background.petrol-light {
	background: hsl(180deg 100% 27%);
	/* #008a8a */
}

.background.petrol-dark {
	background: hsl(184deg 45% 18%);
}

.background.blue {
	background: hsl(206deg 25% 13%);
}

.background.blue-dark {
	background: hsl(206deg 25% 8%);
	/*hsl(207deg 27% 8%);*/
}

.background.blue-dark-extra {
	background: hsl(206deg 78% 5%);
}

.background.grey-blue {
	background: hsl(200deg 15% 18%);
}

.background.grey-light {
	background: #ebebeb;
	/* #f3f3f3 */
}


.banner h1,
.banner h2,
.banner h3,
.banner h4,
.banner h5,
.banner h6 {
	color: #ffffff;
	margin-bottom: 0;
}

.banner {
	color: #ffffff;
	padding: 12rem 6rem 10rem 6rem;
	cursor: default;
	position: relative;
	text-align: center;
}

.banner .image {
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}

@media screen and (max-width: 736px) {
	.banner {
		padding: 5rem 2rem 3rem 2rem;
	}
}

.banner .image {
	display: inline-block;
}

.banner .image img {
	-moz-object-fit: cover;
	-webkit-object-fit: cover;
	-ms-object-fit: cover;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img.simple-image {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/*****************************************/

.slide {
	position: relative;
	background-color: #ffffff;
	overflow: hidden;
	z-index: 1;
}

.slide>*,
.slide-content>* {
	margin: 0 auto;
}

.slide-content-wrap {
	max-width: 64rem;
	padding: 8rem 6rem 8rem 6rem;
	text-align: center;
}

@media screen and (max-width: 980px) {
	.slide-content-wrap {
		padding: 5rem 1.5rem 5rem 1.5rem;
	}
}

.slide-content-wrap.invert {
	color: #ffffff;
}

/*.slide-content-wrap.invert a:not(.btn):hover {
  color: var(--colorUehaLight);
}*/

.slide>header {
	text-align: center;
	margin: 0 auto;
}

.slide>header:not(:only-child) {
	margin-bottom: 45px;
}

.slide>* {
	position: relative;
	max-width: 100%;
}

header h2+p {
	font-size: 1.25rem;
	margin-top: -1rem;
}

header p {
	position: relative;
	margin: 0 0 1.5rem 0;
}

.headline {
	position: relative;
	padding-bottom: 2rem;
	margin-bottom: 3rem;
}

.headline:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 20rem;
	width: 75%;
	height: 2px;
	margin: 0 auto;
	background-image: linear-gradient(90deg, #008080, #d5ff83);
}

/*****************************************/

.lightgrey {
	background: #ebebeb;
	/* #f3f3f3 */
}

.inverse {
	/* background: #f8f7f7;
	background: #2f383f; */
	background: #182128;
}

.inverse-grey {
	background: #60676c;
}

.inverse-grey-dots {
	background-image:
		radial-gradient(hsl(205deg 6% 30%) 0.9500000000000001px, transparent 0.9500000000000001px),
		radial-gradient(hsl(205deg 6% 30%) 0.9500000000000001px, #60676c 0.9500000000000001px);

	background-size: 38px 38px;
	background-position: 0 0, 19px 19px;
}

.inverse-petrol {
	/* background: #f8f7f7; */
	background: var(--colorUehaPrimary);
}

.inverse-petrol-lightened {
	background: #008a8a;
}

.inverse-petrol-dots {
	background-image:
		radial-gradient(#003b3b 0.9500000000000001px, transparent 0.9500000000000001px),
		radial-gradient(#003b3b 0.9500000000000001px, var(--colorUehaPrimary) 0.9500000000000001px);
	background-size: 38px 38px;
	background-position: 0 0, 19px 19px;
}

.inverse-dark-green-dots {
	background-image:
		radial-gradient(#003b3b 0.9500000000000001px, transparent 0.9500000000000001px),
		radial-gradient(#003b3b 0.9500000000000001px, #092a2a 0.9500000000000001px);
	background-size: 38px 38px;
	background-position: 0 0, 19px 19px;
}

.inverse-petrol-mesh {
	/* background by SVGBackgrounds.com */
	background-color: #007A7A;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23003232' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23003232'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
	/* background by SVGBackgrounds.com */
}

.inverse-extra-dark-green {
	background: hsl(180deg 14% 15%);
}

.inverse-extra-dark-green-grad1 {
	background: hsl(180deg 14% 15%);
}

.inverse-extra-dark-green-grad2 {
	background: hsl(180deg 14% 20%);
}

.inverse-extra-dark-green-grad3 {
	background: hsl(180deg 14% 25%);
}

.inverse-extra-dark-green-grad3-mesh {
	/* background by SVGBackgrounds.com */
	background-color: hsl(180deg 14% 25%);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23192121' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23192121'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
	/* background by SVGBackgrounds.com */
}

.inverse-extra-dark-green-grad4 {
	background: hsl(180deg 14% 30%);
}

.inverse-extra-dark-green-grad5 {
	background: hsl(180deg 14% 35%);
}

.inverse-dark-rose {
	background: hsl(328deg 22% 13%);
}

.inverse-dark-blue {
	background: #141e27;
}

.inverse-extra-dark-blue {
	background: #030f18;
}

.inverse-footer-dark-blue {
	background: hsl(207deg 27% 8%);
}

.inverse-grey-blue {
	/* background: #7c939f; */
	background: hsl(200deg 22% 14%);
}

.inverse-dark-petrol {
	background: var(--colorUehaDark);
	/* background-color: hsl(208deg 32% 9%); */
}

.inverse-ligen {
	background: hsl(184deg 45% 18%);
}


.pattern-dark-diagonal {
	background: repeating-linear-gradient(-45deg, #10171e, #10171e 24px, #182128 24px, #182128 50px);
}

.pattern-dark-vertical {
	background: repeating-linear-gradient(45deg, #151d23, #151d23 18px, #182128 18px, #182128 20px);
}

.inverse h1,
.inverse h2,
.inverse h3,
.inverse h4,
.inverse h5,
.inverse h6,
.inverse a,
.inverse p {
	color: #fff;
}

.inverse a:hover,
.inverse a:focus {
	color: #8fc7c7;
}

.background-light {
	background: #ebebeb;
	/* #f3f3f3 */
}

/*****************************************/

.hide {
	display: none;
}

.show {
	display: block;
}

#sponsors {
	padding: 2rem 6rem 2rem 6rem;
}

#contact {
	/* background: #141e27; */
}

.slide#legal {
	padding: 0.5rem 3rem 3rem 3rem;
	text-align: center;
}

div.liga {
	width: 100%;
	text-align: left;
}

div.liga>* {
	margin: 0px;
}

img.liga {
	display: block;
	margin-right: 20px;
	max-width: 80px;
	min-width: 80px;
	width: 10vw;
}

img.sponsor {
	display: block;
	margin: 0 auto;
}

.simple-grid img.sponsor {
	margin: unset;
	margin-bottom: 15px;
}

.simple-grid img.sponsor:last-child:not(:only-child) {
	margin: unset;
	margin-bottom: unset;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text],
select,
textarea {
	width: 100%;
	padding: 12px;
	/* border: 1px solid hsl(208deg 32% 40%);  */
	border: 1px solid hsl(180deg 100% 24%);
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
	background: none;
	color: #fff;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	/* color: hsl(208deg 32% 40%); */
	color: hsl(180deg 100% 24% / 40%);
	opacity: 1;
	/* Firefox */
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: hsl(208deg 32% 40%);
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
	background-color: #ffffff00;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
	background-color: #45a049;
}

input[type=submit] {
	display: inline-block;
	padding: 1rem 2rem;
	border: 3px solid;
	font-weight: 600;
	transition: transform .2s;
	/* Animation on parent for smooth on and off*/
	border-color: var(--colorUehaPrimary);
	background: var(--colorUehaPrimary);
	color: #141e27;
}

input[type=submit]:hover,
input[type=submit]:hover {
	background: none;
	color: var(--colorUehaPrimary);
	/* transform: translateY(-7px); */
}

input[type=submit]::before {
	font-family: 'Material Icons';
	content: '\e941';
	float: right;
	line-height: inherit;
	margin-left: 0.75rem;
}

.contact-form label {
	text-transform: uppercase;
	font-size: 0.7em;
	font-weight: 600;
	color: hsl(180deg 100% 24%);
}

/* Add a background color and some padding around the form */
.container {
	margin: 0 auto;
	color: #fff;
	/* border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px; */
}

/*****************************************/

/* Carousel slider */
.carousel {
	position: relative;
	width: 100%;
}

.carousel .carousel-item,
.carousel .carousel-item-hidden {
	display: none;
	margin: 0 auto;
	line-height: 0;
}

.carousel .carousel-item-visible {
	display: block;
	animation: fadeVisibility 0.5s;
}

.carousel .carousel-item>img {
	width: 100%;
	height: auto;
}

.carousel .carousel-actions {
	display: flex;
	position: absolute;
	width: 100%;
	justify-content: space-between;
	top: 50%;
	transform: translateY(-50%);
}

.carousel .carousel-actions button {
	background-color: rgba(0, 0, 0, 0.2);
	color: #ffffff;
	padding: 2.5rem 2rem;
	margin: unset;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.carousel .carousel-actions button.carousel-button-prev {
	left: 0;
	border-radius: 0 3px 3px 0;
}

.carousel .carousel-actions button.carousel-button-next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.carousel .carousel-actions button.carousel-button-prev:hover,
.carousel .carousel-actions button.carousel-button-next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

@keyframes fadeVisibility {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*****************************************/

/* x-scroller */
.content-wrapper-scroll {
	display: flex;
	overflow-x: scroll;
}

/* width / height scrollbar */
.content-wrapper-scroll::-webkit-scrollbar {
	-webkit-appearance: none;
	/* -webkit-overflow-scrolling: auto; */
	/* width: 10px; */
	height: 10px;
	background-color: hsl(204deg 11% 75% / 0.35);
	border-radius: 0px;
}

/* Track */
.content-wrapper-scroll::-webkit-scrollbar-track {
	border-radius: 0px;
}

/* Handle */
.content-wrapper-scroll::-webkit-scrollbar-thumb {
	border-radius: 0px;
	background-color: hsl(204deg 11% 65%);
	/* -webkit-box-shadow: 0 0 1px var(--colorUehaPrimary); /*rgba(255,255,255,.5);*/
}

/*****************************************/

.card-wrapper {
	/* display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center; */
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr)); */
	grid-template-columns: repeat(auto-fill, minmax(min(100%/1, max(160px, 100%/4)), 1fr)); /*  1 - 4 columns with a min-width of 180px per column */
    grid-gap: 1rem;
    align-items: center;
    justify-items: center;
}

@media screen and (max-width: 980px) {
	.card-wrapper {
		/* display: flex;
		overflow-x: scroll;
		flex-direction: unset;
		flex-wrap: unset;
		align-items: unset;
		justify-content: unset; */
	}

	/* width / height scrollbar */
	.card-wrapper::-webkit-scrollbar {
		-webkit-appearance: none;
		/* -webkit-overflow-scrolling: auto; */
		/* width: 10px; */
		height: 10px;
		background-color: hsl(204deg 11% 75% / 0.35);
		border-radius: 0px;
	}

	/* Track */
	.card-wrapper::-webkit-scrollbar-track {
		border-radius: 0px;
	}

	/* Handle */
	.card-wrapper::-webkit-scrollbar-thumb {
		border-radius: 0px;
		background-color: hsl(204deg 11% 65%);
		/* -webkit-box-shadow: 0 0 1px var(--colorUehaPrimary); /*rgba(255,255,255,.5);*/
	}
}

.card {
	position: relative;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 20%;
	min-width: 160px;
	max-width: 300px;
	width: 100%;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border-radius: 5px;
	background: linear-gradient(0deg, black, transparent);
}

.card>* {
	z-index: 1;
}

.background-card {
	position: absolute !important;
	top: 20px;
	right: 0px;
	width: 143%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 0;
	/* filter: grayscale(0.7); */
}

.card.blue {
	background-color: hsl(180deg 15% 36%);
	/*#ebeef8;*/
}

.card.green {
	background-color: hsl(60deg 15% 36%);
}

.card.rust {
	background-color: hsl(25deg 15% 36%);
}

.card.dark {
	background-color: #0d101c;
	color: #ffffff;
}

.card.dark {
	background-color: #0d101c;
	color: #ffffff;
}

.card .card-img {
	width: 101%;
	height: 8rem;
	margin-top: -1%;
	object-fit: cover;
	background-color: #4c6a6a;
	/* -webkit-clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 78%, 0% 100%); */
}

.card .profile-img {
	width: 4rem;
	height: 4rem;
	margin-top: -2.5rem;
	z-index: 999;
	filter: saturate(0.15);
}

.card .card-content {
	width: 100%;
	padding: 15px 10px 10px 10px;
	text-align: center;
	box-sizing: border-box;
	background: hsl(180deg 13% 5%);
}

.card .card-content>*:not(.social-links) {
	color: inherit;
	margin: 0;
}

.card .card-content>*:last-child {
	margin-bottom: 5px;
}

.card .card-content h3,
.card .card-content h4 {
	margin: 0;
	text-transform: none;
	font-weight: 600;
	font-size: 1.0rem;
	font-size: clamp(1rem, 0.8636rem + 0.6818vw, 1.3rem);
}

.card .card-content p {
	font-size: 1.0rem;
}

.card .card-content .text-game-mode {
	color: var(--colorUehaPrimary);
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: bolder;
	margin: 15px auto 5px auto;
	display: none;
}

.card .labellike {
	position: absolute;
	display: inline-block;
	top: 0.625rem; /* 10px */
	right: 10px;
	background-color: #006161;
	padding: 3px 9px 2px 9px;
	border-radius: 3px;
	font-weight: 600;
	font-size: 0.7em;
	text-transform: uppercase;
	z-index: 100;
}

.card .labellike + .labellike {
	top: 2.5rem;
}

.card .labellike.second-row {
	top: 38px;
}

.card .labellike.black {
	background-color: #000000;
}

.card .labellike.orange {
	background-color: hsl(34deg 98% 44%);
	;
}

.card .country-flag {
	position: absolute;
	width: 20px;
	height: 12px;
	z-index: 100;
	left: 14px;
	top: 14px;
}

.blank {
	visibility: hidden;
}

@media screen and (max-width: 980px) {
	.blank {
		display: none;
	}
}

.card-btn .card-content {
	padding: 20px;
}

.card-btn .card-content h3 {
	text-align: left;
	font-size: 1.7em;
	font-weight: 900;
}

a.card-btn {
	min-height: 300px;
	background-color: var(--colorUehaPrimary);
	color: #fff;
	text-decoration: none;
	transition: ease all .4s;
}

a.card-btn:hover,
a.card-btn:focus {
	background-color: var(--colorUehaPrimary);
	color: #fff;
	text-decoration: line-through;
}

.arrow::after {
	display: none;
	font-family: 'Material Icons';
	content: '\e941';
	float: right;
	line-height: inherit;
	margin-left: 0.75rem;
}

a.card-btn:hover .arrow::after,
a.card-btn:focus .arrow::after {
	display: block;
}

.card-trophy {
	position: relative;
	margin: 1rem 1%;
	min-width: 180px;
	max-width: 200px;
	width: 180px;
	background-color: #141c22;
	border-radius: 5px;
	border: gold 1px solid;
	box-sizing: content-box;
	padding: 20px 30px 10px 30px;
}

.card-trophy img {
	width: 100%;
}

.card.blank.only-mobile {
	display: none;
}


/*
@media screen and (max-width: 736px) {
	.card .labellike.second-row {
		top: 38px;
	}
	.card .card-content p {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 536px) {
	.card .card-content h3,
	.card .card-content h4 {
		font-size: 1.10em;
	}
	.card-btn .card-content h3,
	.card-btn .card-content h4 {
		font-size: 1.4em;
	}
}

@media screen and (max-width: 469px) {
	.card .card-content h3,
	.card .card-content h4 {
		font-size: 1.00em;
	}
	.card .card-content p {
		font-size: 0.8em;
	}
	.card-btn .card-content h3,
	.card-btn .card-content h4 {
		font-size: 1.25em;
	}
}

@media screen and (max-width: 369px) {
	.card {
		min-width: 220px;
	}
	.card .card-content h3,
	.card .card-content h4 {
		font-size: 1.2em;
	}
	.card .card-content p {
		font-size: 0.9em;
	}
	.card-btn .card-content h3,
	.card-btn .card-content h4 {
		font-size: 1.4em;
	}
}*/

/*****************************************/

.social-links {
	margin-top: 10px;
	min-height: 40px;
}

.social-links a {
	padding: 0.2em;
	font-size: 27px;
	color: inherit;
}

.social-links a:hover,
.social-links a:focus {
	color: var(--colorUehaLight);
}

/*****************************************/

/* regular table style */
.styled-table {
	border-collapse: collapse;
	margin: 0 auto;
	font-size: 0.9em;
	font-family: sans-serif;
	min-width: 80%;
	box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, 0.2);
}

.styled-table thead tr {
	background-color: var(--colorUehaDark);
	color: #ffffff;
	text-align: left;
}

.styled-table th,
.styled-table td {
	padding: 12px 15px;
}

.styled-table tbody tr {
	border-bottom: 1px solid #dddddd;
}

.inverse .styled-table tbody tr {
	color: #ffffff;
}

.styled-table tbody tr:nth-of-type(even) {
	background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
	border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
	font-weight: bold;
	color: #009879;
}

/*****************************************/

/* tablelike style */
.tablelike {
	display: table;
	border-collapse: collapse;
	margin: 0 auto;
	margin-bottom: 1.2rem;
	font-size: 0.8em;
	font-family: sans-serif;
	width: 100%;
	box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, 0.2);
	color: #005757;
	background-color: #ffffff;
	text-align: left;
}

.tablelike>* {
	display: table-row;
}

.tablelike>header {
	display: table-caption;
	background-color: #005757;
	color: #ffffff;
	text-align: left;
	text-transform: uppercase;
	padding: 25px 25px;
}

.tablelike .cell {
	display: table-cell;
	padding: 15px 25px;
}

.inverse .tablelike .row {
	color: #ffffff;
}

.inverse .tablelike .row:nth-of-type(odd) {
	color: #ffffff;
}

.tablelike .row:nth-of-type(even) {
	/* background-color: #fff3; */
	background-color: hsl(0deg 0% 97%);
}

.tablelike .row:last-of-type {
	/* border-bottom: 2px solid var(--colorUehaDark); */
}

.tablelike .row.active-row {
	font-weight: bold;
	color: #009879;
}

.tablelike .cell:last-child {
    text-align: right;
}

.tablelike span.date {
	font-weight: bold;
}

@media screen and (max-width: 736px) {
	.tablelike>* {
		display: block;
	}

	.tablelike .row {
		padding: 15px 0;
	}

	.tablelike .cell {
		display: block;
		padding: 3px 15px;
		text-align: left !important;
	}

	.tablelike span.date + br {
		display: none;
	}
}

.pagination.hide{
	display: none;
}

/*****************************************/

.tag {
	display: inline-block;
	padding: 0.15rem 0.6rem;
	margin: .15rem;
    border-radius: 2px;
	font-weight: normal;
    font-size: 0.85rem;

	background-color: #d9e0ea;
	color: var(--colorTextDark);
}

.tag.device {
	background-color: #d9e0ea;
	color: unset;
}

.tag.game {
	background-color: #007a7a;
	color: #fff;
}

.tag.result {
	background-color: #006161;
	color: #fff;
}


/*****************************************/

span.labellike {
	display: inline-block;
	background-color: #006161;
	padding: 5px 8px;
	border-radius: 5px;

}

h1 span.labellike {
	display: inline-block;
	background-color: var(--colorUehaPrimary);
	color: #fff;
	padding: 5px 8px;
	border-radius: 5px;
	transform: translateY(-5px);
	margin: 0 10px;
	font-size: 0.5em;
}

span.device-game {
    background-color: #d9e0ea;
    padding: 0.4rem 0.6rem;
    border-radius: 2px;
}

/*****************************************/

/* tabs */
.tabs {}

.tabs .tab-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 2rem auto;
	width: fit-content;
	overflow: hidden;
}

.tabs .tab-links.full-width {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	background-color: #003b3baa;
	margin: 0 auto 0 auto;
	width: 100%;
}

.tabs button {
	background-color: #003b3baa;
}

.tabs button.tab-link-item {
	flex-grow: 0;
	flex-shrink: 1;
	background-color: #005757;
	color: #fff;
	outline: none;
	transition: 0.3s;
	margin: 0.25rem;
	padding: 1rem 1.5rem;
	border-radius: 50%;
	height: 100%;
}

.tabs .full-width button.tab-link-item {
	background-color: unset;
}

.tabs :not(.full-width) button.tab-link-item:not(:last-of-type) {
	/* margin-right: 3px; */
}

.tabs button.tab-link-item:hover,
.tabs button.tab-link-item:focus {
	background-color: #007070;
	color: #fff;
}

.tabs .full-width button.tab-link-item:hover,
.tabs .full-width button.tab-link-item:focus {
	background-color: #007070;
	color: #fff;
}

.tabs .full-width button.tab-link-item.active {
	background-color: #fff;
	color: #005757;
}

.tabs button.tab-link-item.active {
	background-color: #fff;
	color: #005757;
}

.tabs .tab-contents {
	max-width: 1080px;
	margin: 0 auto;
}

.tabs .tab-content-item,
.tabs .tab-content-item-hidden {
	background-color: #fff;
	display: none;
	text-align: left;
}

.tabs .tab-content-item-visible {
	display: block;
}

@media screen and (max-width: 980px) {
	.tabs .tab-links {
		/* margin: 0 auto 6vw auto; */
	}

	.tabs .tab-links.full-width {
		background-color: unset;
		/* margin: 0 auto 6vw auto; */
	}

	.tabs button.tab-link-item,
	.tabs :not(.full-width) button.tab-link-item:not(:last-of-type) {
		flex-grow: 1;
		margin-right: 0px;
	}

	.tabs .full-width button.tab-link-item {
		margin-right: 0px;
		background-color: #003b3baa;
	}

	.tabs button.tab-link-item:not(:last-of-type) {
		/* margin-bottom: 3px; */
	}

	.tabs .tab-contents {
		padding: 0 3rem 3rem 3rem;
	}
}

@media screen and (max-width: 736px) {
	.tabs .tab-contents {
		padding: 0;
	}
}

/*****************************************/

/* accordion */
/* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */
.accordion {
	width: 100%;
	margin: 90px auto;
	color: black;
	background-color: white;
	/* padding: 45px 45px; */
}

.accordion .accordion-item {
	position: relative;
	margin: 10px 10px;
	text-align: left;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */
.accordion .label {
	position: relative;
	padding: 10px 0;
	font-size: 26px;
	color: black;
	cursor: pointer;
	padding-right: 26px;
}

/* Positions the plus sign 5px from the right. Centers it using the transform property. */
.accordion .label::before {
	content: '+';
	color: black;
	position: absolute;
	top: 50%;
	right: -5px;
	font-size: 30px;
	transform: translateY(-50%);
}

/* Hides the content (height: 0), decreases font size, justifies text and adds transition */
.accordion .content {
	position: relative;
	background: white;
	height: 0px;
	font-size: 20px;
	/* text-align: justify; */
	overflow: hidden;
	/* transition: 0.5s; */
}

.accordion .content ul {
	list-style-type: circle;
	padding-left: 1em;
}

/* Adds a horizontal line between the contents */
.accordion hr {
	width: 100;
	margin-left: 0;
	border: 1px solid grey;
}

/* Unhides the content part when active. Sets the height */
.accordion .accordion-item.active .content {
	height: fit-content;
	padding-bottom: 15px;
}

/* Changes from plus sign to negative sign once active */
.accordion .accordion-item.active .label::before {
	content: '–';
	font-size: 30px;
}

/*****************************************/

.insta-grid {

	display: flex;
	overflow-x: scroll;
	width: 100%;
	margin: 0 auto;
}

.insta-post {
	max-width: 420px;
	min-width: 360px;
	margin: 16px 16px 16px 0px;
	background-color: hsl(203deg 22% 18%);
	color: #000;
	border-radius: 5px;
	overflow: hidden;
}

.insta-post img {
	width: 100%;
}

.insta-post>.image {
	position: relative;
}

.insta-post>.image a {
	display: flex;
}

.insta-post>.image a .overlay {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(0, 0, 0, .6);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	font-weight: 600;
	text-align: center;
	line-height: 2em;
}

.insta-post>.image a:hover .overlay {
	visibility: visible;
	opacity: 1;
}

.insta-post>.image a .overlay *:hover {
	color: #fff;
}

.insta-post>.image a .overlay p {
	position: relative;
	-webkit-transform: translateY(20%);
	transform: translateY(20%);
	transition: 0.3s all ease;
}

.insta-post>.image a:hover .overlay p {
	transform: translateY(0);
}

.insta-post>.image a .overlay i {
	font-size: 1.7em;
}

.insta-post>.account {
	display: flex;
	align-items: center;
	position: relative;
	padding: 5px 40px 5px 10px;
	background-color: hsl(208deg 32% 12%);
}

.insta-post>.account>a.title {
	display: flex;
	align-items: center;
	font-size: 0.8em;
	font-weight: 600;
	text-decoration: none;
}

.insta-post>.account>a.title>img {
	width: auto;
	height: 30px;
	margin-right: 7px;
}

.insta-post>.account>.icon-link {
	position: absolute;
	right: 10px;
}

.insta-post>.info-text {
	height: 100%;
	padding: 1em 2em;
	font-size: 0.9em;
	text-align: center;
	color: #000;
	background-color: hsl(204deg 11% 93%);
}

@media screen and (max-width: 736px) {
	.insta-post {
		min-width: 288px;
	}
}

/*****************************************/

.error-404 p {
	font-size: 1.4em;
	font-weight: 500;
	color: var(--colorUehaPrimary);
	text-align: center;
}

@media screen and (max-width: 736px) {
	.error-404 p {
		font-size: 1.1em;
	}
}

@media screen and (max-width: 536px) {
	.error-404 p {
		font-size: 0.9em;
	}
}

/*****************************************/

.simple-grid {
	display: grid;
	grid-auto-flow: row;
	grid-auto-rows: 1fr;
	margin: 0 auto;
}

.simple-grid.columns2 {
	grid-template-columns: 1fr 1fr;
}

.simple-grid.columns3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.simple-grid.gap {
	column-gap: 0.5rem;
}

@media screen and (max-width: 736px) {
	.simple-grid {
		grid-auto-rows: unset;
	}

	.simple-grid.columns2,
	.simple-grid.columns3 {
		grid-template-columns: 1fr;
		width: fit-content;
	}

	.simple-grid>* {
		width: 100%;
	}
}

.footer h3,
.footer h4 {
	color: #ffffff;
}

.footer>div>a {
	text-decoration: none;
}

.footer>div {
	margin: 0 auto;
}

@media screen and (max-width: 736px) {
	.footer>div {
		margin: 0px auto 40px;
	}

	.footer h4 {
		font-size: 1em;
		margin-bottom: 6px;
	}
}

/*****************************************/

/* ligen & turniere */
.flex-item {
	display: flex;
	align-items: center;
}

a.flex-item {
	text-decoration: none;
}

a:hover.flex-item {}

.simple-grid.columns2 .flex-item {
	flex-basis: 45%;
	padding: 0 0 0 4vw;
	margin: 20px 10px;
}

@media screen and (max-width: 736px) {
	.simple-grid.columns2 .flex-item {
		padding: 0 0 0 0;
	}
}

.link-group>* {
	pointer-events: none;
}

a.link-group:hover div.liga>* {
	color: var(--colorUehaLight);
}

/*****************************************/

.flex {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.legal {
	font-size: 0.8em;
	background: hsl(207deg 27% 8%);
	margin-top: 3rem;
}

.legal-links {
	color: #fff;
	font-size: 0.9em;
	text-transform: uppercase;
	padding: 10px;
}

.legal-links a {
	/* padding: 0 10px; */
}

.cookie-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.cookie-notice>span.material-icons {
	margin-right: 5px;
	color: rgb(226, 164, 111);
}

.cookie-notice p {
	font-weight: bold;
	font-size: 0.9em;
	margin: 0;
}

@media screen and (max-width: 320px) {
	.cookie-notice {
		padding: 10px 30px 0px;
	}
}

/*****************************************/

.ticker {
	display: block;
	background: hsl(327deg 23% 13%);
	color: salmon;
	overflow: hidden;
}

.ticker-loop-x {
	display: flex;
	animation: loop-x linear 15s infinite;
}

.ticker-loop-x:hover {
	animation-play-state: paused;
}

.ticker-loop-x>* {
	box-sizing: border-box;
	flex-grow: 0;
	flex-shrink: 1;
	width: 100%;
	padding: 10px;
	text-align: center;
}

@keyframes loop-x {
	0% {
		transform: translate3d(100%, 0, 0);
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}

.ticker-loop-y {
	position: relative;
	height: 48px;
	line-height: 48px;
	animation: loop-y cubic-bezier(1, 0, .5, 0) 12s infinite;
}

.ticker-loop-y:hover {
	animation-play-state: paused;
}

.ticker-loop-y>* {
	width: 100%;
	text-align: center;
}

@keyframes loop-y {
	0% {
		bottom: 0;
	}

	/* item 1 */
	50% {
		bottom: 48px;
	}

	/* item 2 */
	100% {
		bottom: 96px;
	}

	/* copy of 1 to simulate endless scroll */
}

/*****************************************/

.no-scroll {
	overflow: hidden;
}

.micromodal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	background: #000000cc;
	z-index: 10001;
}

.micromodal.is-open {
	display: flex;
}

.micromodal-wrapper {
	position: relative;
	width: 90%;
	max-width: 480px;
	/* margin: 25% auto;
	transform: translateY(-50%); */
	/* animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1); */
}

.micromodal.is-open .micromodal-wrapper {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-viewbox {
	background: #ffffff;
	padding: 3rem 6rem;
	/* animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); */
}

.micromodal.is-open .micromodal-viewbox {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

button.modal-close {
	all: unset;
	position: absolute;
	right: 20px;
	top: 20px;
	font-weight: 900;
	color: var(--colorUehaPrimary);
}

button.modal-close:hover,
button.modal-close:focus {
	color: #8fc7c7;
}

@keyframes mmfadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}

	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-10%);
	}
}

/*****************************************/
/* aos scroll animation div requires 'data-aos' attribute */

.fade-up {
	position: relative;
	transform: translateY(150px);
	opacity: 0;
	transition: 1s all ease;
}

.fade-up.active {
	transform: translateY(0);
	opacity: 1;
}

.fade-left {
	position: relative;
	transform: translateX(150px);
	opacity: 0;
	transition: 1s all ease;
}

.fade-left.active {
	transform: translateX(0);
	opacity: 1;
}

.fade-right {
	position: relative;
	transform: translateX(-150px);
	opacity: 0;
	transition: 1s all ease;
}

.fade-right.active {
	transform: translateX(0);
	opacity: 1;
}