/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

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

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none !important;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

/* ---------------------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

@media(max-width:768px){
    html {
    scroll-padding-top: 200px;
}
}

body {
	font-family: "Inter", sans-serif;
	background: #FFF;
	overflow-x: hidden;
}

.wrapper {
	/* overflow: hidden; */
}

.container {
	max-width: 1920px !important;
	margin: 0 auto;
	padding: 0 20px;
}

.main {
	margin: 0px 0px 130px 0px;
	height: 100%;
}

/* ---------------------header-------------------- */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
	background-color: #FFF;
		border-bottom: 4px solid #9F9C35;
}

.header__container {
    max-width: 1550px !important;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 10px 60px 0px 90px;
}

.header__left {
	display: flex;
	align-items: center;
	gap: 32px;
	transition: all .3s ease;
}

.header__left--hide {
	margin: -260px 0px 0px 0px;
}

.header__logo {
	margin: 0px 0px -30px 0px;
	transition: all .3s ease;
}

@media(min-width:1121px){
	.header__logo-scroll{
		margin: 0px 0px 0px 0px;
		transform:scale(0.8);
	}
}

.header__logo-img {}

.header__city {
	position: relative;
}

.header__city-active {
	display: flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
}

.header__city-icon {}

.header__city-name {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	margin:0;
}

.header__city-item-name{
    margin:0;
}

.header__city-arrow {}

.header__city-body {
	position: absolute;
	top: 300%;
	left: 0;
	width: 264px;
	z-index: 2;
	padding: 24px 18px;

	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.25);

	opacity: 0;
	pointer-events: none;
	transform: translateY(-20px);
	transition: all .3s ease;
}

.header__city-body--visible {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0px);
}

.header__city-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header__city-item a {
	display: flex;
	align-items: end;
	gap: 5px;

	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	transition: all .1s ease;

	cursor: pointer;
}

.header__city-item:hover {
	color: #9F9C35;
}

.header__city-item-img {}

.header__right {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 0px 0px 10px 0px;
}

.header__btn-location {
	padding: 11px 20px;
	display: flex;
	align-items: center;
	gap: 9px;

	color: #FFF;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;

	background-color: #7A2D2C;
	border-radius: 25px;
}

.header__btn-consultation {
	padding: 9px 18px;
	display: flex;
	align-items: center;
	gap: 9px;

	color: #FFF;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;

    border: 2px solid #E9322E;
	background-color: #E9322E;
	border-radius: 25px;
	transition: color,background-color .2s ease;
}

.header__btn-location-img{
    width: 20px;
    height: 20px;
}

.header__btn-location-img path{
    fill:#fff;
}

.header__btn-consultation:hover{
    border: 2px solid #E9322E;
    color:#E9322E;
    background-color: #fff;
}

.header__btn-consultation:hover .header__btn-location-img path{
    fill:#E9322E;
}

/* --------------burger------------- */

.burger-btn {
	width: 30px;
	height: 20px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	cursor: pointer;
}

.burgre-line {
	width: 100%;
	height: 2px;
	background-color: rgb(159, 156, 53);
	transition: all .3s ease;
}

.b1 {}

.b2 {}

.b3 {
	width: 18px;
}

.burger-btn--active .b1{
	transform: translate(0,8px) rotate(45deg);
}
.burger-btn--active .b2{
	opacity: 0;
}
.burger-btn--active .b3{
	transform: translate(0,-10px) rotate(-45deg);
	width: 100%;
}



.burgre-menu {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(23, 21, 21, 0.50);
	z-index: 10;

	opacity: 0;
	pointer-events: none;
	transition: all .2s ease;
}

.burgre-menu__container{
	height: 100%;
	max-width: 1550px !important;
}

.burgre-menu--visible{
	opacity: 1;
	pointer-events: all;
}

.burgre-menu__window {
	border: 2px solid rgb(159, 156, 53);
	background: rgb(255, 255, 255);
	max-width: 450px !important;
	height: 0;
	overflow: hidden;
	margin: 0 !important;
	transition: all .5s ease;
}

.burgre-menu__window--visible{
	padding: 70px;
}

.burgre-menu__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0px 0px 25px 0px;
	margin: 0px 0px 25px 0px;

	border-bottom: 1px solid rgb(207, 207, 207);
}

