/*!
Theme Name: TPS
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
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: tps
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.

TPS 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/
*/

:root {
	--container: 1290px;
	--gap: 30px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 48px;
	--h2-size: 32px;
	--h3-size: 24px;
	--h4-size: 22px;
	--h5-size: 20px;
	--h6-size: 18px;

	--blue: #3D6CCD;
	--blue-dark: #000A4E;
	--white: #ffffff;
	--black: #1E1E1E;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	color: var(--black);
	line-height: 1.2;
}
a, a:hover {
	text-decoration: none;
	color: var(--black);
	transition: .25s;
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	margin: 0;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
    opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	font-family: 'IBM Plex Mono', monospace;
	line-height: 1.3;
	font-weight: 700;
}
p, ul, ol, blockquote, .wp-caption, .gallery {
	margin: 0 0 20px;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
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, .wp-caption:last-child, .gallery:last-child {
	margin-bottom: 0;
}
iframe, video {
	max-width: 100%;
}

.form-field {
	position: relative;
	margin-bottom: 20px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="password"],
select,
textarea {
	width: 100%;
	outline: none;
	background: var(--white);
	border: none;
	border-radius: 23px;
	font-size: var(--text-size-sm);
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
	padding: 9.5px 20px;
	min-height: 45px;
}
select {
	appearance: none;
	cursor: pointer;
	background: var(--white) url(images/arrow-down.svg) no-repeat calc(100% - 18px) center;
	background-size: 12px;
	padding-right: 40px;
}
textarea {
	height: 120px;
}
.form-field-btn input {
	background: var(--white) url(images/send.svg) no-repeat center;
	background-size: 20px;
	border-radius: 10px;
	font-size: 0;
	padding: 0;
	border: none;
	outline: none;
	width: 45px;
	height: 45px;
	transition: .25s;
}
.form-field-btn input:hover {
	background-color: #d9d9d9;
}
.wpcf7-not-valid-tip {
	display: block;
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	font-size: var(--text-size-sm);
}
.wpcf7-spinner {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	--bs-gutter-x: var(--gap);
}
.row {
    --bs-gutter-x: var(--gap);
}


.btn {
	--bs-btn-padding-x: 34px;
	--bs-btn-padding-y: 15px;
	--bs-btn-font-weight: 500;
	--bs-btn-border-radius: 28px;
	--bs-btn-box-shadow: none;
	--bs-btn-focus-box-shadow: none;
	display: inline-flex;
	align-items: center;
	text-transform: uppercase;
	transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
}
.btn-icon-left:before,
.btn-icon-right:after {
	content: '';
	flex: 0 0 16px;
	max-width: 16px;
	width: 16px;
	height: 16px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: .25s;
}
.btn-icon-left:before {
	margin-right: 15px;
}
.btn-icon-right:after {
	margin-left: 15px;
}
.btn-primary {
	--bs-btn-color: var(--white);
	--bs-btn-bg: var(--blue-dark);
	--bs-btn-border-color: var(--blue-dark);
	--bs-btn-hover-color: var(--white);
	--bs-btn-hover-bg: var(--blue);
	--bs-btn-hover-border-color: var(--blue);
	--bs-btn-active-color: var(--white);
	--bs-btn-active-bg: var(--blue);
	--bs-btn-active-border-color: var(--blue);
	--bs-btn-active-shadow: none;
	--bs-btn-disabled-color: var(--white);
	--bs-btn-disabled-bg: var(--blue-dark);
	--bs-btn-disabled-border-color: var(--blue-dark);
}
.btn-primary.btn-icon-left:before,
.btn-primary.btn-icon-right:after {
	background-color: var(--white);
}
.btn-primary.btn-icon-left:hover:before,
.btn-primary.btn-icon-right:hover:after {
	background-color: var(--white);
}
.btn-outline-primary {
	--bs-btn-color: var(--black);
	--bs-btn-border-color: var(--blue);
	--bs-btn-hover-color: var(--white);
	--bs-btn-hover-bg: var(--blue);
	--bs-btn-hover-border-color: var(--blue);
	--bs-btn-active-color: var(--white);
	--bs-btn-active-bg: var(--blue);
	--bs-btn-active-border-color: var(--blue);
	--bs-btn-active-shadow: none;
	--bs-btn-disabled-color: var(--black);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--blue);
	--bs-gradient: none;
}
.btn-outline-primary.btn-icon-left:before,
.btn-outline-primary.btn-icon-right:after {
	background-color: var(--black);
}
.btn-outline-primary.btn-icon-left:hover:before,
.btn-outline-primary.btn-icon-right:hover:after {
	background-color: var(--white);
}
.btn-link {
    --bs-btn-font-weight: 700;
    --bs-btn-color: var(--blue);
    --bs-btn-hover-color: var(--blue-dark);
    --bs-btn-active-color: var(--blue-dark);
    --bs-btn-disabled-color: var(--blue);
    --bs-btn-box-shadow: none;
    text-decoration: none;
    text-transform: inherit;
    padding: 0;
}
.btn-link.btn-icon-left:before,
.btn-link.btn-icon-right:after {
	background-color: var(--blue);
}
.btn-link.btn-icon-left:hover:before,
.btn-link.btn-icon-right:hover:after {
	background-color: var(--blue-dark);
}
.btn-icon-arrow-forward:before,
.btn-icon-arrow-forward:after {
	-webkit-mask-image: url(images/arrow-forward.svg);
	mask-image: url(images/arrow-forward.svg);
}
.btn-icon-arrow-right:before,
.btn-icon-arrow-right:after {
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
}


