/* ========== font ========== */

@font-face {
	font-family: 'Space Grotesk';
	src: url('/static/font/space-grotesk.ttf') format('truetype-variations');
	font-weight: 300 700;
	font-display: swap;
}

/* ========== font ========== */

/* ========== default ========== */

::-webkit-scrollbar {
	width: 0;
}

:root {
	--while: #ffffff;
	--grey: #eeeeee;
	--black: #000000;

	--font_size_title: 32px;
	--font_size_text: 22px;

	--font_weight_bold: 700;
	--font_weight_semi_bold: 600;
	--font_weight_medium: 500;

	--padding: 10px;
	--gap_small: 10px;
	--gap_big: 50px;
	--border: 1px;
}

html {
	scrollbar-width: none;
}

body {
	background-color: var(--grey);
	margin: 0;
	padding: 0;
	font-family: 'Space Grotesk', sans-serif;
}

.box {
	max-width: 1280px;
	padding: 0 10px;
	margin: 0 auto;
}

.lazyload-bg {
	background-image: url(data:image/gif;base64,R0lGODlhCgAIAIABAN3d3f///yH5BAEAAAEALAAAAAAKAAgAAAINjAOnyJv2oJOrVXrzKQA7);
}

section {
	margin: 50px 0;
}

@media (max-width: 715px) {

	:root {
		--font_size_title: 25px;
		--gap_big: 10px;
	}

	section {
		margin: 10px 0;
	}

}

/* ========== font ========== */

p,
h1,
h2,
h3 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	color: inherit;
	text-align: inherit;
}

* {
	color: var(--black);
}

/* ========== font ========== */

/* ========== default ========== */

/* ==================== section ==================== */

/* ========== header ========== */

header {
	display: flex;
	justify-content: center;
	padding-top: 50px;
}

header svg {
	height: 100%;
}

@media (max-width: 715px) {

	header {
		padding: 10px 10px 0 10px;
	}

}

/* ========== header ========== */

/* ========== omoss ========== */

/* .omoss */

.omoss_title {
	border: var(--border) solid var(--black);
	box-sizing: border-box;

	padding: var(--padding);

	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_text);
	text-align: center;
	background-color: var(--while);
}

@media (max-width: 1300px) {

	.omoss_title {
		margin: 0 auto;
		max-width: 615px;
	}
}

/* ========== omoss ========== */

/* ========== tjenster ========== */

/* .tjenster */

.tjenster_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap_big);
}

.tjenster_item {
	max-width: 615px;
	width: 100%;
	height: min-content;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
	background-color: var(--while);
}

@media (max-width: 1300px) {

	.tjenster_item {
		margin: 0 auto;
	}
}

/* ========== more ========== */

.tjenster_more {
	max-width: 100%;
}

.tjenster_more_title {
	display: flex;
	justify-content: space-between;
	align-items: center;

	border-top: var(--border) solid var(--black);
	box-sizing: border-box;

	cursor: pointer;
	transition: all .55s ease;

	padding: var(--padding);

	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_text);

	background-color: #e9e9e9;
}

.tjenster_more_open>.tjenster_more_title {
	color: var(--while);
	background-color: var(--black);
}

.tjenster_more_expand {
	transition: all .5s ease;

	font-weight: var(--font_weight_medium);
	font-size: 23px;
	line-height: 0;
}

.tjenster_more_open>.tjenster_more_title .tjenster_more_expand {
	transform: rotate(-225deg);
	color: var(--while);
}

.tjenster_more_content {
	max-height: 0;
	overflow: hidden;
	transition: max-height .5s ease;
}

.tjenster_more_open>.tjenster_more_content {
	max-height: 10000px;
}

/* ========== more ========== */

/* ========== text ========== */

.tjenster_title_img {
	width: 100%;
	height: 380px;
}

@media (max-width: 1300px) {

	.tjenster_title_img {
		height: 300px;
	}
}

