html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

.hero {
	display: flex;
	width: 100%;
	min-height: 10vh;
	height: 10vh;
	padding: 0 15%;
	background: linear-gradient(var(--companyLogo), var(--Highlights), var(--companyLogo));
	background-size: cover;
	background-position: center;
	align-items: center;
	color: aliceblue;

}

.BusinessDivision {
	min-height: 90vh;
	display: flex;
	flex-direction: row;
}

.container {
	min-height: 80vh;
	max-width: 1280px;
	min-width: 1280px;
	margin: 0 auto;
	padding: 20px 20px;
	flex-direction: row;
}

.main-layout {
	height: fit-content;
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.container-desc {
	display: flex;
	flex-direction: column;
	height: fit-content;
	min-height: 70vh;
	flex: 0 0 70%;
	border-radius: 8px;
	padding: 0 clamp(16px, 2vw, 24px);
	background-color: rgba(243, 243, 243);
	gap: 8px;
}

.fadeIn {
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.display-DESC {
	height: 70vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.display-DESC h2 {
	font-size: 2rem;
}

.display-DESC span {
	opacity: 0.8;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.imgFrame-DESC {
	display: flex;
	border-radius: 4px;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.imgFrame-DESC.hidden {
	display: none;
}

.imgFrame-DESC img {
	max-width: 800px;
	max-height: 35vh;
}

.imgMultipleframe-DESC {
	display: grid;
	max-height: 35vh;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
	grid-auto-flow: row;
	gap: 8px;
	width: 100%;
	flex: 0 0 60%;
	place-items: center;
}

.imgMultipleframe-DESC.hidden {
	display: none;
}

.imgMultipleframe-DESC img {
	max-height: 35vh;
	height: 220px;
	max-width: 100%;
}

.content-DESC {
	font-size: 1rem;
	padding: 2% 12%;
}

.link-frame-DESC {
	margin-top: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.link-frame-DESC2 {
	margin-top: auto;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.link-DESC {
	position: relative;
	bottom: 0px;
	width: 20%;
	padding: 0.5vh;
	font-size: 16px;
	opacity: 0.8;
	border-radius: 4px;
	border: 2px RGBA(128, 128, 128, 0.3) solid;
	background-color: var(--button-coler);
	color: var(--text-color);
	cursor: pointer;
}

.link-DESC:hover {
	opacity: 1;
	background-color: var(--button-coler-hover);
}

.link-DESC2 {
	font-size: 16px;
	text-decoration: none;
}
.link-DESC2:hover {
	color: var(--accent-color)
}

.unvisiable {

	visibility: hidden;
}

.hidden {
	display: none;
}

.container-BusinessDivision {
	flex: 1;
	min-height: 70vh;
	border-radius: 8px;
	padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 32px);
	background-color: rgba(243, 243, 243);
	transition: 0s;
}


.container-BusinessDivision.hidden {
	display: none;
}

.container-BusinessDivision.move {
	transition: 0.4s ease;
}

.container-BusinessDivision.lock {
	transition: 0s;
	transform: translate(0px, 0px);
}

.BusinessDivision-title {
	margin-left: 8px;
	background-color: linear-gradient(to right,
			var(--companyLogo),
			var(--Highlights),
			var(--companyLogo));
	margin-bottom: 24px;
}



.back-Btn {
	position: absolute;
	padding: clamp(4px, 1vh, 12px);
	top: 15px;
	right: 10px;
	display: flex;
	font-size: 1.17em;
	font-weight: bold;
	border-radius: 8px;
	border: 4px rgb(83, 83, 83);
	background-color: rgba(243, 243, 243, 0.5);
}

.back-Btn:hover {
	border-radius: 8px;
	border: 4px rgb(22, 22, 22);
	background-color: rgba(197, 197, 197, 0.5);
}

.container-link {
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 2vh, 16px)
}

.products-link {
	color: var(--link-content);
	display: block;
	font-size: 1.12em;
	font-weight: bold;
	text-decoration: none;
	transition: 0.5s ease;
	cursor: pointer;
}

.products-link:hover {
	color: var(--link-content-hover);
	transform: translateX(5px);
}

@media (max-width: 768px) {
	.body {
		padding-top: 60px;
	}

	.hero {
		height: 20vh;
		padding: 20% 10%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.container {
		width: 100vw;
		max-width: 1280px;
		min-width: 0;
		padding: 8px;
	}

	.BusinessDivision {
		gap: 3vh;
		min-height: 60vh;
		padding: 3vh 8px;
		padding-top: 80px;
	}

	.main-layout {
		flex-direction: column-reverse;
	}

	.container-desc {
		min-height: 70vh;
		height: fit-content;
	}

	.content-DESC {
		padding: 0;

	}

	.img-frame-DESC {
		width: 100%
	}

	.imgFrame-DESC img {
		width: 100%;
		height: auto;
	}

	.imgMultipleframe-DESC {
		max-height: none;
		height: fit-content;
		grid-template-columns: repeat(1, minmax(min(100%, 150px), 1fr));
		grid-auto-flow: row;
	}

	.imgMultipleframe-DESC img {
		width: 100%;
		height: auto;
	}

	.container-BusinessDivision {
		min-height: 0;
		height: fit-content;
	}

	.link-DESC {
		width: 40%
	}
}