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


body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
}

img {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

a {
	text-decoration: none !important;
}

html,
body {
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	position: relative;
	width: 100%;
	min-width: 320px;
	min-height: 100vh;
	margin: 0 auto;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	color: #000;
	font-size: 18px;
	background-color: #fff;
	overflow-x: hidden;
	transition: all 0.3s ease-in-out;
}

.main {
	flex: 1 0 auto;
}

.main__container {
	width: 100%;
	max-width: 1384px;
	margin: 100px auto 0;
	padding: 0 20px;
}


.c-catalog-section-list {
	margin: 0 !important;
}

.tabs {
	position: relative;
	display: flex;
	flex-direction: column;

}

.tabs__nav {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1134px;
	margin: 0 auto;
	row-gap: 15px;
	column-gap: 30px;
	padding: 0 8.5px;
}

.tab-button {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0;
	background-color: transparent !important;
	border: none !important;
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 18px;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.tab-button:hover {
	color: #be0201;
}

.tab-button.active {
	color: #be0201;
}

.section-nav-btn {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 170px;
	margin: 40px 0 0 auto;
	color: #be0201;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.section-nav-btn:hover {
	color: #f80000;
}

.section-nav-btn svg {
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.section-nav-btn svg path {
	transition: all 0.3s ease-in-out;
}

.section-nav-btn:hover svg path {
	stroke: #f80000;
}

.tabs__content {
	position: relative;
	margin: 21px 0 0;
}

.tab-item {
	display: none;
}

.tab-item.show {
	display: block;
}

.fade {
	transition: opacity .15s linear
}

.fade:not(.show) {
	opacity: 0;
}

.tabs__list {
	position: relative;
	margin: 0;
}

.tab-card {
	position: relative;
	cursor: pointer;
	width: 100%;
	max-width: 440px;
}

.tabs__list.tabs-section {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.tabs__list.tabs-section .tab-card {
  padding: 10px;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.tab-card-1 {
  height: 142px;
}

.hidden-item {
  display: none !important;
}
.price-list.expanded {
  height: auto !important;
  overflow: visible !important;
}

@media (max-width: 1259px) {
	.tabs__list.tabs-section .tab-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
	.tab-card {
		max-width: 100%;
	}
}

@media (max-width: 767px) { 

.tabs__list.tabs-section .tab-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

}

.masonry-layout {
	position: relative;
	grid-template-columns: repeat(3, 1fr);
	display: grid;
	gap: 20px;
}

.masonry-layout>div {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.masonry-layout.columns-1 {
	grid-template-columns: 1fr;
}

.masonry-layout.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.masonry-layout.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.tab-card__wrapper {
	display: block;
	position: relative;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #eee;
	overflow: hidden;
}

@media (max-width: 1259px) {
	.tab-card__wrapper {
		padding: 10px;
	}
}

.tab-card__picture {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
}

.tab-card__picture a {
	display: block;
	position: relative;
	text-decoration: none;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 100%;
}

.intec-image-effect:hover {
	opacity: 1;
	animation: intec-image-effect-flash 1.5s;
}

@-webkit-keyframes intec-image-effect-flash {
	0% {
		opacity: 0.4;
	}

	100% {
		opacity: 1;
	}
}

@keyframes intec-image-effect-flash {
	0% {
		opacity: 0.4;
	}

	100% {
		opacity: 1;
	}
}

.tab-card__name {
	color: #be0201;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.tab-card__name:hover {
	color: #f80000;
}

@media (max-width: 767px) {
	.tab-card__name {
		font-size: 16px;
	}
}

.tab-card__descr {
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.tab-card__f-first {
	display: flex;
	position: relative;
	gap: 5px;
}

.tab-card__info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px 0;
}

.tab-card__f-second {
	display: flex;
	width: 100%;
}

.tab-card__f-third {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.tab-btn-more {
	display: flex;
	align-items: center;
	background-color: transparent;
	border: none;
	color: #000;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 13px;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.tab-btn-more:hover {
	color: #f80000;
}

.price-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 12px 0 4px;
}

.price-list__item {
	display: flex;
	align-items: center;
	padding-top: 8px;
	padding-bottom: 8px;
	border-top: 1px solid #E6E6E6;
}

.price-list__item-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
}

.price-list__item-name,
.price-list__item-value {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.price-list__item-name {
	color: #be0201;
}

.price-list > li {
	padding: 8px 0 !important;
}

@media (max-width: 459px) {
	.price-list__item-name  {
		width: 100%;
		max-width: 190px;
	}
}

@media (max-width: 374px) {
	.price-list__item-name  {
		max-width: 150px;
	}

}

.price-list__item-value {
	color: #000;
	width: 95px;
}
ul > li:before{
	content: none !important;
}
.header-services-section {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 20px;
}
.services-section-title{
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.3;
    color: #1b1e25;
}