@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {
	--blue: #0e2d52;
	--red: #df4900;
	--body-text: black;
	--eu: #0c4da2;
	--font-family: 'Roboto', sans-serif;
	--heading-font-family: 'Roboto Condensed', sans-serif;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	background: #f9f9f9;
	color: var(--body-text);
	font-family: var(--font-family);
}
img {
	max-width: 100%;
	height: auto
}
a {
	text-decoration: none;
	color: var(--red);
}
a:hover{
	color: var(--blue);
}
p {
	line-height: 1.6;
	margin: 0 0 20px 0
}

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	width: 90%
}

.alignright {
	float: right;
	margin: 0 0 15px 15px
}
.alignleft {
	float: left;
	margin: 0 15px 15px 0
}
@media(max-width:768px) {
	.alignright,
	.alignleft {
		float: none;
		margin:0 0 15px 0
	}
}

.button {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 4px;
	background: var(--blue);
	color: white;
	transition: 0.3s;
}
.button:hover {
	background: var(--red);
	color: white;
}


h1 {
	font-family: var(--heading-font-family);
	color: var(--blue);
	margin: 0 0 30px 0;
	font-size: 30px;
}
h2 {
	font-family: var(--heading-font-family);
	color: var(--red);
	margin: 30px 0 20px 0;
	font-size: 25px
}
h3 {
	font-family: var(--heading-font-family);
	color: var(--blue);
	margin: 30px 0 20px 0;
	font-size: 20px
}


header {
	background: white;
	padding: 30px 0
}
header .grid {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	align-items: center;
}
header button {
	display: none;
	float: right;
	cursor: pointer;
	padding: 10px;
	background: #f4f4f4;
	border: 0;
	border-radius: 3px
}
header button span {
	background-color: var(--blue);
	display: block;
	width: 25px;
	height: 2px;
	margin: 0 0 6px 0;
	border-radius: 1px
}
header button span:last-child {
	margin: 0
}
@media(max-width:768px) {
	header .grid {
		grid-template-columns: 150px 1fr;
	}
	header {
		border-bottom: 1px solid #ddd;
		padding: 15px 0
	}
	header button {
		display: inline-block
	}
}

.eu-logo {
	position: fixed;
	bottom: 0;
	right: 0;
	display: block;
	width: 250px;
	height: 175px;
	background: url('/https/famu.hu/wp-content/uploads/szechenyi-2020.png') no-repeat;
}


.eu-box {
	color: white;
	background: var(--eu);
	margin: 0 0 60px 0;
	box-shadow: 0 0 5px rgba(12,67,172,0.1);
}
.eu-box img {
	display: block;
}
.eu-box h2 {
	margin-top: 0;
	color: white;
}
.eu-box p {
	margin: 0 0 10px 0;
}
.eu-box p:last-of-type {
	margin-bottom: 0;
}
.eu-box .eu-box-content {
	padding: 30px;
}
.eu-box.szechenyi-2020 {
	background: url('/https/famu.hu/wp-content/uploads/szechenyi-2020.png') bottom right no-repeat var(--eu);
	padding: 30px 30px 90px 30px;
}
@media(max-width:768px) {
	.eu-box .eu-box-content {
		padding: 15px;
	}
	.eu-box.szechenyi-2020 {
		padding: 15px 15px 150px 15px;
	}	
}

.eu-header {
    background: var(--eu);
    display: grid;
	grid-template-columns: 225px 1fr;
    align-items: center;
	line-height: 0;
}
.eu-header img {
	height: 64px;
}
.eu-header .right {
    text-align: right;
    color: white;
    padding-right: 20px;
    line-height: 1.5;
}
.eu-header .right a {
    color: white;
    text-decoration: none;
}
@media(max-width:768px) {
	.eu-header .right {
		font-size: 12px;
		padding-right: 10px;
	}
}


nav {
	background: white;
	border-bottom: 1px solid #ddd;
	padding: 0 0 20px 0;
}
nav .wrapper {
	display: flex;
	flex-flow: row wrap;
	align-items: center
}
nav ul {
	display: flex;
	flex-flow: row wrap;
	list-style: none
}
nav li {
	font-weight: 600;
	margin: 0 20px 0 0
}
nav li a {
	display: block;
	color: var(--blue);
}
nav li a:hover {
	color: var(--red)
}
nav .language {
	flex: 1;
	text-align: right
}
nav .language a {
	display: inline;
	margin: 0 5px
}



