:root {
	--cont_padd : 55;
	--main_color : rgba(44, 70, 104, 1);
	--secondary_color : rgba(203, 0, 0, 1);
}
* {
	box-sizing: border-box;
	outline: 0!important;
}
html {
	font-size:16px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #000;
}
body {
	margin: 0;
	padding: 0;
	background: #EAEAF2;
	font-size: clamp(12px, 7px + 2vw, 16px);
}
a {
	color: var(--main_color);
}
a:hover {
	color: var(--secondary_color);
	transition: all .6s;
}
header {
	background: #fff;
	padding: 15px 0 0 0;
	position: fixed;
	width: 100%;
	top:0;
	left: 0;
	z-index: 10;
	box-shadow: 0 0 14px 0 rgba(0,0,0,.15);
}
.container {
	margin: 0 auto;
	padding: 0 15px;
	width: calc(100% - var(--cont_padd) * 2 / 1920 * 100%);
}
.row {
	display: flex;
	flex-wrap: wrap;
}
header .row,
footer .row {
	gap:15px 32px;
}
header a {
	color:#000;
}
.mobile_menu {
	display: none;
}
.logotype {
	display: flex;
	align-items: center;
	gap:10px;
}
.logotype .logo {
	display: block;
}
.logotype .logo {
	width: 248px;
	height: 64px;
}
.logotype .logo img {
    width:100%;
    height:100%;
    object-fit:contain;
}
.logotype_text {
	width: 165px;
}
.logotype_text .title_logotype_text {
	font-size: clamp(14px, 7px + 2vw, 22px);
	line-height: 1.35;
}
.text_logotype_text {
	font-size: 12px;
}
.header_block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:0 15px;
	align-items: center;
	width: calc( 100% - 300px );
}
.header_block nav {
	width: 100%;
}
.header_block nav ul {
	list-style: none;
	padding: 0;
	margin:0;
}
ul.main_nav {
	display: flex;
	gap:45px;
	align-items: center;
	text-transform: uppercase;
	position: relative;
}
ul.main_nav li.main_nav {
	padding: 1em 0;
}
ul.main_nav ul.submenu {
	display: none;
	background: #EAEAF2;
	position: absolute;
	padding: 30px 40px;
	width: 100%;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
ul.main_nav > li.main_nav:hover > ul.submenu {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap:20px 30px;
    left: -145px;
    top: 51px;
    max-width: 1240px;
    width: 100%;
}
ul.submenu li a {
	padding: 10px;
	border-radius: 8px;
	background: #fff;
	color: #212529;
	display: flex;
	align-items: center;
	gap:10px;
	text-decoration: none;
	font-size: 20px;
	text-transform: initial;
	min-height: 80px;
}
ul.submenu li:hover a {
	box-shadow: 0 0 10px 4px rgba(0,0,0,.25);
	color: var(--secondary_color);
}
ul.submenu li img {
	width: 50px;
}
ul.submenu li span {
	flex: 1 1 0;
}

.phones_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 40px;
}
.phones_block .phone {
	display: flex;
	flex-flow: column;
	gap:5px;
	align-items: center;
}
.content_phone {
	display: flex;
	align-items: center;
	gap:15px;
	text-decoration: none;
}
.content_phone img {
	width: 22px;
}
.content_phone span {
	width: calc( 100% - 37px );
	font-size: clamp(14px, 7px + 2vw, 20px);
}
.phone .work_time {
	font-size: clamp(12px, 7px + 2vw, 14px);
	text-align: right;
	width: 100%;
	cursor: default;
}
.geo_location {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap:15px;
	width: 300px;
}
.geo_location .cfcity {
	width: 100%;
}
.geo_location .envelope {
	display: flex;
	align-items: center;
	gap:10px;
	text-decoration: none;
}

/* WebKit, Edge */
input::-webkit-input-placeholder {
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* Firefox 4-18 */
input:-moz-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
 opacity: 1;
}

/* Firefox 19+ */
input::-moz-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
 opacity: 1;
}

/* IE 10-11 */
input:-ms-input-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* Edge */
input::-ms-input-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* MODERN BROWSER */
input::placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}
/* WebKit, Edge */
textarea::-webkit-input-placeholder {
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* Firefox 4-18 */
textarea:-moz-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
 opacity: 1;
}

/* Firefox 19+ */
textarea::-moz-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
 opacity: 1;
}

/* IE 10-11 */
textarea:-ms-input-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* Edge */
textarea::-ms-input-placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}

/* MODERN BROWSER */
textarea::placeholder { 
 color: #000;
 font-family: "Roboto", sans-serif;
}

