:root {
	--primary-fonts: "Inter", sans-serif;
	--transition-03: all 0.3s ease-in-out;
	--cat-cl-1: #c9da2a;
	--cat-cl-2: #e30177;
	--cat-cl-3: #f26532;
	--cat-cl-4: #3fc4dc;
}

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

/* Works on Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: red;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	padding: 10px;
}

*::-webkit-scrollbar-track {
	background: red;
}

*::-webkit-scrollbar-thumb {
	background-color: #000;
}

::-moz-selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

::selection {
	color: #fff;
	background: #000;
	text-shadow: none;
}

html {
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	line-height: 1;
	font-family: var(--primary-fonts);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

ol,
ul,
li {
	list-style: none;
}

a {
	outline: none;
	color: inherit;
	background-color: transparent;
	text-decoration: none;
	transition: var(--transition-03);
	-webkit-transition: var(--transition-03);
	-moz-transition: var(--transition-03);
	-ms-transition: var(--transition-03);
	-o-transition: var(--transition-03);
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

main {
	display: block;
}

section {
	display: flex;
	flex-direction: column;
	width: 100%;
}

img {
	border-style: none;
}

.img-res {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

/* ! Global css */
.core {
	margin-top: 15rem;
}

.cnt {
	width: 100%;
	margin: 0 auto;
}

.cnt_wp {
	display: flex;
}

.cnt_1440 {
	width: 144rem;
}

.bg-gourmet {
	background-color: var(--cat-cl-1);
}

.bg-shopping {
	background-color: var(--cat-cl-2);
}

.bg-leisure {
	background-color: var(--cat-cl-3);
}

.bg-hotels {
	background-color: var(--cat-cl-4);
}

/* ! Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 12rem;
	padding: 0 5%;
	display: flex;
	align-items: center;
	box-shadow: 0 0 11px hsla(0, 0%, 40%, 0.4);
	z-index: 999;
	background: #fff;
}

.header_logo {
	width: 9rem;
}

.header_logo a {
	display: block;
}

.header_nav {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.header_nav nav {
	display: flex;
}

.header_nav nav ul {
	display: flex;
	gap: 3rem;
}

.header_nav nav ul li {
	position: relative;
	display: block;
}

.nav-item > a {
	font-size: 1.6rem;
	color: #212121;
	font-weight: 600;
	position: relative;
}

.nav-item > a:hover {
	color: #3498db;
}

.nav-item > a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	right: 0;
	bottom: -5px;
	background: #3498db;
	transition: var(--transition-03);
}

.nav-item > a:hover::before {
	width: 100%;
	left: 0;
}

.nav-item.has-dropdown {
	position: relative;
}

.nav-item.has-dropdown .dropdown {
	position: fixed;
	width: 70%;
	background: #fff;
	right: 5%;
	top: 10%;
	border-radius: 25px;
	display: flex;
	pointer-events: none;
	box-shadow: 0px 0px 40px rgba(29, 58, 83, 0.1);
	padding: 4rem 3rem 5rem 3rem;
	z-index: 999;
	opacity: 0;
	transform: translateY(20px);
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-item.has-dropdown.active .dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	visibility: visible;
}

.dropdown_item {
	display: flex;
	width: 25%;
}

.dropdown_item a {
	display: flex;
	flex-direction: column;
}

.dropdown_img {
	width: 20rem;
	height: 20rem;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	padding: 3rem 2rem;
	align-items: center;
	justify-content: center;
}

.dropdown_txt {
	height: 8rem;
	margin-top: 2rem;
	padding-right: 20%;
	font-size: 1.4rem;
	line-height: 2rem;
	color: #212121;
}

.header_lang {
	margin-left: 2rem;
}

.header_lang {
	width: 4rem;
	height: 4rem;
	border-radius: 100%;
	overflow: hidden;
}

.header_lang img {
	object-fit: cover;
	height: 100%;
}

.lang-switch {
	display: flex;
	width: 100%;
	height: 100%;
	display: none;
}

.lang-switch.active {
	display: block;
}

.header_btn {
	margin-left: 2rem;
	display: flex;
}

.header_btn a {
	font-size: 1.6rem;
	color: #fff;
	font-weight: 600;
	background: var(--cat-cl-4);
	height: 4rem;
	width: auto;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2.5rem;
}

.header_btn a:hover {
	background: #3498db;
}

.header_btn.header_btnlight {
	margin-left: 3rem;
}

.header_btn.header_btnlight a {
	background: #fff;
	color: #212121;
	border: 2px solid #212121;
}

.header_btn.header_btnlight a:hover {
	background: #212121;
	color: #fff;
}

.header_search {
	height: 4rem;
	display: flex;
	width: 4rem;
	margin-left: 3rem;
	background: #212121;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	transition: var(--transition-03);
	cursor: pointer;
}

.header_search:hover {
	background: #212121;
}

/* ! Footer */
.footer {
	padding: 5rem 0;
}

