

.bg_preload {
	background-image: url('../images/bg_placeholder.png');
}

/* header */
header .menu li a {
	display: inline-block;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	color: var(--black1);
	padding: 0 20px 0px 20px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

header .menu li a::after {
	position: absolute;
	content: "";
	bottom: -10px;
	left: 0;
	height: 4px;
	width: 100%;
	background-color: #e85411;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

header .menu li a:hover:after,
header .menu li a.active:after {
	opacity: 1;
	visibility: visible;
}

.header--right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header--right .button {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* language-selector */
.language-selector {
	position: relative;
	display: inline-block;
	font-family: sans-serif;
}

.language-toggle {
	padding: 4px 12px;
	min-width: 86.6px;
	background: white;
	border: 1px solid #ccc;
	border-radius: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.language-toggle:hover {
	background-color: #f0f0f0;
}

.arrow {
	font-size: 13px;
	color: #888;
}

.language-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	border: 1px solid #ccc;
	border-top: none;
	width: 100%;
	z-index: 10;
}

.language-dropdown button {
	width: 100%;
	padding: 8px 16px;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	font-size: 14px;
	text-transform: uppercase;
	color: #333;
	font-weight: normal;
}

.language-dropdown button:hover {
	background-color: #f0f0f0;
}

/* main */
main.home {
	background: rgba(23, 139, 230, 0.06);
}

/* hero--area */
.hero--area {
	padding: 293px 0;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.hero--area h1,
.hero--area h1 span {
	font-size: 60px;
	font-style: normal;
	font-weight: 800;
	line-height: 80px;
	color: var(--white);
}

.hero--area h1 span {
	position: relative;
	z-index: 1;
}

.hero--area h1 span:before {
	position: absolute;
	content: "";
	bottom: -55px;
	left: 0;
	background-image: url(../images/banner/Vector.png);
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	z-index: -1;
}

/* service--category */
.service--category {
	margin-top: -26px;
}

.service--category ul li {
	width: 130px;
	max-width: 130px;
}

.service--category ul li img {
	height: 130px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--blue);
	transition: all 0.3s ease-in-out;
}

.service--category ul li p {
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-top: 10px;
	color: var(--menu-color);
}

.service--category ul li a:hover img {
	border: 3px solid #e85411;
}

.service--category ul li a:hover p {
	font-weight: 700;
}

/* upcoming--events  */
.upcoming--events {
	background: #178be60f;
}

.events--card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 0px 1px 0px rgba(40, 41, 61, 0.04),
		0px 2px 4px 0px rgba(96, 97, 112, 0.16);
	height: 100%;
}

.events--card .details .title-wrapper {
	min-height: 70px;
}

.events--card .details span {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.events--card .date,
.deals--card .date {
	position: absolute;
	top: -40px;
	right: 15px;
	width: 48px;
	border-radius: 4px;
	background-color: var(--white);
	text-align: center;
	box-shadow: 0px 0px 1px 0px rgba(40, 41, 61, 0.04),
	0px 2px 4px 0px rgba(96, 97, 112, 0.16);
}

.events--card .date p:nth-child(2),
.deals--card .date p:nth-child(2) {
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	color: var(--black1);
}

.events--card .button {
	padding: 6px 10px;
	border-radius: 4.43px;
	background: var(--blue);
	transition: var(--base-transation);
}

.events--card .button:hover {
	background: var(--blue1);
}

.view--more--card {
	background: var(--blue);
}

.view--more--card a {
	display: block;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
}

.view--more--card a svg {
	width: 46px;
	height: 46px;
	margin-bottom: 6px;
}

/* deals & venue  */
.deals--card,
.venue--card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 0px 1px 0px rgba(40, 41, 61, 0.04),
		0px 2px 4px 0px rgba(96, 97, 112, 0.16);
	height: 100%;
}

.deals--card img,
.venue--card img {
	height: 178px;
	object-fit: cover;
	transition: var(--base-transation);
}

.deals--card .details .title-wrapper {
	min-height: 75px;
}

.deals--card .button,
.venue--card .button {
	padding: 11px 10px;
	border-radius: 4.43px;
}

/* CTA: event--host--area */
.event--host--area h2 {
	font-size: 60px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: var(--white);
	text-align: center;
	width: 610px;
	margin: 0 auto;
}

.event--host--area .inner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.event--host--area .button {
	background: var(--orange);
}

/* editorials */
.editorial-area .editorial--box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.editorial-area .editorial--box img {
	height: 260px;
	object-fit: cover;
}

.editorial-area .editorial--box::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0000006d;
}

.editorial-area .editorial--box a {
	position: absolute;
	left: 15px;
	bottom: 15px;
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	z-index: 1;
}

.editorial-area .box--0,
.editorial-area .box--4 {
	margin-bottom: 20px;
}

.editorial-area .box--1,
.editorial-area .box--2 {
	width: 48.5%;
	float: left;
}

.editorial-area .box--2 {
	margin-left: 3%;
}

.editorial-area .box--3,
.editorial-area .box--3 img {
	height: 100%;
}

/* footer */
.site--footer {
	border-top: 3px solid #cccccc;
}

.site--footer h3 {
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--menu-color);
}

.site--footer h4 {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: var(--menu-color);
}

.footer--box.social ul li {
	width: 80px;
}

.footer--box.links ul li a {
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: var(--para-color);
	margin-top: 8px;
	transition: var(--base-transation);
}

.footer--box.links ul li a:hover {
	color: var(--primary-color);
}

.footer--bottom {
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	border-top: 1px solid #cccccc;
}