.section {
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	z-index: 1;
}
.heading {
	position: relative;
	margin-bottom: 50px;
	z-index: 1;
}
.heading-icon-before:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 40px;
	height: 40px;
	display: block;
	margin-bottom: 40px;
}
.heading-icon-after:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 40px;
	height: 40px;
	display: block;
	margin-left: auto;
	margin-bottom: 40px;
}
.heading h2 {
	position: relative;
	display: inline-block;
	font-size: var(--h1-size);
	color: var(--blue-dark);
	text-transform: uppercase;
	margin-bottom: 0;
	z-index: 1;
}
.heading h2:after {
	content: ' /';
}




.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 30px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	flex-direction: column;
}
.soc-links li a svg {
	width: 24px;
	height: 24px;
}
.soc-links li a svg path {
	fill: var(--blue);
	transition: .25s;
}
.soc-links li a:hover svg path {
	fill: var(--blue-dark);
}


.contacts-info {
	margin: 0;
	padding: 0;
	list-style: none;
}
.contacts-info li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid rgba(0,0,0,.2);
	font-weight: 500;
	text-transform: uppercase;
}
.contacts-info li:last-child {
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.contacts-info li:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
	flex: 0 0 28px;
	max-width: 28px;
	width: 28px;
	height: 28px;
	margin-right: 20px;
	z-index: 1;
}
.contacts-info li.phone:before {
	-webkit-mask-image: url(images/phone-android.svg);
    mask-image: url(images/phone-android.svg);
}
.contacts-info li.email:before {
	-webkit-mask-image: url(images/mail.svg);
    mask-image: url(images/mail.svg);
}
.contacts-info li.address:before {
	-webkit-mask-image: url(images/location.svg);
    mask-image: url(images/location.svg);
}
.contacts-info li a:hover {
	color: var(--blue);
}



.owl-nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99;
}
.owl-nav button {
	position: relative;
	width: 36px;
	height: 36px;
	background: #999696 !important;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	transition: .25s;
	z-index: 1;
}
.owl-nav button:hover {
	background-color: #333333 !important;
}
.owl-nav button.owl-prev {
	transform: rotate(90deg);
}
.owl-nav button.owl-next {
	transform: rotate(-90deg);
}
.owl-nav button:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--white);
	flex: 0 0 16px;
	max-width: 16px;
	height: 16px;
	transition: .25s;
}

.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 36px;
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 14px;
	max-width: 14px;
	width: 14px;
	height: 14px;
	margin-right: 15px;
	background: var(--white) !important;
	border-radius: 50%;
	transition: .25s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button.active,
.owl-dots button:hover {
	background: var(--blue-dark) !important;
}




