/********************************
 * Body *************************
 * *****************************/

body {
	color: var( --font-color );
}

::placeholder {
	color: #707070;
	opacity: 1;
}

button {
	background: none;
	border: none;
	color: var( --font-color );
}

/********************************
 * Nav **************************
 * *****************************/

nav {
	position: fixed;
	width: 100%;
	z-index: 10;
	transition: all 1s;
	opacity: 0;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,.15);
	height: 131.3px;
}

.wf-active nav,
.wf-inactive nav {
	opacity: 1;
}

nav .nav-inner {
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 1s;
	width: 100%;
	max-width: 90%;
	padding: 40px 25px;
}

nav.scrolled {
	height: 91px;
}

nav.scrolled .nav-inner {
	padding: 20px 25px;
}

nav.scrolled .nav-logo {
	flex-basis: 125px;
}

@media( min-width: 1600px ) {
	nav .nav-inner {
		max-width: 80%;
	}
}

nav .nav-menu {
	display: flex;
	align-items: center;
	position: relative;
}

nav .nav-menu .cta {
	margin-right: 35px;
}

.nav-logo {
	flex: 0 0 162px;
	transition: all 1s;
	display: flex;
	align-items: center;
	width: 162px;
	height: 51px;
}

.nav-logo a {
	display: block;
	flex-basis: 100%;
}

.nav-logo img {
	width: 100%;
	height: 100%;
	transition: opacity 1s;
	object-fit: contain;
}

.nav-logo img.lazyloaded {
	opacity: 1;
}

nav .nav-cta {
	transition: all 1s;
}

nav.scrolled-nav .nav-cta {
	scale: .9;
}

#menu-header {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

#menu-header > li {
	margin-left: 25px;
}

#menu-header > li a {
	font-size: 1rem;
	font-weight: 300;
	color: #000;
	text-transform: uppercase;
	transition: all .35s;
}

#menu-header > li a:hover {
	color:  var( --red-color );
}

#menu-header .wpml-ls-menu-item .wpml-ls-flag {
	display: block;
	vertical-align: unset;
}

nav .nav-icons {
	display: flex;
	position: relative;
}
nav .search-icon {
	width: 50px;
	margin: 0 5px 0 25px;
	padding: 0 15px;
	display: inline-block;
}

nav .user-icon {
  width: 50px;
  padding: 0 15px;
}


nav .search-form {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 5px;
}

nav .search-form.active {
	display: block;
}

nav .search-form input {
	padding: 5px;
}

/*******************************
 * Lists ***********************
 * ****************************/

.menu ul {
	list-style: none;
	
}

.module ul {
	margin-bottom: 35px;
	font-weight: 100;
	padding-left: 20px;
}

.module ul li {
	font-weight: 300;
	margin-bottom: 15px;
}

/*******************************
 * Forms ***********************
 * ****************************/

.form ::placeholder {
	opacity: 1;
	color: #101010;
}

/*******************************
 * Footer **********************
 * ****************************/

footer {
	color: #000;
	margin-top: 75px;
	position: relative;
	background-color:  var( --light-grey-color );
	font-family: 'Kong', sans-serif;
	padding-top: 80px;
}

footer .footer-top {
	display: flex;
}

footer .footer-menu-1 {
	flex-basis: 25%;
}

footer .footer-menu-2 {
	flex-basis: 25%;
}
footer .footer-mobile-menu {
	display: none;
}
footer .newsletter-signup {
	flex-basis: 40%;
}

footer .newsletter-signup .hbspt-form {
	margin-top: 30px;
}

footer .hbspt-form .hs-form .hs-form-field .hs-input {
	border: 0;
	border-bottom: 2px solid #000;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

footer .newsletter-signup input::placeholder {
	color: #101010;
	opacity: 1;
}

footer .footer-top ul {
	list-style: none;
}

footer .footer-top ul li {
	margin-bottom: 10px;	
}

footer .footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 55px;
	max-width: 90%;
}

footer .footer-copyright {
	flex-basis: 33%;
	font-size: 1rem;
	text-align: center;
}

footer .footer-copyright a {
	margin: 0 7.5px;
	text-decoration: underline;
}

footer .footer-art {
	flex-basis: 60%;
	display: flex;
	justify-content: flex-end;
}

footer .footer-art .kong-dogs {
	margin-right: 55px;
}

footer .footer-art picture img {
	height: 65px;
	width: auto;
}

footer a {
	color:  var( --font-color );
	text-decoration: none;
	font-weight: 300;
}

footer .back-to-top-site {
	display: none;
	position: fixed;
	right: 41px;
	bottom: 50px;
	width: 50px;
}

footer .back-to-top-site.active {
	display: block;
}

footer .back-to-top-site button {
	background: none;
	border: none;
	cursor: pointer;
}

footer .mtm-footer {
	opacity: 0;
	overflow: hidden;
	height: 0;
}

@media(max-width: 1024px) {
	nav {
		height: 81px;
	}
	nav .nav-inner {
		padding: 15px 25px;
		max-width: 100%;
	}
	.nav-logo {
		flex: 0 0 110px;
	}
	nav.scrolled .nav-logo {
		flex: 0 0 110px;
	}
	nav #menu-header {
		display: none;
	}
	nav .nav-menu {
		position: absolute;
		right: 10px;
	}
	nav .nav-icons {
		margin-right: 30px;
		position: unset;
	}
	nav .search-form {
		margin-right: 3px;
		margin-top: 3px;
	}
	nav .nav-cta {
		display: none;
	}
	.services .services-container {
		grid-template-columns: 100%;
		padding: 15px;
	}
	footer {
		padding-top: 0;
	}
	.footer-top {
		flex-wrap: wrap;
	}
	footer .footer-menu-1 {
		flex-basis: 50%;
		display: none;
	}
	footer .footer-menu-2 {
		flex-basis: 50%;
		display: none;
	}
	footer .footer-mobile-menu {
		display: block;
		flex-basis: 100%;
		margin-top: 35px;
		text-align: center;
	}
	.footer-mobile-menu ul {
		padding-left: 0;
	}
	footer .newsletter-signup {
		flex-basis: 100%;
		text-align: center;
	}
	footer .footer-bottom {
		flex-wrap: wrap;
	}
	footer .footer-copyright {
		flex-basis: 100%;
		font-size: .85rem;
	}
	footer .footer-art {
		flex-basis: 100%;
		margin-top: 10px;
	}
	footer .footer-art picture img {
		height: 25px;
	}
	footer .back-to-top-site {
		bottom: 15px;
		right: 15px;
		width: 46px;
	}
	.country-selector.weglot-default {
		right: 85px;
		bottom: 15px;
	}
	.country-selector.weglot-dropdown .wgcurrent span {
		padding-right: 25px;
	}
	.cky-btn-revisit-wrapper {
		width: 40px !important;
		height: 40px !important;
	}
}