/* ===================================================================
 * # imports 
 *
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Cormorant:wght@400;500;700;900&family=Jost:wght@400;500;600&display=swap');
@import url('../fonts/gilroy/style.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://cdn.jsdelivr.net/npm/remixicon@4.7.0/fonts/remixicon.css");
/*@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined");*/


:root {
	--font-1: "Mulish", sans-serif;
	--font-2: "Gilroy", sans-serif;
	--font-3: "EB Garamond", sans-serif;
	--font-icon: "remixicon";
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
	--border-radius-sm: 10px;
	--border-radius-md: 20px;
	--border-radius-lg: 30px;
	--border-radius-xl: 40px;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {

	--color-1: #175036; /* green dark */ 
	--color-2: #3f724f; /* 3c763d green */
	--color-3: #455763; /* blue dark */
	--color-4: #f2da8e; /* ffe592 yellow */
	--color-5: #a8576c; /* pink */

/* theme color variations
 */

	--color-1-lighter	: rgba(122, 143, 125, 0.3);
	--color-1-light		: rgba(122, 143, 125, 0.6);
	--color-1-dark		: #154831;
	
	--color-3-dark		: #37464f;
	--color-3-darker	: #232c32;
	
	--color-4-lighter	: rgba(200, 171, 124, 0.2);
	--color-4-light		: rgba(200, 171, 124, 0.4);
	--color-4-dark		: #c8b67c;
	--color-4-darker	: #af914f; /* c8ab7c */
	--color-4-warm		: #cb9971;
	
	--color-2-lighter	: rgba(121, 170, 100, 0.12);
	--color-2-light		: rgba(122, 170, 100, 0.3);
	--color-2-dark		: #396747;

	--color-black	: #000000;
	--color-dark	: #1e2532;
	--color-gray-4  : #d2cdc4;
	--color-gray-3  : #ebe6dd;
	--color-gray-2  : #f2eee9;
	--color-gray-1  : #f8f7f4;
	--color-white	: #ffffff;

	--color-bg-light-green-1: rgba(79, 143, 99, 0.06);
	--color-bg-light-green-2: rgba(79, 143, 99, 0.12);
	--color-bg-light-green-3: rgba(79, 143, 99, 0.18);

/* text
 */
	--color-text		: #111111;
	--color-text-dark	: #616161;
	--color-text-light	: #9e9e9e;

/* accents
 */
	--color-primary		: var(--color-1);
	--color-primary-dark: var(--color-4-darker);
	--color-secondary	: var(--color-4);
	--color-accent-pink	: var(--color-5);

/* bg
 */
	--color-bg-light: var(--color-gray-1);
	--color-bg-dark : var(--color-dark);

/* link
 */
	--color-link		: var(--color-1);
	--color-link-hover	: var(--color-2-lighter);
	--color-link-active	: var(--color-2-lighter);

/* buttons
 */
	--color-btn						: var(--color-gray-1);
	--color-btn-text				: var(--color-text);
	--color-btn-hover				: var(--color-gray-2);
	--color-btn-hover-text			: var(--color-text);
	--color-btn-primary				: var(--color-1);
	--color-btn-primary-text		: var(--color-white);
	--color-btn-primary-hover		: var(--color-1-dark);
	--color-btn-primary-hover-text	: var(--color-white);
	--color-btn-secondary			: var(--color-4);
	--color-btn-secondary-text		: var(--color-text);
	--color-btn-secondary-hover		: #E6CE83;
	--color-btn-secondary-hover-text: var(--color-text);
	--color-btn-stroke				: var(--color-text-dark);
	--color-btn-stroke-text			: var(--color-text-dark);
	--color-btn-stroke-hover		: var(--color-text-dark);
	--color-btn-stroke-hover-text	: var(--color-white);

/* others
 */
	--color-body-bg: var(--color-gray-1);
	--color-border : rgba(0, 0, 0, .1);
	--color-shadow : rgba(0, 0, 0, .1);
	--color-shadow-hover : rgba(21, 72, 49, .3);
	--color-shadow-black : rgba(0, 0, 0, .2);
	--border-radius: 5px;
}


/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
	font-size: 10px;
}

@media screen and (max-width:400px) {
	html {
		font-size: 9.444444444444444px;
	}

}

html,
body {
	height: 100%;
}

body {
	background: #fff;
	font-family: var(--font-1);
	font-size: 1.6rem;
	font-style: normal;
	font-weight: normal;
	line-height: 1.5;
	color: var(--color-text);
	margin: 0;
	padding: 0;
	position: relative;
	overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 1.4rem;
}
 
::-webkit-scrollbar-track {
    background-color: var(--color-gray-2);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    background: var(--color-1-light); 
}


/* ------------------------------------------------------------------- 
 * # links
 * ------------------------------------------------------------------- */
a {
	text-decoration: none;
	color: var(--color-2);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
	color: var(--color-text);
}

a:hover,
a:active {
	outline: 0;
}

a.h1:hover,
a.h2:hover,
a.h3:hover,
a.h4:hover,
a.h5:hover,
a.h6:hover,
a.text-dark:hover {
	color: var(--color-2)!important;
}

a.card.text-dark:hover {
	color: var(--color-text)!important;
}

a.card:hover {
	transform: translateY(-.5rem);
}

