/*!
Theme Name: Printivo
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: printivo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Printivo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
	--container: 1440px;

	--pink: #EC008C;
	--white: #FFFFFF;
	--black: #000000;
	--grey: #818181;
	--light: #F4F2F5;
	--blue-light: #31C4F7;

	--text-size: 16px;
	--text-color: #000;

	--gap:30px;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.4;
	color: var(--black);
	background: var(--white);
}
a {
	color: var(--pink);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transition: .5s;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover-span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	margin: 40px 0 25px;
	line-height: 1.111;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}
h1 {
	font-size: 90px;
}
h2 {
	font-size: 70px;
}
h3 {
	font-size: 60px;
}
h4 {
	font-size: 42px;
}
h5 {
	font-size: 40px;
}
h6 {
	font-size: 30px;
}
p, ul, ol, blockquote {
	margin: 0 0 25px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7px -15px;
}
.form-field {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 7px;
	margin-bottom: 15px;
}
.form-field.mt-20{
	margin-top:20px;
}
.form-field p{
	font-size:16px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: block;
	margin-bottom: 25px;
	font-family: 'Abhaya Libre', serif;
	font-weight: 400;
	font-size: var(--text-size);
	line-height: 1.25;
}
.form-field-label label{
    -webkit-user-select: none;
    user-select: none;
    font-size: var(--text-size);
}
.form-heading{
	padding: 3px calc(var(--gap) / 2);
    font-weight: 500;
    border-left: 5px solid rgba(0, 0, 0, 0.2);
    border-right: 5px solid rgba(0, 0, 0, 0.2);
}
::-webkit-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
::-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-ms-input-placeholder {
	color: rgba(36, 36, 36, .6);
}
:-moz-placeholder {
	color: rgba(36, 36, 36, .6);
}
.wpcf7-list-item input[type="checkbox"] {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item{
	margin:0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.wpcf7-list-item-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #D3D3D3;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--pink);
  top: 4px;
  left: 4px;
}
.wpcf7-list-item-label {
    position: relative;
    display: flex;
    gap: 10px;
    font-size: 14px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: 16px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: var(--white);
	border: 1px solid #D3D3D3;
	color: var(--black);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 10px 24px;
	height: 56px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 120px;
	resize: vertical;
}
select {
	cursor: pointer;
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 4px;
	font-size:14px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 10px 16px;
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload-label {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border: 2px solid #eeeeee;
    background: #eeeeee;
    cursor: pointer;
    transition: 0.2s;
}
.file-upload-heading{
	margin-bottom: 5px;
    font-size: var(--text-size);
}

.file-upload-label:hover {
  background: #000;
  color: #fff;
}

.file-upload-info {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}



.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}


.heading {
	margin-bottom: 90px;
}
.heading h2 {
	margin: 0;
	font-size: 80px;
}
.heading h2 strong {
	font-weight: 600;
}
.heading p:first-child {
	font-size: 26px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.heading p:last-child{
	margin-top: 10px;
}


.btn {
	position: relative;
	display: inline-flex;
	text-align: center;
	font-size: 16px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	background: linear-gradient(89.67deg, #00DEFF 0.29%, #DA08BA 99.71%);
	border: none;
	padding: 2px;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
	border-radius: 24px;
	outline: none;
	min-height: 48px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.btn span {
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px;
	gap: 15px;
	-moz-border-radius: 22px;
	-webkit-border-radius: 22px;
	border-radius: 22px;
	transition: .5s;
}
.btn-icon-left span:before,
.btn-icon-right span:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 28px;
	transition: .5s;
}
.btn.btn-sm {
	min-height: 40px;
	font-size: 12px;
	font-weight: 600;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.btn.btn-sm span {
	padding: 5px 15px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
.btn-sm.btn-icon-left span:before,
.btn-sm.btn-icon-right span:after {
	flex: 0 0 26px;
	max-width: 26px;
	width: 26px;
	height: 26px;
}
.btn.btn-md {
	min-height: 70px;
	font-size: 24px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
}
.btn.btn-md span {
	padding: 10px 45px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
}
.btn-md.btn-icon-left span:before,
.btn-md.btn-icon-right span:after {
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 28px;
}
.btn.btn-md-2 {
	min-height: 56px;
	font-size: 20px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
}
.btn.btn-md-2 span {
	padding: 10px 30px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
}
.btn-md-2.btn-icon-left span:before,
.btn-md-2.btn-icon-right span:after {
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 28px;
}
.btn.btn-lg {
	min-height: 70px;
	font-size: 22px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.btn.btn-lg span {
	padding: 15px 52px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.btn-lg.btn-icon-left span:before,
.btn-lg.btn-icon-right span:after {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
}
.btn-primary {
	color: var(--white);
}
.btn-primary span {
	background: var(--black);
}
.btn-primary span:before,
.btn-primary span:after {
	background-color: var(--white);
}
.btn-primary:hover span {
	background: transparent;
}
.btn-icon-arrowRight span:before,
.btn-icon-arrowRight span:after {
	-webkit-mask-image: url(images/right-arrow.svg);
	mask-image: url(images/right-arrow.svg);
}
.btn-icon-shopping-cart span:before,
.btn-icon-shopping-cart span:after {
	-webkit-mask-image: url(images/shopping-cart.svg);
	mask-image: url(images/shopping-cart.svg);
}



.form-field-button{
	position:relative;
	background: linear-gradient(89.67deg, #00DEFF 0.29%, #DA08BA 99.71%);
	padding: 2px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
}
.form-field-button .wpcf7-spinner{
	position: absolute;
    right: 0;
    top: 100%;
}
.btn.btn-secondary {
	background-color: #000;
	background-image:none;
	border: none;
	color: #fff;
	padding: 15px 52px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
	width: 100%;
	font-size: 18px;
}
.btn.btn-secondary:hover {
	background-color: rgba(0,0,0,0);
	border: none;
	color: var(--white);
}
.btn.btn-link {
	padding: 0;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	color: var(--blue);
	text-decoration: underline;
	text-decoration-style: dashed;
	text-underline-offset: 4px;
	min-height: inherit;
}
.btn.btn-link:hover {
	color: var(--blue-dark);
}

/*
.swiper-pagination {
	position: relative !important;
	bottom: auto !important;
	top: auto !important;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: calc(var(--gap) * 1.5);
	gap: 8px;
}
.swiper-pagination-bullet {
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px !important;
	height: 10px !important;
	background: #E2E5F0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	transform: skew(-25deg);
}
.swiper-pagination.white .swiper-pagination-bullet {
	background: #ffffff !important;
	opacity: .4 !important;
}
.swiper-pagination-bullet-active {
	background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
	background: #ffffff !important;
	opacity: 1 !important;
}*/


button.swiper-navigation {
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: transparent;
	background-image: url(images/swiper-btn-bg.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	top: calc(50% - 30px);
	transition: .5s;
	z-index: 9;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
button.swiper-navigation:hover {
	background-color: #000000;
}
button.swiper-navigation:disabled {
	opacity: .15;
	cursor: no-drop;
}
button.swiper-navigation:before {
	content:'';

	-webkit-mask-image: url(images/arrow-slider.svg);
	mask-image: url(images/arrow-slider.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	mask-size: 12px 12px;
	width: 12px;
	height: 12px;
	transition: .5s;
}
button.swiper-navigation:hover:before {
	background-color: var(--white);
}
button.swiper-navigation.prev {
	left: 0;
	transform: scale(-1, 1);
}
button.swiper-navigation.next {
	right: 0;
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap:wrap;
	gap: 30px;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
        width: 50px;
        height: 50px;
}
.soc-links li a svg {
	flex: 0 0 100%;
	max-width: 100%;
	height: 100%;
}
.soc-links li a path[stroke="black"] {
	stroke: var(--black);
	transition: .5s;
}
.soc-links li a:hover path[stroke="black"] {
	stroke: var(--pink);
}
.soc-links li a path[fill="black"] {
	fill: var(--black);
	transition: .5s;
}
.soc-links li a:hover path[fill="black"] {
	fill: var(--pink);
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: .5s;
}
.modal-mobile.show {
	pointer-events: visible;
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
	position: relative;
	background: var(--white);
	height: 100%;
	width: 100%;
	max-width: 360px;
	transform: translateX(-100%);
	padding: 54px 24px 24px;
	transition: .5s;
	overflow: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 15px;
	right: 15px;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: var(--black);
	width: 30px;
	height: 30px;
	border: none;
	padding: 0;
	cursor: pointer;
	outline: none !important;
	transition: .5s;
}
.mobile-menu {
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	font-weight: 600;
	width: 100%;
}
.mobile-menu li {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    z-index: 1;
}
.mobile-menu > li {
	border-bottom: 1px solid var(--light);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: 16px;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: var(--black);
	z-index: 1;
}
.mobile-menu li.menu-item-blue a {
	color: var(--pink);
}
.mobile-menu li.menu-item-has-children > a {
    flex: 0 0 100%;
    max-width: 100%;
	justify-content: space-between;
	width: 100%;
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--pink);
}
.modal-mobile .mobile-menu ul {
	padding: 0 0 0 20px;
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    order: 1;
    background: #f9f9f9;
}
.modal-mobile .mobile-menu ul.active{
	display:block;
}
.mobile-menu li:not(.menu-item-has-children) a[href*="#"]{
	color:#000;
}
.mobile-menu li:not(.menu-item-has-children) a[href*="#"]:hover{
	color: var(--pink);
}




.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 420px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: calc(var(--gap) * 1.5) var(--gap) var(--gap);
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h4-size);
	color: var(--black);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--gap);
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: #999999;
	width: 34px;
	height: 34px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--black);
}

/*

.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 32px -15px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -30px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid var(--line);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-2 .gallery-item > * {
	height: calc((var(--container) - 30px) / 2 / 1.4);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-3 .gallery-item > * {
	height: calc((var(--container) - 30px * 2) / 3 / 1.4);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-4 .gallery-item > * {
	height: calc((var(--container) - 30px * 3) / 4 / 1.4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-5 .gallery-item > * {
	height: calc((var(--container) - 30px * 4) / 5 / 1.4);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-6 .gallery-item > * {
	height: calc((var(--container) - 30px * 5) / 6 / 1.4);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item > * {
	height: calc((var(--container) - 30px * 6) / 7 / 1.4);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-8 .gallery-item > * {
	height: calc((var(--container) - 30px * 7) / 8 / 1.4);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-columns-9 .gallery-item > * {
	height: calc((var(--container) - 30px * 8) / 9 / 1.4);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .5s;
}
.gallery-item a:hover img {
	transform: scale(1.08);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 30px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 30px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
img.alignleft,
img.alignright,
img.aligncenter {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}*/



.wrapper {
	position: relative;
	overflow: hidden;
	z-index: 1;
}


.header {
	position: relative;
	z-index: 92;
}
.header-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100px;
    padding: 20px 0 30px;
}
.header-logo {
	flex: auto;
}
.header-logo img {
    max-height: 50px;
}
.header-cart {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}
.header-cart:before {
	content: '';
	background: url(images/shopping-bag.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}
.header-cart:hover {
	color: var(--pink);
}
.header-phone,
.header-email,
.header-account {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}
.header-phone:before,
.header-email:before,
.header-account:before {
	content: '';
	background: url(images/phone-call.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}
.header-email:before{
	background: url(images/email-header.svg) no-repeat center;
}
.header-account:before{
	background: url(images/account.svg) no-repeat center;
}
.header-phone:hover,
.header-email:hover,
.header-account:hover {
	color: var(--pink);
}
.lang-menu {
	margin: 0 -5px;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.lang-menu > li {
	position: relative;
	padding: 5px;
	z-index: 1;
}
.lang-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--black);
	text-decoration: none;
}
.lang-menu > li:hover > a {
	color: var(--pink);
}
.lang-menu > li > a:before {
	content: '';
	background: url(images/internet.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
}
.lang-menu ul {
	display: none;
	margin: 0;
	padding: 0;
	background: var(--light);
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 1;
}
.lang-menu > li:hover > ul {
	display: block;
}
.lang-menu ul li a {
	display: block;
	color: var(--black);
	text-decoration: none;
	padding: 5px;
}
.lang-menu ul li a:hover {
	color: var(--pink);
}

.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	content: '';
	background: url(images/menu.svg) no-repeat center;
	background-size: contain;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	transition: .5s;
}

.main-menu {
	margin: 0 0 15px !important;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 20px;
	font-weight: 600;
}
.main-menu:last-child {
	margin-bottom: 0;
}
.main-menu li {
	position: relative;
	flex: auto;
	text-align: center;
	z-index: 1;
}
.main-menu li a {
	color: var(--black);
	text-decoration: none;
}
.main-menu li.menu-item-blue a {
	color: var(--blue-light);
}
.main-menu li a:hover {
	color: var(--pink);
}
.main-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 25px;
    background: #E0E0E0;
}
li.menu-item-has-children a{
	display:inline-flex;
	align-items:center;
}
li.menu-item-has-children > a:after{
	content: '';
    flex: 0 0 10px;
    max-width: 10px;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-slider.svg);
    mask-image: url(images/arrow-slider.svg);
    background-color: #000;
    transform: rotate(90deg);
}
.lang-menu li.menu-item-has-children a:after{
	content: '';
    flex: 0 0 8px;
    max-width: 8px;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-slider.svg);
    mask-image: url(images/arrow-slider.svg);
    background-color: #000;
    transform: rotate(90deg);
}
li.pll-parent-menu-item{
    padding: 0;
    line-height: normal;
}
li.pll-parent-menu-item > a{
	line-height:0;
}
.main-menu ul {
	display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--light-blue);
    margin: 0;
    padding: 10px 0;
    list-style: none;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 99;
}
.main-menu li:hover > ul {
	display: block;
}
.main-menu ul li {
	position: relative;
    margin-right: 0;
    justify-content: left;
}
.main-menu ul li a {
	flex: 1 0 0;
	padding: 15px 15px;
	display: block;
	font-size: 0.9em;
	color: var(--black);
}
.main-menu ul li:hover > a {
    color: var(--pink);
    background: var(--light);
}
.main-menu ul ul {
	background: var(--grey-light);
	left: 100%;
	top: -15px;
}
.main-menu ul li.right ul {
	left: auto;
	right: 100%;
}
.main-menu ul ul li:hover > a  {
	background: var(--white);
}

