/*
	Theme Name: neowipe
	Author: neowipe
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", sans-serif;
	/* font: 16px / 1.5 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
	/* font-family: "Nunito", sans-serif; */
	font-size: 16px;
	color: #000;
}

/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

input:focus {
	outline: 0;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

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

.flex-row {
	margin: 0 -10px;
}

.flex50 {
	width: 100%;
	padding: 0 10px;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1200px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

/* header */
.header {
	background: #000;
	padding: 20px 0;
}

.header .wrapper {
	display: block;
}

/* logo */
.logo {
	text-align: center;
}

.logo-img {
	width: 200px;
}

.instaLink {
	position: absolute;
	top: 10px;
	right: 10px;
}

.instaLink img {
	width: 30px;
}

/* lang switcher */
.lang-switch {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
	display: flex;
	align-items: center;
	gap: .6rem;
	font: 500 12px/1.2;
}

@media(max-width:479px) {
	.lang-switch {
		flex-direction: column;
	}
}

.lang-switch .lang-label {
	color: #9aa0a6;
	text-decoration: none;
	font-size: 12px;
}

.lang-switch .lang-label.is-active {
	color: #fff
}

.lang-toggle {
	inline-size: 42px;
	block-size: 22px;
	padding: 2px;
	border-radius: 999px;
	background: #e6e8ef;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	transition: background .2s ease;
	position: relative;
	outline: none;
}

.lang-toggle .knob {
	inline-size: 18px;
	block-size: 18px;
	border-radius: 50%;
	background: #000;
	transform: translateX(0);
	transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

/* EN active */

.lang-toggle[aria-pressed="true"] .knob {
	transform: translateX(20px);
}

.lang-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .35);
}


@media(min-width:480px) {
	.slider_text h1 {
		font-size: 28px;
	}

}

@media(min-width:768px) {
	.slider_text h1 {
		font-size: 36px;
	}

}

@media(min-width:960px) {
	.slider_text {
		max-width: 520px;
	}

	.slider_text h1 {
		font-size: 44px;
	}
}

@media(min-width:1200px) {
	.slider_text {
		max-width: 640px;
		right: 10%;
	}

	.slider_text h1 {
		font-size: 56px;
	}
}

@media(min-width:1440px) {
	.slider_text {
		max-width: 760px;
	}

	.slider_text h1 {
		font-size: 64px;
	}
}

@media(min-width:1600px) {
	.slider_text {
		right: 12%;
	}
}


/* NEW DESIGN END */








.hero {
	margin: 40px 0;
}

.hero-content-wrapper {
	position: relative;
}

.hero-image img {
	display: block;
	border-radius: 12px;
	min-height: 300px;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 20%;
}

.hero-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	max-width: 55%;
	margin-left: auto;
	padding-right: 10px;
	left: 0;
	right: 0;
	text-align: center;
}


.hero-content h1 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	transition: .3s linear;
	border: 1px solid #000 !important;
}

.btn:hover {
	background: #fff;
	color: #000;
}

.btnWhite {
	background: #fff!important;
	color: #000!important;
}

.hero-content .btn {
	margin: 5px 0;
	width: 125px;
	font-size: 12px;
	padding: 10px;
	border: 1px solid #fff !important;
}

.btnWhite:hover {
	background: none !important;
	color: #fff !important;
	border: 1px solid #fff !important;
}


/* main info */
.main-info {
	margin: 80px 0;
}

.headline {
	margin-bottom: 40px;
}

.flex-row {
	margin: 0 -10px;
}

.col50 {
	width: 100%;
	padding: 0 10px;
}

.main-info__image img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

.main-info__text p {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
}

/* how to */

.how-to__video {
	max-width: 600px;
	margin: 0 auto;
}

.how-to__video video {
	width: 100%;
}

/* usps */
.usps-section {
	margin: 80px 0;
}

