/*
Theme Name: labelprom
Theme URI: http://example.com
Description: Базовая тема для WordPress
Version: 1.0
Author: Your Name
Text Domain: mytheme
*/

/* Базовые сбросы стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('/wp-content/themes/labelprom/fonts/Futura/FuturaPTBook.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('/wp-content/themes/labelprom/fonts/Futura/FuturaPTDemi.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/wp-content/themes/labelprom/fonts/Orbitron/Orbitron.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6, button {
	font-family: 'FuturaPT', sans-serif;
	font-weight: 700;
}

a {
	text-decoration: none;
	color: #FFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    background: #000;
}

button {
	cursor: pointer;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.site-header {
	margin-top: 17px;
    padding: 8px 0;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
.custom-logo {
	width: 72px;
	height: 72px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.desktop-nav {
	flex: 1;
	display: flex;
    justify-content: flex-start;
	
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 33px;
}

.main-menu a {
    text-decoration: none;
    color: #FFF;
	letter-spacing: 8%;
}
.site-branding {
    flex: 0 0 auto;
}

.header-contact {
	gap: 33px;
	flex: 1;
    display: flex;
    justify-content: flex-end;
}
.header-contact a {
	font-size: 15px;
	text-decoration: none;
	color: #FFF;
	line-height: 1.5;
}
.header-contact div {
	display: flex;
	flex-direction: column;
}

.banner {
    padding: 155px 0 125px;
	position: relative;
}

.banner-wrapper {
	display: flex;
    align-items: center;
    position: relative;
	justify-content: space-between;
}

.banner-img {
    flex: 0 0 70%;
    position: relative;
    z-index: 1;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-menu li {
    position: relative;
}
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children::after {
    content: '';
    position: absolute;
    bottom: -36px;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 999;
}
.sub-menu {
    position: absolute;
    top: calc(100% + 36px);
    left: 0;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
	background-color: #000;
	border: 1px solid #FFF;
	border-radius: 13px;
	min-width: 250px;
}

.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 15px;
}
.sub-menu li:hover {
	font-weight: 600;
}

.sub-menu li a {
    padding: 8px 0;
    white-space: nowrap;
    color: #FFF;
    transition: color 0.3s ease;
}

.menu-item-has-children > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
    color: #999;
}

.current-menu-ancestor > a {
    padding: 8px 0;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	font-weight: 800;
}
.current-menu-item > a {
	font-weight: 800;
}

.banner-img img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    flex: 0 0 55%;
    position: relative;
    z-index: 3;
    margin-left: -25%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 60px;
}
.banner-text::before {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 40%;
    transform: translateX(-50%);
    width: 580px;
    height: 432px;
    background: #000;
    border-radius: 50%;
    filter: blur(46.6px);
    z-index: -1;
    pointer-events: none;
}

.banner-text h1 {
    font-size: 48px;
    max-width: 651px;
    margin: 0;
	text-align: right;
	line-height: 1.1;
	letter-spacing: 1.44px;
}

.banner-text p {
    margin: 60px 0 47px;
    font-weight: 300;
    font-size: 20px;
	text-align: right;
	max-width: 461px;
}

.rect-btn {
	border-radius: 8px;
	background-color: #141414;
	color: #FFF;
	font-size: 36px;
	font-weight: 400;
	cursor: pointer;
	line-height: 1.218;
	padding: 8px 31.13px;
	transition: all 0.3s ease;
	width: fit-content;
}
.rect-btn:hover {
	transform: translateY(-3px);
}

.gradient-btn {
	position: relative;
	border: none;
	z-index: 1;
}
.gradient-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,  #FFF 0%,  #515151 90%);
    border-radius: inherit;
    z-index: -1;
}

.gradient-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #141414;
    border-radius: inherit;
    z-index: -1;
}
.about {
	position: relative;
}
.about::before{
	content:'';
	display: block;
	background: url('img/big-wave-2.webp');
	position: absolute;
	top: -180px;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 2;
}
.sec-title {
	font-size: 64px;
	font-weight: 400;
	text-align: center;
}

.subtitle {
	margin: 0 auto;
	margin-top: 100px;
	margin-right: 35px;
	margin-left: 35px;
	z-index: 1;
	padding: 20px;
	font-size: 20px;
	letter-spacing: 1.6px;
  	max-width: 586px;
	width: 100%;
  	height: auto;
  	background:
		/* верх (две части) */
		linear-gradient(white, white) top left / 30% 2px no-repeat,
		linear-gradient(white, white) top right / 20% 2px no-repeat,

		/* низ (две части) */
		linear-gradient(white, white) bottom left / 30% 2px no-repeat,
		linear-gradient(white, white) bottom center / 15% 2px no-repeat,
		linear-gradient(white, white) bottom right / 30% 2px no-repeat,
	
		/* левый (две части) */
		linear-gradient(white, white) top left / 2px 10% no-repeat,
		linear-gradient(white, white) bottom left / 2px 60% no-repeat,
		
		/* правый */
		linear-gradient(white, white) top right / 2px 100% no-repeat,
		linear-gradient(white, white) bottom right / 2px 100% no-repeat;

}
.subtitle-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.subtitle-wrap::before,
.subtitle-wrap::after {
    content: '';
    height: 2px;
    flex: 1; /* ключевая штука */
    min-width: 40px; /* чтобы не исчезали полностью */
	margin-top: 115px;
}

.subtitle-wrap::before {
    background: linear-gradient(to left, #FFF, transparent);
}

.subtitle-wrap::after {
    background: linear-gradient(to right, #FFF, transparent);
}
.services-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
	max-width: 953px;
    margin: 160px auto 0;
}
.card-title {
  	position: absolute;
  	top: -17px;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	padding: 0 15px;
  	background: black;
  	color: white;
	min-width: 350px;
}
.card-title h3 {
	font-size: 32px;
	letter-spacing: 2.56px;
	text-align: center;
	line-height: 1;
}
.card {
	border: 1px solid white;
	position: relative;
	width: 100%;
	height: auto;
	padding: 40px 20px 20px;
	z-index: 1;
}

.card::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 50px;
}

