* {
	margin: 0;
	padding: 0;
}
/* @font-face {
	font-family: 'NeueHansKendrick-Regular';
	src: url(../fonts/NeueHansKendrick-Regular.otf),
		url(../fonts/NeueHansKendrick-Regular.ttf);
} */
@font-face {
	font-family: 'e-Ukraine-Bold';
	src: url(../fonts/e-Ukraine-Bold);
}
@font-face {
	font-family: 'e-Ukraine-Light';
	src: url(../fonts/e-Ukraine-Light.otf);
}
@font-face {
	font-family: 'e-Ukraine-Medium';
	src: url(../fonts/e-Ukraine-Medium.otf);
}
@font-face {
	font-family: 'e-Ukraine-Regular';
	src: url(../fonts/e-Ukraine-Regular.otf);
}
@font-face {
	font-family: 'e-Ukraine-Thin';
	src: url(../fonts/e-Ukraine-Thin.otf);
}
@font-face {
	font-family: 'e-Ukraine-UltraLight';
	src: url(../fonts/e-Ukraine-UltraLight.otf);
}

html {
	width: 100%;
	height: 100%;
	background: #383e42;
	scroll-behavior: smooth;
}

body {
	font-size: 20px;
	font-weight: normal;
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: 'e-Ukraine-Regular', sans-serif;

}

aside,
nav,
main,
footer,
header,
section,
article {
	display: block;
}

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

a {
	text-decoration: none;
	cursor: pointer;
	/* background-image: linear-gradient(to bottom, transparent 20%, currentColor 21%);  
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;  
  transition: background-size 0.5s ease-in-out 0.2s; */

}

a:hover,
a:focus {
	background-size: 100% 1px;
	transition-delay: 0s;
}

li {
	list-style: none;
}

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;

}

.header {
	width: 100%;
	max-width: 1980px;
	margin: 0 auto;
	height: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0;
	box-sizing: border-box;
	transition: all linear 0.2s;
	background: #fffae2;
	position: relative;
}
.header::after{
	content: "";
	width: 20%;
	max-width: 25%;
	height: 4em;
	max-height: 4em;
background: url(../image/logo_top_bg.png) no-repeat 100% 100%;
background-size: 100% 100%;
position: absolute;
top: 100%;
left: 0;
z-index: 10;
}


.logo {
	width: auto;
	max-width: 17%;
	box-sizing: border-box;
	margin: 0 auto -3.5em 0;
	position: relative;
	z-index: 20;
	padding: 1.5em ;
/* background: url(../image/logo_top_bg1.png) no-repeat 100% 100%;
background-size: 100% 100%; */


}

.logo img {
	width: auto;
	max-width: 100%;

box-sizing: border-box;
}

.logo a:hover,
.logo a:focus,
.footer_logo a:hover,
.footer_logo a:focus {
	background-size: 0 0;
}

.nav_btn {
	width: auto;
	height: auto;
	padding: 0;
	box-sizing: border-box;
	margin-right: 1em;
	cursor: pointer;
	display: inline-block;
	min-height: 2em;
	padding-top: 0.8em;

}

.nav_btn_icon {
	display: block;
	margin-top: 2px;
	position: relative;
	z-index: 500;
}

.nav_btn .nav_btn_icon,
.nav_btn .nav_btn_icon::before,
.nav_btn .nav_btn_icon::after {
	width: 50px;
	height: 3px;
	padding: 0;
	background-color: #262526;
	border-radius: 2px;
	position: relative;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
	display: block;
}

.nav_btn .nav_btn_icon::before,
.nav_btn .nav_btn_icon::after {
	content: "";
	display: block;
}

.nav_btn .nav_btn_icon::before {
	top: -15px;
}

.nav_btn .nav_btn_icon::after {
	bottom: -12px;
}

.nav_btn.active .nav_btn_icon {
	background-color: transparent;
	transform: rotateX(-180deg);
}

.nav_btn.active .nav_btn_icon::before {
	transform: translate3d(0, 15px, 0) rotate(45deg);
}

