/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* VARIABLES */
:root {
	/* Fonts & Typography */
	--font-family: 'Inter', sans-serif;

	--font-weight: 400;
	--letter-spacing: normal;

	--font-size: 1.125rem;
	--line-height: 1.418rem;

	--font-size-sm: .875rem;
	--line-height-sm: 1.125rem;

	--font-size-lg: 1.25rem;
	--line-height-lg: 2.188rem;
	/* Titles */
	--h1-font-size: 5rem;
	--h1-line-height: 7.5rem;

	--h2-font-size: 3.688rem;
	--h2-line-height: 5rem;

	--h3-font-size: 3rem;
	--h3-line-height: 3.688rem;

	--h4-font-size: 2.75rem;
	--h4-line-height: 3.6rem;

	--h5-font-size: 2.5rem;
	--h5-line-height: 3.25rem;

	--h6-font-size: 2.375rem;
	--h6-line-height: 3rem;

	--title-font-weight: 700;
	/* Colors */
	--dark: #000;
	--light: #EFEFEF;
	--white: #fff;
	--red: #760604;
	--text: #151515;
	--primary: #FFE8AC;
	--secondary: #760604;
	--green: #97DAC0;
	--green-dark: #71BEA0;
	--placeholder: #858585;
	/* Other */
	--header-height: 64px;
	--header-height-sm: 84px;
	/* Buttons */
	--btn-font-size: 1.5rem;
	--btn-font-size-sm: 1.125rem;
	--btn-font-weight: 600;
	--btn-line-height: 2rem;
	--btn-border-width: 3px;
	--btn-border-radius: .5rem;
	/* Gaps & spaces */
	--section-padding: 10rem 0;
	--section-padding-sm: 5rem 0;
	--section-padding-xs: 2.5rem 0;
	--content-margin: 1rem;
	--content-margin-sm: calc(var(--content-margin) / 1.2);
	--content-margin-xs: calc(var(--content-margin) / 1.5);
	/* Transitions */
	--duration: .5s;
	--delay: var(--duration);
	--easing: cubic-bezier(.14, .72, .18, .84);
}

/* NORMALIZE */
html {
	flexoverflow-y: scroll;
}

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;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

body * {
	-webkit-text-size-adjust: none;
	outline: none;
}

.clear {
	clear: both;
	overflow: hidden;
	height: 0;
	font-size: 0;
	display: block;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

input,
textarea,
select {
	font-weight: 400;
	appearance: none;
	border-radius: 0;
	background: none;
	border: none;
	margin: 0;
	width: 100%;
	font-family: 'Arial';
}

textarea {
	display: block;
	resize: none;
	overflow: auto;
}

select::-ms-expand {
	display: none;
}

input[type="submit"]:not(.sbj-disable-button),
input[type="file"] {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	opacity: 0;
	border: none;
	cursor: pointer;
	z-index: 1;
}

a,
a:link,
a:visited,
a:active,
a:hover {
	cursor: pointer;
	text-decoration: none;
	outline: none;
}

body {
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	font-family: 'Arial';
}

b,
strong {
	font-weight: 700;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
}

html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}

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

/* BOOTSTRAP (ONLY GRID) */
.container {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {

	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {

	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {

	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {

	.container {
		max-width: 1460px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.col-1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}

.col-2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}

.col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}

.col-5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}

.col-8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}

.col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}

.col-11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}

.col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.offset-1 {
	margin-left: 8.333333%;
}

.offset-2 {
	margin-left: 16.666667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.333333%;
}

.offset-5 {
	margin-left: 41.666667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.333333%;
}

.offset-8 {
	margin-left: 66.666667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.333333%;
}

.offset-11 {
	margin-left: 91.666667%;
}

@media (min-width: 768px) {

	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-sm-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-sm-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-sm-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-sm-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-sm-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-sm-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-sm-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-sm-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-sm-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-sm-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-sm-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-sm-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.333333%;
	}

	.offset-sm-2 {
		margin-left: 16.666667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.333333%;
	}

	.offset-sm-5 {
		margin-left: 41.666667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.333333%;
	}

	.offset-sm-8 {
		margin-left: 66.666667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.333333%;
	}

	.offset-sm-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 992px) {

	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-md-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-md-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-md-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-md-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-md-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-md-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-md-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-md-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-md-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.333333%;
	}

	.offset-md-2 {
		margin-left: 16.666667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.333333%;
	}

	.offset-md-5 {
		margin-left: 41.666667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.333333%;
	}

	.offset-md-8 {
		margin-left: 66.666667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.333333%;
	}

	.offset-md-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1200px) {

	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-lg-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-lg-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-lg-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-lg-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-lg-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-lg-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-lg-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-lg-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-lg-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-lg-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-lg-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.333333%;
	}

	.offset-lg-2 {
		margin-left: 16.666667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.333333%;
	}

	.offset-lg-5 {
		margin-left: 41.666667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.333333%;
	}

	.offset-lg-8 {
		margin-left: 66.666667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.333333%;
	}

	.offset-lg-11 {
		margin-left: 91.666667%;
	}
}

@media (min-width: 1600px) {

	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-xl-auto {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.col-xl-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-xl-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-xl-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xl-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-xl-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-xl-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-xl-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-xl-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-xl-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-xl-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-xl-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-xl-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.333333%;
	}

	.offset-xl-2 {
		margin-left: 16.666667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.333333%;
	}

	.offset-xl-5 {
		margin-left: 41.666667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.333333%;
	}

	.offset-xl-8 {
		margin-left: 66.666667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.333333%;
	}

	.offset-xl-11 {
		margin-left: 91.666667%;
	}
}

/* TOP PRIORITY STYLES */
::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	cursor: grab;
	border-radius: 20px;
	background: rgba(241, 160, 45, .29);
}

::-webkit-scrollbar-thumb:active {
	cursor: grabbing;
}

.popup {
	display: none;
}

.splide__track {
	will-change: transform;
}

.btn:before,
.btn:after,
.splide__arrow:before {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

body,
.content {
	color: var(--text);
	font-size: var(--font-size);
	font-family: var(--font-family);
	font-weight: var(--font-weight);
	line-height: var(--line-height);
	letter-spacing: var(--letter-spacing);
}

body,
main,
section,
.section,
footer,
.img,
.relative {
	position: relative;
}

.static {
	position: static;
}

.dropdown-menu-item > a:before,
.bread-crumbs a:after  {
	pointer-events: none;
}

#menu-btn,
.btn,
.accordion-title,
.tab-btn,
.button-close,
.btn-to-top,
.search-btn {
	cursor: pointer;
}

main {
	margin-top: var(--header-height);
	min-height: calc(100vh - var(--header-height));
}

main.homepage {
	padding-top: var(--header-height);
}

.content-container {
	z-index: 1;
	overflow: hidden;
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
	background-color: var(--primary);
}

.content-container:before {
	top: 0;
	left: 50%;
	bottom: 0;
	content: '';
	z-index: -1;
	position: absolute;
	border-radius: 1.25rem;
	width: calc(1460px + 10rem);
	transform: translateX(-50%);
	background-color: var(--white);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
}

.overflow-hidden {
	overflow: hidden;
}

.full-size,
.splide__track.full-size {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}

.bg-light {
	background-color: var(--primary);
}

.bg-dark {
	background-color: var(--dark);
}

.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.img img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
}

.img.cover img,
.img.contain img {
	height: auto;
}

.img.cover img {
	object-fit: cover;
}

.img.contain img {
	object-fit: contain;
}

.img.border-radius {
	border-radius: 1.5rem;
}

.content-video {
	padding-top: 64%;
	position: relative;
}

