/*
Theme Name: Varmero
Version: 1.0
Author: Digital Noise
Author URI: https://digitalnoise.pl/
*/


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Space+Grotesk:wght@300..700&display=swap');

*,
*::after,
*::before {
	box-sizing: border-box;
	position: relative;
}

:root {
	--black: #393635;
	--white: #ffffff;
	--brown: #534945;
	--taupe: #8b847c;
	--beige: #ede6e0;
	--radius: 24px;
}

body {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background: var(--white);
	color: var(--black);
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: .5px;
	margin: 0;
	padding: 0;
	transition: 0s;
}

h1, h2, h3 {
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 30px;
}

a, a:active, a:visited {
	text-decoration: none;
	color: var(--black);
}

b, strong {
	font-weight: 700;
	font-style: normal;
}

:focus {
	outline: none;
}

img, video, svg {
	max-width: 100%;
	height: auto;
	display: block;
}

u {
	text-decoration: none;
	border-bottom: 1px solid var(--black);
}

section {
	padding: 80px 0;
}

section.hero {
	padding: 0;
}

.hero {
	text-align: center;
	font-size: 20px;
	color: var(--white);
	height: 940px;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.hero img.hero_bg {
	height: 940px;
	width: auto;
	max-width: unset;
	margin: 0 auto;
}

.hero .block {
	max-width: 1170px;
}

.hero img {
	margin: 0 auto;
}

.hero .content {
	position: absolute;
	top: 200px;
	left: 0px;
	right: 0px;
}

.hero .footer {
	position: absolute;
	bottom: 50px;
	left: 0px;
	right: 0px;
	font-size: 12px;
}

.header .block {
	max-width: 1170px;
	display: grid;
	grid-template-columns: 175px auto 150px;
	align-items: center;
	height: 140px;
	font-size: 16px;
}

.header ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.header ul li {
	display: inline-block;
}

.header ul li a {
	padding: 10px;
}

.block {
	max-width: 1060px;
	margin: 0 auto;
}


.grid {
	display: grid;
	gap: 40px;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
	grid-template-columns: repeat(6, 1fr);
}


@media screen and (max-width: 1600px) {
	.block {
		max-width: calc(100% - 200px);
	}
}