main {
	margin-top: 119.6px;
	min-height: 80vh;
}
main.white {
	background: #fff;
}
.bread_crumbs {
	margin: 0;
	padding: 30px 0 0 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap:15px;
	font-size: 14px;
	line-height: 1;
}
.bread_crumbs li a {
	color:#BBBBBB;
	text-decoration: none;
}
.bread_crumbs li svg {
	vertical-align: middle;
}
.bread_crumbs li svg path {
	fill:#BBBBBB;
}
.bread_crumbs li span {
	color: #000;
}

.home_section {
	min-height: 80vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.home_section.home_section_doooo {
    min-height:60vh;
}
.overlay_home_section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: rgba(255,255,255,.65);*/
	z-index: 1;
	display: flex;
	align-items: center;
}
.overlay_home_section h1 {
	max-width: 600px;
	width: 100%;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	line-height: 1.35;
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
.btn_class {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 150px;
	border-radius: 8px;
	color:#fff;
	cursor: pointer;
	background: var(--secondary_color);
	text-decoration: none;
	border:none;
	transition: all .6s;
	margin:0 auto;
}
.btn_class.btn_class_invert,
.btn_class:hover {
	background: var(--main_color);
	color:#fff;
	transition: all .6s;
}
.btn_class.btn_class_invert:hover {
	background: var(--secondary_color);
	color:#fff;
	transition: all .6s;
}
section {
	padding: 44px 0;
}
section.form_footer {
	padding-bottom: 0;
}
section.white {
	background: #fff;
}

section h2,
section h1 {
	text-align: center;
	text-transform: uppercase;
	color: #212529;
}
section.catalog .search_catalog {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:0;
	width: 100%;
	margin: 30px 0;
}
section.catalog .search_catalog button[type="submit"] {
	width: 94px;
	height: 40px;
	margin:0;
}
section.catalog .search_catalog input {
	height: 40px;
	border:none;
	border-radius: 8px;
	background: #fff;
	color: var(--main_color);
	padding: 0 15px;
	max-width: 300px;
	width: 100%;
}
.flex_catalog {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap:20px;
}
.flex_catalog .item_catalog {
	position: relative;
	padding: 15px;
	background-color: #fff;
	border-radius: 8px;
	transition: all .6s;
	max-height:445px;
	text-decoration:none;
}

.flex_catalog .item_catalog img {
	width: 100%;
	height: calc( 100% - 72px );
	object-fit: contain;
}
.flex_catalog .item_catalog:hover {
	box-shadow: 0 0 10px 3px rgba(0,0,0,.25);
	transition: all .6s;
}
.item_catalog_content {
	display: inline-flex;
	height: 100%;
	width: 100%;
	flex-flow: column;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	padding: 35px;
}
.title_item_catalog_content {
	color: var(--secondary_color);
	font-weight: 500;
	font-size: 30px;
	background: #fff;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, .15);
    padding: 8px 15px;
}
.preimushestva {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap:20px 100px;
}
.item_preimushestva {
	display: flex;
	position: relative;
	align-items: center;
	/*justify-content: center; */
	min-height: 150px;
	flex-flow:column;
	gap:10px;
	text-align:center;
}
.item_preimushestva span {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	width: 135px;
}
.body_bg_small .container {
	padding: 44px;
	background: #EAEAF2;
	border-radius: 8px;
}
.popular_products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap:20px;
	margin-top: 44px;
}
.popular_products .item_catalog {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	padding: 15px;
    background: #fff;
}
.popular_products .item_catalog:hover {
	box-shadow: 0 0 10px 3px rgba(0,0,0,.25);
}
.popular_products .item_catalog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.projects_swiper.swiper-container {
	padding-bottom: 44px;
}
.projects_swiper .project_item_slide {
	max-width: 100%;
	width: 100%;
	border:1px solid #BBBBBB;
	border-radius: 8px;
}
.projects_swiper .project_item_slide a {
	display: block;
}
.projects_swiper .project_item_slide a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.project_item_slide_content {
	padding: 15px 25px 40px 25px;
	text-align: center;
	font-size: 16px;
	color: #212529;
}
.swiper-pagination-bullet-active {
	background: var(--secondary_color)!important;
}
.faq_wrapper {
	max-width: 825px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	gap:10px;
}
.faq_item_title {
	display: flex;
	gap:15px;
	align-items: center;
	padding: 10px 15px;
	border-radius: 8px;
	background: #EAEAF2;
	margin-bottom: 5px;
	cursor: pointer;
}
.faq_item_icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 50%;
}
.faq_item_question {
	flex: 1 1 0;
}
.faq_item_ask {
	padding: 15px 130px 15px 80px;
	background: var(--main_color);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	display: none;
	color: #fff;
	line-height: 130%;
}
.faq_item_title.active_faq {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.faq_item_title.active_faq + .faq_item_ask {
	display: block;
}
.form__footer {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    max-width: 1240px;
    width: 100%;
    align-items: center;
    margin: 0 auto;
}
.form__footer_image img {
	width: 100%;
	display: block;
}
.form__footer form h2 {
	text-align: left;
}
.form__footer form {
	display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 10px;
}
.form__footer_inputs {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap:10px;
}
.form_success {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap:10px;
    align-items: center;
}
.form_success button {
	margin-left: auto;
}
.politics_form {
	grid-column: span 2;
}
.form__footer_inputs input {
	height: 40px;
	padding: 0 15px;
	border:1px solid #BBBBBB;
	border-radius: 8px;
}
.form__footer form textarea {
	padding: 10px 15px 0 15px;
	border:1px solid #BBBBBB;
	border-radius: 8px;
	min-height: 130px;
}
.product_grid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap:20px 40px;
}
.product_swiper.swiper-container {
	padding-bottom: 30px;
}
.product_images {
	overflow: hidden;
	border: 1px solid #BBBBBB;
	border-radius: 8px;
}

