@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
}

:root {
  --black: #000;
  --red: #9a2f25;
  --white: #fff;
  --grey: #cbcbcb;
  --brown: #190800;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	line-height: 30px;
	color: var(--black);
	font-weight: 400;
}
h1,
h2,
h3 {
	font-weight: 700;
}
h1 {
	font-size: 40px;
	line-height: 60px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 30px;
}
h2 {
	font-size: 30px;
	line-height: 45px;
	margin-bottom: 20px;
}
h3 {
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 20px;
}
a {
	color: var(--black);
}
a:active,
a:hover {
	color: var(--red);
}
.button {
	background: var(--red);
	color: #fff;
	font-weight: 700;
	padding: 0 40px;
	line-height: 40px;
	display: inline-block;
}
.button.fullsize {
	width: 100%;
}

header {
	padding: 20px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	background: var(--white);
}
header .contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
header .contact li {
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
}
header .contact li + li {
	margin-left: 10px;
}
header .contact li span {
	display: inline-block;
	padding-right: 10px;
}

header .language {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
header .language li {
	display: inline-block;
	margin-left: 5px;
}
header .language li img {
	height: 20px;
}

.logo {
	height: 80px;
	display: inline-block;
}
header nav {
	margin-top: 40px;
}
header nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
header nav ul li {
	display: inline-block;
}
header nav ul li + li {
	padding-left: 20px;
}
header nav ul li a {
	text-transform: uppercase;
	font-weight: 700;
	display: block;
}
header nav ul li.active a {
	border-bottom: 5px solid var(--red);
	color: var(--red);
}

section {
	padding: 50px 0;
	position: relative;
}
header + section {
	margin-top: 150px;
	padding-top: 0;
}
.anchor {
    display: block;
    position: absolute;
    top: -152px;
    visibility: hidden;
}

.float-right {
	width: 50%;
	margin-bottom: 20px;
}

.orbit {
	max-width: 1440px;
	margin: 0 auto;
}
.orbit-bullets {
	margin-top: 20px;
	margin-bottom: 40px;
}

.card {
	cursor: pointer;
	transition: all 0.5s;
}
.card:hover {
	transform: scale(1.05);
	cursor: pointer;
}
.card img {
	width: 150px;
	margin: 10px auto;
	display: block;
}
.card img + p {
	margin-top: 20px;
}

.map .map_data {
	display: none;
}
.map .map_object {
	padding-bottom: 50%;
	min-height: 700px;
}
.map .container {
	position: relative;
}
.map .on-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.map form {
	background: rgba(25,8,0,0.8);
	position: relative;
	z-index: 100;
	margin: 50px 0;
	padding: 40px;
	color: var(--white);
}
.map form label {
	color: #fff;
}

form .fields {
	list-style: none;
	margin: 0;
	padding: 0;
}
form .fields li {
	margin-top: 20px;
}
form label {
	font-weight: 700;
}
form [type=text],
form [type=email],
form textarea {
	border: none;
}
form textarea {
	min-height: 100px;
}
form .thank-you {
	display: none;
}

.no-padding-bottom {
	padding-bottom: 0;
}
.grey {
	background: var(--grey);
}
.no-padding {
	padding: 0;
}

footer {
	padding: 50px 0;
	background: var(--brown);
	color: #fff;
}
footer nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
footer nav ul li a {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}
footer nav.social ul li {
	display: inline-block;
}
footer nav.social ul li + li {
	margin-left: 10px;
}
footer nav.social ul li a {
	line-height: 40px;
	width: 40px;
	text-align: center;
	display: block;
	border: 1px solid var(--white);
}

@media screen and (max-width: 39.9375em) {

	body {
		font-size:  18px;
		line-height: 26px;
	}
	h1 {
		font-size: 27px;
		line-height: 42px;
	}
	h2 {
		font-size: 24px;
		line-height: 36px;
	}
	h3 {
		font-size: 20px;
		line-height: 30px;
	}

	header {
		position: relative;
	}
	header .logo {
		margin-top: 20px;
	}
	header .contact {
		display: block;
		text-align: center;
	}
	header .language {
		margin: 20px 0;
		display: block;
		text-align: center;
	}
	header + section {
		margin-top: 0;
	}
	.map .on-map {
		position: relative;
	}

	.float-right {
		width: 100%;
	}
}