html {
	font-size: 10px;
}
@media (min-width: 1921px) {
	html {
		font-size: 10px;
	}
}
@media (max-width: 1920.98px) {
	html {
		font-size: 10px;
	}
}
@media (max-width: 1399.98px) {
	html {
		font-size: 9px;
	}
}
@media (max-width: 1199.98px) {
	html {
		font-size: 8.6px;
	}
}
@media (max-width: 991.98px) {
	html {
		font-size: 10px;
	}
}

:root {
  --ink:        #0A0912;
  --surface:    #131120;
  --surface-2:  #1B1830;
  --line:       rgba(255,255,255,0.08);
  --line-soft:  rgba(255,255,255,0.05);

  --text:       #F6F4FB;
  --text-muted: #A79FC4;
  --text-dim:   #6E668C;

  --pink:       #FF2E7E;
  --violet:     #7A2FF5;
  --gold:       #FFC857;

  --grad-brand: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(255,46,126,.16) 0%, rgba(122,47,245,.16) 100%);

  --radius-lg:  28px;
  --radius-md:  18px;
  --radius-sm:  12px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

::-webkit-scrollbar { width:10px; }
::-webkit-scrollbar-track{ background:var(--ink); }
::-webkit-scrollbar-thumb{ background:var(--surface-2); border-radius:10px; }

body {
	background-color: var(--white_color);
	font: 400 1.5rem/1.65 var(--font-body);
	color: var(--text);
	background:var(--ink);
	overflow-x: hidden;
}

body.page-home {
	padding-top: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: inherit;
}
.h1 {
	font: 600 7.2rem/1.06 var(--font-display);
}
.h2 {
	font: 600 5rem/1.1 var(--font-display);
}
.h3 {
	font: 600 4rem/1.2 var(--font-display);
}
.h4 {
	font: 600 3.4rem/1.2 var(--font-display);
}
.h5 {
	font: 700 2.2rem/1.2 var(--font-display);
}
.h6 {
	font: 600 1.4rem/1.2 var(--font-display);
}
p {
	font: 400 1.5rem/1.6 var(--font-body);
	color: var(--text-muted);
}
span {
	font-family: inherit;
	font-style: normal;
	font-weight: inherit;
	font-size: inheritrem;
	line-height: inherit;
	color: inherit;
}
a {
	font-family: inherit;
	font-style: normal;
	font-weight: inherit;
	font-size: inheritrem;
	line-height: inherit;
	color: inherit;
}
@media (max-width: 991px) {
	.h2 {
		font-size: 4rem;
	}
	.h3 {
		font-size: 3.4rem;
	}
}
/*--------- Typography CSS ---------*/


/*--------- Common CSS ---------*/
input:focus,
select:focus,
.form-control:focus,
button:focus,
.btn:focus {
	box-shadow: none;
	outline: none;
	border-color: inherit;
}