.usp-item {
	width: 50%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.usp-item-wrapper {
	position: relative;
}

.usp-image {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: #111;
}

.usp-image img {
	border-radius: 12px;
	transition: transform 0.4s ease;
	transform-origin: center center;
	width: 100%;
	aspect-ratio: 1/1;
}

.usp-image img:hover {
	transform: scale(1.5) rotate(-3deg);
}

/* .usp-title {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	font-size: 13px;
	text-align: center;
	background: rgba(255, 255, 255, 0.7);
	color: #000;
	border-radius: 6px;
	padding: 15px 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	transition: .3s linear;
}

.usp-item:hover .usp-title {
	opacity: 0;
	z-index: -1;
} */

/* FAQ */
.faq-section {
	margin: 80px 0;
}

.faqImg {
	display: none;
}

.faqImg img {
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.faqList {
	width: 100%;
}

.accordion__item {
	/* border-bottom: 1px solid #ddd; */
	padding: 10px 0;
}

.accordion__title {
	color: #000;
	display: flex;
	align-items: baseline;
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.accordion__arrow-wrapper {
	transition: transform 0.3s ease;
}

.accordion__item.active .accordion__arrow-wrapper {
	transform: rotate(45deg);
	/* + → × */
}

.accordion__title-text {
	flex: 1;
	padding-left: 10px;
}

.accordion__content {
	display: none;
	font-size: 16px;
	color: #000;
	padding: 10px 0 0 20px;
}

.faq.section .accordion__title,
.faq.section .accordion__content {
	color: #fff;
}

/* footer */
.footer {
	background: #000;
	text-align: center;
	padding: 20px 0;
}

.footer .widget_text img {
	width: 30px;
	margin-right: 5px;
}

.footer .widget_text a {
	display: flex;
}

.footer p {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: #fff;
}

/*------------------------------------*\
    Thank you
\*------------------------------------*/
.thanks {
	margin: 40px 0 80px 0;
}

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

.block-with-bg {
	background: #f5f5f5;
	border-radius: 12px;
	padding: 20px;
}

.discount-box p strong {
	font-size: 1.5em;
}

.discount-box small {
	display: block;
	padding-top: 5px;
}

.folding-instruction {
	margin-bottom: 80px;
}

.folding-instruction .text-center p {
	padding: 0 10px;
}

.folding-instruction svg {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
}

.folding-video {
	margin: 40px 20px 0 20px;
}

.folding-video-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.folding-video video {
	border-radius: 12px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#popup-overlay {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	overflow-y: auto;
}

.popup-content {
	background: #fff;
	width: 90%;
	max-width: 400px;
	margin: 50px auto;
	padding: 20px 15px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.popupTrigger{
	cursor: pointer;
}

.accordion__content .popupTrigger{
	font-weight: 700;
	text-decoration: underline;
}

#popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	line-height: 1;
}

.wpcf7 .btn {
	border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	padding: 10px 0;
	border-radius: 5px;
	margin: 0;
	text-align: center;
}



@media (min-width: 768px) {
	.popup-content {
		margin: 10% auto;
		padding: 30px 25px;
	}

	/* .flex50 {
		width: 50%;
	} */

}

.wpcf7-textarea {
	border-radius: 5px;
	border: 2px solid #000;
	width: 100%;
	margin-top: 10px;
}

.wpcf7-text {
	border-radius: 5px;
	height: 46px;
	border: 2px solid #000;
	width: 100%;
	margin-top: 10px;
}


.wpcf7-form input[type="number"]{
	height: 46px;
}
.wpcf7-file {
	margin-top: 10px;
	cursor: pointer;
	background: #000;
	color: #fff;
	border-radius: 5px;
	padding: 5px;
}

.wpcf7-spinner {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    font-size: 24px;
    cursor: pointer;
    border: none !important;
    outline: none !important;
}

.feedbackForm {
	margin-bottom: 80px;
	overflow: hidden;
}

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

.feedback-text h2 {
	font-size: 26px;
}

.feedbackForm form {
	max-width: 600px;
	margin: 0 auto;
}



.wpcf7 input[type="file"] {
	width: 100%;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/
.testImg {
	max-width: 600px;
	position: relative;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family: 'Font-Name';
	src: url('fonts/font-name.eot');
	src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {}

@media (min-width:480px) {
	.hero-content {
		max-width: 60%;
	}

	.block-with-bg {
		padding: 40px;
	}

}

@media only screen and (min-width:768px) {
	.hero-content {
		max-width: 65%;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content .btn {
		width: 180px;
		font-size: 16px;
		padding: 12px 22px;
		margin: 0 5px;
	}

	.accordion__title-text {
		font-size: 24px;
	}

	.accordion__content {
		font-size: 18px;
		line-height: 32px;
	}

	.feedback-text h2 {
		font-size: 32px;
	}

	.testimonials_intro {
		width: 60%;
	}

	.testimonials_list {
		width: 40%;
	}

	.inverted {
		clip-path: url(#clip);
		width: 700px;
		height: 590px;
		background-position: 0 78%;
		background-image: url(https://neowipe.com.ua/wp-content/uploads/2025/10/IMG_9074-1-scaled.jpg);
		aspect-ratio: 70 / 59;
		background-size: cover;
	}

	.twoline {
		-webkit-line-clamp: 2;
	}

	.testimonial-text {
		margin: auto 0 0;
	}

	.testimonial_intro_headline_text {
		max-width: 295px;
		font-size: 34px !important;
	}

	.testimonial_intro_headline {
		position: absolute;
		max-width: min(72%, 640px);
		padding: 20px;
	}

}

@media only screen and (min-width:960px) {
	.col50 {
		width: 50%;
	}

	.hero {
		margin: 80px 0;
	}

	.hero-content h1 {
		font-size: 48px;
	}

	.main-info,
	.usps-section,
	.faq-section {
		margin: 80px 0;
	}

	.main-info__text p {
		font-size: 26px;
		line-height: 36px;
	}
}

@media only screen and (min-width:1024px) {}

@media only screen and (min-width:1140px) {
	.hero-content h1 {
		font-size: 54px;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " ("attr(href) ")";
	}

	abbr[title]:after {
		content: " ("attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}

/* new styles */

:root {
	--section-y: clamp(60px, 8vw, 120px);
	--section-py: clamp(40px, 6vw, 96px);
}

.section {
	margin: var(--section-y) 0;
}


.heroBlock_wrapper {
	border-radius: 10px;
	background: #000;
	padding-block: var(--section-py);
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(211, 211, 211, 1) 0%, rgba(0, 0, 0, 1) 51%, rgba(0, 0, 0, 1) 51%);
}

.imageCol {
	width: 100%;
	text-align: center;
}

.textCol {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
}

.heroBlock {
	margin-top: 20px !important;
}

.heroBlock img {
	max-width: 175px;
	width: 100%;
}

.imageCol img {
	width: 100%;
	height: auto;
}


.textCol_wrapper {
	max-width: 246px;
}

.heroText {
	position: relative;
	color: #FFF;
	text-align: center;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

.heroText h1 {
	font-size: 21px;
	line-height: 23px;
	margin: 0;
}

.scrolling-text {
	position: relative;
	overflow: hidden;
	font-weight: 700;
}

.scrolling-text__inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.scrolling-text .scrolling-line {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	line-height: 120%;
}

.heroCta {
	text-align: center;
	margin-top: 30px;
}

.btnMore {
	font-size: 15px;
	color: #fff;
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease !important;
	margin-top: 20px;
	-webkit-transition: all 0.3s ease !important;
	-moz-transition: all 0.3s ease !important;
	-ms-transition: all 0.3s ease !important;
	-o-transition: all 0.3s ease !important;
}

.btnMore:hover {
	scale: 1.1;
	border: none;
}

.btnMain {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* centers the word */
	position: relative;
	padding: 14px 28px;
	/* symmetric -> no jiggle */
	border: 1px solid #fff;
	background: #fff;
	color: #000;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	transition: background .3s, color .3s, border-color .3s;
}

.btnLabel {
	transition: transform .3s ease;
	/* move the word with transform */
	will-change: transform;
}

/* arrow overlays, doesn't affect width/centering */
.btnArrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translate(8px, -50%);
	opacity: 0;
	transition: transform .3s ease, opacity .25s ease;
	pointer-events: none;
	color: inherit;
}

.btnMain:hover .btnLabel {
	transform: translateX(-10px);
}

.btnMain:hover .btnArrow {
	transform: translate(0, -50%);
	opacity: 1;
}

/* black variant (optional) */
.btnMain.black {
	background: #000;
	color: #fff;
	border-color: #000;
}


.btnMain.black {
	background: #000000;
	color: #fff;
}

.btnMain.black:before {
	color: #fff;
}


/* categories */
.section-headline {
	font-size: clamp(24px, 4vw, 56px);
	text-align: center;
	margin-bottom: clamp(30px, 5vw, 60px);
	margin-top: 0;
}

.section-headline.white {
	color: #fff;
}

.block-headline {
	position: relative;
	font-size: clamp(19px, 3vw, 36px);
	margin-bottom: clamp(20px, 3vw, 40px);
}

.categoryCol_text {
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.categoryCol_text p {
	font-size: clamp(16px, 2vw, 21px);
	line-height: 1.7;
}

.mainCategories .c1>.flex50:first-child {
	order: 2;
}

.mainCategories .c1>.flex50:last-child {
	order: 1;
}
.mainCategories .usp-image{
  display:block;                
  position:relative;
  aspect-ratio: 1 / 1;      
  overflow:hidden;
  border-radius:14px;          
}

.mainCategories .usp-image.is-video{
	aspect-ratio: unset!important;
}


.mainCategories .usp-image.ratio-3x2{ aspect-ratio: 3 / 2; }
.mainCategories .usp-image.ratio-16x9{ aspect-ratio: 16 / 9; }

.mainCategories .usp-image img,
.mainCategories .usp-image .vposter,
.mainCategories .usp-image .vmedia{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;  
}

.flex100 {
	margin-bottom: 20px;
}

.flex50 {
	width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.flex33 {
	width: 50%;
	padding: 0 10px;
}

.flex66 {
	width: 50%;
	padding: 0 10px;
}

.flexRow_lvl1>.flex50 {
	margin-bottom: 0;
}

.categoryGrid video,
.categoryGrid img {
	width: 100%;
	height: 100%;
}


.flexRow {
	margin: 0 -10px;
}

.flexCol33,
.flexCol66 {
	margin-bottom: 20px;
}

.flexCol33 {
	margin-top: auto;
}

.flexCol66 {
	height: 100%;
}

.height100 {
	height: 100%;
}

.categoryGrid img {
	border-radius: 10px;
}

.vwrapper {
	max-width: 1600px;
	margin: 0 auto 24px;
	border-radius: 10px;
	overflow: hidden;
	background: #0e0e0e;
	height: 100%;
}

.vmedia,
.vposter {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 9/16;
}

.usp-image {
	position: relative;
	height: 100%;
	display: block;
	border-radius: 10px;
	overflow: hidden;
	z-index: 11;
}

.usp-image:before {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid white;
	margin: 10px;
	opacity: .3;
	border-radius: 10px;
	z-index: 2;
	pointer-events: none;
}

.usp-title {
	position: absolute;
	left: 20px;
	bottom: 20px;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 100%;
	font-weight: 700;
	color: #fff;
	background: none;
	border-radius: 10px;
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
	z-index: 3;
	text-align: left;
}

.usp-image:hover .usp-title {
	opacity: 0;
	transform: translateY(6px);
}

.usp-image:hover:before {
	display: none;
}

.usp-image:hover img,
.usp-image:hover .vposter,
.usp-image:hover .vmedia {
	transform: scale(1.5) rotate(-3deg);
	transition: transform .6s ease;
}

.vplay {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 62px;
	height: 62px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: rgba(0, 0, 0, .55);
	display: grid;
	place-items: center;
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
	z-index: 3;
}

.vplay::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 16px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	margin-left: 4px;
}

.usp-image.is-playing .vplay {
	opacity: 0;
	transform: translate(-50%, -50%) scale(.9);
}

.vposter {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	z-index: 1;
	transition: opacity .2s ease, transform .6s ease;
	pointer-events: none;
}

.usp-image.is-playing .vposter {
	opacity: 0;
}

/* Product */
.productBlock_col2 {
	order: 1;
}

.productBlock_col1 {
	order: 2;
}

.productTabs {
	color: #fff;
	padding: 0 5%;
}

.productTab {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.productTab_headline {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: 0;
	padding: 14px 0;
	color: #fff;
	cursor: pointer;
	text-align: left;
}

.productTab_icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
}

.productTab_icon:before,
.productTab_icon:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 2px;
	background: #fff;
	transform: translateY(-50%);
	transition: transform .2s, opacity .2s;
}

.productTab_icon:after {
	transform: translateY(-50%) rotate(90deg);
}

.productTab.is-open .productTab_icon:after {
	opacity: 0;
}

.productTab_content {
	display: none;
	padding: 0 0 14px 0;
	color: #fff;
	font-size: 14px;
}

.productTab ul {
	margin: 0;
	padding: 0 0 0 15px;
}

.productBlock_wrapper {
	position: relative;
	background: #000;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	padding-block: var(--section-py);
	background: linear-gradient(45deg, #000000 51%, #d3d3d3 100%);
}

.productBlock_image img {
	max-height: 500px;
}

.productBlock_info p {
	color: #fff;
}

.productBlock-cta {
	margin-top: 60px;
}

/* Slides */


.prod-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.prod-card {
	width: 100%;
	max-width: 860px;
	/* adjust if you want */
	aspect-ratio: 16/9;
	/* keep consistent height; remove if not needed */
	display: grid;
	place-items: center;
}

.prod-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

/* White dynamic bullets (same behavior as your testi slider) */
.prod-pagination {
	position: relative;
	margin-top: 12px;
}

.prod-swiper .swiper-pagination-bullet {
	background: #fff !important;
	/* white bullets */
	opacity: .55;
	border: 1px solid rgba(255, 255, 255, .7);
	transition: transform .2s ease, opacity .2s ease;
}

.prod-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	border-color: #fff;
}

/* Optional arrows (use your existing chevrons if you like) */
.prod-nav {
	display: flex;
	gap: 32px;
	justify-content: center;
	margin-top: 10px;
}

.prod-prev,
.prod-next {
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

.productBlock .swiper-button-prev,
.productBlock .swiper-button-next {
	filter: invert(1) brightness(2);
}

.productBlock_image {
	position: relative;
}

.productBlock_image .swiper-slide {
	background: transparent !important;
}

.productBlock_image .swiper-slide img {
	max-height: 500px;
}

.nw-wrap {
	position: absolute;
	display: none;
	top: 104px;
	right: 40px;
}

.nw-wrap .pin {
	position: absolute;
	left: 50%;
	top: -64px;
	transform: translateX(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #fff;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .25);
	z-index: 1;
}

.nw-sale {
	position: relative;
	display: inline-block;
	min-width: 200px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #1f1f1f 0%, #000 75%);
	color: #fff;
	border: 6px solid #fff;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .45), inset 0 2px 0 rgba(255, 255, 255, .05);
	font-weight: 900;
	font-size: 34px;
	text-transform: uppercase;
	transform-origin: 50% -70px;
	animation: swing 3s ease-in-out infinite;
}

.nw-sale .price {
	text-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.nw-sale::before,
.nw-sale::after {
	content: "";
	position: absolute;
	top: -6px;
	height: 2px;
	background: #fff;
	opacity: .95;
}

.nw-sale::before {
	left: 12px;
	width: 95px;
	transform-origin: left center;
	transform: rotate(-32deg);
}

.nw-sale::after {
	right: 12px;
	width: 95px;
	transform-origin: right center;
	transform: rotate(32deg);
}

@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(5deg);
	}

	50% {
		-webkit-transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(5deg);
	}
}

@-moz-keyframes swing {
	0% {
		-moz-transform: rotate(5deg);
	}

	50% {
		-moz-transform: rotate(-5deg);
	}

	100% {
		-moz-transform: rotate(5deg);
	}
}

@-o-keyframes swing {
	0% {
		-o-transform: rotate(5deg);
	}

	50% {
		-o-transform: rotate(-5deg);
	}

	100% {
		-o-transform: rotate(5deg);
	}
}

@keyframes swing {
	0% {
		transform: rotate(5deg);
	}

	50% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(5deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nw-sale {
		animation: none
	}
}

.mobile-price {
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}


/* Testimonials */
:root {
	--g-space: 1.5em;
}

/* === BASE LAYOUT === */
.testi-swiper {
	padding: var(--g-space);
}

.testi-swiper .swiper-wrapper {
	padding: 30px 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: unset !important;
	top: unset !important;
	left: unset !important;
	right: unset !important;
	transform: none !important;
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
}

.content-wrapper {
	position: relative;
	display: grid;
	width: 100%;
	justify-items: center;
	align-items: center;
}

.content {
	text-align: center;
	display: grid;
	justify-items: center;
	align-items: center;
	margin: 0 auto;
	color: #000;
	padding: 0 15px;
	width: 100%;
}

.textCard_wrapper {
	padding: 15px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	width: 100%;
}

/* === TEXT CARD === */
.feedbackText {
	font-size: 14px;
	font-weight: 500;
	color: #000;
	line-height: 1.5;
	margin: 0 auto 14px;
	max-width: 680px;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: relative;
}

/* centered button UNDER the text */
.feedback-toggle {
	display: inline-block;
	margin: 0 auto 16px;
	border: 0;
	background: none;
	font: inherit;
	color: #000;
	cursor: pointer;
	font-size: 14px;
}

/* expanded state */
.feedbackText.expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.author-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 12px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.author-row .avatar-ring {
	width: calc(40px + var(--ring) * 2);
	height: calc(40px + var(--ring) * 2);
}

.cite {
	font-size: 14px !important;
	font-weight: 600;
	color: #000 !important;
	margin: 0 !important;
}

.cite a {
	color: #000;
	text-decoration: underline;
}

.video-card {
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: 10px auto 0;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.5s ease;
}

.swiper-slide-active .video-card {
	max-width: 300px;
	transform: none;
}

.video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 9/16;
	border-radius: 10px;
	overflow: hidden;
	background: #000;
}

.swiper-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(.75);
	border-radius: 10px;
}

.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, .6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 4;
}

.play-icon::before {
	content: '';
	width: 0;
	height: 0;
	border-left: 18px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.video-overlay {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.video-overlay .flex {
	width: 100%;
}

.video-name a {
	color: #fff;
	margin-left: 5px;
	font-weight: 700;
}

.testi-swiper .swiper-slide{
	pointer-events: none;
}

.testi-swiper .swiper-slide.swiper-slide-active{
	pointer-events: all;
}


/* Keep your existing size for the image */
.video-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.avatar-ring {
	--ring: 3px;
	--g1: #f58529;
	--g2: #dd2a7b;
	--g3: #8134af;
	--g4: #515bd4;
	position: relative;
	width: calc(44px + var(--ring)*2);
	height: calc(44px + var(--ring)*2);
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
}

/* Default: no animation */
.avatar-ring::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	padding: var(--ring);
	background: conic-gradient(from 0turn, var(--g1), var(--g2), var(--g3), var(--g4), var(--g1));
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: none;
	/* ← off by default */
}

/* Animate ONLY on active slide */
.swiper-slide-active .avatar-ring::before {
	animation: avatarRingSpin 3s linear infinite;
	-webkit-animation: avatarRingSpin 3s linear infinite;
}

/* Optional: pause on hover (when active) */
.avatar-ring:hover::before {
	animation-play-state: paused;
}

@keyframes avatarRingSpin {
	to {
		transform: rotate(1turn);
	}
}

.video-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.video-meta a,
.video-meta span {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}

.video-yt {
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 13px;
}

.video-yt svg {
	width: 34px;
}

.swiper-slide {
	margin: 0;
	height: auto;
	width: 100%;
	padding: 0;
	opacity: .25;
	background: rgba(255, 255, 255, .3);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.98);
	will-change: transform;
	transition: transform .38s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.swiper-slide.swiper-slide-active {
	background: #fff;
	opacity: 1;
	transform: scale(1.1);
	z-index: 2;
}

.swiper-nav-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 210px;
	gap: 4rem;
	margin: 0 auto;
	padding-top: calc(var(--g-space) * 2);
}

.swiper-button-next,
.swiper-button-prev {
	position: relative !important;
	top: auto;
	left: auto;
	right: auto;
	color: #000;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.swiper-button-next,
.swiper-button-prev {
	width: 20px;
	height: 20px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
}

.swiper-button-next {
	background-image: url("https://neowipe.com.ua/wp-content/uploads/2025/10/right-chevron-svgrepo-com.svg");
}

.swiper-button-prev {
	background-image: url("https://neowipe.com.ua/wp-content/uploads/2025/10/left-chevron-svgrepo-com.svg");
}

.swiper-pagination {
	position: relative !important;
	margin: 0;
	padding: 0;
	width: auto;
}

.swiper-pagination-bullet {
	background: #000 !important;
	transition: transform .2s ease-in-out;
}

.swiper-pagination-bullet-active {
	transform: scale(1.5);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
	padding: 0 var(--g-space);
}

.testimonialsBar {
	/* background: #000;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	color: #fff;
	padding: 25px; */
	text-align: center;
	margin-top: 25px;
}

.testimonialsBar_desc {
	position: relative;
	margin: 0;
	font-size: 16px;
}

.tip p{
	font-size: 12px;
	line-height: 16px !important;
	display: block;
	margin-top: 10px;
}

.testimonialsBar .btnMain {
	margin: 10px 0 0 0;
}

.info-tip {
	display: none;
	cursor: pointer;
	position: relative;
	background: none;
	border: none;
}

.info-tip:hover,
.info-tip:focus-visible {
	transform: scale(1.05);
}

.info-tip svg {
	width: 24px;
	height: 24px;
}

.info-tip svg circle {
	fill: #fff;
	opacity: 0.9;
}

.tip-popover {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 45px;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	padding: 12px 14px;
	border-radius: 10px;
	width: min(420px, 92vw);
	text-align: left;
	font-size: 14px;
	line-height: 1.5;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
	z-index: 5;
	margin: 0 auto;
	text-align: center;
}

.tip-popover::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: inherit;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

.info-tip:hover+.tip-popover,
.info-tip:focus+.tip-popover,
.info-tip.is-open+.tip-popover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@media (max-width: 640px) {
	.tip-popover {
		font-size: 13px;
		width: 90vw;
	}
}

/* testimonial popup */
.nw-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.nw-modal.is-open {
	display: block;
}

.nw-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	transition: opacity .25s ease;
}

.nw-modal.is-open .nw-modal__backdrop {
	opacity: 1;
}

.nw-modal__dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -46%) scale(.98);
	width: min(500px, 92vw);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
	opacity: 0;
	transition: transform .25s ease, opacity .25s ease;
}

.nw-modal.is-open .nw-modal__dialog {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.nw-modal__close {
	position: absolute;
	right: -10px;
	top: -10px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 0;
	background: #000;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
	color: #fff;
	z-index: 2;
}

.nw-modal__content {
	padding: 15px 20px;
	max-height: calc(86vh - 56px);
	/* minus close/header area */
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	/* smooth on iOS */

}

.nw-modal__content::-webkit-scrollbar {
	width: 10px;
}

.nw-modal__content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 8px;
}

.nw-modal__content::-webkit-scrollbar-thumb {
	background: #b8c3b6;
	/* subtle greenish to match your palette */
	border-radius: 8px;
	border: 2px solid #f1f1f1;
	/* creates a gap effect */
}

.nw-modal__content::-webkit-scrollbar-thumb:hover {
	background: #95a894;
}

/* Firefox */
.nw-modal__content {
	scrollbar-width: thin;
	scrollbar-color: #b8c3b6 #f1f1f1;
}

.nw-modal__content .wpcf7-text {
	height: 40px;
}

.nw-modal__content .wpcf7 textarea {
	max-height: 120px;
}

.nw-modal__content .wpcf7-form-control {
	margin-top: 0;
}

.nw-modal__content .wpcf7-acceptance {
	font-size: 12px !important;
}

.nw-modal__content .wpcf7-acceptance label {
	display: flex;
}

.nw-modal__content .wpcf7-acceptance input[type="checkbox"] {
	margin-right: 5px;
}

body.nw-modal-open {
	overflow: hidden;
}

.wpcf7 form .wpcf7-form-control {
	width: 100%;
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 16px;
}

.wpcf7-acceptance {
	padding-left: 0 !important;
}

.wpcf7 textarea {
	max-height: 155px;
}

.wpcf7 input[type=submit] {
	background: #111;
	color: #fff;
	border: 0;
	border-radius: 12px;
	padding: 14px 20px;
	cursor: pointer;
	transition: .3s ease;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-ms-transition: .3s ease;
	-o-transition: .3s ease;
}

.wpcf7 input[type="submit"]:enabled:hover,
.wpcf7 button[type="submit"]:enabled:hover,
.wpcf7 .wpcf7-submit:not([disabled]):hover,
.wpcf7 .wpcf7-submit[aria-disabled="false"]:hover {
  background:#fff;
  color:#000;
}

/* Стан disabled (щоб явно не реагувала) */
.wpcf7 input[type="submit"]:disabled,
.wpcf7 button[type="submit"]:disabled,
.wpcf7 .wpcf7-submit[disabled],
.wpcf7 .wpcf7-submit[aria-disabled="true"] {
  opacity:.5;
  cursor:not-allowed;
  pointer-events:none;
}

/* faq */

.faq_wrapper {
	background: linear-gradient(225deg, #000000 51%, #d3d3d3 100%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	padding-block: var(--section-py);
	padding-left: var(--section-py);
	padding-right: var(--section-py);
}

.form_goto {
	display: block;
	color: #fff;
	text-align: right;
	margin-bottom: 0;
	margin-top: 50px;
}

.form_goto span {
	vertical-align: text-top;
}

.form_goto svg {
	width: 20px;
	height: 20px;
}

/* contact */
.contact__col--image {
	position: relative;
	height: 100%;
}

.contact__col--image:before {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid white;
	margin: 15px;
	opacity: .3;
	border-radius: 10px;
	z-index: 2;
	pointer-events: none;
}

.contact__col--image img {
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
}

.contact__colImg {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

.nw-corporate-cta{
	position: fixed;
	right: 0;
	bottom: 0; 
	z-index: 9998;
	 transition: transform .25s ease;
}
.nw-corporate-cta.is-hidden {
    transform: translateY(120%);
}
.nw-corporate-cta img{
    max-width: 100px;
}

.nw-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    z-index: 2;
}

.nw-popup__close:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}
#nw-corporate-popup {
    position: fixed;
    inset: 0;
    display: none;            
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.65);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

#nw-corporate-popup.is-visible {
    display: flex;
}

#nw-corporate-popup > .flex {
    background: #111;
    color: #fff;
    max-width: 920px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(255, 255, 255, .3);
}

.nw-popup__left,
.nw-popup__right {
    flex: 0 0 50%;
    min-width: 0;
}

.nw-popup__left {
    padding: 28px 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.nw-popup__right {
    position: relative;
    min-height: 260px;
}

.nw-popup__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.nw-popup__left h2 {
    margin: 0 0 4px;
    font-size: 33px;
}

.nw-popup__subtitle {
    margin: 0 0 6px;
    font-size: 18px;
    color: #cfcfcf;
}

#nw-corporate-popup .wpcf7  .wpcf7-text{
    margin-top:0;
}

#nw-corporate-popup .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#nw-corporate-popup .wpcf7-form p{
    margin:0;
}

#nw-corporate-popup .wpcf7-form label {
    font-size: 13px;
    color: #ccc;
}