.header-marquee {
	position: relative;
	background: var(--light);
	padding: 5px 0;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	z-index: 0;
}
.marquee-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
	gap: 45px;
}
.marquee-swiper .swiper-slide {
	width: auto;
	user-select: none;
	display: flex;
	align-items: center;
}
.marquee-item {
	font-size: var(--text-size);
	color: var(--grey);
}
.marquee-item span {
	color: var(--pink);
}





.footer {
	position: relative;
	padding: 50px 0 100px;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	gap: 50px;
}
.footer-widget:nth-child(1),
.footer-widget:nth-child(5) {
	flex: auto;
}
.footer-widget:nth-child(1) {
	max-width: 300px;
}
.footer-widget-title {
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 25px;
}
.footer-logo img {
	max-height: 60px;
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-size: 16px;
	line-height: 1.25;
}
.footer-menu li a {
	color: var(--black);
	text-decoration: none;
}
.footer-menu li.current-menu-item a,
.footer-menu li a:hover {
	color: var(--pink);
}
.footer-menu ul {
	display: none;
}
.footer-email {
	margin-bottom: 50px;
}
.footer-email a {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	color: var(--black);
	text-decoration: none;
}
.footer-email a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/email.svg);
	mask-image: url(images/email.svg);
	background-color: var(--black);
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	transition: .5s;
}
.footer-email a:hover {
	color: var(--pink);
}
.footer-email a:hover:before {
	background-color: var(--pink);
}


.main {
	

}


.page-header {
	position: relative;
	padding: 55px 0;
	z-index: 1;
}
.page-title {
	text-align: center;
	font-size: 70px;
}
.page-body {
	position: relative;
	padding: 0 0 150px;
	z-index: 1;
}
.page-content > h1 {
	font-size: 60px;
}
.page-content > h2 {
	font-size: 50px;
}
.page-content > h3 {
	font-size: 40px;
}
.page-content > h4 {
	font-size: 30px;
}
.page-content > h5 {
	font-size: 25px;
}
.page-content > h6 {
	font-size: 20px;
}
.page-content > ul,
.page-content > ol {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 30px;
}




.error-404-number {
	text-align: center;
	font-size: 340px;
	color: var(--pink);
	line-height: 1;
	opacity: .65;
	margin-bottom: 30px;
	font-weight: 600;
}
.error-404-button {
	text-align: center;
}



.hero-section {
	position: relative;
	padding: 40px 0 0;
	z-index: 1;
}
.hero-section:before {
	content: '';
	background: url(images/bg-gradient-1.png) no-repeat center;
	background-size: 1780px;
	width: 100%;
	height: 900px;
	position: absolute;
	bottom: -220px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.hero-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}
.hero-heading {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 100px;
}
.hero-heading h1 {
	line-height: 1;
}
.hero-label {
	position: absolute;
	background: url(images/hero-label-bg.png) no-repeat center;
	background-size: contain;
	width: 312px;
	height: 263px;
	top: 87px;
	right: -115px;
	z-index: 10;
	transform: rotate(0) scale(1);
	pointer-events: auto;
	transition: transform 1s ease;
}
.hero-label-inner {
	position:relative;
	text-align: center;
    line-height: 1;
    width: 240px;
    height: 240px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}
.hero-label-inner span {
	display: block;
}
.hero-label-primary {
	font-size: 39px;
	font-weight: 800;
	transition:display 0s ease 0.3s;
}
.hero-label-primary-2 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 10px;
	transition:display 0s ease 0.3s;
}
.hero-label-secondary {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.2;
}
.hero-button {
	flex: 0 0 31%;
	max-width: 31%;
	text-align: right;
	margin-right: 4.5%;
	margin-bottom: -10px;
}
.hero-image {
	flex: 0 0 29%;
	max-width: 29%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
}
.hero-image video {
    width: 400px;
    height: 400px;
}
.hero-description {
	margin-top: -6px;
	flex: 0 0 27%;
	max-width: 27%;
	font-size: 19px;
	line-height: 1.2727;
	font-weight: 600;
	margin-left: 50px;
}
.hero-label-fixed.hero-label {
    position: fixed;
    top: auto;
    right: auto;
    left: 50px;
	bottom:-400px;
	background-image:url(images/label-circle.png);
	opacity:0;
	transform: rotate(0) scale(1);
	pointer-events: auto;
	transition: transform 1s ease, opacity 0.5s ease, bottom 0.5s ease;
}
.hero-label-fixed.hero-label.active{
	opacity:1;
	bottom:50px;
}
.hero-label-fixed.hero-label .hero-label-primary {
    font-size: 21px;
}
.hero-label-fixed.hero-label .hero-label-primary-2 {
    font-size: 26px;
}
.hero-label-fixed.hero-label .hero-label-secondary {
    font-size: 11px;
}
.hero-label-fixed.hero-label,
.hero-label-fixed.hero-label .hero-label-inner {
    width: 170px;
    height: 170px;
}
.hero-label-fixed.hero-label .hero-label-inner{
	padding: 20px;
}
.hero-label-fixed.hero-label .hero-label-primary-2 {
    font-size: 16px;
}
.bodylang_fr .hero-label-fixed.hero-label .hero-label-primary-2 {
    font-size: 24px;
}
.bodylang_fr .hero-label-fixed.hero-label .hero-label-inner {
    padding: 0 5px;
}
.hero-label:hover{
	animation: pressZoom 1s ease forwards;
}
.hero-label-fixed.hero-label:hover{
	animation: pressBounce 1s ease forwards;
}
span.hero-label-hover{
	margin-bottom:10px;
	display:none;
	transition:display 0s ease 0.3s;
}
.hero-label:hover .hero-label-primary:not(.hero-label-hover),
.hero-label:hover .hero-label-primary-2{
	display:none;
	transition:display 0s ease 0.5s;
}
.hero-label:hover .hero-label-hover{
	display:block;
	transition:display 0s ease 0.5s;

}
@keyframes pressBounce {
  0% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(0.92) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes pressZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
.copied-label {
    margin: 0 auto;
	padding:2px;
    position: absolute;
    width: 50%;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #4caf50;
    font-weight: 600;
    animation: fadeIn 0.2s ease;
    background: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    border-radius: 3px;
    text-align: center;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}


.advantages-section {
	position: relative;
	padding: 115px 0 0;
	z-index: 1;
}
.advantages-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px 80px;
}
.advantages-item {
	flex: auto;
	max-width: 280px;
}
.advantages-item__wrap {
	position: relative;
	text-align: center;
	z-index: 1;
}
.advantages-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 95px;
	margin-bottom: 40px;
}
.advantages-item__image img {
	max-height: 95px;
}
.advantages-item__title {
	font-size: 27px;
	font-weight: 500;
	line-height: 1.1667;
	margin-bottom: 10px;
}
.advantages-item__text {
	line-height: 1.2;
}



.process-section {
	position: relative;
	padding: 170px 0 0;
	z-index: 2;
}
.process-section .heading {
	z-index: 2;
	position: relative;
}
.process-video {
	position: relative;
	width: 100%;
	height: calc(var(--container) / 1.5);
	max-width: 1250px;
	max-height: 508px;
	margin: 0 auto 205px;
	z-index: 1;
}
.process-video:before {
	content: '';
	background: url(images/proces-video-bg.png) no-repeat center;
	background-size: contain;
	width: 1920px;
	height: 1893px;
	position: absolute;
	top: -400px;
	left: calc((1920px - 1240px) / -2);
	z-index: -2;
}
.process-video-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.process-video-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.process-video-image video{
	position:absolute;
	top:0;left:0;right:0;bottom:0;
}


.process-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 100px 80px;
	z-index: 2;
}
.process-item {
	flex: 0 0 calc(50% - 40px);
	max-width: 620px;
}
.process-item__wrap {
	display: flex;
	gap: 60px;
}
.process-item__image {
	flex: 0 0 110px;
	max-width: 110px;
}
.process-video-play {
	position: relative;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play-button.svg);
	mask-image: url(images/play-button.svg);
	background: rgba(255, 255, 255, .55);
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
	backdrop-filter: blur(7px);
	cursor: pointer;
	z-index: 1;
	transition: .5s;
}
.process-video-play:hover {
	background: rgba(255, 255, 255, .95);
}
.process-item__info {
	flex: auto;
	max-width: calc(100% - 110px - 60px);
}
.process-item__title {
	font-size: 36px;
	line-height: 1.1;
	margin-bottom: 15px;
	font-weight: 600;
}
.process-item__content {
	font-size: 21px;
}
.process-item__content a {
	display: inline-block;
	text-decoration: none;
}





.reviews-section {
	position: relative;
	padding: 120px 0;
	z-index: 1;
}
.reviews-section:before {
	content: '';
	background: url(images/bg-gradient-2.png) no-repeat center;
	background-size: 2998px;
	position: absolute;
	width: 100%;
	height: 1145px;
	top: -11%;
	left: 0;
	z-index: -1;
}
.reviews-wrap {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	z-index: 1;
}
.reviews-head {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 30px;
}
.reviews-logo {
	flex: 0 0 50px;
	max-width: 50px;
}
.reviews-heading {
	font-size: 24px;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 10px;
}
.reviews-rating {
	display: flex;
	align-items: center;
	gap: 15px;
}
.reviews-rating-value {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
}
.reviews-stars {
	position: relative;
	flex: 0 0 95px;
	max-width: 95px;
	height: 15px;
	z-index: 1;
}
.reviews-stars:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/stars.svg);
	mask-image: url(images/stars.svg);
	background-color: #cbcbcb;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-stars span {
	-webkit-mask-size: 95px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 center;
	-webkit-mask-image: url(images/stars.svg);
	mask-image: url(images/stars.svg);
	background-color: #FBBF23;
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.reviews-carousel,
.express-carousel {
	position: relative;
	padding: 0 90px;
	z-index: 1;
}
.reviews-swiper .swiper-slide {
	height: auto;
}
.reviews-item {
	height: 100%;
}
.reviews-item__wrap {
	position: relative;
	background: var(--white);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: 35px;
	height: 100%;
	z-index: 1;
}
.reviews-item__initials {
	width: 55px;
	height: 55px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(38.65deg, #FD265D 4.45%, #00A2FF 95.55%);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 20px;
}
.reviews-item__title {
	font-size: 27px;
	line-height: 1;
	margin-bottom: 20px;
}
.reviews-item__rating {
	display: flex;
	gap: 5px;
	margin-bottom: 30px;
}
.reviews-item__rating span {
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	-webkit-mask-size: 95px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 center;
	-webkit-mask-image: url(images/stars.svg);
	mask-image: url(images/stars.svg);
	background-color: #cbcbcb;
}
.reviews-item__rating span.active {
	background-color: #FBBF23;
}
.reviews-item__text {
	font-size: var(--text-size);
	line-height: 1.5;
}



.production-section {
	position: relative;
	padding: 140px 0 60px;
	z-index: 1;
}
.productionTabs-nav {
	position: relative;
	margin: 0 auto 50px;
	width: max-content;
	max-width: 100%;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 50px;
	overflow: auto;
	z-index: 2;
}
.productionTabs-nav li {
	flex: 0 0 auto;
}
.productionTabs-nav li a {
	position: relative;
	display: inline-flex;
	text-align: center;
	font-size: 27px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	background: linear-gradient(89.67deg, #00DEFF 0.29%, #DA08BA 99.71%);
	border: none;
	padding: 2px;
	color: var(--black);
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
	outline: none;
	min-height: 70px;
	cursor: pointer;
	text-decoration: none;
	z-index: 1;
	transition: .5s;
}
.productionTabs-nav li a span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 50px;
	-moz-border-radius: 33px;
	-webkit-border-radius: 33px;
	border-radius: 33px;
	background: var(--white);
	transition: .5s;
}
.productionTabs-nav li a:hover,
.productionTabs-nav li.active a {
	color: var(--white);
}
.productionTabs-nav li a:hover span,
.productionTabs-nav li.active a span {
	background: var(--black);
}
.productionTabs-blocks {
	position: relative;
	z-index: 1;
}
.productionTabs-block {
	display: none;
}
.productionTabs-block.active {
	display: block;
}

.production-section .heading {
	position: relative;
	z-index: 2;
}
.production-wrap {
	display: flex;
	justify-content: space-between;
	gap: 9%;
}
.production-left {
	flex: 0 0 34%;
	max-width: 37%;
}
.production-video {
	position: relative;
	height: calc(var(--container) * .37 / .75);
	z-index: 1;
}
.production-video:before {
	content: '';
	background: url(images/production-video-bg.png) no-repeat center;
	background-size: contain;
	width: 1500px;
	height: 1545px;
	position: absolute;
	top: -392px;
	left: -572px;
	z-index: -2;
}
.production-video-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.production-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.production-play {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play-button.svg);
	mask-image: url(images/play-button.svg);
	background: rgba(255, 255, 255, .55);
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
	backdrop-filter: blur(7px);
	cursor: pointer;
	transition: .5s;
}
.production-play:hover {
	background: rgba(255, 255, 255, .95);
}
.production-right {
	position: relative;
	flex: 0 0 54%;
	max-width: 54%;
	padding: 25px 0 0;
	display: flex;
	flex-direction: column;
	gap: 60px;
	z-index: 2;
}
.production-heading {
	font-size: 30px;
}
.production-heading h2,
.production-heading h3,
.production-heading h4,
.production-heading h5,
.production-heading h6 {
	font-weight: 600;
}
.production-content {
	font-size: 30px;
}
.production-content ul,
.production-content ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 20px;
}


