﻿/***************** Start Collection Detail *******************/
#sec-4 {
    position: relative;
    z-index: 1;
	background: #fff;
	padding: 8.14rem 0;
}

#sec-4 .category-row {
	height: 0;
}

#sec-4 #categories {
	position: relative;
	z-index: 10;
	transform: translateY(-100%);
}

#sec-4 #products {
	min-height: calc(100vh - 20rem);
}

#sec-4 .product-name {
	display: block;
	font-size: 1.42rem;
	font-weight: 800;
	color: var(--text-dark-0);
	margin-bottom: 1.42rem;
}

#sec-4 .section-title svg {
	display: block;
	width: 1.14rem;
	height: 1.14rem;
	stroke: var(--text-dark-3);
}

#sec-4 .section-title strong {
	font-size: 1.28rem;
}

#sec-4 .summary-box p {
	margin: 0;
	font-size: 1.07rem;
	line-height: 2rem;
}

#sec-4 .link-btn {
	margin-top: 2rem;
	background: var(--primary-darker);
	color: var(--White);
}

#sec-4 .categories .section-title strong {
	font-size: 1.07rem;
	font-weight: 400;
}

#sec-4 .categories .list-wrapper .item {
	display: inline-block;
	vertical-align: top;
	width: 10.7rem;
	margin-left: 0.8rem;
}

#sec-4 .categories .list-wrapper .item .cat-img-box {
	display: block;
	width: 100%;
	aspect-ratio: 2/1.15;
	overflow: hidden;
}

#sec-4 .categories .list-wrapper .item .cat-img-box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-5);
}

#sec-4 .categories .list-wrapper .item .title {
	font-size: 1.07rem;
}

#sec-4 .img-box {
	position: relative;
	padding: 0 4rem;
	aspect-ratio: 2 / 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

#sec-4 .img-box .navigation {
	position: absolute;
	top: calc(50% - 1.89rem);
	left: 0.57rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.78rem;
	height: 3.78rem;
	border-radius: var(--radius-circle);
	border: solid 1px var(--text-dark-2);
	-webkit-border-radius: var(--radius-circle);
	-moz-border-radius: var(--radius-circle);
	-ms-border-radius: var(--radius-circle);
	-o-border-radius: var(--radius-circle);
	background-color: var(--White);
	z-index: 10;
	cursor: pointer;
}

#sec-4 .img-box .navigation svg {
	width: 1.2rem;
	stroke: var(--text-dark-2);
}

#sec-4 .img-box .navigation.prev-btn {
	left: auto;
	right: 0.57rem;
}

#sec-4 .img-box .navigation.prev-btn svg {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

#sec-5 {
	background: #fff;
}

#sec-5 #toolTipGenerator {
	position: relative;
}

#sec-5 #toolTipGenerator .close-btn {
	color: #fff;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: solid 2px #fff;
	position: absolute;
	top: 1rem;
	left: 1rem;
	aspect-ratio: 1;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;

	svg {
		display: block;
		width: 1rem;
		height: 1rem;
		stroke: #fff;
	}
}

#sec-5 #toolTipGenerator>img {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

#sec-5 #toolTipGenerator>img.black-white {
	filter: grayscale(1);
	-webkit-filter: grayscale(1);
}

#sec-5 #toolTipGenerator .t_hotSpot {
	position: absolute;
	border: 1px solid #000;
	border-radius: 50%;
	cursor: pointer;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
}

#sec-5 #toolTipGenerator .t_hotSpot:after {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	right: calc(50% - 4px);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #000;
}

#sec-5 #toolTipGenerator .t_hotSpot.black {
	background: #000;
}

#sec-5 #toolTipGenerator .t_hotSpot.black:after {
	background: #000;
}

#sec-5 #toolTipGenerator .t_hotSpot.white {
	background: #fff;
}

#sec-5 #toolTipGenerator .t_hotSpot.white:after {
	background: #fff;
}

#sec-5 #toolTipGenerator .t_hotSpot.medium {
	width: 38px;
	height: 38px;
	margin-top: -15px;
	margin-left: -15px;
}