#nw-corporate-popup .wpcf7-form-control-wrap {
    display: block;
    margin-top:10px;
}

#nw-corporate-popup .wpcf7-form input[type="text"],
#nw-corporate-popup .wpcf7-form input[type="email"],
#nw-corporate-popup .wpcf7-form input[type="tel"],
#nw-corporate-popup .wpcf7-form input[type="number"],
#nw-corporate-popup .wpcf7-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #181818;
    color: #fff;
    font-size: 14px;
}

#nw-corporate-popup .wpcf7-form textarea {
    min-height: 80px;
    resize: vertical;
}

#nw-corporate-popup .wpcf7-form input::placeholder,
#nw-corporate-popup .wpcf7-form textarea::placeholder {
    color: #666;
}

#nw-corporate-popup .wpcf7-form input:focus,
#nw-corporate-popup .wpcf7-form textarea:focus {
    outline: none;
    border-color: #fff;
}


.nw-btn--ghost {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: hidden;
    width: max-content;
    margin: 0 auto;
}

.nw-btn--ghost::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px; 
    width: 0;
    background-color: #fff;
    transition: width 0.35s ease;
}

.nw-btn--ghost:hover::after {
    width: 100%;
}

#nw-corporate-popup .wpcf7-not-valid-tip {
    color: #ff8888;
    font-size: 12px;
}