.partners-section {
	position: relative;
	padding: 200px 0 0;
	z-index: 2;
}
.partners-carousel {
	position: relative;
	padding: 0 90px;
	z-index: 1;
}
.partners-item__image {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.partners-item__image img {
	max-height: 80px;
}


.testimonials-section {
	position: relative;
	padding: 180px 0 0;
	z-index: 2;
}
.testimonials-carousel {
	position: relative;
	z-index: 1;
}
.testimonials-swiper.swiper {
	overflow: visible;
}
.testimonials-item__video {
	position: relative;
	height: calc((var(--container) - 20px * 3) / 4 / .78);
	margin-bottom: 30px;
	z-index: 1;
}
.testimonials-item__video:before {
	content: '';
	background: url(images/testimonials-video-bg.png) no-repeat center;
	background-size: contain;
	width: 835px;
    height: 1135px;
    position: absolute;
    top: -332px;
    left: -234px;
	pointer-events: none;
	z-index: -2;
}
.testimonials-item__video-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonials-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.testimonials-item__play {
	position: relative;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play-button.svg);
	mask-image: url(images/play-button.svg);
	background: rgba(255, 255, 255, .55);
	flex: 0 0 100px;
	max-width: 100px;
	height: 100px;
	backdrop-filter: blur(7px);
	cursor: pointer;
	z-index: 1;
	transition: .5s;
}
.testimonials-item__play:hover {
	background: rgba(255, 255, 255, .95);
}
.testimonials-item__name {
	font-size: 35px;
	line-height: 1.1;
	margin-bottom: 10px;
}
.testimonials-item__profession {
	font-size: 23px;
}
.testimonials-nav {
	position: relative;
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	z-index: 1;
}
.testimonials-navigation.swiper-navigation {
	position: relative;
	flex: 0 0 60px;
	max-width: 60px;
	top: 0;
	left: 0;
	order: 2;
}



.cta-section {
	position: relative;
	padding: 100px 0;
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.cta-section:before {
	content: '';
    background: url(images/bg-gradient-6.png) no-repeat center;
    background-size: 1920px;
    width: 100%;
    height: 2394px;
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .4;
    z-index: -1;
	pointer-events: none;
}
.cta-section .heading {
	margin-bottom: 30px;
}
.cta-button {
	position: relative;
	text-align: center;
	padding-top: 30px;
	z-index: 1;
}
.cta-button:before {
	content: '';
	background: url(images/btn-bg.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 638px;
	height: 175px;
	top: 5px;
	left: calc(50% - 638px / 2);
	z-index: -2;
}
.cta-button a {
	position: relative;
	font-size: 22px;
	color: var(--white);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 381px;
	height: 84px;
	padding-right: 77px;
}
.cta-button a:after {
	content: '';
	background: url(images/btn-icon.png) no-repeat center;
	background-size: contain;
	position: absolute;
	width: 76px;
	height: 76px;
	top: 4px;
	right: 0;
	transition: .5s;
	z-index: 1;
}
.cta-button a:hover:after {
	transform: rotate(360deg);
}




.blog-section {
	position: relative;
	padding: 180px 0;
	z-index: 2;
}
.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -50px;
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 50px;
	padding: 0 15px;
}
.blog-item__wrap {
	position: relative;
	z-index: 1;
}
.blog-item__image {
	height: calc((var(--container) - 30px * 2) / 3 / 1.3649);
	margin-bottom: 30px;
}
.blog-item__title {
	margin: 0 0 20px;
	font-size: 28px;
	line-height: 1.1;
}
.blog-item__title a {
	color: var(--black);
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--pink);
}
.blog-item__excerpt {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	margin-bottom: 20px;
}



.singleProduct-section {
	position: relative;
	padding: 70px 0 0;
	z-index: 2;
}
.singleProduct-wrap {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 80px;
}
.singleProduct-images {
	position: relative;
	flex: 0 0 592px;
	max-width: 592px;
	z-index: 1;
}
.singleProduct-images:before {
	content: '';
	background: url(images/bg-image-product.png) no-repeat center;
	background-size: contain;
	width: 1200px;
	height: 1200px;
	position: absolute;
	top: -306px;
	left: -315px;
	z-index: -2;
}
.singleProductImagesMain-swiper.swiper {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
	z-index: 1;
}
.singleProductImagesMain-item__image {
    position: relative;
    z-index: 1;
    width: 592px;
    height: 592px;
    background: #f4f2f5;
}
.singleProductImagesOther-swiper {
	overflow: hidden;
	position: relative;
	width: calc(100% - 180px);
	margin: 0 auto;
}
.singleProductImagesOther-swiper .swiper-slide {
	opacity: .5;
}
.singleProductImagesOther-swiper .swiper-slide.swiper-slide-thumb-active {
	opacity: 1;
}
.singleProductImagesOther-item__image {
	height: calc((((var(--container) * .66) - 180px) - 20px * 3) / 4 / 1.3636);
}
button.swiper-navigation.singleProductImagesMain-navigation {
	top: auto;
	bottom: calc((((var(--container) * .66) - 180px) - 20px * 3) / 4 / 1.3636 / 2 - 30px);
}
.singleProduct-summary {
	position: relative;
	flex: 0 0 calc(100% - 592px - 80px);
	max-width: calc(100% - 592px - 80px);
	z-index: 2;
}
.singleProduct-summary .product_title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 20px;
}
.singleProduct-summary .price {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.singleProduct-summary .price del {
	font-size: 25px;
	font-weight: 400;
	color: var(--grey);
}
.singleProduct-summary .price ins {
	text-decoration: none;
	color: var(--pink);
}
.woocommerce-product-details__short-description {
	font-size: 18px;
	margin-bottom: 30px;
}
.singleProduct-content {
	font-size: 16px;
	margin-bottom: 30px;
}
.singleProduct-content ~ form.cart{
	max-width:420px;
}
.singleProduct-action {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin-bottom: 32px;
}
.singleProduct-qty {
	flex: 0 0 110px;
	max-width: 110px;
	height: 44px;
	border: 1px solid #D3D3D3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: flex;
}
.singleProduct-qty span {
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	-webkit-mask-size: 14px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--black);
	cursor: pointer;
	user-select: none;
	transition: .5s;
}
.singleProduct-qty span.minus {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.singleProduct-qty span.plus {
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
}
.singleProduct-qty span:hover {
	background-color: var(--pink);
}
.singleProduct-qty .quantity {
	flex: auto;
}
.singleProduct-qty input {
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	line-height: 1.5;
    border: none;
    text-align: center;
    outline: none;
    padding: 10px 0;
    color: var(--black);
    -moz-appearance:textfield;
}
.singleProduct-qty input::-webkit-outer-spin-button,
.singleProduct-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.singleProduct-content ul{
	padding-left:20px;
}
.singleProduct-content ul li{
	margin-bottom:10px;
}
.singleProduct-action .btn {
	flex: 1 0 0;
    max-width: 100%;
    text-transform: uppercase;
    font-weight: 700;
}

.singleProduct-action-before-text {
    margin-bottom: 5px;
    margin-left: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}
.singleProduct-additional-content {
	font-size: 14px;
	margin-bottom: 10px;
}
.singleProduct-additional-content:last-child {
	margin-bottom: 0;
}
.singleProduct-additional-content > * {
	margin-bottom: 5px;
}
.singleProduct-additional-content > *:last-child {
	margin-bottom: 0;
}
.singleProduct-additional-content strong {
	font-weight: 600;
}
.singleProduct-additional-content table {
	width: 100%;
	border-collapse: collapse;
}
.singleProduct-additional-content th,
.singleProduct-additional-content td {
	padding: 5px;
}
.singleProduct-additional-content th:first-child,
.singleProduct-additional-content td:first-child {
	padding-left: 0;
}
.singleProduct-additional-content th:last-child,
.singleProduct-additional-content td:last-child {
	padding-right: 0;
}
.singleProduct-additional-content th strong {
	font-weight: 800;
}
.singleProduct-additional-content td {
	color: #404040;
}
.singleProduct-additional-content td strong {
	font-weight: 700;
}

.singleProductAccordion {
	margin-bottom: 15px;
}
.singleProductAccordion:last-child {
	margin-bottom: 0;
}
.singleProductAccordion-item {
	position: relative;
	padding: 15px 0;
	transition: .5s;
	z-index: 1;
}
.singleProductAccordion-item:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: url(images/product-accordion-sep.svg) repeat-x center;
	background-size: contain;
	z-index: 1;
}
.singleProductAccordion-item:last-child:after {
	display: none;
}
.singleProductAccordion-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 800;
	cursor: pointer;
	transition: .5s;
}
.singleProductAccordion-item__head:hover {
	color: var(--pink);
}
.singleProductAccordion-item__toggle {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-btn.svg);
    mask-image: url(images/arrow-btn.svg);
    background-color: var(--black);
	transition: .5s;
}
.active .singleProductAccordion-item__toggle {
	transform: rotate(180deg);
}
.singleProductAccordion-item__head:hover .singleProductAccordion-item__toggle {
	background-color: var(--pink);
}
.singleProductAccordion-item__body {
	font-size: 16px;
	margin-top: 10px;
}


.singleProductAdvantages {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.singleProductAdvantages-item {
	display: flex;
	align-items: center;
	min-height: 68px;
	gap: 35px;
}
.singleProductAdvantages-item__image {
	flex: 0 0 68px;
	max-width: 68px;
}
.singleProductAdvantages-item__info {
	flex: auto;
	font-size: 16px;
	line-height: 1.25;
}
.singleProductAdvantages-item__title {
	font-weight: 800;
	margin: 0;
}



.singleProductProcess-section {
	position: relative;
	padding-bottom: 100px;
	z-index: 2;
}
.singleProductProcess-wrap {
	display: flex;
	justify-content: center;
	gap: 80px;
}
.singleProductProcess-video {
	position: relative;
	flex: 0 0 50%;
	max-width: 50%;
	height: 425px;
	z-index: 1;
}
.singleProductProcess-video:before {
	content: '';
	background: url(images/proces-video-bg.png) no-repeat center;
	background-size: contain;
	width: 1095px;
	height: 893px;
	position: absolute;
	top: -158px;
	left: -195px;
	pointer-events: none;
	z-index: -2;
}
.singleProductProcess-video-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.singleProductProcess-video-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.singleProductProcess-video-image video{
	position:absolute;
	top:0;left:0;right:0;bottom:0;
}
.singleProductProcess-video-play {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/play-button.svg);
	mask-image: url(images/play-button.svg);
	background: rgba(255, 255, 255, .55);
	flex: 0 0 150px;
	max-width: 150px;
	height: 150px;
	backdrop-filter: blur(7px);
	cursor: pointer;
	transition: .5s;
}
.singleProductProcess-video-play:hover {
	background: rgba(255, 255, 255, .95);
}
.singleProductProcess-content {
	position: relative;
	flex: 0 0 calc(34% - 80px);
	max-width: calc(34% - 80px);
	z-index: 2;
}


.wc-block-components-notice-banner,
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info:not(ul),
.woocommerce-error:not(ul),
.woocommerce-notices-wrapper > .woocommerce-error {
	padding: 30px;
	background: var(--light);
	display: flex;
	align-items: center;
	margin-bottom: 40px !important;
	outline: none !important;
	list-style: none;
	font-size: 18px;
}
.woocommerce-message,
.woocommerce-NoticeGroup,
.woocommerce-info:not(ul),
.woocommerce-error:not(ul),
.woocommerce-notices-wrapper > .woocommerce-error {
	display: block;
}
.wc-block-components-notice-banner svg {
	flex: 0 0 36px;
	max-width: 36px;
	margin-right: 30px;
}
.wc-block-components-notice-banner__content {
	position: relative;
	overflow: hidden;
	flex: auto;
	max-width: 100%;
}
.wc-block-components-notice-banner__content .button,
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	float: right;
	margin-left: 30px;
	margin-bottom: 0px;
}

.wc_payment_methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #eee;
    padding: 0;
    margin: 0;
}
.wc_payment_methods .wc_payment_method {
    list-style: none;
    margin: 0;
    flex: 1 1 auto;
    position: relative;
    outline: none;
}
.wc_payment_methods input[type="radio"] {
    display: none;
}
ul.wc_payment_methods li > label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 60px;
    outline: none !important;
}
.wc_payment_methods li > label img {
    margin-left: 5px;
    opacity: 0.7;
}
.wc_payment_methods li > label:hover {
    background: #ccc;
}
.wc_payment_methods li > input[type="radio"]:checked + label {
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    box-shadow: none !important;
    flex: 0 0 100%;
    max-width: 100%;
    outline: none;
}
.mwc-payments-gateway-card-icons img{
	width:34px !important;
}
.wc_payment_methods .payment_box {
    display: none;
    padding: 16px;
    border: 1px solid #ddd;
    border-top: none;
    background: #f9f9f9;
    border-radius: 0;
}
.wc_payment_methods > li input[type="radio"]:checked + label + .payment_box {
    display: block;
}
.mwc-payments-payment-form {
    width: 100%;
}
/* .form-row {
    align-items: center;
    gap: 8px;
} */
.wc_payment_methods > li .form-row.woocommerce-validated{
	display:flex;
	align-items: center;
	margin-top:10px;
}
.wc_payment_methods > li .form-row.woocommerce-validated label{
	margin-bottom:0;
	font-size:14px
}


