@import url('https://fonts.googleapis.com/css2?family=Pathway+Extreme:wght@300;400;500;600;700;800;900&display=swap');
:root {
	--main-color: #c3c8ff;
	--main-color-hover: #5d6193;
	--primary-bg: #1a1a25;
	--secondary-bg: #282d41;
	--dark-bg: #15151e;
	--primary-color: #01ad79;
	--primary-color-hover: #03694a;
	--secondary-color: #016dcc;
	--secondary-color-hover: #005aa9;
}
body {
	background: var(--primary-bg);
	color: var(--main-color);
	font-family: 'Pathway Extreme', sans-serif;
	font-size: 15px;
}
a {
	color: var(--primary-color);
	text-decoration: none;
}
a:hover {
	color: var(--primary-color-hover);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.btn {
	font-weight: 700;
	border-radius: .5rem;
	text-transform: uppercase;
	box-shadow: inset 0 0 4px 1px rgb(255 255 255 / 50%);
	padding: .5rem .9rem;
	transition: all .2s ease-in-out;
}
.btn:hover {
	transform: translateY(-5px);
}
.btn-sm {
	box-shadow: inset 0 0 3px 1px rgb(255 255 255 / 50%);
}
.btn-primary {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:active {
	background: var(--primary-color-hover);
	border-color: var(--primary-color-hover);
}
.btn-secondary {
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}
.btn-secondary:hover, .btn-secondary:active {
	background: var(--secondary-color-hover);
	border-color: var(--secondary-color-hover);
}
.btn-warning {
	color: #fff;
	background: #df9000;
	border-color: #df9000;
}
.btn-warning:hover, .btn-warning:active {
	color: #fff;
	background: #c57f00;
	border-color: #c57f00;
}
.btn-whatsapp {
	color: #fff;
	background: #0bc042;
}
.btn-whatsapp:hover, .btn-whatsapp:active {
	color: #fff;
	background: #039730;
}
.btn-icon {
	color: var(--main-color);
	font-weight: 700;
}
.btn-icon i {
	font-size: 20px;
	vertical-align: middle;
}
.modal-title {
	text-transform: uppercase;
	letter-spacing: 2px;
}
.form-label {
	color: var(--main-color-hover);
	text-transform: uppercase;
	letter-spacing: 2px;
}
.form-control, .form-select {
	color: var(--main-color);
	background-color: var(--secondary-bg);
	border-color: var(--secondary-bg);
	border-radius: .5rem;
}
.form-control:focus, .form-select:focus {
	color: var(--main-color);
	background-color: var(--secondary-bg);
	border-color: var(--primary-color);
	box-shadow: none;
}
.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c3c8ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.form-select[disabled] {
	color: var(--main-color-hover);
}
.form-control:focus + .form-label, .form-select:focus + .form-label {
	color: var(--main-color) !important;
}
.input-container {
	display: flex;
	flex-direction: column;
}
.input-container .form-control, .input-container .form-select {
	order: 2;
}
.input-container .form-label {
	order: 1;
}
.secondary-bg {
	background-color: var(--secondary-bg) !important;
}
.dark-bg {
	background-color: var(--dark-bg) !important;
}
.text-gmain {
	color: var(--primary-color);
	background: linear-gradient(0deg,var(--main-color) 10%,var(--main-color-hover) 35%,var(--main-color) 60%);
}
.text-gprimary {
	color: var(--primary-color);
	background: linear-gradient(0deg,var(--primary-color) 10%,var(--primary-color-hover) 35%,var(--primary-color) 60%);
}
.text-gmain, .text-gprimary {
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.lens-white, .lens-blue, .lens-gold, .lens-purple, .lens-green {
	width: fit-content;
	position: relative;
}
.lens-white:after, .lens-blue:after, .lens-gold:after, .lens-purple:after, .lens-green:after {
	content: '';
	position: absolute;
	bottom: -1.3rem;
    left: -10%;
    width: 120%;
	height: 52px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.lens-white:after {
	background-image: url(../img/lens-white.png);
}
.lens-blue:after {
	background-image: url(../img/lens-blue.png);
}
.lens-gold:after {
	background-image: url(../img/lens-gold.png);
}
.lens-purple:after {
	background-image: url(../img/lens-purple.png);
}
.lens-green:after {
	background-image: url(../img/lens-green.png);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
	color: #fff;
	font-size: 25px;
	background: var(--secondary-bg);
}
.nav-link {
	color: var(--main-color);
	font-weight: 600;
}
.nav-link.active {
	color: var(--primary-color);
	font-weight: 700;
}
.nav-link:focus, .nav-link:hover {
	color: var(--primary-color) !important;
}
#navMenu .nav-link {
	display: flex;
	align-items: center;
	white-space: nowrap;
}
#navMenu .nav-link i {
	font-size: 19px;
	margin-right: 4px;
}
.bi-dice-6-fill {
	transform: rotate(7deg);
}
.dropdown-menu {
	background: var(--primary-bg);
	color: var(--main-color);
	border-radius: .5rem;
	border: 1px solid var(--secondary-bg);
	padding: 0;
	overflow: hidden;
}
.dropdown-item {
	color: var(--main-color);
	padding: .5rem 1rem;
}
.dropdown-item:hover {
	background: var(--secondary-bg);
	color: var(--primary-color);
}
.dropdown-menu li:not(:last-child) .dropdown-item {
	border-bottom: 1px solid var(--secondary-bg);
}
.navbar {
	position: relative;
	color: var(--main-color-hover);
	background: var(--dark-bg);
	padding: .7rem 0;
	z-index: 10;
}
.nav-container {
	width: 100%;
}
.nav-row {
	justify-content: space-between;
}
.nav-left .btn, .nav-right .btn {
	font-size: 13px;
}
.nav-left, .nav-right {
	width: calc(100% / 2 - 100px);
	display: flex;
	align-items: center;
	font-size: 13px;
}
.nav-right {
	justify-content: end;
}
.nav-center {
	display: flex;
	justify-content: center;
	position: relative;
	width: 200px;
}
.nav-center .logo {
	width: 100%;
	max-width: 150px;
	position: absolute;
	margin-top: 1.4rem;
}
.nav-center:before {
	content:'';
	width: 300px;
    height: 32px;
	position: absolute;
	background: url(../img/logo-back.png) no-repeat;
	bottom: -2.5rem;
	left: -50px;
}
.swiper {
	position: relative;
}
.swiper-slide {
	position: relative;
	width: 100%;
}
.swiper-pagination-bullet {
	background: var(--primary-color);
}
.swiper-image {
	width: 100%;
	display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    height: 450px;
}
.swiper-slide img {
	width: auto;
	height: 100%;
}
.main-container {
	position: relative;
	background: var(--dark-bg);
	padding: 3rem 0;
	overflow: hidden;
}
.main-container > div {
	position: relative;
	z-index: 5;
}
.main-container:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/bg-side-left.png) 0 0 no-repeat, url(../img/bg-side-right.png) 100% 100% no-repeat, var(--dark-bg);
	opacity: 0.5;
	z-index: 0;
}
.main-container section {
	border-radius: 1rem;
}
.product-item {
	text-align: center;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.product-item:hover {
	transform: translateY(-10px);
}
.product-item:hover .product-image {
	transform: scale(1.05) rotate(2deg);
}
.product-image {
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	margin-bottom: 5px;
	border: 2px solid var(--primary-color);
}
.product-text {
	color: var(--main-color);
	display: block;
	text-transform: uppercase;
	letter-spacing: 2px;
}
section {
	position: relative;
	padding: 3rem 0;
}
section#steps:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background: url(../img/steps-bg-left.png) 0 0 no-repeat, url(../img/steps-bg-right.png) 100% 0 no-repeat;
	opacity: 0.5;
	z-index: 0;
}
section > div {
	position: relative;
	z-index: 1;
}
.steps .step-item {
	position: relative;
	margin-bottom: 1rem;
}
.steps .step-item:not(:last-child):after {
	content: '';
	position: absolute;
	width: 40px;
    height: 56px;
    top: 20%;
    right: -1.2rem;
	background: url(../img/arrow-right.png) no-repeat;
	background-size: contain;
}
.step-title {
	text-transform: uppercase;
	letter-spacing: 2px;
}
.steps img {
	max-width: 100px;
	margin-bottom: .5rem;
}
.steps p {
	text-transform: uppercase;
	margin-top: 1.5rem;
	margin-bottom: 0;
}
.steps .separator {
	margin-top: 1rem;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
}
.modal-content {
	background: var(--dark-bg);
	border-radius: .7rem;
	overflow: hidden;
}
.modal-header {
	border-bottom: 1px solid var(--secondary-bg);
}
.modal-footer {
	border-top: 1px solid var(--secondary-bg);
}
.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
#promotion {
	min-height: calc(100vh - 8rem);
	background: url(../img/promotion-bg-min.jpg) center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
