@font-face {
	font-family: 'Hellix';
	src: url('../fonts/Hellix-Regular.woff2') format('woff2'),
	url('../fonts/Hellix-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Hellix';
	src: url('../fonts/Hellix-Medium.woff2') format('woff2'),
	url('../fonts/Hellix-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Hellix';
	src: url('../fonts/Hellix-SemiBold.woff2') format('woff2'),
	url('../fonts/Hellix-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

.non-scroll {
	overflow: hidden;
}

.wrapper {
	flex-direction: column;
	display: flex;
	overflow: hidden;
	min-height: 100%;
}

form,
input,
textarea,
button {
	font-family: 'Hellix', sans-serif;
	font-weight: 400;
	font-style: normal;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
}

a img {
	border: none;
}

body {
	font-family: 'Hellix', sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #FFFFFF;
	position: relative;
}

.openPopup {
	overflow: hidden;
}

.core {
	padding-bottom: 100px;
	position: relative;
}

.container {
	max-width: 1325px;
	width: 100%;
	padding: 0 17px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.header {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	padding: 21px 0;
	z-index: 99;
	min-height: 123px;
}

.header-inner {
	display: flex;
	align-items: center;
}

.mover {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: flex-end;
}

.main-menu {
	display: flex;
	align-items: center;
	padding: 0;
	list-style-type: none;
	position: relative;
	margin: 0 auto;
}

.main-menu li {
	margin: 0;
}

.main-menu li a, .submenu-header {
	padding: 7px 12px;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	transition: color 0.3s ease-in-out;
	position: relative;
	text-transform: uppercase;
}

.main-menu li.has-submenu {
	position: relative;
}

.main-menu li.has-submenu .submenu-header {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

/*.main-menu li.has-submenu:after {
	content: "";
	position: absolute;
	width: 11px;
	height: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	right: -6px;
	background-image: url("../img/icon_arrow_down2.svg");
	background-repeat: no-repeat;
	transition: transform 0.3s ease-in-out;
}*/

.has-submenu .submenu-header:after {
	content: "";
	width: 10px;
	height: 8px;
	display: block;
	background-image: url("../img/icon-arrow-down.svg?v=2");
	background-repeat: no-repeat;
	background-color: transparent;
	transition: transform 0.3s ease-in-out;
	border: 0;
	outline: 0;
}

.main-menu li a:hover {
	color: #ffffff;
}

.main-menu > li.has-submenu .child-block {
	position: absolute;
	overflow-y: auto;
	left: 0;
	top: 100%;
	display: none;
	z-index: 10;
	background: transparent;
	padding: 10px 20px;
	margin-left: -10px;
	border-radius: 20px;
}

.main-menu > li.has-submenu .child-block .child-list {
	white-space: nowrap;
	border-radius: 20px;
	min-width: 170px;
	padding: 15px 0;
	background-color: #ffffff;
	box-shadow: 0 0 7px rgba(30, 0, 58, 0.15);
	list-style-type: none;
	overflow: hidden;
}

.main-menu > li.has-submenu .child-block .child-list li a {
	padding: 5px 20px;
	display: block;
	color: #A551F3;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	transition: all 0.3s ease-in-out;
}

.main-menu > li.has-submenu .child-block .child-list li a:hover {
	background-color: #A551F3;
	color: #ffffff;
}

.main-menu > li.has-submenu .child-block .child-list::-webkit-scrollbar {
	width: 3px;
	background: transparent;
}

.main-menu > li.has-submenu .child-block .child-list::-webkit-scrollbar-track {
	margin: 5px;
}

.main-menu > li.has-submenu > ul::-webkit-scrollbar-thumb {
	width: 3px;
	border-radius: 3px;
	background: #000000;
}

.top-link {
	cursor: pointer;
	border-radius: 14px;
	width: 55px;
	height: 55px;
	flex-shrink: 0;
	background-color: rgba(255, 255, 255, 0.2);
	transition: background-color 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
}

.top-link:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.top-link.icon-search {
	background-image: url("../img/icon-search.svg?v=2");
	border: 0;
	outline: none;
	box-shadow: none;
	cursor: pointer;
}

.search-btn {
	cursor: pointer;
}

.top-link.icon-profile {
	background-image: url("../img/icon-profile.svg?v=2");
}

.top-link.icon-favorites {
	background-image: url("../img/icon-favorites.svg?v=2");
}

.header-links {
	display: flex;
	align-items: center;
	gap: 11px;
}

.languages {
	z-index: 2;
	position: relative;
	display: flex;
	margin-left: 11px;
	flex-shrink: 0;
	width: auto;
	min-width: 69px;
}

.languages.active .list-lang {
	display: block;
}

.languages.active .list-lang li {
	margin: 0;
}

.active-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 5px;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
}

.active-lang:after {
	content: "";
	background-image: url("../img/icon-arrow-down.svg?v=2");
	width: 10px;
	height: 8px;
	transition: transform 0.3s ease-in-out;
}

.languages .list-lang {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	top: 100%;
	margin-top: 6px;
	display: none;
	border-radius: 9px;
	overflow: hidden;
	background-color: #ffffff;
	list-style-type: none;
	z-index: 10;
	padding: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.languages .list-lang li a {
	padding: 6px 12px;
	background-color: transparent;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	color: #A551F3;
	transition: all 0.3s ease-in-out;
}

.languages .list-lang li a:hover {
	background-color: #A551F3;
	color: #ffffff;
}

.languages.active .active-lang:after {
	transform: rotate(180deg);
}

.overlay-top {
	width: 100%;
}

.scroll {
	display: flex;
	align-items: center;
}

.logo {
	flex-shrink: 0;
	z-index: 9;
}

#menu-toggle {
	display: none;
}

ul,
ol {
	padding-left: 20px;
}

.box-search {
	position: relative;
	width: 100%;
	max-width: 664px;
	margin: -33px auto 0;
	z-index: 3;
}

.search-form input {
	width: 100%;
	height: 66px;
	border-radius: 15px;
	padding: 0 50px 0 20px;
	font-size: 20px;
	color: #272626;
	outline: none;
	border: 0;
	background-color: #ffffff;
	background-image: url("../img/icon-arrow-down.svg?v=2");
	background-repeat: no-repeat;
	background-position: right 20px center;
	box-shadow: 0 4px 13px rgba(0, 0, 0, 0.1);
}

.categories {
	margin-top: 42px;
}

.categories-inner {
	display: flex;
	align-items: center;
	gap: 10px;
	overflow: auto;
	padding-bottom: 5px;
}

.categories-item {
	border-radius: 50px;
	padding: 7px 17px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(39, 38, 38, 0.3);
	background: #F9F9F9;
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: all 0.3s ease-in-out;
	flex-shrink: 0;
	display: block;
}

.categories-item:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.categories-item.active:after {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	opacity: 1;
}

.categories-item.active {
	color: #FFFFFF;
}

.categories-item:hover:after {
	opacity: 1;
}

.categories-item:hover {
	color: #FFFFFF;
}

.categories-item span {
	position: relative;
	z-index: 2;
}

.swiper-banners {
	padding: 0 1vw;
	position: relative;
	overflow: visible;
}

.banners-wrapper {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 662px);
	margin-right: 0;
	padding-left: 0;
	margin-top: 33px;
	padding-right: 20px;
	box-sizing: content-box;
	overflow: visible;
}

.banner-item {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	border-radius: 20px;
	overflow: hidden;
	padding: 2px;
	display: block;
}

.banner-item img {
	width: 100%;
	height: 233px;
	object-fit: cover;
	border-radius: 20px;
	overflow: hidden;
}

.section-cards {
	margin-top: 38px;
}

h1 {
	font-size: 34px;
	font-weight: 500;
	color: #252525;
}

.cards-inner {
	margin-top: 33px;
	display: flex;
	align-items: stretch;
	gap: 12px;
	flex-wrap: wrap;
}

.card-item {
	width: calc(20% - 10px);
	border-radius: 12px;
	height: 309px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.card-item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 156px;
	z-index: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.card-item-header {
	position: absolute;
	top: 9px;
	left: 12px;
	right: 12px;
	z-index: 1;
}

.card-item-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.card-item-location {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 19px;
	font-weight: 500;
	color: #ffffff;
	position: relative;
}

.card-item-location:before {
	content: "";
	background-image: url("../img/icon-location.svg?v=2");
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 16px;
}

.card-item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-item-favorites {
	background-image: url("../img/icon-heart.svg?v=2");
	background-size: cover;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	transition: all 0.3s ease-in-out;
}

.card-item-favorites.active {
	background-image: url("../img/icon-heart-active.svg?v=2");
}

.card-item-tags {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 5px;
	margin-top: 2px;
}

.card-item-tags span {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	padding: 2px 5px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
}

.card-item-tags.online span {
	background: #82D558;
}

.card-item-tags.offline span {
	background: rgb(134 127 127 / 95%);
}
.card-item-footer {
	position: absolute;
	bottom: 15px;
	left: 12px;
	right: 12px;
	z-index: 1;
}

.model-name {
	font-size: 24px;
	font-weight: 500;
	color: #FFFFFF;
}

.card-item-tariff {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 6px;
	gap: 5px;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
}

.card-item-tariff:before {
	content: "";
	background-image: url("../img/icon-time.svg?v=2");
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 16px;
}

.card-item-tariff span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.card-item-tariff span:first-child:after {
	content: "|";
	color: #FFFFFF;
	font-size: 19px;
	font-weight: 500;
}

.content {
	margin-top: 42px;
}

.content h2 {
	margin-top: 33px;
}

.content h3 {
	font-size: 25px;
	font-weight: 500;
	color: #252525;
	margin-top: 33px;
}

.content h4 {
	font-size: 22px;
	font-weight: 500;
	color: #252525;
	margin-top: 33px;
}

.content h5 {
	font-size: 22px;
	font-weight: 500;
	color: #252525;
	margin-top: 25px;
}

.content p, .content ul li, .content ol li {
	font-size: 16px;
	color: rgba(39, 38, 38, 0.65);
}

.content p, .content ul, .content ol {
	margin-top: 15px;
}

.content .read-more {
	cursor: pointer;
}

.content img {
	margin: 15px auto 0;
	border-radius: 50px;
}

table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	text-align: center;
	margin: 33px auto 0;
	border-radius: 20px;
	overflow: hidden;
	max-width: 1165px;
}

table th,
table td {
	border: 2px solid #F3F3F3;
	padding: 18px 21px;
}

table thead th {
	background-color: #F9F9F9;
	font-size: 22px;
	font-weight: 500;
}

table tr td:first-child {
	background-color: rgba(249, 249, 249, 0.5);
	font-size: 20px;
	font-weight: 500;
	color: #252525;
	width: 250px;
}

table td {
	font-size: 16px;
	color: rgba(39, 38, 38, 0.65);
	background-color: #ffffff;
}

table thead tr:first-child th:first-child {
	border-top-left-radius: 20px;
}

table thead tr:first-child th:last-child {
	border-top-right-radius: 20px;
}

table tbody tr:last-child td:first-child {
	border-bottom-left-radius: 20px;
}

table tbody tr:last-child td:last-child {
	border-bottom-right-radius: 20px;
}

.content-more {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.5s ease;
}

.content-more.active {
	max-height: 5000px;
	opacity: 1;
	display: block !important;
}

.read-more, .read-less {
	cursor: pointer;
	font-weight: 600;
	color: #EB8084;
}

.categories-page {
	margin-top: 33px;
}

.categories-page .categories-inner {
	overflow: inherit;
	flex-wrap: wrap;
}

.categories-page .categories-item {
	border-radius: 50px;
	padding: 9px 17px;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.categories-page .categories-item:after {
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
}

.categories-page .categories-item:hover {
	color: #FFFFFF;
}

.categories-page .categories-item.active:after {
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 1;
}

.categories-page .categories-item.active {
	color: #FFFFFF;
}

.footer {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	padding: 35px 0;
	margin-top: auto;
}

.footer-inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	gap: 30px;
}

.footer-menu {
	display: flex;
	align-items: flex-start;
	gap: 66px;
	width: 100%;
}

.footer-menu-item {
	flex: 1;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.footer-menu-title {
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

.footer-menu-list {
	list-style-type: none;
	text-align: center;
	margin-top: 6px;
	padding: 0;
	width: 100%;
}

.footer-menu-list li {
	width: 100%;
}

.footer-menu-list a {
	padding: 5px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	width: 100%;
	transition: color 0.3s ease-in-out;
}

.footer-menu-list a:hover {
	color: #ffffff;
}

.footer-bottom-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 77px;
}

.footer-bottom-menu a {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
}

.footer-inner img {
	width: 50px;
	margin: 0 auto;
}

.copy {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin-top: 15px;
}

.overlay {
	position: fixed;
	background: rgba(2, 2, 11, 0.6);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1010;
	display: none;
}

.modal_main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: left;
	width: 100%;
	max-width: 1050px;
}

.modal {
	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	text-align: center;
}

.modal_wrapper {
	width: 100%;
	height: auto;
	padding: 40px;
	background: #FFFFFF;
	border-radius: 40px;
	margin: auto;
	position: relative;
	z-index: 0;
}

.modal-profile .modal_main {
	max-width: 549px;
}

.close-icon {
	background-image: url("../img/icon-close.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 16px;
	position: absolute;
	right: 40px;
	top: 52px;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
}

.close-icon:hover {
	opacity: 0.9;
}

.profile-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
}

.tab-button {
	width: 180px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	cursor: pointer;
	background-color: #F9F9F9;
	font-size: 16px;
	color: rgba(39, 38, 38, 0.3);
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.tab-button span {
	position: relative;
	z-index: 2;
}

.tab-button:hover {
	background-color: #f8dddd;
}

.tab-button.active {
	color: #FFFFFF;
}

.tab-button.active:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.tab-button.active:after {
	opacity: 1;
}

.modal-title {
	margin-top: 20px;
	text-align: center;
	font-size: 34px;
	font-weight: 500;
	color: #252525;
}

.form-group {
	margin-top: 20px;
	position: relative;
	transition: all 0.3s ease-in-out;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.form-group label {
	font-size: 16px;
	color: rgba(39, 38, 38, 0.26);
	display: inline-block;
	margin-bottom: 9px;
	margin-left: 17px;
}

.form-group input {
	width: 100%;
	height: 50px;
	border-radius: 50px;
	outline: 0;
	background-color: rgba(249, 249, 249, 0.5);
	border: 1px solid #F3F3F3;
	padding: 0 16px 0 40px;
	font-size: 16px;
	font-weight: 500;
	color: #252525;
	transition: all 0.3s ease-in-out;
}

input:-webkit-autofill {
	background-color: #f9f9f9 !important;
	background-image: none !important;
	-webkit-box-shadow: 0 0 0 1000px #f9f9f9 inset !important;
	-webkit-text-fill-color: #272626 !important;
	transition: background-color 5000s ease-in-out 0s;
}

.form-group input:active, .form-group input:focus {
	border-color: #CACACA;
	background-color: rgb(249, 249, 249);
}

.main-form .form-group.error input {
	border-color: #FF6B00;
}

.form-group-field {
	position: relative;
	width: 100%;
}

.form-group .form-group-field {
	position: relative;
}

.form-group .form-group-field:before {
	content: "";
	width: 20px;
	height: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 17px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}

.form-group-name .form-group-field:before {
	background-image: url("../img/icon-name.svg");
}

.form-group-pass .form-group-field:before {
	background-image: url("../img/icon-pass.svg");
}

.form-group-email .form-group-field:before {
	background-image: url("../img/icon-mail.svg");
}

.form-group-phone .form-group-field:before {
	background-image: url("../img/icon-phone.svg");
}

.form-group-country .form-group-field:before {
	background-image: url("../img/icon-glob.svg");
}

.form-group-city .form-group-field:before {
	background-image: url("../img/icon-map.svg");
}

.form-group-type .form-group-field:before {
	background-image: url("../img/icon-type.svg");
}

.form-group-headcount .form-group-field:before {
	background-image: url("../img/icon-person.svg");
}


::placeholder {
	color: rgba(37, 37, 37, 0.5);
}

.btn-form {
	border-radius: 11px;
	height: 44px;
	width: 100%;
	max-width: 311px;
	margin: 0 auto;
	padding: 5px 15px;
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	border: 0;
	outline: 0;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	overflow: hidden;
	z-index: 0;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.btn-form span {
	position: relative;
	z-index: 2;
}

.btn-form:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-form:hover:after {
	opacity: 1;
}

.t-rules {
	font-size: 13px;
	color: rgba(39, 38, 38, 0.26);
	display: inline-block;
	margin-top: 9px;
	margin-left: 17px;
}

.breadcrumbs {
	display: flex;
	font-size: 16px;
	font-weight: 500;
	color: rgba(39, 38, 38, 0.3);
	margin-top: 42px;
	flex-wrap: wrap;
}

.breadcrumbs a {
	color: rgba(39, 38, 38, 0.65);
	position: relative;
	transition: color 0.3s ease-in-out;
	display: flex;

}

.breadcrumbs a:hover {
	color: rgba(39, 38, 38, 0.80);
}

.breadcrumbs a:after {
	content: "";
	background-image: url("../img/icon-arrow-nav.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

.categories-wrap {
	display: flex;
	align-items: flex-start;
	gap: 25px;
}

.btn-filter {
	flex-shrink: 0;
	border-radius: 9px;
	padding: 5px 20px;
	height: 42px;
	font-size: 17px;
	font-weight: 500;
	color: #FFFFFF;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	overflow: hidden;
	z-index: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 115px;
}

.btn-filter span {
	position: relative;
	z-index: 2;
}

.btn-filter:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-filter:hover:after {
	opacity: 1;
}

.btn-filter:before {
	content: "";
	background-image: url("../img/icon-filter.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	z-index: 2;
	position: relative;
	top: 2px;
}

.filter-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.reset-text {
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #A551F3;
	text-decoration: underline;
}

.modal-filter .close-filter {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../img/icon-close-white.svg"), linear-gradient(90deg, #FC3BB2 0%, #F7906E 100%);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.modal-filter .modal_main {
	max-width: 620px;
}

.modal-filter .modal_wrapper {
	padding: 35px 75px;
}

.modal-filter .modal_close .close-icon {
	position: static;
}

.filter-part {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
}

.filter-arrow {
	position: relative;
	width: 26px;
	height: 26px;
	border-radius: 4px;
	background-color: #F5F5F5;
}

.filter-arrow:after {
	content: "";
	background-image: url("../img/icon-arrow-down2.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.filter-content {
	display: none;
}

.filter-part.active .filter-arrow:after {
	transform: rotate(180deg);
}

.filter-body {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.filter-part > * {
	font-size: 18px;
	font-weight: 500;
	color: #252525;
}

.filter-item {
	margin-top: 15px;
}

.filter-item-top {
	font-size: 18px;
	font-weight: 500;
	color: #252525;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.filter-item-top p {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	max-height: calc(1.2em * 2);
	word-break: break-word;
}

.filter-check {
	margin-top: 10px;
}

.filter-check label,
.filter-check input {
	cursor: pointer;
	margin: 0;
}

.filter-check .check-in input[type="checkbox"], .filter-check .check-in input[type="radio"] {
	display: none;
}

.filter-check label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #252525;
}

.filter-check .check-in input[type="checkbox"] + label .check-copy, .filter-check .check-in input[type="radio"] + label .check-copy {
	width: 38px;
	height: 18px;
	padding: 2px;
	cursor: pointer;
	display: inline-block;
	flex-shrink: 0;
	background-color: #F5F5F5;
	border: 0;
	border-radius: 100px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.check-copy:after {
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	background-color: #FFFFFF;
	border-radius: 50%;
	left: 2px;
	right: auto;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.filter-check .check-in input[type="checkbox"]:checked + label .check-copy, .filter-check .check-in input[type="radio"]:checked + label .check-copy {
	background-color: #A551F3;
}

.filter-check .check-in input[type="checkbox"]:checked + label .check-copy:after, .filter-check .check-in input[type="radio"]:checked + label .check-copy:after {
	left: auto;
	right: 2px
}

.range-slider {
	position: relative;
	height: 24px;
	width: 100%;
	max-width: 160px;
	z-index: 0;
	margin-top: 8px;
}

.range-slider::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 10px;
	max-width: 160px;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	border-radius: 5px;
	z-index: 1;
}

.range-slider input[type=range] {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	height: 24px;
	background: transparent;
	position: absolute;
	top: -4px;
	left: 0;
	pointer-events: none;
	z-index: 3;
}

.range-slider input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: #A551F3;
	border: 4px solid #F8F8F8;
	cursor: pointer;
	pointer-events: all;
	position: relative;
	z-index: 5;
}

.range-slider input[type=range]::-moz-range-thumb {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: #A551F3;
	border: 4px solid #F8F8F8;
	cursor: pointer;
	pointer-events: all;
	position: relative;
	z-index: 5;
}

.range-slider input[type=range]::-ms-thumb {
	height: 24px;
	width: 24px;
	border-radius: 50%;
	background: #A551F3;
	border: 4px solid #F8F8F8;
	cursor: pointer;
	pointer-events: all;
	position: relative;
	z-index: 5;
}

.range-text {
	font-size: 16px;
	font-weight: 500;
	color: rgba(39, 38, 38, 0.3);
}

.categories-main {
	flex-wrap: nowrap !important;
}

.not-favorites-block {
	padding: 70px 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.not-favorites-block h2 {
	font-size: 34px;
	font-weight: 500;
	color: #252525;
	margin-top: 33px;
}

.not-favorites-block p {
	font-size: 22px;
	color: rgba(39, 38, 38, 0.65);
	margin-top: 15px;
}

h2 {
	font-size: 34px;
	font-weight: 500;
	color: #252525;
}

.btn-more {
	flex-shrink: 0;
	border-radius: 11px;
	padding: 5px 10px;
	height: 44px;
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	overflow: hidden;
	z-index: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 33px auto 0;
}

.btn-more span {
	position: relative;
	z-index: 2;
}

.btn-more:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-more:hover:after {
	opacity: 1;
}

.results-caption {
	font-size: 25px;
	color: rgba(39, 38, 38, 0.65);
	text-align: center;
}

.btn-back {
	border-radius: 11px;
	padding: 5px 41px;
	height: 44px;
	font-size: 22px;
	font-weight: 500;
	color: #FFFFFF;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	overflow: hidden;
	z-index: 5;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.btn-back span {
	position: relative;
	z-index: 2;
}

.btn-back.btn-back-arrow {
	position: fixed;
	bottom: 5%;
	left: 5%;
}

.btn-back.btn-back-arrow:before {
	content: "";
	background-image: url("../img/icon-arrow-left.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 2;
}

.btn-back:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-back:hover:after {
	opacity: 1;
}

.model-inner {
	margin-top: 33px;
	display: flex;
	align-items: flex-start;
	gap: 75px;
}

.model-media {
	width: 437px;
	flex-shrink: 0;
}

.model-main {
	position: relative;
}

.model-item {
	height: 542px;
	overflow: hidden;
	border-radius: 33px;
	position: relative;
}

.model-item-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	position: absolute;
	top: 16px;
	left: 13px;
	right: 19px;
	z-index: 5;
}

.model-item-tags {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 5px;
	margin-top: 8px;
}

.model-item-tags span {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	padding: 1px 7px 3px;
	border-radius: 7px;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
}

.swiper-pagination-bullet {
	cursor: pointer;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.35);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 1;
}

.swiper-button-prev:after, .swiper-button-next:after {
	display: none;
}

.btn-arrow-swiper {
	width: 59px;
	height: 59px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.35);
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease-in-out;
	background-repeat: no-repeat;
	background-position: center;
}

.btn-arrow-swiper:hover {
	background-color: rgba(255, 255, 255, 0.65);
}

.swiper-button-prev {
	background-image: url("../img/icon-arr-left.svg");
}

.swiper-button-next {
	background-image: url("../img/icon-arr-right.svg");
}

.slider-img-big, .slider-img-small {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-model-small {
	margin-top: 12px;
}

.model-item-small {
	height: 100px;
	overflow: hidden;
	border-radius: 11px;
	position: relative;
}

.swiper-slide-thumb-active .model-item-small:after {
	background-color: transparent;
}

.model-item-small:after {
	content: "";
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease-in-out;
}

.model-media .card-item-favorites {
	width: 41px;
	height: 41px;
}

.model-case .model-name {
	font-size: 34px;
	color: #252525;
}

.model-location {
	font-size: 25px;
	color: #252525;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.model-location:after {
	content: "";
	background-image: url("../img/icon-location-dark.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 17px;
	height: 18px;
}

.model-box {
	margin-top: 39px;
}

.model-blocks {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 75px;
}

.model-box-detail {
	max-width: 325px;
	width: 100%;
}

.model-caption {
	font-size: 22px;
	font-weight: 500;
	color: #252525;
}

.model-box .categories-inner {
	margin-top: 10px;
	flex-wrap: wrap;
}

.model-box .categories-inner .categories-item {
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	color: #ffffff;
}

.detail-inner {
	margin-top: 10px;
}

.detail-item {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	color: rgba(37, 37, 37, 0.5);
}

.detail-item span:first-child {
	color: #252525;
}

.pref-list {
	list-style-type: none;
	margin-top: 10px;
	padding: 0;
}

.pref-list li a {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: #252525;
	text-decoration: underline;
}

.pref-list li a:before {
	content: "";
	background-image: url("../img/icon-check.svg");
	background-size: cover;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.model-info {
	width: 100%;
}

.model-info-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.model-info-start {
	display: flex;
	align-items: center;
	gap: 13px;
}

.model-active {
	font-size: 16px;
	font-weight: 500;
	color: rgba(37, 37, 37, 0.5);
	margin-bottom: 5px;
}

.tariffs-block {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.tariffs-caption {
	font-size: 16px;
	font-weight: 500;
	color: #252525;
	margin-top: 10px;
}

.tariffs-inner {
	display: flex;
	align-items: stretch;
	gap: 11px;
	margin-top: 10px;
}

.tariffs-item {
	border-radius: 11px;
	background-color: #F8F8F8;
	padding: 14px;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 157px;
}

.tariffs-icon {
	background-image: url("../img/icon-tariff.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 58px;
	height: 59px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	color: #FFFFFF;
}

.tariffs-icon2 {
	background-image: url("../img/icon-tariff2.svg");
}

.tariffs-icon3 {
	background-image: url("../img/icon-night-hr.svg");
	color: #A551F3;
}

.tariffs-icon3 span {
	padding: 0 0 5px 10px;
}

.model-price-all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 11px;
	color: rgba(37, 37, 37, 0.5);
	width: 100%;
}

.model-price {
	font-size: 18px;
	font-weight: 500;
	color: #252525;
}

.model-contacts {
	margin-top: 25px;
	display: flex;
	align-items: stretch;
	flex-direction: column;
	gap: 12px;
}

.model-socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.model-soc {
	width: 51px;
	height: 51px;
	flex-shrink: 0;
	border-radius: 13px;
	background: rgba(181, 110, 247, 0.2);
	position: relative;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.model-soc:before {
	content: "";
	background: rgba(181, 110, 247, 0.4);
	width: 100%;
	height: 100%;
	border-radius: 13px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.model-soc:hover:before {
	opacity: 1;
}

.model-soc:after {
	content: "";
	background-repeat: no-repeat;
	width: 30px;
	height: 31px;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 3;
}

.model-soc.wa:after {
	background-image: url("../img/icon-whatsapp.svg");

}

.model-soc.tg:after {
	background-image: url("../img/icon-telegram.svg");
}

.model-soc.sh:after {
	background-image: url("../img/icon-share.svg");
}

.model-phone {
	height: 51px;
	border-radius: 11px;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: auto;
	position: relative;
}

.phone-link {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 3;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

.phone-text {
	transition: opacity 0.3s ease-in-out;
}

.model-phone.is-open .phone-text {
	opacity: 0;
}

.model-phone.is-open .phone-link {
	opacity: 1;
	pointer-events: auto;
}

.model-description.content {
	margin-top: 58px;
}

.reviews-block {
	margin-top: 58px;
}

.model-description {
	font-size: 16px;
	font-weight: 500;
	color: #252525;
}

.model-description .read-more, .model-description .read-less {
	color: #A551F3;
	text-decoration: underline;
}

.reviews-inner {
	margin-top: 10px;
}

.reviews-item {
	margin-top: 10px;
	border-radius: 11px;
	background-color: #F8F8F8;
	padding: 14px 12px;
}

.reviews-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.name-review {
	font-size: 16px;
	font-weight: 500;
	color: #A551F3;
}

.name-review span {
	color: rgba(171, 69, 132, 0.3);
	margin-left: 5px;
}

.time-review {
	font-size: 16px;
	color: rgba(37, 37, 37, 0.5);
}

.text-review {
	margin-top: 11px;
	font-size: 16px;
	color: #252525;
}

.reviews-item.replies {
	margin-right: 62px;
	background-color: #FFF7FC;
}

.more-reviews {
	cursor: pointer;
	display: flex;
	width: fit-content;
	margin: 19px auto;
	font-size: 16px;
	font-weight: 500;
	color: #A551F3;
	background-image: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}

.more-reviews::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	border-radius: 2px;
	pointer-events: none;
}

.review-comment {
	margin-top: 19px;
}

.review-comment textarea {
	height: 113px;
	resize: none;
	border-radius: 10px;
	background-color: #FCFCFC;
	padding: 8px 18px;
	width: 100%;
	border: 1px solid #F5F5F5;
	outline: none;
}

.btn-comment {
	height: 44px;
	padding: 5px 41px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
	border: 0;
	outline: none;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	cursor: pointer;
	margin-left: auto;
	margin-top: 10px;
	position: relative;
}

.btn-comment span {
	position: relative;
	z-index: 2;
}

.btn-comment:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.btn-comment:hover:after {
	opacity: 1;
}

.only-mob {
	display: none !important;
}

.error-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 70px 0 0;
}

.t1 {
	font-size: 34px;
	font-weight: 500;
	color: #252525;
	text-transform: uppercase;
}

.t2 {
	font-size: 22px;
	color: #737272;
	margin-top: 10px;
}

.icon-404 {
	margin: 57px auto 0;
}

.error-inner .btn-back {
	margin-top: 90px;
}

.filter-desk-wrapper {
	position: relative;
	display: block;
}

.filter-desk {
	margin-top: 33px;
	position: relative;
	z-index: 5;
}

.filter-row {
	display: flex;
}

.filter-row .filter-base {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.filter-row .filter-base > .filter-part:first-child {
	margin-top: 7px;
}

.filter-row .filter-part {
	width: 115px;
	flex-shrink: 0;
}

.filter-row .filter-content {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-row .filter-content .filter-item {
	margin: 0;
	width: 220px;
	height: 42px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	background-color: #FCFCFC;
	position: relative;
	border: 1px solid #F5F5F5;
	overflow: visible;
	transition: all 0.3s ease-in-out;
}

.filter-row .filter-content .filter-item.open {
	border-radius: 10px 10px 0 0;
}

.filter-btns-wrap {
	display: flex;
	gap: 13px;
	margin-left: auto;
	position: absolute;
	right: 17px;
	top: 0;
	z-index: 15;
}

.filter-btns-wrap .btn-apply-filter {
	min-width: 107px;
	margin: 0;
	height: 42px;
	font-size: 17px;
	max-width: 116px;
}

.btn-apply-filter span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.filter-btns-wrap .btn-filter {
	min-width: 107px;
}

.filter-btns {
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	gap: 10px;

}

.filter-item-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px 5px 18px;
	width: 100%;
	cursor: pointer;
}

.filter-item-top:after {
	content: "";
	background-image: url("../img/icon-arrow-down3.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 26px;
	height: 26px;
	transition: transform 0.3s ease-in-out;
	flex-shrink: 0;
}

.filter-item.open .filter-item-top:after {
	transform: rotate(180deg);
}

.filter-desk-body .filter-row {
	margin-top: 20px;
}

.filter-item-body .reset-text {
	margin-left: auto;
	display: block;
	width: fit-content;
}

.btn-filter.open::before {
	background-image: url("../img/icon-close-white.svg");
	transform: rotate(0deg);
}

.filter-row .filter-content .filter-item.filter-range {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	background: transparent;
	border: 0;
}

.range-slider {
	margin-top: 0;
}

.title-flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}

.date-update {
	font-size: 16px;
	color: #252525;
}

.title-top {
	margin: 33px auto 0;
	border-radius: 10px;
	max-width: 832px;
	height: 40px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	font-size: 18px;
	color: #ffffff;
	transform: skewX(-20deg);
}

.title-top-text {
	transform: skewX(20deg);
	display: inline-block;
}

.advantages {
	margin-top: 33px;
}

.advantages-inner {
	display: flex;
	align-items: stretch;
	gap: 17px;
	margin-top: 33px;
}

.advantages-item {
	border-radius: 20px;
	background-color: #F9F9F9;
	overflow: hidden;
	padding: 15px;
	background-repeat: no-repeat;
	background-position: right bottom;
	flex: 1;
}

.advantages-text {
	font-size: 16px;
	color: rgba(39, 38, 38, 0.65);
}

.advantages-item .advantages-title {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
	color: #252525;
	margin-bottom: 10px;
}

.advantages-item .advantages-title:before {
	content: "";
	flex-shrink: 0;
	width: 31px;
	height: 31px;
	background-size: cover;
	background-repeat: no-repeat;
}

.advantages-item-1 .advantages-title:before {
	background-image: url("../img/adv1.svg");
}

.advantages-item-1 {
	background-image: url("../img/adv1_bg.svg");
}

.advantages-item-2 .advantages-title:before {
	background-image: url("../img/adv2.svg");
}

.advantages-item-2 {
	background-image: url("../img/adv2_bg.svg");
}

.advantages-item-3 .advantages-title:before {
	background-image: url("../img/adv3.svg");
}

.advantages-item-3 {
	background-image: url("../img/adv3_bg.svg");
}

.advantages-item-4 .advantages-title:before {
	background-image: url("../img/adv4.svg");
}

.advantages-item-4 {
	background-image: url("../img/adv4_bg.svg");
}

.advantages-item-5 .advantages-title:before {
	background-image: url("../img/adv5.svg");
}

.advantages-item-5 {
	background-image: url("../img/adv5_bg.svg");
}

#menu-toggle {
	display: none;
}

.only-mob-1150 {
	display: none;
}

.header-right {
	display: flex;
	align-items: center;
}

.header-search-wrap {
	position: relative;
}

.header-search-wrap .search-js {
	position: relative;
	z-index: 2;
}

.header-search-form {
	position: relative;
	transition: width .28s ease, opacity .18s ease;
	z-index: 11;
}

.header-search-input {
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	height: 36px;
	width: 0;
	opacity: 0;
	border: 1px solid #F5F5F5;
	background: #fff;
	border-radius: 18px;
	padding: 0 44px 0 12px;
	outline: none;
	font-size: 20px;
	color: #272626;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	transition: width .25s ease, opacity .2s ease;
	z-index: -1;
}

.header-search-wrap.has-open .header-search-input {
	width: 357px;
	opacity: 1;
	height: 66px;
}

.header-search-wrap.has-open .search-btn {
	background-image: url("../img/icon-search.svg"), linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
}

.more-elite {
	margin-top: 33px;
}

.more-elite-wrapper {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 662px);
	margin-right: 0;
	padding-left: 0;
	margin-top: 33px;
	padding-right: 20px;
	box-sizing: content-box;
	overflow: visible;
}

.more-elite .card-item {
	width: auto;
	border-radius: 19px;
	height: auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.more-elite .card-item::after {
	width: 100%;
	height: 100%;
	border-radius: 19px;

	overflow: hidden;
}

.more-elite .card-item-img {
	border-radius: 19px;
	overflow: hidden;
}

.swiper-elites {
	padding: 0 1vw;
	position: relative;
	overflow: visible;
}

.block-profile.content {
	margin-top: 33px;
	position: relative;
	z-index: 5;
}

.add-form {
	margin-top: 33px;
}

.second-form .form-group label {
	color: rgba(39, 38, 38, 0.65);
	margin-bottom: 9px;
	margin-left: 0;
}

.block-profile .content-inner {
	margin-top: 33px;
}

.second-form .form-group input {
	padding: 0 18px;
	border-radius: 10px;
	color: rgba(39, 38, 38, 0.3);
}

.second-form .form-group .form-group-current {
	display: flex;
	align-items: center;
	color: rgba(39, 38, 38, 0.3);
	border-radius: 10px;
	width: 100%;
	height: 50px;
	outline: 0;
	background-color: rgba(249, 249, 249, 0.5);
	border: 1px solid #F3F3F3;
	padding: 0 18px;
	font-size: 16px;
	font-weight: 500;
	color: #252525;
	transition: all 0.3s ease-in-out;
	position: relative;
}

.second-form .form-group .form-group-current:after {
	content: "";
	background-image: url("../img/icon-arrow-down3.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 26px;
	height: 26px;
	position: absolute;
	right: 18px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.second-form .form-group.open .form-group-current:after {
	transform: rotate(180deg);
}

.second-form .form-groups {
	display: grid;
	gap: 20px;
	align-items: start;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 20px;
}

.second-form .form-groups.form-groups-detailed {
	grid-template-columns: repeat(6, 1fr);
}

.second-form .form-group .form-group-current {
	cursor: pointer;
	user-select: none;
	color: rgba(39, 38, 38, 0.3);
}

.second-form .form-group {
	position: relative;
	margin: 0;
}

.second-form .form-group .form-group-hide {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	z-index: 50;
	display: none;
	padding: 12px;
	border: 1px solid #F3F3F3;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

	max-height: 260px;
	overflow-y: auto;
}

.second-form .form-group.open .form-group-current {
	border-color: #CACACA;
	background-color: rgb(249, 249, 249);
}

.second-form .form-group .form-group-hide .reset-text {
	text-align: right;
	margin-left: auto;
	display: block;
	width: fit-content;
}

.second-form .form-group .form-group-hide ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.second-form .form-group .form-group-hide ul li {
	padding: 10px 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s ease;
}

.second-form .form-group .form-group-hide ul li:hover {
	background: #F7F3FF;
}

.add-form .btn-form {
	width: fit-content;
	max-width: inherit;
	margin: 33px auto 0;
	padding: 5px 41px;
}

.profile-btns {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 10px 25px;
}

.profile-btns .btn-prof {
	border-radius: 8px;
	height: 41px;
	padding: 5px 13px 5px 16px;
	min-width: 135px;
	background-color: #F9F9F9;
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 17px;
	font-weight: 500;
	color: #BABABA;
	transition: background-color 0.3s ease-in-out;
	position: relative;
}

.profile-btns .btn-prof:after {
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;

}

.profile-btns .btn-prof.btn-delete:after {
	background-image: url("../img/icon-close2.svg");
}

.profile-btns .btn-prof.btn-exit:after {
	background-image: url("../img/icon-exit.svg");
}

.profile-btns .btn-prof:hover {
	background-color: #faeaea;
}

.form-profile {
	margin-top: 33px;
}

.block-profile .profile-caption {
	margin-top: 33px;
	font-size: 25px;
	font-weight: 500;
	color: #252525;
}

.page-profile .profile-caption {
	margin-top: 33px;
	font-size: 25px;
	font-weight: 500;
	color: #252525;
}

.form-profile .form-edit .form-group-field input {
	padding-right: 40px;
}

.form-profile .form-edit .form-group-field:after {
	content: "";
	background-image: url("../img/icon-edit.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 11px;
	height: 11px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 18px;
}

.form-profile .form-edit .form-group-field-text:after {
	bottom: auto;
	top: 10px;
}

.btn-save {
	max-width: 184px;
	margin-top: 33px;
	font-size: 17px;
	padding: 5px;
}

.profile-btns .btn-top-form {
	padding: 5px 30px;
	color: #FFFFFF;
	background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	overflow: hidden;
	gap: 15px;
}

.profile-btns .btn-top-form span {
	position: relative;
	z-index: 2;
}

.profile-btns .btn-top-form:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 11px;
	background: linear-gradient(90deg, #F758F9 0%, #A551F3 100%);
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: opacity 0.3s ease-in-out;
}

.profile-btns .btn-top-form:hover:after {
	opacity: 1;
}

.profile-btns .btn-top-form:hover {
	background-color: transparent;
}

.profile-btns .btn-top-form:before {
	content: "";
	background-image: url("../img/icon-crown.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	z-index: 2;
	position: relative;
	flex-shrink: 0;
}

.title-inform {
	font-size: 31px;
	font-weight: 500;
	color: #252525;
}

.information-group:first-of-type {
	margin-top: 33px;
}

.information-group {
	margin-top: 50px;
}

.page-profile .information-group .profile-caption {
	margin-top: 0;
}

.photo-add-block {
	display: flex;
	align-items: center;
	gap: 68px;
}

.file-upload-label {
	position: relative;
	width: 307px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid #EBEBEB;
	background-color: rgba(249, 249, 249, 0.5);
	display: flex;
	align-items: center;
	overflow: hidden;
	gap: 10px;
	cursor: pointer;
	padding: 0 17px;
	color: rgba(39, 38, 38, 0.3);
	font-size: 16px;
	font-weight: 500;
}

.file-upload-input {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	left: -100%;
	top: 0;
	bottom: 0;
	right: 0;
}

.file-upload-label::before {
	content: "";
	width: 15px;
	height: 15px;
	background-image: url('../img/icon-file.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.photo-profile-block {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.photo-profile-block img {
	border-radius: 10px;
	overflow: hidden;
	height: 100px;
	width: 100px;
	object-fit: cover;
	margin: 0;
}

.block-selected {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
}

.selected-item {
	height: 33px;
	white-space: nowrap;
	flex-shrink: 0;
	border-radius: 50px;
	background-image: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	position: relative;
	padding: 2px 17px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.selected-del {
	background-image: url("../img/icon-cross.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 7px;
	height: 7px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.selected-del:hover {
	opacity: 0.7;
}

.second-form .form-group .form-group-hide ul li.is-checked {
	background: #F7F3FF;
	font-weight: 600;
}

.second-form p {
	margin: 0;
}

.second-form .form-group-tariffs-profile {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 5px;
	justify-content: space-between;

}

.second-form .form-group-tariffs-profile p {
	font-size: 18px;
	font-weight: 500;
	color: #252525;
}


.second-form .form-group-tariffs-profile .form-group-field{
	max-width: 108px
}

.second-form .form-group .form-group-field-text{
	margin-top: 20px;
}

.second-form .form-group textarea {
	width: 100%;
	min-height: 77px;
	height: auto;
	overflow-y: hidden;
	resize: none;
	border-radius: 10px;
	outline: 0;
	background-color: rgba(249, 249, 249, 0.5);
	border: 1px solid #EBEBEB;
	padding: 10px 40px 10px 17px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(39, 38, 38, 0.65);
	transition: all 0.3s ease-in-out;
}

.profile-btns-model {
	margin: 33px auto 0;
	justify-content: center;
}

.btn-reg-model {
	color: #A551F3;
	background: transparent;
	border: 1px solid #A551F3;
	outline: none;
}

.btn-reg-model:hover {
	color: #ffffff;
	border-color: #ffffff;
}

.form-groups-reg {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	display: grid;
	margin: 30px 0;
}

.modal-reg-model .modal-title {
	margin-top: 0;
}

.reg-model-form .form-group input{
	padding: 0 16px 0 40px;
	border-radius: 50px;
	color: #252525;
}

.reg-model-form .form-group label {
	color: rgba(39, 38, 38, 0.26);
	margin-bottom: 9px;
	margin-left: 17px;
}


.reg-model-form .form-group .form-group-current {
	padding-left: 40px;
	border-radius: 50px;
}

.btn-apply-filter {
	border: none;
	outline: none;
	min-width: 160px;
	text-align: center;
	justify-content: center;
}

.pref-more-toggle {
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #A551F3;
	padding-bottom: 3px;
	margin-top: 10px;
	border-bottom: 1px solid #A551F3;
	display: inline-block;
}

.model-box-pref.js-pref-ready .pref-list,
.model-box-pref.js-pref-ready .pref-more-toggle,
.model-box-pref.js-pref-ready .pref-more-wrap {
	visibility: hidden;
}

.model-box-pref.js-pref-ready.is-ready .pref-list,
.model-box-pref.js-pref-ready.is-ready .pref-more-toggle,
.model-box-pref.js-pref-ready.is-ready .pref-more-wrap {
	visibility: visible;
}


.age-gate {
	border-radius: 50px;
	max-width: 960px;
	padding: 50px;
}

.age-gate .age-gate__headline {
	font-size: 25px;
	font-weight: 500;
}
.age-gate .age-gate__challenge {
	font-size: 18px;
	font-weight: 500;
}

.age-gate .age-gate__subheadline {
	margin-bottom: 30px;
}

.age-gate__wrapper .age-gate__background {
	background: rgba(0, 0, 0, 0.75);
}

.age-gate .age-gate__buttons {
	margin-top: 30px;
	gap: 30px;
}

.age-gate .age-gate__buttons .age-gate__submit{
	height: 38px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 500;
}

.age-gate .age-gate__remember-wrapper {
	margin-bottom: 0;
}

.age-gate .age-gate__remember-text {
	font-size: 14px;
	font-weight: 400;
}

.age-gate__subheadline {
	background-image: url("../img/logo_acompanhante_photo.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 637px;
	height: 77px;
}


.age-gate .age-gate__submit--no {
	min-width: 146px;
	background-image: linear-gradient(90deg, #FD4141 0%, #D00B0B 100%);
}

.age-gate .age-gate__submit--yes {
	min-width: 83px;
	background-image: linear-gradient(90deg, #2ECA71 0%, #17944C 100%);
}


@media screen and (min-width: 1150px) {
	.filter-desk .filter-arrow {
		display: none;
	}

	.filter-desk-body {
		display: none;
	}

	.filter-item-body {
		display: none;
		position: absolute;
		left: -1px;
		top: 100%;
		z-index: 10;
		background-color: #FCFCFC;
		border: 1px solid #F5F5F5;
		border-top: 0;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		min-width: calc(100% + 2px);
		padding: 10px 18px;
		max-height: 320px;
		overflow: auto;
	}

	.filter-item-top {
		font-size: 16px;
		color: rgba(39, 38, 38, 0.3);
	}
}

@media screen and (min-width: 1100px) {
	.main-menu li.has-submenu:hover .child-block {
		display: block;
	}

	.main-menu li.has-submenu:hover .submenu-header:after {
		transform: rotate(180deg);
	}
}

@media screen and (min-width: 1650px) {
	.swiper-banners {
		padding-right: 12vw;
		padding-left: 12vw;
	}

	.swiper-banners .swiper-wrapper {
		margin-left: -11vw;
		margin-right: -11vw;
	}

	.swiper-elites {
		padding-right: 12vw;
		padding-left: 12vw;
	}

	.swiper-elites .swiper-wrapper {
		margin-left: -11vw;
		margin-right: -11vw;
	}
}

@media screen and (min-width: 1850px) {
	.swiper-banners {
		padding-right: 14vw;
		padding-left: 14vw;
	}

	.swiper-banners .swiper-wrapper {
		margin-left: -13vw;
		margin-right: -13vw;
	}

	.swiper-elites {
		padding-right: 14vw;
		padding-left: 14vw;
	}

	.swiper-elites .swiper-wrapper {
		margin-left: -13vw;
		margin-right: -13vw;
	}
}

@media screen and (min-width: 2000px) {
	.swiper-banners {
		padding-right: 16vw;
		padding-left: 16vw;
	}

	.swiper-banners .swiper-wrapper {
		margin-left: -15.5vw;
		margin-right: -15.5vw;
	}

	.swiper-elites {
		padding-right: 16vw;
		padding-left: 16vw;
	}

	.swiper-elites .swiper-wrapper {
		margin-left: -15.5vw;
		margin-right: -15.5vw;
	}
}

@media screen and (max-width: 1350px) {
	.swiper-banners {
		padding: 0 17px;
	}

	.banners-wrapper {
		margin-left: 0;
		margin-top: 33px;
		padding-right: 0;
	}

	.main-menu li a, .submenu-header {
		padding: 7px 10px;
		font-size: 14px;
	}

	.more-elite-wrapper {
		margin-left: 0;
		margin-top: 33px;
		padding-right: 0;
	}


}

@media screen and (max-width: 1300px) {
	.filter-row .filter-content .filter-item {
		width: 193px;
	}
}

@media screen and (max-width: 1200px) {
	.model-inner {
		gap: 35px;
	}

	.filter-row .filter-content .filter-item {
		width: 180px;
	}

	.banners-wrapper {
		width: auto;
		margin-left: 0;
		margin-right: 0;
		padding: 0 17px;
	}

	.swiper-banners {
		padding: 0;
	}

	.swiper-elites {
		padding: 0;
	}

	.more-elite-wrapper {
		width: auto;
		margin-left: 0;
		margin-right: 0;
		padding: 0 17px;
	}

	.model-blocks {
		gap: 35px;
	}
}

@media screen and (max-width: 1150px) {

	.only-mob-1150 {
		display: block !important;
		width: inherit;
	}

	.only-desk-1150 {
		display: none !important;
	}

	.header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#menu-toggle {
		z-index: 99;
		width: 38px;
		height: 38px;
		border-radius: 10px;
		background-color: rgba(255, 255, 255, 0.2);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#menu-toggle span {
		display: block;
		background: #ffffff;
		border-radius: 2px;
		transition: .25s ease-in-out;
	}

	#menu-toggle #hamburger {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 0 6px;
	}

	#menu-toggle #hamburger span {
		width: 18px;
		height: 2px;
		position: relative;
		top: 0;
		right: 0;
		margin: 3px 0;
	}

	#menu-toggle #hamburger span:last-child {
		width: 13px;
		height: 2px;
	}

	#menu-toggle.open #hamburger span:nth-child(1) {
		transform: rotate(-45deg) translate(-1px, 1px);
		margin: 0;
	}

	#menu-toggle.open #hamburger span:last-child {
		width: 18px;
		height: 2px;
	}

	#menu-toggle.open #hamburger span:nth-child(3) {
		opacity: 0;
	}

	#menu-toggle.open #hamburger span:nth-child(2) {
		margin: 0;
		transform: rotate(45deg) translate(0px, -1px);
	}

	.overlay-top {
		position: fixed;
		background-color: #ffffff;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
		padding: 76px 0 0;
	}

	.scroll {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: hidden;
		overflow-y: scroll;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 20px;
	}

	.overlay-top.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	.top-link {
		border-radius: 10px;
		width: 38px;
		height: 38px;
	}

	.header-profile-wrap {
		background-image: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
		border-radius: 10px;
	}

	.active-lang {
		gap: 0;
		padding: 5px;
		font-size: 20px;
		color: #252525;
		width: auto;
		height: auto;
	}

	.active-lang:after {
		display: none;
	}

	.languages .list-lang {
		position: static;
		width: 100%;
		left: 0;
		right: 0;
		top: 100%;
		margin-top: 0;
		display: flex;
		align-items: center;
		border-radius: 0;
		overflow: hidden;
		background-color: transparent;
		list-style-type: none;
		z-index: 10;
		padding: 0;
		box-shadow: none;
	}

	.languages .list-lang li a {
		padding: 5px;
		background-color: transparent;
		display: flex;
		align-items: center;
		text-decoration: none;
		font-size: 20px;
		font-weight: 500;
		color: rgba(37, 37, 37, 0.4);
		transition: all 0.3s ease-in-out;
	}

	.top-link.icon-profile {
		background-color: transparent;
	}

	.languages {
		z-index: 2;
		position: relative;
		display: flex;
		margin-left: 0;
		flex-shrink: 0;
		width: auto !important;
		min-width: auto !important;
		height: auto !important;
	}

	.top-link.icon-favorites {
		background-size: 18px 18px;
	}

	.logo {
		width: 65px;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	#menu-toggle.open {
		background: linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
	}

	.header {
		padding: 22px 0;
		min-height: auto;
	}

	.main-menu li a, .submenu-header {
		padding: 7px 12px;
		font-size: 16px;
		color: #252525;
	}

	.has-submenu .submenu-header:after {
		width: 9px;
		height: 8px;
		background-image: url("../img/icon-arrow-down-dark.svg");
		flex-shrink: 0;
	}

	.main-menu {
		align-items: flex-start;
		padding: 0;
		margin: 0;
		flex-direction: column;
	}

	.mover {
		padding: 0 17px;
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.main-menu li {
		margin: 0;
		white-space: nowrap;
	}

	.header-right {
		display: flex;
		align-items: center;
		gap: 22px;
		flex-direction: row-reverse;
		position: absolute;
		top: 32px;
		right: 18px;
	}

	.header-links {
		gap: 0;
	}

	.header-search-input {
		position: static;
		right: -6px;
		top: 50%;
		transform: none;
		height: 51px;
		width: 100%;
		opacity: 1;
		border: 1px solid #F5F5F5;
		background: #fff;
		border-radius: 12px;
		padding: 0 44px 0 12px;
		outline: none;
		font-size: 16px;
		color: #272626;
		box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
		transition: width .25s ease, opacity .2s ease;
		z-index: -1;
	}

	.header-search-form .search-btn {
		background-image: url("../img/icon-search.svg"), linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
		/* background-size: 19px 19px; */
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 5px;
	}

	.non-scroll {
		overflow: hidden;
	}

	.overlay-top .scroll {
		width: 100%;
		height: calc(100vh - 76px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.header-search-form {
		max-width: 500px;
		margin: 0 auto;
	}

	.main-menu > li.has-submenu .child-block {
		position: static;
		overflow-y: auto;
		display: none;
		z-index: 10;
		background: transparent;
		padding: 0;
		margin-left: 0;
		border-radius: 0;
	}

	.main-menu > li.has-submenu .child-block .child-list {
		white-space: nowrap;
		border-radius: 0;
		min-width: auto;
		padding: 0;
		background-color: transparent;
		box-shadow: none;
		list-style-type: none;
		overflow: hidden;
	}

	.main-menu > li.has-submenu .child-block .child-list li a {
		padding: 7px 27px;
		display: block;
		color: #252525;
		font-size: 16px;
	}

	.banners-wrapper {
		margin-top: 22px;
	}

	.more-elite {
		margin-top: 22px;
	}

	.more-elite-wrapper {
		margin-top: 22px;
	}

	.filter-desk {
		margin-top: 22px;
	}

	.filter-desk-wrapper {
		position: fixed;
		overflow-y: auto;
		overflow-x: hidden;
		inset: 0;
		height: 100vh;
		display: none;
		z-index: 9999;
		text-align: center;
	}

	.filter-desk-wrapper::before {
		content: "";
		position: fixed; /* перекрывает весь экран под контентом */
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 0; /* ниже .filter-wp */
	}

	.filter-main {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: auto;
		text-align: left;
		width: 100%;
		max-width: 1050px;
	}

	.filter-wp {
		width: 100%;
		height: auto;
		padding: 32px 17px;
		background: #FFFFFF;
		border-radius: 0 0 50px 50px;
		margin: auto;
		position: relative;
		z-index: 0;
		max-height: none;
		overflow: visible;
	}

	.filter-head-mob {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.close-icon-filter {
		width: 38px;
		height: 38px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: url("../img/icon-close-white.svg"), linear-gradient(90deg, #A551F3 0%, #F758F9 100%);
		background-position: center;
		background-repeat: no-repeat;
		cursor: pointer;
	}

	.filter-head-right {
		display: flex;
		align-items: center;
		gap: 22px;
	}

	.filter-main .reset-text {
		margin: 28px 0 28px auto;
		text-align: right;
		width: fit-content;
	}

	.filter-row .filter-base {
		display: block;
		width: 100%;
	}

	.filter-row .filter-part {
		width: auto;
	}

	.filter-row .filter-content {
		display: none;
	}

	.filter-row .filter-content .filter-item {
		margin-top: 15px;
		width: auto;
		height: auto;
		display: inherit;
		border-radius: 0;
		background-color: transparent;
		position: relative;
		border: 0;
		overflow: visible;
	}

	.filter-item-top {
		display: block;
		padding: 0;
		width: 100%;
	}

	.filter-main .filter-item .reset-text {
		margin: 5px 0 5px auto;
		text-align: right;
	}

	.filter-item-body {
		display: block !important;
	}

	.filter-btns-wrap {
		margin-left: 0;
		position: static;
		display: block;
	}

	.filter-btns {
		align-items: center;
		flex-direction: row-reverse;
		justify-content: space-between;
		gap: 20px;

	}

	.btn-filter {
		max-width: 250px;
		width: 100%;
	}

	.reset-text {
		white-space: nowrap;
	}

	.title-top {
		margin: 22px auto 0;
	}

	.footer-menu {
		gap: 15px;
		width: 100%;
	}

	.footer-categories .categories-inner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
		overflow: inherit;
		padding-bottom: 0;
	}

	.footer-categories .categories-inner .categories-item {
		font-size: 16px;
		color: #ffffff;
		background: rgba(249, 249, 249, 0.2);
	}

	.footer-inner {
		gap: 15px;
		flex-direction: column-reverse;
	}

	.footer-inner img {
		width: 66px;
	}

	.footer-bottom-menu {
		align-items: center;
		justify-content: center;
		gap: 15px;
		flex-direction: column;
	}

	.banner-item img {
		height: 200px;
	}

	.range-slider input[type=range] {
		top: 0;
	}

	.filter-row .filter-base > .filter-part:first-child {
		margin-top: 0;
	}
}

@media screen and (max-width: 1100px) {
	.card-item {
		width: calc(25% - 9px);
	}

	.categories-wrap {
		gap: 11px;
		flex-direction: column;
	}

	.breadcrumbs {
		margin-top: 22px;
	}

	.categories-page {
		margin-top: 22px;
	}

	.categories-main {
		overflow-x: auto;
		padding-bottom: 5px;
		width: 100%;
	}

	.advantages {
		margin-top: 22px;
	}

	.advantages-inner {
		flex-direction: column;
		gap: 10px;
		margin-top: 22px;
	}

	.second-form .form-groups.form-groups-detailed {
		grid-template-columns: repeat(3, 1fr);
	}

	.filter-item-top {
		display: none;
	}

}

@media screen and (max-width: 900px) {
	.card-item {
		width: calc(33.33% - 8px);
	}

	.only-desk {
		display: none !important;
	}

	.only-mob {
		display: block !important;
	}

	.box-name {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.box-date {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 5px;
		margin-top: 22px;
	}

	.model-inner {
		gap: 0;
		flex-direction: column;
		align-items: center;
		margin-top: 22px;
	}

	.model-description.content {
		margin-top: 22px;
	}

	.model-case .model-name {
		font-size: 28px;
	}

	.model-info {
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.model-box {
		margin-top: 22px;
	}

	.detail-item {
		max-width: 600px;
	}

	.reviews-block {
		margin-top: 22px;
	}

	.model-main {
		margin-top: 22px;
	}

	.model-item {
		border-radius: 25px;
		position: relative;
	}

	.tariffs-block {
		gap: 10px;
		width: 100%;
	}

	.tariffs-item {
		width: 50%;
	}

	.tariffs-box {
		width: 100%;
	}

	.model-blocks {
		gap: 24px;
		flex-direction: column;
	}

	.second-form .form-groups {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.block-profile.content {
		margin-top: 22px;
	}

	.block-profile .content-inner {
		margin-top: 22px;
	}

	.add-form {
		margin-top: 20px;
	}

	.photo-add-block {
		gap: 48px;
	}
}

@media screen and (max-width: 767px) {
	.search-form input {
		height: 51px;
		padding: 0 50px 0 20px;
		font-size: 18px;
	}

	.box-search {
		margin: -25px auto 0;
	}

	.top-link {
		border-radius: 10px;
		width: 38px;
		height: 38px;
	}

	.top-link img {
		width: 18px;
	}

	.categories {
		margin-top: 22px;
	}

	h1 {
		font-size: 28px;
	}

	.content h2 {
		font-size: 28px;
	}

	.section-cards {
		margin-top: 18px;
	}

	.cards-inner {
		margin-top: 22px;
		gap: 10px;
	}

	.card-item {
		width: calc(50% - 5px);
		height: 305px;
	}

	.card-item-header {
		top: 6px;
		left: 8px;
		right: 8px;
	}

	.card-item-location:before {
		width: 9px;
		height: 10px;
	}

	.card-item-location {
		gap: 4px;
		font-size: 12px;
	}

	.card-item-favorites {
		width: 18px;
		height: 18px;
	}

	.card-item-tags span {
		padding: 2px 3px;
		font-size: 9px;
	}

	.card-item-tags {
		gap: 3px;
	}

	.card-item-footer {
		bottom: 10px;
		left: 8px;
		right: 8px;
	}

	.model-name {
		font-size: 20px;
	}

	.card-item-tariff {
		margin-top: 6px;
		gap: 5px;
		font-size: 12px;
	}

	.card-item-tariff:before {
		width: 9px;
		height: 10px;
	}

	.card-item-tariff span:first-child:after {
		font-size: 12px;
	}

	.content {
		margin-top: 22px;
	}

	.content img {
		border-radius: 12px;
	}

	table thead th {
		font-size: 16px;
	}

	table tr td:first-child {
		font-size: 16px;
	}

	table th, table td {
		padding: 14px 18px;
	}

	table {
		display: block;
		overflow-x: auto;
	}

	.core {
		padding-bottom: 80px;
	}

	.footer {
		padding: 25px 0;
	}

	.footer-inner img {
		width: 66px;
	}

	.copy {
		font-size: 12px;
	}

	.modal_wrapper {
		padding: 20px;
		border-radius: 0 0 20px 20px;
	}

	.tab-button {
		width: 120px;
		height: 30px;
	}

	.close-icon {
		right: 20px;
		top: 15px;
	}

	.modal {
		bottom: auto;
		height: 100%;
	}

	.modal-filter .modal_main {
		max-width: 100%;
	}

	.modal-profile .modal_main {
		max-width: 100%;
	}

	.modal-filter .modal_wrapper {
		padding: 35px 24px;
	}

	.modal_main {
		height: auto;
	}

	.not-favorites-block {
		padding: 50px 0;
	}

	.not-favorites-block img {
		max-width: 148px;
	}

	.not-favorites-block h2 {
		font-size: 28px;
		margin-top: 21px;
	}

	.not-favorites-block p {
		font-size: 18px;
		margin-top: 10px;
	}

	h2 {
		font-size: 22px;
	}

	.content h3 {
		font-size: 24px;
		margin-top: 23px;
	}

	.content h4 {
		font-size: 21px;
		margin-top: 23px;
	}

	.btn-more {
		padding: 5px 41px;
		height: 42px;
		font-size: 20px;
		margin: 21px auto 0;
	}

	.results-caption {
		font-size: 22px;
	}

	.btn-back {
		padding: 5px 36px;
		height: 39px;
		font-size: 19px;
		gap: 7px;
	}

	.btn-back.btn-back-arrow {
		left: auto;
		right: 10px;
	}

	.btn-back.btn-back-arrow:before {
		width: 21px;
		height: 21px;
	}

	.model-media {
		width: 100%;
		max-width: 500px;
		flex-shrink: 0;
	}

	.model-item {
		height: 450px;
	}

	.swiper-pagination-bullet {
		width: 9px;
		height: 9px;
	}

	.swiper-model-small {
		margin-top: 6px;
	}

	.model-item-small {
		height: 86px;
		border-radius: 9px;
	}

	.btn-arrow-swiper {
		width: 44px;
		height: 44px;
	}

	.model-item-tags span {
		padding: 3px 5px;
		font-size: 14px;
	}

	.model-item-tags {
		margin-top: 5px;
	}

	.model-item-header {
		top: 12px;
		left: 9px;
		right: 15px;
	}

	.model-media .card-item-favorites {
		width: 30px;
		height: 30px;
	}

	.model-soc {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}

	.model-contacts {
		margin-top: 22px;
		gap: 4px;
	}

	.model-phone {
		height: 40px;
		border-radius: 10px;
		font-size: 18px;
	}

	.model-soc:after {
		width: 22px;
		height: 22px;
	}

	.text-review {
		font-size: 14px;
	}

	.reviews-item.replies {
		margin-right: 0;
		margin-left: 45px;
	}

	.error-inner {
		padding: 60px 0 0;
	}

	.icon-404 {
		margin: 65px auto;
	}

	.error-inner .btn-back {
		margin-top: 0;
	}

	.categories-inner {
		gap: 6px;
	}

	.title-flex {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		justify-content: space-between;
		flex-direction: column;
	}

	.model-socials {
		gap: 7px;
		justify-content: center;
	}

	.more-elite .card-item-img {
		border-radius: 12px;
	}

	.more-elite .card-item {
		border-radius: 12px;
	}

	.more-elite .card-item::after {
		border-radius: 12px;
	}

	.btn-save {
		margin-top: 22px;
	}

	.second-form .form-groups.form-groups-detailed {
		grid-template-columns: repeat(1, 1fr);
	}

	.second-form .form-group-tariffs-profile {
		gap: 5px;
		max-width: 380px;
		margin: 0 auto;
	}

	.form-groups-reg {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		display: grid;
		margin: 20px 0;
	}

	.modal-title {
		font-size: 25px;
	}

	.banner-item img {
		height: 170px;
	}

	.age-gate__subheadline {
		width: 390px;
		height: 47px;
	}

		.age-gate .age-gate__headline {
			font-size: 20px;
		}

	.age-gate .age-gate__subheadline {
		margin-bottom: 20px;
	}

	.age-gate .age-gate__buttons {
		margin-top: 20px;
		gap: 20px;
	}

	.age-gate {
		border-radius: 20px;
		padding: 20px;
	}

	#cmplz-manage-consent .cmplz-manage-consent {
		right: 10px!important;
		padding: 2px 15px!important;
		height: auto!important;
	}

}
@media screen and (max-width: 500px) {
	.age-gate__subheadline {
		width: 271px;
		height: 32px;
	}

	.age-gate .age-gate__challenge {
		font-size: 16px;
	}

	.age-gate .age-gate__buttons .age-gate__submit {
		font-size: 16px;
	}
	.age-gate .age-gate__buttons {
		gap: 11px;
	}
}


@media screen and (max-width: 450px) {

	.card-item {
		height: 195px;
	}

	.model-item {
		height: 402px;
	}

	.tariffs-inner {
		gap: 10px;
		margin-top: 10px;
		flex-wrap: wrap;
	}

	.tariffs-item {
		padding: 14px;
		width: calc(50% - 5px);
		max-width: 100%;
	}

	.model-price {
		font-size: 16px;
	}

	.btn-filter {
		max-width: 60%;
	}

	.categories-page .categories-inner .categories-item {
		width: calc(50% - 3px);
		text-align: center;
	}

	.banner-item img {
		height: 140px;
	}

}

#modal-gallery .close-icon {
	right: 0;
	top: 7px;
	background-image: url("../img/icon-close-white.svg");
	width: 23px;
	height: 23px;
}

#modal-gallery .modal_wrapper {
	padding: 40px 0 15px;
	border-radius: 0;
	background: transparent;
}

#modal-gallery .modal_body {
	background-color: #ffffff;
	padding: 13px;
	border-radius: 35px;
}

#modal-gallery .modal_main {
	min-width: 0;
	max-width: 650px;
}

#modal-gallery .model-item {
	height: 600px;
	/* max-height: 500px; */
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

#modal-gallery .model-item .slider-img-big {
	width: auto;
	height: 600px;
	object-fit: cover;
	border-radius: 35px;
	max-width: 100%;
	object-position: center;
}

.swiper-model-small-pop {
	margin-top: 12px;
}

.swiper-model-small-pop .model-item-small {
	height: 100px;
}

#modal-gallery .btn-arrow-swiper {
	background-color: rgba(39, 38, 38, 0.2);
}

#modal-gallery .btn-arrow-swiper:hover {
	background-color: rgba(39, 38, 38, 0.3);
}

@media screen and (max-width: 1200px) {
	#modal-gallery .modal_body {
		padding: 9px;
		border-radius: 15px;
	}

	#modal-gallery .model-item .slider-img-big {
		border-radius: 15px;
		height: 500px;
	}

	.swiper-model-small-pop .model-item-small {
		height: 60px;
	}

	#modal-gallery .modal_wrapper {
		padding: 40px 10px 15px;
	}

	#modal-gallery .close-icon {
		right: 10px;
	}

	#modal-gallery .model-item {
		max-height: 500px;
	}

}

.btn-form:disabled,
.btn-form[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.sub-menu {
	list-style-type: none;
	padding: 0;
}

/* ===== Video preview badge ===== */
.model-item.is-video,
.model-item-small.is-video {
	position: relative;
}

.video-play-badge {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	pointer-events: none;
}

.video-play-badge:after {
	content: "";
	position: absolute;
	left: 34px;
	top: 28px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 26px solid #fff;
}

/* small badge (thumbs) */
.video-play-badge.small {
	width: 34px;
	height: 34px;
}

.video-play-badge.small:after {
	left: 14px;
	top: 9px;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
}

/* ===== Modal video ===== */
#modal-gallery .model-item.is-video-modal {
	display: flex;
	align-items: center;
	justify-content: center;
}

#modal-gallery .model-video {
	width: 100%;
	height: 600px;
	max-width: 100%;
	border-radius: 35px;
	background: #000;
	object-fit: contain;
}

@media screen and (max-width: 1200px) {
	#modal-gallery .model-video {
		height: 500px;
		border-radius: 15px;
	}
}
@media screen and (max-width: 767px) {
	#modal-gallery .model-video {
		height: 420px;
		border-radius: 15px;
	}
}