.woocommerce-shipping-methods {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding: 0;
    margin: 0;
}
.woocommerce-shipping-methods li {
    list-style: none;
    position: relative;
}
.woocommerce-shipping-methods input[type="radio"] {
    display: none;
}
.woocommerce-shipping-methods li > label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 44px;
	font-size: var(--text-size);
    transition: all 0.2s ease;
}
.woocommerce-shipping-methods li > label:hover {
    background: #f5f5f5;
}
.woocommerce-shipping-methods li > label::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
}
.woocommerce-shipping-methods li > label::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    transition: transform 0.2s ease;
}
.woocommerce-shipping-methods input[type="radio"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}
.woocommerce-shipping-methods input[type="radio"]:checked + label::before {
    border-color: #D3D3D3;
}
.woocommerce-shipping-methods input[type="radio"]:checked + label {
    background: #fafafa;
    font-weight: 600;
}



.woocommerce-pagination,
.navigation.pagination {
	position: relative;
	margin-top: 60px;
	z-index: 2;
}
ul.page-numbers,
.nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.page-numbers li a,
ul.page-numbers li span,
.nav-links .page-numbers:not(.dots) {
	min-width: 48px;
	height: 48px;
	color: var(--black);
	border: 1px solid var(--light);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	text-decoration: none;
}
ul.page-numbers li a:hover,
ul.page-numbers li span.current,
.nav-links .page-numbers:not(.dots):hover,
.nav-links .page-numbers.current {
	background: var(--pink);
	border-color: var(--pink);
	color: var(--white);
}





.singleBlog-wrap {
	overflow: hidden;
}
.singleBlog-image {
	position: relative;
	float: right;
	width: 560px;
	margin: 0 0 40px 40px;
	z-index: 1;
}
.singleBlog-date {
	position: absolute;
	left: 10px;
	bottom: 10px;
	background: var(--light);
	font-size: 14px;
	letter-spacing: 0;
	padding: 12px 15px;
	display: inline-block;
	z-index: 1;
	display:none;
}






/*------- Cart Start ----------*/
.wc-empty-cart-message {
	margin-bottom: 40px;
	text-align: center;
}
.return-to-shop {
	text-align: center;
}
.pageCart-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.pageCart-left {
	flex: 0 0 calc(75% - 20px);
	max-width: calc(75% - 20px);
}
.pageCart-right {
	flex: 0 0 calc(25% - 20px);
	max-width: calc(25% - 20px);
}
.pageCartTableProducts {
	width: 100%;
	border-collapse: collapse;
}
.pageCartTableProducts th {
	color: var(--grey);
	font-weight: 400;
	padding: 0 10px 20px;
	font-size: 18px;
}
.pageCartTableProducts td {
	border-top: 1px solid var(--light);
	padding: 20px 10px;
}
.pageCartTableProducts th:first-child,
.pageCartTableProducts td:first-child {
	padding-left: 0;
}
.pageCartTableProducts th:last-child,
.pageCartTableProducts td:last-child {
	padding-right: 0;
}
.pageCartTableProducts-image {
	width: 80px;
	height: 80px;
	overflow: hidden;
}
.pageCartTableProducts .product-name {
	text-align: left;
}
.pageCartTableProducts td.product-name {
	text-transform: uppercase;
	font-weight: 600;
}
.pageCartTableProducts .product-name a {
	text-decoration: none;
	color: var(--black);
}
.pageCartTableProducts .product-name dl {
	margin: 10px 0 0;
	display: flex;
	flex-wrap: wrap;
	color: var(--grey);
	font-weight: 400;
	text-transform: none;
	word-break: break-word;
}
.pageCartTableProducts .product-name dt {
	flex: 0 0 80px;
	max-width: 80px;
	margin-right: 10px;
}
.pageCartTableProducts .product-name dd {
	flex: 0 0 calc(100% - 80px - 10px);
	max-width: calc(100% - 80px - 10px);
	margin-left: 0;
}
.pageCartTableProducts td.product-quantity {
	width: 130px;
}
.pageCartTableProducts-qty {
	width: 110px;
	height: 44px;
	border: 1px solid #D3D3D3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: flex;
}
.pageCartTableProducts-qty span {
	flex: 0 0 42px;
	max-width: 42px;
	width: 42px;
	-webkit-mask-size: 14px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--black);
    cursor: pointer;
    user-select: none;
    transition: .5s;
}
.pageCartTableProducts-qty span.minus {
	-webkit-mask-image: url(images/minus.svg);
	mask-image: url(images/minus.svg);
}
.pageCartTableProducts-qty span.plus {
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
}
.pageCartTableProducts-qty span:hover {
	background-color: var(--pink);
}
.pageCartTableProducts-qty .quantity {
	flex: auto;
}
.pageCartTableProducts-qty input {
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	line-height: 1.5;
	border: none;
	text-align: center;
	outline: none;
	padding: 10px 0;
	color: var(--black);
	-moz-appearance: textfield;
}
.pageCartTableProducts-qty input::-webkit-outer-spin-button,
.pageCartTableProducts-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.pageCartTableProducts tbody .product-subtotal {
	text-align: center;
	white-space: nowrap;
	color: var(--black);
}
.pageCartTableProducts .product-remove a {
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: red;
	width: 28px;
	height: 28px;
	display: block;
}
.pageCartTableProducts .product-remove a:hover {
	background-color: var(--black);
}
.pageCartTableProducts .coupon {
	display: flex;
	width: 100%;
	max-width: 560px;
	float: left;
}
.pageCartTableProducts .coupon button {
	flex: 0 0 auto;
	margin-left: 10px;
}
.pageCartTableProducts .coupon ~ button {
	float: right;
}




.pageCartTotals {
	background: var(--light);
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.pageCartTotals > h2 {
	font-size: 24px;
	text-transform: uppercase;
	padding: 20px 20px 0;
	margin-bottom: 10px;
}
.pageCartTotals .woocommerce-shipping-totals.shipping{
	display:none !important
}
.cart_totals table {
	width: 100%;
	border-collapse: collapse;
}
.cart_totals table tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 15px 20px;
}
.cart_totals table tr:last-child {
	border-bottom: none;
}
.cart_totals table th {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: var(--grey);
	text-align: left;
	margin-bottom: 4px;
	padding: 0;
}
.cart_totals table tr.woocommerce-shipping-totals th {
	margin-bottom: 10px;
}
.cart_totals table td {
	padding: 0;
	display: block;
	color: var(--black);
}
.cart_totals table tr.cart-subtotal td {
	font-size: 20px;
}
.cart_totals table tr.order-total td {
	font-size: 25px;
}
.checkout-button {
	width: 100%;
}
.btn.checkout-button span {
	padding-left: 12px;
	padding-right: 12px;
}
.woocommerce-form__input-checkbox {
  display: none;
}
.checkout-policy label{
	display:flex;
	flex-wrap:wrap;
}
.woocommerce-form__label-for-checkbox{
	user-select: auto;
	text-decoration:underline;
}
.woocommerce-form__label-for-checkbox:hover{
	user-select: auto;
	text-decoration:none;
}
.woocommerce-terms-and-conditions-checkbox-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
font-size: var(--text-size);
  padding-left: 28px;
}
.woocommerce-form__input-checkbox + .woocommerce-terms-and-conditions-checkbox-text::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid #D3D3D3;
  position: absolute;
  left: 0;
  top: 2px;
  box-sizing: border-box;
}
.woocommerce-form__input-checkbox:checked + .woocommerce-terms-and-conditions-checkbox-text::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--pink);
  left: 4px;
  top: 6px;
}
.woocommerce-terms-and-conditions-checkbox-text {
  position: relative;
}
.woocommerce-input-wrapper input[type="checkbox"] {
  display: none;
}
.woocommerce-input-wrapper .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.woocommerce-input-wrapper .checkbox::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #D3D3D3;
  box-sizing: border-box;
  flex-shrink: 0;
}
.woocommerce-input-wrapper input[type="checkbox"]:checked + *::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--pink);
  top: 4px;
  left: 4px;
}
.woocommerce-input-wrapper .checkbox {
  padding-left: 28px;
}
.woocommerce-input-wrapper .checkbox::before {
  position: absolute;
  left: 0;
  top: 2px;
}
.woocommerce-input-wrapper input[type="checkbox"]:checked + *::after {
  left: 4px;
  top: 6px;
}
.woocommerce-shipping-destination {
	display: none !important;
}
.woocommerce-shipping-methods,
.wc_payment_methods {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 18px;
}
.woocommerce-shipping-methods li,
.wc_payment_methods li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.woocommerce-shipping-methods li:last-child,
.wc_payment_methods li:last-child {
	margin-bottom: 0;
}
.woocommerce-shipping-methods li input,
.wc_payment_methods li input {
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	margin: 0 10px 0 0;
	cursor: pointer;
}
.woocommerce-shipping-methods li label,
.wc_payment_methods li label {
	flex: 0 0 calc(100% - 16px - 10px);
	max-width: calc(100% - 16px - 10px);
	cursor: pointer;
}
.payment_box {
	flex: 0 0 100%;
	max-width: 100%;
	background: #f9f9f9;
	margin-top: 0;
	margin-bottom: 6px;
	padding: 20px;
	font-size: 16px;
}

/*------- Cart End ----------*/





/*---------- Checkout Start ------------*/
.pageCheckout-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}
.pageCheckout-left {
	flex: 0 0 calc(60% - 20px);
	max-width: calc(60% - 20px);
}
.pageCheckout-right {
	flex: 0 0 calc(40% - 20px);
	max-width: calc(40% - 20px);
	background: var(--light);
	padding: 30px;
}
.woocommerce-billing-fields {
	margin-bottom: 50px;
}
.woocommerce-billing-fields > h3,
.wcus-checkout-fields > h3,
.woocommerce-additional-fields > h3,
#order_review_heading,
.woocommerce-checkout-payment > h3,
.pageLogin-left > h2,
.pageLogin-right > h2,
.woocommerce-Address-title > h3,
.woocommerce-MyAccount-content form > h3,
.woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-Address-title h2,
#custom-options h3 {
	font-size: 30px;
	margin-bottom: 30px;
}
#custom-options{
	margin-bottom:40px;
}
#custom-options .form-row-wide{
	margin-bottom:20px;
}
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	gap: 25px;
}
.woocommerce-privacy-policy-text{
	margin-bottom:20px;
}
.form-row {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
}
.form-row-first,
.form-row-last {
	flex: 0 0 calc(50% - 25px / 2);
	max-width: calc(50% - 25px / 2);
}
.form-row > label {
	font-size: 16px;
	display: block;
	width: 100%;
	opacity: .5;
	margin-bottom: 10px;
}
.form-row > label span.optional {
	display: none;
}
.form-row > label abbr {
	color: red;
}
.form-row input + span > em {
	font-size: 16px;
	margin-top: 4px;
	color: var(--grey);
	display: inline-block;
}
.checkout-inline-error-message {
	color: red;
	margin-top: 2px;
	font-size: 14px;
}
.select2-container .select2-selection--single {
	height: 56px;
	margin: 0;
}
.select2-container--default .select2-selection--single {
	font-size: 16px;
	background: var(--white);
	border: 1px solid #D3D3D3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 24px;
	padding-right: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--black);
	line-height: 56px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 54px;
	right: 10px;
	width: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-width: 8px 5px 0 5px;
	border-color: var(--black) transparent transparent transparent;
}
.select2-container--default .select2-results>.select2-results__options {
	max-height: 320px;
}
.select2-search--dropdown .select2-search__field {
	padding: 10px 20px;
	border: 1px solid #D3D3D3;
}
.select2-search--dropdown {
	padding: 10px 15px;
}
.select2-results__option {
	padding: 10px 15px;
	font-size: 16px;
}
#order_review_heading {
	margin-bottom: 30px;
}
.woocommerce-checkout-review-order-table {
	display: block;
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 30px;
}
.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout-review-order-table tbody {
	display: table;
	width: 100%;
}
.woocommerce-checkout-review-order-table thead th {
	font-weight: 400;
	padding: 0 10px 10px;
	text-align: left;
	font-size: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	color: var(--grey);
}
.woocommerce-checkout-review-order-table tbody td {
	padding: 20px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	font-size: 18px;
	font-weight: 500;
}
.woocommerce-checkout-review-order-table thead th:first-child,
.woocommerce-checkout-review-order-table tbody td:first-child {
	width: 65%;
	padding-left: 0;
}
.woocommerce-checkout-review-order-table tbody td:last-child {
	font-size: 20px;
	font-weight: 400;
}
.woocommerce-checkout-review-order-table thead th:last-child,
.woocommerce-checkout-review-order-table tbody td:last-child {
	padding-right: 0;
}
.woocommerce-checkout-review-order-table tbody td dl {
	margin: 10px 0 0;
	display: flex;
	flex-wrap: wrap;
	text-transform: none;
	font-size: 16px;
	font-weight: 400;
}
.woocommerce-checkout-review-order-table tbody td dt {
	flex: 0 0 80px;
	max-width: 80px;
	margin-right: 10px;
}
.woocommerce-checkout-review-order-table tbody td dd {
	flex: 0 0 calc(100% - 80px - 10px);
	max-width: calc(100% - 80px - 10px);
	margin-left: 0;
	word-break: break-word;
}
.woocommerce-checkout-review-order-table tfoot {
	display: block;
	width: 100%;
}
.woocommerce-checkout-review-order-table tfoot tr {
	display: block;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 20px 0;
}
.woocommerce-checkout-review-order-table tfoot tr:last-child {
	border-bottom: none;
}
.woocommerce-checkout-review-order-table tfoot th {
	display: block;
	font-weight: 400;
	text-align: left;
	margin-bottom: 4px;
	font-size: 16px;
	color: var(--grey);
	padding: 0;
}
.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th {
	margin-bottom: 10px;
}
.woocommerce-checkout-review-order-table tfoot td {
	padding: 0;
	display: block;
	font-size: 18px;
}
.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
	font-size: 20px;
}
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	font-size: 25px;
}