.mobile-menu {
	height: 100%;
	width: 250px;
	position: fixed;
	z-index: 3;
	top: 0;
	left: -250px;
	background-color: rgba(0,0,0,.95);
	overflow-x: hidden;
	transition: .5s;
	padding-top: 40px
}
.mobile-menu a {
	color: white;
	text-decoration: none;
	display: block;
	padding: 10px 15px;
}
.mobile-menu a:hover {
	color: #f1f1f1
}
.mobile-menu .closebtn {
	color: white;
	display: block;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 36px;
	line-height: 1
}
.mobile-menu img {
	margin-right: 10px
}

@media(max-width:768px) {
	nav {
		display: none;
	}
}



main ul {
	padding: 0;
	margin: 15px 0 30px 30px
}
main li {
	margin: 0 0 5px 0;
	line-height: 1.6
}


footer {
	margin: 60px 0 0 0;
	font-size: 14px;
	background: white;
	border-top: 1px solid #ddd;
}
footer .wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 30px 0
}
footer .right {
	text-align: right
}
footer p {
	margin: 0 0 5px 0
}
@media(max-width:700px) {
	footer .wrapper {
		grid-template-columns: 1fr;
	}
	footer .left,
	footer .right {
		text-align: center;
	}
}


.white-block {
	background: white;
}


.intro {
	padding: 60px 0;
}
.intro p:last-of-type {
	margin-bottom: 0;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
@media(max-width:768px) {
	.grid {
		grid-template-columns: 1fr;
	}
}


.industrial-production {
	padding: 60px 0;
}
.industrial-production h2:first-of-type {
	margin-top: 0;
}
.industrial-production p:last-of-type {
	margin-bottom: 0;
}



.products-block {
	padding: 60px 0;
}
.products-block h3 {
	margin: 10px 0;
}


.contact {
	padding: 60px 0;
}

.contact p {
	margin-bottom: 10px;
}
.contact h2 {
	margin-top: 0;
}
.contact h3 {
	margin-top: 15px;
}
.contact p:last-of-type {
	margin-bottom: 0;
}
.contact .label{
	display: inline-block;
	width: 110px;
}
@media(max-width:480px) {
	.contact .label{
		display: block;
		width: 100%;
	}

}



.products {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
@media(max-width:768px) {
	.products {
		grid-template-columns: 1fr;
	}	
}



.pb {
	background: white;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 30px;
	padding: 30px;
	margin: 0 0 30px 0;
	font-size: 14px;
	border: 1px solid #ddd;
}
.pb h2 {
	margin: 0 0 10px 0;
}
.pb p {
	margin: 0 0 10px 0;
}
.pb .badge {
	font-size: 13px;
	display: inline-block;
	background: var(--blue);
	color: white;
	padding: 7px 7px 6px 7px;
	margin: 0 5px 5px 0;
	line-height: 1;
	border-radius: 3px;
}
.pb .images {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
}
@media(max-width:480px) {
	.pb {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 15px;
	}
}


.pb2 {
	margin: 0 0 30px 0;
	font-size: 14px;
	margin-bottom: 30px;
}
.pb2 h2 {
	margin-bottom: 10px;
}
.pb2 table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	border: 1px solid #ddd;
}
.pb2 td img {
	display: block;
	margin: 0 auto;
	max-width: 50px;
}
.pb2 th,
.pb2 td {
	padding: 5px;
}
.pb2 tr:nth-child(odd) td {
	background: #f1f1f1;
}
.pb2 th {
	background: #ddd;
	color: var(--blue);
}
.pb2 table tr td:nth-child(1) {
	width: 15%;
	text-align: center;
}
.pb2 table tr td:nth-child(2) {
	width: 35%;
}
.pb2 table tr td:nth-child(3) {
	width: 35%;
}
.pb2 table tr td:nth-child(4) {
	width: 15%;
	text-align: center;
}


.pb2 table tr th:nth-child(2) {
	text-align: left;
}
.pb2 table tr th:nth-child(3) {
	text-align: left;
}

.google-maps{
	position: relative;
	padding-bottom: 50%;
	height: 0;
	overflow: hidden
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important
}