@font-face {
	font-family: "Open Sans Regular";
	src: url("OpenSans-Regular.woff2") format("woff2"), url("OpenSans-Regular.woff") format("woff");
	font-weight: 400;
}
@font-face {
	font-family: "Open Sans Regular";
	src: url("OpenSans-SemiBold.woff2") format("woff2"), url("OpenSans-SemiBold.woff") format("woff");
	font-weight: 700;
}
@font-face {
	font-family: "Open Sans Regular";
	src: url("OpenSans-ExtraBold.woff2") format("woff2"), url("OpenSans-ExtraBold.woff") format("woff");
	font-weight: 900;
}
@font-face {
	font-family: "Open Sans";
	src: url("OpenSans.woff2") format("woff2");
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #303030;
}

::-webkit-scrollbar-thumb {
    border-radius: 30px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #e30613;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #303030;
}

* {
	padding: 0;
	margin: 0;
    font-family: 'Open Sans Regular','Open Sans', Helvetica,sans-serif;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 26px;
	min-width: 400px;
}

body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

a {
	color: #ff000f;
}
	
#top {
    position: relative;
    z-index: 9998;
    width: 100%;
	height: 121px;
	padding: 0 10px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

#display-menu {
	display: none;
}

#top #logo {
    width: auto;
    max-width: none;
}

#top #logo img {
    max-width: none;
    width: 500px;
	height: auto;
    padding: 25px 5%;
    display: block;
    transition: opacity .4s ease;
}

@media (max-width:1200px) {
#top #logo img {
    max-width: none;
    width: 40vw;
	height: auto;
    padding: 25px 5%;
    display: block;
    transition: opacity .4s ease;
}
}

#top #mobile-menu label {
    display: none;
	width: 200px;
	height: 100px;
	margin: auto;
	padding: 30px 80px;
}

@media (max-width:1100px) {
#top #logo img {
    width: 60vw;
}
#top #mobile-menu label {
    width: 25vw;
}
}

#top #mobile-menu label div {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 6px auto;
}

#top nav>ul {
    display: flex;
	flex-flow: row nowrap;
	align-items: center;
	color:#fff;
	transition: all .25s ease;
}

#top nav>ul li {
	display: block;
	margin: 0 12px;
	transition: all .4s ease-in-out;
}

#top nav>ul li a {
	position: relative;
	color:#fff;
	font-weight: 700;
	font-size: 15.5px;
	text-decoration: none;
	transition: all .4s ease-in-out;
}

#top nav>ul li:not(.menu-button) a:hover {
	text-decoration: underline;
	text-decoration-color: #e11f1c;
	text-decoration-thickness: 3px;
}

@media (max-width:1280px) {
#top #mobile-menu label {
	display: block;
}
#top nav>ul {
	position: absolute;
	top: -20px;
	right: 0;
	height: 0;
	opacity: 0;
	flex-flow: column nowrap;
	align-items: top;
	background: #303030;
	width: 250px;
	padding-left: 10px;
	padding-right: 10px;
}
#top nav>ul li {
	margin: 0;
}
#top nav>ul li:first-child {
	border-top: solid 1px white;
}
#top nav>ul li:not(.menu-button) {
	border-bottom: solid 1px white;
	line-height: 0;
	padding: 0;
	width: 100%;
}
#top nav>ul li a {
	display: block;
	padding: 0 40px;
	width: 100%;
}
#top nav:hover ul,
#top nav #display-menu:checked + ul {
	top: 40px;
	height: auto;
	opacity: 1;
}
#top nav:hover ul li,
#top nav #display-menu:checked + ul li {
	line-height: 18px;
}
#top nav:hover ul li:not(.menu-button) a,
#top nav #display-menu:checked + ul li:not(.menu-button) a {
	padding: 20px 40px;
}
#top nav:hover ul li.menu-button,
#top nav #display-menu:checked + ul li.menu-button {
	margin: 10px;
}
}

#top nav>ul li.menu-button {
	background-color: #e11f1c;
    padding: 3px 5px;
    line-height: 27px;
	border-radius: 20px;
	border: solid 3px transparent;
	transition: all .4s ease-in-out;
}

#top nav>ul li.menu-button:hover {
	border: solid 3px #fff;
}

#top nav>ul {
    overflow: visible;
    transition: padding .8s ease,margin .25s ease;
    min-height: 1px;
    line-height: 16px;
}

.clear-both {
	display: block;
	clear: both;
}

section {
	min-width: 400px;
}