.wc_payment_methods {
	margin-bottom: 30px;
}
.woocommerce-privacy-policy-text,
.checkout-policy {
    opacity: 0.8;
}
.woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper,
.checkout-policy {
	margin-bottom: 20px !important;
	font-size: 16px;
}
.form-row.place-order {
	margin-bottom: 0;
}
.form-row.place-order .btn {
	width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #000;
    gap: 15px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    transition: .5s;
}
.form-row.place-order .btn:hover {
	width: 100%;
	flex: 0 0 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 15px;
	background:var(--pink);
	gap: 15px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
	transition: .5s;
}
.form-row.place-order .btn span{
	padding:0;
    background: none;
}
/*-------- Checkout End -----------*/




.pageLogin-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}
.pageLogin-left,
.pageLogin-right {
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
	padding: 30px;
	background: var(--light);
}
.show-password-input {
	display: none;
}
.woocommerce-form-login,
.woocommerce-form-register,
.woocommerce-ResetPassword {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
.woocommerce-form-register wc-order-attribution-inputs {
	display: none;
}
.form-row > label.woocommerce-form__label-for-checkbox {
	margin: 0;
	opacity: 1;
}

.woocommerce-privacy-policy-text,
.woocommerce-LostPassword {
	font-size: 16px;
}


.woocommerce-account .container > .page-content > .woocommerce:after {
	content: '';
	clear: both;
	display: block;
}
.woocommerce-MyAccount-navigation {
	width: 280px;
	float: left;
}

.woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce-MyAccount-navigation ul li {
	position: relative;
	margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation ul li:last-child {
	margin-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 500;
	padding: 12px 24px;
	background: var(--light);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: var(--black);
	text-decoration: none;
	min-height: 56px;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a  {
	background: var(--pink);
	color: var(--white);
}
.woocommerce-MyAccount-content {
	float: right;
	width: calc(100% - 280px - 40px);
	margin-left: 40px;
}



.woocommerce-orders-table,
.woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
	font-size: 18px;
}
.woocommerce-orders-table th,
.woocommerce-orders-table td,
.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 12px 24px;
}
.woocommerce-orders-table th,
.woocommerce-table--order-details th {
	font-weight: 400;
	color: var(--grey);
	text-align: left;
}
.woocommerce-table--order-details .wc-item-meta {
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
	display:none !important
}
.woocommerce-table--order-details .wc-item-meta li {
	display: flex;
	margin-bottom: 4px;
}
.woocommerce-table--order-details .wc-item-meta li:last-child {
	margin-bottom: 0;
}
.woocommerce-table--order-details .wc-item-meta strong {
	font-weight: 600;
	margin-right: 5px;
}

a.edit {
	color: red;
	display: inline-block;
	margin-bottom: 10px;
	font-size: 16px;
}

.woocommerce-order-details {
	margin-bottom: 30px;
}

.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm,
.woocommerce-EditAccountForm fieldset {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	font-size: 18px;
}
.woocommerce-EditAccountForm fieldset {
	flex: 0 0 100%;
	max-width: 100%;
	border: none;
	padding: 0;
	margin: 0;
}
.woocommerce-EditAccountForm fieldset legend {
	font-size: 20px;
	margin-bottom: 10px;
	padding: 0;
	display: block;
}

.woocommerce-customer-details {
	background: var(--light);
	padding: 30px;
	font-size: 18px;
}


.woocommerce-thankyou-order-received {
	font-size: 30px;
	font-weight: 500;
	text-align: center;
}
.woocommerce-thankyou-order-details {
	margin: 0 0 40px;
	padding: 30px;
	gap: 25px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: var(--light);
	font-size: 18px;
}
.woocommerce-thankyou-order-details li {
	flex: auto;
	max-width: 100%;
	text-align: center;
}
.woocommerce-thankyou-order-details li strong {
	display: block;
}

/* contact page */

.contact-section.section {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-section .container {
	position: relative;
	height: 100%;
}

.contact-wrap {
	padding-bottom: 70px;
	max-height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

.contact-wrap>div {
	flex: 50% 0 0;
}

.contact__item address,
.contact__item .contact__phone a,
.contact__item .contact__email a,
.contact__item .contact__schedule {
	font-size: var(--h6-size);
}

.contact__item .contact__phone a,
.contact__item .contact__email a {
	color: var(--pink);
	text-decoration: none;
}

.contact__item h2{
	font-size:42px;
}

.contact-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 40px;
}

@media screen and (max-width:1099px) {
	.contact-content {
		grid-template-columns: repeat(1, 1fr);
		column-gap: 20px;
		row-gap: 20px;
	}
}

@media screen and (max-width:899px) {
	.contact-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-wrap {
		flex-wrap: wrap;
		gap: 100px;
	}

	.contact-wrap>div {
		flex: 100% 0 0;
	}
}

@media screen and (max-width:599px) {
	.contact-content {
		grid-template-columns: repeat(1, 1fr);
	}

	.contact_heading {
		margin-bottom: 5px;
	}
}

.contact__item.contact_item_map {
	grid-column: 1 / -1;

}

.contact_heading {
	margin-bottom: 20px;
	font-size: var(--text-size);
	font-weight:600;
}

.contact-subheading {
	margin: 50px 0 0;
	font-weight: 300;
	line-height: 150%;
}

.contact-text {
	margin: 20px 0 var(--gap);
	white-space: pre-wrap;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.contact-button {
	margin-top: var(--gap);
}

.soc-links.contact-soc {
	margin-top: 10px;
}

.contact__phone a,
.contact__email a {
	font-style: normal;
	font-weight: 500;
	color: var(--text-color);
}

.contact__email a {
	text-decoration: underline;
}

.contact__phone a:hover,
.contact__email a:hover {
	color: var(--primary-color)
}

.contact__phone span,
.contact__email span {
	margin-right: 10px;
	width: 24px;
	line-height: 0;
}

.contact__phone span svg,
.contact__email span svg {
	width: 21px;
	fill: var(--primary-color);
}

.contact-content .soc-links ul li a {
	background-color: var(--primary-color);
}

.contact-content .soc-links ul li a:hover svg path {
	fill: var(--white);
}

.contact-content .soc-links ul li a:hover {
	background-color: var(--bg-grey);
}

.contact-form .modal-heading {
	margin-bottom: var(--gap);
}

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

.contact-form .form-field-button button {
	width: 100%;

}

.banner-form {
	padding: 42px 36px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-radius: 32px;
	max-width: 572px;
}

.banner-form .heading :is(h2, h3) {
	font-size: 42px;
}


/* FAQ page */

.faq-page,
.testimonials-page{
	position:relative;
	z-index: 0;
}

.faq-page:before {
    content: '';
    background: url(images/bg-gradient-2.png) no-repeat center;
    background-size: 2998px;
    position: absolute;
    width: 100%;
    height: 1145px;
    top: -11%;
    left: 0;
    z-index: -1;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gap) / 1.2);
	max-width: 960px;
	margin: auto;
}

.faq-item {
	position: relative;
	border: 1px solid rgb(224 224 224);
	background: #fff;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
	border-radius: 24px;
	transition: .5s;
	z-index: 1;
}

.faq-item.active {
	border-color: var(--pink);
    background: #fff;
}

.faq-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--gap) / 1.5);
    min-height: 92px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.1667;
    color: #000;
    margin: 0;
    padding: calc(var(--gap) / 1.2) calc(var(--gap) / 1.5) calc(var(--gap) / 1.2) calc(var(--gap) * 1.333);
    cursor: pointer;
    transition: .5s;
}

.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	max-width: 48px;
	width: 48px;
	height: 48px;
	-moz-border-radius: calc(24px / 3.333);
	-webkit-border-radius: calc(24px / 3.333);
	border-radius: calc(24px / 3.333);
	transition: .5s;
}

.active .faq-item__toggle {
	/* background: ; */
}

.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/chevron-down.svg);
	mask-image: url(images/chevron-down.svg);
	background-color: #000;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .5s;
}

.active .faq-item__toggle:before {
	background-color: var(--pink);
	transform: rotate(180deg);
}

.faq-item__body {
	line-height: 1.4;
	padding: 0 calc(var(--gap) / 1.5 + 48px + var(--gap) / 1.5) calc(var(--gap) * 1.333) calc(var(--gap) * 1.333);
}

.faq-button {
	margin-top: calc(var(--gap) * 1.5);
}

/* kixxl */

#kixxl-custom-button, #kixxl-upload-button, #kixxl-upload-by-size-button{
	width:100% !important;
	margin-right:0 !important;
}
#kixxl-upload-by-size-js ~ .singleProduct-action > div,
:is(.postid-202, .postid-444) .singleProduct-action > div{
	display:none
}

h3#ship-to-different-address{
	font-size:1em;
}

/* express order */