.card:nth-child(odd)::after {
    left: 100%;
    margin-left: 0;
	 background: linear-gradient(to right, #FFF, transparent);
}

.card:nth-child(even)::after {
    right: 100%;
    margin-right: 0;
	background: linear-gradient(to left, #FFF, transparent);
}

.card::before {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: clamp(40px, 10vw, 240px);
}

.card:nth-child(odd)::before {
    right: 100%;
    margin-right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.card:nth-child(even)::before {
    left: 100%;
    margin-left: 0;
    background: linear-gradient(to right, #fff, transparent);
}


.advantages {
	background-image: url('img/six.webp');
	background-repeat: no-repeat;
	background-size: contain;
	padding: 200px 0;
	position: relative;
}
.advantages::before {
	content: '';
	background-image: url('img/why-bg.webp');
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	width: 100%;
	height: 400px;
	background-position: center;
}
.wrapper-adv {
	display: grid;
  	grid-template-columns: 1fr 1fr 1fr;
}
.adv-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
}
.adv-item img {
	height: auto;
	width:auto;
	align-self: flex-start;
    flex-shrink: 0; 
	margin: 0 auto 11px;
}
.adv-img {
	height: 110px;
}
.adv-item h3 {
	max-width: 300px;
	font-size: 32px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	text-align: center;
}
.offer {
	background-image: url('img/offer-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 90px 0;
	position: relative;
}

.offer-wrapper {
	display: flex;
	gap: 71px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.offer-item:nth-child(1),
.offer-item:nth-child(2),
.offer-item:nth-child(3) {
    width: calc((100% - (71px * 2)) / 3);
}

.offer-item:nth-child(4),
.offer-item:nth-child(5) {
    width: calc((100% - (71px * 1)) / 2);
}
.offer-item {
  	padding: 28px 20px 24px;
  	border-radius: 20px;
  	background: rgba(0,0,0,0.63);
  	display: flex;
  	flex-direction: column;
  	height: 100%;
  	justify-content: flex-end;
  	position: relative;
}

.offer-item::before {
  	content: '';
  	position: absolute;
  	inset: 0;
  	border-radius: inherit;
  	padding: 2px;
  	background: linear-gradient(135deg, #FFF 0%, #515151 90%);
  	-webkit-mask: 
    	linear-gradient(#fff 0 0) content-box, 
    	linear-gradient(#fff 0 0);
  	mask: 
    	linear-gradient(#fff 0 0) content-box, 
    	linear-gradient(#fff 0 0);
  	-webkit-mask-composite: xor;
  	mask-composite: exclude;
  	pointer-events: none;
}
.offer-item h3 {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: -1.08px;
	text-align: center;
}
.offer-item p {
	font-size: 20px;
	flex: 1;
	text-align: center;
	margin-top: 41px;
}
.offer-item a {
	margin-top: auto;
	border-radius: 40px;
	font-size: 20px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 13px;
	background: #000;
	margin-left: auto;
}
.more-btn svg path {
    transition: stroke 0.3s ease;
}

.more-btn:hover svg path {
    stroke: #000000;
}
.offer-wrapper-sec .offer-item {
	min-height: 261px;
}

.site-footer {
    padding: 31px 0 74px;
    text-align: center;
	border-top: 1px solid #585858;
}
.footer-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}
.footer-navigation .main-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 34px;
	align-items: flex-start;
}
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
	align-items: flex-start;
}
.footer-form h3 {
	font-size: 24px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin-bottom: 7px;
}
.footer-form p:not(:last-of-type) {
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 26px;
}
.footer-form .wpcf7-form {
	margin-top: 33px;
}
.footer-form input {
  	background-color: #000;
  	border: none;
  	border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #FFFFFF 0%, #353535 100%);
    border-image-slice: 1;
  	padding: 5px;
	color: #FFF;
	max-width: 460px;
    width: 100%;
}
.footer-form input:focus {
	outline: none;
}

.button-round {
  	position: relative;
  	border: none;
  	background: #141414;
  	padding: 10px 20px;
  	border-radius: 8px;
  	border: 1px solid transparent;
  	background-clip: padding-box;
	color: #FFF;
	font-weight: 400;
}
.button-round:hover {
	background: #aaa;
}
.button-round::before {
  	content: '';
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	z-index: -2;
  	margin: -1px;
  	border-radius: 8px;
  	background: linear-gradient(90deg, #ffffff, #515151);
}

.more-btn{
  	position: relative;
  	border: none;
  	background: #000;
  	padding: 10px 20px;
  	border-radius: 40px;
  	border: 1px solid transparent;
  	background-clip: padding-box;
	color: #FFF;
	font-weight: 400;
	font-size: 20px;
}

.more-btn::before {
  	content: '';
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	z-index: -1;
  	margin: -3px;
  	border-radius: 40px;
  	background: linear-gradient(90deg, #ffffff, #515151);
	transition: all 0.3s ease;
}
.more-btn:hover {
	background-color: #FFF;
	color: #000;
	font-weight: 500;
}
.offer-wrapper .offer-item {
	min-height: 353px;
}
.wpcf7-spinner {
	display: none;
}
.footer-site-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.offer h2 {
	font-size: 64px;
	text-align: center;
	margin-bottom: 71.46px;
}
.brand-item {
	height: 175px;
	border-radius: 5px;
	background-color: #0C0A0A;
	border: 1px solid #2B2B2B;
	display: flex;
	justify-content: center;
	align-items: center;
}
.brand-item:hover {
	background-color: #595959;
}
.brand-item img {
	width: auto!important;
	height: auto;
	object-fit: contain;
}
.brands {
	padding: 49px 26px 68px;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.brands-carousel {
	margin-top: 74px;
}
.brands h2 {
	font-size: 64px;
	font-weight: 400;
}
.brands p {
	font-size: 24px;
	max-width: 679px;
	line-height: 120%;
	text-align: center;
}
.slider-progress {
    width: 102px;
    height: 20px;
    background: #000;
    border-radius: 24px;
    position: relative;
    margin: 20px auto;
	border: 1px solid #313131;
}

.slider-progress-circle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 4px;
    transform: translate(0, -50%);
    transition: left 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

.burger-icon {
    width: 25px;
    height: 20px;
    position: relative;
    display: block;
}

.burger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transition: all 0.3s ease;
}

.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 9px; }
.burger-icon span:nth-child(3) { top: 18px; }

.mobile-menu-toggle.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-toggle.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-container {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background-color: #000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 60px 20px 30px;
    z-index: 2001;
}

.mobile-nav-overlay.active .mobile-nav-container {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #FFF;
    padding: 5px 10px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #FFF;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-menu .sub-menu {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    display: none;
}

.mobile-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 30px;
}

.mobile-menu .menu-item-has-children > a::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-menu .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu .menu-item-has-children.open .sub-menu {
    display: block;
	border: none;
}
.mobile-menu .menu-item-has-children.open .sub-menu li {
    padding: 5px;
}
.mobile-menu .menu-item-has-children.open .sub-menu li:last-child {
	border-bottom: none;
}

.mobile-contacts {
    margin-top: 30px;
    padding-top: 20px;
}

.mobile-contacts a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
}

.services-banner {
    padding: 90px 0;
    position: relative;
	height: 420px;
}
.services-banner::before {
    content: '';
    background-image: url(img/services1920.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    display: block;
    width: 100%;
    min-height: 678px;
    top: -90px;
    z-index: -1;
    height: 100%;
}
.service-odd::before {
    content: '';
    background-image: url(img/decor-1.svg);
    background-repeat: no-repeat;
    background-size: 851px 885px;
    background-position: center;
    position: absolute;
    display: block;
    width: 851px;
    height: 885px;
    bottom: -406px;
    left: -474px;
    z-index: -1;
}
.service-even::before {
    content: '';
    background-image: url(img/decor-1.png);
	transform: rotatey(180deg);
    background-repeat: no-repeat;
    background-size: 851px 885px;
    background-position: center;
    position: absolute;
    display: block;
    width: 851px;
    height: 885px;
    bottom: -406px;
    right: -474px;
    z-index: -1;
}
.service-item:last-child {
	margin-bottom: 200px;
}
.process-item:not(:first-child) {
	margin-top: -35px;
}
.services-banner h1 {
	text-align: right;
	font-size: 64px;
}
.services-banner__descr {
	text-align: right;
	font-size: 36px;
	font-weight: 600;
	font-family: 'FuturaPT';
    letter-spacing: 8%;
    max-width: 856px;
    margin-left: auto;
}
.services-archive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.service-item {
    margin-bottom: 130px;
	position: relative;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 63px;
	max-width: 1200px;
	margin: 0 auto;
}
.services-archive {
	overflow: hidden;
}
.service-content {
    flex: 1;
}
.service-content a {
	display: flex;
    align-items: center;
    gap: 13px;
    background: #000;
	padding: 13px 60px;
	width: fit-content;
}

.service-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFF;
}

.service-description {
    font-size: 20px;
    line-height: 150%;
    color: #FFF;
    margin-bottom: 40px;
}
.service-description ul {
	list-style: none;
    padding-left: 0;
	margin-top: 25px;
}
.service-description ul li {
	position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}
.service-description ul li::before {
	content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="18" viewBox="0 0 15 18"><path d="M0.499999 16.4551L0.5 0.865234L14.001 8.66016L0.499999 16.4551Z" fill="none" stroke="%23C2C2C2" stroke-width="1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.service-link {
    display: inline-block;
    padding: 10px 30px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.service-link:hover {
    background: #0056b3;
    color: #fff;
}

.service-image {
    min-height: 433px;
	width: 368px;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.service-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #e0e0e0;
    color: #999;
    font-size: 14px;
}
.process-wrapper {
	display: flex;
	flex-direction: column;
	background-image: url(img/process.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
	margin: 0 auto;
	padding: 90px 0;
}
.process-item:nth-child(odd) {
	align-self: flex-start;
	padding-right: 20px;
	text-align: right;
}
.process h2 {
	font-size: 64px;
    text-align: center;
    margin-bottom: 123px;
}
.process {
	padding: 0 0 120px;
}

.process-item:nth-child(even) {
	align-self: flex-end;
	padding-left: 80px;
}
.process-item {
	width: 50%;
}
.process-item span {
	font-size: 32px;
	color: #C5C5C5;
	line-height: 40px;
}
.process-item:nth-child(odd) h3 {
	margin-left: auto;
}
.process-item:nth-child(odd) p {
	margin-left: auto;
}
.process-item h3 {
	font-size: 40px;
	color: #D5D5D5;
	line-height: 40px;
	letter-spacing: 4%;
	font-weight: 600;
	margin: 20px 0 30px;
	max-width: 267px;
}
.process-item p {
	font-size: 18px;
	line-height: 33.8px;
	letter-spacing: 4%;
	text-shadow: 4px -2px 7.5px rgba(0,0,0,1);
	max-width: 447px;
}
.service-banner {
	background-image: url(img/service-banner.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; 
	padding: 120px 0;
	margin: 52px 0;
}
.banner-center img {
	background-color: #000;
	width: 317.34px;
	height: 374px;
}
.banner-item {
	border: 2px solid rgba(255,255,255,0.35);
	border-radius: 20px;
	padding: 13px 18px;
	width: fit-content;
	max-width: 334px;
	text-align: center;
	background-color: rgba(5,5,5,0.8);
}
.banner-left, .banner-right {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin: -12px 0 60px;
}
.banner-left {
	align-items: flex-end;
}
.banner-right {
	align-items: flex-start;
}
.service-banner__wrapper {
	display: flex;
	gap: 48px;
	justify-content: center;
}
.cards-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}
.card-item {
	width: 33.3%;
	border-radius: 13px;
	background-color: rgba(0,0,0,0.75);
	border: 1px solid transparent;
	padding: 20px 35px;
	max-width: 330px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.card-item::before {
	content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #FFF 0%, #515151 90%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.card-item img {
	margin: 0 auto;
}
.service-card-title {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	margin: 30px 0;
	min-height: 60px;
}
.card-descr {
	font-size: 18px;
	color: #9B9B9B;
	line-height: 131%;
	text-align: center;
	font-weight: 500;
}
.card-descr p {
	padding: 10px 0;
}
.cards {
    background-image: url(img/cards-section.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	padding: 90px 0;
}
.p-text {
	margin-top: 10px;
	display: block;
}
.p-text a {
	text-decoration: underline;
}
.price {
	position: relative;
	padding: 240px 0 0;
}
.price::before {
	content: '';
    background-image: url(img/price-decor.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    display: block;
    width: 100%;
    min-height: 286px;
    top: 135px;
    z-index: -1;
}
.price h2 {
    font-size: 55px;
    font-weight: 400;
	text-align: center;
	margin-bottom: 20px;
}
.price-wrapper-mob__svg {
	display: none;
}
.price-text {
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
}
.price-text span {
	font-size: 16px;
	margin-bottom: 33px;
	display: block;
}
.price-wrapper {
    position: relative;
    width: 100%;
    max-width: 1192px;
    margin: 0 auto;
}

.price-wrapper__svg {
    display: block;
    width: 100%;
    height: auto;
	padding: 106px 0;
}
.price-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 267px;
    min-height: 38px;
    padding: 15px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    background: #000;
    color: #fff;
	letter-spacing: 8%;
}

.price-card--quantity {
    left: -1.3%;
    top: 21%;
}

.price-card--size {
    right: -1.3%;
    top: 21%;
}

.price-card--price {
    left: 50%;
    top: 1%;
    transform: translateX(-50%);
	border: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: unset;
}

.price-card--glass {
    left: 22.5%;
    top: 55%;
}
.price-card--colors {
    right: 22.5%;
    top: 55%;
}
.must::before {
	content: '';
    background-image: url(img/must-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    display: block;
    width: 100%;
    min-height: 678px;
    top: -90px;
    z-index: -1;
    height: 100%;
}
.must {
	position: relative;
}
.must-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 52px;
	padding: 180px 0 90px;
}
.must-item {
	border-radius: 15px;
	border: 1px solid transparent;
	background-color: rgba(0,0,0,0.75);
	padding: 23px 40px;
	font-weight: 500;
	text-align: center;
	position: relative;
}
.must-item::before {
	content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
   	background: linear-gradient(323deg, #FFF 0%, #515151 19%, #FFF 47%, #535353 64%, #FFF 94%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}
.l-must {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 40%;
}
.l-must.has-many-items {
    gap: 11px;
}
.r-must {
	width: 60%;
}
.r-must span {
	color: #9B9B9B;
	font-size: 20px;
	line-height: 21px;
	font-weight: 500;
}
.r-must h2 {
	font-size: 55px;
	line-height: 70px;
	font-weight: 400;
	margin: 5px 0 16px;
}
.r-must p {
	font-size: 18px;
	color: #DFDFDF;
}
.must-descr strong {
	font-size: 20px;
	color: #FFF;
	margin-top: 20px;
    display: block;
	font-weight: 600;
}
.service-form {
	max-width: 590px;
	width: 100%;
	padding: 30px 50px 58px;
	background: url(img/service-form-bg.webp);
	background-size: contain;
	background-position: right;
	margin: 0 auto;
	background-repeat: no-repeat;
	border: 2px solid transparent;
    border-image: linear-gradient(324deg, #626262 14%, #FFF 42%, #000 73%, #FFF 95%);
    border-image-slice: 2;
	
}
.service-form .button-round {
	font-size: 20px;
	width: 256px;
	margin-top: 80px;
}
.service-form h3 {
	font-size: 38px;
	line-height: 70px;
	font-weight: 400;
	text-align: center;
}
.service-form p {
	font-size: 20px;
	line-height: 150%;
	margin-top: 14px;
	text-align: center;
}
.service-form .wpcf7-form {
    margin-top: 73px;
}
.service-form input::placeholder {
	font-size: 16px;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
}
.service-form-section {
	padding: 90px 0 140px;
}
.footer-form input::placeholder {
	font-size: 12px;
	color: #FFF;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
}
.service-form p:not(:last-of-type) {
    margin-bottom: 26px;
}
.service-form input:focus {
	outline: none;
}
.wpcf7-not-valid-tip {
	font-size: 16px;
}
.service-form input {
    background-color: transparent;
    border: none;
	border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #FFFFFF 0%, #353535 100%);
    border-image-slice: 1;
    padding: 5px;
    color: #FFF;
    max-width: 484px;
    width: 100%;
	font-size: 16px;
	font-weight: 500;
	line-height: 121.8%;
}
.production {
	padding: 90px 0;
}
.production-item {
	border-radius: 20px;
	border: 2px solid #FFF;
	padding: 30px 70px 70px;
	position: relative;
	background-image: url(img/production-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	margin-bottom: 130px;
}
.production-item h3 {
	font-size: 36px;
	text-align: center;
	margin-bottom: 27px;
}
.production-item__descr {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	max-width: 760px;
	width: 100%;
	margin: 0 auto;
}
.production-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 64px;
	gap: 25px;
}
.production-card {
	border-radius: 13px;
	border: 1px solid #FFF;
	position: relative;
	padding: 15px 45px 37px;
	max-width: 515px;
	width: 100%;
	background: rgba(0,0,0,0.75);
}
.production-card h4 {
	font-size: 30px;
	margin-bottom: 36px;
	text-align: center;
}
.production-card p {
	font-size: 18px;
	padding: 10px 0;
	line-height: 200%;
}
.production-card span {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	margin-top: 12px;
}

.phone-list {
    display: flex;
    gap: 15px;
}
.contact-decor {
    flex-shrink: 0;
    width: 134px;
    border-right: 2px solid;
	border-left: 2px solid;
    border-image: linear-gradient(135deg, #FFF 0%, #515151 90%) 1;
    overflow: hidden;
}

.phone-item {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #aaa;
    border: 1px solid #fff;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    transition: width 0.4s ease;
}

.phone-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}
.phone-item:hover .phone-icon {
	background: #FFF;
	box-shadow: 3px 3px 4px rgba(0,0,0,0.25);
}
.phone-item:hover .phone-icon svg {
	fill: #000;
}

.phone-icon svg {
    width: 27px;
    height: 27px;
    fill: #FFF;
}

.phone-number {
    position: absolute;
    left: 70px;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.25s ease,
        transform 0.4s ease;
}

.phone-item:hover {
    width: 264px;
}

.phone-item:hover .phone-number {
    opacity: 1;
    transform: translateX(0);
}
.contact {
	padding: 90px 0 180px;
}
.contact-wrapper {
	display: flex;
	border-radius: 28px;
	border: 2px solid transparent;
	align-items: stretch;
	height: 623px;
	position: relative;
	overflow: hidden;
		
}
.contact-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #FFF 0%, #515151 90%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.l-contact {
	padding: 22px 35px;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0.16) 0%, rgba(0, 0, 0, 0.16) 48%, rgba(217, 217, 217, 0.16) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.l-contact h2 {
	font-size: 28px;
}
.l-contact p {
	font-size: 18px;
	color: #C9C9C9;
	margin-top: 11px;
}
.contact-social {
	display: flex;
	flex-direction: column;
	gap: 43px;
	margin: 96px 0 76px;
}
.social-item {
	display: flex;
	gap: 25px;
	align-items: center;
}
.social-item img {
	width: 24px;
	height: 24px;
}
.r-contact .service-form {
	background: unset;
	border: none;
	padding: 0;
}
.r-contact .service-form .wpcf7-form {
	margin-top: 0;
}
.r-contact {
	padding: 22px 35px 64px;
}
.r-contact .site-branding img {
	display: block;
	margin: 0 auto;
}
.l-contact,
.r-contact {
    flex: 1;
    box-sizing: border-box;
}
.portfolio-banner {
	background-image: url(img/portfolio-banner.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 280px 0 60px;
}
.portfolio-banner h1 {
	text-transform: uppercase;
	font-size: 36px;
	letter-spacing: 8%;
	text-align: center;
}
.portfolio-banner p {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 8%;
	text-align: center;
	max-width: 708px;
	width: 100%;
	margin: 26px auto 43px;
}
.portfolio-banner svg {
	width: 245px;
	height: 321px;
	display: block;
	margin: 0 auto;
}
.portfolio-carousel-wrapper {
	position: relative;
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
}
.portfolio-carousel-item {
	height: 400px;
	width: auto;
	position: relative;
}
.portfolio-carousel-item img {
	object-fit: cover;
	height: 400px;
}
.portfolio-wrapper {
    position: relative;
    padding: 0 50px;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}
.custom-arrow svg {
	width: 24px;
	height: 46px;
}

.left-arrow {
    left: -60px;
}

.right-arrow {
    right: -60px;
}

.portfolio-item-wrapper {
	display: flex;
	gap: 138px;
	justify-content: center;
}
.portfolio-item {
	background-image: url(img/brand-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    padding: 90px 0;
}
.portfolio-title {
	font-size: 55px;
	line-height: 150%;
	margin-bottom: 90px;
	position: relative;
	z-index: 2;
}
.portfolio-title span {
	position: absolute;
	top: -1px;
	left: 3px;
	font-size: 55px;
	line-height: 150%;
	z-index: -1;
	color: transparent;
	-webkit-text-stroke: 1px #989898;
	text-stroke: 1px #989898;
}

.portfolio-card {
	width: 550px;
	height: 400px;
	position: relative;
	background: #000;
	transition: transform 0.3s ease;
}

.portfolio-card:hover {
	transform: translateY(-5px);
}
.image-wrapper {
	position: relative;
	width: 100%;
	height: 400px;
	z-index: 2;
}

.image-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 1);
	filter: brightness(0.6)
}

.right-border::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: -20px;
	left: 20px;
	border: 2px solid #BABABA;
	z-index: 1;
	pointer-events: none;
}

.right-border::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: -40px;
	left: 40px;
	border: 1px solid #BABABA;
	z-index: 0;
	pointer-events: none;
}

.left-border::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: -20px;
	left: -20px;
	border: 2px solid #BABABA;
	z-index: 1;
	pointer-events: none;
}

.left-border::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: -40px;
	left: -40px;
	border: 1px solid #BABABA;
	z-index: 0;
	pointer-events: none;
}

.hover-description {
	position: absolute;
	max-width: 408px;
	width: 100%;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	padding: 9px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease, transform 0.3s ease;
	box-shadow: 0 -3px 48.9px rgba(0,0,0,0.25);
	pointer-events: none;
	z-index: 10;
	border: 2px solid #FFF;
	min-height: 169px;
}
.hover-description h4 {
	font-size: 22px;
	line-height: 150%;
}
.hover-description p {
	font-size: 12px;
	line-height: 150%;
	margin-top: 16px;
}

.portfolio-card:hover .hover-description {
	opacity: 1;
	visibility: visible;
	bottom: 1px;
}
.portfolio-card:hover .image-wrapper img {
	filter: none;
}

.portfolio-carousel-item:hover .hover-description {
	opacity: 1;
	visibility: visible;
	bottom: 1px;
}
.portfolio-carousel-item:hover .image-wrapper img {
	filter: none;
}

.portfolio-slider {
	background-image: url(img/brand-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    padding: 90px 0;
}
.footer-site-info .sub-menu {
	display: none;
}
.footer-site-info .menu-item-has-children > a::after {
	display: none;
}

.popup-two-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
	padding: 0;
    overflow: hidden;
	position: relative;
}
.popup-two-columns::before {
	content:'';
	background: url(img/popup-decor1.svg);
    background-size: contain;
	background-repeat: no-repeat;
    position: absolute;
	top: -50px;
	left: -50px;
	display: block;
    width: 71%;
    min-height: 593px;
	height: 100%;
}

.popup-two-columns::after {
	content:'';
	background: url(img/popup-decor2.svg);
    background-size: contain;
	background-repeat: no-repeat;
    position: absolute;
	bottom: 0px;
	left: 0px;
	display: block;
    width: 100%;
	height: 76%;
	z-index: -1;
}

.popup-left {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: stretch;
	padding: 57px 30px 57px 70px;
}


.popup-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 57px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-left figure {
    margin: 0!important;
    width: 100%;
    height: 306px;
    display: flex;
	align-items: center;
}
.popup-two-columns .service-form {
	border: none;
}
.popup-two-columns .service-form .button-round {
	margin-top: 36px;
}
.popup-two-columns .service-form .wpcf7-form {
	margin-top: 0;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #585858;
	padding: 30px 0;
	margin-top: 30px;
	font-size: 14px;
}
.development {
	display: flex;
	align-items: center;
	gap: 15px;
}
.development img {
	height: 30px;
	width: auto;
}
.error-page {
	padding: 90px 0;
	height: 60vh;
}
.error-page h1 {
	font-size: 151px;
	text-align: center;
}
.error-page h2 {
	font-size: 46px;
	text-align: center;
}
@media (max-width: 768px) {
    .popup-two-columns {
        flex-direction: column;
        gap: 0;
    }
	.popup-left {
		display: none;
	}
    .popup-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
	.popup-two-columns::before, .popup-two-columns::after {
		background-image: none;
	}
}
/* Адаптивность */
@media (max-width: 1240px) {
	.container, .service-row {
		padding: 0 15px;
	}
	.left-arrow {
		left: 0;
	}
	.right-arrow {
		right: 0;
	}
}
@media (max-width: 1200px) {
	.card::before, .card::after {
		display: none;
	}
}
@media (max-width: 1000px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .site-header .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    .header-inner .site-branding {
        flex: 1;
        text-align: center;
		margin-right: 45px;
    }
    .header-contact {
        display: none;
    }
	.offer-wrapper {
		gap: 10px;
	}
	.offer-wrapper-sec {
		gap: 10px;
		margin-top: 10px;
	}
	.adv-item h3 {
		font-size: 22px;
	}
	.adv-img, .adv-item img {
		height: 60px;
	}
	.advantages::before {
		top: 60px;
	}
	.banner-text::before {
		width: 480px;
	}
	.subtitle, .subtitle-wrap::before,
	.subtitle-wrap::after {
		margin-top: 50px;
	}
	.sec-title, .offer h2, .brands h2 {
		font-size: 48px;
	}
	.card-title h3, .offer-item h3 {
		font-size: 28px;
	}
	.card-title {
		top: -10px;
	}
	.services-wrapper {
		margin: 100px auto 0;
	}
	.advantages {
		padding: 200px 0 100px;
	}
	.offer-item p {
		font-size: 16px;
		margin-top: 20px;
	}
	.offer-wrapper .offer-item {
		min-height: 303px;
	}
	.offer-item a {
		font-size: 18px;
	}
	.brands p, .rect-btn {
		font-size: 22px;
	}
	.footer-form input {
		max-width: 360px;
	}
	.banner-text p {
		margin: 30px 0 27px;
	}
	.offer-item:nth-child(1),
	.offer-item:nth-child(2),
	.offer-item:nth-child(3) {
		width: calc((100% - (10px * 2)) / 3);
	}

	.offer-item:nth-child(4),
	.offer-item:nth-child(5) {
		width: calc((100% - (10px * 1)) / 2);
	}
	.service-banner {
		padding: 60px 0;
	}
	.price {
		padding: 60px 0;
	}
	.price-card {
		min-width: 183px;
		padding: 5px 10px;
	}
	.price-card--size {
		right: 0.7%;
    	top: 24%;
    	min-width: 183px;
	}
	.price-card--quantity {
		top: 24%;
		left: 0.7%;
	}
	.price-card--glass {
		left: 24.5%;
	}
	.price::before {
		top: -15px;
	}
}

@media (max-width: 830px) {
	.offer-item:nth-child(1),
	.offer-item:nth-child(2),
	.offer-item:nth-child(3),
	.offer-item:nth-child(4) {
		width: calc((100% - (30px * 1)) / 2);
	}
	.offer-item:nth-child(5) {
		width: 100%;
	}
	.offer-wrapper {
		gap: 30px;
	}
	.footer-form {
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.banner {
		padding: 60px 0;
	}
	.banner-text h1 {
		font-size: 38px;
	}
	.banner-text p {
		margin: 20px 0;
		font-size: 18px;
	}
	.banner-text::before {
		height: 332px;
		bottom: -10%;
	}
	.sec-title, .offer h2, .brands h2 {
		font-size: 38px;
	}
	.subtitle {
		font-size: 18px;
	}
	.services-wrapper {
		gap: 40px;
	}
	.card-title {
		min-width: 280px;
	}
	.card-title h3, .offer-item h3 {
		font-size: 20px;
	}
	.advantages::before {
		top: -40px;
	}
	.advantages {
		padding: 100px 0 90px;
	}
	.offer {
		padding: 0;
	}
	.offer-item a {
		font-size: 16px;
	}
	.offer-wrapper .offer-item {
		min-height: 253px;
	}
	.brands p, .rect-btn {
		font-size: 18px;
	}
	.brands p {
		margin-top: 15px;
	}
	.banner-text::before {
		width: 100%;
	}
	.subtitle-wrap::before, .subtitle-wrap::after {
		display: none;
	}
	.service-row {
        flex-direction: column !important;
        gap: 0;
    }
    
    .service-content {
        padding: 30px 20px;
        order: 2 !important;
    }
    
    .service-image {
        width: 100%;
        min-height: 200px;
        order: 1 !important;
    }
    
    .service-image img {
        min-height: unset;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .service-title {
        font-size: 22px;
    }
	.portfolio-wrapper {
        padding: 0 30px;
    }
    .custom-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
	.services-banner h1 {
		font-size: 48px;
		text-align: center;
	}
	.services-banner__descr {
		font-size: 28px;
		text-align: center;
	}
	.services-banner {
		height: unset;
	}
	.service-item:last-child {
		margin-bottom: 90px;
	}
	.service-item {
		margin-bottom: 60px;
	}
	.process h2 {
		font-size: 38px;
		margin-bottom: 60px;
	}
	.process-item h3 {
		font-size: 30px;
		line-height: 30px;
		margin: 20px 0 10px;
	}
	.service-odd::before, .service-even::before {
		width: 646px;
		height: 693px;
		bottom: -257px;
	}
	.process {
		padding: 0 0 60px;
	}
	.service-banner {
		margin: 0;
		padding: 90px 0;
	}
	.banner-center img {
		width: 250px;
		height: 294px;
	}
	.service-banner__wrapper {
		gap: 15px;
	}
	.banner-left, .banner-right {
		margin: -12px 0 0;
	}
	.banner-item {
		font-size: 14px;
		padding: 7px 10px;
	}
	.cards {
		padding: 30px 0;
	}
	.card-item {
		padding: 15px 20px;
	}
	.card-item img {
		width: 56px;
		height: 58px;
	}
	.service-card-title {
		margin: 10px 0;
		font-size: 17px;
		min-height: unset;
	}
	.card-descr {
		font-size: 14px;
	}
	.price {
		padding: 40px 0 0;
	}
	.price h2 {
		font-size: 38px;
	}
	.r-must span {
		font-size: 14px;
	}
	.r-must h2 {
		font-size: 38px;
		line-height: 38px;
	}
	.r-must p {
		font-size: 16px;
	}
	.l-must {
		gap: 10px;
	}
	.must-wrapper {
		gap: 20px;
		padding: 90px 0;
	}
	.must-item {
		padding: 10px 15px;
		font-size: 14px;
	}
	.price-card--colors {
		right: 17.5%;
		top: 53%;
	}
	.price-card--glass {
		left: 17.5%;
		top: 53%;
	}
	.portfolio-item {
		padding: 30px 0;
	}
	.contact-wrapper {
		flex-wrap: wrap;
		height: unset;
	}
	.r-contact {
		border-top: 2px solid;
    	border-image: linear-gradient(135deg, #FFF 0%, #515151 90%) 1;
	}
	.contact {
		padding: 60px 0;
	}
	.portfolio-banner {
		height: 500px;
		padding: 163px 0 60px;
	}
	.portfolio-banner h1 {
		font-size: 28px;
	}
	.portfolio-banner p {
		font-size: 16px;
		max-width: 410px;
	}
	.portfolio-title, .portfolio-title span {
		font-size: 41px;
	}
	.portfolio-item-wrapper {
		gap: 72px;
	}
	.right-border::before {
		top: -10px;
    	left: 7px;
	}
	.right-border::after {
		top: -20px;
    	left: 20px;
	}
	.left-border::before {
		top: -10px;
    	left: -10px;
	}
	.left-border::after {
		top: -20px;
    	left: -20px;
	}
	.portfolio-title {
		margin-bottom: 40px;
	}
	.portfolio-banner svg {
		width: 245px;
    	height: 168px;
		margin: -30px auto 0;
	}
	.production {
		padding: 0;
	}
	.production-wrapper {
		flex-wrap: wrap;
		margin-top: 45px;
	}
	.production-item {
		padding: 0;
		background-image: none;
		border: none;
	}
	.production-card {
		max-width: unset;
		padding: 15px 20px;
	}
	.production-item:not(:last-child) {
		margin-bottom: 60px;
	}
	.production-item h3 {
		font-size: 28px;
	}
	.production-item__descr {
		font-size: 18px;
	}
	.production-item:not(:last-child) {
		margin-bottom: 65px;
	}
	.production-card span {
		text-align: center;
		display: block;
	}
	.production-card h4 {
		margin-bottom: 20px;
		font-size: 22px;
	}
	.main-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        transition: none;
    }
    
    .main-menu li:hover > .sub-menu {
        display: block;
    }
	.menu-item-has-children::after {
		display: none;
	}
}

@media (max-width: 650px) {
	.banner-text h1 {
		font-size: 30px;
		line-height: 1;
	}
	.banner-text {
		margin-top: 0;
	}
	.banner-text p, .subtitle, .adv-item h3 {
		font-size: 16px;
	}
	.custom-logo {
		width: 52px;
		height: 52px;
	}
	.sec-title, .offer h2, .brands h2 {
		font-size: 32px;
	}
	.services-wrapper {
		margin: 90px auto 0;
	}
	.card-title {
		min-width: 230px;
		top: -3px;
	}
	.adv-img, .adv-item img {
		height: 40px;
	}
	.advantages::before {
		top: -60px;
	}
	.offer h2 {
		margin-bottom: 30px;
	}
	.brands-carousel {
		margin-top: 35px;
	}
	.brands {
		padding: 30px 15px;
	}
	.footer-site-info .site-branding img {
		width: 54px;
		height: 54px;
	}
	.service-banner__wrapper {
		flex-direction: column;
	}
	.banner-left, .banner-right {
		align-items: center;
		order: 1;
		margin: 0;
		gap: 15px;
	}
	.banner-center img {
		margin: 0 auto;
        display: block;
	}
	.service-banner {
		padding: 60px 0;
	}
	.cards-wrapper {
		justify-content: center;
		flex-wrap: wrap;
	}
	.card-item {
		width: 100%;
	}
	.price-card__icon img {
		width: 70px;
		height: auto;
	}
	.price-card--price {
		top: 8%;
	}
	.price-card--colors {
        right: 3.5%;
		top: 50%;
    }
	.price-card--glass {
        left: 3.5%;
		top: 50%;
    }
}

@media (max-width: 550px) {
	.offer-item:nth-child(1),
	.offer-item:nth-child(2),
	.offer-item:nth-child(3),
	.offer-item:nth-child(4) {
		width: 100%;
	}
	.offer-wrapper .offer-item {
		min-height: 203px;
	}
	.services-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.process-item:nth-child(odd) {
		padding-right: 0;
	}
	.process-item:nth-child(even) {
		padding-left: 50px;
	}
	.process-item h3{
		font-size: 24px;
		line-height: 24px;
        margin: 10px 0;
	}
	.process-item span {
		font-size: 24px;
	}
	.process-item p {
		font-size: 14px;
		line-height: 16px;
	}
	.process-wrapper {
		padding: 20px 0;
	}
	.price-card {
		font-size: 12px;
	}
	.must-wrapper {
		flex-wrap: wrap-reverse;
	}
	.r-must {
		text-align: center;
		width: 100%;
	}
	.l-must {
		width: 100%;
	}
	.price-text, .must-descr strong {
		font-size: 16px;
	}
	.service-form h3 {
		font-size: 28px;
		line-height: 28px;
	}
	.service-form p {
		font-size: 16px;
	}
	.service-form .wpcf7-form {
		margin-top: 23px;
	}
	.service-form-section, .must-wrapper {
		padding: 60px 0;
	}
	.portfolio-item-wrapper {
		flex-wrap: wrap;
	}
	.portfolio-banner {
		height: 434px;
        padding: 140px 0 60px;
	}
	.must::before, .service-banner {
		background-image: none;
	}
}
@media (max-width: 494px) {
	.contact-decor {
		width: 20%;
	}
	.r-contact {
		width: 80%;
	}
	.error-page {
		padding: 60px 0;
		height: 30vh;
	}
	.error-page h1 {
		font-size: 91px;
		text-align: center;
	}
	.error-page h2 {
		font-size: 26px;
		text-align: center;
	}
}
@media (max-width: 440px) {
    .mobile-nav-container {
        width: 280px;
    }
	.banner-text {
		flex: 0 0 75%;
		margin-left: -95%;
	}
	.banner-img {
		flex: 0 0 100%;
	}
	.advantages::before {
		display: none;
	}
	.wrapper-adv {
		padding: 0 15px;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.offer-item a {
		margin-top: 15px;
	}
	.banner-text::before {
		left: 60%;
		bottom: -30%;
	}
	.adv-img, .adv-item img {
		height: auto;
	}
	.footer-contact {
		margin-top: 0;
		width: 100%;
		align-items: center;
		margin-bottom: 30px;
		gap: 10px;
	}
	.footer-navigation .main-menu {
		align-items: center;
	}
	.footer-site-info {
		width: 100%;
		align-items: center;
		margin-bottom: 30px;
	}
	.footer-wrapper .site-branding {
		margin-right: 0;
	}
	.subtitle {
		margin-right: 0;
		margin-left: 0;
	}
	.footer-form p {
		font-size: 14px;
	}
	.service-description {
		font-size: 18px;
	}
	.service-image {
		width: 300px;
	}
	.service-content a {
		margin: 0 auto;
	}
	.service-description ul li::before {
		width: 20px;
		height: 20px;
	}
	.services-banner {
		padding: 60px 0;
	}
	.services-banner__descr {
		font-size: 20px;
	}
	.service-form input::placeholder {
		font-size: 14px;
	}
	.service-form .button-round {
		margin-top: 30px;
	}
	.service-form {
		padding: 30px 23px;
	}
	.must::before {
		top: 0;
	}
	.l-contact {
		padding: 15px 20px;
	}
	.contact-social {
		gap: 13px;
		margin: 30px 0 36px;
	}
	.social-item {
		gap: 15px;
		font-size: 16px;
	}
	.l-contact h2 {
		font-size: 22px;
	}
	.l-contact p {
		font-size: 14px;
		margin-top: 7px;
	}
	.r-contact .site-branding img {
		display: none;
	}
	.r-contact {
		padding: 20px;
	}
	.service-form p:not(:last-of-type) {
		margin-bottom: 9px;
	}
	.service-form p {
		line-height: 121%;
	}
	.social-item img {
		width: 20px;
		height: 20px;
	}
	.phone-item:hover {
		width: 50px;
	}
	.footer-form h3 {
		font-size: 20px;
	}
	.portfolio-title, .portfolio-title span {
		font-size: 28px;
	}
	.portfolio-slider {
		padding: 30px 0;
	}
	.social-item a {
		display: block;
	}
	.price-wrapper__svg, .price-card--price {
		display: none;
	}
	.price-wrapper-mob__svg {
		display: block;
		width: 100%
		height: 483px;
		position: relative;
		margin: 0 auto;
	}
	.price-card--quantity {
		top: 23%;
	}
	.price-card--size {
		min-width: 128px;
		top: 23%;
		right: -1.3%;
	}
	.price-card--glass {
		top: 70%;
		left: 0.7%;
	}
	.price-card--colors {
		top: 70%;
		right: 0.7%;
	}
	.price-card {
		min-width: 135px;
		font-size: 14px;
		min-height: 45px;
	}
	.portfolio-title span {
		left: 2px;
	}
	.service-form .button-round {
		font-size: 18px;
		width: fit-content;
	}
	.contact-decor {
		height: 376px;
	}
}