.bg-cover,
.link-cover {
	position: absolute !important;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg-cover {
	z-index: 0;
	pointer-events: none;
}


/* ------------------------------------------------------------------- 
 * # backgrounds
 * ------------------------------------------------------------------- */
.bg-light {
	background-color: var(--color-gray-1)!important;
}

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

.bg-black-opa {
	background-color: var(--color-shadow-black)!important;
}

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

.bg-secondary {
	background-color: var(--color-secondary)!important;
}

.bg-bronze {
	background-color: var(--color-4-warm)!important;
}

.bg-gradient-bronze {
	background-image: radial-gradient(circle farthest-corner at 0 0, var(--color-4-warm), #eac495);
	background-repeat: no-repeat;
}

.bg-gradient-silver {
	background-image: radial-gradient(circle farthest-corner at 0 0, var(--color-text-light), var(--color-gray-3));
	background-repeat: no-repeat;
}

.bg-gradient-gold {
	background-image: radial-gradient(circle farthest-corner at 0 0, var(--color-4-dark), var(--color-4));
	background-repeat: no-repeat;
}

.bg-green {
	background-color: var(--color-2)!important;
}

.bg-primary-light {
	background-color: var(--color-1-lighter)!important;
}

.bg-light-green-1 {
	background-color: var(--color-bg-light-green-1)!important;
}

.bg-light-green-2 {
	background-color: var(--color-bg-light-green-2)!important;
}

.bg-light-green-3 {
	background-color: var(--color-bg-light-green-3)!important;
}

.bg-gradient-secondary {
	background-image: linear-gradient(315deg, var(--color-4-dark), var(--color-4));
}

.bg-gradient-green-dark {
	background-image: linear-gradient(60deg, #2d3d5c, #64ba91);
	background-image: linear-gradient(60deg, var(--color-3), var(--color-1));
	background-image: radial-gradient(circle farthest-corner at 100% 50%, #001c1a, #113c2f);
	/* background-image: radial-gradient(circle farthest-corner at 100% 50%, #64ba91, #2d3d5c); */
	background-repeat: no-repeat;
	background-position: 50% 100%;
}

.bg-gradient-pink-yellow {
	background: linear-gradient(125deg, #fff2f9 23%, #fffcf7 100%);
}

.bg-gradient-pink-gray {
	background: linear-gradient(125deg, #fff2f9 0%, var(--color-gray-1) 80%);
}

.bg-gradient-yellow-gray {
	background: linear-gradient(125deg, var(--color-4) -20%, var(--color-gray-1) 80%);
}

.bg-gradient-green-gray {
	background-color: var(--color-white);
	background: linear-gradient(125deg, #b1c8b1 0%, var(--color-gray-1) 80%);
}

.bg-gradient-gray {
	background: linear-gradient(315deg, var(--color-gray-1) 0%, var(--color-gray-3) 100%);
}

.bg-image {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 20rem;
}

.bg-dark-overlay,
.bg-dark-overlay-left {
	position: relative;
	overflow: hidden;
}

.bg-dark-overlay > *,
.bg-dark-overlay-left > * {
	position: relative;
	z-index: 1;
}

.bg-dark-overlay:after,
.bg-dark-overlay-left:after {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

.bg-dark-overlay-left:after {
	background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.95));
}

.bg-bottom-overlay-hover:before {
	content: '';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	min-height: 240px;
	background-image: linear-gradient(180deg, rgba(242, 218, 142, 0), var(--color-4));
	transition: 0.3s;
	opacity: 0;
	transform: translateY(100%);
	/*filter: blur(10px);*/
	pointer-events: none;
}

.bg-bottom-overlay-hover:hover:before {
	opacity: 1;
	transform: translateY(5%);
}

.bg-decor {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 1920px auto;
}

.bg-noise {
	position: relative;
	overflow: hidden;
}

.bg-noise:before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url(../images/bg/bg-noise-1.webp) repeat;
	background-size: 100px;
	pointer-events: none;
}

.bg-noise-dark:before {
	background: url(../images/bg/bg-noise-2.webp) repeat;
	background-size: 50px;
	opacity: 0.9;
	mix-blend-mode: multiply;
}

.bg-gradient-gray.bg-noise:before {
	opacity: 0.4;
}

.bg-noise > div:not([class]) {
	position: relative;
	z-index: 1;
}

.parallax-bg {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-attachment: fixed; /* fallback для старых браузеров */
	background-position: center top;
}

.parallax-bg__inner {
  	position: absolute;
  	left: 0;
  	right: 0;
  	/* высота и top будут задаваться через JS с запасом (oversize) */
  	background-size: cover;
  	background-position: center center;
  	background-repeat: no-repeat;
  	will-change: transform;
  	transform: translate3d(0, 0, 0);
  	z-index: 1;
}

.parallax-content {
	position: relative;
	z-index: 2;
}

/* ------------------------------------------------------------------- 
 * # text colors
 * ------------------------------------------------------------------- */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5 {
	color: #fff;
}

.text-opa {
	opacity: 0.75;
}

.text-light {
	color: var(--color-gray-2)!important;
}

.text-muted {
	color: var(--color-text-dark)!important;
}

.text-primary {
	color: var(--color-primary)!important;
}

.text-primary-light {
	color: var(--color-2)!important;
}

.text-secondary {
	color: var(--color-btn-secondary-hover)!important;
}

.text-gold {
	color: var(--color-4-darker)!important;
}

.text-pink {
	color: var(--color-5)!important;
}

.text-telegram {
	color: #24A1DE !important;
}

.text-whatsapp {
	color: #2cb760 !important;
}

.b-rad-1 {
	border-radius: var(--border-radius-sm) !important;
}

.b-rad-2 {
	border-radius: var(--border-radius-md) !important;
}

.b-rad-3 {
	border-radius: var(--border-radius-lg) !important;
}

.b-rad-4 {
	border-radius: var(--border-radius-xl) !important;
}

.b-rad-circle {
	border-radius: 50% !important;
}

.bg-image.b-rad-circle {
	aspect-ratio: 1 / 1;
}

.border-light {
	border: 2px solid var(--color-gray-3) !important;
}

.border-primary {
	border: 2px solid var(--color-1) !important;
}

.border-primary-light {
	border: 2px solid var(--color-2) !important;
}

.border-secondary {
	border: 2px solid var(--color-btn-secondary-hover) !important;
}

.border-pink {
	border: 2px solid var(--color-5) !important;
}

.border-telegram {
	border: 2px solid #24A1DE !important;
}

.border-whatsapp {
	border: 2px solid #2cb760 !important;
}

.border-bottom,
.border-bottom-light {
	border-bottom: 1px solid var(--color-1-lighter) !important;
}

.border-top,
.border-top-light {
	border-top: 1px solid var(--color-1-lighter) !important;
}

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	display: block;
	font-family: var(--font-2);
	font-weight: 600;
	font-style: normal;
	color: var(--color-text);
	-webkit-font-variant-ligatures: common-ligatures;
	font-variant-ligatures: common-ligatures;
	text-rendering: optimizeLegibility;
	margin-bottom: 1rem;
}

h1, .h1 {
	font-size: 6.4rem;
	font-size: clamp(4.4rem, 3.8rem + 1.67vw, 7rem);
	line-height: 0.9;
	letter-spacing: -0.1vw;
}

h2, .h2 {
	font-size: 4.8rem;
	font-size: clamp(3.2rem, 2.83rem + 1.03vw, 4.8rem);
	line-height: 1.1;
}

h3, .h3 {
	font-size: 3.2rem;
	font-size: clamp(2.4rem, 2.03rem + 1.03vw, 4rem);
	line-height: 1.2;
}

h4, .h4 {
	font-size: 2.7rem;
	font-size: clamp(2.7rem, 2.58rem + 0.32vw, 3.2rem);
	line-height: 1.25;
}

h5, .h5 {
	font-size: 2.4rem;
	font-size: clamp(2.4rem, 2.33rem + 0.19vw, 2.7rem);
	line-height: 1.3;
}

h6, .h6 {
	font-size: 1.8rem;
	font-size: clamp(1.8rem, 1.73rem + 0.19vw, 2.1rem);
	font-weight: 500;
	line-height: 1.3;
}

.display-1 {
	font-size: 7.2rem;
	font-size: clamp(4.4rem, 3.8rem + 1.67vw, 7rem);
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: -0.1vw;
}

.display-2 {
	font-size: 5.6rem;
	font-size: clamp(3.2rem, 2.65rem + 1.54vw, 5.6rem);
	font-weight: 500;
	letter-spacing: -0.05vw;
}

.bg-white .display-2,
.bg-light .display-2 {
	letter-spacing: -0.05vw;
}

.display-3 {
	font-size: 4rem;
	font-size: clamp(2.8rem, 2.52rem + 0.77vw, 4rem);
	font-weight: 500;
}

.font-serif {
	font-family: var(--font-3);
	line-height: 1.1;
}

.display-3.font-serif {
	font-size: 4.4rem;
}

@media screen and (max-width:767.98px) {
	h1, .h1 {
		font-size: 3.2rem;
	}
	h2, .h2 {
		font-size: 3.2rem;
	}
	.display-1 {
		font-size: 4rem;
	}
}

.header-top {
	font-family: var(--font-2);
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.header-top.big {
	font-size: 3.6rem;
}

.text-xs {
	font-size: 1.2rem!important;
}

.text-sm {
	font-size: 1.4rem!important;
}

.text-md {
	font-size: 1.6rem!important;
}

.text-lg,
.lead {
	font-size: 1.8rem!important;
	font-weight: 400;
	line-height: 1.5;
}

.lead p:last-of-type {
	margin-bottom: 0;
}

.text-xl {
	font-size: 2.1rem!important;
	font-weight: 400;
	line-height: 1.5;
}

.fw-light {
	font-weight: 300!important;
}

.fw-normal {
	font-weight: 400!important;
}

.fw-medium {
	font-weight: 500!important;
}

.fw-semi {
	font-weight: 600!important;
}

.fw-bold {
	font-weight: 700!important;
}

/* Others */
img {
	max-width: 100%;
}

p img {
	margin: 0;
}

em,
i,
strong,
b {
	font-size: inherit;
	line-height: inherit;
}

em,
i {
	font-style: italic;
}

strong,
b {
	font-weight: 700;
}

small {
	font-size: 0.75em;
	line-height: inherit;
}

blockquote {
	margin: 4rem 0;
	padding: 4rem 4rem;
	border-left: 4px solid black;
	position: relative;
}

@media screen and (max-width:600px) {
	blockquote {
		padding: 3.2rem 3.2rem;
	}

}

@media screen and (max-width:400px) {
	blockquote {
		padding: 2.8rem 2.8rem;
	}

}

blockquote p {
	font-weight: 400;
	padding: 0;
	font-size: 2.8rem;
	line-height: 1.857;
	color: #000000;
}

@media screen and (max-width:1200px) {
	blockquote p {
		font-size: 2.6rem;
	}

}

@media screen and (max-width:600px) {
	blockquote p {
		font-size: 2.2rem;
	}

}

blockquote cite {
	display: block;
	font-family: var(--font-2);
	font-size: 1.5rem;
	font-style: normal;
	line-height: 1.333;
}

blockquote cite:before {
	content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
	color: #7e7e7e;
	border: none;
}

abbr {
	font-family: "Roboto", serif;
	font-weight: 700;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .05rem;
	color: #7e7e7e;
}

var,
kbd,
samp,
code,
pre {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
	padding: 2.4rem 3.2rem 3.2rem;
	background: #efefef;
	overflow-x: auto;
}

code {
	font-size: 1.4rem;
	margin: 0 .2rem;
	padding: .4rem .8rem;
	white-space: nowrap;
	background: #efefef;
	border: 1px solid #d3d3d3;
	color: #000000;
	border-radius: 3px;
}

pre > code {
	display: block;
	white-space: pre;
	line-height: 2;
	padding: 0;
	margin: 0;
}

pre.prettyprint > code {
	border: none;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
	text-decoration: none;
}

mark {
	background: #fff099;
	color: #000000;
}

hr {
	border: solid #e0e0e0;
	border-width: 1px 0 0;
	clear: both;
	margin: 8rem 0 9.6rem;
	height: 0;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
	list-style: decimal;
}

ul {
	list-style: none;
}

li {
	list-style: none;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin: 0;
}

ul.list-unstyled li {
	margin-bottom: 0.8rem;
}

ul.list-disc {
	padding-left: 0;
	margin-bottom: 2.4rem;
}

ul.list-disc li {
	display: list-item;
	list-style: none;
	padding: 0 0 1rem 2.4rem;
	position: relative;
}

ul.list-disc li:last-child {
	padding-bottom: 0;
}

ul.list-disc li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	position: absolute;
	left: 0;
	top: 7px;
	vertical-align: middle;
}

dt {
	margin: 0;
	color: var(--color-primary);
}

dd {
	margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
	border-width: 0;
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 1.5rem 3.2rem;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

th {
	color: #000000;
	font-family: var(--font-2);
	font-weight: 700;
}

th:first-child,
td:first-child {
	padding-left: 0;
}

th:last-child,
td:last-child {
	padding-right: 0;
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
	border: none;
}

.form-control {
	display: block;
	padding: 1.2rem 2rem;
	outline: none!important;
	box-shadow: none!important;
	font-size: 1.8rem;
	line-height: 1.5;
	max-width: 100%;
	background: #fff;
	border: 2px solid var(--color-gray-3);
	border-radius: 1rem;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-control:hover,
.form-control:focus,
.form-check-input:hover,
.form-check-input:focus {
	border-color: var(--color-2);
}

.form-control:active,
.form-check-input:active {
	border-color: transparent;
}

.form-check {
	padding-left: 2em;
}

.form-check .form-check-input {
		float: left;
		margin-left: -2em;
}

.form-check-input {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: .8rem!important;
	border: 2px solid var(--color-gray-3);
	box-shadow: none!important;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.form-check-input:checked {
		background-color: var(--color-1);
		border-color: var(--color-1);
}

.form-check-label {
	padding-top: .25rem;
}

.ss-custom-select {
	position: relative;
}

.ss-custom-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	margin: 0;
	line-height: 3rem;
	vertical-align: middle;
}

.ss-custom-select select option {
	padding-left: 2rem;
	padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
	display: none;
}

.ss-custom-select::after {
	border-bottom: 2px solid #000000;
	border-right: 2px solid #000000;
	content: '';
	display: block;
	height: 8px;
	width: 8px;
	margin-top: -7px;
	pointer-events: none;
	position: absolute;
	right: 2.4rem;
	top: 50%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	-webkit-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

textarea {
	min-height: 8rem;
}

label,
legend {
	font-size: 1.6rem;
	margin-bottom: .8rem;
	display: block;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label > .label-text {
	display: inline-block;
	margin-left: 1rem;
	font-family: var(--font-2);
	line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
	margin: 0;
	position: relative;
	top: .2rem;
}

/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {

	/* WebKit, Blink, Edge */
	color: #8c8c8c;
}

:-ms-input-placeholder {

	/* Internet Explorer 10-11 */
	color: #8c8c8c;
}

::-ms-input-placeholder {

	/* Microsoft Edge */
	color: #8c8c8c;
}

::placeholder {

	/* Most modern browsers support this now. */
	color: #8c8c8c;
}

.placeholder {
	color: #8c8c8c !important;
}

/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--color-primary);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}


/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 1rem 4rem;
	height: 56px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	font-family: var(--font-2);
	font-weight: 500;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .2rem;
	color: var(--color-text);
	background-color: var(--color-gray-1);
	border: 0.1rem solid transparent;
	border-radius: 4rem;
	transition: all .3s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.btn:hover,
.btn:focus,
.btn:active {
	background-color: var(--color-gray-2);
	border-color: transparent;
	color: var(--color-text);
	outline: 0!important;
	box-shadow: none!important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* button colors
 * ------------------------------------------------- */
.btn-primary {
	background: var(--color-btn-primary);
	color: var(--color-btn-primary-text);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--color-btn-primary-hover);
	color: var(--color-btn-primary-hover-text);
}

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

.btn-secondary:hover,
.btn-secondary:focus {
	background: var(--color-btn-secondary-hover);
	color: var(--color-btn-secondary-hover-text);
}

.btn-outline-primary {
	background: transparent;
	border-width: 2px;
	border-color: var(--color-2);
	color: var(--color-btn-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	background: var(--color-btn-primary-hover);
	border-color: var(--color-btn-primary-hover);
	color: var(--color-btn-primary-hover-text);
}

.btn-primary-light {
	background: var(--color-1-lighter);
	color: var(--color-1);
}

.btn-primary-light:hover,
.btn-primary-light:focus {
	background: var(--color-1-light);
	color: var(--color-1);
}

.btn-secondary-light {
	background: var(--color-2-lighter);
	color: var(--color-2);
}

.btn-secondary-light:hover,
.btn-secondary-light:focus {
	background: var(--color-2-light);
	color: var(--color-2);
}

.btn-outlined-light {
	background: transparent;
	border: 2px solid var(--color-2-lighter);
	color: var(--color-2);
}

.btn-outlined-light:hover,
.btn-outlined-light:focus {
	background: var(--color-2-light);
	color: var(--color-2);
}

.btn-outlined-white {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .85);
	color: var(--color-white);
}

.btn-outlined-white:hover,
.btn-outlined-white:focus {
	background: var(--color-white);
	color: var(--color-text);
}

.btn-black-light {
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
}

.btn-black-light:hover,
.btn-black-light:focus {
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
}

.btn-dark-opa {
	background: rgb(35, 44, 50, 0.5);
	background-blend-mode: multiply;
	color: var(--color-white);
}

.btn-dark-opa:hover,
.btn-dark-opa:focus {
	background: rgb(35, 44, 50, 0.8);
	color: var(--color-white);
}

.btn-light {
	background: var(--color-gray-2);
	color: var(--color-text);
}

.btn-light:hover,
.btn-light:focus {
	background: var(--color-gray-3);
	color: var(--color-text);
}

.btn-green {
	background: var(--color-2);
	color: var(--color-white);
}

.btn-green:hover,
.btn-green:focus {
	background: var(--color-2-dark);
	color: var(--color-white);
}

/* button sizes
 * ------------------------------------------------- */
.btn-sm {
	height: 40px;
	padding: 1rem 2rem;
}

.btn-sm-narrow {
	height: 40px;
	padding: 1rem;
}

.btn-sm-circle {
	height: 40px;
	width: 40px;
	padding: 0;
}

.btn-sm-circle .btn-icon {
	margin: 0!important;
	width: 2rem;
	height: 2rem;
}

.btn-circle {
	position: relative;
	height: 5.6rem;
	width: 5.6rem;
	padding: 0;
}

.btn-circle:before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7.6rem;
	height: 7.6rem;
	border-radius: 50%;
	background-color: var(--color-1);
	opacity: .08;
}

.btn-circle .btn-icon {
	position: relative;
	z-index: 1;
	margin: 0!important;
}

/* button icons
 * ------------------------------------------------- */
.btn-icon-end {
	position: relative;
	margin-right: 56px;
}

.btn-icon {
	position: absolute;
	top: 0;
	left: 100%;
	display: inline-block;
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid var(--color-gray-1);
	font-size: 2.4rem;
	transition: all 0.3s;
}

.btn-icon-end.btn-sm {
	margin-right: 40px;
}

.btn-sm .btn-icon {
	width: 40px;
	height: 40px;
	font-size: 2rem;
}

.btn-primary .btn-icon {
	border-color: var(--color-btn-primary);
}

.btn-primary:hover .btn-icon {
	border-color: var(--color-btn-primary-hover);
	background-color: var(--color-btn-primary-hover);
}

.btn-green .btn-icon {
	border-color: var(--color-2);
}

.btn-green:hover .btn-icon {
	border-color: var(--color-2-dark);
	background-color: var(--color-2-dark);
}

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

.btn-secondary:hover .btn-icon {
	border-color: var(--color-btn-secondary-hover);
	background-color: var(--color-btn-secondary-hover);
}

.btn-secondary-light .btn-icon {
	border-color: var(--color-2-lighter);
}

.btn-secondary-light:hover .btn-icon {
	border-color: transparent;
	background-color: var(--color-2-light);
}

.btn-circle-big {
	position: relative;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background-color: var(--color-2);
	background-image: url(../images/svg/round-btn-title-02.svg);
	background-position: 50% 50%;
	display: block;
	transition: all 0.3s;
}

.btn-circle-big:before {
	content: '';
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	background-color: var(--color-2);
	opacity: .12;
	transition: all 0.4s;
}

.btn-circle-big:after {
	content: '';
	position: absolute;
	z-index: 1;
	left: 100%;
	top: 50%;
	transform: translate(-40%, -50%) rotate(-90deg);
	width: 2.2rem;
	height: 5.4rem;
	background-image: url(../images/icons/pic-arrow-down-l.svg);
	background-repeat: no-repeat;
	transition: all 0.3s;
}

.btn-circle-big:hover {	
	background-color: var(--color-2);
}

.btn-circle-big:hover:before {	
	transform: translate(-50%, -50%) scale(3);
	opacity: 0;
}

.btn-circle-big:hover:after {
	transform: translate(-20%, -50%) rotate(-90deg);
}


/* ===================================================================
 * # Cards
 * ------------------------------------------------------------------- */
.card {
	border: 0;
	word-wrap: normal;
	background-color: transparent;
	transition: all 0.3s;
}

.card-shadow {
	box-shadow: 0px 15px 30px -15px var(--color-shadow);
}

.card-shadow:hover {
	box-shadow: 0px 30px 40px -20px var(--color-shadow-hover);
}

.card-shadow-gold {
	box-shadow: 0px 15px 30px -15px var(--color-4-lighter);
}

.card-shadow-gold:hover {
	box-shadow: 0px 30px 40px -20px var(--color-4-light);
}

.card-hover:hover {
	transform: translateY(-.5rem);
}

.card-hover-shadow:hover {
	box-shadow: 0px 30px 40px -20px var(--color-shadow-hover);
}

.card-hover-shadow-black:hover {
	box-shadow: 0px 30px 40px -20px var(--color-shadow-black);
}

.card-hover-border {
	border: 2px solid transparent;
}

.card-hover-border:hover {
	border-color: var(--color-2) !important;
}

.card-icon-left {
	position: relative;
	margin-left: 6.4rem;
}

.card-icon-left .icon {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	width: 12.8rem;
	height: 12.8rem;
}

.card-icon-right {
	position: relative;
	margin-right: 6.4rem;
}

.card-icon-right .icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
	width: 12.8rem;
	height: 12.8rem;
}

.card-img-right {
	position: relative;
	overflow: hidden;
	padding-right: 160px !important;
	min-height: 160px;
}

.card-img-right .img-right {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 100%;
	transform: translate(calc(-100% + 20px), -50%);
	width: 100%;
	transition: transform 0.3s;
	transform-origin: center right;
	pointer-events: none;
}

.card-img-right:hover .img-right {
	transform: translate(calc(-100% + 12px), -50%) scale(1.05);
	transform-origin: center right;
}

@media (max-width: 768px) {
	.card-img-right-mob {
		padding-right: 3rem !important;
		padding-bottom: 240px !important;
	}
	.card-img-right .img-right {
		top: unset;
		bottom: -10%;
		left: unset;
		right: 6%;
		width: 190%;
		max-width: unset;
		transform: none;
		transform-origin: center bottom;
		pointer-events: none;
	}
}

.card-img-bottom {
	position: relative;
	overflow: hidden;
	padding-bottom: 160px !important;
	min-height: 160px;
}

.card-img-bottom .img-bottom {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 100%;
	transform: translate(calc(-100% + 20px), 10px);
	max-width: 360px;
	width: 100%;
	transition: transform 0.3s;
	transform-origin: bottom right;
}

.card-img-bottom:hover .img-bottom {
	transform: translate(calc(-100% + 12px), 2px) scale(1.05);
	transform-origin: bottom right;
}

.card-icon-left .icon img,
.card-icon-right .icon img {
	width: 100%;
	object-fit: contain;
}

.z-1 {
	z-index: 1;
}

.z-2 {
	z-index: 2;
}

.z-3 {
	z-index: 3;
}

.z-4 {
	z-index: 4;
}

.pointer-events-none {
	pointer-events: none;
}

.pointer-events-auto {
	pointer-events: auto;
}

/* ===================================================================
 * # Paddings and Margins
 * ------------------------------------------------------------------- */
.p-6,
.p-4rem {
	padding: 4rem;
}

.p-2rem {
	padding: 2rem;
}

.mt-2rem {
	margin-top: 2rem;
}

.mb-2rem {
	margin-bottom: 2rem;
}

.mt-6,
.mt-4rem {
	margin-top: 4rem;
}

.mb-6,
.mb-4rem {
	margin-bottom: 4rem;
}

.mt-m1 {
	margin-top: -1rem;
}

.ms-m2 {
	margin-left: -3rem;
}

.ms-m4 {
	margin-left: -6rem;
}

@media (max-width: 767.98px) {	
	.p-6,
	.p-4rem {
		padding: 4rem 2rem;
	}
	.ms-m2 {
		margin-left: 0;
	}	
	.ms-m4 {
		margin-left: 0;
	}
}

/* ===================================================================
 * # Container
 * ------------------------------------------------------------------- */
.container-huge {
	max-width: 1440px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.s-header {
	z-index: 997;
	position: relative;
	border-bottom: 1px solid var(--color-1-lighter);
	background-color: transparent;
	padding: 1rem 0;
	transform: translateY(0);
	transition: all 0.5s;
}

.s-header.scrolled {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	transform: translateY(0);
}

.s-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
	/* по-умолчанию скрыт */
	transition: transform 0.4s ease, background-color 0.35s ease;
	z-index: 9999;
}

.s-header.fixed.visible {
	transform: translateY(0);
	background-color: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	border: 0;
	box-shadow: 0 10px 30px -10px var(--color-4-lighter);
}

.s-header.mobile-fixed {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(0) !important;
	background: rgba(255, 255, 255, .95) !important;
	backdrop-filter: blur(10px);
	z-index: 9999;
	border: 0;
	box-shadow: 0 10px 30px var(--color-4-lighter);
}

.s-header_brand img {
	height: 3rem;
}

.s-header_contacts .btn {
	padding: 0.5rem 1rem;
	height: auto;
	margin-left: 4px;
}

.s-header_contacts .btn span {
	margin-top: 1px;
}

.sticked-header-offset {
	margin-top: -81px;
}

section {
	scroll-margin-top: 7rem;
}

@media (max-width: 991.98px) {		
	.s-header {
		padding: 1.5rem 0;
	}
}

@media (max-width: 768px) {		
	.s-header {
		padding: 1.25rem 0;
	}
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar>ul>li {
		white-space: nowrap;
		margin-right: calc(1rem + 1vw);
		padding: 0;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 2rem 0;
		font-family: var(--font-2);
		font-size: 1.4rem;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: .1rem;
		color: var(--color-text);
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

	.navbar a i,
	.navbar a:focus i {
		margin-left: 0.4rem;
	}

/*	.navbar > ul > li > a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 0.2rem;
		bottom: -1px;
		left: 0;
		background-color: var(--color-primary);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navbar a:hover:before,
	.navbar li:hover > a:before,
	.navbar .active:before {
		visibility: visible;
		width: 100%;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: var(--color-gray-3);
	}
*/

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: var(--color-primary-dark);
	}

	.navbar > ul > li > a:before {
		content: "";
		position: absolute;
		z-index: -1;
		width: 60px;
		height: 60px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-radius: 50%;
		background-color: var(--color-4-darker);
		filter: blur(16px);
		opacity: 0;
		transition: all 0.3s ease-in-out;
	}

	.navbar a:hover:before,
	.navbar li:hover > a:before {
		opacity: 0.3;
	}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 0;
		top: calc(100% + 40px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.3s;
		border-radius: var(--border-radius-sm);
	}

	.navbar .dropdown ul li {
		min-width: 200px;
	}

	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 16px;
		text-transform: none;
		font-family: var(--font-1);
		letter-spacing: 0;
		font-weight: 600;
		color: var(--color-text);
		white-space: normal;
	}

	.navbar .dropdown ul a i {
		font-size: 12px;
	}

	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
		color: var(--color-4-darker);
	}

	.navbar .dropdown:hover>ul {
		opacity: 1;
		top: calc(100%);
		visibility: visible;
	}

	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}

	.navbar .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}
}