.content-video iframe {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

.contacts {
	display: block;
}

.contact {
	align-items: center;
	display: inline-flex;
}

.contact:not(:last-child) {
	margin-bottom: 1.2rem;
}

.contact .img {
	width: 22px;
	height: 22px;
	margin-right: 1rem;
}

.contact .img svg {
	width: 100%;
	height: 100%;
}

.contact a,
.contact span {
	color: var(--white);
	white-space: nowrap;
	font-size: 1.125rem;
	line-height: 1.375rem;
	letter-spacing: .01rem;
}

hr,
.hr {
	width: 100%;
	border: none;
	display: block;
	margin: 1.25rem 0;
	border-top: 1px solid var(--secondary);
}

@media (max-width: 1599px) {

	.content-container {
		padding-top: 2rem;
	}

	.content-container:before {
		width: calc(1460px + 5rem);
	}
}

@media (min-width: 1200px) {

	.only-mobile-block {
		display: none;
	}
}

@media (max-width: 1199px) {

	main {
		margin-top: var(--header-height-sm);
		min-height: calc(100vh - var(--header-height-sm));
	}

	.content-container {
		padding-top: .75rem;
		padding-bottom: 1.5rem;
	}

	.content-container:before {
		width: calc(960px + 1.5rem);
	}

	.only-mobile-block + .row {
		display: none;
	}

	.only-mobile-block .direction {
		display: flex;
		background-color: var(--green);
	}

	.only-mobile-block .direction .title {
		font-size: 1rem;
		margin-bottom: 0;
		line-height: 1.5rem;
	}

	.only-mobile-block .direction .img {
		width: 2rem;
		height: 2rem;
	}

	.only-mobile-block .direction .img svg path {
/* 		fill: transparent; */
		fill: var(--secondary);
		stroke-width: 2px;
	}
}

@media (max-width: 991px) {

	body,
	.content {
		font-size: var(--font-size-sm);
		line-height: var(--line-height-sm);
	}

	.content-container:before {
		width: calc(720px + 1.5rem);
	}
}

@media (max-width: 767px) {

	main.homepage {
		padding-top: 0;
	}

	.content-container:before {
		width: calc(540px + 1rem);
	}

	.only-mobile-block .direction {
		display: flex;
		background-color: var(--green);
	}

	.only-mobile-block .direction .title {
		font-size: 1rem;
		margin-bottom: 0;
		line-height: 1.5rem;
	}

	.only-mobile-block .direction .img {
		margin-top: 0;
		margin-left: auto;
	}
}

@media (max-width: 479px) {

	.content-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.content-container:before {
		width: calc(100% - 1.5rem);
	}
}

/* TYPOGRAPHY */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.content {
	margin-bottom: var(--content-margin);
}

.content:last-child,
.content > p,
ul li,
ol li {
	margin-bottom: 0;
}

.content > *:not(:last-child) {
	margin-bottom: var(--content-margin);
}

.light,
.light h1,
.light .h1,
.light h2,
.light .h2,
.light h3,
.light .h3,
.light h4,
.light .h4,
.light h5,
.light .h5,
.light h6,
.light .h6,
h1.light,
.h1.light,
h2.light,
.h2.light,
h3.light,
.h3.light,
h4.light,
.h4.light,
h5.light,
.h5.light,
h6.light,
.h6.light,
.content.light,
.banner .content.light,
.light b,
.light strong,
b.light,
strong.light {
	color: var(--white);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-weight: var(--title-font-weight);
}

h1,
.h1 {
	letter-spacing: .1rem;
	font-size: var(--h1-font-size);
	line-height: var(--h1-line-height);
}

h2,
.h2 {
	letter-spacing: .1rem;
	font-size: var(--h2-font-size);
	line-height: var(--h2-line-height);
}

h3,
.h3 {
	font-size: var(--h3-font-size);
	line-height: var(--h3-line-height);
}

h4,
.h4,
.content em > strong {
	font-size: var(--h4-font-size);
	line-height: var(--h4-line-height);
}

h5,
.h5 {
	font-size: var(--h5-font-size);
	line-height: var(--h5-line-height);
}

h6,
.h6 {
	font-size: var(--h6-font-size);
	line-height: var(--h6-line-height);
}

ul li,
ol li {
	position: relative;
	padding-left: 1.75rem;
}

ul li,
ol li {
	margin-bottom: 0;
}

ul li:before,
ol li:before {
	top: 0;
	left: 0;
	font-weight: 600;
	position: absolute;
	font-size: inherit;
	line-height: inherit;
}

ul li:before {
	top: .75rem;
	width: 6px;
	height: 6px;
	content: '';
	left: .875rem;
	margin-left: -3px;
	border-radius: 50%;
	background-color: var(--dark);
}

.text-sm ul li:before {
	top: .5rem;
}

ol {
	counter-reset: number;
}

ol li:before {
	counter-increment: number;
	content: counter(number)'.';
}

ol li:nth-child(1):before,
ol li:nth-child(2):before,
ol li:nth-child(3):before,
ol li:nth-child(4):before,
ol li:nth-child(5):before,
ol li:nth-child(6):before,
ol li:nth-child(7):before,
ol li:nth-child(8):before,
ol li:nth-child(9):before {
	content: '0' counter(number) '.'
}

b,
strong,
.text-bold {
	font-weight: 700;
}

i,
em {
	font-style: italic;
}

blockquote,
.blockquote {
	position: relative;
	padding-top: 3.5rem;
}

blockquote:before,
.blockquote:before {
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 5.125rem;
	height: 5.125rem;
	position: absolute;
	background: center / contain url('../img/quote.svg') no-repeat;
}

.content a:not(.btn):not(.download) {
	position: relative;
	display: inline-block;
}

.content a:not(.btn):not(.download):before {
	left: 0;
	bottom: 0;
	height: 2px;
	content: '';
	width: 100%;
	position: absolute;
	transform-origin: left center;
	transition: transform var(--duration) var(--easing);
}

.text-lg {
	font-size: var(--font-size-lg);
	line-height: var(--line-height-lg);
}

.text-sm {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-sm);
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-uppercase {
	text-transform: uppercase;
}

nav li,
.menu li {
	padding-left: 0;
}

nav li:before,
.menu li:before {
	display: none;
}

.title {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.5rem;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: 0;
}

.title.brand {
	padding: 0 1rem;
	min-width: 18rem;
	text-align: center;
	color: var(--dark);
	display: inline-block;
	line-height: 3.125rem;
	border-radius: .313rem;
	background-color: var(--green);
}

.title.brand.color-red {
	color: var(--secondary);
}

.title.brand.tag {
	min-width: auto;
	text-align: left;
	font-weight: 500;
	line-height: 3rem;
	font-size: 1.25rem;
	padding: 0 1.688rem;
	background-color: var(--white);
}

.title.brand.tag.dark {
	background-color: var(--light);
}

.direction-event-date > div:first-child .title.brand{
	margin-bottom: 0;
}

@media (max-width: 1599px) {

	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6,
	.content,
	.content > *:not(:last-child) {
		margin-bottom: var(--content-margin-sm);
	}

	h1,
	.h1 {
		font-size: calc(var(--h1-font-size) / 1.15);
		line-height: calc(var(--h1-line-height) / 1.15);
	}

	h2,
	.h2 {
		font-size: calc(var(--h2-font-size) / 1.15);
		line-height: calc(var(--h2-line-height) / 1.15);
	}

	h3,
	.h3 {
		font-size: calc(var(--h3-font-size) / 1.15);
		line-height: calc(var(--h3-line-height) / 1.15);
	}

	h4,
	.h4,
	.content em > strong {
		font-size: calc(var(--h4-font-size) / 1.15);
		line-height: calc(var(--h4-line-height) / 1.15);
	}

	h5,
	.h5 {
		font-size: calc(var(--h5-font-size) / 1.15);
		line-height: calc(var(--h5-line-height) / 1.15);
	}

	h6,
	.h6 {
		font-size: calc(var(--h6-font-size) / 1.15);
		line-height: calc(var(--h6-line-height) / 1.15);
	}

	blockquote,
	.blockquote {
		padding-top: 1.75rem;
	}

	blockquote:before,
	.blockquote:before {
		width: 4.2rem;
		height: 4.2rem;
	}
}

@media (min-width: 1200px) {

	.content a:not(.btn):not(.download):hover:before {
		transform: scaleX(0);
		transform-origin: right center;
	}
}

@media (max-width: 1199px) {

	.title.brand.tag {
		padding: 0 1.688rem;
		font-size: 1.125rem;
		line-height: 2.5rem;
	}
}

@media (max-width: 991px) {

	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4,
	h5,
	.h5,
	h6,
	.h6,
	.content,
	.content > *:not(:last-child) {
		margin-bottom: var(--content-margin-xs);
	}

	h1,
	.h1 {
		font-size: 2.5rem;
		line-height: 3.75rem;
	}

	h2,
	.h2,
	h3,
	.h3 {
		font-size: 1.375rem;
	}

	h2,
	.h2 {
		line-height: 1.875rem;
	}

	h3,
	.h3 {
		line-height: 1.676rem;
	}

	h4,
	.h4,
	.content em > strong {
		font-size: 1.374rem;
		line-height: 1.575rem;
	}

	h5,
	.h5 {
		font-size: 1.372rem;
		line-height: 1.328rem;
	}

	h6,
	.h6 {
		font-size: 1rem;
		line-height: 1.219rem;
	}

	.title {
		font-size: .875rem;
		line-height: 1.5rem;
	}

	.title.brand {
		font-size: 1.125rem;
		line-height: 2.5rem;
		min-width: 13.438rem;
	}

	ul li:before {
		width: 4px;
		height: 4px;
		left: .875rem;
		margin-top: -2px;
		margin-left: -2px;
	}

	blockquote,
	.blockquote {
		padding-top: 0;
	}

	blockquote:before,
	.blockquote:before {
		width: 3.25rem;
		height: 3.25rem;
	}

	b,
	strong {
		font-weight: 500;
	}

	.text-lg {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}

	.text-bold-sm {
		font-weight: 700;
	}

	.text-medium-sm {
		font-weight: 500;
	}
}

@media (max-width: 767px) {

	.title.brand.tag {
		font-size: .875rem;
		line-height: 2rem;
	}
}

/* HEADER */
header .container,
nav,
nav ul {
	display: flex;
	align-items: center;
}

header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	position: fixed;
	background-color: var(--primary);
}