.footer .cnt_wp {
	flex-direction: column;
}

.footer_logo {
	width: 8rem;
}

.footer_top {
	display: flex;
	width: 100%;
	align-items: center;
}

.footer_top-right {
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.footer_nav {
	display: flex;
}

.footer_nav ul {
	display: flex;
	gap: 2rem;
	text-align: right;
}

.footer_nav ul li a {
	font-size: 1.4rem;
	color: #777e90;
	font-weight: 600;
	position: relative;
}

.footer_nav ul li a:hover {
	color: #3498db;
}

.footer_app {
	display: flex;
	justify-content: flex-end;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer_app a {
	width: 13rem;
}

.footer_bot {
	display: flex;
	margin-top: 4rem;
	padding-top: 4rem;
	border-top: 2px solid #f4f5f6;
	justify-content: center;
}

.footer_bot ul {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 0.8rem;
}

.footer_bot ul li {
	font-size: 1.6rem;
	color: #777e90;
}

.footer_bot ul li a {
	color: #777e90;
	text-decoration: underline;
}

.footer_bot ul li a:hover {
	color: #3498db;
}

/* ! Homepage */
.Hero {
}

.Hero .cnt_wp {
	height: 60rem;
}

.heroswiper {
	width: 100%;
	height: 100%;
	border-radius: 25px;
}

.hero_img {
	width: 100%;
	height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	width: 4rem;
	height: 4rem;
	border-radius: 100%;
	backdrop-filter: blur(5px);
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-03);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 1.8rem;
	color: #fff;
}

.swiper-button-prev {
	left: -100%;
	right: auto;
}

.heroswiper:hover .swiper-button-prev {
	left: var(--swiper-navigation-sides-offset, 10px);
	right: auto;
}

.swiper-button-next {
	right: -100%;
}

.heroswiper:hover .swiper-button-next {
	right: var(--swiper-navigation-sides-offset, 10px);
	left: auto;
}

.hero_cat {
	margin-top: -5rem;
	position: relative;
	z-index: 2;
}

.hero_cat .cnt_wp {
	width: 90%;
	backdrop-filter: blur(32px);
	background: rgba(252, 252, 253, 0.75);
	box-shadow: 0 40px 64px hsla(0, 0%, 6%, 0.1);
	margin: 0 auto;
	border-radius: 25px;
	flex-direction: row;
	padding: 2.5rem 3rem;
	gap: 5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero_cat_item {
	width: 20rem;
	height: 20rem;
	border-radius: 15px;
	display: flex;
}

.hero_cat_item a {
	display: flex;
	flex-direction: column;
	padding: 3rem 2rem;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.c_txt {
	text-align: center;
	color: #fff;
	font-weight: 500;
	font-size: 1.8rem;
	width: 100%;
	text-transform: uppercase;
}
.c_icn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}

.c_icn img {
	max-height: 10rem;
	height: auto;
}

.homepage_category {
	padding: 10rem 0 5rem;
}

.homepage_category .cnt_wp {
	flex-direction: column;
	gap: 5rem;
}

.homepage_category_item {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: rgba(244, 245, 246, 0.75);
	border-radius: 25px;
	padding: 10rem 5%;
}

.homepage_category_item_title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.homepage_category_item_txt {
	width: 50%;
	font-size: 2.8rem;
	line-height: 3.4rem;
	color: #777e90;
}

.homepage_category_item_listing {
	display: flex;
	width: 100%;
	margin-top: 5rem;
	display: flex;
	width: 100%;
	margin-top: 5rem;
	gap: 2%;
}

.homepage_category_item_box {
	display: flex;
	width: 25%;
	border-radius: 25px;
	overflow: hidden;
}

.homepage_category_item_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.homepage_category_item_box_img {
	height: 20rem;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #ddd;
	position: relative;
	overflow: hidden;
}

.outlets_hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.homepage_category_item_box a:hover .outlets_hover {
	opacity: 1;
}

.outlets_hover_img {
	width: 12rem;
}

.homepage_category_item_box_info {
	width: 100%;
	padding: 3rem 2rem;
	flex-wrap: wrap;
	display: flex;
	background: #fff;
	align-items: center;
	height: 14rem;
}

.homepage_category_item_box_title {
	width: 70%;
	font-size: 2rem;
	font-weight: 600;
	color: #212121;
}

.homepage_category_item_box_botinfo {
	width: 30%;
	display: flex;
	/* margin-top: auto; */
	/* justify-content: flex-end; */
	align-items: center;
}

.homepage_category_item_box_location {
	font-size: 1.6rem;
	font-weight: 500;
	color: #777e90;
}

.homepage_category_item_box_promo {
	padding: 1rem 1rem;
	font-size: 2rem;
	font-weight: 800;
}

.gourmet_cat .homepage_category_item_box_promo {
	border: 2px solid var(--cat-cl-1);
	color: var(--cat-cl-1);
}
.shopping_cat .homepage_category_item_box_promo {
	border: 2px solid var(--cat-cl-2);
	color: var(--cat-cl-2);
}
.leisure_cat .homepage_category_item_box_promo {
	border: 2px solid var(--cat-cl-3);
	color: var(--cat-cl-3);
}
.hotels_cat .homepage_category_item_box_promo {
	border: 2px solid var(--cat-cl-4);
	color: var(--cat-cl-4);
}

.gourmet_cat .homepage_category_item_title {
	color: var(--cat-cl-1);
}
.shopping_cat .homepage_category_item_title {
	color: var(--cat-cl-2);
}
.leisure_cat .homepage_category_item_title {
	color: var(--cat-cl-3);
}
.hotels_cat .homepage_category_item_title {
	color: var(--cat-cl-4);
}

.btn_more {
	display: flex;
	margin-top: 5rem;
	justify-content: center;
}

.btn_more a {
	border-radius: 25px;
	border: 2px solid #000;
	font-size: 1.8rem;
	font-weight: 800;
	padding: 1rem 2rem;
}

.gourmet_cat .btn_more a {
	border-color: var(--cat-cl-1);
}
.shopping_cat .btn_more a {
	border-color: var(--cat-cl-2);
}
.leisure_cat .btn_more a {
	border-color: var(--cat-cl-3);
}
.hotels_cat .btn_more a {
	border-color: var(--cat-cl-4);
}

.gourmet_cat .btn_more a:hover {
	background: var(--cat-cl-1);
	color: #fff;
}
.shopping_cat .btn_more a:hover {
	background: var(--cat-cl-2);
	color: #fff;
}
.leisure_cat .btn_more a:hover {
	background: var(--cat-cl-3);
	color: #fff;
}
.hotels_cat .btn_more a:hover {
	background: var(--cat-cl-4);
	color: #fff;
}

/* ! how it works */
.intro_block {
	padding: 10rem 0;
}

.intro_block .cnt_wp {
	flex-direction: column;
}

.intro_block_title {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	text-align: center;
}

.intro_box {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: rgba(244, 245, 246, 0.75);
	border-radius: 25px;
	padding: 10rem 5%;
	margin-bottom: 10rem;
}

.intro_block_listing {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem;
	margin-top: 5rem;
	justify-content: space-between;
}

.intro_block_listing li {
	width: 48%;
	height: 30rem;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 25px;
	padding: 4rem;
}

.intro_block_listing li span {
	display: block;
	font-weight: 700;
	font-size: 4rem;
	margin-bottom: 2rem;
}

.intro_block_listing li:nth-child(1) span {
	color: var(--cat-cl-1);
}
.intro_block_listing li:nth-child(2) span {
	color: var(--cat-cl-2);
}
.intro_block_listing li:nth-child(3) span {
	color: var(--cat-cl-3);
}
.intro_block_listing li:nth-child(4) span {
	color: var(--cat-cl-4);
}

.intro_block_box-title {
	font-size: 2.8rem;
	font-weight: 600;
	color: #212121;
	line-height: 3rem;
	margin-bottom: 2rem;
}

.intro_block_box-txt {
	font-size: 2rem;
	line-height: 3.4rem;
	color: #777e90;
	margin-top: auto;
}

.intro_block_desc {
	font-size: 2rem;
	line-height: 3.4rem;
	color: #777e90;
	margin-top: 4rem;
}

.intro_block_desc h5 {
	font-weight: 700;
	color: #212121;
	font-size: 2.8rem;
	margin-bottom: 0.8rem;
}

.intro_block_desc h4 {
	font-weight: 700;
	color: #212121;
	font-size: 3.4rem;
	margin-bottom: 2rem;
}

.intro_block_contact {
	font-size: 2.4rem;
	line-height: 3.4rem;
	color: #777e90;
	margin-top: 4rem;
	text-align: center;
}

.intro_block_contact a:hover {
	color: #3498db;
}

.intro_block_desc p {
	margin-bottom: 1.3rem;
}

.team_list {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem;
	margin-top: 5rem;
	justify-content: space-between;
}

.team_list li {
	width: 100%;
	display: flex;
	background: #ebeded;
	border-radius: 25px;
	padding: 4rem;
}

.team_img {
	width: 18rem;
	height: 18rem;
	border-radius: 100%;
	overflow: hidden;
}

.team_desc {
	width: 80%;
	margin-left: auto;
}

.team_name {
	font-size: 3rem;
	font-weight: 700;
	color: #212121;
	margin-bottom: 1.5rem;
}

.team_position {
	font-size: 2.4rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 1.5rem;
}

.team_desc_txt {
	font-size: 2rem;
	line-height: 3.4rem;
	color: #212121;
	margin-top: auto;
}

.team_desc_txt strong {
	font-weight: 700;
}

/* .team_list li:nth-child(1) {
	background: var(--cat-cl-4);
}

.team_list li:nth-child(2) {
	background: var(--cat-cl-3);
}

.team_list li:nth-child(3) {
	background: var(--cat-cl-1);
} */

.about_us {
	padding: 5rem 0;
}

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

.about_us_left {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.about_us_title {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.about_us_txt {
	font-size: 2.4rem;
	line-height: 3.4rem;
	color: #777e90;
}

.about_app {
	display: flex;
	gap: 2rem;
	margin-top: 4rem;
}

.about_us_right {
	width: 50%;
}

.homepage_category_item_listing.innerlisting {
	margin-top: 5rem;
	display: flex;
	width: 100%;
	margin-top: 5rem;
	gap: 3rem;
	flex-wrap: wrap;
	margin-bottom: 7rem;
}

.innerlisting .homepage_category_item_box {
	display: flex;
	width: 23%;
	margin-bottom: 3rem;
}

.hero_filter_top {
	display: flex;
	gap: 5rem;
	justify-content: center;
}

.hero_filter_top .hero_cat_item {
	transform: scale(0.8);
	opacity: 0.9;
}

.hero_filter_top .hero_cat_item.active {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	transform: scale(1);
	opacity: 1;
}

.hero_filter_bot {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(12px);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	align-items: flex-end;
	margin-top: 3rem;
	/* position: sticky;
	top: 14rem; */
}

.hero_filter .cnt_wp {
	display: flex;
	flex-direction: column;
}

.filter_col {
	display: flex;
	flex-direction: column;
	flex: 1 1 280px;
	min-width: 280px;
}

.filter_col label {
	font-size: 1.6rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 1.2rem;
	letter-spacing: 0.5px;
}

.filter_col select,
.filter_col input {
	padding: 1.5rem 1rem;
	font-size: 1.2rem;
	border: 1px solid #ddd;
	border-radius: 14px;
	background-color: #fff;
	transition: var(--transition-03);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	font-size: 1.4rem;
	cursor: pointer;
}

.filter_col select {
	appearance: none; /* Removes default arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 1.5rem 1rem;
	border-radius: 14px;
	background-image: url("https://cdn-icons-png.flaticon.com/512/32/32195.png");
	background-repeat: no-repeat;
	background-position: right 2rem center;
	background-size: 2rem;
}

.filter_col select:focus {
	border-color: var(--cat-cl-4);
	box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
	outline: none;
}

.filter_col select:hover,
.filter_col input:hover {
	border-color: var(--cat-cl-4);
}

.filter_col select:focus,
.filter_col input:focus {
	border-color: var(--cat-cl-4);
	box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15);
	outline: none;
}
/* ! partners details */
.partners_hero {
	padding: 10rem 0 5rem;
}

.partners_hero .cnt_wp {
	flex-direction: column;
}
.gourmet_cat .partners_hero_cat {
	color: var(--cat-cl-1);
}
.shopping_cat .partners_hero_cat {
	color: var(--cat-cl-2);
}
.leisure_cat .partners_hero_cat {
	color: var(--cat-cl-3);
}
.hotels_cat .partners_hero_cat {
	color: var(--cat-cl-4);
}

.partners_hero_cat {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 3rem;
	display: flex;
}

.partners_hero_mid {
	display: flex;
	align-items: flex-start;
}

.partners_hero_logo {
	border: none;
	display: flex;
	width: 30rem;
	border-radius: 25px;
	overflow: hidden;
}

.gourmet_cat .partners_hero_logo {
	border-color: var(--cat-cl-1);
}
.shopping_cat .partners_hero_logo {
	border-color: var(--cat-cl-2);
}
.leisure_cat .partners_hero_logo {
	border-color: var(--cat-cl-3);
}
.hotels_cat .partners_hero_logo {
	border-color: var(--cat-cl-4);
}

.partners_hero_desc {
	display: flex;
	flex-direction: column;
	width: 75%;
	margin-left: auto;
}

.partners_hero_title {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: #212121;
	display: flex;
	align-items: center;
}

.partners_hero_txt {
	width: 90%;
	font-size: 2.4rem;
	line-height: 3.2rem;
	color: #777e90;
}

.partners_hero .homepage_category_item_box_promo {
	width: 10rem;
	text-align: center;
	background: #fff;
	border-radius: 25px;
	min-width: 13rem;
	margin-left: 5rem;
}

.intro_box_location {
	display: flex;
	width: 100%;
	margin-top: 4rem;
}

.intro_box_location-right {
	width: 40%;
	margin-left: auto;
	height: 40rem;
	border-radius: 15px;
	overflow: hidden;
	position: sticky;
	top: 20rem;
}

.intro_box_location-left {
	display: flex;
	width: 50%;
}

.accordion {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 15px;
	overflow: hidden;
}

.faq-accordion {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 15px;
	overflow: hidden;
}

.accordion-header {
	background: #fff;
	padding: 2rem;
	cursor: pointer;
	font-weight: 700;
	border-bottom: 1px solid #ddd;
	font-size: 1.8rem;
	position: relative;
}

.accordion-header::after {
	content: "+";
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
}

.accordion-header.active::after {
	content: "-";
}

.accordion-header:hover,
.accordion-header.active {
	background: #e0e0e0;
}

.accordion-content {
	display: none;
	padding: 2rem;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.accordion-box {
	width: 100%;
	display: flex;
}

.accordion-box-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	font-size: 1.6rem;
	margin-left: auto;
}

.accordion-box-right {
	width: 45%;
	height: 20rem;
}

.accordion-box-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.accordion-box a {
	font-size: 1.6rem;
}

.accordion-box a:hover {
	color: #3498db;
}

.accordion-add {
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 1rem;
}

.accordion-promo {
	padding: 1rem 1rem;
	font-size: 2rem;
	font-weight: 800;
	width: 10rem;
	margin-top: auto;
	text-align: center;
	background: var(--cat-cl-1);
	border: 2px solid var(--cat-cl-1);
	color: #fff;
}

/* ! Abonement */
.abonnement_list {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	margin-top: 5rem;
}

.abonnement_list > li {
	width: 23%;
	display: flex;
	border-radius: 25px;
	height: 50rem;
	background: #fff;
	border: 2px solid #fed5de;
	box-shadow: 0 0 5px hsla(0, 0%, 20%, 0.4);
}

.abonnement_list > li.best_deal {
	border: 2px solid #c2e232;
	position: relative;
	overflow: hidden;
}

.abonnement_list > li.best_deal::after {
	content: "";
	position: absolute;
	background: url("../assets/images/svg/badgeshape.png") no-repeat center center;
	top: -0.6rem;
	right: -0.6rem;
	width: 10rem;
	height: 10rem;
}

.abonnement_item {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 3rem 2rem;
}

.abonnement_item-name {
	text-transform: uppercase;
	font-size: 1.8rem;
	line-height: 3.4rem;
	font-weight: 500;
	color: #777e90;
}

.abonnement_item-title {
	font-size: 2.2rem;
	line-height: 3rem;
	font-weight: 700;
	color: #212121;
	margin-top: 2rem;
}

.abonnement_item-price {
	display: flex;
	align-items: center;
	margin-top: 1rem;
}

.abonnement_item-price .price {
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--cat-cl-2);
}

.abonnement_item-price .month {
	font-size: 1.4rem;
	font-weight: 500;
	color: #777e90;
	margin-left: 1rem;
}

.abonnement_item_listing {
	display: flex;
	flex-direction: column;
	margin-top: 5rem;

	font-size: 1.8rem;
	line-height: 2.4rem;
	font-weight: 500;
	color: #777e90;
	gap: 1rem;
}

.abonnement_item_listing span {
	font-size: 1.2rem;
	font-weight: 700;
	color: #212121;
}

.abonnement_item_listing li {
	padding-left: 3rem;
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.abonnement_item_listing li.tick::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.8rem;
	height: 1.8rem;
	background: url("../assets/images/svg/tick.svg") no-repeat center center;
	background-size: cover;
}

.abonnement_item_listing li.notick::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.8rem;
	height: 1.8rem;
	background: url("../assets/images/svg/cancel.png") no-repeat center center;
	background-size: cover;
}

.app_dl_ab {
	display: flex;
	margin-top: 3rem;
	justify-content: center;
	gap: 3rem;
}

.app_dl_ab a {
	display: flex;
	width: 16rem;
}

#bg-wrap {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
}

/* body {
	background: linear-gradient(
		315deg,
		rgba(201, 218, 42, 1) 3%,
		rgba(227, 1, 119, 1) 38%,
		rgba(242, 101, 50, 1) 68%,
		rgba(63, 196, 220, 1) 98%
	);
	animation: gradient 15s ease infinite;
	background-size: 400% 400%;
	background-attachment: fixed;
}

@keyframes gradient {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
} */

#halo-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
	pointer-events: none;
}

.halo {
	position: absolute;
	opacity: 0.45;
	will-change: transform;
	mix-blend-mode: screen;
}

.pagination {
	margin-top: 30px;
	text-align: center;
}
.pagination button {
	margin: 0 5px;
	padding: 6px 12px;
	border: none;
	background-color: #eee;
	cursor: pointer;
}
.pagination button.active {
	font-weight: bold;
	background-color: #333;
	color: #fff;
}
.pagination button.disabled {
	pointer-events: none;
	opacity: 0.4;
}

.intro_box_terms {
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-top: 4rem;
}

.intro_box_terms .intro_block_title {
	font-size: 3rem;
	text-align: left;
}

.intro_box_terms_txt {
	font-size: 2rem;
	line-height: 3rem;
	color: #777e90;
	margin-top: 1rem;
}

/* .abonnement_item.best_deal {
	border: 2px solid #ff9900;
	background-color: #fffbea;
} */

.form-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	margin-top: 3rem;
	justify-content: space-between;
}

