/* ========================================== TEMP MISK ======================================= */
.xx {
	border: solid 1px red;
}

.xxx > *{
	border: solid 1px red;
}

.xxxx,
.xxxx * {
	border: solid 1px red;
}

/* ========================================== END TEMP MISK ======================================= */


/* ================================================================
   UTILITY CLASSES
   ================================================================ */

/* Display helpers */
.d-hiden {
	display: block;
}

.m-hiden {
	display: none;
}

/* Spacing utilities */
.m-0 {
	margin: 0 !important;
}

.p-0 {
	padding: 0 !important;
}

.mp-0 {
	margin: 0 !important;
	padding: 0 !important;
}

.p1 {
	padding: 1rem;
}

/* Text alignment */
.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

/* Position utilities */
.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

/* Flexbox utilities */
.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.items-stretch {
	align-items: stretch !important;
}

/* Size utilities */
.min-100vh {
	min-height: 100vh;
}

/* User select */
.no-select {
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

/* Font utilities */
.fw300 {
	font-weight: 300 !important;
}

.fw500 {
	font-weight: 500 !important;
}

small,
.small,
.small p {
	font-size: 16px !important;
}

p.hero.title {
	font-size: 1.5rem !important;
	font-weight: 300 !important;
}

/* ================================================================
   BASE ELEMENTS
   ================================================================ */

/* Horizontal rule */
hr {
	border: none;
	height: 1px;
	margin: 3rem 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.6), transparent);
}

/* Blockquote */
blockquote {
	position: relative;
	margin: 2rem 0;
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-left: solid .5rem var(--main-color);
}

blockquote p {
	margin: 0;
}

blockquote cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-size: 0.9rem;
}

blockquote cite::before {
	content: "— ";
}

/* ================================================================
   PAGE LAYOUT
   ================================================================ */

.page-wrap {
	padding: var(--header-height) 0 0;
}

.page-wrap .page-content {
	min-height: calc(100vh - var(--header-height));
}

.page-text-wrap {
	padding: 3rem 1rem;
}

.well {
	background: var(--panel1-color);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 2.5rem;
}

/* ================================================================
   PANELS
   ================================================================ */

.panel,
.panel-vertical {
	max-width:100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 6rem 2rem 4rem;
	overflow:hidden
}

.panel::before,
.panel-vertical::before {
	content: '';
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}

.panel.vh50 {
	min-height: 50vh;
}