h2 {
	font-size: 2.9em;
	font-weight: 400;
	padding: 60px 10px 60px 30px;
	line-height: 34px;
}

h2.text-align-center {
	text-align: center;
}

h2.underline {
	text-decoration: underline #e30613 8px;
	padding: auto auto 44px;
}

h2.red {
	color: #e30613;
	font-weight: 700;
	text-decoration: underline #303030;
}

section.we-are-member-of h2 {
	padding-bottom: 40px;
}

section.we-are-member-of + section {
	padding-top: 100px;
}

.subsection.textboxes {
	display: flex;
	align-items: stretch;
	flex-flow: row nowrap;
	justify-content: space-between;
	gap: 40px;
	width: 80%;
	margin: auto;
	padding-bottom: 60px;
}

@media (max-width:900px) {
.subsection.textboxes {
	flex-flow: row wrap;
}
}

.subsection.textboxes p {
	text-align: justify;
}

.list-of-services {
	width: 80%;
	max-width: 1000px;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: center;
	font-size: 1.6em;
	font-weight: bold;
	padding-top: .2em;
	padding-bottom: 2em;
}

.list-of-services div {
	margin: .3em;
	text-transform: uppercase;
}

.list-of-services .linebreaker {
	display: none;
}

@media (max-width:880px) {
.list-of-services {
	justify-content: center;
}
.list-of-services div {
	width: auto;
	margin: 0 2% 0 2%;
}
.list-of-services .linebreaker {
	display: block;
	width: 100%;
	height: 10px;
	padding: 0;
	margin: 0;
}
}

@media (max-width:460px) {
.list-of-services .linebreaker {
	display: none;
}
}

.middle-carusel {
	position: relative;
	width: 100%;
}

.middle-carusel img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100;
	filter: brightness(0.75);
	opacity: 0;
	animation: 15s linear 5s infinite carusel-looping;
}

.middle-carusel img:first-child {
	position: relative;
	z-index: 99;
	opacity: 1;
	animation: none;
}

.middle-carusel img:last-child {
	animation: 15s linear 10s infinite carusel-looping;
}

@keyframes carusel-looping {
	0% {
		opacity: 0;
	}
	1% {
		opacity: 1;
	}
	34% {
		opacity: 1;
	}
	35% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.darkgray {
	background-color: #303030;
	color: #ffffff;
}

section.darkgray {
	min-height: 50px;
}

section.darkgray h2 {
	color: rgb(255,255,255);
}

.lightgray {
	background-color: rgb(248,248,248);
	min-height: 100px;
}

section.lightgray h2 {
	color: rgb(51,51,51);
}

.green {
	background-color: #cc0;
	color: #ffffff;
	min-height: 100px;
}

.orange {
	background-color: #fa0;
	color: #ffffff;
	min-height: 100px;
}

.green h2,
.orange h2 {
	font-size: 2.2em;
	font-weight: 700;
	padding: 60px 10px 60px 30px;
	line-height: 1.1em;
}

.red {
	background-color: #e30613;
	color: #ffffff;
	min-height: 100px;
}

#map_cz {
	width: 600px;
	max-width: 50vw;
	height: auto;
}

.numbers-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.numbers-container div {
	position: relative;
	width: 25%;
	height: 100px;
	font-size: 4em;
	font-weight: 900;
	text-align: center;
}
@media (max-width:880px) {
.numbers-container div {
	position: relative;
	width: 50%;
	height: 100px;
	font-size: 4em;
	font-weight: 900;
	text-align: center;
}
}

.numbers-container div.number-animation:after {
	position: relative;
	content:  attr(append);
}

.numbers-container div.number-animation:before {
	position: absolute;
	top: 40px;
	width:100%;
	display: block;
	font-size: 0.4em;
	font-weight: 500;
	content: attr(legend);
	text-align: center;
}

section.join-us {
	min-height: 300px;
	background-image: url(../img/bg_join-us.jpg);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 40px;
}

@media (max-width:800px) {
section.join-us {
	background-position: 50% 50%;
}
}

section.join-us h2 {
	color: #fff;
	text-shadow: 1px 1px 4px #000;
	padding-bottom: 40px;
}

section.join-us a {
	display: inline-block;
	color: #fff;
	transition: padding .25s, background .25s, border .25s, border-radius .25s;
}

section.join-us:hover a {
	padding: 0 10px;
	margin: -3px auto;
	background: #e30613;
	border-width: 3px;
	border: solid white;
	border-radius: 20px;
	text-decoration: none;
}

section.join-us a:hover {
	text-decoration: underline;
}