.form-field-col {
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-field-col.colfull {
	width: 100%;
}

.form-field label {
	font-size: 1.6rem;
	font-weight: 600;
	color: #212121;
	letter-spacing: 0.5px;
	opacity: 0.6;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 1.5rem 2rem;
	border: 1px solid #ddd;
	border-radius: 15px;
	background-color: #fff;
	font-size: 1.6rem;
	color: #212121;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: var(--transition-03);
}

.form-field textarea {
	min-height: 16rem;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--cat-cl-4);
	box-shadow: 0 0 0 4px rgba(63, 196, 220, 0.15);
	outline: none;
}

.form-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("https://cdn-icons-png.flaticon.com/512/32/32195.png");
	background-repeat: no-repeat;
	background-position: right 2rem center;
	background-size: 2rem;
	cursor: pointer;
}

.form-field-submit {
	width: 100%;
	display: flex;
	justify-content: center;
}

.form-field-submit input[type="submit"] {
	padding: 1.5rem 3rem;
	background-color: var(--cat-cl-4);
	border: none;
	border-radius: 25px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: var(--transition-03);
}

.form-field-submit input[type="submit"]:hover {
	background-color: #3498db;
}

.contact_inner {
}

.contact_map {
	width: 48%;
}

.contact_form {
	margin-left: auto;
	width: 48%;
	background: rgba(244, 245, 246, 0.75);
	border-radius: 25px;
	padding: 3rem 3rem;
}

