/* Trimmed from public.full.css — IIC Insights standalone site only */

* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

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

body {
	min-width: 352px;
}

html {
	scroll-behavior: smooth;
}

body.has-site-header {
	padding-top: var(--iic-header-height, 80px);
}

body.has-site-header .insights-main {
	padding-top: 0;
}

body.has-site-header .insights-section {
	scroll-margin-top: var(--iic-header-height, 80px);
}

.iic-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
	background: #000000;
}

.iic-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 32px;
	width: min(1280px, calc(100% - 40px));
	margin: 0 auto;
	padding: 24px 0;
	min-height: 80px;
	box-sizing: border-box;
	position: relative;
}

.iic-site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.iic-site-header__logo img {
	display: block;
	height: 52px;
	width: auto;
	max-width: min(280px, 38vw);
}

.iic-site-header__menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	flex: 1;
	min-width: 0;
	padding-right: 78px;
}

.iic-site-header__nav {
	display: flex;
	justify-content: flex-end;
	min-width: 0;
}

.iic-nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 0 36px;
	margin: 0;
	padding: 0;
}

.iic-nav-item {
	position: relative;
}

.iic-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: #ffffff;
	font-family: 'Popins-Medium', sans-serif;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 0;
	cursor: pointer;
	transition: color 0.2s ease;
	white-space: nowrap;
}

a.iic-nav-link:hover,
button.iic-nav-link:hover,
.iic-nav-item--dropdown.is-open > .iic-nav-link {
	color: #bd6c73;
}

.iic-nav-caret {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-top: 2px;
}

.iic-nav-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: max-content;
	min-width: 0;
	margin: 0;
	padding: 6px 0;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	border-radius: 2px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}