.product_swiper .product_image {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	padding: 15px;
}

.product_price {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    align-items: center;
    gap:20px;
}

.product_price_text {
	font-weight: 600;
	font-size: 24px;
}
.product_price_text span {
	color: var(--secondary_color);
}
.product_price .btn_class {
	margin-left: auto;
}

.product_tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	align-items: center;
	gap:15px 30px;
	margin: 20px 0;
}
.product_tab {
	border: 1px solid #BBBBBB;
	border-radius: 8px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #fff;
}
.product_tab:hover,
.product_tab.active_tab {
	background: #EAEAF2;
}
.product_tabs_content > div {
	display: none;
}
.product_tabs_content > div.active_content {
	display: block;
	padding: 30px 45px;
	border-radius: 8px;
	background: #EAEAF2;
}
.chars_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	gap:20px 70px;
}
.char_grid {
	display: flex;
	gap:15px;
	align-items:baseline;
}
.dots_line {
	flex-grow: 1;
	border-bottom: 1px dashed var(--main_color);
	margin-bottom: 4px;
}
.item_char {
	font-weight: 600;
	color: var(--main_color);
}
.contacts_grid {
    display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	gap:30px 50px;
}
.contacts_grid .map {
    grid-column: span 2;
}


footer {
	background: var(--main_color);
	padding: 30px 0;
}

footer * {
	color: #fff;
}
footer .envelope img,
footer .phone img {
	filter: brightness(100);
}
.footer_links {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:15px;
}
.footer_links a {
	text-decoration: none;
}
.upper_column_footer {
	list-style: none;
	padding: 0;
	text-transform: uppercase;
	display: flex;
	flex-flow: column;
	gap:5px;
	margin: 0;
}
.low_column_footer {
	list-style: none;
	padding: 0;
	gap:0 15px;
	margin: 0;
}
.low_column_footer li a {
	line-height: 1.35;
}
.last_line {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap:15px 30px;
	width: 100%;
}
.social_container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:15px;
}
.social_container a {
	width: 30px;
	height: 30px;
}
.social_container a img {
	width: 100%;
	height: 100%;
}
dialog {
	border: none;
    border-radius: 8px;
    padding: 44px;
    max-width: 576px;
    width: 100%;
}

dialog::backdrop {
	background: rgba(44, 70, 104, .25);
}

.dialog_title {
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 30px;
	text-align: center;
}

.dialog_body form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:15px;
	grid-auto-rows: 1fr;
}
.dialog_body form input {
	padding: 0 15px;
	border-radius: 8px;
	border:1px solid #BBBBBB;
}
.dialog_body form button {
	grid-column: span 2;
	margin: 0 auto;
}
.dialog_body form .politics_form {
	text-align: center;
	font-size: 12px;
	margin: 0;
}
.dialog_body svg {
	position: absolute;
	right: 15px;
	top: 15px;
	cursor: pointer;
	width: 20px;
    height: 20px;
    fill: var(--secondary_color);
}
.container_service_img {
    text-align:center;
}
.container_service_img img {
    max-width:100%;
}
#cfCitySearch {
    height:40px;
    width:100%;
    padding:0 15px;
    border:1px solid #BBBBBB;
    border-radius:8px;
}
.cfcity_list {
    list-style:none;
    padding:0;
    margin:30px 0;
}

