/* ==========================
   Brandmill Card Widget
============================= */
.bm-card {
	display: flex;
	flex-direction: column;
	gap: 48px;
	background-color: #383838;
	border-radius: 24px;
	padding: 48px;
	box-sizing: border-box;
	width: 100%;
}
.bm-card__logo {
    display: block;
    line-height: 0;
}
.bm-card__logo a {
    display: inline-block;
}
.bm-card__logo img {
	display: block;
	max-height: 64px;
	width: auto;
	object-fit: contain;
	border-radius: 0 !important;
}
.bm-card__divider {
	width: 100%;
	border: none;
	border-top: 1px solid rgba(247, 245, 246, 0.16);
	margin: 0;
	padding: 0;
	height: 0;
	flex-shrink: 0;
}
.bm-card__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.bm-card__headline {
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1px;
	color: #f7f5f6;
}
.bm-card__body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(247, 245, 246, 0.88);
}
.bm-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.bm-card__author {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.bm-card__author-avatar {
	flex-shrink: 0;
	width: 40px;
	height: 48px;
	border-radius: 24px 24px 0 0;
	overflow: hidden;
}
.bm-card__author-avatar img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	border-radius: 0 !important;
}
.bm-card__author-info {
	display: flex;
	flex-direction: column;
}
.bm-card__author-name {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0;
	color: rgba(247, 245, 246, 0.88);
}
.bm-card__author-role {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	color: rgba(247, 245, 246, 0.64);
}
.bm-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background-color: #f7f5f6;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 32px;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}
.bm-card__btn:hover {
	opacity: 0.85;
	color: #000000;
	text-decoration: none;
}
@media (max-width: 767px) {
	.bm-card {
		gap: 32px;
		padding: 32px 24px;
	}
	.bm-card__headline {
		font-size: 32px;
		line-height: 1.1;
	}
	.bm-card__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.bm-card__btn {
		width: 100%;
		justify-content: center;
	}
}
/* ===============================
   Brandmill Service Tab Widget 
==================================*/
.bm-stab {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	box-sizing: border-box;
}
.bm-stab__tabbar {
	display: inline-flex;
	gap: 4px;
	padding: 8px;
	background-color: #ffffff;
	border-radius: 24px;
	align-self: center;
	flex-wrap: wrap;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.bm-stab__tabbar::-webkit-scrollbar {
	display: none;
}
.bm-stab__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 32px !important;
	border: none;
	background-color: transparent;
	background-clip: padding-box;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 12px;
	letter-spacing: 0;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.bm-stab__tab.is-active {
	background-color: rgba(0, 0, 0, 0.88);
	border-color: rgba(247, 245, 246, 0.08);
	color: #f7f5f6;
}
.bm-stab__tab:not(.is-active){
	background: none !important;
}
.bm-stab__panel {
	display: none;
	width: 100%;
}
.bm-stab__panel.is-active {
	display: block;
}
.bm-stab__card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 32px;
	padding: 48px;
	background-color: #ffffff;
	border-radius: 24px;
	box-sizing: border-box;
	width: 100%;
}
.bm-stab__content {
	flex: 1 0 0;
}
.bm-stab__tag {
	display: inline-block;
	padding: 4px 8px;
	background-color: #f0ebec;
	border-radius: 12px;
	color: rgba(0, 0, 0, 0.88);
	font-size: 10px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: 0.75px;
	text-transform: uppercase;
}
.bm-stab__headline {
	margin: 0;
	padding: 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 48px;
	letter-spacing: -1px;
	color: #000000;
}
.bm-stab__body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(0, 0, 0, 0.88);
}
.bm-stab__list-title {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(0, 0, 0, 0.88);
}
.bm-stab__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bm-stab__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: rgba(0, 0, 0, 0.88);
}
.bm-stab__list li::before {
	content: '\2022';
	flex-shrink: 0;
	color: rgba(0, 0, 0, 0.88);
}
.bm-stab__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 8px 16px;
	background-color: #e2003b;
	border: 1px solid rgba(247, 245, 246, 0.08);
	border-radius: 32px;
	color: #f7f5f6;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
	align-self: flex-start;
}
.bm-stab__btn:hover {
	opacity: 0.88;
	color: #f7f5f6;
	text-decoration: none;
}
.bm-stab__image-wrap {
	flex: 1 0 0;
}
.bm-stab__image {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
}
@media (max-width: 767px) {
	.bm-stab__card {
		flex-direction: column;
		padding: 32px 24px;
		gap: 48px;
	}
	.bm-stab__headline {
		font-size: 32px;
		line-height: 1.1;
	}
	.bm-stab__image {
		height: 297px;
	}
	.bm-stab__btn {
		align-self: flex-start;
	}
	.bm-stab__tabbar {
		display: grid;
    	grid-template-columns: 1fr 1fr;
		overflow-x: auto;
		max-width: 100%;
		align-self: normal;
	}
	.bm-stab__tab{
		border: 1px solid;
	}
}