.express-order-wrap{
	display:flex;
	flex-direction:column;
	gap: 40px;
}
.express-order-item{
	position:relative;
	padding-left: 100px;
}
.express-order-item-step{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	color: #000;
	font-size: 60px;
	height: 60px;
	line-height: 0;
	opacity: 0.2;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.express-order-item-title{
	margin-bottom: 10px;
	font-size: 21px;
	font-weight: 500;
}
.express-order-price{
	display: flex;
    gap: 5px;
    flex-direction: column;
}
.express-order-price p{
	margin:0;
}
.contact_item_map ul{
	padding:0 0 0 20px;
}
.express-design-body .banner-form{
	max-width:640px;
}
.express-swiper{
	margin-bottom:50px;
}
.express-slide.swiper-slide{
	display:flex;
	max-width:500px;
	height:400px;
	overflow:hidden;
}
.express-slide a{
	display:block;
}

@media (max-width:6000px){
	h1, .page-title {
		font-size: 44px;
	}
	.heading h2{
		font-size: 40px;
	}
	h3 {
		font-size: 42px;
	}
	h4 {
		font-size: 30px;
	}
	h5 {
		font-size: 34px;
	}
	h6 {
		font-size: 26px;
	}
	.heading p:first-child {
    	font-size: 22px;
 }
	.hero-label {
		top: 34px;
		right: 100px;
		width: 230px;
		height: 200px;
	}
	.hero-label-inner {
        padding: 0 15px;
        width: 175px;
        height: 180px;
 }
	.hero-label-primary,
	.hero-label-primary-2 {
		font-size: 26px;
	}
	.bodylang_fr .hero-label-primary, 
	.bodylang_fr .hero-label-primary-2 {
        font-size: 21px;
    }
	.hero-label-secondary {
    	font-size: 13px;
 }
	.hero-heading {
		margin-bottom: 50px;
	}
	.hero-image img{
		max-width: 350px;
	}
	.hero-description {
    	font-size: 19px;
	}
	.btn.btn-lg {
        min-height: 60px;
        font-size: 17px;
    }
	.btn.btn-md {
    min-height: 70px;
    font-size: 22px;
	}
	.btn.btn-md-2 {
    min-height: 56px;
    font-size: 18px;
	}
    .main-menu {
        font-size: 16px;
    }
	.advantages-item__image img,
	.advantages-item__image {
		max-height: 85px;
	}
	.advantages-item__title {
    	font-size: 22px;
 }
	.heading {
		margin-bottom: 50px;
	}
	.process-video:before {
		width: 1674px;
		height: 1110px;
		top: -216px;
		left: calc((1920px - 1150px) / -2);
	}
	.process-video {
		height: calc(var(--container) / 1.5);
		max-width: 890px;
		max-height: 508px;
		margin: 0 auto 130px;
	}
	.process-video-play,
	.production-play,
	.singleProductProcess-video-play {
		flex: 0 0 120px;
		max-width: 120px;
		height: 120px;
	}
	.process-item__title {
		font-size: 30px;
	}
	.process-item__content {
		font-size: 19px;
	}
	.process-item__image {
		flex: 0 0 90px;
		max-width: 90px;
	}
	.reviews-item__title {
    	font-size: 22px;
 }
	.productionTabs-nav li a {
    	font-size: 20px;
 }
	.production-heading {
		font-size: 26px;
	}
	.production-content{
		font-size: 20px;
	}
	.productionTabs-blocks {
		margin: 0 auto;
		position: relative;
		z-index: 1;
		max-width: 1450px;
	}
	.production-right {
		flex: 1 0 0;
		max-width: 100%;
	}
	.production-wrap {
		gap: 100px;
		    justify-content: center;
	}
	.production-right {
		position: relative;
		flex: 572px 0 0;
	}
	.production-left {
	    flex: 0 0 396px;
	    max-width: 450px;
	}
	.production-video {
		height: 450px;
	}
	.production-video:before {
        width: 1202px;
        height: 938px;
        top: -241px;
        left: -477px;
	}
	.partners-item__image img {
		max-height: 70px;
	}
	.testimonials-item__name {
    	font-size: 32px;
	}
	.testimonials-item__profession {
		font-size: 20px;
	}
	.soc-links li a {
        width: 44px;
        height: 44px;
	}
	.soc-links {
		gap: 12px;
	}

}





@media (max-width: 1799px) {
	.hero-label {
		right: calc((100vw - var(--container)) / -2 + 30px);
	}
}





@media (max-width: 1599px) {
	:root {
		--container: 1310px;
	}
	body {
		font-size: 18px;
	}
	h5,
	.process-item__title,
	.reviews-rating-value {
		font-size: 28px;
	}
	h6,
	.heading p:first-child,
	.reviews-heading,
	.reviews-item__title,
	.production-heading,
	.production-content,
	.blog-item__title {
		font-size: 20px;
	}
	.express-slide.swiper-slide {
    max-width: 100%;
    height: 320px;
	}
	.singleProductProcess-video {
    height: 381px;
}


	.heading {
		margin-bottom: 60px;
	}

	.btn.btn-lg {
		font-size: 17px;
	}
	.btn.btn-md {
		font-size: 22px;
	}
	.btn.btn-md-2 {
		font-size: 18px;
	}

	.header-wrap {
		height: 100px;
		padding: 20px 0 30px;
		gap: 40px;
	}
	.main-menu {
		font-size: 16px;
	}
	.hero-label {
		width: 230px;
		height: 200px;
	}
	.hero-label-inner {
		width: 175px;
		height: 180px;
	}
	.hero-label-primary {
		font-size: 24px;
	}
	.hero-label-primary-2 {
		font-size: 24px;
	}
	.bodylang_fr .hero-label-primary{
		font-size: 28px;
	} 
	.bodylang_fr .hero-label-primary-2 {
        font-size: 22px;
    }
	.hero-description {
		font-size: 19px;
	}
	.advantages-item {
		max-width: 240px;
	}
	.advantages-item__image {
		height: 84px;
		margin-bottom: 24px;
	}
	.advantages-item__image img {
		max-height: 84px;
	}
	.advantages-item__title {
		font-size: 25px;
	}
	.process-section {
		padding-top: 140px;
	}
	.process-video {
		max-width: 723px;
		max-height: 407px;
		margin-bottom: 120px;
	}
	.process-video:before {
		width: 1244px;
		height: 882px;
		top: -169px;
		left: -279px;
	}
	.process-items {
		gap: 90px 60px;
	}
	.process-item {
		flex: 0 0 calc(50%  - 30px);
		max-width: 560px;
	}
	.process-item__wrap {
		gap: 40px;
	}
	.process-item__image {
		flex: 0 0 96px;
		max-width: 96px;
	}
	.process-item__info {
		max-width: calc(100% - 96px - 40px);
	}
	.process-item__content {
		font-size: 19px;
	}
	.reviews-logo {
		flex: 0 0 50px;
		max-width: 50px;
	}
	.reviews-item__wrap {
		padding: 24px;
	}
	.reviews-item__rating {
		margin-bottom: 20px;
	}
	.productionTabs-nav {
		margin-bottom: 60px;
	}
	.productionTabs-nav li a {
		font-size: 19px;
		min-height: 60px;
	}
	.production-wrap {
		gap: 5%;
	}
	.production-video:before {
		width: 1279px;
		height: 1148px;
		top: -295px;
		left: -509px;
	}
	.cta-section {
    min-height: 600px;
	}
	.production-right {
		flex: 572px 0 0;
		max-width: 58%;
		padding-top: 10px;
		gap: 50px;
	}
	.partners-section {
		padding-top: 120px;
	}
	.partners-item__image {
		height: 64px;
	}
	.partners-item__image img {
		max-height: 64px;
	}
	.testimonials-section {
		padding-top: 160px;
	}
	.testimonials-item__video:before {
		width: 730px;
        height: 1020px;
        top: -309px;
        left: -208px;
	}
	.blog-item__image {
		margin-bottom: 24px;
	}
	.blog-section {
		padding: 120px 0;
	}

	.footer {
		padding: 50px 0 80px;
	}
	.footer-wrap {
		gap: 36px;
	}
	.footer-widget-title {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.footer-email {
		margin-bottom: 30px;
	}
	.soc-links {
		gap: 20px;
	}
	.soc-links li a {
		width: 48px;
		height: 48px;
	}

	.singleProduct-images:before,
	.singleProductProcess-video:before {
		width: 1009px;
		height: 1019px;
		top: -215px;
		left: -179px;
	}
	.singleProduct-wrap {
		gap: 60px;
	}
	.singleProduct-summary {
		flex: 0 0 calc(100% - 540px - 60px );
		max-width: calc(100% - 540px - 60px);
	}
	.singleProduct-action-before-text {
		font-size: 14px;
	}
	.singleProductProcess-section {
		padding-bottom: 80px;
	}
	.error-404-number {
		font-size: 280px;
	}
	.pageCartTableProducts .product-name dl {
		font-size: 16px;
	}
		.singleProduct-images {
		position: relative;
		flex: 0 0 540px;
		max-width: 540px;
		z-index: 1;
	}
	.singleProductImagesMain-item__image {
		height: 540px;
	}
	.singleProductImagesMain-item__image {
		width: 540px;
		height: 540px;
	}
	.singleProduct-images:before, .singleProductProcess-video:before {
        width: 948px;
        height: 833px;
        top: -163px;
        left: -183px;
    }
}




@media (max-width: 1399px) {
	:root {
		--container: 1110px;
	}
	body {
		font-size: 16px;
	}
	.header-email{
		display:none
	}

	h1,
	.heading h2 {
		font-size: 38px;
	}
	h2,
	.page-title {
		font-size: 46px;
	}
	h3 {
		font-size: 38px;
	}
	h4 {
		font-size: 32px;
	}
	h5,
	.reviews-rating-value {
		font-size: 28px;
	}
	h6,
	.heading p:first-child,
	.reviews-heading,
	.reviews-item__title,
	.production-heading,
	.production-content,
	.blog-item__title {
		font-size: 18px;
	}
.footer-menu {
    font-size: 14px;
}
.footer-widget:last-child{
	max-width:200px;
}
.singleProductImagesMain-item__image {
    height: 456px;
}
	.heading {
		margin-bottom: 40px;
	}

	.btn.btn-lg {
		font-size: 17px;
		min-height: 68px;
	}
	.btn-lg.btn-icon-left span:before, .btn-lg.btn-icon-right span:after {
		flex: 0 0 28px;
		max-width: 28px;
		width: 28px;
		height: 28px;
	}
	.btn.btn-md {
		font-size: 18px;
		min-height: 62px;
	}
	.btn.btn-md-2 {
		font-size: 16px;
		min-height: 50px;
	}

	.page-content > h1 {
		font-size: 48px;
	}
	.page-content > h2 {
		font-size: 42px;
	}
	.page-content > h3 {
		font-size: 36px;
	}
	.page-content > h4 {
		font-size: 30px;
	}
	.page-content > h5 {
		font-size: 24px;
	}
	.page-content > h6 {
		font-size: 20px;
	}

.hero-label-fixed.hero-label, .hero-label-fixed.hero-label .hero-label-inner {
    width: 150px;
    height: 150px;
}
.hero-label-fixed.hero-label .hero-label-primary {
    font-size: 19px;
}
.hero-label-fixed.hero-label .hero-label-primary-2 {
    font-size: 15px;
}
.hero-label-fixed.hero-label .hero-label-secondary {
    font-size: 9px;
}
.form-field p {
    font-size: 14px;
}
.banner-form .heading :is(h2, h3) {
    font-size: 34px;
}
button.swiper-navigation {
    position: absolute;
    width: 50px;
    height: 50px;
}
.reviews-carousel, .express-carousel {
    padding: 0 70px;
}
.hero-label-fixed.hero-label{
    left: 30px;
}
.hero-label-fixed.hero-label.active {
    bottom: 30px;
}
    .express-slide.swiper-slide {
        height: 300px;
    }

	.header-wrap {
		height: 110px;
		padding: 30px 0;
	}
	.header-logo img {
		max-height: 50px;
	}
	.main-menu {
		font-size: 15px;
	}
	.header-marquee {
		height: 36px;
	}
	.marquee-item {
		font-size: 16px;
	}
	.hero-label {
		width: 209px;
		height: 180px;
	}
	.hero-label-inner {
		width: 158px;
		height: 158px;
	}
	.hero-label-primary {
		font-size: 20px;
	}
	.hero-label-primary-2 {
		font-size: 19px;
	}
	.bodylang_fr .hero-label-primary{
		font-size: 24px;
	} 
	.bodylang_fr .hero-label-primary-2 {
        font-size: 20px;
    }
	.hero-label-secondary {
		font-size: 10px;
	}
	.hero-heading {
		margin-bottom: 60px;
	}
	.hero-button {
		margin-right: 2.5%;
		flex: 0 0 33%;
		max-width: 33%;
	}
	.hero-description {
		margin-left: 4.5%;
		flex: 0 0 31%;
		max-width: 31%;
		font-size: 18px;
	}
	.hero-section:before {
		background-size: 100%;
		bottom: -200px;
	}

	.advantages-section {
		padding-top: 100px;
	}
	.advantages-items {
		gap: 40px 30px;
	}
	.advantages-item {
		flex: 0 0 calc((100% / 4) - (3 * 30px / 4));
		max-width: calc((100% / 4) - (3 * 30px / 4));
	}
	.advantages-item__image {
		height: 64px;
	}
	.advantages-item__image img {
		max-height: 64px;
	}
	.advantages-item__title {
		font-size: 20px;
	}
	.process-section {
		padding-top: 110px;
	}
	.process-video {
		margin-bottom: 120px;
	}
	.process-items {
		gap: 48px 30px;
	}
	.process-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    .process-item__wrap {
    	gap: 24px;
    }
    .process-item__image {
        flex: 0 0 80px;
        max-width: 80px;
    }
	.process-item__info {
		max-width: calc(100% - 80px - 24px);
	}
	.process-item__content {
		font-size: 18px;
	}
	.process-item__title {
		font-size: 24px;
	}
	.reviews-item__text {
		font-size: 15px;
	}
	.productionTabs-nav li a {
		font-size: 17px;
	}
	.production-video:before {
		width: 1090px;
		height: 934px;
		top: -239px;
		left: -432px;
	}
	.production-play,
	.singleProductProcess-video-play,
	.process-video-play {
		flex: 0 0 80px;
		max-width: 80px;
		height: 120px;
	}
	.productionTabs-nav {
		margin-bottom: 40px;
	}
	.production-right {
		gap: 36px;
	}
	.production-section {
		padding: 120px 0 20px;
	}
	.reviews-section:before {
		background-size: 200%;
		top: -20%;
	}
	.partners-section {
		padding-top: 100px;
	}
	.partners-item__image {
		height: 48px;
	}
	.partners-item__image img {
		max-height: 48px;
	}
	.testimonials-section {
		padding-top: 120px;
	}
	.testimonials-item__video:before {
        width: 600px;
        height: 955px;
        top: -309px;
        left: -168px;
    }
    .testimonials-item__video {
    	margin-bottom: 20px;
    }
    .testimonials-item__name {
    	font-size: 25px;
    }
    .testimonials-item__profession {
    	font-size: 18px;
    }
    .testimonials-item__play {
    	flex: 0 0 80px;
    	max-width: 80px;
    	height: 80px;
    }
    .cta-section .heading {
    	margin-bottom: 20px;
    }
    .cta-button {
    	padding-top: 24px;
    }
    .cta-button:before {
		width: 600px;
		height: 167px;
		left: calc(50% - 600px / 2);
		}
    .cta-button a {
    	font-size: 20px;
    	width: 385px;
    	height: 88px;
    }
    .cta-button a:after {
    	top: 11px;
    	width: 68px;
    	height: 68px;
    }
    .cta-section:before {
    	background-size: 115%;
    	top: 40%;
    }
    .blog-section {
    	padding: 100px 0;
    }
    .footer-logo img {
    	max-height: 50px;
    }
    .footer-email a {
    	gap: 12px;
    }
    .footer-email a:before {
    	flex: 0 0 24px;
    	max-width: 24px;
    	width: 24px;
    	height: 24px;
    }
    .soc-links {
    	gap: 12px;
    }
    .footer {
    	padding: 40px 0 60px;
    }
    .page-header {
    	padding: 40px 0;
    }
    .page-body {
    	padding-bottom: 100px;
    }
    .error-404-number {
        font-size: 240px;
    }


    .singleProduct-section {
    	padding-top: 80px;
    }
    .singleProduct-wrap {
    	gap: 40px;
    }
    .singleProduct-images {
    	flex: 0 0 60%;
    	max-width: 60%;
    }
    .singleProductImagesOther-item__image {
		height: calc((((var(--container) * .6) - 180px) - 20px * 3) / 4 / 1.3636);
	}
	button.swiper-navigation.singleProductImagesMain-navigation {
		bottom: calc((((var(--container) * .6) - 180px) - 20px * 3) / 4 / 1.3636 / 2 - 30px);
	}
	.singleProduct-summary {
		flex: 0 0 calc(100% - 456px - 40px);
		max-width: calc(100% - 456px - 40px);
	}
    .singleProduct-summary .product_title {
    	font-size: 25px;
    }
    .singleProduct-summary .price {
    	font-size: 30px;
    }
    .singleProduct-summary .price del {
    	font-size: 18px;
    }
    .woocommerce-product-details__short-description {
    	font-size: 16px;
    	margin-bottom: 20px;
    }
	.singleProduct-images:before, .singleProductProcess-video:before {
		width: 1000px;
		height: 990px;
		top: -190px;
		left: -170px;
	}
	.singleProductImagesMain-swiper.swiper {
		margin-bottom: 30px;
	}
	.singleProductAdvantages-item {
		gap: 20px;
	}
	.singleProductAdvantages-item__image {
		flex: 0 0 60px;
		max-width: 60px;
	}
	.singleProductProcess-video {
		flex: 0 0 60%;
		max-width: 60%;
		height: 381px;
	}
	.singleProductProcess-wrap {
		gap: 40px;
	}
	.singleProductProcess-content {
		flex: 0 0 calc(40% - 40px);
		max-width: calc(40% - 40px);
	}
	.singleProductProcess-section {
		padding-bottom: 20px;
	}

	.pageCart-left {
		flex: 0 0 calc(73% - 20px);
		max-width: calc(73% - 20px);
	}
	.pageCart-right {
		flex: 0 0 calc(27% - 20px);
		max-width: calc(27% - 20px);
	}

	.pageCartTableProducts .coupon {
		max-width: 500px;
	}
	.pageCartTableProducts th {
		font-size: 16px;
	}
	.pageCartTotals > h2 {
		font-size: 20px;
	}
	.cart_totals table tr.cart-subtotal td {
		font-size: 18px;
	}
	.woocommerce-shipping-methods, .wc_payment_methods {
		font-size: 16px;
	}
	.cart_totals table tr.order-total td {
		font-size: 20px;
	}

	.woocommerce-billing-fields > h3, .wcus-checkout-fields > h3, .woocommerce-additional-fields > h3, #order_review_heading, .woocommerce-checkout-payment > h3, .pageLogin-left > h2, .pageLogin-right > h2, .woocommerce-Address-title > h3, .woocommerce-MyAccount-content form > h3, .woocommerce-order-details__title, .woocommerce-column__title, .woocommerce-Address-title h2,
#custom-options h3 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.woocommerce-checkout-review-order-table tbody td {
		font-size: 16px;
	}
	.woocommerce-checkout-review-order-table tbody td:last-child {
		font-size: 18px;
	}
	.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
		font-size: 18px;
	}
	.woocommerce-checkout-review-order-table tfoot tr.order-total td {
		font-size: 22px;
	}

	.woocommerce-MyAccount-navigation {
		width: 220px;
	}
	.woocommerce-MyAccount-navigation ul li a {
		font-size: 16px;
	}
	.woocommerce-MyAccount-content {
		width: calc(100% - 220px - 40px);
	}
	.woocommerce-orders-table, .woocommerce-table--order-details {
		font-size: 16px;
	}
	.woocommerce-orders-table th, .woocommerce-orders-table td, .woocommerce-table--order-details th, .woocommerce-table--order-details td {
		padding: 8px 16px;
	}

	.woocommerce-thankyou-order-received {
		font-size: 20px;
	}
	.woocommerce-thankyou-order-details {
		margin-bottom: 30px;
		padding: 20px;
		gap: 16px;
		font-size: 16px;
	}

	.woocommerce-customer-details {
		padding: 20px;
		font-size: 16px;
	}
	.singleProduct-images {
		position: relative;
		flex: 0 0 456px;
		max-width: 456px;
		z-index: 1;
	}
	.singleProductImagesMain-item__image {
		height: 456px;
	}
	.singleProductImagesMain-item__image {
		width: 456px;
		height: 456px;
	}
	.singleProduct-images:before, .singleProductProcess-video:before {
        width: 900px;
        height: 830px;
        top: -159px;
        left: -161px;
    }
}