header.scrolled {
	box-shadow: -11px 10px 15px 0 rgba(176, 176, 176, .09), -3px 3px 8px 0 rgba(176, 176, 176, .10);
}

header .container {
	min-height: var(--header-height);
}

header .logo {
	width: 12.263rem;
}

nav {
	flex: 0 0 100%;
	max-width: 100%;
}

nav li a,
nav li span {
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.35rem;
	color: var(--secondary);
	letter-spacing: .031rem;
	text-transform: uppercase;
}

.homepage .menu {
	flex-grow: 1;
	margin-right: 2.5rem;
}

.homepage nav li:last-child {
	margin-left: auto;
}

.dropdown-menu-item {
	position: relative;
	padding-right: 18px;
}

.dropdown-menu-item i {
	top: 50%;
	width: 0;
	height: 0;
	right: 4px;
	margin-top: -3px;
	position: absolute;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid var(--secondary);
}

nav li:not(:last-child) {
	margin-bottom: 0;
	margin-right: 2.938rem;
}

nav .menu {
	margin-right: auto;
}

nav .contacts {
	margin-right: 2rem;
}

.search {
	width: 64px;
	height: 36px;
	position: relative;
}

.search input {
	top: 0;
	right: 0;
	bottom: 0;
	width: 285px;
	height: 36px;
	padding: 0 1rem;
	position: absolute;
	border-radius: 2.25rem;
	border: 2px solid var(--secondary);
}

.search input,
.search input::placeholder {
	font-size: 1rem;
	font-weight: 400;
	line-height: 34px;
	color: var(--secondary);
}

.search input:focus {
	border-color: var(--green);
}

.search:not(.active) {
	cursor: pointer;
}

.search:not(.active) input {
	width: 100%;
}

.search svg {
	top: 50%;
	right: 10px;
	width: 25px;
	height: 25px;
	position: absolute;
	object-fit: contain;
	transform: translateY(-50%);
}

.project-menu-block {
	position: relative;
	margin-left: auto;
	padding-left: 10px;
}

.project-menu-btn {
	width: 48px;
	height: 40px;
	position: relative;
	border-radius: 4px;
	background-color: var(--green);
	border: 2px solid var(--green);
	cursor: pointer;
}

.open-menu  .project-menu-btn {
	background-color: transparent;
}

.project-menu-btn span {
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 0px;
	position: absolute;
	border-radius: 2px;
	border: 1px solid var(--secondary);
	transition: all 0.3s ease 0s;
}

.project-menu-btn span:first-of-type {
	top: 9px;
}

.project-menu-btn span:nth-of-type(2) {
	top: 50%;
	margin-top: -1px;
}

.project-menu-btn span:last-of-type {
	bottom: 9px;
}

.project-menu-list {
	position: absolute;
	top: calc(100% + 22px);
	right: -41px;
	background-color: rgba(255, 255, 255, .95);
    transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing), visibility .1s var(--easing) var(--delay);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	padding: 26px 40px 68px;
	min-width: 426px;
	width: 100%;
	display: flex;
	flex-direction: column;

	transform: translate3d(0, .75rem, 0);
	opacity: 0;
	visibility: hidden;
}

.open-menu .project-menu-list {
	transform: none;
	visibility: visible;
	transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing), visibility .1s var(--easing);
	opacity: 1;
}

.project-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 40px;
	position: relative;
	border-radius: 4px;
	background-color: transparent;
	border: 2px solid var(--green);
	margin-left: auto;
	margin-bottom: 20px;
	cursor: pointer;
}

.project-menu-list a {
	width: 100%;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 16px;
	background-color: var(--green);
	border-radius: 8px;
}

.project-menu-items {
	display: flex;
	flex-direction: column-reverse;
}

.project-menu-list a:not(:first-child) {
	margin-bottom: 20px;
}

.project-menu-list a span:first-child {
	flex: 0 1 auto;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.project-menu-list a img {
	max-width: 100%;
}

.project-menu-list a span:last-child {
	flex: 0 0 116px;
	text-align: right;
}

body:not(.homepage) header nav > ul:first-child > li:last-child {
	display: none;
}

@media (max-width: 1545px){
	.project-menu-list {
		right: 0;
	}
}

@media (max-width: 1200px){
	.project-menu-block {
		display: none;
	}
}

@media (min-width: 1200px) {

	nav > ul > li > a:before,
	nav > ul > li > span:before,
	nav li.active > a:after {
		content: '';
		position: absolute;
	}

	nav > ul > li.active > a:after {
		left: 0;
		right: 0;
		height: 0;
		bottom: -2px;
		border-bottom: 1px solid var(--secondary);
	}

	.dropdown-menu-item > a,
	.dropdown-menu-item > span {
		z-index: 1;
		position: relative;
	}

	nav > ul > li > a:before,
	nav > ul > li > span:before {
		top: -1rem;
		opacity: 0;
		z-index: -1;
		bottom: -1rem;
		left: -1.37475rem;
		right: -1.37475rem;
		background-color: rgba(255, 255, 255, .95);
		transition: opacity var(--duration) var(--easing);
	}

	.dropdown-menu-item ul {
		opacity: 0;
		padding: 1rem;
		left: -1.37475rem;
		position: absolute;
		visibility: hidden;
		display: block !important;
		top: calc(100% + .938rem);
		transform: translate3d(0, .75rem, 0);
		background-color: rgba(255, 255, 255, .95);
		transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing), visibility .1s var(--easing) var(--delay);
	}

	.dropdown-menu-item ul li {
		padding: .375rem 0;
	}

	.dropdown-menu-item ul li:not(:last-child) {
		margin-right: 0;
		border-bottom: 1px solid var(--secondary);
	}

	.dropdown-menu-item ul li a {
		font-size: 1.25rem;
		color: var(--dark);
		white-space: nowrap;
		text-transform: none;
		line-height: 1.875rem;
	}

	.dropdown-menu-item ul li.active a,
	.dropdown-menu-item ul li a:hover {
		color: var(--secondary);
	}

	.search:not(.active) input::placeholder {
		color: transparent;
	}

	.search:not(.active) input,
	.dropdown-menu-item i {
		pointer-events: none;
	}

	.search.active input {
		background-color: var(--white);
	}

	.search-btn {
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		width: 64px;
		position: absolute;
	}

	.search.active .search-btn {
		width: 36px;
	}

	nav li:not(:last-child),
	nav .contact.tel {
		margin-bottom: 0;
	}

	nav > ul > li:hover > a:before,
	nav > ul > li:hover > span:before,
	.dropdown-menu-item:hover ul {
		opacity: 1;
	}

	.dropdown-menu-item:hover ul {
		transform: none;
		visibility: visible;
		transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing), visibility .1s var(--easing);
	}

	.dropdown-menu-item > a:hover:before,
	.dropdown-menu-item > span:hover:before {
		pointer-events: auto;
	}

	.menu-btn,
	.menu-mobile,
	nav .social,
	nav > .img,
	.home-icon {
		display: none;
	}
}