.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: grid;
	grid-gap: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin-bottom: 0;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid #ffffff;
}
.gallery-item * {
	height: 100%;
}
.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-2 .gallery-item {
	height: calc((var(--container) * .66 - 1 * 24px) / 2 / 1.38 );
}
.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-3 .gallery-item {
	height: calc((var(--container) * .66 - 2 * 24px) / 3 / 1.38 );
}
.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-4 .gallery-item {
	height: calc((var(--container) * .66 - 3 * 24px) / 4 / 1.38 );
}
.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-5 .gallery-item {
	height: calc((var(--container) * .66 - 4 * 24px) / 5 / 1.38 );
}
.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-6 .gallery-item {
	height: calc((var(--container) * .66 - 5 * 24px) / 6 / 1.38 );
}
.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-7 .gallery-item {
	height: calc((var(--container) * .66 - 6 * 24px) / 7 / 1.38 );
}
.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-8 .gallery-item {
	height: calc((var(--container) * .66 - 7 * 24px) / 8 / 1.38 );
}
.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}
.gallery-columns-9 .gallery-item {
	height: calc((var(--container) * .66 - 8 * 24px) / 9 / 1.38 );
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s;
}
.gallery-item:hover img {
	transform: scale(1.05);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}




.wrapper {
	position: relative;
	z-index: 1;
}
.header {
	position: relative;
	padding: 16px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	z-index: 1;
}
.header-wrap {
	display: flex;
	justify-content: space-between;
}
.header-logo {
	margin-right: var(--gap);
}
.header-logo img {
	width: 100%;
	max-width: 218px;
}
.header-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}
.header-top {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) / 2);
}
.header-phone {
	margin: 0 50px 0 0;
}
.header-phone a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--text-size-sm);
}
.header-phone a:hover {
	color: var(--blue-dark);
}
.header-phone a:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/phone-android.svg);
	mask-image: url(images/phone-android.svg);
	background-color: var(--blue);
	flex: 0 0 20px;
	max-width: 20px;
	width: 20px;
	height: 20px;
	margin-right: 10px;	
	transition: .25s;
}
.header-phone a:hover:before {
	background-color: var(--blue-dark);
}
.qtranxs_language_chooser {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	text-transform: uppercase;
}
.qtranxs_language_chooser li {
	position: relative;
	margin-right: 7px;
	padding-right: 7px;
}
.qtranxs_language_chooser li:last-child {
	margin-right: 0;
	padding-right: 0;
}
.qtranxs_language_chooser li:after {
	content: '/';
	width: 6px;
	text-align: center;
	position: absolute;
	right: -3px;
	top: 0;
	z-index: 1;
}
.qtranxs_language_chooser li:last-child:after {
	display: none;
}
.qtranxs_language_chooser li.active a,
.qtranxs_language_chooser li a:hover {
	color: var(--blue);
}
.qtranxs_language_chooser li.active a {
	font-weight: 700;
}



.headerFixed {
	display: none;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	padding: 10px 0;
	background: var(--white);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.20);
	z-index: 99;
}
.headerFixed-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}



.main-navigation {
	position: relative;
	padding: 10px 0;
	z-index: 99;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}
.main-menu > li {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-right: 100px;
}
.main-menu > li:last-child {
	margin-right: 0;
}
.main-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 40px;
	text-transform: uppercase;
}
.main-menu > li:hover > a,
.main-menu > li.current-menu-item > a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.main-menu-chevrone {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-down.svg);
	mask-image: url(images/arrow-down.svg);
	background-color: var(--black);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	transition: .25s;
	z-index: 1;
}
.main-menu li:hover > .main-menu-chevrone {
	transform: rotate(180deg);
	background-color: var(--blue);
}
.main-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
	margin: 0;
	padding: 8px 0;
	list-style: none;
	z-index: 99;
}
.main-menu li:hover > ul {
	display: block;
}
.main-menu ul li {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}
.main-menu ul li.menu-item-has-children {
	padding-right: 10px;
}
.main-menu ul li:last-child {
	margin-bottom: 0;
}
.main-menu ul li a {
	padding: 7px 15px;
	display: block;
}
.main-menu ul li:hover > a {
	color: var(--blue);
}
.main-menu ul .main-menu-chevrone {
	transform: rotate(-90deg);
}
.main-menu ul li:hover > .main-menu-chevrone {
	transform: rotate(-90deg);
	background-color: var(--blue);
}
.main-menu ul ul {
	top: -8px;
	left: 100%;
}