@media (max-width: 1199px) {
	:root {
		--container: 910px;
	}
	body {
		font-size: 16px;
	}

	h1,
	.heading h2 {
		font-size: 48px;
	}
	h2,
	.page-title {
		font-size: 40px;
	}
	h3 {
		font-size: 34px;
	}
	h4 {
		font-size: 28px;
	}
	h5,
	.reviews-rating-value {
		font-size: 24px;
	}
	h6,
	.heading p:first-child,
	.reviews-heading,
	.reviews-item__title,
	.blog-item__title {
		font-size: 18px;
	}
	.btn.btn-lg span {
		padding: 15px 35px;
	}



	.page-content > h1 {
		font-size: 40px;
	}
	.page-content > h2 {
		font-size: 36px;
	}
	.page-content > h3 {
		font-size: 32px;
	}
	.page-content > h4 {
		font-size: 28px;
	}
	.page-content > h5 {
		font-size: 24px;
	}
	.page-content > h6 {
		font-size: 20px;
	}

	.main-menu .menu-item-513{
		display:none
	}

    .bodylang_fr .hero-label-primary {
        font-size: 21px;
    }
	.main-menu {
		font-size: 15px;
	}
	.hero-heading h1 {
        font-size: 46px;
    }
    .hero-description {
    	font-size: 17px;
    }
    .hero-section:before {
    	bottom: -255px;
    }
    .process-video {
    	margin-bottom: 90px;
    }
    .process-items {
    	gap: 30px;
    }
    .process-item__title {
    	font-size: 20px;
    }
    .process-item__content {
    	font-size: 16px;
    }
    .productionTabs-nav {
    	gap: 30px;
    }
    .productionTabs-nav li a {
    	font-size: 18px;
    }
    .productionTabs-nav li a span {
    	padding: 10px 35px;
    }
    .production-video:before {
        width: 895px;
        height: 930px;
        top: -237px;
        left: -341px;
    }
    .production-right {
    	gap: 24px;
    }
	.production-heading,
	.production-content {
		font-size: 16px;
	}
	.testimonials-item__video:before {
		width: 480px;
		height: 650px;
		top: -190px;
		left: -137px;
	}
    .testimonials-item__name {
    	font-size: 20px;
    }
    .testimonials-item__profession {
    	font-size: 16px;
    }
    .header-wrap {
    	gap: 30px;
    }
	.singleProduct-images:before, .singleProductProcess-video:before {
		width: 664px;
		height: 589px;
		top: -13px;
		left: -112px;
	}
	.singleProduct-action-before-text {
		margin-left: 0;
		margin-bottom: 10px;
	}


	.pageCartTableProducts .coupon {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.pageCartTableProducts .coupon ~ button {
		float: none;
		width: 100%;
	}
	.pageCart-wrap {
		flex-direction: column;
	}
	.pageCart-left,
	.pageCart-right {
		flex: auto;
		max-width: 100%;
	}
	
		.hero-label-fixed.hero-label {
		left:auto;
		right: 50px;
	}
}




@media (max-width: 991px) {
	:root {
		--container: 690px;
	}
	body {
		font-size: 16px;
	}

	h1,
	.heading h2 {
		font-size: 48px;
	}
	h2,
	.page-title {
		font-size: 40px;
	}
	h3 {
		font-size: 34px;
	}
	h4 {
		font-size: 28px;
	}
	h5,
	.reviews-rating-value {
		font-size: 24px;
	}
	h6,
	.heading p:first-child,
	.reviews-heading,
	.reviews-item__title,
	.blog-item__title {
		font-size: 18px;
	}
	.header-wrap {
		height: 80px;
		padding: 15px 0;
		gap: 20px;
	}
	.main-menu,
	.header-button,
	.header .lang-menu {
		display: none;
	}
	.header-toggle {
		order: 1;
	}
	.header-logo {
		order: 2;
	}
	.header-phone {
		order: 3;
		font-size: 0;
		gap: 0;
	}
	.header-cart {
		order: 4;
	}
	.lang-menu {
		font-size: 16px;
		margin-bottom: 30px;
		position: relative;
		z-index: 2;
	}
	.header-phone:before,
	.header-cart:before,
	.lang-menu > li > a:before {
		flex: 0 0 30px;
		max-width: 30px;
		width: 30px;
		height: 30px;
	}
	.lang-menu > li {
		padding: 0;
	}


	.header-toggle button {
		-webkit-mask-image: url(images/menu.svg);
		mask-image: url(images/menu.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background: var(--black);
	}
	.header-phone:before {
		-webkit-mask-image: url(images/phone-call.svg);
		mask-image: url(images/phone-call.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background: var(--black);
	}
	.header-cart:before {
		-webkit-mask-image: url(images/shopping-bag.svg);
		mask-image: url(images/shopping-bag.svg);
		-webkit-mask-size: contain;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		background: var(--black);
	}



	.marquee-swiper .swiper-wrapper {
		gap: 30px;
	}
	.marquee-item {
		font-size: 14px;
	}
	.hero-heading {
		margin-bottom: 30px;
	}
	.hero-heading h1 {
        font-size: 42px;
    }
	.hero-description {
		font-size: 20px;
	}
	.advantages-item {
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
	}
	.process-video:before {
        width: 1240px;
        height: 970px;
        top: -175px;
        left: -280px;
    }
    .production-play, .singleProductProcess-video-play, .process-video-play {
        flex: 0 0 100px;
        max-width: 100px;
        height: 100px;
    }
	.production-video:before {
		width: 840px;
		height: 690px;
		top: -175px;
		left: -340px;
	}
	.advantages-section {
		padding-top: 80px;
	}
	.testimonials-item__video {
		height: calc((var(--container) - 20px * 2) / 3 / .78);	
	}
	.home .blog-items {
		justify-content: center;
	}
	.blog-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.blog-item__image {
		height: calc((var(--container) - 30px) / 2 / 1.3649);
	}
	.footer-wrap {
		flex-wrap: wrap;
		gap: 48px 30px;
	}
	.footer-widget {
		flex: 0 0 calc((100% / 3) - (2 * 30px / 3));
		max-width: calc((100% / 3) - (2 * 30px / 3));
	}
	.footer-widget:nth-child(1) {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.footer-logo {
		text-align: center;
	}
	.footer-email {
		margin-bottom: 20px;
	}
	.page-body {
		padding-bottom: 80px;
	}
	.error-404-number {
        font-size: 200px;
    }
    .singleProduct-images {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .singleProduct-summary {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .singleProductImagesOther-item__image {
		height: calc(((var(--container) - 180px) - 20px * 3) / 4 / 1.3636);
	}
	button.swiper-navigation.singleProductImagesMain-navigation {
		bottom: calc(((var(--container) - 180px) - 20px * 3) / 4 / 1.3636 / 2 - 30px);
	}
	.singleProductProcess-wrap {
		flex-direction: column;
	}
	.singleProductProcess-video {
		flex: auto;
		max-width: 100%;
		height: 380px;
	}
	.singleProductProcess-content {
		flex: auto;
		max-width: 100%;
	}
	.singleProduct-images:before, 
	.singleProductProcess-video:before,
	.process-video:before,
	.production-video:before {
		display: none;
	}

	.cta-section {
		min-height: auto;
	}


	.pageCheckout-left,
	.pageCheckout-right,
	.pageLogin-left,
	.pageLogin-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.pageCartTotals > h2,
	.woocommerce-billing-fields > h3, .wcus-checkout-fields > h3, .woocommerce-additional-fields > h3, #order_review_heading, .woocommerce-checkout-payment > h3, .pageLogin-left > h2, .pageLogin-right > h2, .woocommerce-Address-title > h3, .woocommerce-MyAccount-content form > h3, .woocommerce-order-details__title, .woocommerce-column__title, .woocommerce-Address-title h2,
#custom-options h3 {
		font-size: 20px;
	}
	.woocommerce-billing-fields__field-wrapper,
	.woocommerce-shipping-fields__field-wrapper {
		gap: 16px;
	}
	.form-row-first, .form-row-last {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-row > label {
		margin-bottom: 4px;
	}


	.woocommerce-thankyou-order-details {
		flex-direction: column;
	}


	.wc-empty-cart-message {
		margin-bottom: 30px;
	}

	.wc-block-components-notice-banner, .woocommerce-message, .woocommerce-NoticeGroup, .woocommerce-info:not(ul), .woocommerce-error:not(ul), .woocommerce-notices-wrapper > .woocommerce-error {
		font-size: 16px;
		margin-bottom: 30px !important;
		padding: 20px;
	}


	.woocommerce-MyAccount-navigation {
		width: 100%;
		float: none;
		margin-bottom: 30px;
	}
	.woocommerce-MyAccount-content {
		width: 100%;
		float: none;
		margin: 0;
	}
	.woocommerce-MyAccount-navigation ul {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	    display: flex;
	    flex-wrap: wrap;
	    gap: 10px 16px;
	}
	.woocommerce-MyAccount-navigation ul li {
		margin-bottom: 0px;
	}
	.woocommerce-MyAccount-navigation ul li a {
		min-height: 44px;
	}

	.pageLogin-left, .pageLogin-right {
		padding: 30px 20px;
	}
	.woocommerce-form-login, .woocommerce-form-register, .woocommerce-ResetPassword {
		gap: 16px;
	}


	.singleBlog-image {
		float: none;
		width: 100%;
		margin: 0 0 30px;
	}
	


    .woocommerce-pagination, .navigation.pagination {
    	margin-top: 40px;
    }

	.header-email{
		display:none;
	}
	.contact__item h2 {
		font-size: 28px;
	}
	.header-email,.header-account{
		order:2
	}

	.singleProduct-section {
        padding-top: 40px;
    }
	.singleProductImagesMain-item__image {
        width: 100%;
        height: 456px;
    }
}


@media (max-width: 991px) and (min-width: 768px) {
	.hero-label {
		width: 204px;
		height: 172px;
		top: 42px;
	}
	.hero-label-inner {
		width: 154px;
		height: 154px;
	}
	.hero-label-primary {
		font-size: 24px;
	}
	.hero-label-primary-2 {
		font-size: 20px;
	}
	.bodylang_fr .hero-label-primary{
		font-size: 20px;
	} 
	.bodylang_fr .hero-label-primary-2 {
        font-size: 18px;
    }
	.hero-label-secondary {
		font-size: 12px;
	}
	.hero-button {
		flex: 0 0 35%;
		max-width: 35%;
		margin-right: .5%;
	}
	.hero-button .btn.btn-lg {
		font-size: 16px;
	}
	.hero-button .btn.btn-lg span {
		padding-left: 24px;
		padding-right: 24px;
	}
}




@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap:20px;
	}
	body {
		font-size: 16px;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: 30px 0 20px;
	}
	p, ul, ol, blockquote {
		margin-bottom: 20px;
	}
	h1,
	.heading h2 {
		font-size: 36px;
	}
	h2,
	.page-title {
		font-size: 32px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 24px;
	}
	h5,
	.reviews-rating-value {
		font-size: 20px;
	}
	h6,
	.reviews-heading,
	.reviews-item__title,
	.blog-item__title {
		font-size: 18px;
	}


	.page-content > h1 {
		font-size: 32px;
	}
	.page-content > h2 {
		font-size: 28px;
	}
	.page-content > h3 {
		font-size: 24px;
	}
	.page-content > h4 {
		font-size: 22px;
	}
	.page-content > h5 {
		font-size: 20px;
	}
	.page-content > h6 {
		font-size: 18px;
	}


	.heading p:first-child {
		font-size: 16px;
	}
	.hero-wrap {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.hero-heading {
		order: 1;
		margin-bottom: 0px;
	}
	.hero-image {
		order: 2;
		flex: auto;
		max-width: 100%;
		height: 300px;
	}
	
	.hero-image video{
		width:350px;
		height:350px;
	}
	.hero-image img {
		max-height: 360px;
	}
	
	.hero-image video{
		width:350px;
		height:350px;
	}
	.hero-description {
		order: 3;
		flex: auto;
		max-width: 100%;
		margin: 0;
		text-align: center;
	}
	.hero-button {
		order: 4;
		flex: auto;
		max-width: 100%;
		margin: 0;
		margin: 15px 0;
	}
	.hero-label {
		order: 5;
		position: relative;
		top: 0;
		right: 30px;
	}
	.hero-section:before {
		bottom: 0px;
		background-size: 120%;
	}
	.hero-section:before {
		bottom: 100px;
	}
	.process-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.reviews-section:before {
		top: -40%;
	}
	.production-wrap {
		flex-direction: column;
		gap: 30px;
	}
	.production-left,
	.production-right {
		flex: auto;
		max-width: 100%;
		padding: 0;
	}
	.production-video {
		height: var(--container);
	}
	.process-section {
		padding-top: 80px;
	}
	.reviews-section {
		padding: 80px 0;
	}
	.process-video {
		margin-bottom: 50px;
		max-height: 275px;
	}
	.production-section {
		padding: 80px 0 0;
	}
	.partners-section,
	.testimonials-section {
		padding-top: 80px;
	}
	.testimonials-item__video {
        height: calc((var(--container) - 20px) / 2 / .78);
    }
    .testimonials-item__video:before {
        width: 555px;
        height: 760px;
        top: -222px;
        left: -153px;
    }
    .singleProductImagesOther-item__image {
		height: calc(((var(--container) - 180px) - 20px * 2) / 3 / 1.3636);
	}
	button.swiper-navigation.singleProductImagesMain-navigation {
		bottom: calc(((var(--container) - 180px) - 20px * 2) / 3 / 1.3636 / 2 - 30px);
	}
	.singleProduct-section {
		padding-top: 40px;
	}
	.header-wrap {
		height: 60px;
		gap: 16px;
	}
	.header-logo img {
		max-height: 30px;
	}
	.footer-wrap {
		gap: 36px 20px;
	}
	.footer-widget {
		flex: 0 0 calc((100% / 2) - (20px / 2));
		max-width: calc((100% / 2) - (20px / 2));
	}
    .wc-block-components-notice-banner, .woocommerce-message, .woocommerce-NoticeGroup, .woocommerce-info:not(ul), .woocommerce-error:not(ul), .woocommerce-notices-wrapper > .woocommerce-error {
	    padding: 10px;
	    font-size: 16px;
	}



	.pageCartTableProducts,
	.woocommerce-orders-table {
		display: block;
		width: 100%;
	}
	.pageCartTableProducts thead,
	.woocommerce-orders-table thead {
		display: none;
	}
	.pageCartTableProducts tbody,
	.woocommerce-orders-table tbody {
		display: block;
		width: 100%;
	}
	.pageCartTableProducts tbody tr {
		display: flex;
	}
	.pageCartTableProducts tbody tr.cart_item,
	.woocommerce-orders-table tbody tr {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		border: 1px solid rgba(0, 0, 0, .05);
		padding: 12px;
		margin-bottom: 12px;
	}
	.pageCartTableProducts tbody tr td,
	.woocommerce-orders-table tbody td {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
		padding: 0;
		border: none;
		background: none;
	}
	.woocommerce-orders-table tbody td {
		margin-bottom: 5px;
	}
	.woocommerce-orders-table tbody td:last-child {
		margin-bottom: 0;
	}
	.woocommerce-orders-table tbody td:before {
		content: attr(data-title) ":";
		font-weight: 600;
	}
	.woocommerce-orders-table__cell-order-actions:before {
		display: none;
	}
	.pageCartTableProducts tbody td.product-thumbnail {
		flex: 0 0 60px;
		max-width: 60px;
		width: 60px;
		margin-bottom: 10px;
	}
	.pageCartTableProducts-image {
		width: 54px;
		height: 54px;
	}
	.pageCartTableProducts-image {
		margin: auto;
	}
	.pageCartTableProducts tbody td.product-name {
		flex: 0 0 calc(100% - 60px);
		max-width: calc(100% - 60px);
		padding-left: 20px;
		margin-bottom: 10px;
	}
	.pageCartTableProducts .qib-container:not(#qib_id):not(#qib_id) {
		margin: 0;
	}
	.pageCartTableProducts tbody td.product-quantity {
		flex: 0 0 140px;
		max-width: 140px;
	}
	.pageCartTableProducts tbody td.product-subtotal {
		flex: 0 0 calc(100% - 140px - 50px);
		max-width: calc(100% - 140px - 50px);
	}
	.pageCartTableProducts tbody td.product-remove {
		flex: 0 0 50px;
		max-width: 50px;
	}
	.pageCartTableProducts .product-remove a {
		margin-left: auto;
	}
	.pageCartTableProducts tbody td.actions {
		display: flex;
		flex-direction: column-reverse;
		gap: 30px;
	}
	.woocommerce-order .address {
		margin: var(--gap) calc(var(--gap) / 2) calc(var(--gap) * -1);
	}
	.pageCartTableProducts .coupon {
		float: none;
		max-width: 100%;
		margin-bottom: 0;
		flex-direction: column;
		gap: 8px;
	}
	.pageCartTableProducts .coupon button {
		margin-left: 0;
	}
	.form-row.place-order .btn {
		width: 100%;
	}

	.pageCheckout-right {
		padding: 24px;
	}
	.woocommerce-checkout-review-order-table {
		margin-bottom: 20px;
	}
	.woocommerce-checkout-review-order-table tbody td {
		padding: 12px 10px;
	}
	.woocommerce-checkout-review-order-table tfoot tr {
		padding: 12px 0;
	}
	.faq-item__head {
		font-size: 18px;
	}
	
	.woocommerce-thankyou-order-received {
        font-size: 18px;
    }
    .woocommerce-thankyou-order-details {
    	gap: 10px;
    }
    ul.page-numbers, .nav-links {
    	gap: 8px;
    }
    ul.page-numbers li a, ul.page-numbers li span, .nav-links .page-numbers:not(.dots) {
    	min-width: 42px;
    	height: 42px;
    }

	.singleProductImagesMain-item__image {
        height: auto;
        max-height: 420px;
    }

}








@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 30px);
	}

	.singleProductImagesMain-item__image {
        height: auto;
        max-height: 400px;
    }
	body {
		font-size: 16px;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: 30px 0 20px;
	}
	p, ul, ol, blockquote {
		margin-bottom: 20px;
	}
	    .hero-heading h1 {
        font-size: 34px;
    }
	h1 {
		font-size: 36px;
	}
	h2,
	.heading h2,
	.page-title {
		font-size: 32px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 24px;
	}
	h5,
	.reviews-rating-value {
		font-size: 20px;
	}
	h6,
	.reviews-item__title,
	.blog-item__title {
		font-size: 18px;
	}
	.header-email,.header-account, .hero-label-fixed.hero-label{
		display:none
	}
	.header-wrap {
		gap: 16px;
	}
	.header-cart {
		font-size: 12px;
	}
	.advantages-items {
		gap: 40px 16px;
	}
	.advantages-item {
		flex: 0 0 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.advantages-item__image {
		height: 56px;
		margin-bottom: 20px;
	}
	.advantages-item__image img {
		max-height: 56px;
	}
	.advantages-item__title {
		font-size: 18px;
	}
	.advantages-item__text {
		font-size: 14px;
	}
	.production-play, .singleProductProcess-video-play, .process-video-play {
		flex: 0 0 80px;
		max-width: 80px;
		height: 80px;
	}
	.process-item__wrap {
		gap: 20px;
	}
	.process-item__image {
		flex: 0 0 56px;
		max-width: 56px;
	}
	.process-item__info {
		max-width: calc(100% - 56px - 20px);
	}
	.process-item__title {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.process-item__content {
		font-size: 14px;
	}
	.reviews-head {
		margin-bottom: 20px;
		gap: 20px;
	}
	.reviews-logo {
		flex: 0 0 48px;
		max-width: 48px;
	}
	button.swiper-navigation {
		width: 48px;
		height: 48px;
		top: calc(50% - 24px);
	}
	.reviews-carousel,
	.partners-carousel,
.express-carousel {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 20px 16px;
		padding: 0;
	}
	.reviews-swiper,
	.partners-swiper {
		flex: 0 0 100%;
		max-width: 100%;
	}
	button.swiper-navigation {
		order: 2;
		position: relative;
		top: 0;
		transform: none;
		z-index: 1;
	}
	.reviews-item__wrap {
		padding: 20px;
	}
	.reviews-item__initials {
		width: 56px;
		height: 56px;
	}
	.reviews-heading {
		font-size: 16px;
		margin-bottom: 15px;
	}
	.reviews-item__rating {
		margin-bottom: 15px;
	}
	.reviews-item__text {
		font-size: 14px;
	}
	.productionTabs-nav {
		gap: 16px;
		margin-bottom: 30px;
	}
	.productionTabs-nav li a {
        font-size: 16px;
        min-height: 54px;
    }
	.productionTabs-nav li a span {
		padding: 10px 24px;
	}
	.partners-item__image {
		height: 36px;
	}
	.partners-item__image img {
		max-height: 36px;
	}
	.heading br {
		display: none;
	}
	.testimonials-item__video {
        height: calc(var(--container) / .78);
    }
    .testimonials-item__video:before {
    	display: none;
    }
    .testimonials-nav {
    	gap: 16px;
    	margin-top: 20px;
    }
    .testimonials-navigation.swiper-navigation {
    	flex: 0 0 48px;
    	max-width: 48px;
    }
	.cta-section .heading {
		margin-bottom: 0;
	}
    .cta-button {
    	padding-top: 18px;
    }
    .cta-button:before {
        width: 480px;
        height: 143px;
        left: calc(50% - 480px / 2);
    }
    .cta-button a {
        font-size: 18px;
        width: 310px;
        height: 72px;
        padding-right: 55px;
    }
    .cta-button a:after {
    	width: 55px;
    	height: 55px;
    }
	.blog-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.blog-item__image {
		height: calc(var(--container) / 1.3649);
		margin-bottom: 20px;
	}
	.testimonials-item__name {
		font-size: 22px;
	}
	.blog-item__title {
		margin-bottom: 16px;
	}
	.blog-item__excerpt {
		font-size: 14px;
	}
	.error-404-number {
        font-size: 150px;
    }
    .singleProductImagesOther-item__image {
		height: calc(((var(--container) - 54px) - 10px * 2) / 3 / 1.3636);
	}
    button.swiper-navigation.singleProductImagesMain-navigation {
    	width: 16px;
    	height: 16px;
    	background: none;
        bottom: calc(((var(--container) - 54px) - 10px * 2) / 3 / 1.3636 / 2 - 8px);
        position: absolute;
    }
    button.swiper-navigation.singleProductImagesMain-navigation:hover:before {
    	background-color: var(--pink);
    }
    .singleProductImagesOther-swiper {
    	width: calc(100% - 54px);
    }
    .singleProductImagesMain-swiper.swiper {
    	margin-bottom: 10px;
    }
    .singleProduct-summary .price {
    	font-size: 24px;
    }
    .singleProduct-summary .price del {
        font-size: 16px;
    }
	.footer {
		padding: 30px 0 40px;
	}
	    .singleProductProcess-video {
        height: 283px;
    }

	.woocommerce-MyAccount-navigation ul {
		flex-wrap: nowrap;
		overflow: auto;
		gap: 8px;
	}
	.woocommerce-MyAccount-navigation ul li {
		flex: 0 0 auto;
	}
	.contact__item h2 {
        font-size: 24px;
    }
	.express-order-item-step {
		margin-bottom:10px;
		position:relative;
		font-size: 50px;
		height: 50px;
	}
	.express-order-item {
		padding-left: 0;
	}
	.banner-form {
    padding: 42px 0;
	}
	.banner-form .heading :is(h2, h3){
        font-size: 32px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	input[type="text"], input[type="email"], input[type="tel"], input[type="password"], select, textarea {
		font-size: 15px;
		padding: 10px 18px;
	}
    .process-video {
        margin-bottom: 50px;
        max-height: 200px;
    }
}

@media screen and (max-width:450px){
	 .singleProductProcess-video {
        height: 219px;
    }
}

.variation{
	display:none !important
}