.contact_form .form-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 3rem;
	justify-content: space-between;
}

.contact_intro_wp {
	width: 100%;
	display: flex;
	background: rgba(244, 245, 246, 0.75);
	border-radius: 25px;
	padding: 8rem 4%;
	margin-bottom: 10rem;
	gap: 3%;
}

.contact_box {
	width: 33.3333%;
	height: 200px;
	background: #fff;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem 3rem;
}

.contact_title {
	font-size: 2.8rem;
	font-weight: 600;
	color: #212121;
	line-height: 3rem;
	margin-bottom: 2rem;
}

.contact_box a {
	font-size: 2rem;
	line-height: 2.2rem;
	color: #777e90;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact_box a:hover {
	color: #3498db;
}

.contact_box:nth-child(1) .contact_title {
	color: var(--cat-cl-1);
}

.contact_box:nth-child(2) .contact_title {
	color: var(--cat-cl-2);
}
.contact_box:nth-child(3) .contact_title {
	color: var(--cat-cl-3);
}

.swiperCategory .homepage_category_item_box {
	width: 100%;
}

.swiper {
	width: 100%;
	height: 100%;
}

.intro_block_app {
	display: flex;
	gap: 4%;
}

/* ! search */
body.search-active {
	overflow: hidden;
}
.search {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #212121;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	transition: var(--transition-03);
	opacity: 0;
	pointer-events: none;
}