.burgre-menu__item {
	padding: 0px 0px 0px 26px;
	position: relative;
}

.burgre-menu__item::before {
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 6px;
	height: 6px;

	background: rgb(159, 156, 53);
	border-radius: 50%;
}

.burgre-menu__item-link {
	color: rgb(0, 0, 0);
	font-size: 24px;
	font-weight: 400;
	line-height: 130%;
}

.burgre-menu__tel {
	max-width: 255px;
	margin: 0 auto;
}

.burgre-menu__tel-text {
	margin: 0px 0px 12px 0px;

	color: rgb(0, 0, 0);
	font-size: 22px;
	font-weight: 400;
	line-height: 130%;
}

.burgre-menu__tel-link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;

	border-radius: 30px;
	border: 2px solid rgb(233, 50, 46);
	background: rgb(233, 50, 46);
	padding: 8px;

	color: rgb(255, 255, 255);
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
	transition: all .2s ease;
}

.burgre-menu__tel-link:hover{
	background: #fff;
	color: rgb(233, 50, 46);
}

.burgre-menu__tel-icon{
    width: 20px;
    height: 20px;
}

.burgre-menu__tel-icon path{
    fill:#fff;
}

.burgre-menu__tel-link:hover .burgre-menu__tel-icon path{
    fill: rgb(233, 50, 46);
}

/* -----------------slider------------- */

.page__slider {
	padding: 150px 0px 0px 0px;
}

.slider__container {
	border-bottom: 1px solid #D3D3D3;
	max-width: 1490px;
	padding: 0px 20px 50px 20px;
	overflow: hidden;
}