@media (max-width: 1599px) {

	header .logo {
		width: 12rem;
	}

	nav li:not(:last-child) {
		margin-right: 2rem;
	}

	nav .contacts {
		margin-right: 1rem;
	}

	.homepage .menu {
		margin-right: 1.5rem;
	}
}

@media (max-width: 1281px) {

	nav li:not(:last-child) {
		margin-right: 1.25rem;
	}
}

@media (max-width: 1199px) {

	.homepage header nav > ul:first-child > li:first-child {
		display: none;
	}



	header .container {
		min-height: var(--header-height-sm);
	}

	.open-menu nav {
		opacity: 1;
		visibility: visible;
		transition: opacity var(--duration) var(--easing), visibility 0s;
	}

	.menu-btn {
		width: 38px;
		height: 32px;
		margin-left: auto;
		position: relative;
		border-radius: 4px;
		background-color: var(--green);
	}

	.menu-btn span {
		left: 9px;
		width: 20px;
		height: 0px;
		position: absolute;
		border-radius: 2px;
		border: 1px solid var(--secondary);
		transition: all 0.3s ease 0s;
	}

	.menu-btn span:first-of-type {
		top: 9px;
	}

	.menu-btn span:nth-of-type(2) {
		top: 50%;
		margin-top: -1px;
	}

	.menu-btn span:last-of-type {
		bottom: 9px;
	}

	.open-menu .menu-btn span:nth-of-type(2) {
		width: 0;
		opacity: 0;
	}

	.open-menu .menu-btn span:first-of-type {
		top: calc(50% - 1px);
		transform: rotate(-45deg);
	}

	.open-menu .menu-btn span:last-of-type {
		top: calc(50% - 1px);
		transform: rotate(45deg);
	}

	.menu-btn svg {
		top: -10px;
		left: -15px;
		position: absolute;
	}

	nav ul,
	nav {
		align-items: flex-start;
	}

	nav {
		top: 0;
		left: 0;
		right: 0;
		opacity: 0;
		position: fixed;
		flex-wrap: wrap;
		overflow-y: auto;
		max-height: 100vh;
		overflow-x: hidden;
		visibility: hidden;
		align-content: flex-start;
		border-bottom-left-radius: .75rem;
		border-bottom-right-radius: .75rem;
		padding: 6rem calc(50% - 465px) 1.25rem;
		background-color: rgba(239, 239, 239, .95);
		transition: opacity var(--duration) var(--easing), visibility 0s var(--delay);
	}

	nav .search {
		order: 1;
	}

	.homepage nav .menu,
	nav .menu {
		order: 2;
		padding-bottom: 0;
		margin-right: 1rem;
	}

	nav .menu.menu-mobile {
		order: 3;
		padding-top: .25rem;
		margin-top: -.25rem;
		border-top: 1px solid var(--green);
	}

	nav .social {
		order: 4;
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 1.563rem;
	}

	nav > .img {
		bottom: 1.25rem;
		position: absolute;
		right: calc(50% - 465px);
	}

	nav > ul {
		height: auto;
		display: flex;
		flex-wrap: wrap;
		max-height: 100%;
		padding-bottom: 1rem;
	}

	nav ul > li {
		width: 100%;
		display: block;
	}

	.dropdown-menu-item {
		position: relative;
	}

	.dropdown-menu-item i {
		top: auto;
		right: auto;
		margin-left: 10px;
		position: relative;
		margin-bottom: 3px;
		display: inline-block;
		transform: rotate(-90deg);
	}

	.dropdown-menu-item.active i {
		transform: none;
	}

	.dropdown-menu-item i:before {
		top: -7px;
		left: -7px;
		right: -7px;
		bottom: -7px;
		content: '';
		position: absolute;
	}

	.dropdown-menu-item > ul {
		display: none;
		padding: .25rem 0 .5rem 2.5rem;
	}

	.dropdown-menu-item:before,
	.dropdown-menu-item > ul > li.active:before {
		z-index: -1;
		content: '';
		width: auto;
		height: auto;
		left: -1000px;
		right: -1000px;
		position: absolute;
		display: block !important;
	}

	.dropdown-menu-item:before {
		bottom: 0;
		opacity: 0;
		top: -.5rem;
		background-color: rgba(224, 224, 224, .5);
	}

	.dropdown-menu-item.active:before {
		opacity: 1;
	}

	.dropdown-menu-item > ul > li.active:before {
		top: 0;
		bottom: -.25rem;
		background-color: rgba(194, 194, 194, .5);
	}

	.dropdown-menu-item > ul > li > a,
	.dropdown-menu-item > ul > li > span {
		font-weight: 400;
		font-size: .875rem;
		line-height: 1.313rem;
	}

	nav ul::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}

	nav ul::-webkit-scrollbar-track {
		background-color: transparent;
	}

	nav ul::-webkit-scrollbar-thumb {
		background-color: var(--primary);
	}

	nav li {
		display: block;
		flex: 0 0 100%;
		max-width: 100%;
	}

	nav li:not(:last-child) {
		margin-right: 0;
		margin-bottom: .75rem;
	}

	.homepage nav li:last-child {
	    margin-bottom: .75rem;
	}

	nav li a,
	nav li span {
		font-weight: 500;
		letter-spacing: 0;
		color: var(--dark);
		font-size: 1.125rem;
		text-transform: none;
		line-height: 1.688rem;
	}

	.search,
	.search input {
		width: 100%;
	}

	.search {
		margin-bottom: 1rem;
	}

	.search input {
		border-color: var(--green);
		background-color: var(--white);
	}

	.search input::placeholder {
		color: var(--placeholder);
	}

	.search svg path {
		fill: var(--placeholder);
		stroke: var(--placeholder);
	}

	.search-btn {
		display: none;
	}
}

@media (max-width: 991px) {

	nav {
		padding: 6rem calc(50% - 345px) 1.25rem;
	}

	nav > .img {
		right: calc(50% - 345px);
	}
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {

	nav {
		padding: 6rem calc(50% - 255px) 1.25rem;
	}

	nav > .img {
		right: calc(50% - 255px);
	}

	nav .menu,
	nav .contacts {
		flex: 0 0 100%;
		max-width: 100%;
	}

	nav ul {
		padding-bottom: 0;
	}

	nav .contacts {
		margin-top: 1.5rem;
		padding-top: 1.5rem;
	}

	nav .copyright {
		left: auto;
		right: auto;
		bottom: auto;
		position: relative;
	}
}

@media (max-width: 575px) {

	nav {
		padding: 6rem 1rem 1.25rem;
	}

	nav > .img {
		right: 1rem;
	}
}

/* BUTTONS */
.btn,
.btn-inline,
.btn-inline:after {
	display: inline-block;
}

.btn,
.btn:before {
	border-radius: var(--btn-border-radius);
}

.btn {
	z-index: 1;
	position: relative;
	text-align: center;
	will-change: color;
	white-space: nowrap;
	min-width: 21.563rem;
	color: var(--secondary);
	padding: .563rem 1.55rem;
	text-transform: uppercase;
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	line-height: var(--btn-line-height);
	max-height: calc(var(--btn-line-height) + 1.126rem);
}

.btn:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	content: '';
	position: absolute;
	border: var(--btn-border-width) solid var(--green);
	transition: transform .1s var(--easing), background-color var(--duration) var(--easing);
}

