@charset "UTF-8";

@font-face {
	font-family: "Gotham";
	src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gotham";
	src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg-color: #f1f3f6;
	--font-color: #242628;
	--text-color: #34383c;
	--primary-color: #0093b2;
	--primary-2-color: #c1e0ea;
	--primary-3-color: #3eb1c8;
	--primary-4-color: #77c5d5;
	--second-color: #77c19a;
	--gray: #f1f3f6;
	--primary-font: "Open Sans", sans-serif;
	--second-font: "Gotham", sans-serif;
}

* {
	padding: 0px;
	margin: 0px;
	border: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* Non-Standard, But More Styling-Capable Properties */
	/* Standardized Properties */
}

*::-webkit-scrollbar {
	cursor: pointer;
	width: 5px;
	background: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: var(--primary-color);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

@supports not selector(::-webkit-scrollbar) {
	* {
		scrollbar-color: var(--primary-color) var(--bg-color);
		scrollbar-width: thin;
	}
}

*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
html {
	font-size: 0.521vw;
}

@media screen and (max-width: 1439.98px) {

	body,
	html {
		font-size: 0.5435vw;
	}
}

@media screen and (max-width: 1169.98px) {

	body,
	html {
		font-size: 0.65vw;
	}
}

@media screen and (max-width: 991.98px) {

	body,
	html {
		font-size: 1.1vw;
	}
}

@media screen and (max-width: 767.98px) {

	body,
	html {
		font-size: 1.55vw;
	}
}

@media screen and (max-width: 539.98px) {

	body,
	html {
		font-size: 2.5vw;
	}
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

html,
body {
	width: 100%;
	margin: 0 auto;
	height: 100%;
}

body {
	color: var(--font-color);
	line-height: 1;
	font-family: var(--primary-font);
	font-size: 10px;
	background: var(--bg-color);
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}

nav,
footer,
header,
aside {
	display: block;
}

input,
button,
textarea {
	outline: none;
	font-family: var(--primary-font);
	font-size: inherit;
}

button {
	cursor: pointer;
	color: inherit;
	background: transparent;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}

button:active,
button:focus {
	outline: none !important;
}

button::-moz-focus-inner {
	border: 0 !important;
}

a {
	cursor: pointer;
	color: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	display: inline-block;
	max-width: 100%;
	border: 0;
	vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html.lock {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.wrapper>main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.wrapper>* {
	min-width: 0;
}

[class*=__container] {
	margin: 0 auto;
	width: 100%;
	max-width: 192rem;
	padding-left: 4.8rem;
	padding-right: 4.8rem;
}

@media (max-width: 1439.98px) {
	[class*=__container] {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.dont-break-out {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

section {
	position: relative;
}

.hidden {
	display: none;
}

.mask {
	position: absolute;
	top: 2.4rem;
	left: 2.4rem;
	width: calc(100% - 4.8rem);
	z-index: -1;
}

@media (max-width: 1439.98px) {
	.mask {
		top: 1.2rem;
		left: 1.2rem;
		width: calc(100% - 2.4rem);
	}
}

@media (max-width: 991.98px) {
	.mask {
		display: none;
	}
}

.characteristic-list li {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 114%;
}

.characteristic-list li:not(:last-child) {
	margin-bottom: 1.2rem;
}

.characteristic-list li .tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.characteristic-list li .th {
	color: #454c54;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-right: 0.8rem;
	position: relative;
}

.characteristic-list li .th::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px dashed #d4dbe8;
}

.characteristic-list li .th span {
	position: relative;
	background: #fff;
	padding-right: 0.8rem;
	z-index: 1;
}

.characteristic-list li .td {
	text-align: right;
	color: #242628;
}

@media (max-width: 539.98px) {

	.characteristic-list li .td,
	.characteristic-list li .th {
		width: 50%;
	}
}

h1 {
	font-family: var(--second-font);
	font-weight: 400;
	font-size: 7.5rem;
	line-height: 100%;
}

@media (max-width: 991.98px) {
	h1 {
		font-size: 3rem;
	}
}

h2 {
	font-family: var(--second-font);
	font-weight: 400;
	font-size: 4.5rem;
	line-height: 100%;
}

@media (max-width: 991.98px) {
	h2 {
		font-size: 2.8rem;
	}
}

h3 {
	font-family: var(--second-font);
	font-weight: 400;
	font-size: 3.6rem;
	line-height: 110%;
}

@media (max-width: 991.98px) {
	h3 {
		font-size: 2.4rem;
	}
}

h4 {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 120%;
}

@media (max-width: 991.98px) {
	h4 {
		font-size: 1.8rem;
	}
}

h6 {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 120%;
	text-transform: uppercase;
}

@media (max-width: 991.98px) {
	h6 {
		font-size: 1.4rem;
	}
}

p {
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 160%;
}

@media (max-width: 991.98px) {
	p {
		font-size: 1.4rem;
	}
}

blockquote {
	border-left: 5px solid #0093b2;
	border-radius: 1.5rem;
	padding: 3.2rem;
	background: #f6f6f6;
}

@media (max-width: 991.98px) {
	blockquote {
		padding: 2rem;
	}
}

.rs-btn {
	text-transform: none;
	cursor: pointer;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	z-index: 10;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.6rem;
}

@media (max-width: 991.98px) {
	.rs-btn {
		font-size: 1.4rem;
	}
}

@media (max-width: 767.98px) {
	.rs-btn {
		width: 100%;
	}
}

.rs-btn__text {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 1rem;
	padding: 2.6rem 3.3rem;
	-webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@media (max-width: 991.98px) {
	.rs-btn__text {
		padding: 2rem 3rem;
	}
}

@media (max-width: 767.98px) {
	.rs-btn__text {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
}

.rs-btn__icon {
	border-radius: 1rem;
	padding: 0 2.4rem;
	-webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 991.98px) {
	.rs-btn__icon {
		padding: 0 2rem;
	}
}

.rs-btn svg {
	width: 1.6rem;
	height: 1.6rem;
}

.rs-btn._btn-primary {
	color: #fff;
}

.rs-btn._btn-primary .rs-btn__text {
	background-color: var(--primary-color);
}

.rs-btn._btn-primary .rs-btn__icon {
	background-color: var(--primary-color);
}

@media (any-hover: hover) {
	.rs-btn._btn-primary:hover .rs-btn__text {
		background-color: var(--second-color);
	}

	.rs-btn._btn-primary:hover .rs-btn__icon {
		-webkit-transform: translateX(0.8rem);
		-ms-transform: translateX(0.8rem);
		transform: translateX(0.8rem);
		background-color: var(--second-color);
	}
}

.rs-btn._btn-primary-2 {
	color: var(--primary-color);
}

.rs-btn._btn-primary-2 .rs-btn__text {
	background-color: var(--primary-2-color);
}

.rs-btn._btn-primary-2 .rs-btn__icon {
	background-color: var(--primary-2-color);
}

@media (any-hover: hover) {
	.rs-btn._btn-primary-2:hover {
		color: #fff;
	}

	.rs-btn._btn-primary-2:hover .rs-btn__text {
		background-color: var(--second-color);
	}

	.rs-btn._btn-primary-2:hover .rs-btn__icon {
		-webkit-transform: translateX(0.8rem);
		-ms-transform: translateX(0.8rem);
		transform: translateX(0.8rem);
		background-color: var(--second-color);
	}
}

.rs-btn._btn-gray {
	color: var(--font-color);
}

.rs-btn._btn-gray .rs-btn__text {
	background-color: #dee5ed;
}

.rs-btn._btn-gray .rs-btn__icon {
	background-color: #dee5ed;
}

@media (any-hover: hover) {
	.rs-btn._btn-gray:hover {
		color: #fff;
	}

	.rs-btn._btn-gray:hover .rs-btn__text {
		background-color: var(--second-color);
	}

	.rs-btn._btn-gray:hover .rs-btn__icon {
		-webkit-transform: translateX(0.8rem);
		-ms-transform: translateX(0.8rem);
		transform: translateX(0.8rem);
		background-color: var(--second-color);
	}
}

.form {
	width: 100%;
}

.form__wrapper {
	position: relative;
}

.form__line {
	width: 100%;
	position: relative;
	margin-bottom: 0.8rem;
}

@media (any-hover: hover) {
	.form__line:hover .form__error {
		-webkit-transform: translateX(-50%) translateY(0px);
		-ms-transform: translateX(-50%) translateY(0px);
		transform: translateX(-50%) translateY(0px);
		opacity: 1;
		visibility: visible;
	}

	.form__line:hover.form__agreement:hover .form__error {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
		visibility: visible;
	}
}

.form__agreement {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 130%;
	padding: 0.4rem 0;
	margin-top: 2.3rem;
}

.form__agreement a {
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

@media (any-hover: hover) {
	.form__agreement a:hover {
		text-decoration: none;
	}
}

.form__button {
	margin-top: 1rem;
}

.form__line:not(.form__agreement)._form-error::after {
	content: "";
	position: absolute;
	display: block;
	right: 34px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 6px;
	height: 14px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='4' height='15' viewBox='0 0 4 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2.92578 0.28125L2.69141 10.3105H0.679688L0.435547 0.28125H2.92578ZM0.367188 13.3867C0.367188 13.0286 0.484375 12.7292 0.71875 12.4883C0.959635 12.2409 1.29167 12.1172 1.71484 12.1172C2.13151 12.1172 2.46029 12.2409 2.70117 12.4883C2.94206 12.7292 3.0625 13.0286 3.0625 13.3867C3.0625 13.7318 2.94206 14.028 2.70117 14.2754C2.46029 14.5163 2.13151 14.6367 1.71484 14.6367C1.29167 14.6367 0.959635 14.5163 0.71875 14.2754C0.484375 14.028 0.367188 13.7318 0.367188 13.3867Z' fill='%23FF5B5B'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.form__error {
	z-index: 100;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	background: #ff5b5b;
	position: absolute;
	top: calc(100% + 9px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 14px 20px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(10px);
	-ms-transform: translateX(-50%) translateY(10px);
	transform: translateX(-50%) translateY(10px);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	pointer-events: none;
	border-radius: 1rem;
}

@media (max-width: 991.98px) {
	.form__error {
		font-size: 1.4rem;
	}
}

.form__error::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 17px;
	height: 9px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='17' height='9' viewBox='0 0 17 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.5 0L17 9H0L8.5 0Z' fill='%23FF5B5B'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.form__agreement .form__error {
	left: 0px;
	-webkit-transform: translateX(0%) translateY(10px);
	-ms-transform: translateX(0%) translateY(10px);
	transform: translateX(0%) translateY(10px);
	border-top-left-radius: 0;
}

.form__agreement .form__error::before {
	left: 0px;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.rs-input {
	outline: none;
	width: 100%;
	-webkit-transition: 0.3s ease 0s;
	transition: 0.3s ease 0s;
	-webkit-transition-property: background-color, border-color;
	transition-property: background-color, border-color;
	background-color: #f1f3f6;
	border: 1px solid #f1f3f6;
	border-radius: 1rem;
	padding: 2.25rem 2.6rem;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 120%;
}

@media (max-width: 991.98px) {
	.rs-input {
		font-size: 1.4rem;
		padding: 2rem;
	}
}

.rs-input::-webkit-input-placeholder {
	color: #34383c;
}

.rs-input::-moz-placeholder {
	color: #34383c;
}

.rs-input:-ms-input-placeholder {
	color: #34383c;
}

.rs-input::-ms-input-placeholder {
	color: #34383c;
}

.rs-input::placeholder {
	color: #34383c;
}

.rs-input:focus {
	border-color: #fff;
}

.rs-input._form-error {
	border-color: #ff5b5b;
}

textarea.rs-input {
	height: 13.4rem;
	resize: none;
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.checkbox__item {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	cursor: pointer;
	position: relative;
	gap: 0.8rem;
}

.checkbox__emulator {
	display: block;
	height: 2rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 2rem;
	flex: 0 0 2rem;
	position: relative;
	background-color: transparent;
	border: 1px solid var(--primary-4-color);
	border-radius: 0.4rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

._form-error .checkbox__emulator {
	border-color: #ff5b5b;
}

.checkbox__emulator::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%) scale(1.5);
	-ms-transform: translate(-50%, -50%) scale(1.5);
	transform: translate(-50%, -50%) scale(1.5);
	-webkit-transition: ease-out 0.15s;
	transition: ease-out 0.15s;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.30333 12.6608L15.9633 5L17.1425 6.17833L8.30333 15.0175L3 9.71417L4.17833 8.53583L8.30333 12.6608Z' fill='white'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.checkbox__input {
	position: absolute;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	font-size: 0px;
	width: 100%;
	height: 100%;
}

.checkbox__input:checked~.checkbox__emulator {
	background-color: var(--primary-4-color);
}

.checkbox__input:checked~.checkbox__emulator::before {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.rs-breadcrumbs {
	position: relative;
	padding-top: 15.2rem;
	padding-bottom: 3.5rem;
}

@media (max-width: 991.98px) {
	.rs-breadcrumbs {
		padding-top: 8rem;
		padding-bottom: 2rem;
	}
}

@media (min-width: 1439.98px) {
	.rs-breadcrumbs__container {
		max-width: 161.2rem;
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.rs-breadcrumbs__container h1 {
	margin-top: 2.4rem;
	font-family: var(--second-font);
	font-weight: 400;
	font-size: 4.5rem;
	line-height: 100%;
}

@media (max-width: 991.98px) {
	.rs-breadcrumbs__container h1 {
		font-size: 2.8rem;
		margin-top: 1.6rem;
	}
}

.rs-breadcrumbs__navigation {
	position: relative;
	width: 100%;
}

.rs-breadcrumbs__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.rs-breadcrumbs__list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: var(--second-font);
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 114%;
	color: #242628;
}

.rs-breadcrumbs__list li>a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
	color: #8f99a3;
}

@media (any-hover: hover) {
	.rs-breadcrumbs__list li>a:hover {
		color: var(--primary-color);
	}
}

.rs-breadcrumbs__list li:not(:last-child)::after {
	content: "—";
	display: block;
	margin: 0px 5px;
	color: #8f99a3;
}

.pagging {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 3.2rem 4rem 3.6rem;
	max-width: 110.4rem;
	margin: 0 auto;
}

@media (max-width: 991.98px) {
	.pagging {
		padding: 2rem;
	}
}

.pagging__arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border: 1px solid #d4dbe8;
	border-radius: 2rem;
	padding: 0.8rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.pagging__arrow.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.pagging__arrow svg {
	width: 2.4rem;
	height: 2.4rem;
}

.pagging__arrow svg *[fill] {
	fill: currentColor;
}

.pagging__arrow svg *[stroke] {
	stroke: currentColor;
}

@media (any-hover: hover) {
	.pagging__arrow:hover {
		color: #fff;
		background-color: var(--primary-color);
		border-color: var(--primary-color);
	}
}

.pagging__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1.6rem;
}

@media (max-width: 991.98px) {
	.pagging__list {
		gap: 0;
	}
}

.pagging__item,
.pagging__more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	padding: 0.4rem;
	width: 3.8rem;
	height: 3.8rem;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 187%;
	text-align: center;
	color: #051036;
	background-color: transparent;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 991.98px) {

	.pagging__item,
	.pagging__more {
		width: 3rem;
		height: 3rem;
		font-size: 1.4rem;
	}
}

@media (any-hover: hover) {

	.pagging__item:hover,
	.pagging__more:hover {
		background-color: #77c5d5;
		color: #fff;
	}
}

.pagging__item._active,
.pagging__more._active {
	background-color: #77c5d5;
	color: #fff;
}

.swiper {
	overflow: hidden;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.swiper-grid>.swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-vertical .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-button-prev:active,
.swiper-button-prev:focus,
.swiper-button-next:active,
.swiper-button-next:focus {
	outline: none !important;
}

.swiper-button-prev::-moz-focus-inner,
.swiper-button-next::-moz-focus-inner {
	border: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 0px;
}

.swiper-pagination-bullet:active,
.swiper-pagination-bullet:focus {
	outline: none !important;
}

.swiper-pagination-bullet::-moz-focus-inner {
	border: 0 !important;
}

.swiper-button-lock {
	display: none !important;
}

.swiper-pagination-lock {
	display: none !important;
}

body::after {
	content: "";
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background: rgba(86, 89, 115, 0.3);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 999;
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 45px 16px;
	-webkit-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
	z-index: 1000;
}

.popup_show {
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 100%;
}

.popup__close {
	position: absolute;
	right: 16px;
	top: 16px;
	z-index: 10;
	width: 46px;
	height: 46px;
	background-color: #f2f4f9;
	border-radius: 50%;
}

@media (max-width: 991.98px) {
	.popup__close {
		top: 13px;
		height: 13px;
	}
}

@media (max-width: 767.98px) {
	.popup__close {
		top: 5px;
		right: 5px;
		width: 40px;
		height: 40px;
	}
}

.popup__content {
	visibility: hidden;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	background-color: #fff;
	padding: 40px;
	width: 100%;
	max-width: 580px;
	border-radius: 10px;
	position: relative;
}

@media (max-width: 991.98px) {
	.popup__content {
		max-width: 538px;
		padding: 36px;
	}
}

@media (max-width: 767.98px) {
	.popup__content {
		padding: 25px;
		max-width: 343px;
	}
}

.lock .popup__content {
	visibility: visible;
}

.popup-user-agreement .popup__content {
	max-width: 800px;
}

.popup__text h3,
.popup__text p {
	text-align: center;
}

.popup__text p {
	margin-top: 5px;
}

.popup__text .form {
	margin-top: 15px;
}

.popup__text .form__button .rs-btn {
	width: 100%;
}

.rs-header {
	position: fixed;
	z-index: 999;
	width: 100%;
	top: 0;
	left: 0;
	-webkit-transition: padding 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
	transition: padding 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
	transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), padding 0.3s ease;
	transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), padding 0.3s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
	padding: 4.4rem 0 2.1rem;
}

.rs-header.rs-header-inner .rs-header__wrapper::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	height: calc(100% + 3.2rem);
	width: calc(100% + 5rem);
	background-color: #fff;
	border-radius: 3rem;
	z-index: -1;
}

.rs-header._header-scroll {
	padding: 2.1rem 0px;
	background-color: #fff;
}

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

.rs-header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

@media (min-width: 991.98px) {
	.lock .rs-header__wrapper {
		padding-right: 6px !important;
	}
}

.rs-header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 18.2rem;
	width: 100%;
	position: relative;
	z-index: 1;
}

.rs-header__logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.rs-header__logo a img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

@media (min-width: 991.98px) {
	.rs-header__menu {
		display: contents;
	}
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__burger {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.rs-header__menu .menu__burger {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: 1.8rem;
		width: 2.6rem;
		position: relative;
		z-index: 10;
	}

	.rs-header__menu .menu__burger span,
	.rs-header__menu .menu__burger::before,
	.rs-header__menu .menu__burger::after {
		content: "";
		position: absolute;
		left: 0%;
		width: 100%;
		height: 0.2rem;
		border-radius: 0.2rem;
		background: #242628;
		-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	}

	.rs-header__menu .menu__burger::before {
		top: 0;
	}

	.rs-header__menu .menu__burger span {
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.rs-header__menu .menu__burger::after {
		bottom: 0;
	}

	.menu-open .rs-header__menu .menu__burger span {
		width: 0;
		opacity: 0;
	}

	.menu-open .rs-header__menu .menu__burger::before {
		top: calc(50% - 0.1rem);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.menu-open .rs-header__menu .menu__burger::after {
		bottom: calc(50% - 0.1rem);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__block {
		display: contents;
	}
}

@media (max-width: 991.98px) {
	.rs-header__menu .menu__block {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-height: 100vh;
		padding: 9rem 2rem 3rem;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		background: #fff;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.rs-header__menu .menu__block>* {
		opacity: 0;
		-webkit-transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	}

	.menu-open .rs-header__menu .menu__block {
		-webkit-transform: translateY(0%);
		-ms-transform: translateY(0%);
		transform: translateY(0%);
	}

	.menu-open .rs-header__menu .menu__block>* {
		opacity: 1;
		-webkit-transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
		transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
	}
}

.rs-header__menu .menu__body {
	height: 100%;
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__list>li:not(:last-child) {
		margin-right: 3.7rem;
		margin-top: -1.5rem;
		margin-bottom: -1.5rem;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}

.rs-header__menu .menu__list li {
	position: relative;
}

@media (max-width: 991.98px) {
	.rs-header__menu .menu__list li:not(:last-child) {
		margin-bottom: 2rem;
	}
}

.rs-header__menu .menu__list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.6rem;
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-header__menu .menu__list li:hover>a {
		color: var(--primary-color);
	}
}

.rs-header__menu .menu__list li.current_menu_item>a {
	color: var(--primary-color);
}

@media (min-width: 991.98px) and (any-hover: hover) {
	.rs-header__menu .menu__dropdown:hover>.menu__dropdown_list {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__dropdown._open-menu>.menu__dropdown_list {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@media (max-width: 991.98px) {
	.rs-header__menu .menu__dropdown._open-menu>.menu__dropdown_arrow::before {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
}

.rs-header__menu .menu__dropdown_arrow {
	margin-left: 10px;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__dropdown_arrow {
		display: none;
	}
}

.rs-header__menu .menu__dropdown_arrow::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1.5rem;
	height: 1.5rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: block;
	background-image: url("../img/caret-arrow-down.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

@media (min-width: 991.98px) {
	.rs-header__menu .menu__dropdown_list {
		position: absolute;
		z-index: 99;
		-webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
		display: block;
		top: 100%;
		left: -2.4rem;
		width: 26.5rem;
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
		opacity: 0;
		visibility: hidden;
		background: #fff;
		border: 1px solid var(--gray);
		border-radius: 2.4rem;
	}

	.rs-header__menu .menu__dropdown_list li a {
		font-weight: 400;
		padding: 0.75rem 2.4rem;
	}

	.rs-header__menu .menu__dropdown_list li:first-child a {
		padding-top: 2rem;
	}

	.rs-header__menu .menu__dropdown_list li:last-child a {
		padding-bottom: 2rem;
	}

	.rs-header__menu .menu__dropdown_list li ul {
		top: 0;
		left: 100%;
	}
}

@media (max-width: 991.98px) {
	.rs-header__menu .menu__dropdown_list {
		padding-top: 1.5rem;
		padding-left: 1.5rem;
	}
}

.rs-header__search {
	width: 100%;
	max-width: 43.4rem;
}

@media (max-width: 991.98px) {
	.rs-header__search {
		max-width: 100%;
		margin-top: 2rem;
	}
}

.rs-header__search .search__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.rs-header__search .search__input {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border-radius: 1rem;
	padding: 1.4rem 1.6rem;
	font-weight: 400;
	font-size: 1.6rem;
	background-color: var(--gray);
}

.rs-header__search .search__input::-webkit-input-placeholder {
	color: #34383c;
}

.rs-header__search .search__input::-moz-placeholder {
	color: #34383c;
}

.rs-header__search .search__input:-ms-input-placeholder {
	color: #34383c;
}

.rs-header__search .search__input::-ms-input-placeholder {
	color: #34383c;
}

.rs-header__search .search__input::placeholder {
	color: #34383c;
}

.rs-header__search .search__submit {
	border-radius: 1rem;
	padding: 1.7rem;
	background: var(--primary-2-color);
	color: var(--primary-color);
	transition: all 0.3s ease 0s;
}

.rs-header__search .search__submit svg {
	width: 1.6rem;
	height: 1.6rem;
}

@media (any-hover: hover) {
	.rs-header__search .search__submit:hover {
		background: var(--primary-color);
		color: #fff;
	}
}

.rs-footer {
	margin-top: 6.5rem;
	margin-bottom: 2.4rem;
}

@media (max-width: 1439.98px) {
	.rs-footer {
		margin-top: 5rem;
		margin-bottom: 1.2rem;
	}
}

.rs-footer__container {
	padding-left: 2.4rem;
	padding-right: 2.4rem;
}

.rs-footer__block {
	background-color: #fff;
	position: relative;
	border-radius: 2.4rem;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (min-width: 991.98px) {
	.rs-footer__block {
		padding-top: 7rem;
		height: 51.6rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__block {
		border-radius: 1.2rem;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 2rem;
	}
}

.rs-footer__block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 180.8rem;
	height: 24.8rem;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1808' height='248' viewBox='0 0 1808 248' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1808 0C1794.75 0 1784 10.7452 1784 24V29C1784 42.2548 1773.25 53 1760 53H356C342.745 53 332 63.7452 332 77V129C332 142.255 321.255 153 308 153H95C81.7452 153 71 163.745 71 177V200C71 213.255 60.2548 224 47 224H24C10.7452 224 0 234.745 0 248V0H1808Z' fill='%23F1F3F6'/%3e%3c/svg%3e ");
	z-index: -1;
}

@media (max-width: 991.98px) {
	.rs-footer__block::before {
		display: none;
	}
}

.rs-footer__block::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 59.1rem;
	height: 39.5rem;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='591' height='395' viewBox='0 0 591 395' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M591 395H0C13.2548 395 24 384.255 24 371V349C24 335.745 34.7452 325 48 325H478C491.255 325 502 314.255 502 301V47C502 33.7452 512.745 23 526 23H567C579.92 23 590.453 12.791 590.978 0H591V395Z' fill='%23F1F3F6'/%3e%3c/svg%3e ");
	z-index: -1;
}

@media (max-width: 991.98px) {
	.rs-footer__block::after {
		display: none;
	}
}

@media (min-width: 991.98px) {
	.rs-footer__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.rs-footer__logo {
	max-width: 27.7rem;
	width: 100%;
}

@media (max-width: 991.98px) {
	.rs-footer__logo {
		max-width: 18.2rem;
	}
}

.rs-footer__logo a {
	display: block;
	width: 100%;
}

.rs-footer__logo a img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

@media (min-width: 991.98px) {
	.rs-footer__contact {
		margin-left: 12.5rem;
		margin-top: 6rem;
		max-width: 34.3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__contact {
		margin-top: 2rem;
	}
}

.rs-footer__contact ul li {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 160%;
	color: var(--text-color);
}

.rs-footer__contact ul li>a {
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

.rs-footer__contact ul li:first-child {
	font-family: "Gotham", sans-serif;
	font-size: 3.6rem;
	line-height: 100%;
	color: #0093b2;
}

@media (max-width: 991.98px) {
	.rs-footer__contact ul li:first-child {
		font-size: 2.4rem;
	}
}

.rs-footer__contact ul li:nth-child(2) {
	font-size: 1.8rem;
	color: var(--font-color);
	margin-bottom: 3rem;
}

@media (max-width: 991.98px) {
	.rs-footer__contact ul li:nth-child(2) {
		font-size: 1.4rem;
		margin-bottom: 1.3rem;
	}
}

@media (any-hover: hover) {
	.rs-footer__contact ul li:hover>a {
		color: var(--primary-color);
	}
}

.rs-footer__spollers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 6rem 0 0 auto;
	padding-right: 17.8rem;
	gap: 2.4rem;
}

@media (max-width: 1439.98px) {
	.rs-footer__spollers {
		padding-right: 12rem;
		gap: 1.2rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__spollers {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
		padding: 0;
		gap: 2rem;
		margin-top: 2rem;
	}
}

.rs-footer__spollers_item {
	width: 28.4rem;
}

@media (max-width: 1439.98px) {
	.rs-footer__spollers_item {
		width: 24rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__spollers_item {
		width: 100%;
	}
}

.rs-footer__spollers_body {
	margin-top: 1.6rem;
}

@media (max-width: 991.98px) {
	.rs-footer__spollers_body {
		margin-top: 1rem;
	}
}

.rs-footer__menu .menu__list li {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 160%;
	color: var(--text-color);
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (max-width: 991.98px) {
	.rs-footer__menu .menu__list li {
		font-size: 1.4rem;
	}
}

.rs-footer__menu .menu__list li:not(:last-child) {
	margin-bottom: 0.8rem;
}

.rs-footer__menu .menu__list li>a {
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-footer__menu .menu__list li:hover>a {
		color: var(--primary-color);
	}
}

.rs-footer__bottom {
	padding: 0 7.6rem 2.5rem;
	max-width: 130.5rem;
}

@media (max-width: 1439.98px) {
	.rs-footer__bottom {
		max-width: 125.5rem;
	}
}

@media (max-width: 1169.98px) {
	.rs-footer__bottom {
		max-width: 92rem;
		padding: 0px 3rem 2rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__bottom {
		padding: 0%;
		max-width: 100%;
		margin-top: 3rem;
	}
}

.rs-footer__bottom .rs-footer__wrapper {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.rs-footer__links {
	margin: 0px auto 1rem 0px;
}

@media (max-width: 1169.98px) {
	.rs-footer__links {
		margin-bottom: 0px;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__links {
		margin: 0 0 2rem 0;
	}
}

.rs-footer__links ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5.6rem;
}

@media (max-width: 1169.98px) {
	.rs-footer__links ul {
		gap: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__links ul {
		gap: 1rem;
	}
}

.rs-footer__links ul li {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 160%;
	color: var(--text-color);
}

@media (max-width: 991.98px) {
	.rs-footer__links ul li {
		font-size: 1.4rem;
	}
}

.rs-footer__links ul li>a {
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-footer__links ul li:hover>a {
		color: var(--primary-color);
	}
}

.rs-footer__copyright {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 160%;
	color: var(--text-color);
}

.rs-footer__dev {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 160%;
	color: #8f99a3;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.rs-footer__dev {
		margin: 0.5rem 0 0 0;
	}
}

.rs-footer__dev>a {
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-footer__dev:hover>a {
		color: var(--primary-color);
	}
}

@media (min-width: 991.98px) {
	.rs-footer__scroll {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		position: absolute;
		bottom: 7.7rem;
		right: 0.6rem;
	}
}

@media (max-width: 991.98px) {
	.rs-footer__scroll {
		margin-top: 3rem;
	}
}

@media (min-width: 991.98px) {
	.rs-footer__scroll.rs-btn._btn-primary .rs-btn__text {
		background-color: #fff;
		color: var(--font-color);
		-webkit-writing-mode: vertical-lr;
		-ms-writing-mode: tb-lr;
		writing-mode: vertical-lr;
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
		padding: 2.2rem;
	}
}

@media (min-width: 991.98px) {
	.rs-footer__scroll.rs-btn._btn-primary .rs-btn__icon {
		padding: 2.2rem;
	}
}

@media (any-hover: hover) {
	.rs-footer__scroll.rs-btn._btn-primary:hover .rs-btn__text {
		color: #fff;
		background-color: var(--second-color);
	}

	.rs-footer__scroll.rs-btn._btn-primary:hover .rs-btn__icon {
		-webkit-transform: translateX(0rem) translateY(-0.8rem);
		-ms-transform: translateX(0rem) translateY(-0.8rem);
		transform: translateX(0rem) translateY(-0.8rem);
	}
}

.rs-banner {
	padding-top: 11.8rem;
}

@media (max-width: 991.98px) {
	.rs-banner {
		padding-top: 8rem;
	}
}

.rs-banner__wrapper {
	position: relative;
}

@media (min-width: 991.98px) {
	.rs-banner__wrapper {
		height: 72.3rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1439.98px) {
	.rs-banner__wrapper {
		height: 68rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1169.98px) {
	.rs-banner__wrapper {
		height: 64rem;
	}
}

.rs-banner__bg {
	width: 100%;
	height: 100%;
	z-index: 10;
	border-radius: 2.4rem;
	overflow: hidden;
	pointer-events: none;
}

@media (min-width: 991.98px) {
	.rs-banner__bg {
		position: absolute;
		top: 0;
		left: 0;
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: right;
		mask-position: right;
		-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1824' height='723' viewBox='0 0 1824 723' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1824 320C1824 333.255 1813.25 344 1800 344H1054C1040.75 344 1030 354.745 1030 368V699C1030 712.255 1019.25 723 1006 723H24C10.7451 723 0 712.255 0 699V24C0 10.7452 10.7452 0 24 0H1800C1813.25 0 1824 10.7452 1824 24V320Z' fill='%23454C54'/%3e%3c/svg%3e ");
		mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1824' height='723' viewBox='0 0 1824 723' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1824 320C1824 333.255 1813.25 344 1800 344H1054C1040.75 344 1030 354.745 1030 368V699C1030 712.255 1019.25 723 1006 723H24C10.7451 723 0 712.255 0 699V24C0 10.7452 10.7452 0 24 0H1800C1813.25 0 1824 10.7452 1824 24V320Z' fill='%23454C54'/%3e%3c/svg%3e ");
	}
}

@media (max-width: 991.98px) {
	.rs-banner__bg {
		border-radius: 1.2rem;
	}
}

.rs-banner__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-banner__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

@media (max-width: 991.98px) {
	.rs-banner__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.rs-banner__scroll {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 400;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	padding: 4.9rem 5.2rem;
	position: relative;
	z-index: 10;
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-banner__scroll:hover {
		color: #9bd2dd;
	}
}

@media (max-width: 991.98px) {
	.rs-banner__scroll {
		color: var(--font-color);
		padding: 3rem 0px 0px;
		width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: 1.4rem;
	}
}

.rs-banner__scroll svg {
	width: 1.4rem;
}

.rs-banner__desc {
	max-width: 77rem;
	width: 100%;
	padding: 4.5rem 4.2rem 4.5rem 5.6rem;
}

@media (max-width: 1169.98px) {
	.rs-banner__desc {
		background-color: #f1f3f6;
		max-width: 72rem;
		padding-left: 6rem;
		padding-bottom: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-banner__desc {
		max-width: 100%;
		padding: 2rem 0px 0px;
	}
}

.rs-banner__desc p {
	margin-top: 0.8rem;
	color: var(--text-color);
}

.rs-banner__desc .rs-btn {
	margin-top: 2.4rem;
}

.rs-about {
	padding-top: 14rem;
}

@media (max-width: 991.98px) {
	.rs-about {
		padding-top: 8rem;
	}
}

.rs-about__bg {
	position: absolute;
	height: calc(100% + 4px);
	width: 20rem;
	right: 0;
	top: -2px;
	z-index: -1;
}

.rs-about__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.rs-about__title {
	max-width: 133.9rem;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 21.7rem;
}

@media (max-width: 991.98px) {
	.rs-about__title {
		padding-bottom: 5rem;
	}
}

.rs-about__title h1 {
	margin-top: 5rem;
}

@media (max-width: 991.98px) {
	.rs-about__title h1 {
		margin-top: 2rem;
	}
}

.rs-about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991.98px) {
	.rs-about__wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.rs-about__picture {
	width: 100%;
	position: relative;
}

@media (min-width: 991.98px) {
	.rs-about__picture {
		margin-left: -2.4rem;
	}
}

.rs-about__label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	z-index: 10;
	border-radius: 2.1rem;
	width: 22rem;
	height: 22rem;
	padding: 2.2rem 1.4rem 3rem 2.4rem;
	background: var(--second-color);
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 120%;
	color: #fff;
}

@media (min-width: 991.98px) {
	.rs-about__label {
		position: absolute;
		top: 0;
		left: 0;
	}
}

@media (max-width: 991.98px) {
	.rs-about__label {
		width: 100%;
		height: auto;
		border-radius: 1.2rem;
	}
}

.rs-about__label_percent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	font-size: 2.5rem;
}

@media (max-width: 991.98px) {
	.rs-about__label_percent {
		margin-top: 1rem;
	}
}

.rs-about__label_percent span {
	display: block;
	line-height: 120%;
	font-size: 6.8rem;
	margin-bottom: -1.4rem;
	margin-right: 0.6rem;
}

@media (max-width: 991.98px) {
	.rs-about__label_percent span {
		font-size: 4rem;
	}
}

.rs-about__img {
	width: 100%;
	height: 100%;
	border-radius: 2.4rem;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.rs-about__img {
		border-radius: 1.2rem;
	}
}

@media (min-width: 991.98px) {
	.rs-about__img {
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: left;
		mask-position: left;
		-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='898' height='654' viewBox='0 0 898 654' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_274_4855)'%3e%3cpath d='M898 630C898 643.255 887.255 654 874 654H24C10.7452 654 0 643.255 0 630V268C0 254.745 10.7452 244 24 244H220C233.255 244 244 233.255 244 220V24C244 10.7452 254.745 0 268 0H874C887.255 0 898 10.7452 898 24V630Z' fill='%23D9D9D9'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_274_4855'%3e%3crect width='898' height='654' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
		mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='898' height='654' viewBox='0 0 898 654' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_274_4855)'%3e%3cpath d='M898 630C898 643.255 887.255 654 874 654H24C10.7452 654 0 643.255 0 630V268C0 254.745 10.7452 244 24 244H220C233.255 244 244 233.255 244 220V24C244 10.7452 254.745 0 268 0H874C887.255 0 898 10.7452 898 24V630Z' fill='%23D9D9D9'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_274_4855'%3e%3crect width='898' height='654' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
	}
}

.rs-about__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-about__desc {
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 160%;
	color: #34383c;
}

@media (min-width: 991.98px) {
	.rs-about__desc {
		margin-left: 3rem;
		padding: 3.4rem 4.4rem 5.5rem 7rem;
		max-width: 92rem;
	}
}

@media (max-width: 991.98px) {
	.rs-about__desc {
		margin-top: 2rem;
		font-size: 1.4rem;
	}
}

.rs-about__desc p {
	margin-top: 1.4rem;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
}

.rs-about__desc>*:first-child {
	margin-top: 0 !important;
}

.rs-about__desc>*:last-child {
	margin-bottom: 0 !important;
}

.section-subtitle {
	display: inline-block;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 120%;
	text-transform: uppercase;
	color: var(--primary-color);
	border: 1px solid var(--primary-2-color);
	border-radius: 5rem;
	padding: 0.6rem 1.2rem;
}

.rs-features {
	padding: 18rem 0px;
}

@media (max-width: 991.98px) {
	.rs-features {
		padding: 8rem 0px;
	}
}

.rs-features__wrapper {
	max-width: 162.6rem;
	margin: 0 auto;
}

.rs-features__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width: 991.98px) {
	.rs-features__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 1rem;
	}
}

.rs-features__item {
	border: 1px solid var(--primary-3-color);
	background: var(--primary-3-color);
	border-radius: 50%;
	width: 44.8rem;
	height: 44.8rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	padding: 6.7rem;
	color: #fff;
	z-index: 1;
	position: relative;
}

@media (max-width: 1169.98px) {
	.rs-features__item {
		padding: 5rem;
		width: 40rem;
		height: 40rem;
	}
}

@media (max-width: 991.98px) {
	.rs-features__item {
		width: 100%;
		height: auto;
		border-radius: 1.2rem;
		padding: 2rem;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(50% - 1rem);
		flex: 1 1 calc(50% - 1rem);
	}
}

@media (max-width: 539.98px) {
	.rs-features__item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
}

.rs-features__item:nth-child(odd) {
	background-color: #fff;
	border-color: var(--gray);
	color: var(--font-color);
}

@media (min-width: 991.98px) {
	.rs-features__item:nth-child(odd) {
		margin-top: 9.3rem;
		z-index: 0;
	}
}

.rs-features__item:nth-child(odd) p {
	color: var(--text-color);
}

@media (min-width: 991.98px) {

	.rs-features__item:nth-child(2),
	.rs-features__item:nth-child(3),
	.rs-features__item:nth-child(4) {
		margin-left: -5.5rem;
	}
}

.rs-features__icon {
	width: 5rem;
	height: 5rem;
}

@media (max-width: 991.98px) {
	.rs-features__icon {
		width: 3rem;
		height: 3rem;
	}
}

.rs-features__icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.rs-features__desc {
	margin-top: 0.8rem;
}

.rs-features__desc p {
	margin-top: 0.8rem;
}

.rs-video__video {
	height: 74.2rem;
	width: 100%;
	position: relative;
	border-radius: 2.4rem;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.rs-video__video {
		border-radius: 1.2rem;
		height: 50rem;
	}
}

.rs-video__video video,
.rs-video__video iframe,
.rs-video__video img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-catalog-nav {
	padding: 16rem 0 23.6rem;
}

@media (max-width: 991.98px) {
	.rs-catalog-nav {
		padding: 8rem 0px;
	}
}

.rs-catalog-nav__wrapper {
	counter-reset: number;
}

@media (min-width: 991.98px) {
	.rs-catalog-nav__wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

@media (min-width: 991.98px) and (max-width: 1169.98px) {
	.rs-catalog-nav__wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 991.98px) {
	.rs-catalog-nav__title {
		grid-column: 2 span;
		padding-right: 6rem;
		margin-top: -0.5rem;
	}
}

.rs-catalog-nav__title h2 {
	margin-top: 5rem;
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__title h2 {
		margin-top: 2rem;
	}
}

@media (min-width: 991.98px) {
	.rs-catalog-nav__list {
		display: contents;
	}
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 1rem;
		margin-top: 2rem;
	}
}

.rs-catalog-nav__item {
	height: 36.7rem;
	background-color: var(--primary-3-color);
	border-radius: 2.4rem;
	color: #fff;
	position: relative;
	-webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease !important;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s ease, -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.rs-catalog-nav__item:nth-child(1) {
	-webkit-transition-delay: 0.05s !important;
	transition-delay: 0.05s !important;
}

.rs-catalog-nav__item:nth-child(2) {
	-webkit-transition-delay: 0.1s !important;
	transition-delay: 0.1s !important;
}

.rs-catalog-nav__item:nth-child(3) {
	-webkit-transition-delay: 0.15s !important;
	transition-delay: 0.15s !important;
}

.rs-catalog-nav__item:nth-child(4) {
	-webkit-transition-delay: 0.2s !important;
	transition-delay: 0.2s !important;
}

.rs-catalog-nav__item:nth-child(5) {
	-webkit-transition-delay: 0.25s !important;
	transition-delay: 0.25s !important;
}

.rs-catalog-nav__item:nth-child(6) {
	-webkit-transition-delay: 0.3s !important;
	transition-delay: 0.3s !important;
}

.rs-catalog-nav__item:nth-child(7) {
	-webkit-transition-delay: 0.35s !important;
	transition-delay: 0.35s !important;
}

.rs-catalog-nav__item:nth-child(8) {
	-webkit-transition-delay: 0.4s !important;
	transition-delay: 0.4s !important;
}

.rs-catalog-nav__item:nth-child(9) {
	-webkit-transition-delay: 0.45s !important;
	transition-delay: 0.45s !important;
}

.rs-catalog-nav__item:nth-child(10) {
	-webkit-transition-delay: 0.5s !important;
	transition-delay: 0.5s !important;
}

.rs-catalog-nav__item:nth-child(11) {
	-webkit-transition-delay: 0.55s !important;
	transition-delay: 0.55s !important;
}

.rs-catalog-nav__item:nth-child(12) {
	-webkit-transition-delay: 0.6s !important;
	transition-delay: 0.6s !important;
}

.rs-catalog-nav__item:nth-child(13) {
	-webkit-transition-delay: 0.65s !important;
	transition-delay: 0.65s !important;
}

.rs-catalog-nav__item:nth-child(14) {
	-webkit-transition-delay: 0.7s !important;
	transition-delay: 0.7s !important;
}

.rs-catalog-nav__item:nth-child(15) {
	-webkit-transition-delay: 0.75s !important;
	transition-delay: 0.75s !important;
}

.rs-catalog-nav__item:nth-child(16) {
	-webkit-transition-delay: 0.8s !important;
	transition-delay: 0.8s !important;
}

.rs-catalog-nav__item:nth-child(17) {
	-webkit-transition-delay: 0.85s !important;
	transition-delay: 0.85s !important;
}

.rs-catalog-nav__item:nth-child(18) {
	-webkit-transition-delay: 0.9s !important;
	transition-delay: 0.9s !important;
}

.rs-catalog-nav__item:nth-child(19) {
	-webkit-transition-delay: 0.95s !important;
	transition-delay: 0.95s !important;
}

.rs-catalog-nav__item:nth-child(20) {
	-webkit-transition-delay: 1s !important;
	transition-delay: 1s !important;
}

.rs-catalog-nav__item:nth-child(21) {
	-webkit-transition-delay: 1.05s !important;
	transition-delay: 1.05s !important;
}

.rs-catalog-nav__item:nth-child(22) {
	-webkit-transition-delay: 1.1s !important;
	transition-delay: 1.1s !important;
}

.rs-catalog-nav__item:nth-child(23) {
	-webkit-transition-delay: 1.15s !important;
	transition-delay: 1.15s !important;
}

.rs-catalog-nav__item:nth-child(24) {
	-webkit-transition-delay: 1.2s !important;
	transition-delay: 1.2s !important;
}

.rs-catalog-nav__item:nth-child(25) {
	-webkit-transition-delay: 1.25s !important;
	transition-delay: 1.25s !important;
}

.rs-catalog-nav__item:nth-child(26) {
	-webkit-transition-delay: 1.3s !important;
	transition-delay: 1.3s !important;
}

.rs-catalog-nav__item:nth-child(27) {
	-webkit-transition-delay: 1.35s !important;
	transition-delay: 1.35s !important;
}

.rs-catalog-nav__item:nth-child(28) {
	-webkit-transition-delay: 1.4s !important;
	transition-delay: 1.4s !important;
}

.rs-catalog-nav__item:nth-child(29) {
	-webkit-transition-delay: 1.45s !important;
	transition-delay: 1.45s !important;
}

@media (any-hover: hover) {
	.rs-catalog-nav__item:hover {
		background-color: var(--second-color);
	}

	.rs-catalog-nav__item:hover .rs-btn__icon {
		background-color: var(--second-color);
	}
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 calc(50% - 1rem);
		flex: 1 1 calc(50% - 1rem);
		height: 25rem;
	}
}

@media (max-width: 539.98px) {
	.rs-catalog-nav__item {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
}

.rs-catalog-nav__link {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 3.2rem;
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__link {
		padding: 2rem;
	}
}

.rs-catalog-nav__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.rs-catalog-nav__head::before {
	content: counter(number, decimal-leading-zero) "";
	counter-increment: number;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 120%;
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__head::before {
		font-size: 1.8rem;
	}
}

.rs-catalog-nav__img {
	border-radius: 50%;
	width: 15.7rem;
	height: 15.7rem;
	overflow: hidden;
	position: relative;
}

@media (max-width: 991.98px) {
	.rs-catalog-nav__img {
		width: 10rem;
		height: 10rem;
	}
}

.rs-catalog-nav__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-catalog-nav__foot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.rs-catalog-nav__foot .rs-btn {
	width: auto;
}

.rs-catalog-nav__btn {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 8.2rem;
	height: 8.2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.rs-catalog-nav__btn::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='83' height='82' viewBox='0 0 83 82' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_274_5009)'%3e%3cpath d='M83 58C83 71.2548 72.2548 82 59 82H0C13.2548 82 24 71.2548 24 58V48C24 34.7452 34.7452 24 48 24H59C72.2548 24 83 13.2548 83 0V58Z' fill='%23F1F3F6'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_274_5009'%3e%3crect width='83' height='82' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
}

.rs-catalog-nav__btn .rs-btn__icon {
	padding: 1.5rem;
}

.rs-form__wrapper {
	position: relative;
}

@media (min-width: 991.98px) {
	.rs-form__wrapper {
		height: 83.7rem;
	}
}

.rs-form__bg {
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 2.4rem;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.rs-form__bg {
		border-radius: 1.2rem;
	}
}

@media (min-width: 991.98px) {
	.rs-form__bg {
		width: calc(100% + 2.4rem);
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: right;
		mask-position: right;
		-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1848' height='837' viewBox='0 0 1848 837' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_274_5090)'%3e%3cpath d='M1012 0C1025.25 0 1036 10.7452 1036 24V687C1036 700.255 1046.75 711 1060 711H1824C1837.25 711 1848 721.745 1848 735V813C1848 826.255 1837.25 837 1824 837H24C10.7452 837 0 826.255 0 813V24C0 10.7452 10.7452 0 24 0H1012Z' fill='%23D9D9D9'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_274_5090'%3e%3crect width='1848' height='837' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
		mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1848' height='837' viewBox='0 0 1848 837' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_274_5090)'%3e%3cpath d='M1012 0C1025.25 0 1036 10.7452 1036 24V687C1036 700.255 1046.75 711 1060 711H1824C1837.25 711 1848 721.745 1848 735V813C1848 826.255 1837.25 837 1824 837H24C10.7452 837 0 826.255 0 813V24C0 10.7452 10.7452 0 24 0H1012Z' fill='%23D9D9D9'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_274_5090'%3e%3crect width='1848' height='837' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
		position: absolute;
		top: 0;
		left: 0;
	}
}

.rs-form__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-form__desc {
	border-radius: 2.4rem;
	padding: 7.4rem 7.6rem 7.6rem 7.6rem;
	width: 76.4rem;
	background: #fff;
	margin: 0px 0px 0px auto;
	-webkit-transform: translateY(-10rem);
	-ms-transform: translateY(-10rem);
	transform: translateY(-10rem);
}

@media (max-width: 1439.98px) {
	.rs-form__desc {
		padding: 5rem;
		-webkit-transform: translateY(-5rem);
		-ms-transform: translateY(-5rem);
		transform: translateY(-5rem);
	}
}

@media (max-width: 991.98px) {
	.rs-form__desc {
		width: 100%;
		padding: 3rem 2rem;
		-webkit-transform: translateY(-2rem);
		-ms-transform: translateY(-2rem);
		transform: translateY(-2rem);
	}
}

.rs-form__desc h3,
.rs-form__desc p {
	text-align: center;
}

.rs-form__desc p {
	margin-top: 0.8rem;
}

.rs-form__desc .form {
	margin-top: 2.4rem;
}

@media (min-width: 1439.98px) {
	.rs-catalog__container {
		max-width: 161.2rem;
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.rs-catalog__category_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem;
}

@media (max-width: 1439.98px) {
	.rs-catalog__category_list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991.98px) {
	.rs-catalog__category_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.rs-catalog__category_item {
	background: #fff;
	border-radius: 1.6rem;
	padding: 1.6rem;
	-webkit-transition: background-color 0.3s ease 0s;
	transition: background-color 0.3s ease 0s;
}

@media (any-hover: hover) {
	.rs-catalog__category_item:hover {
		background-color: var(--block-bg);
	}
}

.rs-catalog__category_link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.6rem;
}

.rs-catalog__category_img {
	border-radius: 0.8rem;
	width: 8.4rem;
	height: 8.4rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--img-bg);
}

.rs-catalog__category_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.rs-catalog__category_desc h6 {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 130%;
	text-transform: unset;
}

@media (max-width: 991.98px) {
	.rs-catalog__category_desc h6 {
		font-size: 1.4rem;
	}
}

.rs-catalog__category_desc p {
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 123%;
	color: #8f99a3;
	margin-top: 0.8rem;
}

.rs-catalog__wrapper {
	margin-top: 4rem;
}

@media (min-width: 991.98px) {
	.rs-catalog__wrapper {
		display: grid;
		grid-template-columns: repeat(14, 1fr);
		gap: 2.4rem;
	}
}

@media (min-width: 991.98px) {
	.rs-catalog__opens {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.rs-catalog__opens {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.rs-catalog__opens_btn {
		gap: 0.5rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		font-family: var(--second-font);
		font-weight: 500;
		font-size: 1.4rem;
		line-height: 160%;
	}

	.rs-catalog__opens_btn svg {
		width: 1.6rem;
		height: 1.6rem;
	}
}

@media (min-width: 991.98px) {
	.rs-catalog__sidebar {
		grid-column: 3 span;
	}
}

@media (max-width: 991.98px) {
	.rs-catalog__sidebar_body {
		position: fixed;
		padding: 0;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 1000;
		background: #f2f4f9;
		-webkit-transform: translateX(-150%);
		-ms-transform: translateX(-150%);
		transform: translateX(-150%);
		-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
		padding: 2rem;
	}

	.rs-catalog__sidebar_body.filter-open {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}

.rs-catalog__sidebar_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #d4dbe8;
}

@media (min-width: 991.98px) {
	.rs-catalog__sidebar_head {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.rs-catalog__filters {
		max-height: calc(100vh - 18.5rem);
		min-height: calc(100vh - 18.5rem);
		overflow-y: auto;
		overflow-x: hidden;
		/* Standardized Properties */
	}

	.rs-catalog__filters::-webkit-scrollbar {
		height: 0px;
		width: 0px;
	}

	@supports not selector(::-webkit-scrollbar) {
		.rs-catalog__filters {
			scrollbar-width: none;
		}
	}
}

.rs-catalog__filters .range__filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.rs-catalog__filters .range__filter .noUi-target {
	background: #c4ccd4;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.rs-catalog__filters .range__filter .noUi-horizontal .noUi-origin {
	height: 100%;
}

.rs-catalog__filters .range__filter .noUi-horizontal .noUi-handle {
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.rs-catalog__filters .range__filter .noUi-horizontal .noUi-handle.noUi-handle-lower {
	right: -2rem;
}

.rs-catalog__filters .range__filter .noUi-connect {
	background: #77c5d5;
}

.rs-catalog__filters .range__filter .noUi-horizontal .noUi-handle {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	cursor: -webkit-grab;
	cursor: grab;
	height: 2rem;
	width: 2rem;
	border-radius: 50%;
	background: #fff;
	border: 4px solid #77c5d5;
}

.rs-catalog__filters .range__filter .noUi-horizontal .noUi-handle::before,
.rs-catalog__filters .range__filter .noUi-horizontal .noUi-handle::after {
	display: none;
}

.rs-catalog__filters .range__slider {
	height: 0.4rem;
	border: none;
	width: 100%;
	margin: 1.6rem 0px 0px;
}

.rs-catalog__filters .range__row {
	display: grid;
}

@media (min-width: 1169.98px),
(max-width: 991.98px) {
	.rs-catalog__filters .range__row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.rs-catalog__filters .range__block {
	width: 100%;
	border: 1px solid #c4ccd4;
	border-radius: 0.8rem 0 0 0.8rem;
	padding: 0.8rem 1.6rem;
}

@media (min-width: 1169.98px),
(max-width: 991.98px) {
	.rs-catalog__filters .range__block:last-child {
		border-radius: 0 0.8rem 0.8rem 0;
		border-left: none;
	}
}

@media (max-width: 1169.98px) and (min-width: 991.98px) {
	.rs-catalog__filters .range__block {
		border-radius: 0.8rem 0.8rem 0 0;
	}

	.rs-catalog__filters .range__block:last-child {
		border-top: none;
		border-radius: 0 0 0.8rem 0.8rem;
	}
}

.rs-catalog__filters .range__block span {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 133%;
	color: #8f99a3;
	display: block;
}

.rs-catalog__filters .range__label {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.rs-catalog__filters .range__input {
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 114%;
	color: #242628;
	margin-top: 0.4rem;
	width: 100%;
	background-color: transparent;
	border: none;
}

.rs-catalog__filters .range__input::-webkit-outer-spin-button,
.rs-catalog__filters .range__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.rs-catalog__filters .checkbox__list li {
	padding: 0.4rem 0px;
}

.rs-catalog__filters .checkbox__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	gap: 0.8rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__filters .checkbox__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.rs-catalog__filters .checkbox__emulator {
	display: block;
	height: 2rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 2rem;
	flex: 0 0 2rem;
	position: relative;
	background-color: transparent;
	border: 1px solid #c4ccd4;
	border-radius: 0.4rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.rs-catalog__filters .checkbox__emulator::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%) scale(1.5);
	-ms-transform: translate(-50%, -50%) scale(1.5);
	transform: translate(-50%, -50%) scale(1.5);
	-webkit-transition: ease-out 0.15s;
	transition: ease-out 0.15s;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.30333 12.6608L15.9633 5L17.1425 6.17833L8.30333 15.0175L3 9.71417L4.17833 8.53583L8.30333 12.6608Z' fill='white'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.rs-catalog__filters .checkbox__label {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 130%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

@media (max-width: 991.98px) {
	.rs-catalog__filters .checkbox__label {
		font-size: 1.4rem;
	}
}

.rs-catalog__filters .checkbox__input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	font-size: 0px;
}

.rs-catalog__filters .checkbox__input:checked~.checkbox__emulator {
	background-color: var(--primary-4-color);
	border-color: var(--primary-4-color);
}

.rs-catalog__filters .checkbox__input:checked~.checkbox__emulator::before {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.rs-catalog__filters .category__wrapper {
	position: relative;
	overflow: hidden;
}

.rs-catalog__filters .category__block {
	transition-behavior: allow-discrete;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

.rs-catalog__filters .category__block._show {
	display: block;
	opacity: 1;
}

@starting-style {
	.rs-catalog__filters .category__block._show {
		opacity: 0;
	}
}

@media (any-hover: hover) {
	.rs-catalog__filters .category__list li:hover>a {
		background-color: #e0f2f8;
		color: #0093b2;
	}
}

.rs-catalog__filters .category__list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0.4rem 0 0.4rem 2.8rem;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 130%;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 991.98px) {
	.rs-catalog__filters .category__list li a {
		font-size: 1.4rem;
	}
}

.rs-catalog__filters .category__list li a[data-submenu],
.rs-catalog__filters .category__list li a.category-close-all {
	color: var(--primary-color);
}

.rs-catalog__filters .category__nav .category__list li {
	position: relative;
}

.rs-catalog__filters .category__nav .category__list li a::before {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	display: block;
	width: 2rem;
	height: 2rem;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9998 17.6672L6.33313 11.0005L12.9998 4.33384' stroke='%23C4CCD4' stroke-width='2.66667' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.rs-catalog__spollers_item {
	border-radius: 1.6rem;
	padding: 1.6rem;
	background: #fff;
}

.rs-catalog__spollers_item:not(:last-child) {
	margin-bottom: 1.6rem;
}

.rs-catalog__spollers_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.rs-catalog__spollers_title {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: left;
	cursor: pointer;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 130%;
	color: #242628;
}

@media (max-width: 991.98px) {
	.rs-catalog__spollers_title {
		font-size: 1.4rem;
	}
}

.rs-catalog__spollers_title::after {
	content: "";
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.6rem;
	flex: 0 0 1.6rem;
	height: 1.6rem;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 6L8 10L12 6' stroke='%23697488' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	-webkit-transition: -webkit-transform 0.5s ease 0s;
	transition: -webkit-transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
	margin-left: 1rem;
}

.rs-catalog__spollers_title._spoller-active::after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rs-catalog__spollers_body {
	margin-top: 1.6rem;
}

.rs-catalog__showmore {
	margin-top: 8px;
	border-bottom: 1px dashed currentColor;
	padding: 4px 0px;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 140%;
	color: #383b56;
}

.rs-catalog__showmore>span {
	display: block;
}

.rs-catalog__showmore>span:last-child {
	display: none;
}

.rs-catalog__showmore._showmore-active>span {
	display: none;
}

.rs-catalog__showmore._showmore-active>span:last-child {
	display: block;
}

.rs-catalog__buttons {
	margin-top: 1.6rem;
}

.rs-catalog__buttons .rs-btn {
	width: 100%;
}

.rs-catalog__buttons .rs-btn__text {
	border-radius: 0.8rem;
	padding: 1.2rem 2.4rem;
}

.rs-catalog__buttons .rs-btn:not(:last-child) {
	margin-bottom: 1rem;
}

@media (min-width: 991.98px) {
	.rs-catalog__content {
		grid-column: 11 span;
	}
}

.rs-catalog__content_body {
	background: #fff;
	border-radius: 1.6rem;
}

.rs-catalog__block {
	padding: 3.6rem 4rem 0;
}

@media (max-width: 991.98px) {
	.rs-catalog__block {
		padding: 2rem 2rem 0;
	}
}

.rs-catalog__head {
	border-bottom: 1px solid #d4dbe8;
	padding: 0px 0px 2.4rem 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 114%;
	color: #697488;
	gap: 2rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__head {
		padding-bottom: 2rem;
	}
}

@media (max-width: 767.98px) {
	.rs-catalog__head {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.rs-catalog__sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 767.98px) {
	.rs-catalog__sort {
		width: 100%;
	}
}

.rs-catalog__sort .select {
	width: 100%;
	position: relative;
	margin-left: 0.8rem;
}

.rs-catalog__sort .select._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.rs-catalog__sort .select__body {
	position: relative;
}

.rs-catalog__sort .select__title {
	color: inherit;
	text-align: left;
	cursor: pointer;
	width: 100%;
	border: 1px solid rgba(13, 40, 87, 0.05);
	border-radius: 0.8rem;
	padding: 1.2rem;
	background: rgba(53, 84, 209, 0.05);
}

.rs-catalog__sort .select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 114%;
	color: #033665;
}

.rs-catalog__sort .select__value>* {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.rs-catalog__sort .select__value:after {
	content: "";
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 5.59998L8 9.59998L12 5.59998' stroke='%23697488' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 1.6rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 1.6rem;
	flex: 0 0 1.6rem;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 0.8rem;
}

.rs-catalog__sort .select__text {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.rs-catalog__sort .select__options {
	min-width: 100%;
	z-index: 10;
	border-radius: 5px;
	background: #fff;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	padding: 12px;
	-webkit-box-shadow: 0 2px 6px -1px rgba(11, 15, 25, 0.03), 0 4px 10px -1px rgba(11, 15, 25, 0.06);
	box-shadow: 0 2px 6px -1px rgba(11, 15, 25, 0.03), 0 4px 10px -1px rgba(11, 15, 25, 0.06);
}

.rs-catalog__sort .select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 400px;
}

.rs-catalog__sort .select__option {
	width: 100%;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 160%;
	color: #383b56;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.rs-catalog__sort .select__option:not(:last-child) {
	margin-bottom: 0.6rem;
}

.rs-catalog__sort .select__option._select-selected {
	color: var(--primary-color);
}

@media (any-hover: hover) {
	.rs-catalog__sort .select__option:hover {
		color: var(--primary-color);
	}
}

.rs-catalog__sort .select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.rs-catalog__sort .select._select-open {
	z-index: 5;
}

.rs-catalog__sort ._select-tag {
	cursor: pointer;
}

.rs-catalog__list {
	margin-top: 0.8rem;
	border-bottom: 1px solid #d4dbe8;
}

.rs-catalog__item {
	padding: 2.4rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2.4rem;
}

.rs-catalog__item:not(:last-child) {
	border-bottom: 1px solid #d4dbe8;
}

@media (max-width: 991.98px) {
	.rs-catalog__item {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.rs-catalog__img {
	position: relative;
	width: 100%;
}

@media (max-width: 991.98px) and (min-width: 539.98px) {
	.rs-catalog__img {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
}

@media (min-width: 539.98px) {
	.rs-catalog__img {
		max-width: 25rem;
	}
}

@media (min-width: 539.98px) and (max-width: 991.98px) {
	.rs-catalog__img {
		max-width: 40rem;
	}
}

@media (min-width: 539.98px) and (max-width: 767.98px) {
	.rs-catalog__img {
		max-width: 30rem;
	}
}

.rs-catalog__img_labels {
	position: absolute;
	top: 1.6rem;
	left: 0;
	z-index: 10;
}

.rs-catalog__img_labels ul {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.5rem;
}

.rs-catalog__img_labels ul li {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: #77c19a;
	border-radius: 0 0.4rem 0.4rem 0;
	padding: 0.8rem 1.2rem;
}

.rs-catalog__img_slider {
	width: 100%;
	border-radius: 0.8rem;
	overflow: hidden;
}

.rs-catalog__img_slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-catalog__img .swiper-horizontal>.swiper-pagination-bullets,
.rs-catalog__img .swiper-pagination-bullets.swiper-pagination-horizontal,
.rs-catalog__img .swiper-pagination-custom,
.rs-catalog__img .swiper-pagination-fraction {
	bottom: 1.2rem;
	left: 0;
	width: 100%;
}

.rs-catalog__img .swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.rs-catalog__img .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.rs-catalog__img .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0.4rem;
}

.rs-catalog__img .swiper-pagination-bullet {
	border-radius: 2.4rem;
	width: 0.6rem;
	height: 0.6rem;
	display: inline-block;
	background: rgba(255, 255, 255, 0.7);
	opacity: 1;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.rs-catalog__img .swiper-pagination-bullet-active {
	opacity: 1;
	background: #fff;
	-webkit-transform: scale(1.33);
	-ms-transform: scale(1.33);
	transform: scale(1.33);
}

.rs-catalog__desc {
	width: 100%;
	max-width: 43.8rem;
	padding-top: 0.5rem;
}

@media (max-width: 991.98px) and (min-width: 539.98px) {
	.rs-catalog__desc {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		padding: 0;
		max-width: 100%;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
	}
}

.rs-catalog__desc h6 {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 130%;
	text-transform: unset;
}

@media (max-width: 991.98px) {
	.rs-catalog__desc h6 {
		font-size: 1.6rem;
	}
}

.rs-catalog__desc p {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 140%;
	color: var(--text-color);
	margin-top: 0.8rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__desc p {
		font-size: 1.4rem;
	}
}

.rs-catalog__desc ul {
	margin-top: 2.2rem;
}

.rs-catalog__color {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 130%;
	color: #051036;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 2.4rem;
	gap: 0.7rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__color {
		font-size: 1.4rem;
	}
}

.rs-catalog__info {
	margin: 0px 0px 0px auto;
	padding-top: 0.5rem;
	max-width: 19.2rem;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (max-width: 991.98px) and (min-width: 539.98px) {
	.rs-catalog__info {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
}

@media (max-width: 991.98px) {
	.rs-catalog__info {
		max-width: 100%;
		margin: 0;
	}
}

.rs-catalog__prices {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__prices {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.rs-catalog__price_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.6rem;
}

.rs-catalog__price-old {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 130%;
	text-decoration: line-through;
	color: #8f99a3;
}

@media (max-width: 991.98px) {
	.rs-catalog__price-old {
		font-size: 1.4rem;
	}
}

.rs-catalog__price-actual {
	margin-top: 0.8rem;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 130%;
}

.rs-catalog__sale {
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 185%;
	color: #fff;
	border-radius: 0.8rem;
	padding: 0.1rem 1.2rem;
	background: #e06287;
}

.rs-catalog__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.rs-catalog__actions .rs-btn {
	width: 100%;
	font-size: 1.5rem;
}

@media (max-width: 991.98px) {
	.rs-catalog__actions .rs-btn {
		font-size: 1.4rem;
	}
}

.rs-catalog__actions .rs-btn__text {
	border-radius: 0.8rem;
	padding: 1.8rem 2.4rem;
}

.rs-catalog__actions .rs-btn:not(:last-child) {
	margin-bottom: 0.8rem;
}

@media (min-width: 1439.98px) {
	.rs-product__container {
		max-width: 161.2rem;
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.rs-product__block h6 {
	margin-bottom: 1rem;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 130%;
	text-transform: unset;
}

@media (max-width: 991.98px) {
	.rs-product__block h6 {
		font-size: 1.4rem;
	}
}

@media (min-width: 991.98px) {
	.rs-product__wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2.4rem;
	}
}

.rs-product__pictures {
	width: 100%;
}

@media (min-width: 991.98px) {
	.rs-product__pictures {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		max-height: 61.6rem;
		max-width: 74.6rem;
		gap: 1.6rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1439.98px) {
	.rs-product__pictures {
		max-width: 88.6rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1169.98px) {
	.rs-product__pictures {
		max-width: 74.6rem;
	}
}

.rs-product__thumbs {
	height: 100%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

@media (min-width: 991.98px) {
	.rs-product__thumbs {
		width: 11.7rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__thumbs {
		margin-top: 1rem;
		margin-left: -2rem;
		margin-right: -2rem;
		padding-right: 2rem;
		padding-left: 2rem;
	}
}

.rs-product__thumbs_slider {
	width: 100%;
	height: 100%;
}

.rs-product__thumbs_slide {
	border-radius: 2.4rem;
	background: #c9c9c9;
	overflow: hidden;
	cursor: pointer;
	height: 11.7rem;
}

@media (max-width: 991.98px) {
	.rs-product__thumbs_slide {
		border-radius: 1.2rem;
		height: 6.7rem;
		width: 6.7rem;
	}
}

.rs-product__thumbs_slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-product__thumbs .swiper-button-next,
.rs-product__thumbs .swiper-button-prev {
	position: absolute;
	width: 5.3rem;
	height: 5.3rem;
	margin-top: 0;
	border-radius: 50%;
	padding: 0.8rem;
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	z-index: 10;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: var(--font-color);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 991.98px) {

	.rs-product__thumbs .swiper-button-next,
	.rs-product__thumbs .swiper-button-prev {
		width: 3rem;
		height: 3rem;
		left: auto;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

.rs-product__thumbs .swiper-button-next::before,
.rs-product__thumbs .swiper-button-prev::before {
	content: "";
	position: absolute;
	width: 11.7rem;
	height: 16.5rem;
	left: 50%;
	background: -webkit-gradient(linear, left bottom, left top, from(#f1f3f6), to(rgba(241, 243, 246, 0)));
	background: linear-gradient(0deg, #f1f3f6 0%, rgba(241, 243, 246, 0) 100%);
	z-index: -1;
}

@media (max-width: 991.98px) {

	.rs-product__thumbs .swiper-button-next::before,
	.rs-product__thumbs .swiper-button-prev::before {
		left: auto;
	}
}

.rs-product__thumbs .swiper-button-next.swiper-button-disabled,
.rs-product__thumbs .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.rs-product__thumbs .swiper-button-prev {
	top: 0.8rem;
	bottom: auto;
}

.rs-product__thumbs .swiper-button-prev::before {
	content: "";
	top: -1.7rem;
	-webkit-transform: translateX(-50%) rotate(180deg);
	-ms-transform: translateX(-50%) rotate(180deg);
	transform: translateX(-50%) rotate(180deg);
}

@media (max-width: 991.98px) {
	.rs-product__thumbs .swiper-button-prev::before {
		-webkit-transform: translateY(-50%) rotate(90deg);
		-ms-transform: translateY(-50%) rotate(90deg);
		transform: translateY(-50%) rotate(90deg);
		top: 50%;
		left: 0;
	}
}

@media (max-width: 991.98px) {
	.rs-product__thumbs .swiper-button-prev {
		top: 50%;
		left: 2.8rem;
	}

	.rs-product__thumbs .swiper-button-prev svg {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
}

.rs-product__thumbs .swiper-button-next {
	top: auto;
	bottom: 0.8rem;
}

.rs-product__thumbs .swiper-button-next::before {
	bottom: -1.7rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

@media (max-width: 991.98px) {
	.rs-product__thumbs .swiper-button-next::before {
		-webkit-transform: translateY(-50%) rotate(-90deg);
		-ms-transform: translateY(-50%) rotate(-90deg);
		transform: translateY(-50%) rotate(-90deg);
		bottom: auto;
		top: 50%;
		right: 0;
	}
}

@media (max-width: 991.98px) {
	.rs-product__thumbs .swiper-button-next {
		top: 50%;
		right: 2.8rem;
	}

	.rs-product__thumbs .swiper-button-next svg {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
}

.rs-product__slider {
	height: 100%;
	width: 100%;
	position: relative;
}

@media (min-width: 991.98px) {
	.rs-product__slider {
		width: calc(100% - 13.3rem);
	}
}

.rs-product__labels {
	position: absolute;
	top: 1.6rem;
	left: 0;
	z-index: 10;
}

.rs-product__labels ul {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.5rem;
}

.rs-product__labels ul li {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: #77c19a;
	border-radius: 0 0.4rem 0.4rem 0;
	padding: 0.8rem 1.2rem;
}

.rs-product__main_slider {
	width: 100%;
	height: 100%;
	border-radius: 2.4rem;
}

@media (max-width: 991.98px) {
	.rs-product__main_slider {
		border-radius: 1.2rem;
	}
}

.rs-product__main_swiper {
	width: 100%;
	height: 100%;
}

.rs-product__main_slide {
	width: 100%;
	height: 100%;
}

.rs-product__main_slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-product__info {
	background-color: #fff;
	border-radius: 2.4rem;
}

@media (max-width: 991.98px) {
	.rs-product__info {
		margin-top: 2rem;
		border-radius: 1.2rem;
	}
}

.rs-product__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 4rem 7.6rem 3.2rem 7.6rem;
	border-bottom: 2px solid #f1f3f6;
	gap: 0.5rem;
}

@media (max-width: 1439.98px) {
	.rs-product__head {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__head {
		padding: 2rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.rs-product__head h3 {
	font-weight: 500;
	font-size: 3.4rem;
	line-height: 130%;
}

@media (max-width: 991.98px) {
	.rs-product__head h3 {
		font-size: 2.4rem;
	}
}

.rs-product__head p {
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 140%;
	color: #8f99a3;
	margin-bottom: 0.4rem;
}

@media (max-width: 991.98px) {
	.rs-product__head p {
		font-size: 1.4rem;
		margin: 0;
	}
}

.rs-product__body {
	padding: 4rem 7.6rem;
}

@media (max-width: 1439.98px) {
	.rs-product__body {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__body {
		padding: 2rem;
	}
}

.rs-product__color_select {
	margin-bottom: 1.6rem;
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 130%;
	color: var(--font-color);
}

.rs-product__color_select span {
	color: #0093b2;
}

@media (max-width: 991.98px) {
	.rs-product__color_select {
		font-size: 1.4rem;
	}
}

.rs-product__color_list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.8rem;
}

@media (max-width: 991.98px) {
	.rs-product__color_list ul li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(10% - 0.65rem);
		flex: 0 0 calc(10% - 0.65rem);
	}
}

@media (max-width: 539.98px) {
	.rs-product__color_list ul li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(20% - 0.65rem);
		flex: 0 0 calc(20% - 0.65rem);
	}
}

.rs-product__color_list ul li span,
.rs-product__color_list ul li a {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 2.4rem;
	position: relative;
	background: #f1f3f6;
}

@media (min-width: 991.98px) {

	.rs-product__color_list ul li span,
	.rs-product__color_list ul li a {
		width: 7.8rem;
		height: 7.8rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1439.98px) {

	.rs-product__color_list ul li span,
	.rs-product__color_list ul li a {
		width: 6rem;
		height: 6rem;
		border-radius: 1.2rem;
	}
}

@media (max-width: 991.98px) {

	.rs-product__color_list ul li span,
	.rs-product__color_list ul li a {
		border-radius: 1.2rem;
	}
}

.rs-product__color_list ul li span::after,
.rs-product__color_list ul li a::after {
	content: "";
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 100%;
	border-radius: inherit;
	border: 2px solid #0093b2;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='78' height='78' viewBox='0 0 78 78' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3crect y='1' width='78' height='78' fill='url(%23pattern0_243_3858)'/%3e%3cpath d='M35.6964 44.0066L49.7016 29.9999L51.8575 32.1543L35.6964 48.3154L26 38.6191L28.1544 36.4647L35.6964 44.0066Z' fill='white'/%3e%3c/svg%3e ");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.rs-product__color_list ul li.selected span::after,
.rs-product__color_list ul li a._active::after {
	opacity: 1;
	visibility: visible;
}

.rs-product__desc {
	margin-top: 3.6rem;
}

.rs-product__desc p {
	font-size: 1.6rem;
	line-height: 140%;
	color: var(--text-color);
}

@media (max-width: 991.98px) {
	.rs-product__desc p {
		font-size: 1.4rem;
	}
}

.rs-product__desc ul {
	margin-top: 1.6rem;
}

.rs-product__desc ul li {
	font-size: 1.6rem;
	line-height: 100%;
}

@media (max-width: 991.98px) {
	.rs-product__desc ul li {
		font-size: 1.4rem;
	}
}

.rs-product__desc ul li:not(:last-child) {
	margin-bottom: 1.3rem;
}

.rs-product__actions {
	padding: 4rem 7.6rem 3.2rem 7.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 2px solid #f1f3f6;
}

@media (max-width: 1439.98px) {
	.rs-product__actions {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__actions {
		padding: 2rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.rs-product__prices {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.rs-product__price_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 0.4rem;
}

.rs-product__price-old {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 130%;
	text-decoration: line-through;
	color: #8f99a3;
}

@media (max-width: 991.98px) {
	.rs-product__price-old {
		font-size: 1.4rem;
	}
}

.rs-product__price-actual {
	font-family: var(--second-font);
	font-weight: 500;
	font-size: 2.8rem;
	line-height: 130%;
}

.rs-product__sale {
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 185%;
	color: #fff;
	border-radius: 0.8rem;
	padding: 0.1rem 1.2rem;
	background: #e06287;
}

@media (max-width: 991.98px) {
	.rs-product__button {
		margin-top: 2rem;
		width: 100%;
	}

	.rs-product__button .rs-btn {
		width: 100%;
	}
}

.rs-product__tabs {
	margin-top: 8rem;
}

.rs-product__tabs_navigation {
	gap: 4.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 4.7rem;
}

@media (max-width: 1439.98px) {
	.rs-product__tabs_navigation {
		padding-left: 3rem;
		gap: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__tabs_navigation {
		padding-left: 2rem;
		gap: 2rem;
		overflow-y: hidden;
		overflow-x: auto;
		padding: 0px 3rem;
		/* Standardized Properties */
	}

	.rs-product__tabs_navigation::-webkit-scrollbar {
		height: 0px;
	}

	@supports not selector(::-webkit-scrollbar) {
		.rs-product__tabs_navigation {
			scrollbar-width: none;
		}
	}
}

.rs-product__tabs_title {
	font-family: var(--second-font);
	border-radius: 2.4rem 2.4rem 0 0;
	padding: 1.6rem 4rem;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 130%;
	color: #454c54;
	background: rgba(255, 255, 255, 0);
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}

@media (max-width: 991.98px) {
	.rs-product__tabs_title {
		font-size: 1.4rem;
		border-radius: 1.2rem 1.2rem 0 0;
		padding: 1.2rem 2.4rem;
		white-space: nowrap;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
	}
}

.rs-product__tabs_title::before,
.rs-product__tabs_title::after {
	content: "";
	position: absolute;
	width: 2.3rem;
	height: 2.3rem;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.rs-product__tabs_title::before {
	right: 100%;
	bottom: 0;
	background-position: bottom right;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23 0V23H0C12.7025 23 23 12.7025 23 0Z' fill='white'/%3e%3c/svg%3e ");
}

.rs-product__tabs_title::after {
	left: 100%;
	bottom: 0;
	background-position: bottom left;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0V23H23C10.2975 23 0 12.7025 0 0Z' fill='white'/%3e%3c/svg%3e ");
}

.rs-product__tabs_title._tab-active {
	color: #0093b2;
	background: #fff;
}

.rs-product__tabs_title._tab-active::before,
.rs-product__tabs_title._tab-active::after {
	opacity: 1;
	visibility: visible;
}

.rs-product__tabs_content {
	border-radius: 2.4rem;
	padding: 3.6rem 7.6rem;
	background: #fff;
}

@media (max-width: 1439.98px) {
	.rs-product__tabs_content {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-product__tabs_content {
		padding: 2rem;
		border-radius: 1.2rem;
	}
}

.rs-product__tabs_body {
	opacity: 0;
	display: none;
	-webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transition-behavior: allow-discrete;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 140%;
	color: #34383c;
	color: var(--text-color);
}

.rs-product__tabs_body._tab-active {
	display: block;
	opacity: 1;
}

@starting-style {
	.rs-product__tabs_body._tab-active {
		opacity: 0;
	}
}

@media (max-width: 991.98px) {
	.rs-product__tabs_body {
		font-size: 1.4rem;
	}
}

.rs-product__tabs_body h6 {
	margin-bottom: 1rem;
	margin-top: 3.6rem;
	color: var(--font-color);
}

@media (max-width: 991.98px) {
	.rs-product__tabs_body h6 {
		margin-top: 2rem;
	}
}

.rs-product__tabs_body p {
	font-size: inherit;
	line-height: inherit;
}

.rs-product__tabs_body ul:not(.characteristic-list) li::before {
	content: "·";
	margin-right: 0.5rem;
}

@media (min-width: 991.98px) {
	.rs-product__tabs_body ul.characteristic-list {
		-webkit-columns: 2;
		-moz-columns: 2;
		columns: 2;
		gap: 8rem;
	}
}

@media (min-width: 991.98px) and (max-width: 1439.98px) {
	.rs-product__tabs_body ul.characteristic-list {
		gap: 2rem;
	}
}

.rs-product__tabs_body .rs-btn {
	margin-top: 1.6rem;
}

.rs-product__tabs_body .rs-btn__text {
	padding: 1.6rem 2.4rem;
	font-size: 1.5rem;
}

.rs-product__tabs_body>*:first-child {
	margin-top: 0 !important;
}

.rs-product__tabs_body>*:last-child {
	margin-bottom: 0 !important;
}

@media (min-width: 991.98px) {
	.rs-vacancy__wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2.4rem;
	}
}

@media (min-width: 991.98px) {
	.rs-vacancy__list {
		grid-column: 2 span;
	}
}

@media (min-width: 1439.98px) {
	.rs-vacancy__list {
		padding-left: 15.4rem;
		padding-right: 3.2rem;
	}
}

.rs-vacancy__spollers_item {
	border-radius: 2.4rem;
	background-color: #fff;
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_item {
		border-radius: 1.2rem;
	}
}

.rs-vacancy__spollers_item:not(:last-child) {
	margin-bottom: 2.4rem;
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_item:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}

.rs-vacancy__spollers_title {
	padding: 4rem;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: left;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media (max-width: 1439.98px) {
	.rs-vacancy__spollers_title {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_title {
		padding: 2rem;
	}
}

.rs-vacancy__spollers_title._spoller-active {
	border-color: #f1f3f6;
}

.rs-vacancy__spollers_title._spoller-active svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.rs-vacancy__spollers_head p {
	margin-top: 0.8rem;
}

.rs-vacancy__spollers_head p strong {
	color: #0093b2;
}

.rs-vacancy__spollers_icon {
	border-radius: 1rem;
	padding: 2.55rem;
	background: #0093b2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
}

@media (max-width: 1439.98px) {
	.rs-vacancy__spollers_icon {
		padding: 2rem;
	}
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_icon {
		padding: 1.6rem;
	}
}

.rs-vacancy__spollers_icon svg {
	width: 1.6rem;
	height: 1.6rem;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.rs-vacancy__spollers_body {
	padding: 4rem;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 140%;
	color: var(--text-color);
}

@media (max-width: 1439.98px) {
	.rs-vacancy__spollers_body {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_body {
		padding: 2rem;
		font-size: 1.4rem;
	}
}

.rs-vacancy__spollers_body h6 {
	margin-bottom: 1rem;
	margin-top: 2.4rem;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 130%;
	text-transform: unset;
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_body h6 {
		font-size: 1.4rem;
		margin-top: 2rem;
	}
}

.rs-vacancy__spollers_body ul li {
	position: relative;
	padding-left: 3rem;
}

.rs-vacancy__spollers_body ul li::before {
	content: "";
	position: absolute;
	left: 1.2rem;
	top: 50%;
	margin-top: -0.3rem;
	width: 0.6rem;
	height: 0.6rem;
	background-color: currentColor;
	border-radius: 50%;
}

.rs-vacancy__spollers_body .rs-btn {
	margin-top: 2.4rem;
}

@media (max-width: 991.98px) {
	.rs-vacancy__spollers_body .rs-btn {
		margin-top: 2rem;
	}
}

.rs-vacancy__spollers_body .rs-btn__text {
	padding: 1.6rem 2.4rem;
}

.rs-vacancy__spollers_body>*:first-child {
	margin-top: 0 !important;
}

.rs-vacancy__spollers_body>*:last-child {
	margin-bottom: 0 !important;
}

.rs-vacancy__contact {
	position: relative;
}

@media (min-width: 991.98px) {
	.rs-vacancy__contact {
		grid-column: 1 span;
	}
}

@media (max-width: 991.98px) {
	.rs-vacancy__contact {
		margin-top: 3rem;
	}
}

.rs-vacancy__contact_icon {
	position: absolute;
	top: 0;
	right: 0;
	padding: 2.2rem;
	border-radius: 1.9rem;
	background: #77c19a;
	color: #fff;
}

.rs-vacancy__contact_icon svg {
	width: 4.2rem;
	height: 4.2rem;
}

.rs-vacancy__contact_body {
	width: 100%;
	height: 100%;
	background: #77c5d5;
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: top right;
	mask-position: top right;
	border-radius: 2.4rem;
	-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='592' height='406' viewBox='0 0 592 406' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M457 0C470.255 0 481 10.7452 481 24V87C481 100.255 491.745 111 505 111H568C581.255 111 592 121.745 592 135V382C592 395.255 581.255 406 568 406H24C10.7452 406 0 395.255 0 382V24C0 10.7452 10.7452 0 24 0H457Z' fill='%2377C5D5'/%3e%3c/svg%3e ");
	mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='592' height='406' viewBox='0 0 592 406' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M457 0C470.255 0 481 10.7452 481 24V87C481 100.255 491.745 111 505 111H568C581.255 111 592 121.745 592 135V382C592 395.255 581.255 406 568 406H24C10.7452 406 0 395.255 0 382V24C0 10.7452 10.7452 0 24 0H457Z' fill='%2377C5D5'/%3e%3c/svg%3e ");
	height: 40.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: #fff;
	padding: 3.2rem 4rem 4rem 3.4rem;
}

@media (max-width: 1439.98px) {
	.rs-vacancy__contact_body {
		padding: 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-vacancy__contact_body {
		padding: 2rem;
	}
}

.rs-vacancy__contact_img {
	max-width: 20.4rem;
}

.rs-vacancy__contact_img img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.rs-vacancy__contact_desc p {
	margin-top: 0.8rem;
	font-size: 2.1rem;
}

@media (max-width: 991.98px) {
	.rs-vacancy__contact_desc p {
		font-size: 1.6rem;
	}
}

@media (min-width: 1439.98px) {
	.rs-new__container {
		max-width: 182.8rem;
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.rs-new__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6.4rem;
	padding-bottom: 3.2rem;
}

@media (max-width: 1439.98px) {
	.rs-new__list {
		padding: 0;
		gap: 2.4rem;
	}
}

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

.rs-new__item {
	position: relative;
}

.rs-new__link {
	background-color: #fff;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 991.98px) {
	.rs-new__link {
		-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='834' height='387' viewBox='0 0 834 387' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M732 0C745.255 0 756 10.7452 756 24V57C756 70.2548 766.745 81 780 81H809C822.255 81 833 91.7452 833 105V363C833 376.255 822.255 387 809 387H24C10.7452 387 0 376.255 0 363V24C6.18527e-06 10.7452 10.7452 0 24 0H732Z' fill='white'/%3e%3c/svg%3e ");
		mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='834' height='387' viewBox='0 0 834 387' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M732 0C745.255 0 756 10.7452 756 24V57C756 70.2548 766.745 81 780 81H809C822.255 81 833 91.7452 833 105V363C833 376.255 822.255 387 809 387H24C10.7452 387 0 376.255 0 363V24C6.18527e-06 10.7452 10.7452 0 24 0H732Z' fill='white'/%3e%3c/svg%3e ");
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: top right;
		mask-position: top right;
	}
}

@media (max-width: 991.98px) {
	.rs-new__link {
		border-radius: 1.2rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.rs-new__img {
	width: 33.3rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 2.4rem;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.rs-new__img {
		border-radius: 1.2rem;
	}
}

@media (max-width: 991.98px) {
	.rs-new__img {
		width: 100%;
	}
}

.rs-new__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-new__desc {
	padding: 2rem 5.6rem 2rem 4rem;
}

@media (max-width: 1439.98px) {
	.rs-new__desc {
		padding: 2rem 3rem;
	}
}

@media (max-width: 991.98px) {
	.rs-new__desc {
		padding: 2rem;
	}
}

.rs-new__desc p {
	margin-top: 2.4rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 4;
}

@media (max-width: 1439.98px) {
	.rs-new__desc p {
		margin-top: 1rem;
	}
}

.rs-new__tag {
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 160%;
	color: #242628;
	border-radius: 5rem;
	padding: 0.4rem 1.6rem;
	background: #f1f3f6;
	display: inline-block;
	margin-bottom: 1.6rem;
}

.rs-new__date {
	margin-top: 1.6rem;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 160%;
	color: #0093b2;
}

@media (max-width: 991.98px) {
	.rs-new__date {
		font-size: 1.4rem;
	}
}

.rs-new__btn {
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 991.98px) {
	.rs-new__btn {
		display: none;
	}
}

.rs-new__btn .rs-btn__icon {
	padding: 2.2rem;
}

.rs-new__btn .rs-btn__icon svg {
	width: 2rem;
	height: 2rem;
}

@media (min-width: 1439.98px) {
	.rs-template__container {
		max-width: 182.8rem;
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

.rs-template__content {
	background-color: #fff;
	border-radius: 2.4rem;
	padding: 9.3rem 10.8rem;
}

@media (max-width: 1439.98px) {
	.rs-template__content {
		padding: 5rem;
	}
}

@media (max-width: 991.98px) {
	.rs-template__content {
		padding: 2rem;
	}
}

.rs-template__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 9rem;
}

.rs-template__block:not(:last-child) {
	margin-bottom: 7rem;
}

@media (max-width: 1439.98px) {
	.rs-template__block:not(:last-child) {
		margin-bottom: 5rem;
	}
}

@media (max-width: 991.98px) {
	.rs-template__block:not(:last-child) {
		margin-bottom: 3rem;
	}
}

@media (max-width: 1439.98px) {
	.rs-template__block {
		gap: 5rem;
	}
}

@media (max-width: 991.98px) {
	.rs-template__block {
		gap: 2rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.rs-template__desc {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 160%;
	color: var(--text-color);
}

@media (max-width: 991.98px) {
	.rs-template__desc {
		font-size: 1.4rem;
	}
}

.rs-template__desc h2,
.rs-template__desc h4 {
	margin: 1.6rem 0px;
}

.rs-template__desc p {
	margin: 0.8rem 0px;
}

.rs-template__desc blockquote {
	margin: 2.4rem 0px;
}

.rs-template__desc blockquote>*:first-child {
	margin-top: 0 !important;
}

.rs-template__desc blockquote>*:last-child {
	margin-bottom: 0 !important;
}

.rs-template__desc ul li {
	position: relative;
	padding-left: 2.8rem;
}

@media (max-width: 991.98px) {
	.rs-template__desc ul li {
		padding-left: 2.4rem;
	}
}

.rs-template__desc ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background-color: #77c19a;
	-webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_279_7106)'%3e%3cpath d='M9.99996 18.9999C14.9705 18.9999 18.9999 14.9705 18.9999 9.99996C18.9999 5.02942 14.9705 1 9.99996 1C5.02942 1 1 5.02942 1 9.99996C1 14.9705 5.02942 18.9999 9.99996 18.9999Z' stroke='%2377C19A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M5.56934 9.97018L8.47701 12.8779L14.2924 7.0625' stroke='%2377C19A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_279_7106'%3e%3crect width='20' height='20' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
	mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_279_7106)'%3e%3cpath d='M9.99996 18.9999C14.9705 18.9999 18.9999 14.9705 18.9999 9.99996C18.9999 5.02942 14.9705 1 9.99996 1C5.02942 1 1 5.02942 1 9.99996C1 14.9705 5.02942 18.9999 9.99996 18.9999Z' stroke='%2377C19A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M5.56934 9.97018L8.47701 12.8779L14.2924 7.0625' stroke='%2377C19A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_279_7106'%3e%3crect width='20' height='20' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e ");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	width: 2rem;
	height: 2rem;
	margin-top: 0.5rem;
}

@media (max-width: 991.98px) {
	.rs-template__desc ul li::before {
		width: 1.6rem;
		height: 1.6rem;
		margin-top: 0.3rem;
	}
}

.rs-template__desc ol {
	counter-reset: li;
}

.rs-template__desc ol li {
	list-style: none;
	padding-left: 0px;
}

.rs-template__desc ol li::before {
	counter-increment: li;
	content: counter(li, decimal-leading-zero) ". ";
	color: #77c19a;
	font-weight: 500;
	margin-right: 0.4rem;
}

.rs-template__desc ul,
.rs-template__desc ol {
	margin: 0.8rem 0px;
}

.rs-template__desc ul[data-column="2"],
.rs-template__desc ol[data-column="2"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3px 30px;
}

@media (max-width: 991.98px) {

	.rs-template__desc ul[data-column="2"],
	.rs-template__desc ol[data-column="2"] {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0;
	}
}

.rs-template__desc ul[data-column="2"] li,
.rs-template__desc ol[data-column="2"] li {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 15px);
	flex: 0 0 calc(50% - 15px);
	margin: 0;
}

.rs-template__desc ul[data-column="2"] li:not(:last-child),
.rs-template__desc ol[data-column="2"] li:not(:last-child) {
	margin: 0;
}

@media (max-width: 991.98px) {

	.rs-template__desc ul[data-column="2"] li,
	.rs-template__desc ol[data-column="2"] li {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}

	.rs-template__desc ul[data-column="2"] li:not(:last-child),
	.rs-template__desc ol[data-column="2"] li:not(:last-child) {
		margin-bottom: 3px;
	}
}

.rs-template__desc ul li:not(:last-child),
.rs-template__desc ol li:not(:last-child) {
	margin-bottom: 0.3rem;
}

.rs-template__desc>*:first-child {
	margin-top: 0 !important;
}

.rs-template__desc>*:last-child {
	margin-bottom: 0 !important;
}

.rs-template__img {
	border-radius: 2.4rem;
	width: 59.2rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.rs-template__img {
		width: 100%;
		border-radius: 1.2rem;
	}
}

.rs-template__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.rs-template__block .map {
	height: 364px;
	width: 100%;
}

[id*="wait_comp"] {
	display: none;
}

.rs-template+.rs-form {
	margin-top: 23.6rem;
}

@media (max-width: 991.98px) {
	.rs-template+.rs-form {
		margin-top: 4rem;
	}
}