.search.active {
	opacity: 1;
	pointer-events: auto;
}

.search_close {
	width: 3rem;
	height: 3rem;
	position: absolute;
	right: 5%;
	top: 5%;
	cursor: pointer;
}

.search_wp {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 15rem 0 10rem;
}

.search_featured {
	display: flex;
	width: 100%;
	gap: 2rem;
	justify-content: center;
	margin-top: auto;
}

.search_title {
	font-size: 4rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	margin-bottom: 2rem;
}

.search_top {
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100vh;
	padding: 15rem 0 10rem;
}

.search_result {
	width: 100%;
	max-width: 70rem;
	margin: 0 auto;
}

.search_result input {
	width: 100%;
	height: 5rem;
	padding: 0 2rem;
	font-size: 1.8rem;
	color: #212121;
}

.search_result_listing {
	width: 100%;
	display: flex;
	position: relative;
}

.search_dropdown_results {
	margin-top: 10px;
	background: #fff;
	border: 1px solid #ccc;
	max-height: 300px;
	overflow-y: auto;
	border-radius: 6px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.search_result_item {
	display: flex;
	padding: 10px;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #eee;
}

.search_result_item:hover {
	background-color: #f0f0f0;
}

.search_result_thumb img {
	width: 80px;
	height: 80px;
	border-radius: 4px;
	margin-right: 15px;
}

.search_result_info {
	display: flex;
	flex-direction: column;
}

.search_result_title {
	font-size: 2rem;
	font-weight: 600;
	color: #212121;
	margin-bottom: 0.8rem;
}

/* .removesearch .search,
.removesearch .header_search {
	display: none;
} */

.search_result_cat {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 0.3rem;
	margin-bottom: 0.5rem;
}

.search_dropdown_results a.gourmet .search_result_cat {
	color: var(--cat-cl-1);
}
.search_dropdown_results a.shopping .search_result_cat {
	color: var(--cat-cl-2);
}

.search_dropdown_results a.leisure .search_result_cat {
	color: var(--cat-cl-3);
}

.search_dropdown_results a.hotels .search_result_cat {
	color: var(--cat-cl-4);
}

/* ? newsletter */

.footer_newsletter {
	max-width: 40rem;
	display: flex;
	width: 100%;
	flex-direction: column;
	margin-left: auto;
}

.footer_newsletter-title {
	font-size: 1.8rem;
	color: #212121;
	font-weight: 600;
	position: relative;
	text-align: center;
}

.footer_newsletter form {
	width: 100%;
	background: #212121;
	margin-left: auto;
	margin-bottom: 2rem;
	border-radius: 20px;
	margin-top: 1rem;
	height: 45px;
	display: flex;
	padding: 5px;
}

.newsletter_icon {
	width: 30px;
	fill: rgb(255, 255, 255);
	margin-left: 8px;
	transition: all 0.3s;
}

.footer_newsletter-input input {
	width: 250px;
	height: 100%;
	border: none;
	outline: none;
	padding-left: 15px;
	background-color: #212121;
	color: #fff;
	font-size: 1.4rem;
}
.footer_newsletter-input input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #212121 inset;
	-webkit-text-fill-color: #ffffff;
}

