*{
	margin:0;
	padding:0;
}
@font-face {
    font-family: 'pfd_regular';
    src: url('PFDinTextPro.eot');
    src: url('PFDinTextPro.eot?#iefix') format('embedded-opentype'),
         url('PFDinTextPro.woff') format('woff'),
         url('PFDinTextPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,html {	
	background:#F1F5F9;
	font-family: pfd_regular,Arial,Helvetica,sans-serif;
	font-size: 17px;
	color: #333333;
	line-height: 130%;
	margin: 0;
	padding: 0;
}

html {
  scroll-behavior: smooth;
}

a {
text-decoration:none;
color: #D98A09;
}
a:hover {
/*text-decoration:underline;*/
color: #FF8B2B;
}

h1,h2,h3,h4,h5,h6,p{
	margin:5px 0px;
}
h1{
	color:#333;
	text-align:left;
	font-size:30px;
}
h2{
	color:#F86501;
	text-align:center;
	font-size:25px;
}
h3{
	color:#F86501;
	text-align:left;
	font-size:25px;
}
p{
	color:#333;
	text-align:left;
	font-size:15px;
}

.podval{
	border: 0px solid green;
	background:#fff;
	padding:20px;
	font-size:14px;
	color:#777;
}

.flex_c1 {
	border: 0px solid red;
	display: -webkit-flex; 
	display: flex; 
	flex-direction: row;
	justify-content: space-between;
	padding:10px 5px;
	align-items: flex-start;
}
.flex_start {
	justify-content: flex-start;
	padding-bottom:0px;
}
.div_3{
	border: 0px solid green;
	overflow-wrap:break-word;
	padding:0px;
	font-size:14px;
}

.img_logo{
	width:100%;
}

.div_need{
	border:0px solid;
	background:#fff;
	padding:5px 5px;
	margin:5px 5px 20px 5px;
	overflow:auto;
	
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.div_need img{
	float:left;
	margin:5px 5px;
	max-width:60px;
	height:60px;
	
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.poleform{
    font-size: 150%;
	background:#fff;
	color: #838383;
	border: 1px solid #001E44;
	padding: 5px 15px;
	margin: 0px 0px;
	width:calc(100% - 30px);
	text-align:left;
	margin-bottom: -5px;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}
.poleform:focus {
	color:#222222;
	border: 1px solid #000C34;
   -webkit-box-shadow:inset 0 0 0px #000;
   -moz-box-shadow:inset 0 0 0px #000;
   box-shadow:inset 0 0 0px #000;
}

/*  ------------- knopki --------------- */
.button {
    font-family: Helvetica, Arial, sans-serif;
    text-decoration: none;
    line-height: 1;
	cursor:pointer;
	border: 1px solid;
	width:calc(100% - 20px);
	padding: 10px 10px;
	margin: 0px 0px;
	text-align:center;

	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.big {
font-size:30px;
font-weight:700;
padding: 20px 10px;
}
.normal {
font-size:20px;
font-weight:700;
}
.mini {
font-size:12px;
}

.head_btn {
background: #F2E7E0;
color:#F86501;
}
.head_btn:hover {
background: #F2E078;
}
.orange {
background: #F86501;
color:#fff;
}
.orange:hover {
background: #F05C01;
}
.white {
background: linear-gradient(to top, #E2EAD5,#FDFDFC);
color:#000;
}
.white:hover {
background: linear-gradient(to top, #FDFDFC,#E2EAD5);
}
.yellow {
background: linear-gradient(to top, yellow,#FFFFA5);
color:#000;
}
.yellow:hover {
background: linear-gradient(to top, #FFFFA5,yellow);
}
.black {
background: linear-gradient(to top, #000,#777);
color:#fff;
}
.black:hover {
background: linear-gradient(to top, #777,#000);
}
.blue {
background: linear-gradient(to top, #7E7EFF,#0000FF);
color:#fff;
}
.blue:hover {
background: linear-gradient(to top, #0000FF,#7E7EFF);
}
.red {
background: linear-gradient(to top, #FF9292,#FF0000);
color:#fff;
}
.red:hover {
background: linear-gradient(to top, #FF0000,#FF9292);
}



/* Базовые стили модального окна + stantsii metro */
.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    cursor: default;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    -ms-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s;
}
.overlay:target {
    visibility: visible;
    opacity: 0.8;
}
.popup {
    background-color: #fff;
    border: 0px solid rgba(0, 0, 0, 0.3);
    display: inline-block;
    opacity: 0;
    padding:30px 20px 70px 20px;
    position: fixed;
    text-align: justify;
	font: 14px Helvetica, Arial, Sans-Serif;
    visibility: hidden;
    z-index: 10;
	overflow: auto;
	width:calc(100% - 80px);
	overflow:auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;

    -webkit-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -ms-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    -o-box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
    box-shadow: 0 1px 1px 2px rgba(0, 0, 0, 0.4) inset;
}
.overlay:target+.popup {
    top: 10%;
	left: 20px;
    opacity: 1;
    visibility: visible;
}
.close {
    background-color: rgba(0, 12, 52, 0.8);
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 10px;
	right: 10px;
    width: 30px;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-size: 24px;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
}
.close:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

.js_popup{
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.8);
    position:fixed;
    top:0px;
	left:0px;
	z-index:1111;
	display:none;
}
/* //main.min.css
.js_popup_content{
	position:absolute;
	top:0px;
	left:0px;
	overflow:auto;
    margin:0px auto 0px 0px;
    padding:0px;
    background-color:#fff;
	border:0px solid red;
    border-radius:5px;
    box-shadow: 0px 0px 10px #000;
	max-width:100%;
	max-height:100%;
} */
.js_popup_content2{
	position:absolute;
	top: calc(50% - 350px);
	left:15%;
	overflow:auto;
    margin:auto;
    padding:0px;
    background-color: transparent;
	border:0px solid red;
    border-radius:5px;
    box-shadow: 0px 0px 0px #000;
	width:70%;
	height: calc(700px - 0px);
}
.js_popup_content3{
	position:relative;
	overflow:auto;
    margin:20px auto 0px auto;
    width:90%;
	height:95%;
    padding:0px;
    background-color: #fff;
    border-radius:5px;
    box-shadow: 0px 0px 10px #000;
}
.js_popup_img{
	position:relative;
	margin:auto auto;
	max-width:100%;
	height:700px;
	display:flex;
	align-items:center;
}
.js_img_gal{
	position:relative;
	margin:auto auto;
	top: 0px;
	left: 0px;
	text-align: center;
	z-index:1;
	display:none;
	max-width:100%;
	max-height:100%;
	align-self:stretch;
	display:flex;
	align-items:center;
}
.js_popup_close{
	position:absolute;
	border:0px solid red;
	text-align:center;
	width:40px;
    height:40px;
	top:20px;
	right:20px;
	color:#fff;
	font-size:40px;
	cursor:pointer;
	-webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    border-radius: 100px;
	z-index:3;
}
.js_popup_left, .js_popup_right, .js_popup_left_rotate, .js_popup_right_rotate{
	position:absolute;
	border:0px solid red;
	text-align:center;
	width:40px;
    height:40px;
	top:50%;
	right:20px;
	color:#fff;
	font-size:85px;
	cursor:pointer;
	z-index:3;
}
.js_popup_left{
	left:20px;
}
.js_popup_left_rotate, .js_popup_right_rotate{
	font-size:55px;
	top:25%;
}
.js_popup_left_rotate{
	left:20px;
}















.text_center{text-align:center;}
.text_left{text-align:left;}
.text_right{text-align:right;}


.width_1{width:1%;}
.width_1_5{width:1.5%;}
.width_2{width:2%;}
.width_3{width:3%;}
.width_4{width:4%;}
.width_5{width:5%;}
.width_6{width:6%;}
.width_7{width:7%;}
.width_8{width:8%;}
.width_10{width:10%;}
.width_10_5{width:10.5%;}
.width_12{width:12%;}
.width_13{width:13%;}
.width_15{width:15%;}
.width_15_5{width:15.5%;}
.width_16{width:16%;}
.width_17{width:17%;}
.width_20{width:20%;}
.width_21{width:21%;}
.width_22{width:22%;}
.width_23{width:23%;}
.width_24{width:24%;}
.width_25{width:25%;}
.width_27{width:27%;}
.width_29{width:29%;}
.width_30{width:30%;}
.width_33{width:33%;}
.width_35{width:35%;}
.width_40{width:40%;}
.width_45{width:45%;}
.width_50{width:50%;}
.width_55{width:55%;}
.width_60{width:60%;}
.width_65{width:65%;}
.width_70{width:70%;}
.width_72{width:72%;}
.width_73{width:73%;}
.width_75{width:75%;}
.width_77{width:77%;}
.width_80{width:80%;}
.width_85{width:85%;}
.width_90{width:90%;}
.width_95{width:95%;}
.width_100{width:100%;}




@media screen and (max-width: 1024px) {
/* esli razreshenie menishe 1024px */
}
@media screen and (max-width: 768px){
/* esli razreshenie menishe 768px */

.normal {font-size:15px;}
h1{font-size:20px;}
h2{font-size:18px;}
.big {font-size:25px;padding: 10px 5px;}

}
@media screen and (max-width: 430px){
/* esli razreshenie menishe 430px */
}