#nw-corporate-popup .wpcf7-response-output {
    margin: 8px 0 0;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
}


@media (max-width: 768px) {
    #nw-corporate-popup > .flex {
        flex-direction: column;
    }

    .nw-popup__left,
    .nw-popup__right {
        flex: 0 0 100%;
    }

    .nw-popup__right {
        order: -1;
        min-height: 200px;
    }

    .nw-popup__left {
        padding: 20px 16px 18px;
    }

    #nw-corporate-popup {
        padding: 10px;
    }
    .nw-popup__right img{
        max-height: 200px;
    }
    .nw-popup__left h2{
        font-size:18px;
    }
    .nw-popup__left{
        gap:5px;
    }
    .nw-btn--ghost,
    .nw-popup__subtitle {
        font-size: 14px;
    }
    .wpcf7-form input[type="number"],
    #nw-corporate-popup .wpcf7-text{
        height:34px;
    }
   #nw-corporate-popup .wpcf7-submit{
    margin-top:0;
   }
}
@media (max-width: 480px) {
	.nw-popup__right {
        min-height: 150px;
    }
	.nw-popup__right img{
        max-height: 150px;
    }
}



@media(min-width:360px) {
	.textCol_wrapper {
		max-width: 270px;
	}

	.heroText h1 {
		font-size: 24px;
		line-height: 24px;
	}

	.typewriter {
		min-height: 24px;
	}
}