@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {

	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 6.4rem 0 10px 0;
		margin: 0;
		background: var(--color-dark);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a:not(.btn),
	.navbar a:not(.btn):focus {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 1.25rem 3rem;
		font-family: var(--font-2);
		font-size: 2.1rem;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}

	.navbar a i,
	.navbar a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover > a {
		color: #fff!important;
	}

	.navbar .getstarted,
	.navbar .getstarted:focus {
		background: var(--color-primary);
		padding: 8px 20px;
		border-radius: 4px;
		margin: 15px;
		color: #fff;
	}

	.navbar .getstarted:hover,
	.navbar .getstarted:focus:hover {
		color: #fff;
		background: rgba(0, 131, 116, 0.8);
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 30px;
		transition: all 0.5s ease-in-out;
		background-color: var(--color-shadow-black);
		border-radius: var(--border-radius-sm);
	}

	.navbar .dropdown ul a {
		font-family: var(--font-1);
		font-size: 1.8rem;
		font-weight: 500;
		padding: 0.5rem 2rem;
	}

	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}

	.mobile-nav-show {
		width: 4.8rem;
		height: 4.8rem;
		border-radius: 50%;
		background-color: var(--color-1);
		color: var(--color-white);
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		transition: 0.5s;
		z-index: 9999;
	}

	.mobile-nav-hide {
		position: fixed;
		right: 1.5rem;
		top: 1.25rem;
		width: 4.8rem;
		height: 4.8rem;
		border-radius: 50%;
		background-color: var(--color-1);
		color: var(--color-white);
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		transition: 0.5s;
		z-index: 9999;
	}

	.mobile-nav-show i,
	.mobile-nav-hide i {
		font-size: 2.4rem;
		margin: 0;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}

	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 106, 93, 0.8);
		z-index: 9996;
	}
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.s-hero {
	position: relative;
	padding: 150px 0 100px;
	height: 80vh;
	min-height: 850px;
	display: flex;
	align-items: flex-end;
}
.s-hero-inner {
	padding: 130px 0 70px;
	height: auto;
	min-height: 600px;
}