.footer_newsletter form:active .newsletter_icon {
	transform: scale(1.3);
}

.Subscribe-btn {
	height: 100%;
	width: 95px;
	border: none;
	border-radius: 15px;
	color: #212121;
	cursor: pointer;
	background-color: #ffffff;
	font-weight: 600;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: all 0.3s;
	margin-left: auto;
	font-size: 1.4rem;
}

.newsletter_arrow {
	/* display: none; */
	position: absolute;
	margin-right: 150px;
	transition: all 0.3s;
}

.Subscribe-btn:hover {
	color: white;
}

.Subscribe-btn:hover .newsletter_arrow {
	margin-right: 0;
	animation: jello-vertical 0.9s both;
	transform-origin: right;
}

@keyframes jello-vertical {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(0.75, 1.25, 1);
	}
	40% {
		transform: scale3d(1.25, 0.75, 1);
	}
	50% {
		transform: scale3d(0.85, 1.15, 1);
	}
	65% {
		transform: scale3d(1.05, 0.95, 1);
	}
	75% {
		transform: scale3d(0.95, 1.05, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

.Subscribe-btn:active {
	transform: scale(0.9);
}

.newsletter_feedback {
	display: none;
	font-size: 1.8rem;
	color: #212121;
	font-weight: 600;
	position: relative;
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.fbtn_search_wp {
	width: 100%;
	display: flex;
}

.fbtn_search {
	width: 300px;
	display: flex;
	margin: 0 auto;
	border-radius: 25px;
	background: #212121;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	gap: 1rem;
	position: relative;
	height: 45px;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;
	transition: var(--transition-03);
	cursor: pointer;
}

.fbtn_search img {
	width: 3rem;
	position: absolute;
	left: 2rem;
}

.fbtn_search:hover {
	background: #212121;
}

/* ! menu mobile */
.nav__burger {
	display: none;
	position: relative;
	right: -15px;
}

.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 60px;
	width: 60px;
}

.hamRotate.active {
	transform: rotate(45deg);
}

.hamRotate180.active {
	transform: rotate(180deg);
}

.line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: #212121;
	stroke-width: 5.5;
	stroke-linecap: round;
}

.ham1 .top {
	stroke-dasharray: 40 139;
}

.ham1 .bottom {
	stroke-dasharray: 40 180;
}

.ham1.active .top {
	stroke-dashoffset: -98px;
}

.ham1.active .bottom {
	stroke-dashoffset: -138px;
}

.intro_block_desc ul li {
	list-style: disc;
	list-style-position: inside;
}

.intro_block_desc a:hover {
	color: var(--cat-cl-4);
}

.contact_box .cnt_icn {
	width: 3rem;
	height: 3rem;
	display: block;
}

.contact_box ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.socialmedia_box ul {
	display: flex;
	flex-direction: row;
	gap: 2rem;
}

.socialmedia_box ul .svgicon {
	width: 4rem;
	height: 4rem;
	display: block;
}

.socialmedia_box ul .svgicon svg,
.contact_box .cnt_icn svg {
	width: 100%;
	height: 100%;
	display: block;
}

.homepage_category_item_box_promo.giftonly {
	background-image: url("../assets/images/svg/Gift.png");
	background-size: 30px;
	height: 5rem;
	width: 5rem;
	background-position: center center;
	background-repeat: no-repeat;
}

.gourmet_cat .homepage_category_item_box_promo.giftonly {
	background-color: var(--cat-cl-1);
}
.shopping_cat .homepage_category_item_box_promo.giftonly {
	background-color: var(--cat-cl-2);
}
.leisure_cat .homepage_category_item_box_promo.giftonly {
	background-color: var(--cat-cl-3);
}
.hotels_cat .homepage_category_item_box_promo.giftonly {
	background-color: var(--cat-cl-4);
}

.intro_box_socialmedia {
	display: flex;
	margin-top: 3rem;
	justify-content: flex-end;
}

.intro_box_socialmedia ul {
	display: flex;
	gap: 1rem;
}

.intro_box_socialmedia ul li {
	width: 4rem;
	height: 4rem;
	display: flex;
}

.intro_box_socialmedia ul li a,
.intro_box_socialmedia ul li a svg {
	width: 100%;
	height: 100%;
	display: block;
}

.Hero.heroPartners .cnt_wp {
	height: auto;
}