.iic-nav-item--dropdown:hover > .iic-nav-dropdown,
.iic-nav-item--dropdown.is-open > .iic-nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.iic-nav-dropdown a {
	display: block;
	padding: 10px 16px;
	color: #000000;
	font-family: 'Popins-Medium', sans-serif;
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.iic-nav-dropdown a:hover {
	color: #bd6c73;
	background: rgba(189, 108, 115, 0.08);
}

.iic-site-header__social {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.iic-site-header__social img {
	display: block;
	width: 24px;
	height: 24px;
}

.iic-site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.iic-site-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffffff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.iic-site-header.is-menu-open .iic-site-header__toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.iic-site-header.is-menu-open .iic-site-header__toggle span:nth-child(2) {
	opacity: 0;
}

.iic-site-header.is-menu-open .iic-site-header__toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

footer {
	background-color: #302E2E;
}

footer .top {
	display: flex;
	max-width: 1440px;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	margin: auto;
	padding: 80px 20px 60px;
}

footer .footer-contact {
	flex: 1;
	min-width: 0;
	text-align: left;
}

footer .footer-contact .contactUs {
	color: #fff;
	font-family: 'Popins-Medium';
	font-size: 32px;
	margin: 0 0 24px;
}

footer .footer-logo {
	flex-shrink: 0;
}

footer .footer-logo img {
	width: 280px;
	max-width: 100%;
	display: block;
}

footer .top .bBox {
	display: block;
	text-align: left;
}

footer .top .bBox h1.who {
	color: #bd6c73;
	font-size: 20px;
	margin: 0 0 10px;
	font-family: 'Popins-Bold';
}

footer .top .bBox p {
	font-family: 'Popins-Light';
	color: #fff;
	font-size: 15px;
	letter-spacing: 0;
	margin: 0 0 8px;
}

footer .top .bBox p .email {
	color: #ffffff;
}

footer .top .bBox .faimg {
	display: flex;
	margin-top: 12px;
}

footer .top .bBox a:hover .none {
	display: block;
}

footer .top .bBox .none,
footer .top .bBox a:hover .normal {
	display: none;
}

footer .top .bBox img {
	width: 55px;
	height: 55px;
	margin-right: 20px;
	margin-top: 0;
}

footer .bottom {
	border-top: 1px solid #fff;
	padding: 60px 0 105px;
}

footer .bottom .foot-box {
	margin: auto;
	max-width: 1440px;
	padding: 0 20px;
}

footer .bottom .foot-box p {
	color: #fff;
	margin: 30px 0;
	font-size: 15px;
	font-family: 'Popins-ExtraLight';
	letter-spacing: 0px;
}

footer .bottom .foot-box>div {
	color: #B4B4B4;
	font-size: 16px;
	font-family: 'Popins-Thin';
	margin-top: 50px;
	letter-spacing: 0px;
}

footer .bottom .foot-box a img {
	max-height: 60px;
	max-width: 190px;
}

.Gotop {
	position: fixed;
	right: 10px;
	top: 50%;
	z-index: 99;
}

.Gotop img {
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.box {
	display: flex;
	flex-direction: column;
	position: fixed;
	right: 10px;
	top: 60%;
	z-index: 999;
}

.box a {
	margin: 4px 0;
}

.box img {
	width: 28px;
	height: 28px;
}

.Hbanner-box {
	background-repeat: no-repeat;
}

.page-iic-insights .Hbanner-box {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	display: flex;
	align-items: center;
	background-color: #000;
	background-image:
		linear-gradient(to right,
			#000 0%,
			rgba(0, 0, 0, 0.72) 14%,
			rgba(0, 0, 0, 0.18) 28%,
			transparent 42%,
			transparent 100%),
		url('../images/bg-WELCOME-RECEPTION.png');
	background-size: 100% 100%, auto 100%;
	background-repeat: no-repeat, no-repeat;
	background-position: center top, 72% top;
}

.page-iic-insights .Hbanner-box::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: clamp(72px, 8vw, 160px);
	height: 100%;
	background: linear-gradient(to right,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.55) 55%,
		#000 100%);
	pointer-events: none;
	z-index: 1;
}

.page-iic-insights .Hbanner-box .Hbanner {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	padding: 0;
}

.Hbanner {
	max-width: 1550px;
	margin: auto;
	padding: 80px 0;
}

.Hbanner h1 {
	color: #bd6c73;
	font-family: 'Popins-Bold';
	font-size: 48px;
	margin-bottom: 40px;
}

.Hbanner a {
	border-radius: 8px;
	padding: 10px 30px;
	margin: 0 5px;
	font-size: 20px;
	font-family: 'Popins-Medium';
	cursor: pointer;
	border: 1px solid #000000;
	color: #000000;
	background-color: #fff;
	min-width: 9em;
	text-align: center;
	font-weight: 600;
	text-shadow: 10px 5px 10px #D6D6D6;
	margin-right: 50px;
}

.Hbanner a:hover {
	background-color: #000000;
	color: #fff;
	text-shadow: none;
}

main .title {
	color: #000000;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Popins-Bold';
	font-size: 36px;
	margin-top: 100px;
	text-align: center;
	text-transform: uppercase;
}

main .title::after {
	content: '';
	width: 220px;
	height: 6px;
	background-image: linear-gradient(90deg, #6b597f 0%, #bd6c73 50%, #ffdcc6 100%);
	margin-top: 30px;
}

@media screen and (max-width: 1080px) {
	.iic-site-header__inner {
		flex-wrap: wrap;
		align-items: center;
		width: min(1280px, calc(100% - 40px));
		padding: 14px 0;
		min-height: 64px;
		gap: 12px;
	}

	.iic-site-header__logo img {
		height: 34px;
	}

	.iic-site-header__menu {
		flex: 0 1 auto;
		margin-left: auto;
		padding-right: 0;
		gap: 12px;
	}

	.iic-site-header__social {
		position: static;
		transform: none;
	}

	.iic-site-header__nav {
		display: none;
	}

	.iic-site-header__toggle {
		display: flex;
	}

	.iic-site-header.is-menu-open .iic-site-header__menu {
		flex: 1 1 100%;
		flex-direction: column;
		align-items: stretch;
		margin-left: 0;
		gap: 0;
	}

	.iic-site-header.is-menu-open .iic-site-header__nav {
		display: block;
		width: 100%;
		padding-top: 8px;
	}

	.iic-site-header.is-menu-open .iic-site-header__social {
		display: none;
	}

	.iic-nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.iic-nav-item {
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.iic-nav-link {
		width: 100%;
		padding: 14px 0;
	}

	.iic-nav-dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.06);
		margin: 0 0 8px;
		padding: 0;
		min-width: 0;
	}

	.iic-nav-item--dropdown.is-open > .iic-nav-dropdown {
		display: block;
	}

	.iic-nav-dropdown a {
		color: #ffffff;
		padding: 12px 16px;
		font-size: 13px;
	}

	.iic-nav-dropdown a:hover {
		background: rgba(189, 108, 115, 0.15);
	}

	.box {
		flex-direction: unset;
		justify-content: space-around;
		width: 100%;
		background-color: #fff;
		bottom: 0;
		right: 0;
		top: auto;
		padding: 0;
		position: fixed;
	}

	.Hbanner {
		padding: 0;
	}

	footer .top {
		flex-direction: column;
		padding: 40px 20px 30px;
		gap: 30px;
	}

	footer .footer-contact,
	footer .top .bBox {
		text-align: left;
		width: 100%;
	}

	footer .footer-contact .contactUs {
		font-size: 24px;
		margin-bottom: 16px;
	}

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

	footer .footer-logo img {
		width: 220px;
		margin: 0;
	}

	footer .top .bBox .faimg {
		justify-content: flex-start;
		margin-bottom: 0;
	}

	footer .top .bBox img {
		width: 40px;
		height: 40px;
	}

	footer .top .bBox h1.who {
		font-size: 16px;
	}

	footer .top .bBox p {
		font-size: 14px;
	}

	footer .bottom {
		padding: 30px 0;
	}

	footer .bottom .foot-box {
		text-align: left;
		margin-bottom: 80px;
		padding: 0 20px;
	}

	footer .bottom .foot-box p {
		font-size: 14px;
		margin: 10px 0;
		padding: 0 10px;
	}

	footer .bottom .foot-box > div {
		margin-top: 20px;
		font-size: 14px;
		padding: 0 10px;
	}
}

@media screen and (max-width: 1335px) {
	footer .top .bBox p {
		font-size: 14px;
	}

	footer .bottom {
		padding: 30px 0;
	}

	footer .bottom .foot-box {
		padding: 0 20px;
	}

	footer .bottom .foot-box p {
		padding: 0;
		font-size: 12px;
		margin-top: 10px;
		text-align: left;
	}

	footer .bottom .foot-box>div {
		margin-bottom: 20px;
		height: auto;
	}
}

@media screen and (max-width: 1080px) {
	.page-iic-insights .Hbanner-box {
		min-height: 350px;
		background-size: 100% 100%, auto 100%;
		background-position: center top, 78% top;
	}

	.page-iic-insights .Hbanner-box::after {
		width: clamp(64px, 10vw, 140px);
	}

	.page-iic-insights .Hbanner-box .Hbanner {
		padding: 0;
	}

	.Hbanner h1 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.Hbanner a {
		font-size: 18px;
		padding: 0 10px;
		margin: 0;
	}

	.Hbanner {
		padding: 20px 10px;
	}
}

@font-face {
	font-family: 'Popins-Black';
	src: url('https://img.szwgroup.com/font/Poppins-Black.otf');
}

@font-face {
	font-family: 'Popins-Bold';
	src: url('https://img.szwgroup.com/font/Poppins-Bold.otf');
}

@font-face {
	font-family: 'Popins-ExtraBold';
	src: url('https://img.szwgroup.com/font/Poppins-ExtraBold.otf');
}

@font-face {
	font-family: 'Popins-ExtraLight';
	src: url('https://img.szwgroup.com/font/Poppins-ExtraLight.otf');
}

@font-face {
	font-family: 'Popins-Light';
	src: url('https://img.szwgroup.com/font/Poppins-Light.otf');
}

@font-face {
	font-family: 'Popins-Medium';
	src: url('https://img.szwgroup.com/font/Poppins-Medium.otf');
}

@font-face {
	font-family: 'Popins-Regular';
	src: url('https://img.szwgroup.com/font/Poppins-Regular.otf');
}

@font-face {
	font-family: 'Popins-Thin';
	src: url('https://img.szwgroup.com/font/Poppins-Thin.otf');
}