.s-hero-noise {
	background-image: url(../images/bg/bg-noise-1.webp);
	background-position: 0 0;
	background-size: 100px;
}

.s-hero_bg {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.s-hero_bg.bg-grad-01 {
	background-image: url(../images/bg/section-bg-05.jpg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 1920px auto;
}

.s-hero_bg.bg-grad-02 {
	background-image: url(../images/bg/section-bg-04.jpg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 1920px auto;
}

.s-hero_bg.mod-1 {
	-webkit-animation: BGhero 8s linear infinite;
	-moz-animation: BGhero 8s linear infinite;
	animation: BGhero 8s linear infinite;
	opacity: 0;
}

.s-hero_bg.mod-2 {
	-webkit-animation: BGhero 16s linear infinite;
	-moz-animation: BGhero 16s linear infinite;
	animation: BGhero 16s linear infinite;
	opacity: 0;
}

@-webkit-keyframes BGhero {
	0% {
		opacity: 0;
	}

	33% {
		opacity: 1;
	}

	66% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Hero slider
--------------------------------------------------------------*/
.hero-slider {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.hero-slider .swiper {
	margin: 0;
	padding-left: 120px;
	width: calc(48% + 120px);
	height: 100%;
}

.hero-slider .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 90px calc(20px + 2vw);
	display: flex;
	align-items: flex-end;
}

.hero-slider .swiper-slide:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.hero-slider .swiper-slide .slide-img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	overflow: hidden;
}

.hero-slider .swiper-slide .slide-img img {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	height: 100%;
	object-fit: cover;
	transform: translate(-50%, -50%);
}

.hero-slider .swiper-slide .slide-content {
	position: relative;
	z-index: 5;
	max-width: 650px;
}

.s-hero-features {
	max-width: 600px;
}

.slide-features > div {
	position: relative;
	margin-top: 20px;
	padding-right: 22px;
	flex-shrink: 1;
}

.slide-features > div i {
	font-size: 2.1rem;
	color: var(--color-4-dark);
	padding-right: 20px;
}

@media (max-width: 768px) {
	.hero-slider .swiper-slide .slide-content h2 {
		font-size: 2.7rem;
	}
	.slide-features > div {
		display: flex;
		align-items: center;
	}
}

.hero-slider .swiper-slide:not(.swiper-slide-active) .slider-badge {
	opacity: 0;
}

.hero-slider .swiper-slide .slider-badge {
	position: absolute;
	z-index: 10;
	left: 0;
	top: 50%;
	transform: translate(-50%, -90%);
	width: 180px;
	height: 180px;
	border-radius: 50%;
	box-shadow: 0 1rem 3rem var(--color-shadow-black);
	color: #fff;
	display: flex;
	transition: all 0.3s;
}

.hero-slider .swiper-slide .slider-badge:before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background-color: var(--color-gray-1);
	opacity: 0;
	transition: all 0.4s;
}

.hero-slider .swiper-slide .slider-badge:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 1px solid var(--color-4-dark);
	transition: all 0.4s;
}

.hero-slider .swiper-slide .slider-badge:hover:before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 0.1;
}

.hero-slider .swiper-slide .slider-badge:hover:after {
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
}

.hero-slider .swiper-slide .badge-inner {
	position: relative;
	z-index: 1;
	max-width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 50%;
	background-color: var(--color-1);
	transition: all 0.3s;
}

.hero-slider .swiper-slide .slider-badge:hover .badge-inner {
	background-color: var(--color-1-dark);
}

.hero-slider .swiper-slide .badge-title {
	position: relative;
	font-family: var(--font-2);
	font-size: 1.3rem;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.hero-slider .swiper-slide .slider-badge:hover .badge-title {
	color: var(--color-4);
}

.hero-slider .swiper-slide .badge-arrow-down {
	position: relative;
	font-size: 6rem;
	line-height: 1;
	-webkit-text-stroke: 1px var(--color-white);
	color: transparent;
	transition: all 0.3s;
}

.hero-slider .swiper-slide .slider-badge:hover .badge-arrow-down {
	-webkit-text-stroke: 1px var(--color-4);
	transform: translateY(5px);
}

.hero-slider .swiper-slide .badge-arrow:before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--color-4-darker);
	filter: blur(16px);
	transition: all 0.3s;
	opacity: 0;
}

.hero-slider .swiper-slide .slider-badge:hover .badge-arrow:before {
	opacity: 0.5;
}

/* Pagination */ 

.hero-slider .swiper-pagination {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) !important;
	left: unset !important;
	right: 20px;
	width: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hero-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-secondary);
	opacity: .5;
	margin: 6px 0 !important;
	transition: all .3s;
	left: 0 !important;
}

.hero-slider .swiper-pagination-bullet-active {
	transform: scale(1.5);
	opacity: 1;
}

@media (max-width: 767.98px) {
	.hero-slider .front-badge {
		display: none;
	}
}

@media screen and (min-width:992px) {
	.s-hero .header-top {
		font-size: 3rem;
	}
	.s-hero .lead {
		font-size: 2.1rem;
		max-width: 560px;
	}
}

@media screen and (max-width:991.98px) {
	.s-hero {
		height: auto;
		margin-top: 0;
		padding: 100px 0 0;
		flex-direction: column;
	}

	.s-hero-inner {
		padding: 100px 0 60px;
	}

	.s-hero .lead {
		max-width: 520px;
		font-size: 1.6rem !important;
	}

	.hero-slider {
		position: relative;
		top: unset;
		left: unset;
		height: auto;
		margin-top: 40px;
	}

	.hero-slider .swiper {
		padding-left: 0;
		padding-top: 100px;
		width: 100%;
	}

	.hero-slider .swiper-slide {
		padding: 160px 20px 80px;
		height: auto;
		height: 560px;
	}

	.hero-slider .swiper-slide:after {
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
	}

	.hero-slider .swiper-slide .slider-badge {
		left: 50%;
		top: 0;
		transform: translate(-50%, -50%);
	}

	.hero-slider .swiper-pagination {
		bottom: 30px;
		top: auto;
		transform: translate(-50%, 0);
		left: 50%;
		right: unset;
		flex-direction: row;
	}
	.hero-slider .swiper-pagination-bullet {
		margin: 0 8px 0 !important;
	}
}



/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.s-section {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.s-section-sm {
	padding: 6rem 0;
}

.s-section-margin {
	margin: 8rem 0;
}

.s-section-margin:last-child {
	margin-bottom: 0;
}

@media (max-width: 991.98px) {		
	.s-section,
	.s-section-sm {
		padding: 4rem 0;
	}
}

.s-section_bg {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.s-section_bg.bg-01 {
	background-image: url(../images/bg/bg-decor-01.png);
	background-repeat: no-repeat;
	background-position: 80% 60%;
	background-size: 80%;
}

.s-section-title {
	display: flex;
	align-items: center;
}

.s-section-title .icon {
	flex: 0 0 auto;
	margin-right: 2rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.s-footer {
	max-width: 100%;
	overflow: hidden;
	padding: 5.6rem 0;
	border-bottom: 1px solid var(--color-secondary);
}

.s-footer-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-left: 0;
}

.s-footer-links li {
	position: relative;
	margin-right: 2rem;
	margin-bottom: 0.8rem;
	padding-right: 2rem;
}

.s-footer-links li:not(:last-child):after {
	content: '\f35e';
	font-family: var(--font-icon) !important;
	font-size: 1.2rem;
	color: var(--color-secondary);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
}

.s-footer-links li a {
	font-weight: 600;
}

.s-footer-widgets {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.4;
}

.s-footer-widgets a:hover {
	transform: translateY(-0.5rem);
}

.s-footer-bottom {
	max-width: 100%;
	overflow: hidden;
	padding: 3.2rem 0;
	color: var(--color-text-light);
}

.s-footer-bottom-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-left: 0;
}

.s-footer-bottom-links li {
	position: relative;
	margin-right: 2rem;
	margin-bottom: 0.8rem;
	padding-right: 2rem;
}

.s-footer-bottom-links li:not(:last-child):after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	height: 2rem;
	width: 1px;
	background-color: var(--color-4-darker);
	transform: translate(0, -50%);
}

@media (max-width: 767.98px) {		
	.s-footer-widgets > div {
		margin: 0.8rem 0;
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--color-btn-secondary-hover);
	width: 48px;
	height: 48px;
	border-radius: 50px;
	box-shadow: 0 1rem 2rem -0.5rem var(--color-shadow-black);
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 2.4rem;
	color: var(--color-text);
	line-height: 0;
}

.scroll-top:hover {
	background-color: var(--color-4-dark);
	color: var(--color-text);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Thumbs
--------------------------------------------------------------*/
.img-thumb-basic {
	position: relative;
	width: 12.8rem;
	height: 12.8rem;
	border-radius: 50%;
}

.img-thumb-basic img {
	position: relative;
	z-index: 1;
	border-radius: 50%;
	/*filter: grayscale(1);*/
	transition: all .3s;
}

.img-thumb-basic:hover img {
	filter: grayscale(0);
}

.img-thumb-big {
	position: relative;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
}

.img-thumb-big img {
	position: relative;
	z-index: 1;
	border-radius: 50%;
}

.img-thumb-decor::before,
.img-thumb-decor-1::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 19.2rem;
	height: 19.2rem;
	background: url(../images/decor/thumb-decor-01.png) 50% 50% no-repeat;
	background-size: 100%;
}

.img-thumb-decor-2::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 22.4rem;
	height: 22.4rem;
	background: url(../images/decor/thumb-decor-02.png) 50% 50% no-repeat;
	background-size: 100%;
}

.img-thumb-decor-3::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20rem;
	height: 20rem;
	background: url(../images/decor/thumb-decor-03.png) 50% 50% no-repeat;
	background-size: 100%;
}

.img-thumb-decor-big::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30.4rem;
	height: 30.4rem;
	background: url(../images/decor/thumb-decor-04.png) 50% 50% no-repeat;
	background-size: 100%;
}


/*--------------------------------------------------------------
# Addiction Widgets
--------------------------------------------------------------*/
.add-widgets-item {
	position: relative;
	overflow: hidden;
	padding: 2.4rem 3.2rem;
	border: 1px solid rgba(219, 11, 122, .5);	
}

.add-widgets-item .h4 {
	line-height: 1.1!important;
	transition: color .3s;
}

.add-widgets-item:before {
	content: '';
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 0;
	margin-top: -8.5rem;
	margin-left: -6rem;
	width: 17rem;
	height: 17rem;
	border-radius: 50%;
	background-color: var(--color-1);
	opacity: .03;
	transition: all .3s;
}

.add-widgets-item > div {
	z-index: 1;
}

.add-widgets-green {
	border-color: rgba(121, 170, 100, .5);	
}

.add-widgets-green .icon-circle {
	box-shadow: 0 1rem 3rem rgba(121, 170, 100, .15);
}

.add-widgets-green:before {
	opacity: .07;
	background-color: var(--color-2);	
}

.add-widgets-black {
	border-color: rgba(30, 37, 50, .5);	
}

.add-widgets-black .icon-circle {
	box-shadow: 0 1rem 3rem rgba(30, 37, 50, .15);
}

.add-widgets-black:before {
	background-color: var(--color-text);	
}

.add-widgets-item:hover {
	transform: translateY(-.5rem);
}

.add-widgets-item:hover:before {
	transform: scale(4);
}