.mainSlider-section {
	height: 680px;
}
.mainSlider-item {
	position: relative;
	overflow: hidden;
	border-radius: 50px 50px 0 0;
	z-index: 1;
}
.mainSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.mainSlider-item__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/*.mainSlider-item__bg:after {
	content: '';
	background: rgba(0, 0, 0, 0.20);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}*/
.mainSlider-item__wrap {
	position: relative;
	height: 680px;
	padding: 75px 0 80px;
	display: flex;
	flex-direction: column;
}
.mainSlider-item__wrap:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	bottom: 200px;
	z-index: -1;
}
.mainSlider-item__wrap:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	top: 75px;
	z-index: -1;
}
.mainSlider-item__title-1 {
	font-size: calc(var(--h2-size) * 2);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 700;
	color: var(--white);
	color: var(--blue-dark);
	text-transform: uppercase;
	max-width: 420px;
	margin-bottom: 30px;
}
.mainSlider-item__content {
	color: var(--white);
	color: var(--blue-dark);
	max-width: 370px;
	flex: auto;
	max-height: 100%;
}
.mainSlider-item__title-2 {
	margin-left: auto;
	text-align: right;
	font-size: calc(var(--h2-size) * 2);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 700;
	color: var(--white);
	color: var(--blue-dark);
	text-transform: uppercase;
	max-width: 490px;
	margin-top: 30px;
}
.owl-mainSlider .owl-dots {
	position: absolute;
	margin-top: 0;
	bottom: 80px;
	left: calc((100% - var(--container)) / 2);
	width: auto;
}


.about-section .heading h2:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 30px;
	height: 30px;
	position: absolute;
	right: -66px;
	top: -30px;
	z-index: -1;
}
.about-image {
	position: relative;
}
.about-image img {
	border-radius: 30px;
}
.about-subheading {
	font-weight: 700;
	color: var(--blue-dark);
	text-transform: uppercase;
	margin-bottom: 40px;
}
.about-content {
	position: relative;
	padding: 20px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.20);
	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	margin-bottom: 40px;
	z-index: 1;
}
.about-advantages-items {
	position: relative;
	margin-bottom: 30px;
}
.about-advantages-item {
	position: relative;
	margin-bottom: var(--gap);
}
.about-advantages-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.about-advantages-item__image {
	flex: 0 0 56px;
	max-width: 56px;
	margin-right: 24px;
}
.about-advantages-item__info {
	flex: auto;
	max-width: 100%;
}
.about-advantages-item__title {
	font-family: 'IBM Plex Mono', monospace;
	font-size: var(--h2-size);
	text-transform: uppercase;
	margin-bottom: 0;
	font-weight: 700;
}
.about-advantages-item__text {
	font-weight: 500;
}



.products-items {
	position: relative;
	margin-bottom: calc(var(--gap) * -1);
}
.products-item {
	position: relative;
	margin-bottom: var(--gap);
}
.products-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc((var(--container) - 3 * var(--gap)) / 4);
	border-radius: 30px;
	overflow: hidden;
	padding: 24px;
	z-index: 1;
}
.products-item__wrap.white {
	color: var(--white);
}
.products-item__wrap.blue {
	color: var(--blue-dark);
}
.products-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.products-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: .25s;
}
.products-item__wrap:hover .products-item__image img {
	transform: scale(1.05);
}
.products-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.products-item__wrap.white .products-item__image:after {
	background: rgba(0, 0, 0, 0.15);
}
.products-item__wrap.blue .products-item__image:after {
	background: rgba(0, 0, 0, 0.10);
}
.products-item__title {
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
}
.products-item__title:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-forward.svg);
	mask-image: url(images/arrow-forward.svg);
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-left: 15px;
	margin-top: 3px;
}
.products-item__wrap.white .products-item__title:after {
	background-color: var(--white);
}
.products-item__wrap.blue .products-item__title:after {
	background-color: var(--blue-dark);
}
.products-item__label {
	text-transform: uppercase;
}


.products-item__empty {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: calc((var(--container) - 3 * var(--gap)) / 4);
	border-radius: 30px;
	overflow: hidden;
	padding: 24px;
	font-size: calc(var(--h1-size) / 1.3333);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 400;
	color: var(--white);
	background-color: var(--blue);
	text-transform: uppercase;
	text-align: center;
	z-index: 1;
}