#promotion:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/bg-side-left.png) 0 0 no-repeat, url(../img/bg-side-right.png) 100% 100% no-repeat;
	background-attachment: fixed;
	opacity: 0.8;
	z-index: 0;
	top: 0;
}
.promotion-menu, .promotion-container {
	width: 100%;
	background: var(--secondary-bg);
	border-radius: .7rem;
	padding: 1rem;
	list-style: none;
}
.promotion-menu .promotion-item:not(:last-child) {
	margin-bottom: 1rem;
}
.promotion-item {
	width: 100%;
	text-align: center;
	color: #fff;
	background: var(--dark-bg);
	font-weight: 700;
	border: 1px solid var(--dark-bg);
	border-radius: 0.5rem;
	padding: 0.5rem 0.9rem;
	transition: all .2s ease-in-out;
	cursor: pointer;
}
.promotion-item.active {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	box-shadow: inset 0 0 3px 1px rgb(255 255 255 / 50%);
}
.promotion-item:hover {
	background: var(--primary-color-hover);
	border: 1px solid var(--primary-color-hover);
	box-shadow: inset 0 0 3px 1px rgb(255 255 255 / 50%);
}
.promotion-title {
	color: var(--main-color);
	margin-bottom: 1rem;
}
.promotion-image {
	overflow: hidden;
}
.promotion-detail {
	color: #fff;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 2px;
}
.accordion-item {
	background: var(--dark-bg);
	border-color: var(--dark-bg);
	overflow: hidden;
	border-radius: 0.7rem !important;
}
.accordion-item:not(:last-child) {
	margin-bottom: 1rem;
}
.accordion-item:hover .promotion-image img {
	transform: scale(1.05);
	transition: all .2s ease-in-out;
}
.accordion-button, .accordion-button:focus, .accordion-button:not(.collapsed) {
	background: var(--primary-color);
	border-color: var(--dark-bg);
	padding: 0;
}
.accordion-button::after {
	display: none;
}
.accordion-button:not(.collapsed) {
	box-shadow: none;
}
@media(max-width: 992px) {
	.navbar-collapse {
		position: absolute;
		width: 100%;
		left: 0;
		padding: 1rem;
		top: 3.5rem;
		background: var(--dark-bg);
		z-index: 20;
	}
	.nav-item:not(:last-child) {
		border-bottom: 1px solid var(--secondary-bg);
	}
	.nav-item.dropdown:has(.show) {
		border-bottom: none;
	}
	.swiper-image {
		height: 300px;
	}
}
@media(max-width: 768px) {
	.main-container:before {
		background: url(../img/bg-side-left.png) 0 -10rem no-repeat, url(../img/bg-side-right.png) 100% 120% no-repeat, var(--dark-bg);
	}
	.product-model {
		max-width: 300px;
	}
	.steps .step-item:not(:last-child):after {
		display: none;
	}
	section#steps:before {
		height: 100%;
		background: url(../img/steps-bg-left.png) no-repeat;
		opacity: 0.4;
	}
}
@media(max-width: 576px) {
	.nav-left, .nav-right {
		width: calc(100% / 2 - 75px);
	}
	.nav-center {
		width: 150px;
	}
	.nav-center .logo {
		width: 100px;
		margin-top: 1.1rem;
	}
	.nav-center:before {
		width: 200px;
		height: 20px;
		position: absolute;
		background: url(../img/logo-back-sm.png) no-repeat;
		bottom: -1.9rem;
		left: -25px;
	}
}