.slider__inner {
	max-width: 1286px;
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.slider {
	max-width: 992px;
	margin: 0 auto;
	overflow: hidden;
	padding:0 0 12px 0;
}

.slider__body {}

.slider__slide {
	transform: scale(0.9) !important;
	transition: all .2s ease;
	width: 100% !important;
}

.swiper-slide-active {
	transform: scale(1) !important;
}

.slider__slide-img {
	max-width: 990px;
	width: 100%;
	    border-radius: 18px;
}

.swiper-pagination {
	position: relative;
	margin: 0;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 29px;

	margin: 30px 0px 0px 0px;
}

.slider__btn-prev {
	position: relative;
	z-index: 2;
	background-color: transparent;
}

.slider__btn-next {
	position: relative;
	z-index: 2;
	background-color: transparent;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid #D8D8D8;
	background-color: #EFEFEF;
}

.swiper-pagination-bullet {
	opacity: 1;
}

.swiper-pagination-bullet-active {
	position: relative;
	background-color: #9F9C35 !important;
	width: 32px;
	height: 32px;
	margin: 15px;
}

.swiper-pagination-bullet-active::after {
	content: '';

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	z-index: -1;

	background-color: #D9D9D9;
}

/* --------------nav---------------- */

.page__nav {
	padding: 36px 0px 0px 0px;
	margin: 0px 0px 53px 0px;
}

.page__nav-hidden {
	max-height: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.nav-slide {
	position: sticky;
	top: var(--top);
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background-color: #FFF;
	padding: 15px 0px 15px 0px;
	display: none;
}

.nav-slide::after {
	content: '';

	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;

	background: #D3D3D3;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.50);
}

.nav-slide--active {
	display: block;
}

.nav__container {
	max-width: 1400px !important;
	margin: 0 auto;
	padding: 0 20px;
}

.nav__inner {
	max-width: 1275px;
}

.nav-slide .nav__inner {
	max-width: 1370px;
	overflow: hidden;
}

.nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 20px;
}

.nav-slide .nav__list {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
}

.nav__item {}

.nav-slide .nav__item {
	width: unset;
}

.nav__item-link {
	display: inline-block;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #BDBDBD;

	color: #9F9C35;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	transition: all .2s ease;
}

.nav__item-link:hover {
	border-radius: 10px;
	border: 1px solid #BDBDBD;
	background: #F1F1F1;
	color: #9F9C35;
}

.nav__item-link--active {
	color: #FFF;
	background-color: #9F9C35;
	border: 1px solid #9F9C35;
}

.nav__item-link--active:hover {
	color: #FFF;
	background-color: #9F9C35;
	border: 1px solid #9F9C35;
}


/* -------------page__production------------------ */

.page__production {
	margin: 0px 0px 50px 0px;
}

.production__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.production__inner {}

.production__title {
	color: #000;
	font-size: 34px;
	font-weight: 400;
	line-height: 130%;

	margin: 0px 0px 40px 0px;
}

.production__cards {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.production__card form{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.production__card form:hover {
    cursor: pointer;
}
.production__card-img {
    max-width: 385px;
	width: 100%;
	margin: 0px 0px 19px 0px;
	    border-radius: 20px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
.production__card-img:hover {
   }
.production__card-g {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
	margin: 0px 0px 11px 0px;
}

.production__card-desc {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
p {
    color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
/* -----production-modal------ */

.production__card-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(23, 21, 21, 0.50);
	z-index: 20;
	display: none;
}

.production__card-modal--active {
	display: block;
}

.production__card-modal-window {
	height: 100%;
	display: flex;
	justify-content: end;
	align-items: start;
	gap: 15px;
}

.production__card-modal-close {
	margin: 18px 0px 0px 0px;
	background-color: transparent;
}

.production__card-modal-close-img {}

.production__card-modal-body {
	overflow: auto;
	max-width: 680px;
	width: 100%;
	height: 100%;
	background-color: #FFF;

	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 12px;
}

.production__card-modal-img {
	margin: 0px 0px 20px 0px;
}

.production__card-modal-image {
	max-width: 650px;
	width: 100%;
	height: 100%;
}

.production__card-modal-content {
	padding: 0 20px;
}



.production__card-modal-content .production__card-desc {
	margin: 0px 0px 12px 0px;
	color: #000;
	font-size: 30px;
	font-weight: 400;
	line-height: 130%;
}
h1 {
   margin: 0px 0px 12px 0px;
	color: #000;
	font-size: 30px;
	line-height: 130%; 
}
h4 {
    margin: 0px 0px 12px 0px;
	color: #000;
	font-size: 24px;
	line-height: 130%;
}
.production__card-modal-content .production__card-g {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
	margin: 0px 0px 30px 0px;
}

.production__card-modal-tabs {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 5px;

	border-radius: 20px;
	background: #F8F6FB;
	margin: 0px 0px 36px 0px;
}

.production__card-modal-tab {
	padding: 10px 20px;
	width: 100%;

	color: #828282;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	line-height: 130%;

	border-radius: 20px;
	background: #FFF;
	cursor: pointer;
}

.production__card-modal-tab--active {
	color: #FFF;
	border-radius: 20px;
	background: #9F9C35;
}

.production__card-modal-tab-item {
	display: none;
}

.production__card-modal-tab-item--active {
	display: block;
}

.production__card-modal-tab-text {
	color: #000;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
}

.production__card-modal-tab-item-body {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;

	max-width: 550px;
	width: 100%;

	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.production__card-modal-tab-item-left {}

.production__card-modal-tab-item-right {
	display: flex;
	align-items: start;
	gap: 10px 40px;
	flex-wrap: wrap;
}

.production__card-modal-tab-item-column {
	display: flex;
	flex-direction: column;
	gap: 18px;
	text-align: center;
}

.production__card-modal-tab-item-column-name {
    margin:0;
}

.production__card-modal-tab-item-column-desc {
    margin:0;
}



@media(max-width:768px) {
	.production__card-modal-content {
		padding: 0;
	}

	.production__card-modal-content .production__card-desc {
		font-size: 24px;
	}

	.production__card-modal-content .production__card-g {
		margin: 0px 0px 10px 0px;
	}

	.production__card-modal-tab {
		font-size: 18px;
	}

	.production__card-modal-tab-item-right {
		width: 100%;
		gap: 20px;
	}

	.production__card-modal-tab-item-column {
		justify-content: center;
		align-items: center;
		flex: 1 1 40%;
	}

	.production__card-modal-tab-text {
		font-size: 16px;
	}

	.production__card-modal-tabs {
		margin: 0px 0px 20px 0px;
	}
}

/* --------------------footer--------------- */

.footer {
    	border-top: 4px solid #9F9C35;
	background: #F5F5F5;
}

.footer__container {}

.footer__inner {
	padding: 25px 70px 40px 70px;

	display: flex;
	align-items: start;
	gap: 200px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.footer__inner-bg {
	position: absolute;
	bottom: -45px;
	right: 45px;
	width: 100%;
	max-width: 420px;
	z-index: -1;
}

.footer__left {}

.footer__logo {
	display: block;
	margin: 0px 0px 11px 0px;
}

.footer__logo-img {}

.footer__tel {
	color: #424242;
	font-size: 22px;
	font-weight: 500;
	line-height: 130%;
	margin: 0px 0px 23px 0px;
}

.footer-tel-link {
	color: #424242;
}

.footer__copyright {}

.footer__copyright-text {
	color: #424242;
	font-size: 16px;
	font-weight: 300;
	line-height: 111%;
}
.footer__copyright-text a {
	color: #424242;
	font-size: 16px;
	font-weight: 300;
	line-height: 111%;
	display: flex;
    align-items: center;
}
.architector {
color:#fff;
}
.architector img {
width: 30px;
    border-radius: 100%;
}
.footer__right {}

.footer__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 0px 0px 30px 0px;
}

.footer__item {}

.footer__item-link {
	color: #424242;
	font-size: 20px;
	font-weight: 400;
	line-height: 130%;
}

/* ---------top--------- */

.top {

	position: fixed;
	bottom: 30px;
	right: 30px;

	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 20px;
	z-index: 10;

	color: #FFF;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;

	background-color: #9F9C35;
	border-radius: 25px;

	transition: opacity,transform .3s ease;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

.top:hover{
    background: #F1F1F1;
    color: #9F9C35;
    border:2px solid #9F9C35;
}

.top:hover svg line{
    stroke: #9F9C35;
}

.top--visible{
	opacity: 1;
	transform: translateY(0px);
	pointer-events: all;
}

/* --------modal-location----------- */

.modal-location {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 100%;
	max-width: 376px;
	min-height: 156px;
	z-index: 10;

	border-radius: 10px;
	border: 1px solid #474747;
	background-color: #FFF;
	padding: 20px;

	transition: all .2s ease;
	opacity: 0;
	pointer-events: none;
}

.modal-location--visible {
	opacity: 1;
	pointer-events: all;
}

.modal-location-city {
	display: none;
}

.modal-location-city--visible {
	display: block;
}

.modal-location-city--visible {}

.modal-location__chois {}

.modal-location__chois--hide {
	display: none;
}

.modal-location__chois-text {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 130%;

	margin: 0px 0px 28px 0px;
}

.modal-location__chois__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.modal-location__chois-btn {
	padding: 12px 20px;
	text-align: center;

	color: #FFF;
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
	flex: 1 1 47%;
	border-radius: 15px;
}

.modal-location__chois-btn-y {
	background-color: #9F9C35;
}

.modal-location__chois-btn-no {
	background-color: #E9322E;
}

.checkbox label{
    display:flex;
    align-items: center;
    gap:20px;
}

.contact_form-checkbox{
    order:2;
    width: unset !important;
}

/* ------------media------------- */


@media(max-width:1120px) {
	.header__inner {
		padding: 10px 0px 20px 0px;
	}

	.header__logo {
		margin: 0;
	}

	.page__slider {
		padding: 220px 0px 0px 0px;
	}

	.header__right {
		flex-wrap: wrap;
		justify-content: end;
		gap: 15px;
	}

	.header__left {
		gap: 30px;
	}
	
		.footer__inner-bg {
		opacity: 0.5;
	}
}

@media(max-width:768px) {
	.header__logo-img {
		max-width: 80px;
	}

	.header__left {
		gap: 15px;
	}

	.header__btn-location,
	.header__btn-consultation {
		font-size: 16px;
		padding: 8px 15px;
	}

	.header__btn-consultation {
		padding: 10px 15px;
	}

	.header__right {
		gap: 10px;
	}

	.header__inner {
		flex-wrap: wrap;
	}



	.nav__list {
		gap: 10px;
	}

	.nav__item-link {
		font-size: 14px;
		padding: 8px;
	}

	.page__nav {
		margin: 0px 0px 30px 0px;
	}




	.production__card {
		flex: 0 1 46%;
	}




	.page__production {
		margin: 0px 0px 30px 0px;
	}

	.main {
		margin: 0px 0px 60px 0px;
	}


	.footer__inner {
		flex-wrap: wrap;
		gap: 30px;
		padding: 25px;
	}

	.footer__tel {
		font-size: 18px;
		margin: 0px 0px 10px 0px;
	}

	.footer__logo-img {
		max-width: 100%;
	}

	.footer__item-link {
		font-size: 18px;
	}

	.footer__list {
		gap: 10px;
	}

	.header__city-body {
		left: -100px;
	}

	.modal-location {
		width: 300px;
	}
	
	
	.burgre-menu__window--visible{
		padding: 30px;
	}
	
	
	.cf-city .cf-confirm{
	    left:5%;
	    transform:translateX(-50%);
	}
}

@media(max-width:499px) {
	.page__slider {
		padding: 200px 0px 0px 0px;
	}

	.slider__inner {
		gap: 10px;
	}

	.slider__btn-next,
	.slider__btn-prev {
		display: none;
	}

	.slider__container {
		padding: 0 20px 20px 20px;
	}

	.production__card {
		flex: 1 1 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.production__card-img {
		margin: 0px auto 10px auto;
	}
	
	.cf-cities.cf-show{
	    flex-direction:column;
	}
}
.cf-cities.cf-show {
    display: flex!important;
    flex-wrap: wrap;
    justify-content: space-around;
}
.cf-city .cf-confirm.cf-show {
    width: 400px!important;
}
.modal-location__chois-btn-y:hover, .modal-location__chois-btn-no:hover {
    color: #fff;
}
.contact-form input, .contact-form textarea {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #9F9C35;
    border-radius: 3rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.contact-form textarea {
    height: 150px;
}
.contact-form .header__btn-consultation {
    float: right;
}
.contact_form-input.error {
   border: 1px solid #E9322E; 
}
.contact-form .contact_form-checkbox {
    height: inherit;
}
.contact-form a {
    color: #E9322E;
}
.modal-header {
    display: block;
}
.modal-content {
    border-radius: 0.7rem;
    outline: 0;
}
.header__btn-consultation:disabled, .header__btn-consultation[disabled] {
    border: 2px solid #f39c9a;
    background-color: #f39c9a;
}
.header__btn-consultation:disabled:fover, .header__btn-consultation[disabled]:fover {
    color: #fff;
    cursor: default;
}

@media(max-width:768px) {
  	.cf-city .cf-confirm.cf-show {
        width: 310px !important;
    }
    
    .modal-location__chois-text{
        font-size: 20px;
        margin: 0 0 15px 0;
    }
    
    .modal-location__chois-btn{
        padding:10px 16px;
        font-size: 16px;
        line-height: 100%;
    }
}
.contacts__column a {
    color: #E9322E;
}


.swiper-modal-pruduction{
    max-width: 585px;
    display:block;
    overflow: hidden;
}
.files-group input {
    border: none;
    padding: 0;
    background: none;
    height: initial;
    border-radius: 0;
}
.input-file-row {
	display: inline-block;
}
.input-file {
	position: relative;
	display: inline-block;
}
.input-file span {
	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	text-decoration: none;
	font-size: 14px;
	vertical-align: middle;
	color: rgb(255 255 255);
	text-align: center;
	border-radius: 4px;
	background-color: #9F9C35;
	line-height: 22px;
	height: 40px;
	padding: 10px 20px;
	box-sizing: border-box;
	border: none;
	margin: 0;
	transition: background-color 0.2s;
}
.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
 
/* Focus */
.input-file input[type=file]:focus + span {
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
 
/* Hover/Active */
.input-file:hover span {
	background-color: #E9322E;
}
.input-file:active span {
	background-color: #E9322E;
}
 
/* Disabled */
.input-file input[type=file]:disabled + span {
	background-color: #eee;
}
 
/* Список файлов */
.input-file-list {
	padding: 10px 0;
}
.input-file-list-item {
	margin-bottom: 10px;
}
.input-file-list-remove {
	color: red;
	text-decoration: none;
	display: inline-block;
	margin-left: 5px;
}
 