.panel-content {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

#panel1 {
	z-index: 2;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
	display: inline-block;
	height: 3rem;
	line-height: 3rem;
	padding: 0 2rem;
	font-size: 1rem;
	color: #fff;
	background-color: var(--dark-color);
	border-radius: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.btn:hover {
	background-color: var(--main-color);
}

.btn-secondary {
	background: none;
	border: solid 1px #fff;
}

.btns {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 2rem;
	width: 100%;
	transform: translateY(10rem);
}

/* ================================================================
   TYPOGRAPHY - TEXT CONTENT
   ================================================================ */

.text-content h2 {
	font-size: clamp(2rem, 4.3vw, 3.5rem);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.text-content h3 {
	font-size: clamp(1.75rem, 3.6vw, 2.8rem);
	margin-bottom: 1.2rem;
	font-weight: 600;
}

.text-content h4 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin-bottom: 1rem;
	font-weight: 600;
}

.text-content h5 {
	font-size: clamp(1.25rem, 2.5vw, 1.8rem);
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.text-content ul {
	margin: 0 1.2rem 0 1.2rem;
}

.text-content ul li {
	line-height: normal;
	font-weight: 400;
	font-size: 1rem;
	margin-bottom: .8rem;
}

/* ================================================================
   TYPOGRAPHY - CONTAINER
   ================================================================ */

.container h1 {
	font-size: clamp(
		calc(var(--container-font-size) * var(--h1-min)),
		5vw,
		calc(var(--container-font-size) * var(--h1-max))
	);
	line-height: 1;
	font-weight: 500;
	margin: calc(var(--container-font-size) * var(--space-xxl)) 0 calc(var(--container-font-size) * var(--space-lg));
}

.container h2 {
	font-size: clamp(
		calc(var(--container-font-size) * var(--h2-min)),
		4vw,
		calc(var(--container-font-size) * var(--h2-max))
	);
	line-height: var(--lh-heading);
	font-weight: 500;
	margin: calc(var(--container-font-size) * var(--space-xl)) 0 calc(var(--container-font-size) * var(--space-md));
}

.container h3 {
	font-size: clamp(
		calc(var(--container-font-size) * var(--h3-min)),
		3vw,
		calc(var(--container-font-size) * var(--h3-max))
	);
	line-height: var(--lh-heading);
	font-weight: 500;
	margin: calc(var(--container-font-size) * var(--space-lg)) 0 calc(var(--container-font-size) * var(--space-sm));
}

.container h4 {
	font-size: clamp(
		calc(var(--container-font-size) * var(--h4-min)),
		2.5vw,
		calc(var(--container-font-size) * var(--h4-max))
	);
	line-height: var(--lh-heading);
	font-weight: 500;
	margin: calc(var(--container-font-size) * var(--space-md)) 0 calc(var(--container-font-size) * var(--space-xs));
}

.container h5 {
	font-size: clamp(
		calc(var(--container-font-size) * var(--h5-min)),
		2vw,
		calc(var(--container-font-size) * var(--h5-max))
	);
	line-height: var(--lh-heading);
	font-weight: 500;
	margin: calc(var(--container-font-size) * var(--space-sm)) 0 calc(var(--container-font-size) * (var(--space-xs) / 2));
}

.container p {
	font-size: calc(var(--container-font-size) * var(--p-size));
	line-height: var(--lh-text);
	margin: calc(var(--container-font-size) * var(--space-sm)) 0;
}

.container p > a:not(.btn) {
	color: #fff;
	text-decoration: underline;
}

.container p > a:hover {
	text-decoration: none;
}

.container ul,
.container ol {
	margin: calc(var(--container-font-size) * var(--space-lg)) 0;
	padding-left: calc(var(--container-font-size) * var(--space-lg));
	list-style-type: disc;
	line-height: var(--lh-text);
}

.container li {
	font-size: calc(var(--container-font-size) * var(--p-size));
	margin: calc(var(--container-font-size) * var(--space-xs)) 0;
	padding: 0;
}

.container p,
.container li,
.container em {
	font-weight: 300;
}

.code-info {
	font-size: clamp(1rem, 2vw, 1.3rem);
}

.ex-panel .ex-text {
	font-size: clamp(1rem, 4vw, 3rem);
	padding: 3rem 0;
	position: relative;
	z-index: 1;
}

.ex-panel .ex-text article {
	margin-bottom: 2rem;
	opacity: 1;
}

/* ================================================================
   GRADIENTS & ANIMATIONS
   ================================================================ */

.animated-gradient {
	background: radial-gradient(circle at 20% 20%, var(--panel1-color), transparent 80%),
		radial-gradient(circle at 80% 30%, var(--main-color), transparent 40%),
		radial-gradient(circle at 50% 80%, var(--panel2-color), transparent 60%);
	background-size: 200% 200%;
	animation: gradientAnimation 12s ease infinite;
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.cloud-gradient {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at 20% 20%, var(--main-color), transparent 60%),
		radial-gradient(circle at 80% 30%, #764ba2, transparent 60%),
		radial-gradient(circle at 50% 80%, #a855f7, transparent 60%);
	background-size: 200% 200%;
}

@keyframes cloudMove {
	0% {
		background-position: 0% 0%, 100% 0%, 50% 100%;
	}
	50% {
		background-position: 50% 50%, 50% 50%, 30% 70%;
	}
	100% {
		background-position: 100% 100%, 0% 100%, 70% 30%;
	}
}

.gradient_text_1 {
	display: inline-block;
	background: linear-gradient(94deg, #FF1818 37.03%, #FAFF0F 98.83%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gradient_text_2 {
	display: inline-block;
	background: linear-gradient(95deg, #8423FF 44.97%, #FF28A1 69.66%, #FF3B34 96.72%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ================================================================
   SCROLL DOWN ARROW
   ================================================================ */

.scroll-down-arrow {
	position: absolute;
	bottom: 20px;
	left: 50%;
	z-index: 300;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	font-size: 30px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	backdrop-filter: blur(10px);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.scroll-down-arrow:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateX(-50%) scale(1.1);
}

.scroll-down-arrow:active {
	transform: translateX(-50%) scale(0.95);
}

.scroll-down-arrow.hidden {
	opacity: 0 !important;
	transform: translateX(-50%) translateY(20px) !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

/* ================================================================
   CUSTOM CURSOR & TOOLTIP
   ================================================================ */

.custom-cursor,
.main-cursor-light {
	display: none;
}

.cursor-tooltip {
	position: fixed;
	pointer-events: none;
	z-index: 9998;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #000;
	background: #fff;
	border-radius: 20px;
	white-space: nowrap;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.8);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.cursor-tooltip.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* ================================================================
   CANVAS WRAPPER (Cursor light effect)
   ================================================================ */

#canvasWrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	pointer-events: none;
}

#world {
	width: 100%;
	height: 100%;
	display: block;
	background: transparent;
}

/* ================================================================
   ICONS
   ================================================================ */

.iconp {
	width: 100%;
}

.iconf {
	--size: clamp(5rem, 7vw, 10rem);
	width: var(--size);
	height: var(--size);
	padding: calc(var(--size) * 0.185);
	margin: 0;
	background: linear-gradient(135deg, var(--green-color) 0%, #000 100%);
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.iconf span {
	display: flex;
	width: 100%;
	height: 100%;
}

.iconf svg {
	display: block;
	width: 100%;
	height: auto;
}

/* ================================================================
   HORIZONTAL SCROLL PAGES
   ================================================================ */

.x-scroll-page h2,
.x-scroll-page h2 > b {
	font-weight: 500;
}

.x-scroll-page h1 > b,
.x-scroll-page h2 > b,
.x-scroll-page h3 > b,
.x-scroll-page h4 > b {
	color: var(--main-color);
}

.page--h-scroll .panel {
	background: radial-gradient(circle at 20% 20%, var(--dark-color), transparent 60%),
		radial-gradient(circle at 80% 30%, var(--main-color), transparent 60%),
		radial-gradient(circle at 50% 80%, var(--dark-color), transparent 60%),
		var(--dark-color);
}

.panel::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	opacity: .5;
	z-index: -1;
}

.panel em {
	font-style: normal;
}

/* List items fix */
.page--h-scroll .panel ul.list,
.page--h-scroll .panel ul.list li {
	list-style: none;
	padding-left: 0;
}

.page--h-scroll .panel ul.list li {
	margin: .6rem 0;
	padding: .6rem 0;
	position: relative;
}

.page--h-scroll .panel ul.list li::after {
	content: '';
	display: block;
	width: 20%;
	height: 1px;
	border-bottom: dashed 2px var(--dark-color);
	position: absolute;
	left: 0;
	bottom: -1px;
	transition: border-bottom-color .3s ease-in-out, width .3s ease-in-out;
}

.page--h-scroll .panel ul.list li:hover {
	color: var(--green-color);
}

.page--h-scroll .panel ul.list li strong.serv-price {
	white-space: nowrap;
}

.page--h-scroll .panel .container h2 strong {
	--strH2-width: 3rem;
	width: var(--strH2-width);
	height: var(--strH2-width);
	line-height: var(--strH2-width);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
	background: radial-gradient(ellipse at center, var(--panel1-color) 0%, var(--main-color) 100%);
}

/* ================================================================
   MEDIA QUERIES
   ================================================================ */

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
	.d-hiden {
		display: none;
	}
	
	.m-hiden {
		display: block;
	}
	
	.cloud-gradient {
		animation: cloudMove 5s ease-in-out infinite alternate;
	}
	
	.page--h-scroll {
		display: flex;
		flex-wrap: nowrap;
		width: fit-content;
		min-height: 100vh;
	}
	
	.page--h-scroll .panel {
		min-width: 100vw;
		width: 100vw;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.page--h-scroll .panel ul.list {
		max-width: 78%;
	}
	
	.btns {
		flex-wrap: nowrap;
	}
	
	blockquote {
		padding: 1.5rem 2rem;
	}
}

/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
	.iconp {
		display: flex;
		align-items: center;
		gap: 1.5rem;
	}
	
	.iconf {
		flex-shrink: 0;
	}
	
	.ex {
		flex: 1;
	}
	
	.page--h-scroll .panel .container h2 strong {
		--strH2-width: 5rem;
	}
	
	.page--h-scroll .panel ul.list li {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
	
	.page--h-scroll .panel ul.list li span {
		flex: 1;
	}
	
	.page--h-scroll .panel ul.list li strong {
		flex-shrink: 0;
		margin-left: auto;
	}
	
	.page--h-scroll .panel ul.list li::before {
		content: '';
		width: 0.5rem;
		height: 0.5rem;
		background: #fff;
		border-radius: 50%;
		flex-shrink: 0;
		display: block;
	}
	
	.page--h-scroll .panel ul.list li:hover::after {
		width: 100%;
		border-bottom-color: var(--green-color);
	}
	
	.page--h-scroll .panel ul.list li:hover::before {
		background-color: var(--green-color);
	}
	
	.scroll-down-arrow {
		width: 50px;
		height: 50px;
		font-size: 24px;
		bottom: 15px;
	}
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
	
	.panel,
	.hero .panel,
	.page--h-scroll .panel,
	.panel-vertical,
	.x-scroll-page .panel {
		background: rgba(0, 0, 0, .5);
		padding: 2rem .3rem;
		min-height: 30vh;
	}
	
	.body-home .panel{
		min-height: 100vh;
	}
	
	.hero .panel {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	
	.x-scroll-page .panel .container h2 strong {
		font-size: 2rem;
	}
	
	.x-scroll-page .panel ul.list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	.x-scroll-page .panel ul.list li {
		display: block !important;
	}
	
	.x-scroll-page .panel ul.list li::after {
		width: 100%;
	}
	
	.x-scroll-page .panel .flex.ico {
		margin-left: 50%;
		transform: translateX(-50%) rotate(90deg);
	}
	
	/* =================================================================================== PAGES WHIT OFFERS
	*/
	#business-card-website .title.text-center,
	#corporate-site .title.text-center,
	#online-shop .title.text-center{
		text-align:left !important		
	}
}

/*
=================================================================================== 
=================================================================================== PAGES WHIT OFFERS
=================================================================================== 
*/


html body .panel .offer-price {
	background: var(--redd-color);
	font-size: clamp(80px, 7vw, 100px);
	font-weight: 900;
	display: inline-flex;
	flex-wrap: nowrap;
	padding: .5rem 1rem;
	transform: perspective(1200px) rotateY(-25deg) rotateX(15deg) translateZ(-120px) scale(1.15, 1.15) translate(-19%, -43px);
	position: relative;
	z-index: 999;
	white-space: nowrap;
}

#business-card-website #cart-1,
#corporate-site #cart-2,
#online-shop #cart-3 {
	transform: perspective(1200px) rotateY(25deg) rotateX(15deg) translateZ(-120px) scale(1, 1) translate(0, -43px);
	margin: 0;
	border-color: var(--border-color); 
	transform-style: preserve-3d;
	transition: all .3s ease-in-out
}

#business-card-website .cart-wrap-transform:hover #cart-1,
#corporate-site .cart-wrap-transform:hover #cart-2,
#online-shop .cart-wrap-transform:hover #cart-3 {
	transform: perspective(1200px) rotateY(5deg) rotateX(5deg) translateZ(-20px) scale(.9, .9) translate(-13%, 0);
}

/* ================ / ================== */

#business-card-website #cart-1,
#business-card-website #cart-1 .btn.btn-secondary.active-btn,
#corporate-site #cart-2,
#corporate-site #cart-2 .btn.btn-secondary.active-btn,
#online-shop #cart-3,
#online-shop #cart-3 .btn.btn-secondary.active-btn {
	cursor: inherit
}

@media (min-width: 768px) { 

	html body .panel .offer-price { 
		float: right;
		transform: perspective(1200px) rotateY(-25deg) rotateX(15deg) translateZ(-120px) scale(1, 1) translate(0, -43px); 
	}
}

.article-design h3 > .num {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--box-h3-height);
	height: var(--box-h3-height);
	line-height: var(--box-h3-height);
	background-color: rgba(9, 6, 10, .4);
	color: var(--text-color);
	font-weight: 300;
	text-align: center;
	transform: translate(-30%, -30%);
	border: 1px solid rgba(255, 255, 255, .1);
	box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, .11);
	border-radius: 50%;
}

.step-left-1,
.step-left-2,
.step-left-3,
.step-left-4{
	margin-left:0
}
	
@media (max-width: 1024px) {
	
	
	#business-card-website #cart-1,
	#corporate-site #cart-2,
	#online-shop #cart-3{
		transform: perspective(1200px) rotateY(25deg) rotateX(15deg) translateZ(-120px) scale(1, 1) translate(30%, -8%) !important 
	}
	
	.step-left-1,
	.step-left-2,
	.step-left-3,
	.step-left-4,
	#business-card-website article.text ul.step-left-2,
	#corporate-site article.text ul.step-left-2,
	#online-shop article.text ul.step-left-2{
		margin-left:0 !important
	}
	
	.article-design h3 > .num {
  		background-color: rgb(156, 156, 157) /*var(--white-color)*/;
		color:var(--dark-color);
		opacity:1
	}
	
	.icons-carusel-container .icons-carusel{
		display:none
	}
	
	#business-card-website .text-right,
	#corporate-site .text-right,
	#online-shop #panel_4 .container.text.text-right,
	#online-shop #panel_4 .container.text.text-right h2{
		text-align:left !important		
	}
	
	#business-card-website .title,
	#corporate-site .title,
	#online-shop .title{
		display:block;
		padding:10px 0;
		margin-bottom:2rem
	}
	
	#business-card-website #panel_6,
	#corporate-site #panel_5,
	#online-shop #panel_6{
		background: var(--temp-color);
		color: #fff
	}
	
	#business-card-website #panel_6 p,
	#corporate-site #panel_5 p,
	#online-shop #panel_5 p{
		color: #fff
	}
	
	#business-card-website #panel_6 .btn,
	#corporate-site #panel_5 .btn,
	#online-shop #panel_6 .btn{
		background-color:#fff;
		color: var(--dark-color);
		border:solid 2px var(--dark-color); 
		font-size:1.2rem;
		margin-bottom:2rem
	}
	
	/* ============== GRID ================ */
	.section div.panel .articles-grid .article-design{
		border-color: rgb(156, 156, 157)
	}
	
	.section div.panel.border-hover::after{
		display:none !important		
	}
}
 
@media (min-width: 1024px) {
 	
	#business-card-website .panel,
	#corporate-site .panel,
	#online-shop .panel{
		padding: 3rem 0;
		min-height: calc(100vh - var(--header-height));
		overflow: hidden
	}
	 
	.step-left-1 {
		margin-left: 1rem !important
	}
	
	.step-left-2 {
		margin-left: 2rem !important
	}
	
	.step-left-3 {
		margin-left: 3rem !important
	}
	
	.step-left-4 {
		margin-left: 4rem !important
	}
 
	#business-card-website .title.green,
	#corporate-site .title.green,
	#online-shop .title.green{
		color: var(--temp-color) !important
	}
}
