*{
	margin: 0;
	padding: 0;
}
body{
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-size: 17px;
	color: #926239;
	line-height: 1.6;
	background-color: #000;
}

h1{
	letter-spacing: 10px;

}

#showcase{
	background-image:url('img/okf-back.jpg');
	background-size: cover;
	background-position: center;
	height: 85vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding: 0 20px;
	padding-top: 150px;

}

#showcase h1{
	font-size: 50px;
	line-height: 1.2;
}

#showcase p{
	font-size: 20px;
	color: white;
}

#showcase .button{
	font-size: 18px;
	text-decoration: none;
	color: #926239;
	border: #926239 1px solid;
	padding: 10px 20px;
	border-radius: 10px;
	margin-top: 20px;
}


#showcase .button:hover{
	background: #926239;
	color: #fff;
}

.logo-escrito {
	width: 100%;
	max-width: 1000px;
}

.logo {
	width: 100% ;
	max-width: 400px;
}

.logo:hover{
	transform: rotate(5deg);
}

#section-a {
	padding: 20px;
	background: orange;
	color: white;
	text-align: center;
}

#section-b {
	padding: 20px;
	background: #f4f4f4;
	text-align: left;
}

#section-c {
	display: flex;
}

#section-c div{
	padding: 20px;
}

#section-c .box-1, #section-c .box-3 {
	background: #926239;
	color: #fff;
}

#section-c .box-2 {
	background: #f9f9f9;
	
}



.container {
	/*max-width: 1100px;*/
	margin: auto;
	overflow: hidden;
	margin-top: 30px;
	
}


.card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
	background: #000;
	margin-bottom: 2rem;
}

.card h3{
	margin-bottom: 2rem;
	color: orange;

}

.card p{
	color: white;
}

.card img{
	height: 400px;
}

.card > div {
	padding: 2rem;

}

.card:nth-child(even) iframe {
	order: 2;
}

.btn {
	display: inline-block;
	background: orange;
	color: white;
	padding: 0.8rem 1.8rem;
	margin-top: 2rem;
	cursor: pointer;
}

.btn:hover {
	opacity: 0.8;
}



.live-youtube {
	
	width: 80%;
	height: 100%;
	min-height: 315px;
	margin-left: 50px;

}


/* GALERIA */

img {
	max-width: 100%;
	display: block;
}

figure {
	margin: 0;
	display: grid;
	grid-template-rows: 1fr auto;
}

figure > img {
	grid-row: 1 / -1;
	grid-column: 1;
	transition: transform .5s; 
}

figure > img:hover{
	transform: scale(1.2);
}

figure a {
	color: black;
	text-decoration: none;
}

figcaption {
	grid-row: 2;
	grid-column: 1;
	background-color: rgba(255,255,255,.5);
	padding: .2em .5em;
	justify-self: center;


}

.gallery {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: masonry;
}

/* FIM DA GALERIA */


#footer{
	padding: 20px;
	background: #000;
	color: white;
	text-align: center;
}

#footer p{
	font-weight: 100;
	font-size: 0.6rem;
	letter-spacing: 5px;
}


/* calendario de eventos */

.event-container {
	font-family: "Roboto", sans-serif;
	max-width: 800px;
	margin: 0 auto;
}

.event-container h3.year {
	font-size: 40px;
	text-align: center;
	border-bottom: 1px solid #b1b1b1;
}

.event-container .event {
	box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.4);
	display: flex;
	border-radius: 8px;
	margin: 32px 0;
}

.event .event-left {
	background: #222;
	min-width: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #eee;
	padding: 8px 48px;
	font-weight: bold;
	text-align: center;
	border-radius: 8px 0 0 8px;
}

.event .event-left .date {
	font-size: 56px;
}

.event .event-left .month {
	font-size: 16px;
	font-weight: normal;
}

.event .event-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 24px;
}

.event .event-right h3.event-title {
	font-size: 24px;
	margin: 24px 0 10px 0;
	color: #218bbb;
	text-transform: uppercase;
}

.event .event-right .event-timing {
	background: #fff;
	border:2px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	padding: 8px;
	border-radius: 16px;
	margin: 24px 10px;
	font-size: 14px;
}

.cards-calendario{
	display: flex;

}

.live {
	background: red!important;
	color: white;

}

.event .event-right .event-timing img {
	height: 20px;
	padding-right: 8px;
}



@media (max-width: 780px) {
	.event {
		flex-direction: column;
	}

	.event .event-left {
		padding: 0;
		border-radius: 8px 8px 0 0;
	}

	.event .event-left .event-date .date,
	.event .event-left .event-date .month {
		display: inline-block;
		font-size: 24px;
	}

	.event .event-left .event-date {
		padding: 10px 0;
	}

	.gallery {
		display: grid;
		gap: 15px;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: masonry;
	}

	.hide {
		display: none;
	}

	.card{
		display: block!important;
	}

	.live-youtube {

		width: 100%;
		height: 100%;
		min-height: 315px;
		margin-left: 10px;

	}

}


/* fim do calendario */