@media (max-width: 992.98px) {		
	.add-widgets-item {
		margin-bottom: 1.6rem;
	}
}

.icon-circle {
	position: relative;
	flex: 0 0 auto;
	margin-right: 2rem;
	width: 6.4rem;
	height: 6.4rem;
	background-color: transparent;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 1rem 3rem var(--color-shadow);
	transition: all .3s;
}

.icon-circle-big {
	width: 8rem;
	height: 8rem;
}

.icon-circle img {
	width: 3.2rem;
	height: 3.2rem;
}

.icon-circle i {
	font-size: 3.2rem;
}

.icon-circle-outline:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 1.8rem);
	height: calc(100% + 1.8rem);
	border-radius: 50%;
	border: 1px solid var(--color-4-dark);
	opacity: .5;
}

.icon-circle-border {
	box-shadow: none;
}

.add-widgets-item:hover .icon-circle {
	background-color: #fff;
}


/* Active tab */ 

.add-widgets-item.tab,
.tab .add-widgets-item {
	overflow: visible;
}

.add-widgets-item.tab:before,
.tab .add-widgets-item:before {
	display: none;
}

.add-widgets-item-decor {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	border-radius: 2rem;
}

.add-widgets-item-decor:before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 0;
    margin-top: -8.5rem;
    margin-left: -6rem;
    width: 17rem;
    height: 17rem;
    border-radius: 50%;
    background-color: var(--color-1);
    opacity: .03;
    transition: all .3s;
}

.add-widgets-green .add-widgets-item-decor:before {
    opacity: .07;
    background-color: var(--color-2);
}

.add-widgets-black .add-widgets-item-decor:before {
    background-color: var(--color-text);
}


.add-widgets-item.active,
.active .add-widgets-item {
	border-color: var(--color-1);
	background-color: var(--color-1);
	cursor: default;
	transform: none;
}

.add-widgets-item:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border: 0 solid transparent;
	border-left-width: 2rem;
	border-right-width: 2rem;
	border-top: 2rem solid var(--color-1);
	transform: translateX(-50%);
	transition: all .3s;
	opacity: 0;
}

.add-widgets-item.active:after,
.active .add-widgets-item:after {
	opacity: 1;
}

.add-widgets-green:after {
    border-top-color: var(--color-2);
}

.add-widgets-black:after {
    border-top-color: var(--color-dark);
}

.add-widgets-green.active,
.active .add-widgets-green {
	border-color: var(--color-2);	
	background-color: var(--color-2);
}

.add-widgets-black.active,
.active .add-widgets-black {
	border-color: var(--color-dark);	
	background-color: var(--color-dark);
}

.add-widgets-item.active .add-widgets-item-decor:before,
.active .add-widgets-item .add-widgets-item-decor:before {
	background-color: var(--color-black);
	opacity: .07;
}

.add-widgets-item.active:hover:before,
.active .add-widgets-item:hover:before {
	transform: none;
}

.add-widgets-item.active .icon-circle,
.active .add-widgets-item .icon-circle {
	background-color: #fff;
}

.add-widgets-item.active .h4,
.active .add-widgets-item .h4 {
	color: #fff;
}



/*--------------------------------------------------------------
# Basic Content
--------------------------------------------------------------*/
.img-wrapper {
	overflow: hidden;
}

.img-wrapper img {
	width: 100%;
	object-fit: cover;
}

.basic-content {
	font-size: 1.6rem;
}

.basic-content h2 {
	font-size: 4rem;
}

.basic-content h3 {
	font-size: 3.2rem;
}

.basic-content h4 {
	font-size: 2.4rem;
}

.basic-content h1,
.basic-content h2,
.basic-content h3,
.basic-content .h1,
.basic-content .h2,
.basic-content .h3 {
	margin-bottom: 2rem;
}

.basic-content h4,
.basic-content h5,
.basic-content h6,
.basic-content .h4,
.basic-content .h5,
.basic-content .h6 {
	margin-bottom: 1rem;
}

.basic-content h1 + h2,
.basic-content h2 + h3,
.basic-content h3 + h4,
.basic-content h4 + h5,
.basic-content table + h2,
.basic-content table + h3,
.basic-content table + h4,
.basic-content table + h5,
.basic-content p + h2,
.basic-content p + h3,
.basic-content p + h4,
.basic-content p + h5,
.basic-content div + h2,
.basic-content div + h3,
.basic-content div + h4,
.basic-content div + h5,
.basic-content ul + h2,
.basic-content ul + h3,
.basic-content ul + h4,
.basic-content ul + h5 {
	margin-top: 4rem;
}

.basic-content p {
	margin-bottom: 1.5rem;
}

.text-block p {
	margin-bottom: .75rem;
}

.basic-content ul,
.basic-content li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.basic-content li {
	position: relative;
	padding-left: 2.8rem;
	margin-bottom: 1.5rem;
}

.basic-content li:before {
	content: "\f35e";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	color: var(--color-btn-secondary-hover);
	font-family: var(--font-icon);
	font-size: 1.5rem;
}

.list-check li {
	position: relative;
	padding-left: 2.8rem;
	margin-bottom: 1.5rem;
}

.list-check li:before {
	content: "\EB81";
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	color: var(--color-2);
	font-family: var(--font-icon);
	font-size: 2.1rem;
}

.list-error li {
	position: relative;
	padding-left: 2.8rem;
	margin-bottom: 1.5rem;
}

.list-error li:before {
	content: "\EB97";
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	color: var(--color-3);
	font-family: var(--font-icon);
	font-size: 2.1rem;
}

.article-footer {
	margin-top: 4rem;
	padding: 4rem 0;
	border-top: 1px solid var(--color-gray-2);
	font-size: 1.8rem;
}

.article-footer p {
	margin: 0;
}

@media (max-width: 767.98px) {		
	.article-footer > div {
		margin-bottom: 2.4rem;
	}
}

@media (min-width: 768px) {	
	.article-footer > div:nth-child(2) {
		position: relative;
	}

	.article-footer > div:nth-child(2):after,
	.article-footer > div:nth-child(2):before {
		content: '';
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 3rem;
		background-color: var(--color-1);
	}

	.article-footer > div:nth-child(2):before {
		left: 0;
	}

	.article-footer > div:nth-child(2):after {
		right: 0;
	}
}

.page-header-image-single {
	height: 100%;
	min-height: 24rem;
}

.page-header-images {
	height: calc(100% + 12rem);
}

.page-header-images .card {
	min-height: 240px;
}

.page-header-images .page-header-image-sm {
	height: 320px;
}

.page-header-images .page-header-image-lg {
	height: 100%;
}

@media (max-width: 767.98px) {	
	.page-header-images {
		height: auto;
	}

	.page-header-images > div {
		margin-top: 2rem;
	}

	.page-header-images .page-header-image-sm {
		height: auto;
	}
}


/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
[data-tab-target] {
	transition: all .3s;
	cursor: pointer;
}

[data-tab-content] {
	opacity: 0;
	visibility: hidden;
	height: 0;
}

.active[data-tab-content] {
	opacity: 1;
	visibility: visible;
	height: auto;
}

@-webkit-keyframes panelIn {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2rem);
		transform: translateY(2rem)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}
@keyframes panelIn {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2rem);
		transform: translateY(2rem)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

.tabs-basic .add-widgets-item {
	transition: all .3s;
    cursor: pointer;
}

.tabs-content > div {
	display: none;
}

.tabs-content > div.active {
	display: block;
}

.tab-content {
	position: relative;
	margin-top: 3.5rem;
	padding-bottom: 1rem;
}

.s-tabs .tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.s-tabs .tabs .tab {
	position: relative;
	cursor: pointer;
	padding: 1.5rem 3rem;
	border-radius: var(--border-radius-xl);
	background: var(--color-gray-1);;
	font-family: var(--font-2);
	font-size: 2.1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .2rem;
	color: var(--color-text-light);
	white-space: nowrap;
	transition: all 0.3s ease-out;
}

.s-tabs .tabs .tab:hover {
	color: var(--color-text);
	background-color: var(--color-gray-2);
}

.s-tabs .tabs .tab.active {
	background-color: var(--color-bg-light-green-2);
	color: var(--color-1);
	cursor: default;
}

.s-tabs .tabs .tab:not(:last-child) {
	margin-right: 16rem;
}

.s-tabs .tabs .tab:not(:last-child):after {
	content: '';
	position: absolute;
	right: -12rem;
	top: 50%;
	width: 8rem;
	height: 2px;
	background-color: var(--color-4-dark);
	opacity: 0.75;
}

.tab-content .active {
	display: block;
	-webkit-animation: panelIn .5s ease both;
	animation: panelIn .5s ease both
}

.s-list-item {
	padding: 4.8rem 0;
	border-top: 1px solid var(--color-gray-2);
}

.s-list-item:last-child {
	border-bottom: 1px solid var(--color-gray-2);
}

.s-list-item .img-thumb-decor::before {
	background-image: url(../images/decor/thumb-decor-02.png);
	width: 22.4rem;
	height: 22.4rem;
}

.s-list-item:nth-child(2n) .img-thumb-decor::before {
	background-image: url(../images/decor/thumb-decor-03.png);
	width: 20rem;
	height: 20rem;
}


@media (max-width: 767.98px) {	
	.s-tabs .tabs {
		margin: 3rem 1.5rem 0;
		flex-wrap: wrap;
	}

	.s-tabs .tabs .tab {
		font-size: 1.4rem;
	}

	.s-tabs .tabs .tab:not(:last-child) {
		margin: 0 0 1rem;
	}

	.s-tabs .tabs .tab:not(:last-child):after {
		display: none;
	}

	.tab-content {
		margin-top: 2rem;
	}

	.s-list-item {
		padding: 4rem 0;
	}

	.s-list-item > div:not(:last-child),
	.promo-list-item > div:not(:last-child) {
		margin-bottom: 3.2rem;
	}

	.s-list-item .img-thumb-decor::before {
		background-image: url(../images/decor/thumb-decor-03.png)!important;
		width: 20rem!important;
		height: 20rem!important;
	}
}


/*--------------------------------------------------------------
# Promo and News
--------------------------------------------------------------*/
.promo-list-item {
	padding: 4rem 0;
	border-top: 1px solid var(--color-gray-2);
}

.promo-list-item:last-child {
	border-bottom: 1px solid var(--color-gray-2);
}

.promo-list-item .img-thumb-basic img {
	filter: none;
}


/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/
.accordion {
	list-style: none;
	padding: 0;
}

.accordion li {
	background-color: var(--color-bg-light-green-1);
	border-radius: 1rem;
	padding: 0 2.4rem;
	margin-bottom: 1.5rem;
}

.accordion li:nth-child(2n+1) {
	background-color: var(--color-bg-light-green-2);
}

/*.accordion li::before,
.accordion li::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--color-1-lighter);
}*/

.accordion li+li::before {
	content: normal
}

.accordion p {
	margin-top: 0
}

.accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2.4rem 0;
	cursor: pointer;
	color: #202932;
}

.accordion-title span {
	width: calc(100% - 6rem);
	font-size: clamp(2rem, 1.84rem + 0.45vw, 2.7rem);
	margin-bottom: 0;
}

.is-open .accordion-title span {
	color: var(--color-2);
}

.accordion-body {
	padding: 0 2rem;
	color: var(--color-text-dark);
	display: flex;
	flex-direction: column;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height .15s ease-in-out, opacity .15s
}

.is-open .accordion-body {
	opacity: 1;
	padding-bottom: 3rem;
}

.accordion-body p:last-child {
	margin-bottom: 0;
}

.accordion-icon {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
	content: '';
	position: absolute;
	background-color: var(--color-2);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out
}

.accordion-icon::before {
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	margin-left: -2px;
}

.accordion-icon::after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	margin-top: -2px;
}

.is-open .accordion-icon {
	cursor: pointer;
}

.is-open .accordion-icon::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.is-open .accordion-icon::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}


