@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Lato", sans-serif;
	font-weight: 400;
}
.header {
	padding: 20px 40px;
	display: flex;
	align-items: center;
}
.elara_logo {
	width: 160px;
	display: flex;
	margin-left: auto;
}
.main_container {
	padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	height: 500px;
}
.logo_element {
	border: 1px solid #ffa50054;
	border-radius: 10px;
	height: 200px;
	align-items: center;
	display: flex;
	padding: 20px;
	transition: all 0.3s ease-in;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.roadshow_logo,
.Icmm_logo {
	width: 250px;
}

.master_logo {
	width: 300px;
}
footer.footer {
	padding: 20px;
	background: #d3d3d3;
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100%;
}
.footer_link {
	color: black;
}
.elara_logo {
	width: 200px;
}
@media (max-width: 1200px) {
	.main_container {
		flex-wrap: wrap;
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.master_logo,
	.roadshow_logo,
	.Icmm_logo {
		max-width: 100%;
	}
	.logo_element {
		width: 100%;
		justify-content: center;
	}
	.main_container {
		justify-content: center;
	}
	footer.footer {
		position: unset;
	}
	.main_container {
		height: unset;
		margin-bottom: 25px;
		margin-top: 0;
	}
	a.width_max {
		width: 100%;
	}
}