.btn:active:before {
	transform: scale(.95);
}

.btn.btn-dark {
	color: var(--secondary);
}

.btn.btn-dark:before {
	background-color: var(--green);
}

.btn-inline {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.875rem;
	color: var(--secondary);
}

.btn-inline:after {
	content: '';
	width: 24px;
	height: 16px;
	margin-left: 1.25rem;
	vertical-align: middle;
	background: center / contain url('../img/arrow.svg') no-repeat;
}

.social {
	font-size: 0;
	line-height: 0;
	margin-bottom: -.74rem;
}

.social a {
	z-index: 1;
	width: 36px;
	height: 36px;
	position: relative;
	margin-bottom: .5rem;
	display: inline-block;
}

.social a:not(:last-child) {
	margin-right: .75rem;
}

.social a:before {
	top: -2px;
	left: -2px;
	content: '';
	z-index: -1;
	right: -2px;
	bottom: -2px;
	position: absolute;
	transform: scale(0);
	background-color: var(--white);
}

.footer .social a {
	margin-bottom: .75rem;
	display: flex;
	align-items: center;
	gap: .75rem;
	width: 100%;
}

.footer .social a img {
	z-index: 1;
	width: 36px;
	height: 36px;
	position: relative;
	display: inline-block;
}

.footer .social a > span {
	margin-bottom: 0;
}

.social a:before {
	top: 0;
	left: 0;
	content: '';
	z-index: -1;
	position: absolute;
	transform: scale(0);
	background-color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.social a,
.social a:before {
	border-radius: 50%;
}

.social .img:active:before {
	transform: scale(1.1);
}

.btn.btn-block {
	width: 100%;
	display: block;
}

.btn-to-top {
	right: 1rem;
	bottom: 1rem;
	display: flex;
	position: fixed;
	width: 3.688rem;
	height: 3.688rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: var(--green);
	transition: opacity var(--duration) var(--easing), visibility 0s var(--delay);
	z-index: 9;
}

.btn-to-top:not(.active) {
	opacity: 0;
	visibility: hidden;
}

.btn-to-top.active {
	transition: opacity var(--duration) var(--easing), visibility 0s;
}

.btn-to-top svg {
	max-width: 2.313rem;
	max-height: 2.313rem;
	stroke: var(--secondary);
}

@media (min-width: 1200px) {

	.btn:hover {
		color: var(--white);
	}

	.btn:hover:before {
		background-color: var(--green);
	}

	.btn-inline:hover:after {
		transform: translate3d(5px, 0, 0);
	}

	.social a:hover:before {
		transform: none;
	}

	.btn-to-top:hover {
		background-color: var(--secondary);
	}

	.btn-to-top:hover svg {
		stroke: var(--white);
	}
}

@media (max-width: 991px) {

	.btn {
		min-width: 15.5rem;
	}
}

@media (max-width: 767px) {

	.btn {
		padding: 0 1rem;
		line-height: 2rem;
		font-size: 1.125rem;
	}

	.btn-inline {
		font-size: .875rem;
		line-height: 1.25rem;
	}

	.btn-inline:after {
		margin-left: .75rem;
	}

	.btn-to-top {
		display: none;
	}
}

/* BANNER */
.banner {
	padding-top: 0;
	position: relative;
}

.banner .bg-light {
	padding-bottom: 2rem;
	margin-bottom: -1.15rem;
}

.banner .bg-light .row:last-child {
	margin-top: .75rem;
}

.banner .row:last-child > div {
	display: flex;
	justify-content: end;
}

.banner h1,
.banner .h1 {
	font-weight: 500;
	margin-bottom: 0;
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: -.35rem;
}

.banner .container > .row [class*=col-] {
	align-content: flex-start;
}

.banner .content {
	font-weight: 500;
	letter-spacing: .03rem;
}

.banner .bg-light .row {
	align-items: flex-end;
}

.banner .social {
	display: flex;
	flex-direction: column;
}

.banner .social a {
	margin-left: auto;
}

.banner .social a:not(:last-child) {
	margin-right: 0;
}

.banner form {
	z-index: 1;
	position: relative;
	margin-left: -1.75rem;
	border-radius: 2.5rem;
	padding: 1rem 2rem 2rem;
	background: rgba(255, 255, 255, .5);
}

.chrome .banner form {
	background: rgba(255, 255, 255, .75);
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
}

.banner .btn.btn-block {
	min-width: auto;
	height: 2.313rem;
	padding: 0 1.55rem;
	max-height: 2.313rem;
	line-height: 2.313rem;
	width: calc(50% - 10px);
	font-size: 1.125rem;
}

.banner .btn:last-child {
	margin-left: 20px;
}

.banner-slider-section {
	position: relative;
}

.banner-slider-section:before {
	left: 0;
	bottom: 0;
	top: -4rem;
	content: '';
	z-index: -1;
	width: 25%;
	position: absolute;
	background-color: var(--light);
}

.banner-slider {
	position: relative;
}

body.home .banner-slider .img.cover {
	position: relative;
	padding-top: 36.528%;
}

body:not(.home) .banner-slider .img.cover {
	position: relative;
	padding-top: 55%;
}

.banner-slider .img.cover img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

body:not(.home) .banner-slider .img.contain {
	position: relative;
	padding-top: 55%;
	background-color: #000;
}

body:not(.home) .banner-slider .img.contain img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.banner-slider .h2 {
	left: 0;
	right: 0;
	bottom: 0;
	margin-bottom: 0;
	position: absolute;
	padding: .813rem .813rem;
	text-transform: uppercase;
	background-color: rgba(0, 0, 0, .45);
}

.banner-slider .splide__arrow {
	margin-top: -39.34px;
	zoom: .7;
}

.banner-slider .splide__pagination {
	left: auto;
	right: auto;
	width: 100%;
	bottom: auto;
	display: block;
	position: relative;
	text-align: center;
	padding: .813rem 0 2.688rem;
}

.page-heading .h1,
.page-heading .h2 {
	margin-bottom: 0;
	color: var(--secondary);
}

.page-heading .social {
	margin-bottom: 1.938rem;
}

.page-heading .social a {
	margin-bottom: 0;
}

@media (max-width: 1599px) {

	.banner form {
		margin: 0 0 0 -6.063rem;
	}

	.banner-slider-section:before {
		width: 18%;
	}
}

@media (min-width: 1200px) {

	.banner .img.full-size img.parallax {
		margin-top: -1.5rem;
		height: calc(100% + 3rem);
	}

	.earth {
		padding-right: 4%;
	}
}

@media (max-width: 1199px) {

	.banner .bg-light .row {
		align-items: center;
	}

	.banner h1,
	.banner .h1 {
		font-size: .938rem;
		line-height: 1.125rem;
	}

	.page-heading {
		padding-bottom: 1.5rem;
	}

	.banner .bg-light .row:first-child > div[class^="col"]:nth-child(3),
	.banner .bg-light .row:first-child > div[class^="col"]:last-child,
	.banner .bg-light .row:last-child,
	.banner-slider-section:before,
	.page-heading .row > div[class^="col"]:last-child {
		display: none;
	}
}

@media (max-width: 991px) {
	.page-heading .h1,
	.page-heading .h2 {
        line-height: 3rem;
    }
}

@media (min-width: 768px) {

	.banner .img.full-size {
		left: auto;
		width: 50%;
		border-radius: 19.188rem 0 0 19.188rem;
	}

	.banner .img.full-size img {
		width: 100%;
		height: 100%;
		object-position: center top;
	}
}

@media (max-width: 767px) {

	.banner {
		padding: 0;
	}

	.banner .row > div:nth-child(1) {
		order: 1;
	}

	.banner .row > div:nth-child(2) {
		order: 3;
	}

	.banner .row > div:nth-child(3) {
		order: 2;
	}

	.banner .row > div:nth-child(4) {
		order: 4;
	}

	.banner .img {
		margin-top: 1rem;
		margin-bottom: 3.125rem;
	}

	.banner h1,
	.banner .h1 {
		margin-bottom: 1.875rem;
		line-height: 1.3rem;
	}

	.banner .content:not(:last-child) {
		margin-bottom: 1rem;
	}

	body.home .banner-slider {
		display: none;
	}

	.page-heading .h1,
	.page-heading .h2 {
		margin-bottom: -.5rem;
	}

	.banner-slider .splide__pagination {
		padding: .813rem 0;
	}
	.banner-slider .splide__arrow {
/*	    margin-top: -20px;*/
	    display: none;
	}
}

/* BREAD CRUMBS */
.bread-crumbs {
	font-size: 0;
	display: inline-block;
	margin-bottom: .688rem;
	border-bottom: 1px solid var(--green);
}

.bread-crumbs a,
.bread-crumbs span {
	font-size: .875rem;
	line-height: 1.313rem;
}

.bread-crumbs a,
.bread-crumbs a:after,
.bread-crumbs span {
	display: inline-block;
	vertical-align: middle;
}

.bread-crumbs a {
	color: var(--placeholder);
}

.bread-crumbs a:after {
	content: '';
	width: 1rem;
	height: 1rem;
	margin: 0 .5rem;
	position: relative;
	background: center / contain url('../img/angle.svg') no-repeat;
}

.bread-crumbs span {
	color: var(--green);
}

@media (min-width: 1200px) {

	.bread-crumbs a:hover {
		color: var(--green);
	}
}

@media (max-width: 767px) {

	.bread-crumbs a:after {
		margin: 0 .2rem;
	}
}

/* PAGINATION */
.pagination {
	font-size: 0;
	position: relative;
}

.pagination > *:not(:last-child) {
	margin-right: .625rem;
}

.pagination a,
.pagination span {
	width: 2.125rem;
	height: 2.125rem;
	text-align: center;
	border-radius: 50%;
	font-size: 1.125rem;
	line-height: 2.125rem;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: .031rem;
	color: var(--placeholder);
}

.pagination a.active {
	background-color: var(--light);
}

.pagination a.prew,
.pagination a.next {
	width: 35px;
	height: 23px;
	border-radius: 0;
}

.pagination a.prew svg,
.pagination a.next svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pagination a.prew svg {
	transform: rotate(180deg);
}

@media (min-width: 1200px) {

	.pagination a:not(.prew):hover,
	.pagination a:not(.next):hover {
		background-color: var(--light);
	}

	.pagination a.prew:hover svg path,
	.pagination a.next:hover svg path {
		fill: var(--secondary) !important;
	}
}

@media (max-width: 991px){
	.pagination a.prew,
	.pagination a.next {
		width: 30px;
	}
}

@media (max-width: 676px){
	.pagination a.prew,
	.pagination a.next {
		width: 25px;
	}
}

.book-block {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	color: #151515;
}

.book-top {
	width: 70%;
	background-color: var(--green);
	padding: 32px;
	position: relative;
}

.book-top::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: calc(109% - 1px);
	height: calc(100% + 117px);
	background-color: var(--green);
	z-index: -1;
}