.nav_btn.active .nav_btn_icon::after {
	transform: translate3d(0, -15px, 0) rotate(-45deg);
}

nav {
	width: auto;
	height: auto;
	padding: 0;
	box-sizing: border-box;
	display: none;
	position: absolute;
	/* top: 0; */
	top: 5em;
	left: auto;
	right: 0;
	bottom: auto;
	z-index: 200;
	background: #fffae2;
}



nav ul {
	width: auto;
	height: auto;
	padding: 0.5em 1em;
	box-sizing: border-box;

}

nav li {
	padding: 0.2em 0.5em;
	box-sizing: border-box;
	font-size: 1em;
	position: relative;
	color: #383e42;
	list-style: none;
	width: 100%;
	white-space: nowrap;
	text-align: left;
}

nav li a {
	color: #383e42;

}

nav li a:hover {
	color: #939598;
}

.text-content {
  overflow: hidden;
  font-size: 1.2em;

}

/* Состояние по умолчанию — свернуто */
.text-content.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Ограничение в 3 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
 
 
}
.text-content img{
	width: 100%;
	text-align: center;
	margin: 1em 0;
}
.button_all{
	width: auto;
	display: flex;
	justify-content: flex-end;
	margin: 1em;
	box-sizing: border-box;
}
.toggle-btn{
	border: none;
	background: none;
	font-size: 1.2em;
	color: #f9b513;
	text-align: right;
	background: url(../image/arr_down.png) no-repeat 0 50%;
	background-size: auto 100%;
	padding-left: 2.5em;
	
}
.text-content:not(.collapsed) ~ .button_all .toggle-btn {
background: url(../image/arr_up.png) no-repeat 0 50%;
	background-size: auto 100%;
}

main {
	width: 100%;
	height: auto;
	min-height: 100%;
	box-sizing: border-box;
	position: relative;
	padding-bottom: 7em;
	background: #fffae2;

}

section {
	padding: 0;
	box-sizing: border-box;
}

.top_info {	
	width: 100%;
	max-width: 1890px;
	text-align: center;
	padding: 7em 0 7em;
	background: #383e42;
}
.top_info img{
	width: auto;
	max-width: 80%;
	height: auto;
	padding-bottom: 5em;
}
.marshrut_info {
	margin: -5em auto 0;
	width: 100%;
	border-radius: 5em 5em 0 0;
	background: #fffae2;
	
}
.inner{
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 0 1em;
	box-sizing: border-box;
	
}
.point_number{
	background: #f9b513;
	color: #262526;
	font-size: 3em;
	font-weight: bold;
	display: flex;
	width: 2em;
	height: 2em;
	align-items: center;
	justify-content: center;
	border-radius: 1em;
	margin-left: 3em;
	transform: translateY(-50%);
}
.point_back{
	width: 100%;
	height: auto;
	margin: 1em auto;
	font-size: 1.2em;
	color: #f9b513;
	margin-bottom: 1em;
}
.point_back a{
	background: url(../image/arr_point.png) no-repeat 0 50%;
	background-size: auto 100%;
	padding-left: 1.5em;
	color: #f9b513;
}
.point_info{
	width: 100%;
	height: auto;
}
.point_info h1{
	font-size: 3em;
	margin-bottom: 1em;
}