.tjenster_title {
	border: var(--border) solid var(--black);
	box-sizing: border-box;
	border-right: none;
	border-left: none;

	padding: var(--padding);
	line-height: 1;

	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_title);
}

.tjenster_service,
.tjenster_more_text {
	padding: var(--padding);
}

.tjenster_service p {
	font-weight: var(--font_weight_medium);
}

.tjenster_more_text p {
	font-weight: var(--font_weight_medium);
}

.tjenster_service p,
.tjenster_more_text p {
	margin-bottom: var(--padding);
	font-size: var(--font_size_text);
}

.tjenster_service p:last-child,
.tjenster_more_text p:last-child {
	margin: 0;
}

/* ========== text ========== */

/* ========== img ========== */

/* .tjenster_more_projekt */

.tjenster_more_projekt_service {
	border-top: var(--border) solid var(--black);
	box-sizing: border-box;

	padding: var(--padding);

	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_text);
}

.tjenster_more_projekt_item {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap_small);

	padding: var(--padding);
}

.tjenster_more_projekt_item div {
	height: 500px;
	width: 100%;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
}

@media (max-width: 600px) {

	.tjenster_more_projekt_item div {
		height: 350px;
	}

}

/* ========== img ========== */

/* ========== tjenster ========== */

/* ========== kontakt ========== */

/* .kontakt */

/* .kontakt_wrap */

@media (max-width: 1300px) {

	.kontakt_wrap {
		margin: 0 auto;
		max-width: 615px;
	}
}

.kontakt_title {
	width: 100%;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
	border-bottom: none;

	padding: var(--padding);
	line-height: 1;

	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_title);
	letter-spacing: 1px;
	background-color: var(--while);
}

#form {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--while);
}

input,
textarea {
	width: 100%;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
	border-bottom: none;
	outline: none;
	border-radius: 0;

	background: rgba(0, 0, 0, 0);

	padding: var(--padding);
	margin: 0;

	font-family: 'Space Grotesk';
	font-weight: var(--font_weight_medium);
	font-size: var(--font_size_text);
}

textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 250px;
}

#form_button {
	width: 100%;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
	outline: none;

	padding: var(--padding);

	cursor: pointer;
	transition: all 250ms ease-in-out;

	font-weight: var(--font_weight_semi_bold);
	font-size: var(--font_size_text);

	background-color: #e9e9e9;
}

@media (max-width: 1300px) {

	#form_button {
		font-weight: var(--font_weight_medium);
	}
}

#form_button:hover {
	color: var(--while);
	background-color: var(--black);
}

#form_status:empty {
	display: none;
}

#form_status {
	width: 100%;

	border: var(--border) solid var(--black);
	box-sizing: border-box;
	border-top: none;

	padding: var(--padding);

	font-weight: var(--font_weight_medium);
	font-size: var(--font_size_text);
	text-align: center;
}

/* ========== kontakt ========== */

/* ========== footer ========== */

/* footer */

.footer_wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: var(--gap_big);
}

.footer_wrap a {
	border: var(--border) solid var(--black);
	box-sizing: border-box;
	background-color: var(--while);

	padding: var(--padding);

	font-family: 'Space Grotesk';
	font-weight: var(--font_weight_bold);
	font-size: var(--font_size_text);
	text-decoration: none;

	flex-grow: 1;
}

@media (min-width: 1300px) {

	.footer_wrap a {
		border-right: 0;
		text-align: center;
	}

	.footer_wrap a:last-child {
		border-right: var(--border) solid var(--black);
	}
}

@media (max-width: 1300px) {

	.footer_wrap {
		margin: 0 auto;
		max-width: 615px;
	}

	.footer_wrap a {
		width: 100%;
		border-bottom: 0;
	}

	.footer_wrap a:last-child {
		border-bottom: var(--border) solid var(--black);
	}
}

/* ========== footer ========== */

/* ==================== section ==================== */