.book-top-heading {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 36px;
}

.book-top-image {
	flex: 0 0 58%;
}

.book-top-image img {
	max-width: 100%;
	width: 100%;
}

.book-top-title {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	line-height: 122%;
	text-transform: uppercase;
	color: #760604;
}

.book-top-text {
	margin-bottom: 20px;
}

.book-row {
	display: flex;
	justify-content: space-around;
	gap: 24px;
	padding: 30px 120px;
	margin-bottom: 20px;
}

.book-row:nth-child(even) {
	background-color: #EFEFEF;
	border-radius: 12px;
}

.book-row:nth-child(odd) {
	flex-direction: row-reverse;
}

.book-row-image {
	flex: 0 0 50%;
}

.book-row-image img {
	max-width: 100%;
	width: 100%;
}

.book-row-text {
	flex: 0 0 50%;
}

.book-block p {
	line-height: 126%;
}

.book-block p:not(:last-child) {
	margin-bottom: 12px;
}

.book-block b {
	font-weight: 600;
	font-size: 20px;
}

.book-btn-row {
	padding: 42px 0 80px;
}

@media (max-width: 1599px){
	.book-top::before {
		width: calc(105% - 1px);
	}
}

@media (max-width: 1200px){
	.book-top::before {
		width: calc(104% - 5px);
	}

	.book-top-heading {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 12px;
	}
}

