/*//////////////////////////////////////////*/
/* Reset styles */
/*//////////////////////////////////////////*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, i{
	border:0;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	margin:0;
	outline:0;
	padding:0;
	vertical-align:baseline;
}
:focus{
	outline:0;
}
body{
	line-height:1;
}
ol, ul{
	list-style:none;
}
caption{
	font-weight:normal;
	text-align:left;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content:"";
}
blockquote, q{
	quotes:"" "";
}
a img{
	border:0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display:block;
}

/*//////////////////////////////////////////*/
/* Core */
/*//////////////////////////////////////////*/

html{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;

	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	-webkit-overflow-scrolling:touch;
}
body{
	color:#363636;
	font-size:16px;
	font-family:'Inter', Arial, Tahoma, Helvetica, sans-serif;
	font-weight:400;
	background: #ffffff;
	min-width:360px;
	margin: 0 auto;
	overflow-x:hidden;
	position:relative;
}

/*//////////////////////////////////////////*/
/* Welcome */
/*//////////////////////////////////////////*/

#welcome{
	height: 100vh;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}
#welcome .inner{
	display: flex;
	flex-direction: column;
    justify-content: space-between;
	width: 1200px;
	max-width: calc(100% - 30px);
	height: 100%;
	margin: 0 auto;
}
#welcome .inner .string{
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 15px 0;
	position: relative;
	z-index: 10;
}
#welcome .inner .string .logo{
	display: block;
	width: auto;
	height: 50px;
}
#welcome .inner .string strong{
	display: block;
	font-size: 16px;
	line-height: 20px;
	text-align: right;
	font-weight: 500;
	padding: 5px 25px;
	background: #ffffff;
	border-radius: 25px;
}
@media (max-width: 800px) {
	#welcome .inner .string .logo{
		width: 180px;
		height: auto;
	}
	#welcome .inner .string strong{
		line-height: 16px;
		font-size: 14px;
		padding: 0;
		border-radius: 0;
	}
}
#welcome .inner .cover{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	background-image: url('/image-cover.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#welcome .inner .overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	background-image: url('/image-overlay.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 800px) {
	#welcome .inner .cover{
		position: relative;
		width: calc(100% + 30px);
		height: 300px;
		margin: 0 -15px;
	}
	#welcome .inner .overlay{
		display: none;
	}
}
#welcome .inner .intro{
	display: flex;
	flex-direction: column;
    align-items: flex-start;
	max-width: 400px;
	position: relative;
	z-index: 10;
}
@media (max-width: 800px) {
	#welcome .inner .intro{
		text-align: center;
		align-items: center;
		margin: 0 auto auto;
		padding: 30px 0 15px;
	}
}
#welcome .inner .intro h1{
	display: block;
	font-size: 30px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 15px;
}
#welcome .inner .intro p{
	display: block;
	line-height: 20px;
	margin-bottom: 30px;
}
#welcome .inner .intro .dealer{
	display: inline-block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
}
#welcome .inner .contacts{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	padding: 15px 0;
	position: relative;
	z-index: 10;
}
@media (max-width: 800px) {
	#welcome .inner .contacts{
		align-items: center;
	}
}
#welcome .inner .contacts a{
	display: inline-block;
	color: #606060;
	text-decoration: none;
	padding: 5px 15px;
	font-size: 12px;
	border: 1px solid #bcbcbc;
	border-radius: 16px;
}