/*--------------------------------------------------------------
# Gallery slider
--------------------------------------------------------------*/
.single-gallery {
	position: relative;
	max-width: 48rem;
}

.before-after {
	max-width: 60rem;
}

.single-gallery .swiper {
	padding-bottom: 3rem;
}

.single-gallery .swiper-slide {
	width: 48rem;
	height: 48rem;
	border-radius: 4rem;
	overflow: hidden;
}

.before-after .swiper-slide {
	width: 600rem;
	height: 36rem;
}

.single-gallery .swiper-slide .img-fluid {
	height: 100%;
	object-fit: cover;
}

.testi-slider .swiper-pagination,
.single-gallery .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}

.testi-slider .swiper-pagination-bullet,
.single-gallery .swiper-pagination-bullet {
	width: 1.8rem;
	height: .2rem;
	border-radius: .2rem;
	background: var(--color-2);
	opacity: .5;
	margin: 0 .3rem!important;
	transition: all .3s;
}

.testi-slider .swiper-pagination-bullet-active,
.single-gallery .swiper-pagination-bullet-active {
	width: 3.6rem;
	height: .4rem;
	opacity: 1;
}

.single-gallery .front-decor {
	position: absolute;
	z-index: 5;
	top: 50%;
	right: 0;
	transform: translate(50%, -50%);
	width: 22rem;
	height: 22rem;
	border-radius: 50%;
	background: url(../images/index/img-bottle-pink.jpg) 50% 50% no-repeat;
	background-size: cover;
}

.single-gallery .front-decor:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	border: 1px solid #ffffff;
}


@media (max-width: 767.98px) {	
	.single-gallery .front-decor {
		display: none;
	}
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features > div:not(:last-child) .features-item {
	border-right: 1px dashed rgba(0, 0, 0, .08);
}

.features-item {
	height: 100%;
}

.features-item .icon-circle {
	background-color: #fff;
	position: relative;
}

.features-item .icon-circle:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7.4rem;
	height: 7.4rem;
	border-radius: 50%;
	border: 1px solid var(--color-1);
	opacity: .15;
}

.features-item .icon-circle-green {
		box-shadow: 0 1rem 3rem rgba(121, 170, 100, .15);
}

.features-item .icon-circle-green:before {
		border-color: var(--color-2);
}

@media (max-width: 767.98px) {
	.features-item {
		margin: 1.6rem 0 2.4rem;
	}
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.offset-top-minus {
	margin-top: -36rem;
	pointer-events: none;
}

.offset-top-minus-l {
	margin-top: -42rem;
	pointer-events: none;
}

.testi-slider {
	margin: 0 -1.6rem;
	padding-bottom: 3rem;
}

.testi-slider .swiper-slide {
	padding: 0 1.6rem;
	width: 100%;
	max-width: 44rem;
	height: auto;
}

.testi-slider .testimonial-item {	
	width: 100%;
	height: 100%;
}

.testi-grid .testimonial-item {
	border: 1px solid var(--color-gray-2);
	height: 100%;
	transition: all .3s;
}

.testi-grid > div {
	padding-bottom: 3rem;
}

.testi-grid .testimonial-item:hover {
	border-color: var(--color-1);
}

.testimonial-item .testimonial-img {
	width: 14.4rem;
	height: 14.4rem;
	border-radius: 50%;
	margin-right: 2rem;
	position: relative;
}

.testimonial-item .testimonial-img img {
	width: auto;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-item .testimonial-img:after {	
	content: '';
	position: absolute;
	bottom: .4rem;
	left: 70%;
	width: 2.4rem;
	height: 2.4rem;
	background: url(../images/icons/icon-flower-green.svg);
	background-size: cover;
}

.testi-slider .swiper-slide:nth-child(2n+1) .testimonial-img:after,	
.testi-grid > div:nth-child(2n) .testimonial-img:after {	
	content: '';
	position: absolute;
	bottom: unset;
	top: .8rem;
	left: 10%;
}

.testimonial-item h4 small {
	display: block;
	font-size: 1.8rem;
}

.testi-swiper-button-prev, 
.testi-swiper-button-next {
	position: absolute;
	bottom: 3rem;
	right: 100%;
	width: 6.4rem;
	height: 6.4rem;
	margin-right: 3rem;
	border-radius: 50%;
	background-color: var(--color-1);
	background-image: url(../images/icons/pic-arrow-slider-prev.svg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 56px auto;
	transition: all .3s;
}

.testi-swiper-button-prev:hover, 
.testi-swiper-button-next:hover {
	background-color: var(--color-1-darker);
}

.testi-swiper-button-next {
	width: 8.8rem;
	height: 8.8rem;
	background-image: url(../images/icons/pic-arrow-slider-next.svg);
}

.testi-swiper-button-prev {
	right: calc(100% + 12rem);
	margin-bottom: 1.2rem;
}

.testi-swiper-button-prev:before, 
.testi-swiper-button-next:before {
	content: '';
    position: absolute;
    z-index: -1;
    left: -1rem;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    border-radius: 50%;
    background-color: var(--color-1);
    opacity: .08;
    transition: all 0.4s;
}


@media (max-width: 767.98px) {
	.testi-slider {
		margin: 0;
	}

	.offset-top-minus,
	.offset-top-minus-l {
		margin-top: 4rem;
	}

	.testi-slider .testimonial-item .testimonial-img {
		width: 12rem;
		height: 12rem;
	}
}


/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
#map-wrapper {
	width: 100%;
}

#contacts {
	position: relative;
}
 
#contacts #map {
	position: relative;
	width: 100%;
	height: 56rem;
}
 
#contacts .contacts-side {
	position: absolute;
	top: 2rem;
	bottom: 2rem;
	right: 2rem;
	max-width: 42rem;
    background-color: #fff;
    overflow: hidden;
}
 
#contacts .contacts-list {
	height: 28rem;
	padding: 2rem;
    overflow-y: scroll;
    border: 1px solid var(--color-gray-2);
    border-radius: 1rem;
}
 
#contacts .contacts-side_group {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}
 
 
#contacts .contacts-side_group:last-child {
	margin-bottom: 0;
}
 
#contacts .contacts-side_item {
	margin-right: 3rem;
	margin-bottom: 1rem;
}
 
#contacts .contacts-side_title {
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--color-1);
	border-bottom: 1px dotted var(--color-1);
    cursor: pointer;
    transition: all .3s;
}
 
#contacts .contacts-side_item:hover .contacts-side_title {
	color: var(--color-text);
	border-color: var(--color-text);
}
 
#contacts .contacts-side_address {
    font-size: 15px;
    color: #000;
}
 
 
@media (max-width: 768px) {
    #contacts {
        flex-direction: column;
    }

	#contacts .contacts-side {
		position: relative;
		top: unset;
		bottom: unset;
		right: unset;
	}
}

.show-more_active,
.hidden-content {
	display: none;
}

.marked-left {
	padding-left: 2.4rem;
	padding-bottom: 0;
	border-left: 2px solid var(--color-4);
}

.marked-left p:last-of-type {
	margin-bottom: 0;
}

.status-badge {
	position: relative;
	padding-bottom: 2.4rem;
}

.status-badge img {
	width: 14.8rem;
}

.status-badge-crown {
	position: absolute;
	top: 7rem;
	right: 1.6rem;
	width: 3.2rem;
	height: 3.2rem;
	background: url(../images/icons/icon-badge-crown-fill.svg) 50% 50% no-repeat;
	background-size: 32px;
	text-align: center;
	color: #fff;
	font-family: var(--font-2);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 3.7rem;
}

.status-badge-level {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}

.status-badge-level i {
	width: 2.1rem;
	height: 2.1rem;
}

.status-badge-level i:last-child {
	margin-right: 0;
}

.sorting-link {
	color: var(--color-black);
	padding: 0.5rem 1rem;
	border-radius: 4rem;
	background-color: transparent;
}

.sorting-link.active {
	color: var(--color-primary);
	background-color: var(--color-1-lighter);
}

/*--------------------------------------------------------------
# Tags
--------------------------------------------------------------*/
.tags-group {
	display: flex;
	flex-wrap: wrap;
}

.tags-group > * {
	margin: 0 4px 4px 0;
}

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px 4px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	font-family: var(--font-2);
	font-weight: 500;
	line-height: 1.3;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	color: var(--color-text);
	background-color: var(--color-gray-1);
	border: 1px solid transparent;
	border-radius: 4rem;
	transition: all .3s;
}

.tag-primary {
	background: var(--color-btn-primary);
	color: var(--color-btn-primary-text);
}

.tag-outline-primary {
	background: transparent;
	border-color: var(--color-1-light);
	color: var(--color-btn-primary);
}

.tag-outline-dark {
	background: transparent;
	border-color: var(--color-1-lighter);
	color: var(--color-dark);
}

.tag-outline-light {
	background: transparent;
	border-color: var(--color-4-light);
	color: var(--color-4);
}

.text-decor {
	-webkit-text-stroke: 2px var(--color-text);
	color: transparent;
}

