/*!
Theme Name: TBF
Theme URI: http://underscores.me/
Author: WEB TOP
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: tbf
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.

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

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
	--main-color: #FF573D;
	--second-color: #374D6A;
	--text-color: #4D555E;
}


body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	line-height: 1.45;
	color: var(--text-color);
}
img {
	width: auto;
	height: inherit;
	max-width: 100%;
	max-height: 100%;
}
a, a:hover {
	color: var(--text-color);
	text-decoration: none;
	transition: .25s;
}
b, strong {
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: bold;
	margin-bottom: 15px;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 32px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 21px;
}
h6 {
	font-size: 18px;
}
p {
	margin-bottom: 15px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child {
	margin-bottom: 0;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 12px 22px;
	background: #F0F0F0;
	border-radius: 10px;
	border: 1px solid var(--text-color);
	outline: none !important;
	line-height: 1.5;
}
textarea {
	height: 180px;
}

.form-field {
	position: relative;
	margin-bottom: 15px;
}
.wpcf7-form-control-wrap {
	display: block;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
}
.wpcf7-spinner {
	position: absolute;
}



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



.btn {
  font-weight: 500;
  color: var(--text-color);
  border: 1px solid transparent;
  padding: 12px 25px;
  border-radius: 10px;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.btn:hover {
  color: var(--text-color);
}
.btn:focus, .btn.focus {
  box-shadow: none;
}
.btn-primary,
.btn-primary:focus, .btn-primary.focus,
.btn-primary.disabled, .btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: none;
}
.btn-primary:hover {
  color: var(--main-color);
  background-color: #fff;
  border-color: var(--main-color);
}
.btn-secondary,
.btn-secondary:focus, .btn-secondary.focus,
.btn-secondary.disabled, .btn-secondary:disabled,
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  color: #fff;
  background-color: var(--second-color);
  border-color: var(--second-color);
  box-shadow: none;
}
.btn-secondary:hover {
  color: var(--second-color);
  background-color: #fff;
  border-color: var(--second-color);
}





.wrapper {
	position: relative;
}

.top-bar {
	position: relative;
	background: #F0F0F0;
	padding: 10px 0;
}
.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top-bar-inner p {
	position: relative;
	margin-bottom: 0;
	font-weight: 300;
	padding-left: 26px;
}
.top-bar-inner p:before {
	content: '';
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 2px;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}
.top-bar-address:before {
  -webkit-mask-image: url(images/pin.svg);
  mask-image: url(images/pin.svg);
}
.top-bar-email:before {
  -webkit-mask-image: url(images/mail.svg);
  mask-image: url(images/mail.svg);
}
.top-bar-inner p a:hover {
	color: var(--main-color);
}


.header {
	position: relative;
	padding: 25px 0;
	z-index: 10;
}
.header-inner {
	display: flex;
	align-items: center;
}
.header-worktime {
	position: relative;
	flex: 0 0 calc(50% - 115px);
	max-width: calc(50% - 115px);
	padding-left: 30px;
	font-weight: 500;
	line-height: 1.8;
}
.header-worktime:before {
	content: '';
	width: 21px;
	height: 21px;
	position: absolute;
	left: 0;
	top: calc(50% - 11px);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/access_time.svg);
  mask-image: url(images/access_time.svg);
  background-color: var(--main-color);
}
.header-logo {
	flex: 0 0 230px;
	max-width: 230px;
}
.header-right {
	flex: 0 0 calc(50% - 115px);
	max-width: calc(50% - 115px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-phone {
	position: relative;
	flex: 0 0 180px;
	max-width: 180px;
	padding-left: 30px;
	margin-right: 50px;
	font-weight: 500;
	line-height: 1.8;
}
.header-phone:before {
	content: '';
	width: 21px;
	height: 21px;
	position: absolute;
	left: 0;
	top: calc(50% - 11px);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/phone_in_talk.svg);
  mask-image: url(images/phone_in_talk.svg);
  background-color: var(--main-color);
}
.header-phone p {
	margin-bottom: 0;
}
.header-phone p a:hover {
	color: var(--main-color);
}
.header-lang {
	position: relative;
}
.header-lang > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-lang > ul > li {
	position: relative;
}
.header-lang > ul > li > a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding: 8px 30px 8px 47px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  text-transform: uppercase;
}
.header-lang > ul > li > a:before {
	content: '';
	position: absolute;
	left: 18px;
	top: calc(50% - 11px);
	width: 21px;
	height: 21px;
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/language.svg);
  mask-image: url(images/language.svg);
  background-color: var(--main-color);
}
.header-lang > ul > li > a:after {
	content: '';
	background: url(images/chevron.svg) no-repeat center;
	background-size: contain;
	width: 10px;
	height: 6px;
	position: absolute;
	right: 18px;
	top: calc(50% - 2px);
	transition: .25s;
}
.header-lang > ul > li:hover > a {
	border-color: var(--main-color);
}
.header-lang > ul > li:hover > a:after {
	transform: rotate(180deg);
}
.header-lang > ul > li > ul {
	margin-bottom: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	width: 100%;
	background-color: var(--second-color);
	border-radius: 5px;
	transform: translateY(30px);
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease;
  pointer-events: none;
}
.header-lang > ul > li:hover > ul {
	pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.header-lang > ul > li > ul > li {
	position: relative;
	border-bottom: 1px solid #fff;
}
.header-lang > ul > li > ul > li:last-child {
	margin-bottom: 0;
}
.header-lang > ul > li > ul > li > a {
	color: #fff;
	display: block;
	text-align: center;
	padding: 5px;
	text-transform: uppercase;
}
.header-lang > ul > li > ul > li > a:hover {
	background-color: var(--main-color);
}

.main-navigation {
	position: sticky;
	top: 0;
	z-index: 9;
	border-bottom: 4px solid #F0F0F0;
	background-color: #fff;
}
.main-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #f0f0f0;
}
.main-menu > li {
	position: relative;
	margin-right: 80px;
}
.main-menu > li:last-child {
	margin-right: 0;
}
.main-menu > li > a {
  font-weight: 500;
  display: flex;
  position: relative;
  text-transform: uppercase;
  align-items: center;
  height: 60px;
}
.main-menu > li:hover > a {
	color: var(--main-color);
}
.main-menu > li.menu-item-has-children > a:after {
	content: '';
	background: url(images/chevron.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 10px;
	max-width: 10px;
	height: 6px;
	margin-left: 4px;
	transition: .25s;
}
.main-menu > li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}
.main-menu > li > ul {
	margin-bottom: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	width: 220px;
	background-color: var(--second-color);
	border-radius: 5px;
	transform: translateY(30px);
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease;
  pointer-events: none;
}
.main-menu > li:hover > ul {
	pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.main-menu > li > ul > li {
	position: relative;
	border-bottom: 1px solid #fff;
}
.main-menu > li > ul > li:last-child {
	border-bottom: none;
}
.main-menu > li > ul > li > a {
	color: #fff;
	display: block;
	padding: 7px 15px;
}
.main-menu > li > ul > li > a:hover {
	background-color: var(--main-color);
}



.main-block {
	position: relative;
	height: 720px;
	display: flex;
	align-items: center;
}
.main-block-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.main-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.main-block-image:after {
	content: '';
	background-color: rgba(0,0,0,.2);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.main-block-content {
	position: relative;
	color: #fff;
}
.main-block-content h1 {
	font-size: 56px;
}
.main-block-btn {
	position: relative;
	margin-top: 100px;
}
.main-block-btn a {
	min-width: 200px;
}




.advantages {
	position: relative;
	padding: 120px 0;
}
.advantages__items {
	position: relative;
	margin-bottom: -30px;
}
.advantages__item {
	position: relative;
	margin-bottom: 30px;
}
.advantages__item-inner {
	display: flex;
	align-items: center;
}
.advantages__item-image {
	flex: 0 0 120px;
	max-width: 120px;
}
.advantages__item p {
	flex: 0 0 calc(100% - 120px);
	max-width: calc(100% - 120px);
	padding-left: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 18px;
}



.heading {
	position: relative;
	margin-bottom: 35px;
}
.heading h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 36px;
  max-width: 660px;
  padding: 0 70px;
  width: max-content;
  text-align: center;
}
.heading.center h2 {
	margin-left: auto;
	margin-right: auto;
}
.heading h2:before,
.heading h2:after {
	content: '';
	background: url(images/heading-element.svg) no-repeat center;
	background-size: contain;
	width: 54px;
	height: 5px;
	position: absolute;
	top: 18px;
}
.heading h2:before {
	left: 0;
}
.heading h2:after {
	right: 0;
	transform: scale(-1, 1);
}




.products {
	position: relative;
}
.products-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.products-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.products-bg:after {
	content: '';
	background: rgba(55, 77, 106, 0.3);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.products-inner {
	position: relative;
	padding: 120px 0;
	margin-bottom: 60px;
	z-index: 1;
}
.products-inner:before {
  content: '';
  background: rgba(255, 87, 61, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 60px;
  right: 0;
  width: calc((100% - 1310px) / 2 + 550px);
  height: 100%;
  z-index: -1;
}
.products-info {
	position: relative;
}
.products .heading {
	margin-bottom: 60px;
}
.products .heading h2 {
	color: #fff;
}
.products-content {
	color: #fff;
	font-size: 21px;
}
.products-items {
	position: relative;
	padding-top: 60px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.products-item {
	position: relative;
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
	background: #f5f5f5;
}
.home .products-item {
	background: #fff;
}
.products-item-image {
	position: relative;
	height: 290px;
	margin-bottom: 20px;
}
.products-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.products-item h3 {
	margin: 0 25px 10px;
	font-size: 21px;
}
.products-item p {
	margin: 0 25px 15px;
	min-height: 69px;
}
.products-item-btn {
	margin: 0 25px 25px;
}



.banner {
	position: relative;
	padding: 120px 0;
}
.banner-inner {
	position: relative;
	padding: 60px 0;
	margin-top: 95px;
	z-index: 1;
}
.banner-inner:before {
  content: '';
  background: rgba(255, 87, 61, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  top: -60px;
  left: 0;
  width: calc((100% - 1310px) / 2 + 220px);
  height: calc(100% - 60px);
  z-index: -1;
}
.banner-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
}
.banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.banner-bg:after {
	content: '';
	background: rgba(55, 77, 106, 0.3);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.banner-info {
	position: relative;
}
.banner-text {
	text-align: center;
	font-size: 24px;
	color: #fff;
	margin-top: 50px;
	margin-bottom: 50px;
	text-transform: uppercase;
}
.banner-content {
	width: max-content;
	max-width: 100%;
	background: rgba(255, 87, 61, 0.8);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  color: #fff;
  font-size: 21px;
  margin: 0 auto;
}
.banner-content a {
	color: #fff;
}
.banner-content a:hover {
	opacity: .8;
}



.about-us {
	position: relative;
	padding: 120px 0;
}
.about-us-image {
	position: relative;
	padding: 35px;
	width: max-content;
	max-width: 100%;
	z-index: 1;
}
.about-us-image:before,
.about-us-image:after {
	content: '';
	border: 15px solid var(--main-color);
	width: 70%;
	height: 75%;
	position: absolute;
	z-index: -1;
}
.about-us-image:before {
	top: 0;
	left: 0;
}
.about-us-image:after {
	bottom: 0;
	right: 0;
}
.about-us-info {
	position: relative;
	padding: 35px 0;
}
.about-us-content {
	position: relative;
	margin-bottom: 40px;
}
.about-us-advantages__items {
	position: relative;
}
.about-us-advantages__item {
	display: flex;
	margin: 0 0 30px
}
.about-us-advantages__image {
	flex: 0 0 80px;
	max-width: 80px;
}
.about-us-advantages__info {
	flex: 0 0 calc(100% - 80px);
	max-width: calc(100% - 80px);
	padding-left: 20px;
}
.about-us-advantages__item h5 {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 10px;
}
.about-us-additional-images {
	position: relative;
	margin-top: 80px;
}
.about-us-additional-image {
	position: relative;
	height: 320px;
	max-width: calc(100% - 50px);
	margin: 0 auto;
}
.about-us-additional-image-1 {
	padding: 0 30px 30px 0;
}
.about-us-additional-image-2 {
	padding: 30px 30px 0 0;
}
.about-us-additional-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about-us-additional-image-1:after,
.about-us-additional-image-2:after {
	content: '';
	border: 10px solid var(--second-color);
	width: 80%;
	height: 80%;
	position: absolute;
	z-index: -1;
}
.about-us-additional-image-1:after {
	bottom: 0;
	right: 0;
}
.about-us-additional-image-2:after {
	top: 0;
	right: 0;
}
.about-us-btn {
	margin-top: 50px;
}




.feedback {
	position: relative;
	margin-top: 60px;
}
.feedback-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.feedback-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.feedback-bg:after {
	content: '';
	background: rgba(55, 77, 106, 0.3);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.feedback-inner {
	position: relative;
	padding: 60px 0;
	z-index: 1;
}
.feedback-inner:before {
  content: '';
  background: rgba(255, 87, 61, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  top: -60px;
  left: 0;
  width: calc((100% - 1310px) / 2 + 450px);
  height: calc(100% - 60px);
  z-index: -1;
}
.feedback-image img {
	max-height: 520px;
}
.feedback-info {
	position: relative;
}
.feedback .heading h2 {
	color: #fff;
}
.feedback-text {
	position: relative;
	margin-bottom: 30px;
	color: var(--main-color);
	font-size: 21px;
}
.feedback-form .wpcf7 form .wpcf7-response-output {
	color: #fff;
}



.footer {
	position: relative;
	background: #F0F0F0;
	padding: 60px 0;
}
.footer-widget {
	position: relative;
}
.footer-widget > h5 {
	margin-bottom: 20px;
	color: var(--main-color);
}
.footer-logo {
	max-width: 200px;
	margin-top: 20px;
}
.footer-widget p,
.footer-menu li {
	margin-bottom: 8px;
}
.footer-widget p:last-child,
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-widget p a:hover {
	color: var(--main-color);
}
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu li a {
	font-weight: bold;
}
.footer-menu li a:hover {
	color: var(--main-color);
}
.copyright {
	position: relative;
	padding: 8px 0;
	background: var(--second-color);
	color: #fff;
	font-size: 14px;
}
.copyright a {
	color: #fff;
}
.copyright a:hover {
	opacity: .8;
}



.page-wrapper {
	padding: 25px 0 120px;
}
.page-header {
	position: relative;
	margin-bottom: 35px;
}
.aioseo-breadcrumbs {
	margin-bottom: 20px;
}
.page-title h1 {
  position: relative;
  text-transform: uppercase;
  font-size: 36px;
  max-width: 780px;
  padding: 0 70px;
  width: max-content;
  text-align: center;
}
.page-title.center h1 {
	margin-left: auto;
	margin-right: auto;
}
.page-title h1:before,
.page-title h1:after {
	content: '';
	background: url(images/heading-element.svg) no-repeat center;
	background-size: contain;
	width: 54px;
	height: 5px;
	position: absolute;
	top: 18px;
}
.page-title h1:before {
	left: 0;
}
.page-title h1:after {
	right: 0;
	transform: scale(-1, 1);
}


.error-404-number {
	text-align: center;
	font-size: 220px;
	color: var(--main-color);
	font-weight: bold;
	line-height: 1;
}

.page-content table {
	width: 100%;
	border: 3px solid var(--second-color);
}
.page-content table td {
	padding: 8px 12px;
}
.page-content table tr:nth-child(2n) td {
	background: #f5f5f5;
}

.iframe-map {
	position: relative;
}
.iframe-map iframe {
	width: 100%;
	height: 420px;
}


.feedback .heading h2 {
	max-width: 100%;
}




.modal .close {
	position: absolute;
	-webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  background-color: var(--main-color);
  top: 20px;
  right: 20px;
  opacity: 1;
  z-index: 99;
  width: 24px;
  height: 24px;
}




@media (max-width: 1399px) {
	.main-block {
		height: 650px;
	}
	.main-block-content h1 {
    font-size: 48px;
	}
	.main-block-btn {
		margin-top: 60px;
	}
	.advantages,
	.products-inner,
	.banner,
	.about-us {
		padding: 90px 0;
	}
	.page-wrapper {
		padding-bottom: 90px;
	}
	.advantages__item-image {
    flex: 0 0 100px;
    max-width: 100px;
	}
	.advantages__item p {
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
	}
	.products .heading {
    margin-bottom: 40px;
	}
	.products-inner:before {
		width: calc((100% - 1110px) / 2 + 550px);
	}
	.banner-inner:before {
		width: calc((100% - 1110px) / 2 + 220px);
	}
	.feedback-inner:before {
		width: calc((100% - 1310px) / 2 + 450px);
	}


	.gallery-columns-4 .gallery-item {
    height: 210px;
	}
	.gallery-columns-5 .gallery-item {
    height: 230px;
	}
	.iframe-map iframe {
		height: 350px;
	}
	.error-404-number {
		font-size: 200px;
	}
}




@media (max-width: 1199px) {
	h1,
	.page-title h1,
	.heading h2 {
		font-size: 32px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 24px;
	}
	h4 {
		font-size: 21px;
	}
	h5 {
		font-size: 18px;
	}
	h6 {
		font-size: 16px;
	}
	.header {
		padding: 20px 0;
	}
	.header-phone {
		margin-right: 30px;
	}
	.main-menu > li > a {
		height: 54px;
	}
	.main-block {
    height: 520px;
	}
	.main-block-content h1 {
    font-size: 42px;
	}
	.heading h2:before, .heading h2:after {
		top: 15px;
	}
	.advantages__item-image {
    flex: 0 0 80px;
    max-width: 80px;
	}
	.advantages__item p {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    font-size: 16px;
	}

	.products-content,
	.banner-content {
		font-size: 18px;
	}
	.products-content p {
		margin-bottom: 5px;
	}
	.products-item-image {
		height: 240px;
	}
	.products-item h3 {
		font-size: 18px;
	}
	.products-inner:before {
    width: calc((100% - 930px) / 2 + 550px);
	}
	.banner-inner:before {
    width: calc((100% - 930px) / 2 + 220px);
	}
	.banner-text {
		font-size: 21px;
		margin-bottom: 30px;
	}

	.about-us-advantages__image {
    flex: 0 0 64px;
    max-width: 64px;
	}
	.about-us-advantages__info {
    flex: 0 0 calc(100% - 64px);
    max-width: calc(100% - 64px);
    padding-left: 10px;
	}
	.about-us-advantages__item h5 {
		font-size: 18px;
	}
	.about-us-image {
		padding: 25px;
	}
	.about-us-image:before, .about-us-image:after {
		border-width: 10px;
	}
	.about-us-additional-image {
		height: 240px;
		width: calc(100% - 40px);
	}
	.about-us-additional-image-1 {
    padding: 0 20px 20px 0;
	}
	.about-us-additional-image-2 {
    padding: 20px 20px 0 0;
	}
	.about-us-additional-image-1:after, .about-us-additional-image-2:after {
		border-width: 7px;
	}
	.gallery-columns-4 {
    grid-template-columns: repeat(3, 1fr);
	}
	.gallery-columns-5 {
    grid-template-columns: repeat(4, 1fr);
	}
	.iframe-map iframe {
    height: 240px;
	}
}



@media (max-width: 991px) {
	.header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.15);
	}
	.header-right {
    flex: 0 0 calc(100% - 230px);
    max-width: calc(100% - 230px);
	}
	.header-toggle {
		flex: 0 0 66px;
		max-width: 66px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.header-toggle button {
		flex: 0 0 36px;
		max-width: 36px;
		height: 36px;
		-webkit-mask-size: contain;
	  -webkit-mask-repeat: no-repeat;
	  -webkit-mask-position: center;
	  -webkit-mask-image: url(images/menu.svg);
	  mask-image: url(images/menu.svg);
	  background-color: var(--main-color);
		border: none;
		border-radius: 0;
		padding: 0;
		outline: none !important;
		transition: .25s;
	}
	.header-toggle button:hover {
		background-color: var(--second-color);
	}
	.main-block {
    height: 480px;
	}
	.main-block-content h1 {
    font-size: 36px;
	}
	.main-block-btn {
    margin-top: 30px;
	}
	.advantages, .products-inner, .banner, .about-us,
	.feedback-inner {
    padding: 65px 0;
	}
	.heading h2 {
		max-width: 100%;
	}
	.products-inner {
		margin-bottom: 0;
	}
	.products-inner:before {
    width: calc((100% - 690px) / 2 + 550px);
    height: 500px;
    top: inherit;
    bottom: 35px;
	}
	.banner-inner {
		margin-top: 0;
	}
	.banner-inner:before {
		display: none;
	}
	.banner-image {
		text-align: center;
	}
	.about-us-image {
    max-width: 360px;
    margin: 30px auto 0;
	}
	.about-us-additional-images {
		margin-top: 0;
	}
	.about-us-additional-image {
    height: 240px;
    width: 100%;
    max-width: 420px;
	}
	.about-us-additional-image-1:after {
		top: 0;
	}
	.about-us-additional-image-2:after {
		left: 0;
	}
	.about-us-additional-image-1 {
    padding: 20px 20px 0px 0;
    margin-bottom: 30px;
	}
	.about-us-additional-image-2 {
		padding: 20px 0 0 20px;
	}
	.feedback-image,
	.feedback-inner:before {
		display: none;
	}
	.feedback {
		margin-top: 0;
	}
	.footer-widget {
		margin-bottom: 30px;
	}

	.gallery-columns-4 {
    grid-template-columns: repeat(2, 1fr);
	}
	.gallery-columns-5 {
    grid-template-columns: repeat(3, 1fr);
	}
	.iframe-map {
		margin-bottom: 20px;
	}
	.iframe-map iframe {
		height: 320px;
	}
	.page-header,
	.heading,
	.products .heading {
		margin-bottom: 30px;
	}
	.page-wrapper {
    padding-bottom: 65px;
	}

	#mobileModal {
		padding: 0 !important;
	}
	#mobileModal .modal-dialog {
		max-width: 100%;
		margin: 0;
	}
	#mobileModal .modal-content {
		height: 100%;
		min-height: 100vh;
	}
	#mobileModal .modal-body {
		padding: 60px 30px 30px;
	}
	#mobileModal .modal-close {
		position: absolute;
		right: 20px;
		top: 20px;
	}
	.main-menu {
		flex-direction: column;
		border-top: none;
	}
	.main-menu li {
		margin-right: 0;
		text-align: center;
	}
	.main-menu > li > a {
		justify-content: center;
	}
	.main-menu > li.menu-item-has-children > a:after {
		display: none;
	}
	.main-menu > li > ul {
		position: relative;
		pointer-events: all;
		opacity: 1;
		transform: translateY(0);
		background: #f5f5f5;
		border-radius: 0;
	}
	.main-menu > li > ul > li > a {
		text-transform: uppercase;
		font-weight: 500;
		color: var(--text-color);
	}
	.error-404-number {
    font-size: 160px;
	}
	.page-title h1 {
		max-width: 100%;
	}
}



@media (max-width: 767px) {
	body {
		font-size: 15px;
	}
	h1,
	.page-title h1,
	.heading h2 {
		font-size: 28px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 21px;
	}
	h4 {
		font-size: 18px;
	}
	h5 {
		font-size: 16px;
	}
	h6 {
		font-size: 15px;
	}
	.header {
		padding: 15px 0;
	}
	.header-logo {
		flex: 0 0 calc(100% - 185px);
		max-width: calc(100% - 185px);
	}
	.header-logo img {
		max-width: 200px;
		width: 100%;
	}
	.header-right {
    flex: 0 0 185px;
    max-width: 185px;
	}
	.header-toggle {
		flex: 0 0 56px;
		max-width: 56px;
	}
	.main-block {
    height: 420px;
	}
	.main-block-content h1 {
    font-size: 32px;
	}
	.advantages__item-image {
    flex: 0 0 68px;
    max-width: 68px;
	}
	.advantages__item p {
    flex: 0 0 calc(100% - 68px);
    max-width: calc(100% - 68px);
    font-size: 15px;
    padding-left: 10px;
	}
	.products-inner:before {
		height: 525px;
		width: 70%;
	}

	.alignleft,
	.alignright,
	.aligncenter {
		float: none;
		margin-right: 0;
		margin-bottom: 15px;
		display: block;
	}
	.gallery-columns-5 {
    grid-template-columns: repeat(2, 1fr);
	}
	.feedback-text {
		font-size: 18px;
		margin-bottom: 20px;
	}
}



@media (max-width: 575px) {
	.main-block-content h1 {
    font-size: 28px;
	}
	.heading h2 {
		font-size: 24px;
		padding: 0 45px;
	}
	.heading h2:before, .heading h2:after {
		width: 42px;
		height: 4px;
		top: 10px;
	}
	.advantages__item p br,
	.footer-widget p br {
		display: none;
	}
	.products-content, .banner-content {
    font-size: 16px;
	}
	.products-items {
		padding-top: 30px;
		justify-content: center;
	}
	.products-item {
		flex: 0 0 320px;
		max-width: 320px;
		margin-bottom: 30px;
	}
	.products-item:last-child {
		margin-bottom: 0;
	}
	.products-item p {
		min-height: inherit;
	}
	.gallery-columns-4 .gallery-item,
	.gallery-columns-5 .gallery-item {
		height: inherit;
	}
	.error-404-number {
    font-size: 140px;
	}
}