.advantages-section .heading {
	margin-bottom: 30px;
}
.advantages-section .heading:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	bottom: 10px;
	z-index: -1;
}
.advantages-items {
	position: relative;
}
.advantages-items:before {
	content: '';
    border-left: 0.5px solid rgba(0, 0, 0, 0.20);
    width: 1px;
    height: calc(100% + 166px);
    position: absolute;
    top: -86px;
    left: calc(180px + 25%);
    z-index: -1;
}
.advantages-item:after {
	content: '';
    border-left: 0.5px solid rgba(0, 0, 0, 0.20);
    width: 1px;
    height: calc(100% + 166px);
    position: absolute;
    top: -86px;
    left: calc(180px + 25% + 610px);
    z-index: -1;
}
.advantages-item {
	position: relative;
}
.advantages-item__wrap {
	position: relative;
	padding: 20px 0;
	border-bottom: 0.5px solid rgba(0, 0, 0, 0.20);
	display: flex;
	align-items: center;
}
.advantages-item:first-child .advantages-item__wrap {
	border-top: 0.5px solid rgba(0, 0, 0, 0.20);
}
.advantages-item__image {
	flex: 0 0 180px;
	max-width: 180px;
	height: 180px;
	overflow: hidden;
	border-radius: 30px;
}
.advantages-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.advantages-item__count {
	flex: 0 0 25%;
    max-width: 25%;
    font-size: calc(var(--h1-size) * 2);
	font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    color: #fff;
    -webkit-text-stroke-color: var(--blue-dark);
}
.advantages-item__info {
	flex: auto;
	max-width: 610px;
	padding-left: 40px;
	padding-right: 40px;
}
.advantages-item__title {
	font-size: var(--h3-size);
	font-family: 'IBM Plex Mono', monospace;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--blue-dark);
	margin-bottom: 30px;
	max-width: 300px;
}
.advantages-item__text {
	max-width: 430px;
}



.news-section .heading h2:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 30px;
	height: 30px;
	position: absolute;
	right: -66px;
	top: -30px;
	z-index: -1;
}
.news-items {
	position: relative;
	margin-bottom: calc(var(--gap) * -1);
}
.news-item {
	position: relative;
	margin-bottom: var(--gap);
}
.news-item__wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: var(--white);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.20);
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}
.news-item__image {
	position: relative;
	flex: 0 0 calc((var(--container) - 2 * var(--gap)) / 3 / 1.3125);
	max-height: calc((var(--container) - 2 * var(--gap)) / 3 / 1.3125);
}
.news-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.news-item__title {
	position: relative;
	padding: 16px 16px 0;
	font-size: var(--h5-size);
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	flex: auto;
	max-height: 100%;
}
.news-item__title a {
	color: var(--blue-dark);
}
.news-item__title a:hover {
	color: var(--black);
}
.news-item__more {
	position: relative;
	padding: 20px 16px 25px;
}
.news-button {
	position: relative;
	margin-top: 32px;
	z-index: 9;
}




.feedback-wrap {
	position: relative;
	padding: 40px 110px;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: var(--white);
	z-index: 1;
}
.feedback-wrap:before {
	content: '';
	background: url(images/blue-grid.jpg) no-repeat center;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.feedback-wrap:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	width: 30px;
	height: 30px;
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: -1;
}
.feedback-wrap .heading {
	flex: 0 0 35%;
	max-width: 35%;
	margin-bottom: 0;
}
.feedback-wrap .heading h2 {
	color: var(--white);
}
.feedback-wrap .heading h2:before {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--white);
	width: 30px;
	height: 30px;
	position: absolute;
	left: -70px;
    bottom: -30px;
	z-index: -1;
}
.feedback-form {
	flex: auto;
	max-width: 100%;
}
.feedback-form {
	position: relative;
	border-left: 1px dashed var(--white);
	padding: 40px 0 40px 100px;
	z-index: 1;
}
.feedback-text {
	font-size: var(--text-size-sm);
	margin-top: 20px;
}
.feedbackForm {
	display: flex;
	flex-wrap: wrap;
}
.feedbackForm .form-field {
	margin-right: 15px;
	flex: 0 0 calc((100% - 45px - 15px - 15px) / 2);
	max-width: calc((100% - 45px - 15px - 15px) / 2);
	margin-bottom: 0;
}
.feedbackForm .form-field-btn {
	margin-right: 0;
	flex: 0 0 45px;
	max-width: 45px;
}