.text-serif {
	font-family: var(--font-3);
	padding-right: 5px;
	font-size: 1.2em;
	line-height: 1;
	letter-spacing: -3px;
	font-weight: 600;
	color: var(--color-4-dark);
	background: linear-gradient(to left, var(--color-4-darker), var(--color-4-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-serif small {
	font-size: 0.45em;
	vertical-align: middle;
	line-height: 1;
	display: inline-flex;
	align-items: flex-start;
	flex-wrap: nowrap;
}

.text-serif small small {
	font-size: 0.65em;
	line-height: 1.1;
}

.text-serif small small small {
	font-size: 0.6em;
	line-height: 1.15;
}

.s-hero .text-serif {
	background: linear-gradient(to right, var(--color-4-darker), var(--color-4-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
	.text-serif {
		letter-spacing: -2px;
	}
}

/*--------------------------------------------------------------
# Travelline TL
--------------------------------------------------------------*/
#block-search,
#block-search * {
	box-sizing: border-box;
}

#block-search {
	width: 100%;
}

.tl-container {
	padding: 20px;
	border-radius: 2rem;
	background-color: var(--color-gray-2);
	/*background-image: linear-gradient(60deg, #64ba91, var(--color-1-dark))*/;
}

/*--------------------------------------------------------------
# Grids
--------------------------------------------------------------*/
.grid-1 {
	display: grid;
	grid-template-columns: 1fr 1fr 0.645fr;
	grid-template-rows: auto auto;
	gap: 30px;
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 0.645fr 1fr;
	grid-template-rows: auto auto;
	gap: 30px;
}

.grid-1 .grid-item,
.grid-2 .grid-item {
	display: flex;
	border-radius: var(--border-radius-md);
}

.grid-1 .grid-item .card,
.grid-2 .grid-item .card {
	flex-grow: 1;
}

/* Левый большой блок */
.big {
	grid-row: span 2;
}

/* Квадраты справа */
.square {
	aspect-ratio: 1 / 1;
}

.square > * {
	flex-grow: 1;
}

@media (max-width: 768px) {
	.grid-1 {
		grid-template-columns: 1fr 1fr;
	}

	.grid-2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	
	.big {
		grid-row: span 1;
	}

	.square {
		aspect-ratio: auto;
	}

	.grid-1 .big {
		order: 1;
	}

	.grid-1 .medium {
		order: 2;
	}

	.grid-1 .square {
		order: 3;
	}

	.grid-2 .big {
		order: 3;
	}

	.grid-2 .medium {
		order: 1;
	}

	.grid-2 .square {
		order: 2;
	}
}

@media (max-width: 586px) {
	.grid-1 {
		grid-template-columns: 1fr;
	}

	.grid-2 {
		display: grid;
		grid-template-columns: 1fr;
	}
}

/* -------- */
.stats-count {
	display: flex;
	font-family: var(--font-3);
	padding-right: 5px;
	font-size: 7.2rem;
	line-height: 0.8;
	letter-spacing: -3px;
	font-weight: 600;
	margin-bottom: 2rem;
}

.stats-count .purecounter {
	margin-right: 5px;
} 

.stats-count small {
	font-size: 0.75em;
	line-height: 1;
}

@media (max-width: 768px) {
	.stats > *:not(:last-child) .stats-item {
		margin-bottom: 4rem;
	}
	.stats-count {
		font-size: 5.4rem;
	}
}

.feature-item {
	height: 100%;
	padding: 40px;
	background-color: var(--color-bg-light-green-1);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	border-radius: var(--border-radius-md);
	transition: 0.3s;
}

.features-grid > div:nth-child(2n+1) .feature-item {
	background-color: var(--color-bg-light-green-2);
}

/*.features-grid > div:nth-child(3) .feature-item,
.features-grid > div:nth-child(6) .feature-item {
	background-color: var(--color-4-lighter);
}*/

@media (min-width: 768px) {
	.features-grid > div:nth-child(6) .feature-item,
	.features-grid > div:nth-child(8) .feature-item {
		background-color: var(--color-bg-light-green-2);
	}
	.features-grid > div:nth-child(5) .feature-item,
	.features-grid > div:nth-child(7) .feature-item {
		background-color: var(--color-bg-light-green-1);
	}
}
.feature-item .feature-icon {
	position: relative;
	width: 9.6rem;
	height: 9.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3.2rem;
	transition: 0.3s;
}

.feature-item .feature-icon img {
	position: relative;
	z-index: 2;
	width: 100%;
}

.feature-item:hover .feature-icon {
	transform: translate(0, -10px);
}

.feature-item h3 {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Swiper
--------------------------------------------------------------*/
.gallery-swiper {
	position: relative;
	overflow: visible;
}

.gallery-swiper .swiper-slide {
	width: 440px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.gallery-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.gallery-swiper .swiper-slide {
		width: auto;
		min-width: 300px;
		max-width: 85vw;
		height: 220px;
	}
}

.gallery-swiper .swiper-slide a {
	position: relative;
	background: var(--color-gray-1);
	border-radius: var(--border-radius-md);
	overflow: hidden;
}

.gallery-swiper .swiper-slide a:before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-white);
	opacity: 0.7;
	transition: all 0.3s;
}

.gallery-swiper .swiper-slide-prev a:before,
.gallery-swiper .swiper-slide-next a:before {
	opacity: 0.35;
}

.gallery-swiper .swiper-slide-active a:before {
	opacity: 0;
}

.gallery-swiper .swiper-slide a:after {
	content: '';
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	min-height: 160px;
	background-image: linear-gradient(180deg, rgba(23, 80, 54, 0), var(--color-1));
	transition: 0.3s;
	opacity: 0;
	transform: translateY(100%);
	/* filter: blur(10px); */
	pointer-events: none;
}

.gallery-swiper .swiper-slide a:hover:after {
	opacity: 1;
	transform: translateY(0);
}

.gallery-swiper .swiper-slide a .btn-icon {
	z-index: 4;
	top: unset;
	left: unset;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	color: var(--color-btn-secondary-hover);
	font-size: 2rem;
	opacity: 0;
	transition: all 0.3s 0.3s;
	transform: translateY(100%);
}

.gallery-swiper .swiper-slide a:hover .btn-icon {
	opacity: 1;
	transform: translateY(0);
}

/* Стрелки */
.gallery-prev,
.gallery-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #D4DCE3;
	position: absolute;
	top: calc(100% + 25px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.gallery-prev {
	left: 30%;
}

.gallery-next {
	right: 30%;
}

/* Кастомный скроллбар */
.gallery-scrollbar {
	width: 30%;
	min-width: 300px;
	height: 6px;
	background: var(--color-gray-2);
	border-radius: 10px;
	margin: 40px auto 0;
}

.swiper-scrollbar-drag {
	background-color: var(--color-2);
}

.gslide-image img {
	border-radius: var(--border-radius-md);
}

/*--------------------------------------------------------------
# Guide Swiper
--------------------------------------------------------------*/
.guide-swiper {
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	max-width: 100%;
}

.guide-swiper .swiper-wrapper {
	justify-content: flex-start !important;
}

.guide-swiper .swiper-slide {
	min-width: 320px;
	max-width: 440px;
	height: 320px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	transition: all 0.3s;
}

.guide-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
}

.guide-swiper .slide-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 3rem;
}

@media (max-width: 768px) {
	.guide-swiper .swiper-slide {
		width: auto;
		min-width: 300px;
		max-width: 85vw;
		height: 220px;
	}
}

.guide-swiper .swiper-slide a {
	position: relative;
	background: var(--color-gray-1);
	border-radius: var(--border-radius-md);
	overflow: hidden;
}

.guide-swiper .swiper-slide a:after {
	content: '';
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
	transition: 0.3s;
	opacity: 1;
	/* filter: blur(10px); */
	pointer-events: none;
}

.guide-swiper .swiper-slide a:before {
	content: '';
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	min-height: 160px;
	background-image: linear-gradient(180deg, rgba(242, 218, 142, 0), var(--color-4));
	transition: 0.3s;
	opacity: 0;
	transform: translateY(100%);
	/*filter: blur(10px);*/
	pointer-events: none;
}

.guide-swiper .swiper-slide a:hover:after {
	opacity: 0.7;
}

.guide-swiper .swiper-slide a:hover:before {
	opacity: 1;
	transform: translateY(10%);
}

.guide-swiper .swiper-slide .slide-icon {
	position: absolute;
	z-index: 4;
	top: unset;
	left: unset;
	bottom: 20px;
	right: 4px;
	opacity: 0;
	transition: all 0.3s 0.3s;
	transform: translateY(100%);
}

.guide-swiper .swiper-slide a:hover .slide-icon {
	opacity: 1;
	transform: translateY(0);
}

/* Стрелки */
.guide-button-prev,
.guide-button-next {
	position: absolute;
	z-index: 10;
	top: calc(50% - 40px);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--color-4-light);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--color-4-dark);
	font-size: 2.4rem;
}

.guide-button-prev {
	left: -6rem;
}

.guide-button-next {
	right: -6rem;
}

/* Кастомный скроллбар */
.guide-scrollbar {
	width: 100%;
	min-width: 300px;
	height: 6px;
	background: var(--color-gray-2);
	border-radius: 10px;
	margin: 0;
}

.swiper-scrollbar-drag {
	background-color: var(--color-2);
}
/*--------------------------------------------------------------
# Yandex Reviews
--------------------------------------------------------------*/
.yandex-reviews-widget {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 600px;
}

.yandex-reviews-widget iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--border-radius-sm);
	box-sizing: border-box;
}

.yandex-reviews-link {
	box-sizing: border-box;
	text-decoration: none;
	color: #b3b3b3;
	font-size: 10px;
	font-family: YS Text, sans-serif;
	padding: 0 20px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
	left: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-height: 14px;
	white-space: nowrap;
	padding: 0 16px;
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Round Badge
--------------------------------------------------------------*/
.round-badge {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	height: 100%;
	min-width: 180px;
	min-height: 180px;
	max-width: 240px;
	max-height: 240px;
	border-radius: 50%;
	box-shadow: 0 1rem 3rem var(--color-shadow-black);
	color: var(--color-white);
	display: flex;
	transition: all 0.3s;
}

.round-badge:after {
	content: '';
	position: absolute;
	aspect-ratio: 1 / 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	background-color: transparent;
	border-radius: 50%;
	border: 1px solid var(--color-4-dark);
	transition: all 0.4s;
	pointer-events: none;
}

.round-badge:hover:after {
	transform: translate(-50%, -50%) scale(3);
	opacity: 0;
	pointer-events: none;
}

.round-badge .badge-inner {
	position: relative;
	aspect-ratio: 1 / 1;
	z-index: 1;
	max-width: 100%;
	padding: 35px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 50%;
	background-color: var(--color-1);
	transition: all 0.3s;
}

.round-badge:hover .badge-inner {
	background-color: var(--color-1-dark);
}

.round-badge .badge-title {
	position: relative;
	font-family: var(--font-2);
	font-size: 1.3rem;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	transition: 0.3s;
}

.round-badge:hover .badge-title {
	color: var(--color-4);
}

.badge-dark .badge-inner {
	background-color: var(--color-3);
}

.badge-dark:hover .badge-inner {
	background-color: var(--color-3-dark);
}

.badge-gold .badge-inner {
	background-color: var(--color-4-dark);
}

.badge-gold:hover .badge-inner {
	background-color: var(--color-4-darker);
}

.round-badge .badge-arrow {
	position: relative;
	font-size: 6rem;
	line-height: 1;
	-webkit-text-stroke: 1px var(--color-white);
	color: transparent;
	transition: all 0.3s;
}

.round-badge:hover .badge-arrow-down {
	-webkit-text-stroke: 1px var(--color-4);
	transform: translateY(5px);
}

.round-badge:hover .badge-arrow-up {
	-webkit-text-stroke: 1px var(--color-4);
	transform: translateY(-5px);
}

@media (max-width: 768px) {
	.round-badge {
		max-width: 200px;
		max-height: 200px;
	}
	.round-badge.ms-m2 {
		margin-left: -2rem;
	}
	.round-badge.ms-m4 {
		margin-top: -3rem;
		margin-left: -1rem;
	}
}

/*--------------------------------------------------------------
# Logos slider
--------------------------------------------------------------*/
.logos-slider {
	max-width: 100%;
	padding: 3rem;
}

.logos-slider .swiper-slide {
	max-width: 100%;
}

/* Pagination */
.logos-slider .swiper-pagination {
	bottom: 1.8rem;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
    background: var(--color-3-dark);
    border-radius: var(--border-radius-md);
	box-shadow: 0 1rem 2rem var(--color-shadow-black);
}

.logos-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-4);
	opacity: .5;
	margin: 0 6px !important;
	transition: all .3s;
}

.logos-slider .swiper-pagination-bullet-active {
	transform: scale(1.5);
	opacity: 1;
}

@media (max-width: 768px) {
	.logos-slider {
		padding: 2rem;
	}
}

/*--------------------------------------------------------------
# Advantages
--------------------------------------------------------------*/
.advantages {
	position: relative;
	padding-bottom: 11rem;
}

.advantages-item {
	height: 100%;
}

.advantages-item-image {
	position: relative;
	overflow: hidden;
}

.advantages-item-image:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image: linear-gradient(0, rgba(23, 80, 54, 0), rgba(23, 80, 54, 0.3));
	mix-blend-mode: multiply;
}

.advantages-badge {
	bottom: 0;
	position: absolute;
	z-index: 1;
	left: 50%;
	transform: translate(-50%, 0);
}

.advantages-badge .round-badge {
	max-width: 220px;
	max-height: 220px;
}

.avatar {
	aspect-ratio: 1 / 1;
}

.team-grid > div:nth-child(4) .advantages-item,
.team-grid > div:nth-child(6) .advantages-item {
	background-color: var(--color-1-dark)!important;
}

.team-grid > div:nth-child(3n+2) .avatar {
	border-radius: 50% !important;
}

@media (max-width: 768px) {
	.avatar {
		aspect-ratio: 3 / 2;
	}
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
/* Общий контейнер */
.map-page {
	position: relative;
	display: flex;
	height: 700px;
	border-radius: var(--border-radius-md);
	overflow: hidden;
}

/* Боковая панель */
.map-sidebar {
	position: absolute;
	z-index: 10;
	left: 2rem;
	bottom: 4rem;
	width: 100%;
	max-width: 450px;
	min-height: 200px;
	max-height: 420px;
	overflow: hidden;
}

/* Поиск */
.search-box {
	position: relative;
	margin-bottom: 12px;
}

#search-input {
	padding: 0.6rem 1.2rem;
	height: 40px;
	font-size: 1.6rem;
}