@media(min-width:480px) {
	.contact__col--form {
		padding: 0 10%;
	}
}

@media(min-width:768px) {
	.heroText {
		margin-top: 0;
	}

	.imageCol {
		width: 33.333%;
		text-align: right;
	}

	.textCol {
		width: 66.666%;
	}

	.textCol_wrapper {
		max-width: 450px;
	}

	.heroCta {
		flex-direction: row !important;
		margin-top: 80px;
	}

	.heroText h1 {
		font-size: 39px;
		line-height: 39px;
	}

	.typewriter {
		min-height: 39px;
	}

	.btnMain {
		margin-bottom: 0;
	}

	.btnMore {
		margin-top: 0;
	}

	.feedbackText {
		font-size: 19px;
		-webkit-line-clamp: 5;
	}

	.testimonialsBar_desc {
		font-size: 21px;
	}

	.testimonialsBar .btnMain {
		margin: 40px 0 0 0;
	}

	.author-avatar {
		width: 55px;
		height: 55px;
	}

	.author-row .avatar-ring {
		width: calc(55px + var(--ring) * 2);
		height: calc(55px + var(--ring) * 2);
	}

	.cite {
		font-size: 16px !important;
	}

	.nw-wrap {
		display: inline-block;
	}

	.nw-modal__content .wpcf7-form-control {
		margin-top: 10px;
	}

	.nw-modal__content {
		padding: 24px;
	}

	.faqImg {
		display: block;
		width: 30%;
	}

	.faqList {
		width: 70%;
		padding-left: 5%;
	}

	.mobile-price {
		display: none;
	}

}