#sec-5 #toolTipGenerator .t_hotSpot.large {
	width: 56px;
	height: 56px;
	margin-top: -20px;
	margin-left: -20px;
}

#sec-5 #toolTipGenerator .t_hotSpot.square {
	border-radius: 0;
}

#sec-5 #toolTipGenerator .t_hotSpot.circleOutline {
	background: transparent;
}

#sec-5 .t_tooltip_content_wrap {
	position: absolute;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 60% !important;
	height: 100%;
	background: #001B42;
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	opacity: 0;
	z-index: 10;
}

#sec-5 .t_tooltip_content_wrap.active {
	right: 0%;
	opacity: 1;
}

#sec-5 .t_tooltip_content {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#sec-5 .t_tooltip_content .hotspot-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 3rem;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-wrapper {
	height: calc(100% - 4rem);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-height: 100%;
	width: 23.5rem;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	gap: 1.71rem;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item .img-box {
	max-height: calc(100% - 115px);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item .img-box img {
	display: block;
	border-radius: var(--radius-5);
	-webkit-border-radius: var(--radius-5);
	-moz-border-radius: var(--radius-5);
	-ms-border-radius: var(--radius-5);
	-o-border-radius: var(--radius-5);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item strong,
#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item .title {
	display: block;
	font-size: 1.42rem;
	font-weight: 800;
	color: var(--White);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper .swiper-slide .item .link-btn {
	color: var(--White);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3.78rem;
	height: 3.78rem;
	border-radius: var(--radius-circle);
	border: solid 1px var(--text-dark-2);
	-webkit-border-radius: var(--radius-circle);
	-moz-border-radius: var(--radius-circle);
	-ms-border-radius: var(--radius-circle);
	-o-border-radius: var(--radius-circle);
	background-color: var(--White);
	z-index: 10;
	cursor: pointer;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .navigation svg {
	width: 1.2rem;
	stroke: var(--text-dark-2);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .navigation.prev-btn {
	left: auto;
	right: 0;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .navigation.prev-btn svg {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .navigation.swiper-button-lock {
	display: none;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .swiper-pagination {
	position: relative;
	top: auto;
	bottom: auto;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .swiper-pagination .swiper-pagination-bullet {
	background: var(--White);
	opacity: 0.5;
}

#sec-5 .t_tooltip_content .hotspot-content .swiper-controller .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--primary-darker);
	opacity: 1;
}

#sec-6 {
	padding: 5.35rem 0;
}

#sec-6 .main-title {
	font-size: 1.42rem;
	font-weight: 800;
}

#sec-6 .subtitle {
	font-size: 1.28rem;
	font-weight: 300;
}

#sec-6 .custom-style-slider {
	position: relative;
	margin-bottom: -1.8rem;
	z-index: 1;
}

#sec-6 .custom-style-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4rem;
}

#sec-6 .custom-style-slider .swiper-slide>div {
	flex: 0 0 33%;
	text-align: center;
}

#sec-6 .custom-style-slider .swiper-slide .content .title {
	font-size: 1.42rem;
	font-weight: 800;
}

#sec-6 .custom-style-slider .swiper-slide .content .link {
	font-size: 1rem;
	font-weight: 700;
}

#sec-6 .custom-style-slider .navigation {
	position: absolute;
	top: calc(50% - 1.89rem);
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.78rem;
	height: 3.78rem;
	border-radius: var(--radius-circle);
	border: solid 1px var(--text-dark-2);
	-webkit-border-radius: var(--radius-circle);
	-moz-border-radius: var(--radius-circle);
	-ms-border-radius: var(--radius-circle);
	-o-border-radius: var(--radius-circle);
	background-color: var(--White);
	z-index: 10;
	cursor: pointer;
}

#sec-6 .custom-style-slider .navigation svg {
	width: 1.2rem;
	stroke: var(--text-dark-2);
}

#sec-6 .custom-style-slider .navigation.prev-btn {
	left: auto;
	right: 0;
}

#sec-6 .custom-style-slider .navigation.prev-btn svg {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