#search-reset {
	height: 40px;
}

/* Таблица */
.objects-table-wrapper {
	max-height: 300px;
	overflow-y: auto;
	font-size: 1.4rem;
}

#objects-table .thumb {
	width: 48px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
}

#objects-table tr.active-row {
	background-color: var(--color-4-lighter) !important;
}

#objects-table tr {
	cursor: pointer;
}

#objects-table td {
	vertical-align: middle;
}

/* Карта */
.map-container {
	flex: 1;
	min-width: 0;
	min-height: 400px;
}

#vira-map [class*="ymaps-2-1"][class$="-inner-panes"]:before {
	content: '';
	position: absolute;
	z-index: 5000 !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(35, 44, 50, 0.1), rgba(35, 44, 50, 0) 90%);
	pointer-events: none;
	mix-blend-mode: multiply;
}

/* Балун */
.balloon-wrapper {
	width: 100%;
}

.balloon-img {
	width: 100%;
	max-height: 180px;
	object-fit: cover;
	border-radius: 8px;
}

.balloon-info div {
	margin-bottom: 4px;
}

[class*="ymaps-2-1"][class*="balloon"] {
	border-radius: var(--border-radius-md);
}

[class*="ymaps-2-1"][class*="balloon__close"]+[class*="ymaps-2-1"][class*="balloon__content"] {
	margin-right: 11px;
}

[class*="ymaps-2-1"][class*="balloon__close-button"] {
	margin-right: 5px;
}

[class*="ymaps-2-1"][class*="balloon-content__header"] {
	font-family: var(--font-2);
	font-size: 1.8rem;
	font-size: clamp(1.8rem, 1.73rem + 0.19vw, 2.1rem);
	font-weight: 600;
	line-height: 1.3;
	margin: 0.5rem 0 1rem 0;
}

.balloon-content {
	font-family: var(--font-1);
	font-size: 1.4rem;
}

.balloon-swiper .swiper-pagination {
	overflow: visible;
	bottom: 5px;
}

.balloon-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-btn-secondary-hover);
	opacity: .5;
	margin: 0 6px !important;
	transition: all .3s;
}

.balloon-swiper .swiper-pagination-bullet-active {
	transform: scale(1.5);
	opacity: 1;
}

@media (max-width: 768px) {
	.map-page {
		flex-direction: column;
		height: 90vh;
		min-height: 730px;
	}
	
	.map-sidebar {
		position: relative;
		bottom: unset;
		left: unset;
		min-height: 180px;
		max-height: 360px;
	}

	.objects-table-wrapper {
		min-height: 0;
	}

	.map-wrapper>.row {
		flex-wrap: wrap !important;
	}

	[class*="ymaps-2-1"][class*="balloon__content"]>ymaps {
		max-width: calc(320px - 40px);
	}

	[class*="ymaps-2-1"][class*="balloon_layout_normal"] {
		max-width: 320px;
	}

	.balloon-content .tab-pane .btn {
		font-size: 1rem;
		padding: 0.5rem 1rem;
	}
}

[class*="ymaps-2-1"][class$="-balloon-pane"],
[class*="ymaps-2-1"][class$="-hint"] {
	z-index: 10000 !important;
}

/* Swiper */
.balloon-swiper {
	width: 100%;
	height: 180px;
}

.grid-swiper-wrapper {
	display: none;
}

.grid-swiper-wrapper .swiper-slide > * {
	margin-bottom: 30px;
}

.grid-swiper-wrapper .swiper-slide > * .feature-item {
	background-image: linear-gradient(65deg, var(--color-bg-light-green-1), var(--color-bg-light-green-2));
	background-color: transparent;
}

.grid-swiper-wrapper .swiper-slide .feature-item {
	height: 240px;
	padding: 30px 40px;
}

.grid-swiper-wrapper .swiper-slide .feature-item .feature-icon {
	position: relative;
	width: 8.8rem;
	height: 8.8rem;
	margin-bottom: 2.4rem;
}

.grid-swiper-wrapper .swiper-pagination {
	bottom: 5px;
	overflow: visible;
}

.grid-swiper-wrapper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-btn-secondary-hover);
	opacity: .5;
	margin: 0 6px !important;
	transition: all .3s;
}

.grid-swiper-wrapper .swiper-pagination-bullet-active {
	transform: scale(1.5);
	opacity: 1;
}

@media (max-width: 767.98px) {
	.js-grid-to-swiper {
		display: none;
	}

	.grid-swiper-wrapper {
		display: block;
	}
}

/*--------------------------------------------------------------
# Bread
--------------------------------------------------------------*/
.breadcrumb-item {
	font-size: 1.4rem;
	padding-right: 1rem;
}

.breadcrumb-item+.breadcrumb-item {
	padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: 1rem;
	content: '\f35e';
	font-family: var(--font-icon) !important;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--color-4-dark);
	vertical-align: middle;
	margin-top: 5px;
}

.breadcrumb-item.active {
	color: var(--color-text-light);
	padding-right: 0;
}

/*--------------------------------------------------------------
# Reviews Slider
--------------------------------------------------------------*/
.testimonials-wrapper {
	position: relative;
	max-width: 100%;
}

/* Верхний отзыв */
.main-swiper {
	background-color: var(--color-bg-light-green-2);
}

.main-swiper .swiper-slide {
	width: 100%;
	min-height: 200px;
	font-size: 2rem;
	line-height: 1.6;
	cursor: grab;
}

/* Нижний список имён */
.thumbs-swiper {
	margin-top: 3.5rem;
	padding-top: 2rem;
}

.thumbs-swiper .swiper-slide {
	width: 170px;
	padding: 1.5rem 1rem;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
}

.thumbs-swiper .swiper-slide-active,
.thumbs-swiper .swiper-slide-thumb-active {
	color: #1f2937;
	font-weight: bold;
}

.thumbs-swiper .swiper-slide .name {
	position: relative;
	transition: 0.3s;
}

.thumbs-swiper .swiper-slide .subtitle {
	transition: 0.3s;
	font-weight: 400;
}

.thumbs-swiper .swiper-slide-thumb-active .name {
	color: var(--color-4-dark);
}

.thumbs-swiper .swiper-slide-thumb-active .subtitle {
	columns: var(--color-text);
	font-weight: 400;
}

.thumbs-swiper .swiper-slide .name:before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 60px;
	height: 60px;
	top: 50%;
	left: 25%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--color-4);
	filter: blur(16px);
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.thumbs-swiper .swiper-slide-thumb-active .name:before {
	opacity: 0.3;
}


/* Scrollbar */
.thumbs-swiper .swiper-scrollbar {
	top: 0;
	height: 6px;
	background: var(--color-gray-2);
	border-radius: 10px;
}

.thumbs-swiper .swiper-scrollbar-drag {
	background-color: var(--color-2);
}

.timeline-history {
	min-height: 580px;
	display: flex;
	padding: 2rem 4rem 10rem;
}

.timeline-history .row {
	position: relative;
}

.timeline-history .row:before {
	content: '';
	z-index: 1;
	position: absolute;
	top: 45%;
	left: -10%;
	right: -10%;
	transform: translateY(-50%);
	height: 8vw;
	max-height: 120px;
	background-image: url(../images/inner/arrow_green.svg);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.timeline-item {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
}

.timeline-item:before {
	content: '';
	position: absolute;
	width: 2px;
	left: 0;
	top: 0;
	bottom: 6rem;
	background-color: var(--color-1-lighter);
}

.timeline-info {
	--counter-size: 4rem;
	margin-bottom: 10rem;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-info p {
	color: var(--color-text-dark);
}

.timeline-count {
	position: absolute;
	bottom: 6rem;
	margin-top: 3rem;
	display: flex;
	align-items: center;
	transform: translateX(calc(-1*(var(--counter-size)/2) - 2rem + 1px));
	font-family: var(--font-2);
}

.timeline-count .counter {
	position: relative;
	flex-shrink: 0;
	width: var(--counter-size);
	height: var(--counter-size);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: var(--color-4);
	font-size: 2rem;
	font-weight: 600;
	box-shadow: 0 0.75rem 2rem var(--color-shadow);
}

.timeline-count .counter:after {
	content: '';
	position: absolute;
	aspect-ratio: 1 / 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1);
	width: calc(100% + 16px);
	height: calc(100% + 16px);
	background-color: transparent;
	border-radius: 50%;
	border: 1px solid var(--color-4-light);
	transition: all 0.4s;
	pointer-events: none;
}

.timeline-count .caption {
	font-size: 1.6rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .1rem;
	padding-left: 1.5rem;
	line-height: 1.3;
}

.count-md {
	--counter-size: 6rem;
}

.count-md .timeline-count {
	bottom: 3rem;
}

.count-md .counter {
	font-size: 2.5rem;
}

.count-lg {
	--counter-size: 8rem;
}

.count-lg .timeline-count {
	bottom: 0rem;
}

.count-lg .counter {
	font-size: 3rem;
}

.count-xl {
	--counter-size: 10rem;
}

.count-xl .timeline-count {
	bottom: -3rem;
}

.count-xl .counter {
	font-size: 3.5rem;
	background-color: var(--color-btn-secondary-hover);
	box-shadow: 0 1rem 3rem var(--color-shadow-black);
}

@media screen and (max-width:768px) {
	.timeline-history {
		overflow-y: hidden;
		overflow-x: auto;
        padding: 2rem 3rem 8rem;
	}

	.timeline-history .row {
		min-width: 1040px;
	}

	.timeline-item {
		min-width: 260px;
	}

	.timeline-history .row:before {
		height: 15vw;
		min-height: 100px;
		max-height: 120px;
		left: -2%;
		right: -8%;
	}

	.timeline-info p {
		font-size: 1.4rem;
	}

}

.swiper-pagination-bullet {
	background: var(--color-4-dark);
	opacity: .5;
}

.swiper-pagination-bullet-active {
	background: var(--color-4);
	opacity: 1;
}

.slides-1 .card.bg-image {
	min-height: 320px;
}

/*--------------------------------------------------------------
# Grid Promo
--------------------------------------------------------------*/
.grid-promo {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto;
	gap: 30px;
}

.grid-promo .grid-item {
	display: flex;
	border-radius: var(--border-radius-md);
}

.grid-promo .grid-item .card {
	flex-grow: 1;
}

/* Хайлайт */
.grid-promo .highlight {
	grid-row: span 2;
}

.promo-item {
	height: 100%;
}

.promo-item-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.highlight .promo-item-image {
	aspect-ratio: unset;
}

/*.promo-item-image:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background-image: linear-gradient(90deg, rgba(23, 80, 54, 0), rgba(23, 80, 54, 0.3));
	background-image: linear-gradient(90deg, rgba(240, 218, 142, 0.0), rgba(240, 218, 142, 0.7));
	mix-blend-mode: multiply;
}*/

@media (max-width: 768px) {
	.grid-promo {
		grid-template-columns: repeat(1, 1fr);
	}

	.grid-promo .highlight {
		grid-row: span 1;
	}
}

@media (min-width: 992px) {
	.cards-stairs > div:nth-child(2) {
		margin-top: 9rem;
	}
	.cards-stairs > div:nth-child(3) {
		margin-top: 15rem;
	}
}

.clients-slider .swiper-slide {
	display: flex;
	flex-direction: column;
	text-align: center;
	border: 2px solid var(--color-gray-3);
	padding: 2rem;
	border-radius: var(--border-radius-md);
	transition: 0.3s;
}

.clients-slider .swiper-slide:hover {
	border-color: var(--color-4);
}

.clients-slider .swiper-slide img {
	/*border-bottom: 2px solid var(--color-gray-3);*/
	box-shadow: 0 1.5rem 3rem -2rem var(--color-shadow-black);
	border-radius: var(--border-radius-sm);
	margin-bottom: 2rem;
}