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

ul[class],
ol[class] {
  padding: 0;
}

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

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1em;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
	font-family: 'Helvetica';
	line-height: 1.3;
	color: #1E1E1E;
	overflow-x: hidden;
}
section {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding: 100px 0 150px;
}
@media all and (max-width:600px) {
	section {
		padding:50px 0;
	}
}
.action_head {
	background:#000;
	display:flex;
	justify-content: flex-end;
}
.container {
	max-width: 1324px;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	padding: 0 10px;
	width: 100%;
}
.container h2 {
	flex:0 0 100%;
	font-size:48px;
}
@media all and (max-width:1366px) {
	.container {
		max-width: 1155px;
	}
	.container h2 {
		font-size:40px;
	}
}
@media all and (max-width:768px) {
	.container h2 {
		font-size:36px;
	}
}
@media all and (max-width:600px) {
	.container h2 {
		font-size:24px;
	}
}
.btn {
    display: flex;
    background: #B07D5E;
    color: #ffffff;
    height: 50px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    max-width: 232px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn:hover {
	background: #b28d76;
}
.hero {
    background: url(../img/hero_bg.png);
    background-size: cover;
    background-position: center;
    height: 640px;
    color: #fff;
    position: relative;
	padding:0;
}
.hero .container {
    justify-content: flex-start;
    position: relative;
}
.hero .container .left {
	position:relative;
}
.hero .container .left .phone_mobile {
	display:none;
}
.hero .container .left h1 {
    font-size: 48px;
    max-width: 740px;
    line-height: 1.1;
    margin-top: 140px;
}
.hero .container .left .post {
    font-size: 24px;
    max-width: 700px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.hero .container .left .btn {
    max-width: 260px;
}
@media all and (max-width:1366px) {
	.hero .container .left h1 {
		font-size: 40px;
		max-width: 600px;
	}
}
@media all and (max-width:768px) {
	.hero .container .left h1 {
		font-size: 36px;
		max-width: 540px;
	}
	.hero .container .left .post {
	    font-size: 20px;
	    max-width: 520px;
	}
}
@media all and (max-width:600px) {
	.hero {
		height:430px;
	}
	.hero .container .left .phone_mobile {
		display:block;
		width: 50px;
		height: 50px;
		background: url(../img/phone_mobile.svg) center no-repeat;
		position: absolute;
		top: 60px;
		right: 0;
	}
	.hero .container .left h1 {
		font-size: 24px;
		margin-top: 85px;
		padding-right: 60px;
	}
	.hero .container .left .post {
	    font-size: 16px;
	    margin-top: 25px;
	    margin-bottom: 25px;
	}
}
.header {
	position:absolute;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 15px;
	z-index: 1;
}
.header .wrap {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1324px;
    padding: 0 10px;
}
.header .logo {}
.header .logo a {}
.header .logo a img {}
.header .links {}
.header .links a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px 0;
}
.header .btn {
    width: 232px;
}
.header .contacts {
    text-align: right;
}
.header .contacts a {
    font-weight: 600;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
}
.header .contacts p {
    font-size: 16px;
}
.header .toggle {
	display:none;
}
@media all and (max-width:1366px) {
	.header .wrap {
		max-width: 1155px;
	}
}
@media all and (max-width:1150px) {
	.header .toggle {
		display:block;
		width: 20px;
		height: 20px;
		position: absolute;
		right: 10px;
		top: 16px;
		cursor: pointer;
	}
	.header .wrap .links, .header .wrap .btn, .header .wrap .contacts {
		display:none;
	}
	.header .toggle {
		background: url(../img/toggle.svg);
	}
	.header.open .toggle {
		background: url(../img/close.svg);
	}
	.header.open .wrap {
		max-width: 1155px;
		display: grid;
		grid-template-areas:
			"logo logo"
			"links btn"
			"links contacts";
	}
	.header.open .logo {
		grid-area:logo;
	}
	.header.open .links {
		grid-area:links;
	}
	.header.open .btn {
	    grid-area:btn;
		display:flex;
	}
	.header.open .contacts {
    	grid-area:contacts;
		display:block;
	}
	.header.open {
    padding-bottom: 15px;
    background: #000000;
    z-index: 1;
	}
	.header.open .logo {margin-bottom: 25px;}
	.header.open .logo a {}
	.header.open .logo a img {}
	.header.open .links {
    display: flex;
    flex-wrap: wrap;
	}
	.header.open .links a {
    margin: 0;
    flex: 0 0 100%;
    margin-bottom: 25px;
	}
	.header.open .btn {}
	.header.open .contacts {}
	.header.open .contacts a {}
	.header.open .contacts p {}
}
@media all and (max-width:600px) {
	.header.open .wrap {
		max-width: 1155px;
		display: grid;
		grid-template-areas:
			"logo"
			"links"
			"btn"
			"contacts";
	}
	.header.open .btn {
		margin-bottom:25px;
	}
	.header.open .contacts {
    text-align: left;
	}
}

.vcifrah {
    background: url(../img/map.png),#e8e8e8;
    background-repeat: no-repeat;
    background-position-x: calc(100% + 475px);
}
.vcifrah .container {}
.vcifrah .container h2 {}
.vcifrah .container .wrap {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 75px;
}
.vcifrah .container .wrap .item {
    flex: 0 0 30%;
}
.vcifrah .container .wrap .item .number {
    font-size: 72px;
    font-weight: 600;
    color: #B07D5E;
}
.vcifrah .container .wrap .item .text {
    font-size: 24px;
    max-width: 320px;
    padding-right: 20px;
}
@media all and (max-width:1366px) {
	.vcifrah {
		background-position-x: calc(100% + 800px);
	}
}
@media all and (max-width:768px) {
	.vcifrah .container .wrap .item .number {
	    font-size: 48px;
	}
	.vcifrah .container .wrap .item .text {
	    font-size: 20px;
	}
}
@media all and (max-width:600px) {
	.vcifrah {
		background-position-x: calc(100% + 920px);
		background-position-y: 130px;
	}
	.vcifrah .container .wrap {
		flex-wrap:wrap;
		margin-top:35px;
	}
	.vcifrah .container .wrap .item {
		flex:0 0 100%;
		margin-bottom:30px;
	}
	.vcifrah .container .wrap .item .number {
	    font-size: 48px;
	}
	.vcifrah .container .wrap .item .text {
	    font-size: 20px;
	}
}

.club_osnova {
    background: #282828;
    color: #fff;
}
.club_osnova .container {}
.club_osnova .container h2 {
    margin-bottom: 30px;
}
.club_osnova .container p {
    flex: 0 0 100%;
    font-size: 32px;
    margin: 25px 0;
}
.club_osnova .container .wrap {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
	width:100%;
}
.club_osnova .container .wrap .flickity-viewport {
	width:100%;
}
.club_osnova .container .wrap .item {
    flex: 0 0 252px;
    background: #fff;
    color: #000;
    padding-bottom: 25px;
}
.club_osnova .container .wrap .item .img {
    width: 100%;
    height: 227px;
    background-size: cover !important;
    background-position: center !IMPORTANT;
}
.club_osnova .container .wrap .item .name {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0 18px;
    line-height: 1;
    margin-top: 13px;
    margin-bottom: 18px;
}
.club_osnova .container .wrap .item .job {
    font-size: 16px;
    margin: 0;
    padding: 0 18px;
}
.club_osnova .container .break {
    padding: 75px 0;
    width: 100%;
    background: url(../img/break.svg) center no-repeat;
    background-size: contain;
}
.club_osnova .container .post {
    font-size: 32px;
    text-align: center;
    padding: 0 70px;
}
.club_osnova .container .club_osnova_carousel:after {
	content: ''; 
}
.club_osnova .container .button {
    flex: 0 0 100%;
    margin-top: 75px;
    display: flex;
    justify-content: center;
}
.club_osnova .container .button .btn {
    padding: 0 20px;
    font-size: 24px;
    max-width: fit-content;
    height: 60px;
}
@media all and (max-width:1366px) {
	.club_osnova .container .wrap .item {
	    flex: 0 0 220px;
	}
	.club_osnova .container .wrap .item .img {
		height: 202px;
	}
}
@media all and (max-width:1200px) {
	.club_osnova .container .wrap {
	    flex-wrap:wrap;
		gap:10px;
		justify-content:center;
	}
	.club_osnova .container .wrap .item {
	    flex: 0 0 220px;
	}
}
@media all and (max-width:768px) {
	.club_osnova .container p {
    font-size: 24px;
    margin: 10px 0;
	}
	.club_osnova .container .club_osnova_carousel:after {
	  content: 'flickity';
  display: none; /* hide :after */
	}
	.club_osnova .container .wrap .item {
		width: 220px;
		margin-right: 10px;
		height: 410px;
	}
	.club_osnova .container .flickity-page-dots .dot {
    background: #B07D5E;
    opacity: 1;
	}
	.club_osnova .container .flickity-page-dots .dot.is-selected {
    background: #fff;
    width: 25px;
    border-radius: 5px;
	}
	.club_osnova .container .break {
    background: url(../img/break_mob.svg) center no-repeat;
    background-size: contain;
}
	.club_osnova .container .post {
    font-size: 24px;
	}
}
@media all and (max-width:600px) {
	.club_osnova .container p {
    font-size: 16px;
	}
	.club_osnova .container .post {
    font-size: 16px;
	padding: 0 20px;
	}
	.club_osnova .container .button .btn {
		font-size:16px;
	}
}

.club_cennnost {
    background: #e8e8e8;
}
.club_cennnost .container {justify-content: left;}
.club_cennnost .container h2 {
    max-width: 985px;
    margin-bottom: 50px;
}
.club_cennnost .container h3 {
	font-size:48px;
	margin-bottom: 50px;
	margin-top: 70px;
}
.club_cennnost .container .subtitle {
    font-size: 32px;
    text-align: center;
    padding: 0 145px;
}
.club_cennnost .container .break {
    flex: 0 0 100%;
    height: 90px;
    background: url(../img/break_1.svg) center no-repeat;
    margin-bottom: 50px;
}
.club_cennnost .container .item {
    display: flex;
    gap: 40px;
    padding-bottom: 50px;
    padding-top: 50px;
}
.club_cennnost .container .item {
	border-bottom: 2px solid #ffffff;
}
.club_cennnost .container .item.no_border {
	border-bottom:none;
}
.club_cennnost .container .item .number {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    background-size: contain !important;
    margin-top: -15px;
    background-repeat: no-repeat !important;
}
.club_cennnost .container .item .text {
    flex: 0 0 428px;
    font-size: 20px;
}
.club_cennnost .container .item .arrow {
    flex: 0 0 102px;
    width: 102px;
    height: 18px;
    background: url(../img/ar1.svg) center no-repeat;
}
.club_cennnost .container .item .text_2 {
    flex: auto;
}
.club_cennnost .container .item .text_2 p {
    margin-bottom: 20px;
    font-size: 20px;
}
.club_cennnost .container .break_2 {
    flex: 0 0 100%;
    height: 90px;
    background: url(../img/break_2.svg) center no-repeat;
    margin-bottom: 50px;
}
@media all and (max-width:1366px) {
	.club_cennnost .container h3 {
		font-size:40px;
	}
	.club_cennnost .container .item .text {
		flex: 0 0 calc(37% - 70px);
	}
}
@media all and (max-width:768px) {
	.club_cennnost .container .subtitle {
		font-size:24px;
	}
	.club_cennnost .container .item {
		gap:20px;
	}
	.club_cennnost .container .item .text {
		font-size:16px;
	}
	.club_cennnost .container .item .text_2 p {
		font-size:16px;
	}
}
@media all and (max-width:600px) {
	.club_cennnost .container h2 {
	    margin-bottom: 30px;
	}
	.club_cennnost .container h3 {
		font-size:24px;
		margin-bottom: 0;
		margin-top: 30px;
	}
	.club_cennnost .container .subtitle {
		font-size:16px;
		padding:0;
	}
	.club_cennnost .container .break {
		height:66px;
		background-size: cover;
	}
	.club_cennnost .container .break_2 {
		height:66px;
		background-size: cover;
	}
	.club_cennnost .container .wrap {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	  &::-webkit-scrollbar {
	       display: none;
	    }
	}
	.club_cennnost .container .item {
		flex-wrap:wrap;
		gap: 0;
		min-width: 500px;
}
	.club_cennnost .container .item .number {
	    width: 48px;
	    height: 48px;
	    flex: 0 0 40%;
	    margin: 0;
	    order: 1;
	}
	.club_cennnost .container .item .arrow {
		flex: 0 0 60%;
		width: 48px;
		height: 48px;
		background: url(../img/ar2.svg) center no-repeat;
		background-size: contain;
		white-space: nowrap;
		order: 2;
		background-position: left;
	}
	.club_cennnost .container .item .text {
		order: 3;
		flex: 0 0 40%;
		padding-right: 20px;
		margin-top: 15px;
	}
	.club_cennnost .container .item .text_2 {
		order: 4;
		flex: 0 0 60%;
		margin-top: 15px;
	}
}

.club_ravnye {
	background: #282828;
    color: #ffffff;
}
.club_ravnye .container {
    justify-content: left;
}
.club_ravnye .container h2 {
    max-width: 930px;
    margin-bottom: 50px;
}
.club_ravnye .carousel {
	flex:0 0 100%;
}
.club_ravnye .carousel .flickity-slider {
	left: calc(50% - 650px) !important;
}
.club_ravnye .carousel .flickity-page-dots {bottom: -30px;}
.club_ravnye .carousel .flickity-page-dots .dot {
    background: #B07D5E;
	opacity:1;
}
.club_ravnye .carousel .flickity-page-dots .dot.is-selected {
	background: #fff;
    width: 25px;
    border-radius: 5px;
}
.club_ravnye .item {
    width: 428px;
    margin-right: 20px;
}
.club_ravnye .item img {}
.club_ravnye .item .title {
    font-size: 32px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.club_ravnye .item .text {
    font-size: 20px;
}
@media all and (max-width:1366px) {
	.club_ravnye .carousel .flickity-slider {
		left: calc(50% - 560px) !important;
	}
	.club_ravnye .item {
		width:372px;
	}
	.club_ravnye .item .title {
		font-size:24px;
	}
	.club_ravnye .item .text {
		font-size:16px;
	}
}
@media all and (max-width:1160px) {
	.club_ravnye .carousel .flickity-slider {
		left: 10px !important;
	}
}
@media all and (max-width:768px) {
	.club_ravnye .item {
		width:348px;
	}
}
@media all and (max-width:600px) {
	.club_ravnye {
    padding: 50px 0 70px;
}
	.club_ravnye .item {
		width:238px;
	}
	.club_ravnye .item .title {
		font-size:20px;
	}
	.club_ravnye .item .text {
		font-size:14px;
	}
}

.chlenstvo {
    background: url(../img/bg2.png) center no-repeat;
    background-size: cover;
    color: #ffffff;
    padding: 100px 0 30px;
}
.chlenstvo .container {
    justify-content: left;
}
.chlenstvo .container .button {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}
.chlenstvo .container .button .btn {
    padding: 0 20px;
    max-width: fit-content;
    font-size: 24px;
    height: 60px;
}
.chlenstvo .container h2 {
    margin-bottom: 50px;
}
.chlenstvo .container .subtitle {
    flex: 0 0 100%;
    font-size: 32px;
    max-width: 940px;
    margin-bottom: 50px;
}
.chlenstvo .container .wrap {
    display: flex;
    justify-content: space-between;
}
.chlenstvo .container .wrap .item {
    flex: 0 0 32%;
}
.chlenstvo .container .wrap .item .icon {
    width: 60px;
    height: 60px;
    background: url(../img/icon.svg) center no-repeat;
    background-size: contain;
    margin-bottom: 25px;
}
.chlenstvo .container .wrap .item .text {
    font-size: 20px;
}
@media all and (max-width:1366px) {
	.chlenstvo .container .wrap .item .text {
	    font-size: 16px;
	    padding-right: 20px;
	}
}
@media all and (max-width:768px) {
	.chlenstvo .container .subtitle {
	    font-size: 24px;
	}
	.chlenstvo .container .wrap {
		flex-wrap:wrap;
	}
	.chlenstvo .container .wrap .item {
	    flex: 0 0 100%;
	    margin-bottom:30px;
	    max-width:500px;
	    display: flex;
	}
	.chlenstvo .container .wrap .item .icon {
		flex:0 0 60px;
		margin-right:20px;
	}
}
@media all and (max-width:600px) {
	.chlenstvo {
		padding:50px 0;
	}
	.chlenstvo .container .subtitle {
	    font-size: 20px;
	}
	.chlenstvo .container .wrap .item .icon {
		flex:0 0 39px;
		margin-right:20px;
	}
	.chlenstvo .container .wrap .item .text {
	    font-size: 14px;
	}
}

.chlenstvo_2 {
    padding: 0 0 150px;
    background: #282828;
    color: #fff;
}
.chlenstvo_2 .container {}
.chlenstvo_2 .container .break {
	padding: 75px 0;
	width: 100%;
	background: url(../img/break_3.svg) center no-repeat;
	background-size: contain;
}
.chlenstvo_2 .container .post {
    font-size: 32px;
    max-width: 800px;
    text-align: center;
}

@media all and (max-width:768px) {
	.chlenstvo_2 .container .post {
	    font-size: 24px;
	}
}

@media all and (max-width:600px) {
	.chlenstvo_2 {
		padding: 0 0 50px;
	}
	.chlenstvo_2 .container .break {
		padding: 30px 0;
		background-size: cover;
		margin-bottom: 30px;
	}
	.chlenstvo_2 .container .post {
	    font-size: 16px;
	}
	.chlenstvo .container .button .btn {
		font-size:16px;
	}
}

.eshe_cifry {}
.eshe_cifry .container {}
.eshe_cifry .container h2 {
    margin-bottom: 50px;
}
.eshe_cifry .container .item {
    flex: 0 0 33%;
    padding: 0 20px 0 0;
}
.eshe_cifry .container .item .number {
    font-size: 72px;
    color: #B07D5E;
    font-weight: 600;
}
.eshe_cifry .container .item .text {
    font-size: 24px;
}
@media all and (max-width:768px) {
	.eshe_cifry .container .item {
	    flex: 0 0 100%;
		max-width:600px;
	    padding: 0;
		margin-bottom:20px;
	}
}
@media all and (max-width:600px) {
	.eshe_cifry .container .item .number {
		font-size:48px;
	}
	.eshe_cifry .container .item .text {
	    font-size: 20px;
	}
}

.reshat_zadachi {
    background: #E8E8E8;
    padding-bottom: 0;
}
.reshat_zadachi .container {
    justify-content: left;
}
.reshat_zadachi .container h2 {
    max-width: 720px;
    margin-bottom: 50px;
}
.reshat_zadachi .container .wrap {
    display: flex;
    flex-wrap: wrap;
}
.reshat_zadachi .container .wrap .item {
    flex: 0 0 50%;
    display: flex;
    padding-right: 20px;
    align-items: center;
    margin-bottom: 60px;
}
.reshat_zadachi .container .wrap .item .img {
    flex: 0 0 223px;
    margin-right: 40px;
}
.reshat_zadachi .container .wrap .item .img img {
    width: 100%;
}
.reshat_zadachi .container .wrap .item .text {}
.reshat_zadachi .container .wrap .item .text p {
    font-size: 20px;
}
.reshat_zadachi .container .wrap .item .text img {
    margin-top: 25px;
}
.reshat_zadachi .container .button {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}
.reshat_zadachi .container .button .btn {
    max-width: fit-content;
    padding: 0 20px;
    font-size: 24px;
}
@media all and (max-width:1366px) {
	.reshat_zadachi .container .wrap .item .img {
	    flex: 0 0 194px;
	}
	.reshat_zadachi .container .wrap .item .text p {
	    font-size: 16px;
	}
}
@media all and (max-width:768px) {
	.reshat_zadachi .container .wrap .item {
		flex:0 0 100%;
	}
	.reshat_zadachi .container .wrap .item .img {
	    flex: 0 0 223px;
	}
}

@media all and (max-width:600px) {
	.reshat_zadachi .container .wrap .item {
		flex-wrap:wrap;
		justify-content:center;
	}
	.reshat_zadachi .container .wrap .item .img {
	    flex: 0 0 223px;
	    margin: 0;
	}
	.reshat_zadachi .container .wrap .item .text {
		flex:0 0 100%;
	}
	.reshat_zadachi .container .button .btn {
		font-size:16px;
	}
}

.faq {
    background: #e8e8e8;
}
.faq .container {}
.faq .container h2 {
    margin-bottom: 50px;
}
.faq .container .qwe {
    flex: 0 0 100%;
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 5px;
}
.faq .container .qwe .h3 {
    padding: 20px 60px 20px 30px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}
.faq .container .qwe .h3:after {
	content:'';
	display: block;
	width: 28px;
	height: 28px;
	background: url(../img/arr.svg) center no-repeat;
	position: absolute;
	right: 20px;
	top: 18px;
}
.faq .container .qwe .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.faq .container .qwe.open .h3:after {}
.faq .container .qwe.open .answer {
    max-height: 10000px;
    transition: max-height 1s ease-in-out;
}
.faq .container .qwe .answer p {
    margin: 0 50px 20px;
}
.faq .container .qwe .answer p a {
	color:#B07D5E;
}
.faq .container .qwe .answer ul {
    margin: 0 50px 20px;
    list-style: none;
    padding: 0;
}
.faq .container .qwe .answer ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}
.faq .container .qwe .answer ul li:before {
	content:'';
	display: block;
	width: 17px;
	height: 12px;
	background: url(../img/mark.svg) center no-repeat;
	background-size: contain;
	position: absolute;
	top: 5px;
	left: 0;
}
@media all and (max-width:600px) {
	.faq .container .qwe .h3 {
		font-size:14px;
	}
	.faq .container .qwe .answer {
		font-size:14px;
	}
}

.feedback {
    background: #000;
    color: #fff;
    padding: 100px 0 50px;
}
.feedback .container {}
.feedback .container h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}
.feedback .container .forma_wrap {
    flex: 0 0 100%;
}
.feedback .container .forma_wrap .forma {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.feedback .container .forma_wrap .forma label {
    flex: 0 0 calc(33.333% - 10px);
    position: relative;
}
.feedback .container .forma_wrap .forma label input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    padding-left: 15px;
}
.feedback .container .forma_wrap .forma label select {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
.feedback .container .forma_wrap .forma label input.error {
    border: 2px solid red;
}
.feedback .container .forma_wrap .forma label .warning {
    position: absolute;
    background: red;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 3px;
    bottom: -7px;
    right: 10px;
}
.feedback .container .forma_wrap .forma label[for=policy] {
    flex: 0 0 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 6px;
}
.feedback .container .forma_wrap .forma label[for=policy] input {
    height: 22px;
    flex: 0 0 22px;
}
.feedback .container .forma_wrap .forma label[for=policy] .label {
    font-size: 13px;
    line-height: 1;
}
.feedback .container .forma_wrap .forma label[for=policy] .label a {
	color: #fff;
}
.feedback .container .forma_wrap .forma label[for=policy] .warning {
}
.feedback .container .forma_wrap .forma label[for=policy].error {
    border: 2px solid red;
}
.feedback .container .forma_wrap .forma .btn {
    flex: 0 0 calc(33.333% - 10px);
    max-width: none;
}
.feedback .container .forma_wrap .forma .notice {
    flex: 0 0 100%;
    text-align: right;
    font-size: 12px;
    margin-top: 10px;
}
.feedback .container .forma_wrap .forma .notice a {
    color: #ffffff;
}
.feedback .container .forma_wrap div.error {}
.feedback .container .forma_wrap div.succsess {}
@media all and (max-width:768px) {
	.feedback .container h2 {
	    font-size: 24px;
	}
	.feedback .container .forma_wrap .forma label {
		flex:0 0 calc(50% - 10px)
	}
	.feedback .container .forma_wrap .forma .btn {
		flex:0 0 calc(50% - 10px)
	}
}
@media all and (max-width:600px) {
	.feedback .container h2 {
	    font-size: 20px;
	}
	.feedback .container .forma_wrap .forma label {
		flex:0 0 100%
	}
	.feedback .container .forma_wrap .forma .btn {
		flex:0 0 100%
	}
}

.footer {
    background: #000;
    COLOR: #FFFFFF;
}
.footer .container {
    justify-content: space-between;
    align-items: flex-start;
}
.footer .container div {
    flex: 0 0 25%;
}
.footer .container .logo {
    flex: 0 0 248px;
}
.footer .container .logo p {
    font-size: 12px;
    margin: 5px 0 5px;
}
.footer .container .logo p a {
    color: #747474;
}
.footer .container .logo a img {
    margin-bottom: 25px;
}
.footer .container .links {display: flex;flex-wrap: wrap;flex: 0 0 calc(25% + 171px);}
.footer .container .links a {
    color: #fff;
    text-decoration: none;
    margin: 0 22px;
}
.footer .container .button {
    flex: 0 0 223px;
}
.footer .container .button a {
    width: 223px;
}
.footer .container .contacts {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 170px;
}
.footer .container .contacts .tel {
    flex: 0 0 100%;
    text-align: right;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.footer .container .contacts p {
    flex: 0 0 100%;
    text-align: right;
}
@media all and (max-width:1130px) {
	.footer .container .logo {
	    order: 1;
	    flex: 0 0 calc(100% - 223PX);
	    margin-bottom: 50px;
	}
	.footer .container .button {
	    order: 2;
	}
	.footer .container .links {
	    order: 3;
	    flex: 0 0 calc(100% - 223px);
	}
	.footer .container .contacts {
	    flex: 0 0 223px;
	    order: 4;
	}
	.footer .container .links a {
	    flex: 0 0 100%;
	    margin: 0 0 20px 0;
	}
}
@media all and (max-width:600px) {
	.footer .container .links {
		order:1;
		flex: 0 0 100%;
	}
	.footer .container .links a {
		text-align:center;
	}
	.footer .container .button {
		order:2;
		flex: 0 0 100%;
		display: flex;
		justify-content: center;
		margin: 30px 0 50px;
	}
	.footer .container .logo {
	    order: 3;
	    flex: 0 0 100%;
	    display: flex;
		flex-wrap:wrap;
	    justify-content: center;
	}
	.footer .container .logo p {
		flex:0 0 100%;
		text-align:center;
	}
	.footer .container .contacts {
	    flex: 0 0 100%;
	}
	.footer .container .contacts .tel {
		text-align:center
	}
	.footer .container .contacts p {
		text-align:center
	}
}

.form_popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000a3;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_popup .forma_wrap {
    flex: 0 0 100%;
    max-width: 560px;
    background: #000;
    padding: 35px;
    position: relative;
}
.form_popup .forma_wrap .title {
    color: #fff;
    font-size: 24px;
    margin: 0 0 30px;
    text-align: center;
}
.form_popup .forma_wrap .forma {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.form_popup .forma_wrap .forma label {
    flex: 0 0 100%;
    position: relative;
}
.form_popup .forma_wrap .forma label input {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 5px;
    padding-left: 15px;
}
.form_popup .forma_wrap .forma label select {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
.form_popup .forma_wrap .forma label input.error {
    border: 2px solid red;
}
.form_popup .forma_wrap .forma label .warning {
    position: absolute;
    background: red;
    color: #fff;
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
    bottom: -6px;
    right: 10px;
}
.form_popup .forma_wrap .forma label[for=policy] {
    flex: 0 0 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 6px;
}
.form_popup .forma_wrap .forma label[for=policy] input {
    height: 22px;
    flex: 0 0 22px;
}
.form_popup .forma_wrap .forma label[for=policy] .label {
    font-size: 13px;
    line-height: 1;
    color: #fff;
}
.form_popup .forma_wrap .forma label[for=policy] .label a {
	color: #fff;
}
.form_popup .forma_wrap .forma label[for=policy] .warning {
}
.form_popup .forma_wrap .forma label[for=policy].error {
    border: 2px solid red;
}
.form_popup .forma_wrap .forma .btn {
    flex: 0 0 100%;
    max-width: none;
}
.form_popup .forma_wrap .forma .notice {
    flex: 0 0 100%;
    text-align: right;
    font-size: 12px;
    margin-top: 10px;
    color: #fff;
}
.form_popup .forma_wrap .forma .notice a {
    color: #ffffff;
}
.form_popup .forma_wrap div.error {
	color: #ffffff;
}
.form_popup .forma_wrap div.succsess {
	color: #ffffff;
}
.form_popup .forma_wrap span.close {
    position: absolute;
    background: #b07d5e;
    color: #ffffff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    padding-bottom: 5px;
    border-radius: 50%;
    font-size: 20px;
    transform: rotate(45deg);
    cursor: pointer;
    top: 15px;
    right: 15px;
}

.info_coockie {
    position: fixed;
    bottom: 16px;
    left: 50%;
    z-index: 100000;
    width: 100%;
    max-width: 480px;
    margin: 0 16px 0;
    padding: 12px 16px 16px;
    border-radius: 12px;
    outline: 4px solid rgba(255, 255, 255, 0.25);
    background: rgba(26, 24, 20, 0.82);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transform: translateX(-50%);
}

.info_coockie .content {
}

.info_coockie .content p {
    color: #fff;
    font-size: 15px;
}

.info_coockie .content p a {
    text-decoration: underline;
    color: #fff;
}

.info_coockie .content .coockie_close {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    padding: 9px 16px;
    border-radius: 4px;
    background-color: #FAF8F5;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
    margin-top: 15px;
}