#sec-6 .custom-style-slider:nth-child(odd) .swiper-slide {
	flex-direction: row-reverse;
}

#sec-6 .custom-style-slider:nth-child(2n) {
	z-index: 2;
}

#sec-6 .custom-style-slider:nth-child(3n) {
	z-index: 3;
}

#sec-6 .custom-style-slider:last-child {
	margin-bottom: 0;
}

#sec-7 {
	padding: 3.71rem 0;
}

#sec-7 .main-title {
	font-size: 1.28rem;
	font-weight: 700;
}

#sec-7 .item {
	width: 100%;
	margin-bottom: 1.7rem;
}

#sec-7 .item .img-box {
	position: relative;
	display: block;
	aspect-ratio: 1/1;
}

#sec-7 .item .img-box img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-5);
	-webkit-border-radius: var(--radius-5);
	-moz-border-radius: var(--radius-5);
	-ms-border-radius: var(--radius-5);
	-o-border-radius: var(--radius-5);
	z-index: 1;
}

#sec-7 .item .img-box .hover-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	z-index: 2;
}

#sec-7 .item .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.21rem 0 0;
}

#sec-7 .item .content strong,
#sec-7 .item .content .title {
	height: 4.9rem;
	font-size: 1.42rem;
	font-weight: 800;
	line-height: 1.6;
	margin-bottom: 0.8rem;
	overflow: hidden;
}

#sec-7 .item .content .link-btn {
	opacity: 0;
	color: var(--White);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

#sec-7 .item:hover .img-box .main-img {
	opacity: 0;
}

#sec-7 .item:hover .img-box .hover-img {
	opacity: 1;
}

#sec-7 .item:hover .content .link-btn {
	opacity: 1;
}

.fixed-nav {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--secendry-darker);
	padding: 0.66rem 0;
	z-index: 100;
}

.fixed-nav .label {
	font-size: 1.28rem;
	font-weight: 700;
	color: var(--primary-main);
}

@media (max-width: 990px) {

	#sec-4 #categories {
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
	}

	#sec-4 .category-row {
		height: auto;
	}

	#sec-5 .t_tooltip_content_wrap {
		top: auto;
		bottom: -100%;
		right: 0;
		left: 0;
		width: 100% !important;
		height: 60vh;
		position: fixed;
	}

	#sec-5 .t_tooltip_content_wrap.active {
		bottom: 4.9rem;
		opacity: 1;
	}

	#sec-6 {
		padding: 3.35rem 0;
	}

	#sec-6 .custom-style-slider {
		margin-bottom: 0;
	}
}

@media (max-width: 768px) {
	#sec-4 {
		padding: 2.14rem 0;
	}

	#sec-4 .product-slider .navigation {
		width: 2.78rem;
		height: 2.78rem;
		top: calc(50% - 1.34rem);
	}

	/* #sec-5 #toolTipGenerator .t_hotSpot.medium {
		width: 25px;
		height: 25px;
		margin-top: -10px;
		margin-left: -10px;
	} */

	#sec-6 {
		padding: 3.35rem 0;
	}

	#sec-6 .custom-style-slider .navigation {
		width: 2.78rem;
		height: 2.78rem;
		top: calc(50% - 1.34rem);
	}

	#sec-6 .custom-style-slider .swiper-slide {
		padding: 0 3rem;
		flex-direction: row !important;
	}

	#sec-6 .custom-style-slider .swiper-slide>div {
		flex: 0 0 50%;
	}

	#sec-6 .custom-style-slider .swiper-slide .content:last-child {
		display: none;
	}
}

@media (max-width: 570px) {
	#sec-5 {
		height: 470px;
		position: relative;
	}

	#sec-5 #hotspotsection {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 1000px;
	}

	#sec-5 #hotspotsection #toolTipGenerator {}

	#sec-7 .item .content strong,
	#sec-7 .item .content .title {
		height: 3.5rem;
		font-size: 1.1rem;
	}

	#sec-7 .item .content .link-btn {
		padding: 0.5rem 1rem;
	}
}

/***************** End Collection Detail *******************/