@media (max-width: 991px){
	.book-top {
		width: 100%;
		margin-top: 20px;
	}
	.book-top::before {
		width: calc(100% + 3rem);
		right: -1.5rem;
		border-radius: 12px;
	}

	.book-row {
		padding: 16px 60px;
		margin-bottom: 20px;
	}
	.book-row:nth-child(even),
	.book-row:nth-child(odd) {
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 767px){
	.book-block {
		font-size: 14px;
	}
	.book-block .social {
		display: none;
	}
	.book-top {
		padding: 16px 0;
	}
	.book-top::before {
		width: calc(100% + 1.8rem);
		right: -1rem;
		border-radius: 12px;
	}
	.book-top-title {
		font-size: 24px;
	}
	.book-block b {
		font-size: 16px;
	}
	.book-row {
		padding: 16px;
	}

	.book-btn-row {
		padding: 24px 0 48px;
	}
}

@media (max-width: 379px){
	.book-row {
		margin-right: -15px;
		margin-left: -14px;
	}
}

.upcoming-events {

}

.upcoming-events-tags {
	margin-bottom: 15px;
}

.upcoming-events-block {

}

.upcoming-events-list {
	margin-bottom: 130px;
}

.upcoming-events-item {
	border-bottom: 1.5px solid #858585;
	padding: 22px 0;
}

.upcoming-events-item-image {
	margin-bottom: 30px;
}

.upcoming-events-item-image img {
	width: 100%;
}

.upcoming-events-item-content {
	display: flex;
	gap: 120px;
	margin-top: 40px;
}

.upcoming-events-item-title {
	font-style: normal;
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #151515;
	max-width: 610px;
}

.upcoming-events-item:first-child .upcoming-events-item-title {
	font-size: 48px;
	line-height: 56px;
}

.upcoming-events-item-text {
	font-style: normal;
	font-weight: 400;
	font-size: 22px;
	line-height: 152%;
	color: #151515;
	margin-bottom: 22px;
	max-width: 550px;
}

.upcoming-events-item-info {
	margin-bottom: 45px;
	font-weight: 700;
}

@media (max-width: 1315px){
	.upcoming-events-item-content {
		gap: 60px;
	}
}

@media (max-width: 1200px){
	.upcoming-events-item-content {
		flex-direction: column;
	}
	.upcoming-events-item-title,
	.upcoming-events-item-text {
		max-width: 100%;
	}
}

@media (max-width: 991px){

	.upcoming-events-tags {
		margin-bottom: 5px;
	}
	.upcoming-events-item {
		border-bottom: 1.5px solid #97DAC0;
		padding: 24px 0;
	}
	.upcoming-events-item-image {
		margin-bottom: 12px;
	}
	.upcoming-events-item-content {
		gap: 12px;
		margin-top: 0;
	}
	.upcoming-events-item:first-child .upcoming-events-item-title,
	.upcoming-events-item-title {
		font-size: 18px;
		line-height: 133%;
	}
	.upcoming-events-item-text {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.upcoming-events-item-info {
		margin-bottom: 12px;
	}
}


.mass-media {

}

.mass-media-tags {
}

.mass-media-block {
	margin-bottom: 40px;
}

.mass-media-list {
	margin-bottom: 32px;
}

.mass-media-item {
	padding: 38px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 38px 24px;
	border-bottom: 1px solid rgba(21, 21, 21, 0.2);
}

.mass-media-item-image {
	flex: 0 0 40%;
	width: 40%;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
}

/* .mass-media-item:first-child .mass-media-item-image {
	flex: 0 0 100%;
	width: 100%;
	filter: none;
} */

.mass-media-item-image img {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

/* .mass-media-item:first-child .mass-media-item-image img {
	width: 100%;
	border-radius: 0;
} */

.mass-media-item-content {
	flex: 1 1 50%;
	font-style: normal;
	color: #151515;
}

/* .mass-media-item:first-child .mass-media-item-content {
	display: flex;
} */

.mass-media-item-title {
	font-weight: 500;
	font-size: 40px;
	line-height: 122%;
	margin-bottom: 36px;
}

/* .mass-media-item:first-child .mass-media-item-title {
	flex: 0 0 57%;
	font-size: 60px;
} */

.mass-media-item-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 152%;
}

/* .mass-media-item:first-child .mass-media-item-text {
	flex: 1 1 40%;
	font-size: 22px;
} */

.mass-media-item-date {
	flex: 0 0 100%;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 133%;
	text-transform: uppercase;
	color: #151515;
}

.mass-media-item-content .mass-media-item-date {
	flex: 0 0 auto;
	margin-bottom: 12px;
}

.mass-media .text-right {
	width: 100%;
}

@media (max-width: 1200px){
/* 	.mass-media-item:first-child .mass-media-item-content {
		flex-direction: column;
	} */
	.mass-media-item-image {
		flex: 0 0 100%;
		width: 100%;
	}
}

@media (max-width: 991px){
/* 	.mass-media-item:first-child .mass-media-item-title {
		font-size: 40px;
		flex: 0 0 auto;
	} */
}

@media (max-width: 767px){
	.mass-media-item {
		gap: 12px;
		border-bottom: 2px solid #97DAC0;
	}
	.mass-media-item-title {
/* 	.mass-media-item:first-child .mass-media-item-title { */
		font-size: 18px;
		margin-bottom: 12px;
	}
	.mass-media-item-text {
/* 	.mass-media-item:first-child .mass-media-item-text { */
		font-size: 14px;
	}
	.mass-media-item-date {
		font-size: 14px;
	}
}

.blog-inner {
	margin-bottom: 40px;
}

.blog-inner .social {
	margin-bottom: 18px;
}

.blog-inner .tags {
	margin: 0;
	display: flex;
	justify-content: flex-end;
	gap: 1.188rem;
}


.blog-inner .blog-inner-sidebar .sidebar {
	padding: 2.063rem calc(5rem + 10px) 2.063rem 1.813rem;
}

.blog-inner .blog-inner-sidebar .sidebar .btn-inline {
	margin-top: 20px;
	margin-bottom: 0;
	color: var(--secondary);
}

.content-slider {
	margin-top: 0;
	position: relative;
	margin-bottom: 5px !important;
}

.content-slider .img.cover {
	position: relative;
	padding-top: 57%;
}

.content-slider .img.cover img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.content-slider .h2 {
	left: 0;
	right: 0;
	bottom: 0;
	margin-bottom: 0;
	position: absolute;
	padding: .813rem .813rem;
	text-transform: uppercase;
	background-color: rgba(0, 0, 0, .45);
}

.content-slider .splide__arrow {
	margin-top: -39.34px;
}

.content-slider .splide__pagination {
	left: auto;
	right: auto;
	width: 100%;
	bottom: auto;
	display: block;
	position: relative;
	text-align: center;
	padding: 5px 0 0;
}

.content-slider .splide__pagination .splide__pagination__page {
	display: flex;
}

.content-slider .splide__pagination li {
	width: 40px;
	height: 8px;
}

@media (max-width: 991px){
	.content-slider .splide__arrows {
		display: none;	
	}
}

.blog-inner-video {
	margin-bottom: 158px;
	position: relative;
}

.blog-inner-video .container{
	position: relative;
}

.blog-inner-video .container::before {
	content: "";
	width: 951px;
	height: 316px;
	background-color: var(--green);
	position: absolute;
	left: -5.43%;
	bottom: -23%;
	z-index: -1;
}

.blog-inner-video .title.brand {
	margin-bottom: 37px;
}

.video-container {
    display: flex;
    justify-content: center;
}

.video-container iframe {
	aspect-ratio: 16/9;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 1599px){
	.blog-inner-video .container::before {
		left: -2.7%;
	}
}

@media (max-width: 1200px){
	.blog-inner .blog-inner-sidebar {
		display: none;
	}
	.blog-inner-video .container::before {
		left: -1.2%;
	}
}

@media (max-width: 991px){
	.blog-inner-video .container::before {
		width: 103.3%;
		height: 126px;
		left: -1.6%;
	}
	.blog-inner-video {
		margin-bottom: 100px;
	}
	.blog-inner-video .title.brand {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px){
	.blog-inner .social,
	.blog-inner .tags { 
		display: none;
	}
	.blog-inner-video .container::before {
		width: 102.8%;
		left: -1.3%;
	}
}

@media (max-width: 479px){
	.blog-inner-video .container::before {
		width: 101.8%;
		left: -0.6%;
	}
}


.map-block {
	position: relative;
	margin-bottom: 6.438rem;
}

#map {
	height: 718px;
	border: 1px solid rgba(21, 21, 21, 0.1);
	border-radius: 10px;
}

.map-box {
	background-color: var(--white);
	border: 1px solid #97DAC0;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	padding: 25px;
	max-width: 360px;
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.map-box-line {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-style: normal;
	font-weight: 400;
}
.map-box-line span:first-child {
	font-size: 16px;
	line-height: 120%;
	letter-spacing: -0.02em;
	color: rgba(21, 21, 21, 0.4);
}
.map-box-line span:last-child {
	font-size: 20px;
	line-height: 120%;
	letter-spacing: -0.02em;
	color: #151515;
}

@media (max-width: 991px) {

	.map-block {
		margin-bottom: 160px;
	}

	.map-box {
		top: auto;
		left: auto;
		width: 100%;
		display: block;
		max-width: 100%;
		transform: none;
		position: relative;
	}
}

@media (max-width: 767px){
	.map-block {
		margin-bottom: 120px;
	}
	.map-box {
		padding: 15px 12px;
		gap: 8px;
	}
	#map {
		height: 421px;
	}
	.map-box-line span:first-child {
		font-size: 12px;
	}
	.map-box-line span:last-child {
		font-size: 14px;
	}
}

@media (max-width: 479px){
	.map-block {
		margin-left: -15px;
		margin-right: -15px;
	}
}

.content-less {
}

input[name="read-more"] {
	width: 0;
	height: 0;
	clip: rect(0);
	opacity: 0;
	visibility: hidden;
	position: absolute;
}

input[name="read-more"]:checked ~ .content-less {
	-webkit-line-clamp: unset;
	max-height: 1000lh;
}

input[name="read-more"]:not(:checked) ~ label::after {
	content: url('data:image/svg+xml,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 6.5L0.669873 0.499999L9.33013 0.5L5 6.5Z" fill="%23760604"/></svg>');
}

input[name="read-more"]:not(:checked) ~ label::before {
	content: "Більше";
}

input[name="read-more"] ~ label::before {
	content: "Менше";
}

input[name="read-more"] ~ label::after {
	content: url('data:image/svg+xml,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 0.499999L9.33013 6.5L0.669874 6.5L5 0.499999Z" fill="%23760604"/></svg>');
}

label[for="read-more"] {
	display: none;
	justify-content: flex-end;
	gap: 4px;
	cursor: pointer;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: -0.019em;
	text-transform: capitalize;
	color: #760604;
}

@media (max-width: 767px){
	.content-less {
		max-height: 18lh;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		transition: all .5s;
	}
	label[for="read-more"] {
		display: flex;
	}
}

.blog-cat {
	margin-bottom: 40px;
}

.blog-cat::before {
	left: 50%;
	bottom: -40px;
	content: '';
	height: 17.938rem;
	position: absolute;
	transform: translateX(-50%);
	width: calc(1460px + 10rem);
	background: linear-gradient(to right, var(--white) 0%, var(--white) 38%, var(--green) 38%, var(--green) 100%);
}

.blog-cat .blog-cat-top {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 25px;
}

.blog-cat .title.brand {
	min-width: auto;
	white-space: nowrap;
}

.blog-cat .tags {
	margin: 0;
	margin-left: auto;
	display: flex;
	gap: 10px;
}

.blog-cat .tags .tag {

}

.blog-cat-posts {
	padding: 2rem 1.813rem;
	background-color: var(--light);
	margin-bottom: 40px;
}

.blog-cat-post {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 24px;
}

.blog-cat-post-img {
	flex: 0 0 418px;
}

.blog-cat-post-img img {
	width: 100%;
}

.blog-cat-post .blog-cat-post-content {
	width: 100%;
}

.blog-cat-post:not(:last-child) .blog-cat-post-content {
	border-bottom: 1px solid #760604;
	padding-bottom: 24px;
}

.blog-cat-post-content span {
	width: 100%;
	display: block;
	font-weight: 700;
	margin-bottom: .25rem;
	color: var(--placeholder);
	text-transform: uppercase;
}

.blog-cat-post-content a {
	font-size: 1.125rem;
	line-height: 1.313rem;
	letter-spacing: .031rem;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 1.25rem;
}

@media (max-width: 1350px){
	.blog-cat-post-img {
		flex: 0 0 390px;
	}
}

@media (max-width: 991px){
	.blog-cat::before {
		content: none; 
	}
	.blog-cat-post {
		flex-direction: column;
	}
	.blog-cat-post-img {
		flex: 0 0 auto;
	}
}

@media (max-width: 767px){
	.blog-cat .blog-cat-top {
		margin-top: 5px;
	}
	.blog-cat .social {
		display: none;
	}
	.blog-cat .tags {
		display: none;
	}
}

@media (max-width: 479px){
	.blog-cat-posts {
		padding: 0;
		background-color: #fff;
	}

	.blog-cat-post {
		margin-bottom: 13px;
		gap: 12px;
	}

	.blog-cat-post:not(:last-child) .blog-cat-post-content {
		padding-bottom: 13px;
	}

	.blog-cat-post-content span {
		font-size: 14px;
		margin-bottom: 4px;
	}
	
	.blog-cat-post-content a {
		font-size: 14px;
	}
}

.reports-box {
	display: grid;
	grid-template-columns: 564px 1fr;
	gap: 26px;
	background: #EFEFEF;
	border-radius: 12px;
	padding: 27px 21px;
}

.reports-box .title.brand {
	display: none;
}

.reports-box-img {
	grid-area: 1 / 1 / 2 / 2;
}

.reports-box-img img {
	width: 100%;
}

.reports-box-links {
	grid-area: 2 / 1 / 3 / 2;
	margin-top: auto;
	display: inline-flex;
	gap: 62px;
}

.reports-box-links a.download {
	background-color: #fff;
}

.reports-box-content {
	grid-area: 1 / 2 / 3 / 3;
}

.reports-box-title {
	font-style: normal;
	font-weight: 600;
	font-size: 32px;
	line-height: 128%;
	text-transform: uppercase;
	color: #151515;
	margin-bottom: 7px;
}

.reports-box-text {
	font-weight: 400;
	font-size: 18px;
	color: #000000;
}

.reports-box-text p {
	line-height: 126%;
}

@media (max-width: 1200px){
	.reports-box {
		grid-template-columns: 1fr;
	}
	.reports-box-img,
	.reports-box-links,
	.reports-box-content {
		grid-area: unset;
	}
	.reports-box-links {
		justify-content: center;
		gap: 12px;
		flex-wrap: wrap;
	}
}

@media (max-width: 991px){
	.reports-box-title {
		font-size: 27px;
	}
}

@media (max-width: 767px){
	.reports-box {
		gap: 12px;
	}
	.reports-box .title.brand {
		display: block;
		margin-right: auto;
	}
	.reports-box-title {
		display: none;
	}
}

@media (max-width: 479px){
	.reports-box {
		padding: 16px;
		margin: 0 -15px;
	}
	.reports-box-links {
		order: 3;
		margin: -15px;
		padding: 32px 15px;
		background: #fff;
		position: relative;
		top: 1px;
	}
	.reports-box-links::before {
		content: "";
		position: absolute;
		height: 20px;
		width: 100%;
		background: #efefef;
		top: 0;
		left: 0;
		border-radius: 0 0 10px 10px;
	}
	.reports-box-links a.download {
		background-color: var(--light);
	}
	.reports-box-text {
		font-size: 14px;
	}
}

.member-inner {
	margin-bottom: 120px;
}

.member-inner .bread-crumbs {
	margin-bottom: 40px;
}

.member-box {
	display: flex;
	align-items: flex-end;
	margin-top: 40px;
	margin-bottom: 54px;
	gap: 20px;
	position: relative;
}

.member-box::before {
	left: 50%;
	content: '';
	z-index: -1;
	position: absolute;
	transform: translateX(-50%);
	width: calc(1460px + 10rem);

	bottom: -30px;
	height: 15.125rem;
	background: linear-gradient(to left, var(--white) 0%, var(--white) 65%, #EFEFEF 60%, #EFEFEF 100%);
}

.member-box-photo {
	flex: 0 0 33%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.member-box-img {
	width: 345px;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
}

.member-box-img img {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.member-box-contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.member-box-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 126%;
	color: #760604;
}

.member-box-info {
	flex: 0 0 42%;
}

.member-box-name {
	font-style: normal;
	font-weight: 600;
	font-size: 44px;
	line-height: 100%;
	text-transform: uppercase;
	color: #760604;
	margin-bottom: 38px;
}

.member-box-bio {
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	color: #000000;
}

.member-box-bio p {
	line-height: 132%;
}

.member-box-bio p:not(:last-child) {
	margin-bottom: 14px;
}

.member-box-cite {
	flex: 0 0 360px;
	padding: 37px 22px 22px 37px;
	position: relative;
	background-image: url(../img/cite-bg.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 360px;
	height: 265px;
}

.member-box-cite span {
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
	line-height: 132%;
	color: #000000;
}

.member-box-cite span::before,
.member-box-cite span::after {
	font-style: italic;
	font-weight: 900;
	font-size: 40px;
	line-height: 0;
	color: #97DAC0;
	vertical-align: sub;
}

.member-box-cite span::before {
	content: "«";
}

.member-box-cite span::after {
	content: "»";
}

.member-content {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: #000000;
}

.member-content a {
	text-decoration: underline;
}

.member-content b,
.member-content strong {
	font-size: 16px;
	line-height: 150%;
}

@media (max-width: 1530px){
	.member-box {
		justify-content: space-between;
		align-items: flex-start;
	}
	.member-box::before {
		content: none;
	}
	.member-box-photo {
		flex: 0 0 25%;
	}
	.member-box-info {
		flex: 1 1 42%;
	}
}

@media (max-width: 1200px){
	.member-box {
		flex-direction: column;
	}
	.member-box-cite {
		flex: 0 0 auto;
		margin: 0 auto;
		background-image: url(../img/cite-bg-2.svg);
		height: 212px;
	}
	
	.member-content a {
		word-break: break-word;
		word-break: break-all;
	}

}

@media (max-width: 767px){
	.member-inner .bread-crumbs {
		margin-bottom: 16px;
	}
	.member-inner .social {
		display: none;
	}
	.member-box-photo {
		gap: 8px;
	}

	.member-box-img {
		width: 100%;
	}

	.member-box-contact {
		font-size: 16px;
	}

	.member-box-name {
		font-size: 32px;
		margin-bottom: 16px;
	}
	
	.member-box-bio {
		font-size: 14px;
	}

	.member-box-bio p:not(:last-child) {
		margin-bottom: 12px;
	}

	.member-box-cite span {
		font-size: 16px;
	}

	.member-box-cite {
		padding: 55px 40px 22px 40px;
	}

	.member-content,
	.member-content b,
	.member-content strong {
		font-size: 13px;
	}
	.member-content b,
	.member-content strong {
		font-weight: 600;
	}

}

@media (max-width: 420px){
	.member-box-cite {
		width: 320px;
	}
}

@media (max-width: 375px){
	.member-box-cite {
		width: 270px;
		height: 175px;
		padding: 45px 30px 22px 30px;
	}
	.member-box-cite span {
		font-size: 13px;
	}
	.member-box-cite span::before, .member-box-cite span::after {
		font-size: 31px;
	}
}

@media (min-width: 767px) {
	body.admin-bar header {
		top: 32px;
	}
}

