/* Global Styles */
:root {
	--dark-color: #141414;
	--light-color: #ffffff;
}

.showcase {
	width: 100%;
	position: relative;
}

.showcase-top {
	position: relative;
	z-index: 2;
	height: 90px;
	background-color: var(--light-color);
}

.showcase-top img {
	width: 170px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-left: 0;
}

.showcase-top a {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
}

.showcase-content {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.showcase-content h1 {
	font-weight: 700;
	font-size: 5.2rem;
	line-height: 1.1;
	margin: 0 0 2rem;
}

.showcase-content p {
	text-transform: uppercase;
	color: var(--light-color);
	font-weight: 400;
	font-size: 1.9rem;
	line-height: 1.25;
	margin: 0 0 2rem;
}
.showcase_ct_serum {
	height: 500px;
	background: url(images/CT_serum_with_background.png) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

/* Tabs */
.tabs {
	background: var(--light-color);
	padding-top: 1rem;
	border-right: none;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	position: relative;
	width: 70%;
	border-radius: 5px;
	min-width: 120px;
}

.tabs .brand_container {
	/* display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: salmon;
	margin: 0 auto; */
}

.tabs p {
	/* font-size: 1.2rem; */
	padding-top: 0.5rem;
	color: var(--dark-color);
}

.tabs .brand_container > div {
	width: fit-content;
	margin: auto;
}

.tabs .brand_container > div:hover {
	color: var(--light-color);
	cursor: pointer;
}

.tab-border {
	border-bottom: var(--dark-color) 2.5px solid;
	border-width: 3px;
}

/* Tab Content */
.tab-content {
	padding: 3rem 0;
	background: var(--light-color);
	color: var(--dark-color);
	width: 100%;
	position: relative;
}

/* Hide initial content */
#tab-1-content,
#tab-2-content,
#tab-3-content {
	display: none;
	opacity: 0;
}

.show {
	display: block !important;
	opacity: 1 !important;
	transition: all 1000 ease-in;
}

#tab-1-content .tab-1-content-inner {
	display: grid;
	grid-template-columns: repeat(2, .3fr);
	grid-gap: 2rem;
	text-align: center;
	justify-content: center;
	padding: 20px;
}

#tab-2-content .tab-2-content-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem;
	text-align: center;
	padding: 20px;
}

#tab-2-content .tab-2-content-top {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
}

#tab-2-content .tab-2-content-bottom {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2rem;
	text-align: center;
}




.tabs input[name="tab-control"] {
	display: none;
}

.tabs .content section h2,
.tabs ul li label {
	font-family: "Montserrat";
	font-weight: bold;
	font-size: 18px;
	color: var(--dark-color);
}

.tabs ul {
	list-style-type: none;
	padding-left: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	margin-bottom: 10px;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
	flex-wrap: wrap;
}

.tabs ul li {
	box-sizing: border-box;
	-webkit-box-flex: 1;
	flex: 1;
	width: 50%;
	padding: 0 10px;
	text-align: center;
}

.tabs ul li label {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: var(--dark-color);
	padding: 5px auto;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.tabs ul li label br {
	display: none;
}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
	outline: 0;
	color: #bec5cf;
}