article{
	width: 80%;
	font-size: 115%;
	margin: auto;
	text-shadow: 1px 1px 1px #000;
}

@media (max-width:800px) {
section.join-us h2 {
	padding-top: 40px;
}
}

section.etl-news {
	padding-bottom: 60px;
}

.news-container {
	width: 80%;
    margin: auto;
    padding: 60px auto;
    position: relative;
    display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
}

.news-container .news-inner-box {
    display: flex;
	flex-flow: column nowrap;
	width: 30%;
	max-width: 400px;
	background-color: white;
	box-shadow: 0px 2px 18px 6px rgba(0, 0, 0, 0.1);
	margin: 40px 1%;
	transition: all .25s;
}

.news-container .news-inner-box:hover {
	transform: scale(105%);
}

@media (max-width:900px) {
.news-container {
	flex-flow: row wrap;
}
.news-container .news-inner-box {
	width: 45%;
	margin: 20px 1%;
}
}

@media (max-width:600px) {
.news-container .news-inner-box {
	width: 98%;
}
}

.news-container .news-inner-box .news-image {
	width: 100%;
	box-shadow: 8px 0px 18px -10px rgba(0, 0, 0, 0.1);
	padding-bottom: 0;
	z-index: 100;
}

.news-container .news-inner-box .news-image img {
	width: 100%;
}

.news-container .news-inner-box .news-comment {
	text-align: left;
	line-height: 1.4em;
	background-color: white;
	padding: 12px;
}

.news-container .news-inner-box .news-comment a {
	color: black;
	font-weight: 700;
	transition: all .25s
}

.news-container .news-inner-box .news-comment a:hover {
	color: red;
}

.news-container .news-inner-box .news-comment em {
	display: block;
	padding-top: 12px;
	font-size: 90%;
	font-style: normal;
	color: red;
}

.inner-section-bubble {
	padding-top: 60px;
    padding-bottom: 60px;
	max-width: 80%;
	box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    z-index: 500;
	width: 80%;
    margin: auto;
    position: relative;
    display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: -40px;
}

.contact-form .inner-section-bubble {
	flex-flow: row wrap;
}

.inner-section-bubble .bubble-box {
	width: 24%;
	margin: 30px auto;
    z-index: 2;
    min-height: 1px;
	mix-blend-mode: unset;
	padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    vertical-align: top;
    background: transparent;
}

.we-are-member-of .inner-section-bubble .bubble-box {
	width: 19%;
}

.network-carusel-box a {
	transition: all .25s;
}

.CZ-JC a:not(.CZ-JC),
.CZ-JM a:not(.CZ-JM),
.CZ-KA a:not(.CZ-KA),
.CZ-KR a:not(.CZ-KR),
.CZ-LI a:not(.CZ-LI),
.CZ-MO a:not(.CZ-MO),
.CZ-OL a:not(.CZ-OL),
.CZ-PA a:not(.CZ-PA),
.CZ-ZL a:not(.CZ-ZL),
.CZ-PL a:not(.CZ-PL),
.CZ-PR a:not(.CZ-PR),
.CZ-ST a:not(.CZ-ST),
.CZ-US a:not(.CZ-US),
.CZ-VY a:not(.CZ-VY) {
	opacity: 0;
	width: 0;
}

.contact-form .inner-section-bubble .bubble-box {
	width: 32%;
}
.contact-form .inner-section-bubble .bubble-box.double-box {
	width: 64%;
}
.contact-form .inner-section-bubble .bubble-box.submit-form {
	align-self: flex-end;
}
.contact-form .inner-section-bubble .bubble-box.submit-form div {
	text-align: right;
}

