/* - - - - - - - - - GLOBAL - - - - - - - - - */



/* CUSTOM FONT IMPORT */

@font-face {
    font-family: 'DunbarTextRegular';
    src: url('../fonts/DunbarText-Regular.ttf');
}

@font-face {
    font-family: 'DunbarTextBold';
    src: url('../fonts/DunbarText-Bold.ttf');
}

body {
	font-family: 'DunbarTextRegular', sans-serif;
	font-size: 16px;
	color: black;
	background-color: white !important;
}

a:link, a:visited {
	color: inherit;
}

	a:hover {
		color: gray;
		text-decoration: underline;
	}

h1 {
	margin-bottom: 3rem;
	font-family: 'DunbarTextBold', sans-serif;
	font-size: 32px;
}

	h1.regular {
		font-family: 'DunbarTextRegular', sans-serif;
	}

	h1 img {
		margin-right: 15px;
	}
	
h2 {
	margin-bottom: 2rem;
	font-family: 'DunbarTextRegular', sans-serif;
	font-size: 24px;
}

h6 {
	font-family: 'DunbarTextBold', sans-serif;
	font-size: 120px;
}

p {
	margin-bottom: 2rem;
}

	p span {
		font-size: 24px;
	}

hr {
	border-top: 1px solid black;
}


/* - - - - - - - - - NAVBAR - - - - - - - - - */

.navbar {
	padding: 2rem 0 0 0;
	background: none !important;
}

	@media only screen and (max-width: 414px) {
		.navbar-brand img {
			width: 150px;
		}
	}

	.navbar .nav-link {
		margin: 0 0 0 20px;
		color: white !important;
	}
	
		.navbar .nav-link:hover {
			color: white !important;
			text-decoration: underline;
		}
		
		.navbar .active .nav-link {
			color: white !important;
		}
		
	.navbar .language, .navbar .language {
		margin-left: 40px;
		color: white !important;
	}
	
		.navbar .language a:hover {
			color: white !important;
			text-decoration: underline;
		}
		
		.navbar .language .active {
			font-family: 'DunbarTextBold', sans-serif;
			color: white !important;
		}


/* - - - - - - - - - FRAME - - - - - - - - - */

.up-arrow {
	position: fixed;
	right: 3rem;
	bottom: 3rem;
	z-index: 99;
	border-radius: 4px;
	border: 1px solid gray;
	background-color: rgba(255, 255, 255, 0.5);
}
	.up-arrow img {
		margin: 1rem;
		width: 30px;
	}
	
	@media only screen and (max-width: 768px) {
		.up-arrow {
			right: 0.5rem;
			bottom: 0.5rem;
		}
	}

.header {
	color: white;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

	.header .logo-container {
		overflow: hidden
	}
	
	.header h6 {
		margin-top: 500px;
	}
	
		@media only screen and (max-width: 768px) {
			.header h6 {
				font-size: 60px;
				margin-top: 300px;
			}
		}
	
		@media only screen and (max-width: 576px) {
			.header h6 {
				font-size: 60px;
				margin-top: 100px;
			}
		}
		
	.header .blocks {
		margin-bottom: 100px;
	}
	
		.header .blocks p {
			font-size: 24px;
		}
		
.grey_top {
	background: url("../images/frame/bg_grey_top.png") center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.grey_bottom {
	background: url("../images/frame/bg_grey_bottom.png") center bottom no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.blue_top {
	background: url("../images/frame/bg_blue.png") center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.blue_top {
	background: url("../images/frame/bg_blue.png") center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.darkblue_top {
	background: url("../images/frame/bg_darkblue_top.png") center top no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.darkblue_bottom {
	background: url("../images/frame/bg_darkblue_bottom.png") left bottom no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.black {
	color: white;
	background-color: black;
}

.category {
	display: inline-block;
	margin-left: 30px;
	text-align: center;
	font-size: 24px;
}

img.lowsat {
	filter: grayscale(50%);
}

	img.lowsat:hover {
		filter: grayscale(0%);
	}

a.linkbutton {
	padding: 15px 20px;
	margin-bottom: 3rem;
	display: inline-block;
	border: 1px solid black;
}

	a.linkbutton {
		padding: 10px 20px;
		margin-right: 30px;
	}

	a.linkbutton.light {
		border: 1px solid white;
	}
	
	a.linkbutton.blue {
		border: 1px solid #005ca9;
	}
	
	a.linkbutton:hover {
		text-decoration: none;
	}

	a.linkbutton img {
		margin-left: 5px;
		vertical-align: text-bottom;
	}

.overlay-container {
	position: relative;
	margin-bottom: 3rem;
	width: fit-content;
}

	.overlay-container:hover .overlay {
		visibility: visible;
	}

	.overlay-container .overlay {
		visibility: hidden;
		padding: 1rem;
		position: absolute;
		top:0;
		width: 100%;
		height: 100%;
		color: white;
		background: url("../images/frame/overlay_bg.png") left top no-repeat;
		background-size: cover;
	}
		
		.overlay-container .overlay h2 {
			margin-top: 80%;
		}
	
.controls {
	text-align: center;
}

	.controls img {
		margin: 10px;
	}

.footer {
	color: white;
	background-color: black;
}

	.footer .logo-container {
		margin-bottom: 5rem;
		overflow: hidden;
	}
	
	.footer .secondary-menu a {
		margin-right: 3rem;
	}
	
		.footer .secondary-menu a:last-of-type {
			margin-right: 0;
		}


/* - - - - - - - - - HOME PAGE - - - - - - - - - */

	.events .blocks .col-md-6 > img {
		margin-bottom: 2rem;
	}
	
	.events .blocks .col-md-6 h5 {
		font-family: 'DunbarTextBold', sans-serif;
		font-size: 16px;
	}
	
	.events .blocks .col-md-6 p {
		margin-bottom: 4rem;
	}

.exhibitors {
	background-color: #bfd6e9;
}

	.exhibitors .blocks a.linkbutton {
		background-color: red;
	}
	
.dubai {
	color: white;
	background-color: black;
}

.news .col-md-6 p {
	margin-bottom: 4rem;
}

.contact {
	color: white;
	background-color: black;
}

.exhibitors-logos {
	margin-top: 3rem;
}

	.exhibitors-logos img {
		margin-right: 50px;
		margin-bottom: 30px;
		max-height: 40px;
	}
	
		.exhibitors-logos img:last-of-type {
			margin-right: 0;
		}
		
.gallery img {
	margin: 10px;
}


/* - - - - - - - - - HUNGARY - - - - - - - - - */

.links p, .download p  {
	font-size: 32px;
}

.speakers {
	background-color: #bfd6e9;
}

	.speakers-carousel .carousel-cell {
		margin-right: 30px;
		text-align: center;
	}
	
		.speakers-carousel .carousel-cell img {
			margin-bottom: 30px;
		}

/* - - - - - - - - - CONTACT PAGE - - - - - - - - - */

		
input[type="text"] {
	width: 100%;
}

input[type="checkbox"] {
	margin-right: 5px;
}
