@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
button,
input,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

fieldset,
img {
	border: 0;
}

img,
object,
embed {
	vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

q:before,
q:after {
	content: "";
}

a * {
	cursor: pointer;
}

input,
textarea {
	outline: none;
}

:root {
	--font-size-general: 16px;
	--line-height-general: 1.2;
	--default-font: "Roboto", sans-serif;
	--color-main: #302720;
	--color-white: #fff;
	--color-active: #ffb601;
	--color-second: #969799;
	--color-icon-pink: #f3aebf;
	--color-icon-teal: #a1d6d2;
	--color-icon-coral: #f3b9b2;
	--color-icon-lavender: #b7bbe7;
	--color-icon-mustard: #e1cea1;
	--color-icon-steel-blue: #a9c7ce;
	--color-icon-taupe: #cab8b3;
	--color-icon-cerulean: #99cfe1;
	--color-icon-fuchsia-pink: #f7abd6;
	--color-icon-caramel: #e6c1aa;
	--color-count: #bfbfbf;
	--color-search: #fefefe;
	--color-main-rgb: 48, 39, 32;
	--color-dark: #000;
	--bg-main: linear-gradient(121.33deg, #a79b7d 0%, #dfeea4 100%);
	--bg-tools: #302720;
	--bg-body: #dfeea4;
	--bg-pink: #e85d7f;
	--bg-teal: #46aea7;
	--bg-coral: #e87466;
	--bg-mustard: #c49d43;
	--bg-lavender: #6f78cf;
	--bg-steel-blue: #53909d;
	--bg-taupe: #957167;
	--bg-link: #e8e6d4;
	--bg-cerulean: #339fc4;
	--bg-fuchsia-pink: #ef58ad;
	--bg-caramel: #cd8456;
	--bg-gold: #ffb501;
	--bg-rgb-rating: 232, 230, 212;
	--bg-gold-active: #fcc53a;
	--bg-swiper-gradient-next: linear-gradient(270deg, #c0c08f 52.6%, rgba(195, 197, 145, 0) 100%);
	--bg-swiper-gradient-prev: linear-gradient(90deg, #a99d7e 52.6%, rgba(195, 197, 145, 0) 100%);
	--bg-swiper-gradient-next-mobile: linear-gradient(270deg, #aca381 52.6%, rgba(195, 197, 145, 0) 100%);
}

html {
	height: 100%;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font: var(--font-size-general) / var(--line-height-general) var(--default-font);
	font-weight: 500;
	height: 100%;
	min-width: 320px;
	position: relative;
	color: var(--color-main);
	background-color: var(--bg-body);
}

@media screen and (max-width: 640px) {
	body.show-search .logo,
	body.show-search .action-search,
	body.show-search .lang-drop {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	body.show-search .search-form {
		transform: translate3d(0, 70px, 0);
	}
}

body.show-search .autocomplete {
	transform: scale(1) translate3d(-50%, 0, 0) rotateX(0);
	opacity: 1;
	visibility: visible;
}

body.show-search .mask {
	opacity: 1;
	visibility: visible;
}

a {
	color: #2600ff;
	text-decoration: none;
}

input {
	outline: none;
	-webkit-appearance: none;
	border-radius: 0;
}

* {
	box-sizing: border-box;
	outline: none;
}

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

* ::-moz-selection {
	background: #2600ff;
	color: #fff;
}

* ::selection {
	background: #2600ff;
	color: #fff;
}

.svg-icon {
	display: inline-block;
	vertical-align: top;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: rgba(var(--color-main-rgb), 0.5);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: rgba(var(--color-main-rgb), 0.5);
	opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: rgba(var(--color-main-rgb), 0.5);
	opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: rgba(var(--color-main-rgb), 0.5);
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
	color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
	color: transparent;
}

input.placeholder,
textarea.placeholder {
	color: rgba(var(--color-main-rgb), 0.5) !important;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	background-image: var(--bg-main);
}

.wrapper::before {
	content: "";
	background-image: url(../images/bg.png);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.container {
	max-width: 1156px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

@media screen and (max-width: 767px) {
	.container {
		padding: 0 10px;
	}
}

.header-top {
	display: flex;
	justify-content: center;
	text-align: center;
	background: var(--bg-tools);
	padding: 7px 20px;
	line-height: 1.143;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 767px) {
	.header-top {
		display: none;
	}
}

.header-text {
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--bg-link);
}

.header {
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
}

@media screen and (max-width: 767px) {
	.header {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 767px) {
	.header.second {
		background-color: var(--bg-tools);
	}
	.header.second .action-search {
		color: var(--color-search);
	}
	.header.second .lang-drop .btn {
		color: var(--color-white);
	}
}

.header-panel {
	padding: 25px 0;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

@media screen and (max-width: 767px) {
	.header-panel {
		gap: 20px;
		padding: 10px 0;
		min-height: 90px;
	}
}

.logo,
.action-search,
.lang-drop {
	opacity: 1;
	visibility: visible;
	transition:
		opacity 0.3s,
		visibility 0.3s;
}

.logo {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
}

@media screen and (max-width: 640px) {
	.logo {
		flex-shrink: 1;
		flex-grow: 1;
	}
}

.logo img {
	width: 100%;
	max-width: 370px;
	height: auto;
}

@media screen and (max-width: 767px) {
	.logo img {
		max-width: 276px;
	}
}

.search-form {
	position: relative;
	z-index: 6;
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	justify-content: flex-end;
}

@media screen and (max-width: 640px) {
	.search-form {
		position: absolute;
		top: -50px;
		left: 0;
		right: 0;
		transform: translate3d(0, 0, 0);
		transition: transform 0.3s;
	}
}

.search-form .form {
	display: flex;
	border-radius: 20px;
	overflow: hidden;
	max-width: 480px;
	width: 100%;
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
	background-color: var(--color-white);
	height: 50px;
}

@media screen and (max-width: 640px) {
	.search-form .form {
		max-width: 100%;
	}
}

.search-form .input {
	font-family: inherit;
	border: none;
	height: 100%;
	width: 100%;
	flex-shrink: 1;
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	color: var(--color-main);
	padding: 15px 0 15px 20px;
}

.btn-search {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	min-width: 70px;
	color: var(--color-main);
	border: none;
	background-color: transparent;
	cursor: pointer;
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.btn-search:hover {
		color: var(--color-active);
	}
}

@media screen and (max-width: 640px) {
	.btn-search {
		min-width: 50px;
	}
}

.btn-close {
	background: none;
	border: none;
	font-size: 14px;
	padding: 0 10px;
	display: none;
}

@media screen and (max-width: 640px) {
	.btn-close {
		display: flex;
		align-items: center;
	}
}

.action-search {
	background: none;
	border: none;
	font-size: 20px;
	display: none;
}

@media screen and (max-width: 640px) {
	.action-search {
		display: flex;
	}
}

.lang-drop {
	flex-shrink: 0;
	flex-grow: 0;
	position: relative;
}

.lang-drop.show .drop-hidden {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.lang-drop.show .btn {
	color: var(--bg-teal);
}

.lang-drop.show .btn svg {
	transform: rotate(180deg);
}

.lang-drop .btn {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	border: none;
	font-size: 14px;
	color: var(--color-main);
	background-color: transparent;
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.lang-drop .btn:hover {
		color: var(--bg-teal);
	}
}

.lang-drop .btn img {
	max-width: 30px;
}

.lang-drop .btn svg {
	transition: transform 0.3s;
}

.lang-drop img {
	height: auto;
	flex-grow: 0;
	flex-shrink: 0;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}

.drop-hidden {
	position: absolute;
	z-index: 10;
	background: var(--color-white);
	border: 5px solid rgba(70, 174, 167, 0.5);
	right: 0;
	overflow: hidden;
	top: calc(100% + 10px);
	border-radius: 20px 0 20px 20px;
	max-height: 240px;
	min-width: 130px;
	overflow-y: auto;
	font-size: 14px;
	padding: 10px;
	opacity: 0;
	transform: translate3d(0, -10%, 0);
	visibility: hidden;
	transition:
		opacity 0.3s,
		transform 0.3s,
		visibility 0.3s;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.drop-hidden a {
	display: flex;
	align-items: center;
	padding: 5px;
	border-radius: 10px;
	gap: 10px;
	color: var(--color-main);
	transition: background-color 0.3s;
}

.drop-hidden a:hover {
	background-color: var(--bg-link);
}

.drop-hidden img {
	max-width: 20px;
}

.autocomplete {
	position: absolute;
	z-index: 10;
	top: 100%;
	min-height: 54px;
	width: 100%;
	left: 50%;
	padding: 15px;
	box-shadow:
		0 8px 20px -6px rgba(24, 39, 75, 0.05),
		0 6px 9px -6px rgba(24, 39, 75, 0.02);
	background: var(--color-white);
	border: 5px solid rgba(48, 39, 32, 0.5);
	border-radius: 20px;
	transform: scale(0.98) translate3d(-50%, 15px, 0) rotateX(25deg);
	opacity: 0;
	visibility: hidden;
	transform-origin: top;
	transition:
		transform 0.3s,
		opacity 0.3s,
		visibility 0.3s;
	max-height: calc(100vh - 184px);
	overflow: auto;
}

@media screen and (max-width: 767px) {
	.autocomplete {
		top: calc(100% + 10px);
	}
}

@media screen and (max-width: 480px) {
	.autocomplete .main-flex {
		--flex-items: 1;
	}
}

.wrapper-list {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.autocomplete-list {
	display: flex;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
	overflow-x: auto;
	gap: 20px;
	margin: 0 -15px;
	padding: 0 15px;
}

.autocomplete-list::-webkit-scrollbar {
	display: none;
}

.autocomplete-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
	padding: 5px 20px 5px 10px;
	border-radius: 15px;
	transition: opacity 0.3s;
}

@media screen and (min-width: 1025px) {
	.autocomplete-list a:hover {
		opacity: 0.8;
	}
}

.autocomplete-list i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	overflow: hidden;
	background-color: var(--color-white);
}

[data-attr-list="teal"] {
	background-color: var(--bg-teal);
}

[data-attr-list="pink"] {
	background-color: var(--bg-pink);
}

[data-attr-list="coral"] {
	background-color: var(--bg-coral);
}

[data-attr-list="lavender"] {
	background-color: var(--bg-lavender);
}

.mask {
	--opacity: 0.7;
	--blur: 15px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	background: rgba(var(--color-main-rgb), var(--opacity));
	opacity: 0;
	visibility: hidden;
	transition:
		transform 0.3s,
		opacity 0.3s,
		visibility 0.3s;
}

.main {
	flex-shrink: 1;
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

.section {
	margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
	.section {
		margin-bottom: 30px;
	}
}

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

.section.second {
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.section.second {
		margin-bottom: 10px;
	}
}

.swiper-top .swiper-slide {
	width: auto;
}

.swiper-top .swiper-button-next,
.swiper-top .swiper-button-prev {
	width: 73px;
	font-size: 14px;
	padding: 0 6px;
	color: var(--color-main);
	transition: color 0.2s;
	margin: 0;
	height: 100%;
	top: 0;
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.swiper-top .swiper-button-next:hover,
	.swiper-top .swiper-button-prev:hover {
		color: var(--color-active);
	}
}

.swiper-top .swiper-button-prev {
	justify-content: flex-start;
	left: 0;
	background: var(--bg-swiper-gradient-prev);
}

.swiper-top .swiper-button-next {
	justify-content: flex-end;
	right: 0;
	background: var(--bg-swiper-gradient-next);
}

@media screen and (max-width: 480px) {
	.swiper-top .swiper-button-next {
		--bg-swiper-gradient-next: var(--bg-swiper-gradient-next-mobile);
	}
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-button-next .svg-icon,
.swiper-button-prev .svg-icon {
	width: 1em;
	height: 1em;
}

.swiper-prev,
.swiper-next {
	width: 40px;
	height: 40px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background-color: var(--bg-link);
	color: var(--color-main);
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.swiper-prev:hover,
	.swiper-next:hover {
		background-color: var(--color-main);
		color: var(--color-active);
	}
}

.slide-link {
	line-height: 1.143;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--color-main);
	background-color: var(--color-white);
	padding: 10px 20px;
	border-radius: 15px;
	transition:
		background-color 0.3s,
		color 0.3s;
}

@media screen and (min-width: 1025px) {
	.slide-link:hover {
		color: var(--color-active);
		background-color: var(--color-main);
	}
}

.main-grid {
	display: flex;
}

.section-desc h1,
.section-desc h2,
.section-desc h3 {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-white);
	border-radius: 15px;
	padding: 10px 15px;
	background-color: var(--color-main);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

h1.wp-block-heading {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-white);
	border-radius: 15px;
	padding: 10px 15px;
	background-color: var(--color-main);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.headline-second {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-white);
	border-radius: 15px;
	padding: 10px 15px;
	background-color: var(--color-main);
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.section-desc .wrapped {
	line-height: 1.5;
}

.section-desc p {
	margin-bottom: 15px;
}

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

.section-desc .row {
	margin-bottom: 50px;
}

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

@media screen and (max-width: 480px) {
	.wrapped-grid {
		padding: 0 30px;
	}
}

.grid-media {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.grid-media {
		margin: 0 -5px;
	}
}

.grid-item {
	width: 25%;
	padding: 0 12px;
	margin-bottom: 24px;
	transition: top 0.4s;
}

@media screen and (max-width: 991px) {
	.grid-item {
		width: 33.3333%;
	}
}

@media screen and (max-width: 767px) {
	.grid-item {
		padding: 0 5px;
		margin-bottom: 10px;
		width: 50%;
	}
}

@media screen and (max-width: 480px) {
	.grid-item {
		width: 100%;
	}
}

.card {
	background-color: var(--color-white);
	box-shadow:
		0 8px 20px -6px rgba(24, 39, 75, 0.05),
		0 6px 9px -6px rgba(24, 39, 75, 0.02);
	border-radius: 20px;
	position: relative;
	z-index: 2;
}

[data-attr-card-bg="pink"] {
	border: 5px solid rgba(232, 93, 127, 0.5);
}

[data-attr-card-bg="pink"] .card-headline {
	background-color: var(--bg-pink);
}

[data-attr-card-bg="teal"] {
	border: 5px solid rgba(70, 174, 167, 0.5);
}

[data-attr-card-bg="teal"] .card-headline {
	background-color: var(--bg-teal);
}

[data-attr-card-bg="coral"] {
	border: 5px solid rgba(232, 116, 102, 0.5);
}

[data-attr-card-bg="coral"] .card-headline {
	background-color: var(--bg-coral);
}

[data-attr-card-bg="mustard"] {
	border: 5px solid rgba(196, 157, 67, 0.5);
}

[data-attr-card-bg="mustard"] .card-headline {
	background-color: var(--bg-mustard);
}

[data-attr-card-bg="lavender"] {
	border: 5px solid rgba(111, 120, 207, 0.5);
}

[data-attr-card-bg="lavender"] .card-headline {
	background-color: var(--bg-lavender);
}

[data-attr-card-bg="steel-blue"] {
	border: 5px solid rgba(83, 144, 157, 0.5);
}

[data-attr-card-bg="steel-blue"] .card-headline {
	background-color: var(--bg-steel-blue);
}

[data-attr-card-bg="taupe"] {
	border: 5px solid rgba(149, 113, 103, 0.5);
}

[data-attr-card-bg="taupe"] .card-headline {
	background-color: var(--bg-taupe);
}

[data-attr-card-bg="cerulean"] {
	border: 5px solid rgba(51, 159, 196, 0.5);
	--color-icon-steel-blue: var(--color-icon-cerulean);
}

[data-attr-card-bg="cerulean"] .card-headline {
	background-color: var(--bg-cerulean);
}

[data-attr-card-bg="fuchsia-pink"] {
	border: 5px solid rgba(239, 88, 173, 0.5);
}

[data-attr-card-bg="fuchsia-pink"] .card-headline {
	background-color: var(--bg-fuchsia-pink);
}

[data-attr-card-bg="caramel"] {
	border: 5px solid rgba(205, 132, 86, 0.5);
}

[data-attr-card-bg="caramel"] .card-headline {
	background-color: var(--bg-caramel);
}

.card-headline {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px;
	border-radius: 15px;
	margin-bottom: 15px;
}

.card-headline i {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	font-size: 28px;
	border-radius: 20px;
	background-color: var(--color-white);
}

.card-headline .title {
	font-size: 17px;
	color: var(--color-white);
}

.card-list {
	padding: 0 5px;
	font-weight: 600;
	counter-reset: counter;
}

.card-list li {
	display: flex;
	align-items: center;
	gap: 14px;
}

.card-list a {
	padding: 9px;
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 10px;
	gap: 15px;
	border-radius: 15px;
	color: var(--color-main);
	transition: background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.card-list a:hover {
		background-color: var(--bg-link);
	}
	.card-list a:hover svg {
		opacity: 1;
	}
}

.card-list a:before {
	font-weight: 600;
	font-size: 10px;
	color: var(--color-count);
	counter-increment: counter;
	content: counter(counter);
}

.card-list span {
	font-size: 15px;
	flex-grow: 1;
	flex-shrink: 1;
	word-break: break-all;
}

.card-list svg {
	flex-grow: 0;
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.3s;
}

.card-list img {
	flex-shrink: 0;
	flex-grow: 0;
	max-width: 16px;
	-o-object-fit: cover;
	object-fit: cover;
	height: auto;
}

.wrap-link {
	padding: 15px 20px 20px;
}

.wrap-link .link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 15px;
	padding: 11px;
	background-color: var(--bg-link);
	font-weight: 600;
	font-size: 10px;
	color: var(--color-main);
	transition:
		background-color 0.3s,
		color 0.3s;
}

@media screen and (min-width: 1025px) {
	.wrap-link .link:hover {
		background-color: var(--bg-tools);
		color: var(--color-active);
	}
}

.wrap-link span {
	font-size: 15px;
}

.wrap-link svg {
	flex-grow: 0;
	flex-shrink: 0;
}

.alphabet {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.alphabet {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 480px) {
	.alphabet {
		justify-content: space-between;
	}
}

@media screen and (max-width: 390px) {
	.alphabet {
		justify-content: center;
	}
}

.alphabet .item.active a,
.alphabet .item.active span {
	background-color: var(--bg-tools);
	color: var(--color-active);
}

.alphabet a,
.alphabet span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 2px;
	background-color: var(--color-white);
	font-size: 14px;
	color: var(--color-main);
	line-height: 1.143;
	border-radius: 15px;
	min-width: 36px;
}

.alphabet a {
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.alphabet a:hover {
		background-color: var(--bg-tools);
		color: var(--color-active);
	}
}

.tags-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.tags-list:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.tags-list {
		margin-bottom: 20px;
	}
}

.tags-list a {
	display: block;
	background-color: var(--color-white);
	border-radius: 15px;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1.143;
	color: var(--color-main);
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.tags-list a:hover {
		background-color: var(--bg-tools);
		color: var(--color-active);
	}
}

[data-attr-bg-letter="pink"] {
	background-color: var(--bg-pink);
}

[data-attr-bg-letter="teal"] {
	background-color: var(--bg-teal);
}

[data-attr-bg-letter="coral"] {
	background-color: var(--bg-coral);
}

[data-attr-bg-letter="mustard"] {
	background-color: var(--bg-mustard);
}

.letter-wrap {
	width: 100%;
	margin-bottom: 10px;
}

.letter-wrap .letter {
	display: flex;
	align-items: center;
	border-radius: 15px;
	padding: 10px 20px;
	font-weight: 700;
	font-size: 17px;
	color: var(--color-white);
	line-height: 1.1767;
	text-transform: uppercase;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.breadcrumb-list.second {
	justify-content: center;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.breadcrumb-list.second {
		margin-bottom: 10px;
	}
}

.breadcrumb-list a,
.breadcrumb-list span {
	display: flex;
	align-items: center;
	gap: 5px;
	transition: opacity 0.3s;
	font-weight: 400;
	font-size: 12px;
}

.breadcrumb-list a {
	color: rgba(var(--color-main-rgb), 0.5);
}

@media screen and (min-width: 1025px) {
	.breadcrumb-list a:hover {
		opacity: 0.7;
	}
}

.breadcrumb-list span {
	color: var(--color-main);
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumb-list li:first-child::before {
	display: none;
}

.breadcrumb-list li::before {
	content: "";
	background-image: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.5" d="M1.47852 4.88627C1.47852 4.61012 1.70237 4.38627 1.97852 4.38627H7.01855L5.35645 2.73002C5.1609 2.53523 5.15985 2.21865 5.35449 2.02299C5.54923 1.8275 5.86584 1.82656 6.06152 2.02103L8.58301 4.53177C8.67685 4.62545 8.72936 4.75269 8.72949 4.88529C8.7295 5.01811 8.67703 5.14598 8.58301 5.23978L6.06152 7.75052C5.86584 7.94514 5.54927 7.94416 5.35449 7.74857C5.15996 7.55288 5.16089 7.23629 5.35645 7.04154L7.01758 5.38627H1.97852C1.70251 5.38627 1.47874 5.16222 1.47852 4.88627Z" fill="%23302720"/></svg>');
	width: 10px;
	height: 10px;
}

.breadcrumb-list svg {
	font-size: 16px;
}

.headline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 10px;
}

.headline .wrap {
	flex-shrink: 1;
	flex-grow: 1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.headline .title {
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
}

.headline i {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	padding: 9px;
	flex-shrink: 0;
	flex-grow: 0;
	font-size: 28px;
}

.headline .links {
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.headline .links img {
	max-width: 24px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	-o-object-fit: cover;
	object-fit: cover;
}

.headline .links a {
	transition: transform 0.3s;
}

@media screen and (min-width: 1025px) {
	.headline .links a:hover {
		transform: scale(1.05);
	}
}

[data-attr-bg-icon="pink"] {
	background-color: var(--bg-pink);
}

.categories-description {
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.5;
}

.categories-description .title {
	font-weight: 600;
	font-size: 16px;
}

.nano {
	height: 64px;
	position: relative;
}

@media screen and (max-width: 767px) {
	.nano {
		height: 164px;
	}
}

.nano .nano-content {
	padding: 0 10px 0 0;
}

.nano .nano-pane {
	width: 3px;
}

.nano > .nano-pane {
	z-index: 1;
	background-color: rgba(48, 39, 32, 0.1);
}

.nano > .nano-pane > .nano-slider {
	margin: 0;
	background-color: rgba(48, 39, 32, 0.5);
}

.nano::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 20px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.nano.is-bottom::after {
	opacity: 0;
}

.section-wrapper {
	border: 5px solid rgba(232, 93, 127, 0.5);
	border-radius: 20px;
	padding: 15px;
	box-shadow:
		0 8px 20px -6px rgba(24, 39, 75, 0.05),
		0 6px 9px -6px rgba(24, 39, 75, 0.02);
	background: var(--color-white);
	margin-top: 20px;
}

.section-wrapper:first-child {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.section-wrapper:first-child {
		margin-top: -10px;
	}
}

@media screen and (max-width: 767px) {
	.section-wrapper {
		border: none;
		padding: 20px 10px;
		margin: -10px -10px 0;
		box-shadow: none;
		border-radius: 0;
	}
}

@media screen and (max-width: 767px) {
	.section-wrapper.second {
		margin-top: 30px;
	}
}

.section-wrapper[data-attr-bg="gray"] {
	border-color: rgba(48, 39, 32, 0.5);
}

.twocolumns {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 991px) {
	.twocolumns {
		align-items: center;
	}
}

@media screen and (max-width: 767px) {
	.twocolumns {
		flex-direction: column;
	}
}

.twocolumns .column {
	flex-shrink: 1;
	flex-grow: 1;
	gap: 20px;
}

.twocolumns .column.second {
	flex-grow: 0;
	flex-shrink: 0;
	width: 300px;
}

@media screen and (max-width: 480px) {
	.twocolumns .column.second {
		width: 100%;
		flex-grow: 1;
		flex-shrink: 1;
	}
}

.twocolumns .text {
	line-height: 1.5;
	font-weight: 400;
	font-size: 13px;
}

.twocolumns .row {
	margin-bottom: 20px;
}

.twocolumns .row:last-child {
	margin-bottom: 0;
}

.twocolumns .group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.twocolumns .wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--bg-link);
	border-radius: 15px;
	padding: 10px 20px;
	font-size: 40px;
}

.twocolumns .wrap span {
	font-size: 14px;
}

.twocolumns .wrap svg {
	flex-shrink: 0;
	flex-grow: 0;
}

.visit-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	line-height: 1.4546;
	border-radius: 15px;
	padding: 14px 50px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-active);
	background-color: var(--color-main);
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.visit-link:hover {
		color: var(--color-main);
		background-color: var(--bg-link);
	}
}

.visit-link span {
	font-size: 22px;
}

.slider-wrapper {
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
}

.main-title {
	line-height: 1.5;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 3px;
}

.column-card {
	display: block;
	position: relative;
	padding-bottom: 118%;
	border-radius: 15px;
	overflow: hidden;
}

.column-card img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.column-card .sticky {
	position: absolute;
	padding: 10px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
}

.column-card .link {
	border-radius: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	background-color: var(--bg-link);
	padding: 11px;
	font-size: 10px;
	font-weight: 600;
	color: var(--color-main);
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.column-card .link:hover {
		background-color: var(--color-main);
		color: var(--color-active);
	}
}

.column-card .link span {
	font-size: 15px;
}

.main-flex {
	--flex-gap: 15px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--flex-gap);
	--flex-items: 4;
	counter-reset: counter;
}

@media screen and (max-width: 991px) {
	.main-flex {
		--flex-items: 3;
	}
}

@media screen and (max-width: 767px) {
	.main-flex {
		--flex-items: 2;
		--flex-gap: 10px;
		gap: 15px var(--flex-gap);
	}
}

.main-flex .th {
	width: calc((100% / var(--flex-items)) - (((var(--flex-items) - 1) / var(--flex-items)) * var(--flex-gap)));
}

.card-second .media {
	flex-shrink: 0;
	flex-grow: 0;
	display: block;
	position: relative;
	padding-bottom: 72.4%;
	border-radius: 15px;
	overflow: hidden;
	transition:
		background-color 0.3s,
		box-shadow 0.3s;
}

@media screen and (min-width: 1025px) {
	.card-second .media:hover::before {
		opacity: 1;
	}
	.card-second .media:hover .group {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.card-second .media::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	transition: opacity 0.3s;
	box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
	background-color: rgba(48, 39, 32, 0.6);
}

@media screen and (max-width: 1024px) {
	.card-second .media::before {
		opacity: 1;
	}
}

.card-second .img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.card-second .group {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	padding: 10px;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translate3d(0, 20%, 0);
	opacity: 0;
	transition:
		opacity 0.3s,
		transform 0.3s;
}

@media screen and (max-width: 1024px) {
	.card-second .group {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media screen and (max-width: 390px) {
	.card-second .group {
		gap: 5px;
	}
}

.card-second .link {
	border-radius: 15px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
	background-color: var(--bg-link);
	padding: 11px;
	font-size: 10px;
	font-weight: 600;
	color: var(--color-main);
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.card-second .link:hover {
		color: var(--color-active);
		background-color: var(--color-main);
	}
}

@media screen and (max-width: 390px) {
	.card-second .link {
		padding: 8px;
		gap: 5px;
	}
}

.card-second .link span {
	font-size: 15px;
}

@media screen and (max-width: 390px) {
	.card-second .link span {
		font-size: 13px;
	}
}

.card-second .content {
	padding: 5px;
	margin-top: 10px;
}

.card-second .title {
	font-size: 14px;
	color: var(--color-main);
}

.card-second a.title {
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.card-second a.title:hover {
		color: var(--color-active);
	}
}

.top-card {
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 11px;
}

@media screen and (max-width: 767px) {
	.top-card {
		gap: 5px;
	}
}

.top-card:before {
	font-weight: 600;
	font-size: 15px;
	counter-increment: counter;
	content: counter(counter);
}

.top-card .text {
	text-transform: uppercase;
	color: var(--color-main);
	font-weight: 700;
	font-size: 17px;
	transition: color 0.3s;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
	.top-card .text {
		font-size: 16px;
	}
}

@media screen and (max-width: 390px) {
	.top-card .text {
		font-size: 14px;
	}
}

.top-card img {
	max-width: 24px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (min-width: 1025px) {
	a.top-card:hover .text {
		color: var(--color-active);
	}
}

.bottom-link {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.bottom-link {
		margin-top: 20px;
	}
}

.bottom-link .link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 13px;
	line-height: 1.5;
	gap: 10px;
	text-transform: uppercase;
	color: var(--color-main);
	border-radius: 15px;
	background-color: var(--bg-link);
	padding: 15px;
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.bottom-link .link:hover {
		background-color: var(--bg-tools);
		color: var(--color-active);
	}
}

.bottom-link .link span {
	font-size: 20px;
}

@media screen and (max-width: 390px) {
	.bottom-link .link span {
		font-size: 14px;
	}
}

.headline-section {
	margin-bottom: 25px;
}

.headline-section .title {
	font-weight: 800;
	font-size: 26px;
	color: var(--color-dark);
}

.headline-section .date {
	margin-top: 5px;
	font-size: 14px;
}

.general-content .row {
	margin-bottom: 50px;
}

.general-content .row:last-child {
	margin-bottom: 0;
}

.general-content .title {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-dark);
	margin-bottom: 15px;
}
.general-content h2 {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-dark);
	margin-bottom: 15px;
}

.general-content p {
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.6;
}

.general-content p:last-child {
	margin-bottom: 0;
}

.general-content ul {
	list-style-type: disc;
	padding-left: 20px;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.general-content ul:last-child {
	margin-bottom: 0;
}

.general-content li {
	margin-bottom: 5px;
}

.general-content li:last-child {
	margin-bottom: 0;
}

.general-content a {
	color: var(--color-active);
}

@media screen and (min-width: 1025px) {
	.general-content a:hover {
		text-decoration: underline;
	}
}

.pagination-list {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	justify-content: center;
}

.pagination-list .list {
	display: flex;
	gap: 5px;
}

.pagination-list .item {
	height: 40px;
	min-width: 40px;
}

@media screen and (max-width: 767px) {
	.pagination-list .item {
		display: none;
	}
}

.pagination-list .item.pager {
	display: flex;
	align-items: center;
}

.pagination-list .item.pager a {
	padding: 10px;
	font-size: 10px;
	border-radius: 15px;
}

@media screen and (max-width: 767px) {
	.pagination-list .item.active {
		display: block;
	}
}

.pagination-list .item.active a {
	pointer-events: none;
	color: var(--color-active);
	background-color: var(--color-main);
}

.pagination-list a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
	width: 100%;
	height: 100%;
	color: var(--color-main);
	font-weight: 600;
	font-size: 15px;
	border-radius: 15px;
	background-color: var(--bg-link);
	transition:
		background-color 0.3s,
		color 0.3s;
}

@media screen and (min-width: 1025px) {
	.pagination-list a:hover {
		color: var(--color-active);
		background-color: var(--color-main);
	}
}

.pagination-list .dots > * {
	background: none;
	box-shadow: none;
}

.card-slide {
	position: relative;
	padding-bottom: 38%;
	border-radius: 15px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.card-slide {
		min-height: 270px;
		padding-bottom: 0;
	}
}

.card-slide .cols {
	padding: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
}

.card-slide .cols::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 115px;
	pointer-events: none;
	width: 100%;
	background: linear-gradient(360deg, #302720 0%, rgba(48, 39, 32, 0) 100%);
}

.card-slide .col {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-grow: 1;
	flex-shrink: 1;
	position: relative;
	z-index: 3;
	overflow: hidden;
}

.card-slide .col.second {
	flex-grow: 0;
	flex-shrink: 0;
}

.card-slide .avatar {
	max-width: 40px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	-o-object-fit: cover;
	object-fit: cover;
}

.card-slide .group {
	overflow: hidden;
}

.card-slide .image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.card-slide .rating {
	padding: 8px 10px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 24px;
	gap: 5px;
	color: var(--color-white);
	background: rgba(var(--bg-rgb-rating), 0.2);
}

.card-slide .rating span {
	font-size: 15px;
}

.card-title {
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 4px;
	color: var(--color-white);
}

.card-link {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--bg-link);
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.card-link:hover {
		color: var(--color-active);
	}
}

.card-link span {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-link svg {
	flex-grow: 0;
	flex-shrink: 0;
}

.form-section {
	max-width: 640px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.form-section {
		padding-bottom: 20px;
	}
}

.form-section .title {
	font-weight: 800;
	font-size: 40px;
	color: var(--color-dark);
	text-align: center;
	margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
	.form-section .title {
		font-size: 30px;
		margin-bottom: 5px;
	}
}

.form-section .sub {
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.form-section .sub {
		margin-bottom: 10px;
	}
}

.form-section .row {
	margin-bottom: 20px;
}

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

.form-section .group {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media screen and (max-width: 767px) {
	.form-section .group {
		flex-direction: column;
	}
}

.form-section .item {
	width: 50%;
}

@media screen and (max-width: 767px) {
	.form-section .item {
		width: 100%;
	}
}

.form-section .name {
	font-size: 16px;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.form-section .textarea,
.form-section .input {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
	background: var(--color-white);
	border: none;
	font-family: inherit;
	font-weight: 400;
	font-size: 16px;
}

.form-section .textarea {
	padding: 20px;
	resize: none;
	height: 120px;
}

.form-section .input {
	padding: 10px 20px;
	height: 50px;
}

.form-section .submit {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-weight: 600;
	font-size: 22px;
	text-transform: uppercase;
	color: var(--color-active);
	background-color: var(--color-main);
	border-radius: 15px;
	padding: 12px;
	width: 100%;
	transition:
		color 0.3s,
		background-color 0.3s;
}

@media screen and (min-width: 1025px) {
	.form-section .submit:hover {
		color: var(--color-main);
		background-color: var(--bg-link);
	}
}

.form-section .text {
	max-width: 340px;
	margin: 0 auto;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: rgba(var(--color-main-rgb), 0.5);
}

.form-section .text a {
	color: var(--color-main);
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.form-section .text a:hover {
		text-decoration: underline;
	}
}

.scrollup {
	position: absolute;
	top: -30px;
	right: 42px;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	z-index: 99;
	background-color: var(--bg-gold);
	border: none;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

@media screen and (min-width: 1025px) {
	.scrollup:hover {
		transform: scale(1.05);
	}
}

@media screen and (max-width: 640px) {
	.scrollup {
		width: 40px;
		height: 40px;
		font-size: 16px;
		top: -20px;
		right: 10px;
	}
}

.footer {
	position: relative;
	z-index: 2;
	margin-top: 80px;
	flex-shrink: 0;
	flex-grow: 0;
	padding: 30px 0;
	background: var(--bg-tools);
}

@media screen and (max-width: 767px) {
	.footer {
		margin-top: 50px;
	}
}

.footer-logo {
	max-width: 278px;
	height: auto;
}

.footer-logo img {
	max-width: 100%;
}

.footer-holder {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-holder .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 34px 64px;
	align-items: center;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

@media screen and (max-width: 767px) {
	.footer-holder .list {
		gap: 34px;
	}
}

.footer-holder .list a {
	color: var(--color-white);
	transition: color 0.3s;
}

@media screen and (min-width: 1025px) {
	.footer-holder .list a:hover {
		color: var(--color-active);
	}
}

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

.copyright {
	text-align: center;
	letter-spacing: 0.03em;
	color: var(--color-second);
}
