/* Сбрасываем стили */

ul,ol { list-style:none }
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input { margin:0; padding:0 }
a img,:link img,:visited img { border:none }

/* Тэги html 5*/

article, aside, figcaption, figure, footer, header, hgroup, nav, section { 
    display:block;
	background:tranceparent;
}

/* Основные стили */

* {
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}

/*ul {margin: 10px 0;}
ul li {margin: 0px 0 5px 40px; padding: 0 0 0 10px; list-style-type:disc;}*/

@font-face {
    font-family:'Fors ExtraBold'; 
    src: url('images/custom/TT Fors Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;

}

@font-face {
    font-family:'Fors'; 
    src: url('images/custom/TT Fors Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}






<!--
@font-face {
    font-family: 'Fors';
    src: local('TT Fors'), url('../fonts/fors/TT_Fors_Regular.woff2') format('woff2'), url('../fonts/fors/TT_Fors_Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fors ExtraBold';
    src: local('TT Fors ExtraBold'), url('../fonts/fors/TT_Fors_ExtraBold.woff2') format('woff2'), url('../fonts/fors/TT_Fors_ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
-->

body, html {
	background: #ffffff; 
	font-family: 'Fors';
	padding:0px; 
	margin:0 auto; 
	font-weight: 400; 
	font-style: normal; 
	color:#1A1A1A; 
	line-height:1.2; 
	width:100%;
}

body {
	display:grid;
	min-height: 100%;
	grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-self: start;
    
}

/* Базовые стили */

img {border:0px;}
a:link{
	color:#0537c8;
	text-decoration:none;
	border-bottom:1px solid #0537c8;
}
a:hover{
	color:#05CC05;
	text-decoration:none;
	border-bottom:1px solid #05CC05;
}
a:visited{
	color:#78039e; 
	text-decoration:none;
	border-bottom:1px solid #78039e;
}
a:visited:hover{
	color:#05CC05; 
	text-decoration:none;
	border-bottom:1px solid #05CC05;
}
h1 {
	font-size: 2em; 
	font-weight: 800; 
	margin: 0 0 1em 0;
	font-family: 'Fors ExtraBold';
    line-height:1.25em;
}
h2 {
	font-size: 1.6em; 
	font-weight: 800; 
	margin: 1em 0 1em 0;
	font-family: 'Fors ExtraBold';
    line-height:1.25em;
}
h3 {
	font-size: 1.2em; 
	font-weight: 800; 
	margin: 1em 0 1em 0;
	font-family: 'Fors ExtraBold';
    line-height:1.25em;
}
h4 {
	font-size: 1em; 
	font-weight: 800; 
	margin: 1em 0 1em 0;
	font-family: 'Fors ExtraBold';
    line-height:1.25em;
}
p {padding: 0.25em 0;}
textarea {width:100%; height:90px; font-family: 'Fors';} 
hr {border-top:1px solid #333333; border-bottom:0px solid #cccccc; margin-bottom:24px; margin-top:24px; clear:both;}
blockquote {border-left:6px solid #333333; margin: 24px 0px; padding-left:12px; font-weight:bold;}
fieldset {margin:10px 0px 10px 0px; padding: 10px; border:1px solid #333333;}
legend {font-weight:bold;}
input {padding:0px; font-family: 'Fors';}

ul {
	padding: 0.25em 0;
}

ul li {
	list-style-type: disc;
	margin: 0.25em 1em;
	padding: 0.25em 0.5em; 
}

ol {
	padding: 0.25em 0;
}

ol li {
	list-style-type: decimal;
	margin: 0.25em 1em;
	padding: 0.25em 0.5em; 
}

.btn {
	padding:0.5em 1em;
    font-size:1em;
    border:1px solid #cccccc;
	background:#cccccc;
    display:inline-block;
    border-radius:1.5em;
    height: 2em;
	line-height:1em;
	font-family: 'Fors';
}

.btn:hover {
	cursor:pointer;
}

.breadcrumbs {
	margin-bottom:1em;
	color:#cccccc;
} 

.breadcrumbs a {
	color:#cccccc;
	border-bottom:1px solid #cccccc;
} 

.styled-scrollbars {
	/* плашка-бегунок и фон */
	scrollbar-color: #cccccc #ffffff;
}
.styled-scrollbars::-webkit-scrollbar {
	width: 8px; /* в основном для вертикальных полос прокрутки */
	height: 8px; /* в основном для горизонтальных полос прокрутки */
}
.styled-scrollbars::-webkit-scrollbar-thumb { /* плашка-бегунок */
	background: #efefef;
}
.styled-scrollbars::-webkit-scrollbar-track { /* фон */
	background: #ffffff;
}


.bread_crumbs {
	margin:0;
}


.header {
    padding: 0 4em;
    display: grid;
    grid-template-areas:
        "logo topmenu"
        "menu menu";
    grid-template-columns: 400px auto ;
    gap: 1em;
    margin-top: 1em;
    align-self: start;
}



.header .header_top_pic {
    grid-area: header_top_pic;
}

.header .header_top_pic img {
    width:100%;
}

.header .logo {
    grid-area: logo;
    text-align:center;
    display: flex;
    flex-wrap:nowrap;
    gap:1em;
    align-items: center;
    /* color:#0537c8; */
}

.header .logo .pic a {
    border:0;
}

.header .logo .pic img {

    margin:0em auto;
}

.header .logo .ttl {
    font-size:1.5em;
    text-align:left;
    font-family: 'Fors ExtraBold';
    text-transform: uppercase;
    color:#005BAA;
    width:220px;
    line-height:1.25em;
}


.header .topmenu {
    grid-area: topmenu;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 1em;
}



.header .topmenu a {
    border:0;
}

.header .topmenu .registration {
    margin-right: 4em;
}

.header .topmenu .registration a {
    padding: 0.25em 2em;
    background: rgb(44,199,249);
    background: linear-gradient(45deg, rgba(44,199,249,1) 0%, rgba(5,55,200,1) 100%);
    color:#ffffff;
    border-radius:2em;
    font-size:1.5em;
}

.header .topmenu .telegram img {
    width: 2em;
    aspect-ratio: 1/1;
}

.header .topmenu .login {
    display:flex;
    flex-wrap:nowrap;
    gap: 1em;
    align-items: center;
    font-weight:bold;
}

.header .topmenu .login a {
    color:#333333;
}

.header .topmenu .login img {
    width: 1.5em;
    aspect-ratio: 1/1;
}

.header .topmenu .lang {
    padding:0.5em;
    background:#f6f6f6;
    text-transform:uppercase;
    border-radius: 0.25em;
}

.header .topmenu .lang a {
    color:#333333;
}

.header .menu {
    grid-area: menu;
    display:flex;
    flex-wrap:wrap;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap:5em;
    padding: 1em 4em;
    border-top:1px solid #f6f6f6;
    border-bottom:1px solid #f6f6f6;
    position:relative;
}

.header .menu .link {
    font-size:1em;
    position:relative;
}

.header .menu .link:after {
    content: "";
    width:1px;
    background:#333333;
    height:1.5em;
    position:absolute;
    top:0;
    right:-2.5em;
    font-size:1em;
}

.header .menu .link a {
    border:0;
    color:#333333;
    font-weight:bold;
    font-size:1.25em;
}

.header .menu .link.button {
    padding: 0.5em 1em;
    background:#333333;
    border-radius:0.25em;
}

.header .menu .link.button a {
    border:0;
    color:#ffffff;
}

.header .menu .link.search {
    position:absolute;
    top:1em;
    right:4em;
}

.header .menu .link.search:after {
    content: "";
    width:0px;
    background:#ffffff;
}

.header .menu .link.search img {
    width: 1.5em;
    aspect-ratio: 1/1;
}

































.main_page .section_title {
    display:block;
    text-align:center;
}

.main_page .section_title span {

    font-size:1.5em;
    margin: 0em 0 1em 0;
    text-align:center;
    border-bottom:4px #05CC05 solid;
    display:inline-block;
    padding: 0.5em 1em;
    /* background:#efefef; */
}

.main_page .section_description {
    margin: 2em 0;
	font-size:1.25em;
	line-height:1.5em;
}

 
.main_page {
	padding:2em;
    margin:2em;
    border:1px solid #efefef;
    -webkit-box-shadow: 0px 0px 32px 0px rgba(51, 51, 51, 0.2);
    -moz-box-shadow: 0px 0px 32px 0px rgba(51, 51, 51, 0.2);
    box-shadow: 0px 0px 32px 0px rgba(51, 51, 51, 0.2);
    display: grid;
    grid-template-areas: "left_bar center_field right_bar";
	grid-template-columns: 350px 1fr 350px;
	gap:2em;
}

.main_page .left_bar {
	grid-area: left_bar;
	display: grid;
    grid-template-columns: 1fr;
    gap:2em;
    align-self: start;
}



.main_page .left_bar .logo {
    text-align:center;
    display: flex;
    flex-wrap:nowrap;
    gap:2em;
    align-items: center;
}

.main_page .left_bar .logo a {
    border:0;
}

.main_page .left_bar .logo .pic img {
    aspect-ratio: 1/1;
    width:150px;
    margin:0em auto;
}

.main_page .left_bar .logo .ttl {
    font-family: 'Fors ExtraBold';
    font-size:1.5em;
    text-align:left;
}

.main_page .left_bar .user_data {
    display: grid;
    grid-template-columns: 1fr;
    align-self: start;
    gap: 1em;
}

.main_page .left_bar .menu {
    display:grid;
    grid-template-columns: 1fr;
    gap:1em;
	font-family: 'Fors ExtraBold';
}

.main_page .left_bar .menu .menu_group {
    display:grid;
    grid-template-columns: 1fr;
    gap:1em;
}

.main_page .left_bar .menu .menu_group .group_title {
	font-weight: normal;
	font-size:1.25em;
	color:#cccccc;
}

.main_page .left_bar .menu .menu_group .group_field {
    display:grid;
    grid-template-columns: 1fr;
    gap:1em;
}

.main_page .left_bar .menu .menu_group .group_field .link {
    padding: 0.5em 0 0.5em 3em;
}

.main_page .left_bar .menu .menu_group .group_field .link a {
    color:#333333;
	border:0;
}

.main_page .left_bar .menu .menu_group .group_field .link.generator {
    background: url("images/Generate.svg") no-repeat left center;
	background-size: 2em;
}

.main_page .left_bar .menu .menu_group .group_field .link.entrance {
    background: url("images/Enter_net.svg") no-repeat left center;
	background-size: 2em;
}

.main_page .left_bar .menu .menu_group .group_field .link.passport {
    background: url("images/Passport.svg") no-repeat left center;
	background-size: 2em;
}

.main_page .left_bar .menu .menu_group .group_field .link.scaner {
    background: url("images/Scaner_p.svg") no-repeat left center;
	background-size: 2em;
}

.main_page .left_bar .reg {
	display:flex;
	flex-direction: column;
	gap:1em
}

.main_page .left_bar .reg .button button {
    padding: 0.5em 1em;
    background: #333333;
    border-radius: 0.25em;
	color:#ffffff;
	display:inline-block;
	font-family: 'Fors ExtraBold';
    font-size:1.25em;
	cursor:pointer;
	border: 1px solid #333333;
}

.main_page .left_bar .reg .button button:hover {
	background: #05CC05;
	border: 1px solid #05CC05;
}

.main_page .center_field {
	grid-area: center_field;
	margin:0em;
	gap:2em;
	display: flex;
  	flex-direction: column;
}

/* .main_page .center_field > div {
    margin:1em;
} */

.main_page .right_bar {
	grid-area: right_bar;
	display: grid;
    grid-template-columns: 1fr;
    gap:2em;
    align-self: start;
}

.footer {
    display: grid;
    grid-template-columns: 1fr;
    align-self: start;
	border-top: 1px solid #efefef;
	padding: 4em;
}

.footer .section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas: "footer_info footer_menu footer_menu" "footer_info footer_common footer_common";
    gap:2em;
    align-self: start;
}

.footer .section .footer_info {
	display:flex;
	flex-wrap:nowrap;
	flex-direction: column;
	gap: 2em;
}

.footer .section .footer_info .logo {
	display: grid;
    grid-template-columns: 80px auto;
	align-self: start;
	gap:1em;
}

.footer .section .footer_info .pic img {
	width:100%;
	aspect-ratio: 1/1;
}

.footer .section .footer_info .contacts {
	display:flex;
	flex-wrap:nowrap;
	flex-direction: column;
	gap: 1em;
}

.footer .section .footer_info .social {
	display:flex;
	flex-wrap:wrap;
	flex-direction: row;
	gap: 1em;
}

.footer .section .footer_info .social .link {
	width: 1em;
}

.footer .section .footer_info .social .link a {
	border:0;
}

.footer .section .footer_info .social .link img {
	width: 2em;
}

.footer .section .footer_info .contacts .phone {
	background: url("images/phone.svg") no-repeat left center;
	background-size: 1.5em;
	padding: 0 0 0 2em;
}

.footer .section .footer_info .contacts .email {
	background: url("images/email.svg") no-repeat left center;
	background-size: 1.5em;
	padding: 0 0 0 2em;
}

.footer .section .footer_info .contacts .email {
	padding:0;
}

.footer .section .footer_info .ttl {
	font-weight:bold;
}

.footer .section .footer_menu {
	grid-area: footer_menu;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:2em;
    align-self: start;
}

.footer .section .footer_menu .block {
	display:flex;
	flex-wrap:nowrap;
	flex-direction: column;
	gap: 2em;
}

.footer .section .footer_menu .block .block-title {
	font-weight:bold;
}

.footer .section .footer_menu .block .menu {
	display:flex;
	flex-wrap:nowrap;
	flex-direction: column;
	gap: 1em;
}

.footer .section .footer_common {
	grid-area: footer_common;
	display:flex;
	flex-wrap:nowrap;
	flex-direction: column;
	gap: 1em;
}


.start_page .promo {
    position:relative;
    padding: 0 4em;
    background: linear-gradient(180deg, rgba(204,204,204,0.1) 0%, rgba(255,255,255,1) 100%);
}

.start_page .promo .wrap {
    position:relative;
}

.start_page .promo .photo {
    aspect-ratio: 24/10;
    overflow:hidden;
    width:100%;
    height:auto;
    position:relative;
    border-bottom-right-radius: 4em;
    border-bottom-left-radius: 4em;
}

.start_page .promo .text-field {
    position:absolute;
    top:0em;
    left:0em;
    z-index:10;
    background:rgb(0,0,0,0.5);
    padding:8em 4em 2em 4em;
    border-bottom-right-radius: 4em;
    border-bottom-left-radius: 4em;
    width:100%;
    height:100%; 
}

.start_page .promo .text-field .wrap {
    display: grid;
    grid-template-areas: "promo-title promo-title promo-action" "promo-text promo-text promo-action";
	grid-template-columns: 1fr 1fr 1fr;
    gap:1em;
}

.start_page .promo .text-field .bottom_wrap {
    display: grid;
	grid-template-columns: 300px auto;
    gap:1em;
    margin-top:4em;
}

.start_page .promo .text-field .bottom_wrap .bottom_menu {
    color:#ffffff;
    background:#383B4A;
    border-radius: 2em;
    padding:2em;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    gap:2em;
}

.start_page .promo .text-field .bottom_wrap .bottom_menu a {
    color:#ffffff;
    border-bottom: 1px solid #f6f6f6;
    font-size:1.25em;
}

.start_page .promo .text-field .title {
    grid-area: promo-title;
    font-size:2.0em;
    margin:0 0 1em 0;
    max-width:1024px;
    text-align:left;
    color:#ffffff;
    text-transform:uppercase;
}

.start_page .promo .text-field .title span {
    font-family: 'Fors ExtraBold';
    font-size:2.5em;
    display:block;
    margin:0.25em 0 0em 0;
    text-transform: none;
}

.start_page .promo .text-field .text {
    grid-area: promo-text;
    font-size:2.1em;
    text-align:left;
    color:#ffffff;
    font-weight:bold;
    line-height:1.5em;
}

.start_page .promo .text-field .action {
    /*grid-area: promo-action;*/
    max-width:600px;
    margin: 0em auto;
    display: grid;
    grid-template-columns: 1fr;
    gap:1em;
    align-self: end;
} 

.start_page .promo .text-field .action a {
    font-size:1.7em;
    border: 0;
    background: rgb(5,204,5);
    background: linear-gradient(90deg, rgba(5,204,5,1) 0%, rgba(5,204,5,1) 35%, rgba(67,92,124,1) 62%, rgba(67,92,124,1) 100%);
    padding: 1em 1.75em;
    color:#ffffff;
    width:100%;
}
 

.start_page .promo .photo img {
    width:100%;
}



.start_page .stat {
    margin-top: 4em;
    position:relative;
    padding: 0 4em;
    background: linear-gradient(180deg, rgba(204,204,204,0.1) 0%, rgba(255,255,255,1) 100%);
}

.start_page .stat .wrap {
    display: grid;
	grid-template-columns: 1fr;
    gap:1em;
}

.start_page .stat .wrap .section-text {
    padding:2em;
    display:flex;
    flex-direction: column;
    gap:2em;
}



.start_page .stat .wrap .section-text .line-1 {
    font-size: 3em;
    position:relative;
}

.start_page .stat .wrap .section-text .line-1:before {
    content:"";
    position:absolute;
    top:-32px;
    left:-32px;
    background: url("images/custom/cross.png") no-repeat center center;
    width:32px;
    height:32px;
    z-index:2;
}

.start_page .stat .wrap .section-text .line-2 {
    font-size: 2em;
    line-height:1em;
}

.start_page .stat .wrap .section-text .line-3 {
    font-size: 2em;
    line-height:1em;
}

.start_page .stat .wrap .section-text .line-3 span {
    font-size: 2em;
    font-weight: bold;
}

.start_page .stat .wrap .section-stat {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "stat-1 stat-2 stat-2";
    gap:1em;
}

.start_page .stat .wrap .section-stat .stat-1 {
    display:flex;
    flex-direction: column;
    gap:1em;
    grid-area: stat-1;
}

.start_page .stat .wrap .section-stat .stat-1 .plate {
    padding: 1em;
    border-radius:1em;
    background:#f6f6f6;
    font-size:2em;
}

.start_page .stat .wrap .section-stat .stat-1 .plate span {
    font-size:2em;
    font-weight:bold;
}

.start_page .stat .wrap .section-stat .stat-2 {
    grid-area: stat-2;
}

 

.start_page .stat .wrap .section-stat .stat-2 .plate {
    display: grid;
	grid-template-columns: 1fr;
    align-self: start;
    gap:2em;
    padding:4em;
    border-radius:4em;
    background:#f6f6f6;
    height:100%;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .action .link {
    padding: 0.25em 1em;
    background: rgb(5,204,5);
    background: linear-gradient(90deg, rgba(5,204,5,1) 0%, rgba(67,235,255,1) 100%);
    color: #333333;
    border-radius: 2em;
    font-size: 1.5em;
    display:inline-block;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "event-title event-title event-title" "event-description event-description event-picture";
    align-self: start;
    gap:2em;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .title {
    grid-area:event-title;
    font-size: 2em;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .description {
    grid-area:event-description;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .description .ttl {
    font-size: 3em;
    font-weight:bold;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .description .descr {
    font-size: 2em;
    margin-top:1em;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .description .title {
    grid-area:event-description;
    font-size: 3em;
    font-weight:bold;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .picture {
    grid-area:event-picture;
}

.start_page .stat .wrap .section-stat .stat-2 .plate .event .picture img {

    width: 12% !important;
    position: absolute;
    top: 406px;
    right: 161px;

}


.start_page .stat .wrap .section-banner  {
    padding:4em;
    border-radius:4em;
    background:#383B4A url("images/custom/start_banner-bg.png") no-repeat center right;
    background-size: contain;
    color:#ffffff;
    display: grid;
	grid-template-columns: 1fr;
    align-self: start;
    gap:2em;
}

.start_page .stat .wrap .section-banner .title {
    font-size: 3em;
    font-weight:bold;
}

.start_page .stat .wrap .section-banner .description {
    font-size: 1.5em;
    max-width:600px;
    line-height: 1.5em;
}

.start_page .stat .wrap .section-banner .action a {
    padding: 0.25em 1em;
    background: rgb(5,204,5);
    background: linear-gradient(90deg, rgba(5,204,5,1) 0%, rgba(67,235,255,1) 100%);
    color: #333333;
    border-radius: 2em;
    font-size: 1.5em;
    display:inline-block;
}


.start_page .opportunity {
    margin-top: 4em;
    margin-bottom: 4em;
    position:relative;
    padding: 0 4em;
    background: linear-gradient(180deg, rgba(204,204,204,0.1) 0%, rgba(255,255,255,1) 100%);
}

.start_page .opportunity .wrap {
    display: grid;
	grid-template-columns: 1fr;
    gap:2em;
    padding: 2em;
}

.start_page .opportunity .wrap .section-text {
    padding:0;
} 

.start_page .opportunity .wrap .section-text .line-1 {
    font-size: 3em;
    position:relative;
}

.start_page .opportunity .wrap .section-text .line-1:before {
    content:"";
    position:absolute;
    top:-32px;
    left:-32px;
    background: url("images/custom/cross.png") no-repeat center center;
    width:32px;
    height:32px;
    z-index:2;
}

.start_page .opportunity .wrap .section-field {
    width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    gap:1em;
} 

.start_page .opportunity .wrap .section-field .col {
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
    gap:1em;
}

.start_page .opportunity .wrap .section-field .plate {
    padding:2em;
    border-radius:2em;
    background:#f6f6f6;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
    gap:1em;
}

.start_page .opportunity .wrap .section-field .plate img {
    width:176px;
    height:auto;
}



.start_page .opportunity .wrap .section-field .plate .ttl {
    font-size:2em;
    font-weight:bold;
}

.start_page .opportunity .wrap .section-field .plate .sect {
    padding:1em;
    border-radius:1em;
    background:#ffffff;
    font-size:1.5em;
}

.start_page .opportunity .wrap .section-field .plate .text {
    font-size:1.5em;
}

.start_page .opportunity .wrap .section-field .plate .digit .line {
    font-size:1.5em;
    font-family: 'Fors ExtraBold';
}

.start_page .opportunity .wrap .section-field .plate .digit .percent {
    font-size:8em;
    font-family: 'Fors ExtraBold';
}

.start_page .opportunity .wrap .section-field .plate.plate-1 {
    height:auto;
}

.start_page .opportunity .wrap .section-field .plate.plate-2 {
    height:auto;
}

.start_page .opportunity .wrap .section-field .plate.plate-3 {
    height:auto;
}

.start_page .opportunity .wrap .section-field .plate.plate-4 {
    height:auto;
}

.start_page .opportunity .wrap .section-field .plate.plate-5 {
    height:auto;
}




.dates {
    /*position: absolute;*/
    top: -63px;
    right: 30px;
    padding: 5px 10px;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    color: white;
    border-radius: 5px;
    font-size: 18px;
    z-index: 1000;
}









@media (min-width: 300px) and (max-width: 800px) {

	.header {
		padding: 0 1em;
		display: grid;
		grid-template-areas:
			"logo"
			"topmenu"
			"menu";
		grid-template-columns: 1fr;
		gap: 1em;
		margin-top: 1em;
		align-self: start;
	}
	
	.header .menu {
		grid-area: menu;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row;
		justify-content: start;
		align-items: center;
		gap: 1em;
		padding: 1em;
		border-top: 1px solid #f6f6f6;
		border-bottom: 1px solid #f6f6f6;
		position: relative;
	}
	
	.header .menu .link:after {
		content: "";
		width: 0px;
	}
	
	.header .menu .link.search {
		position:static;
	}
	
	.start_page .promo {
		padding: 0 1em;
	}


	.start_page .promo .photo {
        aspect-ratio: auto;
        overflow: hidden;
        width: 100%;
        height: 450px;
        position: relative;
        border-bottom-right-radius: 0em;
        border-bottom-left-radius: 0em;
    }

	
	.start_page .promo .photo img {
		width: 100%;
	}


	.start_page .promo .text-field {
        /*position: absolute;*/
        top: 0em;
        left: 0em;
        z-index: 10;
        background: #383B4A;
        padding: 1em;
        border-bottom-right-radius: 0em;
        border-bottom-left-radius: 0em;
        width: 100%;
        height: 450px;
    }

	.start_page .promo .text-field .title {
		text-align:center;
	}
	
	.start_page .promo .text-field .action a {
		font-size: 1em;
		border: 0;
		padding: 1em;
		color: #ffffff;
		width: 100%;
	}
	
	.start_page .promo .text-field .text {
		grid-area: promo-text;
		font-size: 1.5em;
		text-align: left;
		color: #ffffff;
		font-weight: bold;
		line-height: 1.5em;
		text-align:center;
	}
	
	.start_page .promo .text-field .title span {
		font-size: 1em;
		display: block;
		margin: 0.25em 0 0em 0;
		text-transform: none;
	}
	
	.start_page .promo .text-field .wrap {
		display: grid;
		grid-template-areas:
			"promo-title"
			"promo-action"
			"promo-text";
		grid-template-columns: 1fr;
		gap: 1em;
	}
	
	.start_page .stat {
		margin-top: 1em;
		padding: 0 1em;
	}
	
	.start_page .stat .wrap .section-text .line-1 {
		font-size: 1em;
		position: relative;
	}
	
	.start_page .stat .wrap .section-text .line-2 {
		font-size: 1em;
		position: relative;
	}
	.start_page .stat .wrap .section-text .line-3 {
		font-size: 1em;
		position: relative;
	}
	
	.start_page .stat .wrap .section-stat {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-areas: "stat-1" "stat-2";
		gap: 1em;
	}
	
	.start_page .stat .wrap .section-stat .stat-2 .plate {
		display: grid;
		grid-template-columns: 1fr;
		align-self: start;
		gap: 1em;
		padding: 1em;
		border-radius: 1em;
		background: #f6f6f6;
		height: 100%;
	}
	
	
	.start_page .stat .wrap .section-banner {
		padding: 1em;
		border-radius: 1em;
		background: #383B4A url(images/custom/start_banner-bg.png) no-repeat center right;
		background-size: contain;
		color: #ffffff;
		display: grid;
		grid-template-columns: 1fr;
		align-self: start;
		gap: 1em;
	}
	
	.start_page .opportunity {
		margin-top: 1em;
		margin-bottom: 1em;
		position: relative;
		padding: 0 1em;
		background: linear-gradient(180deg, rgba(204, 204, 204, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
	}
	
	.start_page .opportunity .wrap {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
		padding: 1em;
	}
	
	.start_page .opportunity .wrap .section-text .line-1 {
		font-size: 1em;
		position: relative;
	}
	
	.start_page .opportunity .wrap .section-field {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 1em;
	}

	.start_page .stat .wrap .section-banner {
        padding: 1em;
        border-radius: 1em;
        background: #383B4A url(images/custom/start_banner-bg.png) no-repeat top right;
        background-size: 200px;
        color: #ffffff;
        display: grid;
        grid-template-columns: 1fr;
        align-self: start;
        gap: 1em;
    }

	.dates {
    /* position: absolute; */
    top: -63px;
    right: 30px;
    padding: 5px 10px;
    /* background-color: rgba(0, 0, 0, 0.7); */
    color: white;
    border-radius: 5px;
    font-size: 18px;
    z-index: 1000;
    text-align: center;
	}

	.start_page .stat .wrap .section-banner .action {
    text-align:center
	}

	.start_page .stat .wrap .section-stat .stat-2 .plate .event .picture img {
    width: 100% !important;
    position: static;
	}


}