@media(min-width:960px) {
	.textCol_wrapper {
		max-width: 510px;
	}

	.heroText h1 {
		font-size: 46px;
		line-height: 46px;
	}

	.heroBlock img {
		max-width: 250px;
	}
.imageCol img {
	width: 100%;
	height: auto;
	animation: floatY 5s ease-in-out infinite;
	will-change: transform;
	-webkit-animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
		/* move up — adjust value if needed */
	}
}
	.typewriter {
		min-height: 46px;
	}

	.mainCategories .c1>.flex50:first-child {
		order: 1;
	}

	.mainCategories .c1>.flex50:last-child {
		order: 2;
	}

	.flex50 {
		width: 50% !important;
	}

	.flex33 {
		width: 33.3333%;
	}

	.flex66 {
		width: 66.6666%;
	}

	.testimonialsBar_text {
		font-size: 26px;
	}

	.productBlock_col2 {
		order: 2;
	}

	.productBlock_col1 {
		order: 1;
	}

	.contact__colImg {
		display: block;
	}

	.nw-wrap {
		top: 70px;
	}
}

@media(min-width:1140px) {
	.heroBlock img {
		max-width: 300px;
	}

	.usp-image:before {
		margin: 15px;
	}

	.usp-title {
		padding: 10px;
		font-size: 18px;
	}
}

@media(min-width:1200px) {
	.textCol_wrapper {
		max-width: 610px;
	}

	.heroText h1 {
		font-size: 54px;
		line-height: 54px;
	}

	.typewriter {
		min-height: 54px;
	}

	.textCol {
		padding-left: 10%;
		justify-content: unset;
	}

	.btnMain {
		font-size: 21px;
	}

	.productTab_headline {
		font-size: 26px;
	}

	.productTab_content {
		font-size: 16px;
		line-height: 24px;
	}

	.nw-wrap {
		top: 90px;
	}

}


@media (min-width: 1280px) {
	.usp-title {
		font-size: 21px;
	}

	.nw-wrap {
		top: 104px;
	}
}


@media(min-width:1600px) {
	.usp-title {
		font-size: 26px;
	}

	.form_goto {
		margin-top: 135px;
	}
}