@charset "UTF-8";

/*------------------------------------------------*/

.stream-wrap {
	background-color: white;
	display: flex;
	flex-flow: column;
	align-items: center;
	color: rgb(10,10,10);
}

.stream-content {
	background-color: rgb(44,84,120);
	padding: 2em;
	width: calc(100% - 4em);
	max-width: calc(1280px - 4em);
}

.stream-group {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.stream-group:not(:last-child) {
	margin-bottom: 2em;
}

.stream-item {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 2em;
	width: calc(50% - 5em);
	z-index: 1;
}

.stream-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(145deg, rgba(250,250,250,0.8), white, rgba(240,240,240,0.8));
	border-radius: 5px;
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.stream-text {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-bottom: 1em;
	width: 100%;
	height: 240px;
}

.stream-text h1 {
	background: linear-gradient(to bottom, transparent 70%, rgba(255,190,80,0.9) 30%);
	width: 80%;
	text-align: center;
}

.stream-text h1 span {
	font-size: 1.6em;
	font-style: italic;
	color: red;
}

.stream-text h3 {
	background-color: rgb(0,90,120);
	border-radius: 2em;
	margin: 1em 0 1em 0;
	padding: 0.2em 2em 0.2em 2em;
	text-shadow: 0px 0px 1.0em aqua;
	text-align: center;
	color: white;
}

.stream-text p {
	max-width: 17em;
	text-align: justify;
}

.stream-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 240px;
}

.stream-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.news-text {
	background-color: white;
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	padding: 4em;
	text-align: justify;
	line-height: 2em;
}

.news-text h4 {
	text-align: right;
}

.news-text h2 {
	margin: 2em 0 2em 0;
	text-align: center;
}

/*------------------------------------------------*/

@media screen and (max-width: 900px) {
.stream-wrap {
	font-size: 0.7rem;
}
.stream-content {
	padding: 1em;
	width: calc(100% - 2em);
}
.stream-group {
	display: flex;
	flex-flow: column;
	margin: 0;
	padding: 0;
	width: calc(100% - 0em);
}

.stream-group:not(:last-child) {
	margin-bottom: 0em;
}

.stream-item {
	margin: 0 0 1em 0;
	padding: 1em;
	width: calc(100% - 2em);
}

.stream-text {
	height: 180px;
}

.stream-img {
	height: 180px;
}

.news-text {
	padding: 2em;
}

.news-text h4 {
	font-size: 0.6rem;
}

.news-text h2 {
	font-size: 0.8rem;
}


}

/*------------------------------------------------*/