.swiper-button-next, .swiper-button-prev {
    color:var(--secondary_color)!important;
}
.title_item_catalog__string {
    color: var(--secondary_color);
	font-weight: 500;
	font-size: 24px;
	overflow: hidden;
    display: block;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    text-align:center;
}

@media screen and (max-width: 1300px) {
	ul.main_nav > li.main_nav:hover > ul.submenu {
		padding: 20px;
		gap:15px;
	}
	.title_item_catalog__string {
	    font-size:24px;
	}
	.flex_catalog .item_catalog img {
        height: calc(100% - 48px);
	}
}

@media screen and (max-width: 1200px) {
	:root {
		--cont_padd : 0;
	}
	header .logotype_text {
		display: none;
	}
	.logotype .logo {
	    width:83px;
	}
	header .header_block {
		width: calc( 100% - 115px );
	}
	footer .header_block {
        width: calc(100% - 290px);
    }

    footer .phones_block {
    	gap:10px;
    }
    .title_item_catalog_content {
    	font-size: 24px;
    }
    .project_item_slide_content {
    	padding: 15px 15px 30px 15px;
    }
    ul.main_nav > li.main_nav:hover > ul.submenu {
    	left: -130px;
    	width: 100vw;
    }
}

@media screen and (max-width: 992px) {
	.header_block nav {
		display: none;
	}
	header {
		padding-bottom: 15px;
	}
	header .row,
	footer .row {
		gap:15px;
	}
	.mobile_menu {
		display: block;
		width: 30px;
		height: 30px;
	}
	.mobile_menu svg {
		width: 100%;
		height: 100%;
		fill: var(--main_color);
	}
	.logotype .logo {
		width: 65px;
		height: 50px;
	}
	.logotype .logo img {
		width: 100%;
		height: 100%;
	}
	header .header_block {
		width: calc( 100% - 80px );
	}
	.content_phone {
		gap:7px;
	}
	.content_phone img {
		width: 15px;
	}
	.content_phone span {
		width: calc( 100% - 15px );
		font-size: 16px;
	}
	.phone .work_time {
		font-size: 12px;
	}
	.phones_block {
		gap:15px;
	}
	.geo_location {
		gap: 7px 15px;
	}
	.address_footer {
		font-size: 12px;
	}
	main {
		margin-top: 80px;
	}
	.home_section {
		min-height: 60vh;
	}
	.preimushestva {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.item_preimushestva span {
		width: 100%;
		text-align: center;
	}
	.popular_products {
		grid-template-columns: repeat(2, 1fr);
	}
	.popular_products .item_catalog:last-child {
		grid-column: span 2;
		aspect-ratio: 2 / 1;
	}
	footer .logotype_text {
		display: none;
	}
	footer .header_block {
		width: calc( 100% - 80px );
	}
	.overlay_home_section h1 {
		font-size: 32px;
        margin: 0 auto 15px auto;
        text-align: center;
	}
	.overlay_home_section .btn_class {
		margin: 0 auto;
	}
	.flex_catalog {
		grid-template-columns: repeat(2, 1fr);
	}
	.flex_catalog .item_catalog:last-child:nth-child(2n + 2) {
		grid-column: span 1;
	}
	.item_preimushestva span {
		font-size: 16px;
	}
	.politics_form {
		font-size: 12px;
	}
	.description_product * {
		font-size: 14px;
	}
	.product_content h1,
	.product_price_text {
		font-size: 20px;
	}
	.product_images {
		border:none;
	}
	.title_item_catalog__string {
	    font-size:22px;
	}
	.flex_catalog .item_catalog img {
        height: calc(100% - 44px);
	}
}

@media screen and (max-width: 768px) {
	header .geo_location {
		display: none;
	}
	header .phones_block {
		width: calc( 100% - 45px );
		justify-content: center;
		gap:3px 15px;
	}
	footer .geo_location {
		flex-flow: column;
		align-items: flex-start;
	}
	footer .phones_block {
		flex-flow: column;
		align-items: flex-end;
	}
	footer .header_block {
		width: 100%;
		justify-content: center;
		gap:10px;
	}
	footer .row {
		justify-content: center;
	}
	.overlay_home_section h1 {
		font-size: 28px;
	}
	.home_section {
		min-height: 40vh;
	}
	.upper_column_footer {
		width: 100%;
		align-items: center;
	}
	.low_column_footer {
		width: 100%;
		
	}
	.project_item_slide_content {
		font-size: 14px;
	}
	.form__footer {
		grid-template-columns: 1fr;
        grid-auto-rows: auto;
	}
	section.form_footer {
		padding: 0;
	}
	.product_grid {
		grid-template-columns: 1fr;
		grid-auto-rows:auto;
	}
	.product_tabs {
		grid-template-columns: repeat(3, 1fr);
	}
	.chars_grid {
		grid-template-columns: 1fr;
	}
	.product_tabs_content > div.active_content {
		padding: 15px 20px;
	}
	.contacts_grid {
	    grid-template-columns: 1fr;
	    grid-auto-rows:auto;
	}
	.contacts_grid .map {
	    grid-column: span 1;
	}
	.double_contacts {
	    text-align:center;
	}
	.title_item_catalog__string {
	    font-size:18px;
	}
	.flex_catalog .item_catalog img {
        height: calc(100% - 36px);
	}
}

@media screen and (max-width: 576px) {
	.container {
		width: 100%;
	}
	.logotype .logo {
		width: 45px;
		height: 35px;
	}
	header .header_block {
		width: calc( 100% - 60px );
	}
	.phones_block .phone {
		gap:3px;
	}
	.phone .work_time {
		text-align: center;
	}
	header {
		padding: 5px 0;
	}
	footer .geo_location {
		align-items: center;
	}
	footer {
		padding: 15px 0;
	}
	main {
		margin-top: 46.78px;
	}
	.overlay_home_section h1 {
		font-size: 24px;
	}
	.flex_catalog {
		grid-template-columns: 1fr;
	}
	.flex_catalog .item_catalog {
		grid-column: span 1!important;
		aspect-ratio: 1 / 1;
	}
	.title_item_catalog_content {
		font-size: 18px;
	}
	.item_catalog_content {
		align-items: center;
	}
	section.catalog .search_catalog input {
		font-size: 12px;
	}
	.preimushestva {
		gap:20px;
	}
	.popular_products {
        grid-template-columns: 1fr;
    }
    .popular_products .item_catalog:last-child {
    	grid-column: span 1;
    	aspect-ratio: 1 / 1;
    }
    .body_bg_small .container {
    	padding: 44px 15px;
    }
    .project_item_slide_content {
    	font-size: 12px;
    }
    .faq_item_ask {
    	padding: 15px;
    }
    .faq_item_icon {
    	width: 30px;
    	height: 30px;
    	padding: 8px;
    }
    .faq_item_icon img {
    	width: 100%;
    }
    .bread_crumbs {
    	font-size: 12px;
    }
    .form__footer_inputs {
    	grid-template-columns:1fr;
    }
    .form__footer form {
    	order: 2;
    }
    .form__footer form h2 {
    	text-align: center;
    }
    .product_tabs {
    	grid-template-columns: 1fr 1fr;
    }
    .title_item_catalog__string {
	    font-size:16px;
	}
	.flex_catalog .item_catalog img {
        height: calc(100% - 32px);
	}
}

@media screen and (max-width: 415px) {
	main {
		margin-top: 69.15px;
	}
	.overlay_home_section h1 {
		font-size: 18px;
	}
	.title_item_catalog_content {
		font-size:16px;
	}
	.item_catalog_content {
		padding: 20px;
	}
	.politics_form {
		grid-column: span 3;
		text-align: center;
	}
	.form_success button {
		margin-right: auto;
		grid-column: span 3;
	}
	.product_price {
		grid-template-columns: 1fr;
	}
	.product_tabs {
		gap:10px;
	}
	.product_tabs_content > div.active_content {
		padding: 15px;
	}
	.title_item_catalog__string {
	    font-size:14px;
	}
	.flex_catalog .item_catalog img {
        height: calc(100% - 24px);
	}
}



/* fixed footer */

footer .logotype {
    width:100%;
    justify-content:center;
}
.left_column__footer_fix,
.right_column__footer_fix {
    width:calc((100% - 32px) / 2);
    display:grid;
    @media screen and (max-width:575px) {
        width:100%;
        justify-content:center;
        text-align:center;
    }
}

.right_column__footer_fix {
        justify-content: flex-end;
    align-content: flex-start;
    gap:15px;
    @media screen and (max-width:575px) {
    justify-content:center;
    text-align:center;
}
}
.right_column__footer_fix > * {
    width:100%;
    max-width:100%;
    display:grid;
}
.right_column__footer_fix .phones_block .phone {
    gap:15px;
}
.right_column__footer_fix .phones_block {
    @media screen and (max-width:575px) {
        justify-content:center;
    }
}