.contacts-button {
	position: relative;
	margin-top: 56px;
}
.contacts-map {
	position: relative;
}
.contacts-map iframe {
	width: 100%;
	height: 515px;
	border-radius: 30px;
}


.footer {
	position: relative;
	z-index: 1;
}
.footer-top {
	position: relative;
	border-top: 1px solid;
	padding: 16px 0;
	z-index: 1;
}
.footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-logo img {
	width: 100%;
	max-width: 195px;
}
.copyright {
	position: relative;
	background-color: var(--blue-dark);
	color: var(--white);
	font-size: var(--text-size-sm);
	text-transform: uppercase;
	padding: 10px 0;
	z-index: 1;
}
.copyright a {
	color: var(--white);
}
.copyright a:hover {
	text-decoration: underline;
}



.page-header {
	position: relative;
	padding: 20px 0 30px;
}
.page-title {
	color: var(--blue-dark);
	text-transform: uppercase;
}
.error-404-number {
	font-size: calc(var(--h1-size) * 5);
	color: var(--blue);
	text-align: center;
	font-weight: 700;
	line-height: 1;
}


.navigation.pagination {
	position: relative;
	display: block;
	margin-top: 30px;
	z-index: 9;
}
.screen-reader-text {
	display: none;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-numbers {
	position: relative;
    margin-right: 5px;
    padding: 8px 12px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    border-radius: 10px;
}
.page-numbers:last-child {
	margin-right: 0;
}
.page-numbers:hover,
.page-numbers.current {
	background-color: var(--blue-dark);
	color: var(--white);
	border-color: var(--blue-dark);
}


.newsSingle-wrap {
	position: relative;
	overflow: hidden;
	line-height: 1.35;
}
.newsSingle-image {
	float: left;
	margin: 0 30px 30px 0;
}
.newsSingle-image img {
	max-width: 480px;
	border-radius: 30px;
}




.productsSingle-row {
	position: relative;
	margin-bottom: 50px;
}
.productsSingle-row:last-child {
	margin-bottom: 0;
}
.productsSingle-label {
	position: relative;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 36px;
}
.productsSingle-content {
	position: relative;
	line-height: 1.35;
	z-index: 1;
}
.productsSingle-content-plus:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/plus.svg);
	mask-image: url(images/plus.svg);
	background-color: var(--blue);
	width: 40px;
	height: 40px;
	display: block;
	margin-left: auto;
	margin-top: 30px;
}
.productsSingle-image img {
	border-radius: 30px;
}




.header-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 0 0 calc(50% - 90px);
    max-width: calc(50% - 90px);
}
.header-toggle button {
	flex: 0 0 32px;
	max-width: 32px;
	height: 32px;
	-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-color: var(--blue);
	border-radius: 0;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--blue-dark);
}


.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
  	transition: .25s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .25s;
	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;
	margin-left: auto;
	transform: translateX(100%);
	padding: 70px 20px 20px;
	transition: .25s;
	overflow: auto;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	-webkit-mask-image: url(images/cancel.svg);
	mask-image: url(images/cancel.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--blue);
	width: 24px;
	height: 24px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .25s;
}
.modal-mobile-close:hover {
	background-color: var(--blue-dark);
}