.buttons{
	width: 100%;
	height: auto;
	margin: 2em auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.button_one{
	width: 50%;
	
	background: #f9b513;
	color: #262526;
	text-align: center;
	padding: 0.5em;
	box-sizing: border-box;
	margin: 0.5em auto;
	border-radius: 1em;
	font-size: 2em;
}
.button_one a{	
	color: #262526;
}
.another{
width: auto;
	display: flex;
	justify-content: flex-end;
	margin: 1em 1em 2em;
	box-sizing: border-box;
}
.another a{
	border: none;
	background: none;
	font-size: 1.2em;
	color: #262526;
	text-align: right;
	background: url(../image/arr_another.png) no-repeat 0 50%;
	background-size: auto 100%;
	padding-left: 1.5em;
	
	
}


.footer {
	width: 100%;
	margin: 0 auto;
	height: auto;
	position: relative;
	z-index: 100;
	padding: 2em;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	border-radius: 5em 5em 0 0;
	background: #383e42;
	margin-top: -5em;
	font-size: 1.5em;

}
.footer_inner{
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	
}
.footer_top {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
	margin-top: 2em;
	
}

.footer_logo {
	width: 50%;
	/* max-width: 25%; */
	margin: 2em 0 0 0;
}

.footer_logo img {
	width: auto;
	max-width: 70%;

}

.footer_contact {
	width: 50%;
	text-align: left;
	padding-left: 1em;
	box-sizing: border-box;
	
}

.footer_contact h3 {
	font-size: 1em;
	color: #fffae2;
	font-weight: normal;
	padding-left: 1em;
	margin-bottom: 1em;
}

.footer_contact p {
	margin-bottom: 0.5em;
/* font-size: 1.2em; */
padding: 0.5em 0 0.5em 2em ;
	color: #fffae2;
}
.phone{
	background: url(../image/icon_contact_1.png) no-repeat 0 50%;
	background-size: auto 80%;
}
.adress{
	background: url(../image/icon_contact_2.png) no-repeat 0 50%;
	background-size: auto 70px;
}
.footer_soc{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.footer_soc a{
	margin-right: 2em;
}

.footer_info{
	width: 100%;
	height: auto;
	color: #fefae0;
	font-size: 1em;

}
.footer_info h2{
	font-size: 1.7em;
	color: #fefae0;
	margin: 1em 0 0.5em;
}
.footer_info p{
	font-size: 1em;
}
.footer_info form{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 1em 0;
}
.footer_info form input, .footer_info form textarea, .footer_info form button{
	width: 48%;
	border-radius: 1.5em;
	border: 1px solid #fbf6de;
	color: #fbf6de;
	background: transparent;
	font-size: 1.2em;
	text-align: center;
	padding: 0.7em 2em;
	box-sizing: border-box;
	margin: 0.5em 0;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'e-Ukraine-Regular', sans-serif;
}
.footer_info form textarea{
	width: 100%;
	/* height: 3.2em; */
	resize: none;
	overflow : auto;
	padding: 0.8em 2em 0;
	
}
textarea::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.footer_info form input::placeholder, .footer_info form textarea::placeholder{
	color: #9b9c91;
}
.footer_info form input:focus::placeholder, .footer_info form textarea:focus::placeholder  {
  opacity: 0;
}

.footer_info form button{
	width: 100%;	
	border: 1px solid #f9b513;
	color: #262526;
	background: #f9b513;
	font-size: 1.3em;
	text-align: center;
	padding: 0.7em 2em;
	
}
.sponsors{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 2em;
}


.sponsors img{
	width: auto;
	max-height: 160px;
	
}





@media screen and (max-width: 1700px) {
.sponsors img{
	width: auto;
	max-height: 100px;
	
}
.point_number {   
    margin-left: 2em;
    
}
}

@media screen and (max-width: 1850px) {

}

@media screen and (max-width: 1500px) {
	
}

@media screen and (max-width: 1280px) {


}

@media screen and (max-width: 1100px) {
	body {
	font-size: 15px;
	}
.sponsors img{
	width: auto;
	max-height: 60px;
	
}
.header::after {
    content: "";
    width: 40%;
    max-width: 45%;
    height: 3em;
 }
 .logo {
    width: auto;
    max-width: 30%;
    
}
	.point_number {   
    margin-left: 1.52em;
    
}
.inner {  
    padding: 0 2em;
    box-sizing: border-box;
}
.button_one {
    width: 80%;
}
.footer_logo img {
    width: auto;
    max-width: 90%;
}
.adress {
    background: url(../image/icon_contact_2.png) no-repeat 0 50%;
    background-size: auto 2em;
}
.footer_soc img{
	width: auto;
	height: auto;
	max-height: 2em;
}
.footer_info form input, .footer_info form textarea, .footer_info form button {
    padding: 0.7em;
}
}

@media screen and (max-width: 1030px) {

}

@media screen and (max-width: 900px) {

}

@media screen and (max-width: 850px) {



}

@media screen and (max-width: 800px) {
	
}

@media screen and (max-width: 700px) {
	body {
	font-size: 13px;
	}
.sponsors img{
	width: auto;
	max-height: 50px;
	
}
	.header::after {
    content: "";
    width: 40%;
    max-width: 45%;
    height: 3em;
 }
 .logo {
    width: auto;
    max-width: 30%;
    
}
.inner {  
    padding: 0 1em;
    box-sizing: border-box;
}
.button_one {
    width: 90%;
}
.footer_soc img{
	width: auto;
	height: auto;
	max-height: 2em;
}
.adress {
    background: url(../image/icon_contact_2.png) no-repeat 0 50%;
    background-size: auto 40px;
}
}

@media screen and (max-width: 550px) {
	body {
	font-size: 12px;
	}
	.header::after {
    content: "";
    width: 40%;
    max-width: 45%;
    height: 3em;
 }
 .logo {
    width: auto;
    max-width: 30%;
    
}

.nav_btn .nav_btn_icon, .nav_btn .nav_btn_icon::before, .nav_btn .nav_btn_icon::after {
    width: 30px;
}
.nav_btn .nav_btn_icon::before {
    top: -10px;
}

.nav_btn .nav_btn_icon::after {
    bottom: -7px;
}
.nav_btn.active .nav_btn_icon::before {
    transform: translate3d(0, 11px, 0) rotate(45deg);
}
.nav_btn.active .nav_btn_icon::after {
    transform: translate3d(0, -9px, 0) rotate(-45deg);
}
nav {
    top: 3em;
}
	.footer_info form input, .footer_info form textarea, .footer_info form button {
    width: 100%;
    border-radius: 1.5em;    
    font-size: 1em;
    text-align: center;
    padding: 0.7em 0.2em;
    box-sizing: border-box;
    margin: 0.5em 0;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'e-Ukraine-Regular', sans-serif;
}
	.footer{
		padding: 0em 1em 1em;
	}
.footer_top{
		flex-wrap: wrap;
	}
.footer_contact{
width: 70%;
margin: 1em auto 1em;	
}
.footer_logo{
	width: 100%;
	text-align: center;
	margin: 0 0 1em;
}
.footer_logo img {
    width: auto;
    max-width: 50%;
}
.footer_soc{
	margin-top: 1em;
}
.footer_soc img{
	width: auto;
	height: auto;
	max-height: 2em;
}

.sponsors img{
	width: auto;
	max-height: 40px;
	
}
.point_number {   
    margin-left: 1.52em;
    
}
.inner {  
    padding: 0 1em;
    box-sizing: border-box;
}
.button_one {
    width: 90%;
}
.adress {
    background: url(../image/icon_contact_2.png) no-repeat 0 50%;
    background-size: auto 40px;
}
}

@media screen and (max-width: 450px) {
	
	
}

@media screen and (max-width: 400px) {

}




@media only screen and (width:320px) and (device-width:320px) and (device-height:480px) and (orientation: landscape) {
	body {
		-webkit-transform: scale(0.667);
		-webkit-transform-origin: top right;
		position: absolute;
		right: 0;
		top: 0;
		width: 480px;
	}

	.feedback .txt {
		float: right;
		color: #000000;
		font-size: 14px;
		text-align: justify;
		width: 100%;
	}

	.feedback .auth {
		color: #999999;
		font-size: 11px;
		text-align: right;
		float: right;
		padding: 0;
		width: 100%;
	}

}

/* iPad */
@media only screen and (width:768px) and (device-width:768px) and (device-height:1024px) and (orientation: landscape) {
	body {
		-webkit-transform: scale(0.75);
		-webkit-transform-origin: top right;
		position: absolute;
		right: 0;
		top: 0;
		width: 1024px;
	}

	.feedback .txt {
		float: right;
		color: #000000;
		font-size: 14px;
		text-align: justify;
		width: 100%;
	}

	.feedback .auth {
		color: #999999;
		font-size: 11px;
		text-align: right;
		float: right;
		padding: 0;
		width: 100%;
	}

}