/*
Theme Name: Gurok Demo
Theme URI: https://wordpress.org/
Description: Тема для Wordpress
Author: divster
Version: 100.0
*/
@font-face {
	font-family: 'Ice Tea';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/ice-tea.woff2') format('woff2');
}
@font-face {
	font-family: 'Noto Sans';
	font-style: normal;
	font-weight: 500;
	src: url('fonts/noto-sans.woff2') format('woff2');
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
*{
	box-sizing: border-box;
}
html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body{
	font-family: 'Ice Tea', sans-serif;
	font-size: 14px;
	line-height: 1;
	color: #275e19;
	position: relative;
}
@media (prefers-color-scheme: dark) {
	body {
		background: #c1ff72;
		color: #275e19;
	}
}
.font-noto{
	font-family: 'Noto Sans';
}
.container {
	min-width: 280px;
	max-width: 1500px;
	margin: 0 auto;
}
img {
	max-width: 100%;
	height: auto;
}
strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
.site-wrapper {
	min-height: 100%;
	overflow: hidden;
	position: relative;
	background: #c1ff72;
	overflow: hidden;
}
.site-container{
	width: 1700px;
	max-width: 100%;
	margin:  0 auto;
	position: relative;
}
.block-1 {
	display: flex;
	align-items: center;
	margin: 3% 0 5% 5%;
}
.block-1__image {
	width: clamp(30px, 22vw, 350px);
}
.block-1__text {
	font-size: clamp(30px, 3.5vw, 60px);
}
.block-2 {
	display: flex;
	align-items: flex-start;
	margin: 0 0 2% 5%;
}
.block-2__image {
	width: clamp(24px, 35vw, 580px);
}
.block-2__text {
	width: clamp(24px, 30vw, 500px);
	font-size: clamp(24px, 2.6vw, 42px);
	line-height: 1.4;
	margin: -9% 0 0 -5%;
}
.block-3 {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: absolute;
	inset: 5% 2% auto auto;
}
.block-3__image {
	width: clamp(24px, 32vw, 525px);
}
.block-3__text {
	width: clamp(24px, 30vw, 500px);
	font-size: clamp(24px, 2.6vw, 42px);
	line-height: 1.4;
	margin: 0 28% 0 -0;
}
.block-4 {
	text-align: center;
	font-size: clamp(35px, 8vw, 100px);
	margin: 0 15% 5%;
	position: relative;
	z-index: 1;
}
.block-1__text span,
.block-2__text span,
.block-3__text span,
.block-4 span{
	font-family: 'Noto Sans';
}
.decor-1 {
	position: absolute;
	inset: auto auto -20px -60px;
	width: clamp(100px, 10vw, 384px);
	transform: scaleX(-1) rotate(45deg);
}
.decor-2 {
	position: absolute;
	inset: auto -10px 0 auto;
	width: clamp(100px, 20vw, 384px);
	
}
@media only screen and (max-width: 767px){
	.block-1{
		margin: 0 20px 30px;
	}
	.block-2{
		flex-direction: column-reverse;
		gap: 5px;
		margin: 0 20px 30px;
	}
	.block-2__image,
	.block-2__text,
	.block-3__image,
	.block-3__text{
		width: 100%;
		margin: 0;
		& br{
			display: none;
		}
	}
	.block-3{
		position: static;
		flex-direction: column;
		gap: 20px;
		margin: 0 20px 30px;
	}
}