.poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}

.poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

*, html, body {
	background-color: #202020;
	color: #FFFFFF;
	margin: 0;

	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}

section {
	height: 100vh;
	padding: 16px;
	position: relative;
}

.row {
	display: flex;
	flex-direction: row;
  	flex-wrap: wrap;
}

.column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
}

#home-section {
	text-align: center;	
}

#home-section .home-go-down {
	font-size: 2.5rem;
}

.logo-container {
	width: fit-content;
	padding: 2px;
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50vh; 
	transform: translateY(-50%);
}

.logo-container h1 {
	width: fit-content;
	border: 2px solid #202020;
	color: #202020;
	background-color: #FFF;
	padding: 0 8px;
	font-size: 3rem;
	margin: 0;
	text-align: center;
}

#contact-us-section .map-col {
	padding-right: 64px;
}

#contact-us-section h2 {
	border-bottom: 0.5px solid #FFFFFF;
	margin-bottom: 32px;
}

input, textarea {
	width: 100%;
	background-color: #FFFFFF;
	color: #202020;
	min-height: 40px;
	border: none;
	margin-bottom: 16px;
	border-radius: 5px;
}

input[type="submit"] {
	cursor: pointer;
}

textarea {
	height: 100px;
}

footer {
	text-align: center;
}

button {
	background: #FFFFFF;
    color: #202020;
    border: none;
    border-radius: 5px;
    height: 40px;
    width: 100%;
}

.openstreetmap {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/map3.png);
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}

.sent-message {
	border: 1px solid green;
	color: green;
	background-color: #FFFFFF;
	border-radius: 5px;
	margin-bottom: 16px;
	padding: 16px;
}

.sent-message * {
	background-color: #FFFFFF;
	background: #FFFFFF;
	color: green;
}

.sent-message.error {
	border: 1px solid red;
}

.sent-message.error,
.sent-message.error * {
	color: red;
}


@media screen and (max-width: 900px) {
	.column {
		display: block !important;
		width: 100% !important;
		flex: none;
	}

	#contact-us-section {
		height: auto !important;
	}

	#contact-us-section .map-col {
		padding-right: 0 !important;
	}

	.openstreetmap {
		width: 100%;
		height: 300px;
	}

	address {
		margin-bottom: 16px;
	}
}