.tabs .slider {
	position: relative;
	width: 50%;
	-webkit-transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
	transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slider .indicator {
	position: relative;
	width: 100px;
	max-width: 100%;
	margin: 0 auto;
	height: 4px;
	background: var(--dark-color);
	border-radius: 1px;
}

.tabs .content {
	width: 100%;
}

.tabs .content section {
	display: none;
	-webkit-animation-name: content;
	animation-name: content;
	-webkit-animation-direction: normal;
	animation-direction: normal;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	line-height: 1.4;
}

.tabs .content section h2 {
	color: var(--dark-color);
	display: none;
}

.tabs .content section h2::after {
	content: "";
	position: relative;
	display: block;
	width: 30px;
	height: 3px;
	background: var(--dark-color);
	margin-top: 5px;
	left: 1px;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
	cursor: default;
	color: var(--dark-color);
}

@media (max-width: 300px) {
	.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.slider {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.content>section:nth-child(1) {
	display: block;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
	cursor: default;
	color: var(--dark-color);
}

@media (max-width: 300px) {
	.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
		background: rgba(0, 0, 0, 0.08);
	}
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.slider {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.content>section:nth-child(2) {
	display: block;
}

@-webkit-keyframes content {
	from {
		opacity: 0;
		-webkit-transform: translateY(5%);
		transform: translateY(5%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@keyframes content {
	from {
		opacity: 0;
		-webkit-transform: translateY(5%);
		transform: translateY(5%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}
}

@media (max-width: 500px) {
	.tabs ul li label {
		white-space: initial;
	}

	.tabs ul li label br {
		display: initial;
	}

	.tabs ul li label svg {
		height: 1.5em;
	}
}

@media (max-width: 300px) {
	.tabs ul li label {
		padding: 5px;
		border-radius: 5px;
	}

	.tabs ul li label span {
		display: none;
	}

	.tabs .slider {
		display: none;
	}

	.tabs .content {
		margin-top: 20px;
	}

	.tabs .content section h2 {
		display: block;
	}
}





.table {
	width: 100%;
	margin-top: 2rem;
	border-collapse: collapse;
	border-spacing: 0;
}

.footer {
	max-width: 70%;
	margin: 1rem auto;
	overflow: auto;
}

.footer,
.footer a {
	color: #999;
	font-size: 0.9rem;
}

.footer p {
	margin-bottom: 1.5rem;
}

.footer .footer-cols {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.footer li {
	line-height: 1.9;
}

.footer .lang-select {
	margin-top: 2rem;
	color: #999;
	background-color: #000;
	background-image: none;
	border: 1px solid #333;
	padding: 1rem 1.2rem;
	border-radius: 5px;
}

/* Brand Container */
.brand_container {
	margin: auto;
	overflow: hidden;
	padding: 0 2rem;
}

/* Text Styles */
.text-xl {
	font-size: 2rem;
}

.text-lg {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.text-md {
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.text-center {
	text-align: center;
}

.text-dark {
	color: #999;
}

.desc {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 20px;
	justify-content: center;
	justify-items: center;
	align-content: center;
}

.desc .text {
	display: flex;
	line-height: 1.5;
	justify-content: center;
	justify-items: center;
	align-content: center;
	/* font-size: 28px; */
	text-align: center;
	color: #000000;
	padding: 20px;
}

.potent_serum {
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: center;
	justify-items: center;
	align-content: center;
	margin-bottom: 50px;
}

.text_head {
	display: flex;
	justify-content: center;
	justify-items: center;
	align-content: center;
	font-size: 30px;
	line-height: 1.5;
	color: black;
	padding-bottom: 30px;
	text-align: center;
}

.btn_discover {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	text-transform: uppercase;
	color: #000;
	border: 1px solid #000;
	width: 128px;
	height: 50px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	font-size: 18px;
}

.wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 3px;
}
.wrapper .col_1 {
	height: 350px;
}
.one {
	background: url(images/Flower1.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.two {
	background: url(images/Flower2.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.tree {
	background: url(images/Flower3.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.four {
	background: url(images/Flower4.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}
.text_img_sku {
	height: 70px;
	margin: 30px 0 50px 0;
}
.desc_sku {
	/* font-size: 22px; */
	text-transform: uppercase;
}

.text_tab {
	/* font-size: 22px; */
}

@media (max-width: 1067px) {
	#tab-1-content .tab-1-content-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	#tab-2-content .tab-2-content-top {
		display: block;
		text-align: center;
	}

	#tab-2-content .tab-2-content-bottom {
		margin-top: 2rem;
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 2rem;
		text-align: center;
	}
}

@media (max-width: 960px) {
	.hide-sm {
		display: none;
	}
	.wrapper .col_1 {
		height: 350px;
	}
	.footer .footer-cols {
		grid-template-columns: repeat(1, 1fr);
		justify-content: center;
		align-items: center;
		margin: 0 auto;
	}
	.desc .text {
		/* font-size: 18px; */
	}
	.text_head {
		font-size: 30px;
	}
	.btn_discover {
		/* font-size: 18px; */
		width: 150px;
		height: 50px;
	}
	.desc_sku {
		/* font-size: 18px; */
	}
	.text_tab {
		/* font-size: 18px; */
	}
}

@media (max-width: 700px) {
	.wrapper .col_1 {
		height: 350px;
	}
}

@media(max-height: 600px) {
  	.showcase-content {
		margin-top: 3rem;
	}
}