@media (max-width: 1399px) {
	:root {
		--container: 1110px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.heading {
		margin-bottom: 40px;
	}
	.headerFixed .main-menu > li {
		margin-right: 60px;
	}
	.heading-icon-before:before,
	.heading-icon-after:before {
		width: 30px;
		height: 30px;
		margin-bottom: 30px;
	}
	.about-section .heading h2:before,
	.news-section .heading h2:before,
	.advantages-section .heading:after,
	.feedback-wrap:after,
	.feedback-wrap .heading h2:before {
		width: 24px;
		height: 24px;
	}
	.about-advantages-items {
		margin-bottom: 20px;
	}
	.advantages-item__count {
	    flex: 0 0 20%;
	    max-width: 20%;
	}
	.advantages-items:before {
		left: calc(180px + 20%);
	}
	.advantages-item__info {
		max-width: 560px;
	}
	.advantages-item:after {
		left: calc(180px + 20% + 560px);
	}
	.news-item__title {
		font-size: var(--h6-size);
	}
	.feedback-wrap {
		padding: 40px 90px 40px 110px;
	}
	.contacts-map iframe {
		height: 460px;
	}
	.productsSingle-row {
		margin-bottom: 40px;
	}
	.productsSingle-content-plus:after {
		width: 30px;
		height: 30px;
		margin-top: 20px;
	}
}



@media (max-width: 1199px) {
	:root {
		--container: 930px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 65px;
		padding-bottom: 65px;
	}
	.heading {
		margin-bottom: 30px;
	}
	.header-logo img,
	.footer-logo img {
		max-width: 180px;
	}
	.header-phone {
		margin-right: 30px;
	}
	.soc-links li {
    	margin-right: 20px;
	}
	.main-menu > li {
		margin-right: 60px;
	}
	.headerFixed .main-menu > li {
    	margin-right: 30px;
	}
	.mainSlider-section {
		height: 560px;
	}
	.mainSlider-item {
		border-radius: 30px 30px 0 0;
	}
	.mainSlider-item__wrap {
		height: 560px;
		padding: 60px 0;
	}
	.mainSlider-item__title-1,
	.mainSlider-item__title-2 {
		margin-bottom: 20px;
	}
	.owl-mainSlider .owl-dots {
		bottom: 60px;
	}
	.about-subheading,
	.about-content {
		margin-bottom: 20px;
	}
	.about-advantages-item {
		margin-bottom: calc(var(--gap) / 2);
	}
	.about-advantages-item__image {
	    flex: 0 0 48px;
	    max-width: 48px;
	    margin-right: 20px;
	}
	.about-advantages-item__title {
		font-size: var(--h3-size);
	}
	.products-item__title {
		font-size: var(--h4-size);
	}
	.advantages-item__image {
	    flex: 0 0 150px;
	    max-width: 150px;
	    height: 150px;
	}
	.advantages-items:before {
	    left: calc(150px + 20%);
	}
	.advantages-item__info {
	    max-width: 480px;
	    padding-left: 30px;
	    padding-right: 30px;
	}
	.advantages-item:after {
    	left: calc(180px + 20% + 480px);
    	height: calc(100% + 130px);
    	top: -65px;
	}
	.feedback-form {
		padding: 30px 0 30px 40px;
	}
	.feedback-wrap {
    	padding: 40px 80px;
	}
	.feedback-wrap .heading h2:before {
		left: -40px;
	}
	.contacts-button {
		margin-top: 35px;
	}
	.error-404-number {
	    font-size: calc(var(--h1-size) * 6);
	}
}




@media (max-width:991px) {
	:root {
		--container: 696px;
		--gap: 24px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.headerFixed {
		display: none !important;
	}
	.header {
		position: sticky;
		top: 0;
		background-color: var(--white);
		padding: 12px 0;
		border-bottom: none;
		z-index: 99;
	}
	.header-wrap {
		align-items: center;
	}
	.header-top {
		margin-bottom: 0;
	}
	.header-logo {
		margin-right: 0;
	}
	.header-right {
		flex: 0 0 calc(50% - 90px);
		max-width: calc(50% - 90px);
		display: block;
	}
	.mainSlider-item__wrap:before,
	.about-section .heading h2:before, .news-section .heading h2:before, .advantages-section .heading:after, .feedback-wrap:after, .feedback-wrap .heading h2:before {
		display: none;
	}
	.mainSlider-item__wrap:after {
		top: 60px;
	}
	.heading-icon-before:before, .heading-icon-after:before {
		width: 24px;
		height: 24px;
		margin-bottom: 20px;
	}
	.about-image,
	.newsSingle-image {
		margin: 0 0 20px;
		float: none;
	}
	.newsSingle-image img,
	.about-image img,
	.productsSingle-image img {
		max-height: 480px;
	}
	.products-item__wrap,
	.products-item__empty {
		height: calc((var(--container) - 1 * var(--gap)) / 2);
	}
	.advantages-item:after {
		display: none;
	}
	.feedback-wrap {
    	padding: 30px;
    	display: block;
	}
	.feedback-wrap .heading {
		max-width: 100%;
	}
	.feedback-form {
		padding: 30px 0 0 0;
		border-left: none;
	}
	.contacts-button {
		margin-top: 20px;
	}
	.contacts-map {
		margin-top: 30px;
	}
	.contacts-map iframe {
		height: calc(var(--container) / 2);
	}
	.footer-wrap {
		flex-direction: column;
	}
	.footer-logo {
		margin-bottom: 20px;
	}


	.main-menu {
		display: block;
		font-size: var(--h6-size);
	}
	.main-menu > li {
		position: relative;
		padding: 10px 0;
		margin-right: 0;
	}
	.main-menu > li.menu-item-has-children {
		flex-wrap: wrap;
	}
	.main-menu > li > a {
		min-height: auto;
		order: 1;
		flex: 0 0 100%;
	    max-width: 100%;
	    width: 100%;
	}
	.main-menu > li.menu-item-has-children > a {
		flex: 0 0 calc(100% - 24px);
	    max-width: calc(100% - 24px);
	    width: calc(100% - 24px);
	    padding-right: 10px;
	}
	.main-menu-chevrone {
		flex: 0 0 24px;
	    max-width: 24px;
	    width: 24px;
	    height: 24px;
		order: 2;
	}
	.main-menu ul {
		position: relative;
		top: 0;
		border-radius: 0;
		padding: 15px 0 0 15px;
		box-shadow: none;
		width: 100%;
		max-height: 100% !important;
		order: 3;
	}
	.main-menu > li:hover > ul {
		display: none;
	}
	.main-menu > li.active > ul,
	.main-menu > li.active > ul ul {
		display: block;
	}
	.main-menu-chevrone {
		cursor: pointer;
	}
	.main-menu ul .main-menu-chevrone {
		display: none;
	}
	.main-menu li:hover > .main-menu-chevrone {
		transform: rotate(0deg);
	}
	.main-menu li.active > .main-menu-chevrone {
		transform: rotate(180deg);
	}
	.main-menu > li > ul li {
		display: block;
		padding-right: 0 !important;
		margin-bottom: 15px;
	}
	.main-menu > li > ul li:last-child {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.main-menu ul li a {
		padding: 0;
	}
	.main-menu ul ul {
		top: 0;
		left: 0;
	}
	.productsSingle-content-plus:after {
	    width: 24px;
	    height: 24px;
	    margin-top: 10px;
	}
	.productsSingle-label {
		margin-bottom: 20px;
	}
	.productsSingle-row {
		margin-bottom: var(--gap);
	}
	.news-item__image {
	    flex: 0 0 calc((var(--container) - var(--gap)) / 2 / 1.3125);
	    max-height: calc((var(--container) - var(--gap)) / 2 / 1.3125);
	}
}




@media (max-width: 767px) {
	:root {
		--container: 516px;
		--gap: 24px;

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.owl-mainSlider .owl-dots {
		display: none;
	}
	.mainSlider-item__title-1 {
		max-width: calc(100% - 40px);
	}
	.advantages-items:before {
		display: none;
	}
	.advantages-item__wrap {
		flex-wrap: wrap;
	}
	.advantages-item__count {
		flex: 0 0 calc(100% - 150px);
		max-width: calc(100% - 150px);
	}
	.advantages-item__info {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0;
		margin-top: 20px;
	}
	.advantages-item__title {
		margin-bottom: 10px;
	}
}




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

		--text-size: 15px;
		--text-size-sm: 14px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.mainSlider-item__title-1, .mainSlider-item__title-2 {
		font-size: calc(var(--h2-size) * 1.6);
	}
	.header-logo img, .footer-logo img {
		max-width: 140px;
	}
	.mainSlider-section {
		height: calc(100vh - 140px);
	}
	.mainSlider-item__wrap {
    	height: calc(100vh - 140px);
    	padding: 40px 0;
	}
	.products-item__wrap, .products-item__empty {
	    height: calc(var(--container) / 1.45);
	}
	.news-item__image {
	    flex: 0 0 calc(var(--container) / 1.45);
	    max-height: calc(var(--container) / 1.45);
	}
	.feedback-wrap .heading {
		max-width: 300px;
	}
	.feedback-form {
		padding-top: 20px;
	}
	.feedbackForm .form-field {
	    margin-right: 0;
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin-bottom: 12px;
	}
	.feedbackForm .form-field-btn {
		margin-right: 0;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: right;
	}
	.contacts-info li {
		padding: 15px 0;
	}
	.error-404-number {
    	font-size: calc(var(--h1-size) * 5);
	}
}