img {
	width: 100%;
	object-fit: cover;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a,
a:hover {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all 0.3s linear;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 575.98px) {
	.container,
	.container-fluid {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.py-70 {
	padding-top: 7rem;
	padding-bottom: 7rem;
}
.pb-70 {
	padding-bottom: 7rem;
}
.pt-70 {
	padding-top: 7rem;
}
@media (max-width: 991px) {
	.py-70 {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.pb-70 {
		padding-bottom: 4rem;
	}
	.pt-70 {
		padding-top: 4rem;
	}
}
@media (max-width: 575px) {
	.py-70 {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.pb-70 {
		padding-bottom: 3rem;
	}
	.pt-70 {
		padding-top: 3rem;
	}
}

.wpcf7-spinner {
	position: absolute !important;
	top: 50%;
	left: 50%;
	margin: 0 !important;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@keyframes preloader-animation {
	0% {
		transform: scale(0.7);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.7);
	}
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--ink);
	z-index: 1000000;
	display: flex;
	justify-content: center;
	align-items: center;
}
#preloader img {
	width: 8vw;
	height: auto;
	min-width: 12rem;
	aspect-ratio: 1/1;
	transform-style: preserve-3d;
	animation: preloader-animation 1.8s infinite ease-in-out;
}
/*--------- Common CSS ---------*/


/*--------- Button CSS ---------*/
.theme-btn {
	font: 600 1.6rem/1.2 var(--font-body);
	padding: 1rem 2.2rem;
	border: none;
	color: var(--text);
	background: var(--grad-brand);
	display: inline-block;
	text-transform: capitalize;
	border-radius: 4rem;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}
.theme-btn:hover {
	transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(255, 46, 126, .55);
}
@media (max-width: 575.98px) {
	.theme-btn {
		padding: 1.2rem 2rem 1.2rem;
	}
}

.white-btn {
	font: 700 1.6rem/1.2 var(--font-body);
	padding: 1.5rem 3rem;
	border: none;
	color: var(--ink);
	background: var(--text);
	border-radius: 4rem;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}
.white-btn img {
	width: 1.6rem;
}
.white-btn:hover {
	transform: translateY(-3px);
    color: var(--ink);
}
/*--------- Button CSS ---------*/

.theme-badge {
	font: 600 1.3rem/1.2 var(--font-display);
	display: inline-flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1rem 1.6rem 0.9rem;
	margin-bottom: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 10rem;
    background: var(--line-soft);
}
.theme-badge::before {
	content: '';
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--grad-brand);
}
@media (max-width: 991px) {
	.theme-badge {
		padding: 0.8rem 1.3rem 0.8rem;
	}
	.theme-badge::before {
		width: 0.5rem;
		height: 0.5rem;
	}
}

/*--------- Form CSS ---------*/
.form-control {
	/* font: 400 1.6rem/1.4 var(--inter_400); */
	border: 1px solid transparent;
	border-radius: 1rem;
	padding: 1rem 1.6rem;
	margin-bottom: 2rem;
	background-color: rgba(0, 0, 0, 0.05);
}
.form-control:focus {
	background-color: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.4);
}
.form-control::placeholder {
	color: #555555;
}
.wpcf7-form-control-wrap {
	display: block;
}
textarea.form-control {
	min-height: 17rem;
}
.form .theme-btn {
	width: 100%;
}
.form .theme-btn input {
	color: inherit;
	border: none;
	background-color: transparent;
}
/*--------- Form CSS ---------*/


/*--------- Header CSS ---------*/
header {
	position: relative;
	z-index: 9;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}
header .main-header {
	padding: 1.8rem 0;
	transition: all 0.3s ease-in-out;
}
header .main-header .logo {
	font-size: 2rem;
	font-family: var(--font-display);
}
header .main-header .logo img {
	max-width: 3.6rem;
	height: auto;
	border-radius: 0.9rem;
}
header .main-header .navbar .nav {
	gap: 4rem;
}
header .main-header .navbar .nav .nav-item .nav-link {
	font: 500 1.5rem/1.2 var(--font-body);
	color: var(--text-muted);;
	padding: 1rem 0;
	position: relative;
	transition: all 0.3s linear;
}
header .main-header .navbar .nav .nav-item:hover .nav-link,
header .main-header .navbar .nav .nav-item.active .nav-link {
	color: var(--white_color);
}
header .main-header .right-side {
	gap: 2rem;
	padding-left: 5.6rem;
}
header .main-header .right-side .burger-menu {
	width: 3.6rem;
	height: 3.6rem;
	background: var(--grad-brand);
    border-radius: 1rem;
    padding: 1rem;
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(10,9,18,.78);
	backdrop-filter: blur(16px) saturate(140%);
	border-bottom: 1px solid var(--line);
	animation: headerSticky .95s ease forwards;
}
header.fixed .main-header {
	padding: 1.3rem 0;
}
header.fixed .main-header .logo img {
	max-width: 3.6rem;
}
header .main-header .navbar .nav .nav-item:has(> .sub-menu) > .nav-link {
	padding-right: 2rem;
}
header .main-header .navbar .nav .nav-item:has(> .sub-menu) > .nav-link::after {
	content: "";
	position: absolute;
	top: 1.2rem;
	right: 0;
	width: 1.4rem;
	height: 1.4rem;
	background-image: url("../images/right.svg");
	background-size: contain;
    background-position: center;
    transform: rotate(90deg);
}
header .main-header .navbar .nav .nav-item .sub-menu {
	position: absolute;
	top: 50%;
	background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    padding: 1rem;
    min-width: 22rem;
	opacity: 0;
	visibility: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
	transition: all 0.3s linear;
}
header .main-header .navbar .nav .nav-item:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 100%;
}
header .main-header .navbar .nav .nav-item .sub-menu .nav-item .nav-link {
	border-radius: 1rem;
    padding: 1rem 1.4rem;
	display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .2s;
}
header .main-header .navbar .nav .nav-item .sub-menu .nav-item .nav-link img {
	width: 1.8rem;
}
@media (max-width: 991px) {
	header .main-header .navbar .nav {
		gap: 2.4rem;
	}
	header .main-header .right-side {
		padding-left: 0;
	}
}
@media (max-width: 767.98px) {
	header .main-header .navbar {
		position: fixed;
		top: -100vh;
		left: 0;
		width: 100%;
		height: 100vh;
		/* background-color: var(--light_blue_color); */
		justify-content: center;
		z-index: 10;
		transition: all 0.3s linear;
	}
	header .main-header .navbar .close {
		position: absolute;
		top: 2rem;
		right: 2rem;
		width: 3.6rem;
		height: 3.6rem;
		cursor: pointer;
	}
	header .main-header .navbar .nav {
		-webkit-box-orient: vertical;
		flex-direction: column;
	}
	header .main-header .navbar .nav .nav-item .nav-link {
		font-size: 3rem;
	}
	header .main-header .navbar.active {
		top: 0;
	}
	header .main-header .right-side {
		gap: 1.4rem;
	}
}
@media (max-width: 575.98px) {
	header .main-header .logo {
		font-size: 1.8rem;
		gap: 0.7rem;
	}
	header .main-header .logo img {
		max-width: 3.4rem;
	}
	header .main-header .right-side {
		gap: 0.8rem;
	}
	header .main-header .right-side .theme-btn {
		padding: 0.9rem 1.5rem;
	}
	header .main-header .right-side .burger-menu {
		width: 3.2rem;
    	height: 3.2rem;
		padding: 0.9rem;
		border-radius: 0.8rem;
	}
}
@-webkit-keyframes headerSticky {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes headerSticky {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.short-banner-wrapper {
	padding: 6rem 0;
	background-color: var(--blue_color);
}
.short-banner-wrapper .banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 40%;
}
.short-banner-wrapper .short-banner h1 {
	color: var(--text);
}
.short-banner-wrapper .short-banner .breadcrumb li {
	color: var(--text);
}
.short-banner-wrapper .short-banner .breadcrumb li a {
	padding: 0 1rem;
}
.short-banner-wrapper .short-banner .breadcrumb li::after {
	content: "/";
}
.short-banner-wrapper .short-banner .breadcrumb li:last-child {
	padding-left: 1rem;
}
.short-banner-wrapper .short-banner .breadcrumb li:last-child::after {
	content: "";
}
@media (max-width: 575.98px) {
	.short-banner-wrapper {
		padding: 4rem 0;
	}
}
/*--------- Header CSS ---------*/


/*--------- Footer CSS ---------*/
footer {
    border-top: 1px solid var(--line);
}
footer .footer-main {
	padding: 6rem 0 8rem;
}
footer .footer-main .foot-item .logo {
	font-size: 2rem;
	font-family: var(--font-display);
	margin-bottom: 1.4rem;
}
footer .footer-main .foot-item .logo img {
	max-width: 3.6rem;
	height: auto;
	border-radius: 0.9rem;
}
footer .footer-main .menus .menu {
	font: 400 1.5rem/1.4 var(--font-body);
	gap: 1.4rem;
	color: var(--text-muted);
}
footer .footer-main .menus .menu li a:hover {
	color: var(--text);
}
footer .footer-main .foot-item .social-icon a {
	width: 3.8rem;
    height: 3.8rem;
	margin-top: 1.4rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
}
footer .footer-main .foot-item .social-icon a img {
	width: 1.6rem;
}
footer .footer-main .foot-item .social-icon a:hover {
	background: var(--grad-brand);
    border-color: transparent;
}
footer .footer-main .foot-item p {
	max-width: 32rem;
}
footer .footer-main .menus p {
	letter-spacing: .1em;
    color: var(--text-dim);
    margin-bottom: 1.8rem;
}
footer .copyright {
	padding: 2.6rem 0;
	border-top: 1px solid var(--line-soft);
}
@media (max-width: 767.98px) {
	footer .footer-main {
		padding: 4rem 0 5rem;
	}
	footer .footer-main .foot-item p {
		max-height: 100%;
	}
	footer .footer-main .menus {
		padding-top: 4rem;
	}
	footer .copyright {
		gap: 0.5rem;
		padding: 1.6rem 0;
	}
	footer .copyright p {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
@media (max-width: 575.98px) {
	footer .footer-main .menus {
		gap: 3.4rem 0;
	}
	footer .footer-main .menus p {
		margin-bottom: 1.2rem;
	}
	footer .footer-main .menus .menu {
		gap: 1rem;
	}
}
/*--------- Footer CSS ---------*/


/*--------- 404 Page CSS ---------*/
.error-wrapper {
	text-align: center;
}
.error-wrapper h1 {
	font-size: 12rem;
	color: var(--blue_color);
	padding-bottom: 1rem;
}
.error-wrapper h2 {
	color: var(--Black_color);
}
.error-wrapper p {
	font-size: 2rem;
	padding: 1rem 0 3rem;
}
/*--------- 404 Page CSS ---------*/


/*----- Hero CSS -----*/
.hero-wrapper .hero {
	gap: 6rem 0;
}
.hero-wrapper .hero .hero-content h1 {
	padding-bottom: 2.4rem;
}
.hero-wrapper .hero .hero-content .theme-btn {
	margin-top: 4rem;
}
.hero-wrapper .hero .hero-img img {
	border-radius: 3rem;
	aspect-ratio: 1/1;
	overflow: hidden;
	height: 100%;
}
/*----- Hero CSS -----*/

/*----- Build CSS -----*/
.build-wrapper .sec-ttl {
	max-width: 65rem;
}
.build-wrapper .build {
	--bs-gutter-x: 2.4rem;
    --bs-gutter-y: 2.4rem;
}
.build-wrapper .build .cards {
	padding: 3.2rem 2.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    height: 100%;
    transition: border-color .3s, transform .3s var(--ease);
}
.build-wrapper .build .cards:hover {
	transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
}
.build-wrapper .build .cards .count {
	font: 400 1.4rem/1.2 var(--font-display);
    color: var(--text-dim);
    letter-spacing: .1em;
    margin-bottom: 1.8rem;
	display: block;
}
.build-wrapper .build .cards .card-icon {
	width: 5.2rem;
    height: 5.2rem;
    border-radius: 1.4rem;
    background: var(--grad-brand-soft);
    margin-bottom: 2rem;
}
.build-wrapper .build .cards .card-icon img {
	width: 2.2rem;
	height: 2.2rem;
	object-fit: contain;
}
.build-wrapper .build .cards h3 {
	font: 600 1.8rem/1.2 var(--font-display);
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
}
/*----- Build CSS -----*/

/*----- FAQs CSS -----*/
.faq-wrapper .faqs .faq-content p {
	max-width: 36rem;
	padding-top: 1.4rem;
}
.faq-wrapper .faqs .accordion .accordion-item {
	background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 1.4rem;
}
.faq-wrapper .faqs .accordion .accordion-item .accordion-button {
	font: 600 1.6rem/1.2 var(--font-display);
	background-color: transparent;
	box-shadow: none;
	color: var(--text);
	padding: 1.6rem 2rem;
}
.faq-wrapper .faqs .accordion .accordion-item .accordion-button::after {
	--bs-accordion-btn-icon-width: 2rem;
	filter: brightness(0) invert(0.4);
}
.faq-wrapper .faqs .accordion .accordion-item .accordion-body {
	padding: 1.6rem 2rem;
	border-top: 1px solid var(--text);
}
/*----- FAQs CSS -----*/

/*----- CTA CSS -----*/
.cta-wrapper .cta {
	border-radius: var(--radius-lg);
    background: var(--grad-brand);
    padding: 7rem 6rem;
}
.cta-wrapper .cta p {
	max-width: 50rem;
	font-size: 1.6rem;
	padding-top: 1rem;
	color: var(--text);
}
@media (max-width: 991px) {
	.cta-wrapper .cta {
		padding: 5rem 4rem;
	}
}
/*----- CTA CSS -----*/

/*----- Contact CSS -----*/
.contact-form-wrapper .contact-form {
	max-width: 70rem;
	margin: auto;
}
.contact-form-wrapper .contact-form form {
	margin-top: 3rem;
	position: relative;
}
.wpcf7 form .wpcf7-response-output {
	font-size: 1.6rem;
	margin: 1.4rem 1rem 0 !important;
	padding: 0.8rem 1.4rem !important;
}
form .wpcf7-submit {
	margin-bottom: 0;
}
span.wpcf7-not-valid-tip {
	font-size: 1.4rem;
	margin: -1.2rem 0 1.4rem;
}
/*----- Contact CSS -----*/

/*----- Details Page CSS -----*/
.single-hero-wrapper {
	overflow-x: clip;
}
.single-hero-wrapper::after {
	content: "";
	position: absolute;
	top: -18rem;
    right: -16rem;
	width: 52rem;
    height: 52rem;
    background: var(--pink);
	opacity: .22;
	border-radius: 50%;
    filter: blur(90px);
}
.single-hero-wrapper::before {
	content: "";
	position: absolute;
	top: 38%;
    left: 48%;
	width: 34rem;
    height: 34rem;
    background: var(--violet);
    opacity: .18;
	border-radius: 50%;
    filter: blur(90px);
}
.single-hero-wrapper .breadcrumb {
	gap: 0.7rem;
	font-size: 1.4rem;
	color: var(--text-dim);
}
.single-hero-wrapper .breadcrumb a {
	color: var(--text-muted);
}
.single-hero-wrapper .breadcrumb .right {
	width: 1.2rem;
}
.single-hero-wrapper .single-hero .content .icon {
	width: 12rem;
    height: 12rem;
    border-radius: 2.8rem;
    object-fit: cover;
    box-shadow: 0 24px 50px -20px rgba(255, 46, 126, .5);
    margin-bottom: 2.6rem;
}
.single-hero-wrapper .single-hero .content .tools-badge {
	font: 700 1.2rem/1.2 var(--font-body);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0.9rem 1.4rem;
    border-radius: 10rem;
    background: var(--surface-2);
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}
.single-hero-wrapper .single-hero .content > p {
	font-size: 1.8rem;
	max-width: 50rem;
}
.single-hero-wrapper .single-hero .content .tools-badge img {
	width: 1.3rem;
}
.single-hero-wrapper .single-hero .content .theme-btn {
	padding: 2rem 3rem;
	box-shadow: 0 16px 34px -14px rgba(255, 46, 126, .6);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.single-hero-wrapper .single-hero .content .theme-btn:hover {
	transform: translateY(-3px);
    box-shadow: 0 22px 40px -14px rgba(255, 46, 126, .7);
}
.single-hero-wrapper .single-hero .content .theme-btn img {
	width: 2rem;
}
.single-hero-wrapper .single-hero .content .meta-row p {
	font: 700 2rem/1.4 var(--font-display);
	color: var(--text);
}
.single-hero-wrapper .single-hero .content .meta-row p span {
	font: 400 1.3rem/1.4 var(--font-body);
	color: var(--text-dim);
	text-transform: uppercase;
    letter-spacing: .08em;
	display: block;
	padding-top: 0.5rem;
}
.single-hero-wrapper .single-hero .hero-img {
	height: 56rem;
}
.single-hero-wrapper .single-hero .hero-img img {
	position: absolute;
    width: 23rem;
	border-radius: 3rem;
    overflow: hidden;
    border: 6px solid var(--surface-2);
    background: var(--surface-2);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
    transition: transform .5s var(--ease);
}
.single-hero-wrapper .single-hero .hero-img img:nth-of-type(1) {
	left: 6%;
    top: 8%;
    transform: rotate(-9deg);
    z-index: 1;
}
.single-hero-wrapper .single-hero .hero-img:hover img:nth-of-type(1) {
	transform: rotate(-14deg) translateY(-8px);
}
.single-hero-wrapper .single-hero .hero-img img:nth-of-type(2) {
	left: 32%;
    top: 0;
    transform: rotate(0deg);
    z-index: 3;
    width: 25rem;
}
.single-hero-wrapper .single-hero .hero-img:hover img:nth-of-type(2) {
	transform: translateY(-14px);
}
.single-hero-wrapper .single-hero .hero-img img:nth-of-type(3) {
	right: 4%;
    top: 12%;
    transform: rotate(10deg);
    z-index: 2;
}
.single-hero-wrapper .single-hero .hero-img:hover img:nth-of-type(3) {
	transform: rotate(15deg) translateY(-8px);
}

.screenshot-wrapper .screenshot {
	overflow: unset;
    overflow-x: clip;
}
.screenshot-wrapper .screenshot img.swiper-slide {
	border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: transform .4s var(--ease);
}
.screenshot-wrapper .screenshot img.swiper-slide:hover {
	transform: translateY(-8px);
}
.screenshot-wrapper .screenshot .swiper-button-next,
.screenshot-wrapper .screenshot .swiper-button-prev {
	top: -8rem;
	right: 0;
	width: 4.6rem;
	height: 4.6rem;
	margin: 0;
	border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: all .25s;
}
.screenshot-wrapper .screenshot .swiper-button-prev {
	left: auto;
    right: 5.4rem;
}
.screenshot-wrapper .screenshot .swiper-button-next svg,
.screenshot-wrapper .screenshot .swiper-button-prev svg {
	width: 1.8rem;
	height: 1.8rem;
	color: var(--pink);
}
.screenshot-wrapper .screenshot .swiper-button-next:hover,
.screenshot-wrapper .screenshot .swiper-button-prev:hover {
	background: var(--grad-brand);
    border-color: transparent;
}
.screenshot-wrapper .screenshot .swiper-button-next:hover svg,
.screenshot-wrapper .screenshot .swiper-button-prev:hover svg {
	color: #ffffff;
}


.product-content-wrapper .product-content {
	--bs-gutter-x: 5rem;
	gap: 4rem 0;
}
.product-content-wrapper .product-content .sec-ttl p {
	font-size: 1.6rem;
	padding-top: 1.8rem;
}
.product-content-wrapper .product-content .sec-ttl p b,
.product-content-wrapper .product-content .sec-ttl p strong {
	color: var(--text);
}
.product-content-wrapper .product-content .info-cards .card-item {
	padding: 2.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}
.product-content-wrapper .product-content .info-cards .card-item .icon {
	width: 4.2rem;
    height: 4.2rem;
    border-radius: 1.2rem;
    background: rgba(76, 217, 123, .14);
}
.product-content-wrapper .product-content .info-cards .card-item .icon img {
	width: 1.6rem;
	aspect-ratio: 1;
}
.product-content-wrapper .product-content .info-cards .card-item .content h3 {
	font-size: 1.6rem;
}
.product-content-wrapper .product-content .info-cards .card-item .content p {
	font-size: 1.4rem;
}
@media (max-width: 991px) {
	.single-hero-wrapper .single-hero {
		gap: 6rem 0;
	}
	.single-hero-wrapper .single-hero .hero-img {
		height: 47rem;
	}
	.single-hero-wrapper .single-hero .content .icon {
		width: 10rem;
    	height: 10rem;
	}
	.single-hero-wrapper .single-hero .content > p {
		font-size: 1.6rem;
	}
	.single-hero-wrapper .single-hero .content .theme-btn {
		padding: 1.6rem 2.4rem;
	}
	.screenshot-wrapper .screenshot .swiper-button-next, 
	.screenshot-wrapper .screenshot .swiper-button-prev {
		top: -7.4rem;
		width: 4rem;
    	height: 4rem;
	}
	.screenshot-wrapper .screenshot .swiper-button-next svg, 
	.screenshot-wrapper .screenshot .swiper-button-prev svg {
		width: 1.6rem;
    	height: 1.6rem;
	}
	.product-content-wrapper .product-content .sec-ttl p {
		padding-top: 1.4rem;
	}
}
@media (max-width: 575px) {
	.single-hero-wrapper::after {
		width: 28rem;
    	height: 28rem;
	}
	.single-hero-wrapper::before {
		width: 20rem;
    	height: 20rem;
	}
	.single-hero-wrapper .single-hero .hero-img {
		height: 90vw;
	}
	.single-hero-wrapper .single-hero .hero-img img {
		width: 44vw;
	}
	.single-hero-wrapper .single-hero .hero-img img:nth-of-type(1) {
		left: 4%;
    	top: 11%;
	}
	.single-hero-wrapper .single-hero .hero-img img:nth-of-type(2) {
		width: 44vw;
		top: 7%;
		left: 25%;
	}
	.product-content-wrapper .product-content {
		--bs-gutter-x: 1.5rem;
	}
	.product-content-wrapper .product-content .info-cards .card-item {
		padding: 1.5rem;
	}
	.build-wrapper .build {
		--bs-gutter-y: 1.6rem;
	}
	.build-wrapper .build .cards {
		padding: 2.2rem 2rem;
	}
	.cta-wrapper .cta {
		padding: 3rem 2.4rem;
	}
}
/*----- Details Page CSS -----*/

/*# sourceMappingURL=application.css.map */