.inner-section-bubble.dark-version {
	background-color: #303030;
	color: white;
	column-gap: 10px;
	row-gap: 40px;
	background-blend-mode: soft-light;
	background-image: url(../img/bg_bubble-dark.webp);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
    border-radius: 15px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.inner-section-bubble.dark-version.red {
	background-color: #e30613;
}

.inner-section-bubble.dark-version.red a {
	color: #ffffff;
	text-decoration: none;
}

.inner-section-bubble.dark-version.red a:hover div h4{
	text-decoration: underline;
}

.inner-section-bubble.dark-version .bubble-box {
	margin: 0 auto;
	flex-grow: 1;
	transition: all .3s ease;
}

section:not(.contact-form) .inner-section-bubble.dark-version .bubble-box:hover {
	transform: scale(110%)
}

@media (max-width:1400px) {
.we-are-member-of .inner-section-bubble {
	flex-flow: row wrap;
}
.we-are-member-of .inner-section-bubble .bubble-box {
	width: 32%;
}
}

@media (max-width:1200px) {
.inner-section-bubble {
	flex-flow: row wrap;
}
.inner-section-bubble.dark-version .bubble-box {
	width: 30%;
	flex-grow: 1;
}
.contact-form .inner-section-bubble .bubble-box,
.we-are-member-of .inner-section-bubble .bubble-box {
	width: 48%;
}
.contact-form .inner-section-bubble .bubble-box.double-box {
	width: 96%;
}
}

.inner-section-bubble .bubble-box {
	width: 48%;
}

.inner-section-bubble .bubble-box div {
	text-align: center;
}

@media (max-width:800px) {
.contact-form .inner-section-bubble .bubble-box,
.contact-form .inner-section-bubble .bubble-box.double-box {
	width: 80%;
}
}

@media (max-width:600px) {
.inner-section-bubble .bubble-box,
.we-are-member-of .inner-section-bubble .bubble-box {
	width: 100%;
}
.inner-section-bubble.dark-version .bubble-box {
	width: 48%;
}
}

.inner-section-bubble .bubble-box-title {
	width: 90%;
	height: 60px;
	margin: auto;
	text-align: center;
}

.inner-section-bubble .bubble-box-title img {
	width: auto;
	max-height: 60px;
}

.inner-section-bubble .bubble-divider {
	border-top: solid #e30613 4px;
	width: 30%;
	margin: 40px auto;
	height: 10px;
}

.inner-section-bubble.dark-version.red .bubble-divider {
	border-top: solid #303030 4px;
}

.contact-form .inner-section-bubble .bubble-box-title {
	width: 90%;
	height: 30px;
	margin: auto;
	text-align: center;
}

.contact-form .inner-section-bubble .bubble-divider {
	margin: 20px auto;
	height: 10px;
}

.contact-form .inner-section-bubble .bubble-divider + div{
	text-align: right;
}

.contact-form .inner-section-bubble .bubble-box input,
.contact-form .inner-section-bubble .bubble-box textarea {
	padding: 4px 12px;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	line-height:32px;
	border-radius: 10px;
	font-size: 16px;
	}
	
.contact-form .inner-section-bubble .bubble-box input[type=submit] {
	width: auto;
	border: solid 3px red;
	color: black;
	transition: all .25s;
	}
	
.contact-form .inner-section-bubble .bubble-box input[type=submit]:hover {
	background-color: red;
	border: solid 3px white;
	color: white;
	font-weight: bold;
	}

@media (max-width:1200px) {
.inner-section-bubble .bubble-divider {
	margin: 20px auto;
}
}

.inner-section-bubble .bubble-box h4 {
	text-align: center;
	font-size: 1.6em;
	font-weight: 500;
    line-height: 1.2em;
	padding-bottom: 10px;
}

.network-carusel {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
	margin: 30px 0 0 0;
}

.network-carusel-box {
    display: flex;
	flex-flow: row nowrap;
	align-items: center;
	height: 100px;
	padding: 20px 0;
	animation: network-looping 25s linear infinite;
}

.network-carusel-box div {
	display: inline-block;
    display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

.network-carusel-box:hover {
    animation-play-state: paused;    
}

.network-carusel img {
	max-height: 80px;
	height: auto;
	margin: 0 10px;
	filter: grayscale(100%);
	transition: all .25s ease;
}

.network-carusel img:hover {
	max-height: 100px;
	filter: grayscale(0);
}

.the-only-one img {
	padding: 0 100px;
}

.contacts {
	display: flex;
	flex-flow: row nowrap;
	align-items: top;
	justify-content: space-between;
	column-gap: 20px;
	width: 75%;
	margin: auto;
}

.contacts div {
	flex-grow: 1;
	order: 1;
}

.contacts div.join-us {
	flex-grow: auto;
}

@media (max-width:1200px) {
.contacts {
	flex-flow: row wrap;
	row-gap: 40px;
}
.contacts div {
	flex-grow: 0;
}
.contacts div.join-us {
	order: -1;
	width: 100%;
}
}

.etl-global-logo {
	font-size: 1.2em;
	font-weight: 100;
}

.etl-global-logo>img {
	display: block;
	max-width: 200px;
	width: 80%;
}

@media (max-width:1200px) {
.etl-global-logo>img {
	float: left;
	margin-right: 8px;
}
}

footer {
	padding: 30px 0 4px 0;
}

footer div {
	width: 80%;
	margin: auto;
	font-size: 85%;
}
